i8k: Force SMM to run on CPU 0
[platform/adaptation/renesas_rcar/renesas_kernel.git] / drivers / char / i8k.c
1 /*
2  * i8k.c -- Linux driver for accessing the SMM BIOS on Dell laptops.
3  *
4  * Copyright (C) 2001  Massimo Dal Zotto <dz@debian.org>
5  *
6  * Hwmon integration:
7  * Copyright (C) 2011  Jean Delvare <khali@linux-fr.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by the
11  * Free Software Foundation; either version 2, or (at your option) any
12  * later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  */
19
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22 #include <linux/module.h>
23 #include <linux/types.h>
24 #include <linux/init.h>
25 #include <linux/proc_fs.h>
26 #include <linux/seq_file.h>
27 #include <linux/dmi.h>
28 #include <linux/capability.h>
29 #include <linux/mutex.h>
30 #include <linux/hwmon.h>
31 #include <linux/hwmon-sysfs.h>
32 #include <linux/uaccess.h>
33 #include <linux/io.h>
34 #include <linux/sched.h>
35
36 #include <linux/i8k.h>
37
38 #define I8K_SMM_FN_STATUS       0x0025
39 #define I8K_SMM_POWER_STATUS    0x0069
40 #define I8K_SMM_SET_FAN         0x01a3
41 #define I8K_SMM_GET_FAN         0x00a3
42 #define I8K_SMM_GET_SPEED       0x02a3
43 #define I8K_SMM_GET_TEMP        0x10a3
44 #define I8K_SMM_GET_DELL_SIG1   0xfea3
45 #define I8K_SMM_GET_DELL_SIG2   0xffa3
46 #define I8K_SMM_BIOS_VERSION    0x00a6
47
48 #define I8K_FAN_MULT            30
49 #define I8K_MAX_TEMP            127
50
51 #define I8K_FN_NONE             0x00
52 #define I8K_FN_UP               0x01
53 #define I8K_FN_DOWN             0x02
54 #define I8K_FN_MUTE             0x04
55 #define I8K_FN_MASK             0x07
56 #define I8K_FN_SHIFT            8
57
58 #define I8K_POWER_AC            0x05
59 #define I8K_POWER_BATTERY       0x01
60
61 #define I8K_TEMPERATURE_BUG     1
62
63 static DEFINE_MUTEX(i8k_mutex);
64 static char bios_version[4];
65 static struct device *i8k_hwmon_dev;
66 static u32 i8k_hwmon_flags;
67
68 #define I8K_HWMON_HAVE_TEMP1    (1 << 0)
69 #define I8K_HWMON_HAVE_TEMP2    (1 << 1)
70 #define I8K_HWMON_HAVE_TEMP3    (1 << 2)
71 #define I8K_HWMON_HAVE_TEMP4    (1 << 3)
72 #define I8K_HWMON_HAVE_FAN1     (1 << 4)
73 #define I8K_HWMON_HAVE_FAN2     (1 << 5)
74
75 MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)");
76 MODULE_DESCRIPTION("Driver for accessing SMM BIOS on Dell laptops");
77 MODULE_LICENSE("GPL");
78
79 static bool force;
80 module_param(force, bool, 0);
81 MODULE_PARM_DESC(force, "Force loading without checking for supported models");
82
83 static bool ignore_dmi;
84 module_param(ignore_dmi, bool, 0);
85 MODULE_PARM_DESC(ignore_dmi, "Continue probing hardware even if DMI data does not match");
86
87 static bool restricted;
88 module_param(restricted, bool, 0);
89 MODULE_PARM_DESC(restricted, "Allow fan control if SYS_ADMIN capability set");
90
91 static bool power_status;
92 module_param(power_status, bool, 0600);
93 MODULE_PARM_DESC(power_status, "Report power status in /proc/i8k");
94
95 static int fan_mult = I8K_FAN_MULT;
96 module_param(fan_mult, int, 0);
97 MODULE_PARM_DESC(fan_mult, "Factor to multiply fan speed with");
98
99 static int i8k_open_fs(struct inode *inode, struct file *file);
100 static long i8k_ioctl(struct file *, unsigned int, unsigned long);
101
102 static const struct file_operations i8k_fops = {
103         .owner          = THIS_MODULE,
104         .open           = i8k_open_fs,
105         .read           = seq_read,
106         .llseek         = seq_lseek,
107         .release        = single_release,
108         .unlocked_ioctl = i8k_ioctl,
109 };
110
111 struct smm_regs {
112         unsigned int eax;
113         unsigned int ebx __packed;
114         unsigned int ecx __packed;
115         unsigned int edx __packed;
116         unsigned int esi __packed;
117         unsigned int edi __packed;
118 };
119
120 static inline const char *i8k_get_dmi_data(int field)
121 {
122         const char *dmi_data = dmi_get_system_info(field);
123
124         return dmi_data && *dmi_data ? dmi_data : "?";
125 }
126
127 /*
128  * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard.
129  */
130 static int i8k_smm(struct smm_regs *regs)
131 {
132         int rc;
133         int eax = regs->eax;
134         cpumask_var_t old_mask;
135
136         /* SMM requires CPU 0 */
137         if (!alloc_cpumask_var(&old_mask, GFP_KERNEL))
138                 return -ENOMEM;
139         cpumask_copy(old_mask, &current->cpus_allowed);
140         set_cpus_allowed_ptr(current, cpumask_of(0));
141         if (smp_processor_id() != 0) {
142                 rc = -EBUSY;
143                 goto out;
144         }
145
146 #if defined(CONFIG_X86_64)
147         asm volatile("pushq %%rax\n\t"
148                 "movl 0(%%rax),%%edx\n\t"
149                 "pushq %%rdx\n\t"
150                 "movl 4(%%rax),%%ebx\n\t"
151                 "movl 8(%%rax),%%ecx\n\t"
152                 "movl 12(%%rax),%%edx\n\t"
153                 "movl 16(%%rax),%%esi\n\t"
154                 "movl 20(%%rax),%%edi\n\t"
155                 "popq %%rax\n\t"
156                 "out %%al,$0xb2\n\t"
157                 "out %%al,$0x84\n\t"
158                 "xchgq %%rax,(%%rsp)\n\t"
159                 "movl %%ebx,4(%%rax)\n\t"
160                 "movl %%ecx,8(%%rax)\n\t"
161                 "movl %%edx,12(%%rax)\n\t"
162                 "movl %%esi,16(%%rax)\n\t"
163                 "movl %%edi,20(%%rax)\n\t"
164                 "popq %%rdx\n\t"
165                 "movl %%edx,0(%%rax)\n\t"
166                 "pushfq\n\t"
167                 "popq %%rax\n\t"
168                 "andl $1,%%eax\n"
169                 : "=a"(rc)
170                 :    "a"(regs)
171                 :    "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
172 #else
173         asm volatile("pushl %%eax\n\t"
174             "movl 0(%%eax),%%edx\n\t"
175             "push %%edx\n\t"
176             "movl 4(%%eax),%%ebx\n\t"
177             "movl 8(%%eax),%%ecx\n\t"
178             "movl 12(%%eax),%%edx\n\t"
179             "movl 16(%%eax),%%esi\n\t"
180             "movl 20(%%eax),%%edi\n\t"
181             "popl %%eax\n\t"
182             "out %%al,$0xb2\n\t"
183             "out %%al,$0x84\n\t"
184             "xchgl %%eax,(%%esp)\n\t"
185             "movl %%ebx,4(%%eax)\n\t"
186             "movl %%ecx,8(%%eax)\n\t"
187             "movl %%edx,12(%%eax)\n\t"
188             "movl %%esi,16(%%eax)\n\t"
189             "movl %%edi,20(%%eax)\n\t"
190             "popl %%edx\n\t"
191             "movl %%edx,0(%%eax)\n\t"
192             "lahf\n\t"
193             "shrl $8,%%eax\n\t"
194             "andl $1,%%eax\n"
195             : "=a"(rc)
196             :    "a"(regs)
197             :    "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
198 #endif
199         if (rc != 0 || (regs->eax & 0xffff) == 0xffff || regs->eax == eax)
200                 rc = -EINVAL;
201
202 out:
203         set_cpus_allowed_ptr(current, old_mask);
204         free_cpumask_var(old_mask);
205         return rc;
206 }
207
208 /*
209  * Read the bios version. Return the version as an integer corresponding
210  * to the ascii value, for example "A17" is returned as 0x00413137.
211  */
212 static int i8k_get_bios_version(void)
213 {
214         struct smm_regs regs = { .eax = I8K_SMM_BIOS_VERSION, };
215
216         return i8k_smm(&regs) ? : regs.eax;
217 }
218
219 /*
220  * Read the Fn key status.
221  */
222 static int i8k_get_fn_status(void)
223 {
224         struct smm_regs regs = { .eax = I8K_SMM_FN_STATUS, };
225         int rc;
226
227         rc = i8k_smm(&regs);
228         if (rc < 0)
229                 return rc;
230
231         switch ((regs.eax >> I8K_FN_SHIFT) & I8K_FN_MASK) {
232         case I8K_FN_UP:
233                 return I8K_VOL_UP;
234         case I8K_FN_DOWN:
235                 return I8K_VOL_DOWN;
236         case I8K_FN_MUTE:
237                 return I8K_VOL_MUTE;
238         default:
239                 return 0;
240         }
241 }
242
243 /*
244  * Read the power status.
245  */
246 static int i8k_get_power_status(void)
247 {
248         struct smm_regs regs = { .eax = I8K_SMM_POWER_STATUS, };
249         int rc;
250
251         rc = i8k_smm(&regs);
252         if (rc < 0)
253                 return rc;
254
255         return (regs.eax & 0xff) == I8K_POWER_AC ? I8K_AC : I8K_BATTERY;
256 }
257
258 /*
259  * Read the fan status.
260  */
261 static int i8k_get_fan_status(int fan)
262 {
263         struct smm_regs regs = { .eax = I8K_SMM_GET_FAN, };
264
265         regs.ebx = fan & 0xff;
266         return i8k_smm(&regs) ? : regs.eax & 0xff;
267 }
268
269 /*
270  * Read the fan speed in RPM.
271  */
272 static int i8k_get_fan_speed(int fan)
273 {
274         struct smm_regs regs = { .eax = I8K_SMM_GET_SPEED, };
275
276         regs.ebx = fan & 0xff;
277         return i8k_smm(&regs) ? : (regs.eax & 0xffff) * fan_mult;
278 }
279
280 /*
281  * Set the fan speed (off, low, high). Returns the new fan status.
282  */
283 static int i8k_set_fan(int fan, int speed)
284 {
285         struct smm_regs regs = { .eax = I8K_SMM_SET_FAN, };
286
287         speed = (speed < 0) ? 0 : ((speed > I8K_FAN_MAX) ? I8K_FAN_MAX : speed);
288         regs.ebx = (fan & 0xff) | (speed << 8);
289
290         return i8k_smm(&regs) ? : i8k_get_fan_status(fan);
291 }
292
293 /*
294  * Read the cpu temperature.
295  */
296 static int i8k_get_temp(int sensor)
297 {
298         struct smm_regs regs = { .eax = I8K_SMM_GET_TEMP, };
299         int rc;
300         int temp;
301
302 #ifdef I8K_TEMPERATURE_BUG
303         static int prev[4];
304 #endif
305         regs.ebx = sensor & 0xff;
306         rc = i8k_smm(&regs);
307         if (rc < 0)
308                 return rc;
309
310         temp = regs.eax & 0xff;
311
312 #ifdef I8K_TEMPERATURE_BUG
313         /*
314          * Sometimes the temperature sensor returns 0x99, which is out of range.
315          * In this case we return (once) the previous cached value. For example:
316          # 1003655137 00000058 00005a4b
317          # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees
318          # 1003655139 00000054 00005c52
319          */
320         if (temp > I8K_MAX_TEMP) {
321                 temp = prev[sensor];
322                 prev[sensor] = I8K_MAX_TEMP;
323         } else {
324                 prev[sensor] = temp;
325         }
326 #endif
327
328         return temp;
329 }
330
331 static int i8k_get_dell_signature(int req_fn)
332 {
333         struct smm_regs regs = { .eax = req_fn, };
334         int rc;
335
336         rc = i8k_smm(&regs);
337         if (rc < 0)
338                 return rc;
339
340         return regs.eax == 1145651527 && regs.edx == 1145392204 ? 0 : -1;
341 }
342
343 static int
344 i8k_ioctl_unlocked(struct file *fp, unsigned int cmd, unsigned long arg)
345 {
346         int val = 0;
347         int speed;
348         unsigned char buff[16];
349         int __user *argp = (int __user *)arg;
350
351         if (!argp)
352                 return -EINVAL;
353
354         switch (cmd) {
355         case I8K_BIOS_VERSION:
356                 val = i8k_get_bios_version();
357                 break;
358
359         case I8K_MACHINE_ID:
360                 memset(buff, 0, 16);
361                 strlcpy(buff, i8k_get_dmi_data(DMI_PRODUCT_SERIAL),
362                         sizeof(buff));
363                 break;
364
365         case I8K_FN_STATUS:
366                 val = i8k_get_fn_status();
367                 break;
368
369         case I8K_POWER_STATUS:
370                 val = i8k_get_power_status();
371                 break;
372
373         case I8K_GET_TEMP:
374                 val = i8k_get_temp(0);
375                 break;
376
377         case I8K_GET_SPEED:
378                 if (copy_from_user(&val, argp, sizeof(int)))
379                         return -EFAULT;
380
381                 val = i8k_get_fan_speed(val);
382                 break;
383
384         case I8K_GET_FAN:
385                 if (copy_from_user(&val, argp, sizeof(int)))
386                         return -EFAULT;
387
388                 val = i8k_get_fan_status(val);
389                 break;
390
391         case I8K_SET_FAN:
392                 if (restricted && !capable(CAP_SYS_ADMIN))
393                         return -EPERM;
394
395                 if (copy_from_user(&val, argp, sizeof(int)))
396                         return -EFAULT;
397
398                 if (copy_from_user(&speed, argp + 1, sizeof(int)))
399                         return -EFAULT;
400
401                 val = i8k_set_fan(val, speed);
402                 break;
403
404         default:
405                 return -EINVAL;
406         }
407
408         if (val < 0)
409                 return val;
410
411         switch (cmd) {
412         case I8K_BIOS_VERSION:
413                 if (copy_to_user(argp, &val, 4))
414                         return -EFAULT;
415
416                 break;
417         case I8K_MACHINE_ID:
418                 if (copy_to_user(argp, buff, 16))
419                         return -EFAULT;
420
421                 break;
422         default:
423                 if (copy_to_user(argp, &val, sizeof(int)))
424                         return -EFAULT;
425
426                 break;
427         }
428
429         return 0;
430 }
431
432 static long i8k_ioctl(struct file *fp, unsigned int cmd, unsigned long arg)
433 {
434         long ret;
435
436         mutex_lock(&i8k_mutex);
437         ret = i8k_ioctl_unlocked(fp, cmd, arg);
438         mutex_unlock(&i8k_mutex);
439
440         return ret;
441 }
442
443 /*
444  * Print the information for /proc/i8k.
445  */
446 static int i8k_proc_show(struct seq_file *seq, void *offset)
447 {
448         int fn_key, cpu_temp, ac_power;
449         int left_fan, right_fan, left_speed, right_speed;
450
451         cpu_temp        = i8k_get_temp(0);                      /* 11100 Âµs */
452         left_fan        = i8k_get_fan_status(I8K_FAN_LEFT);     /*   580 Âµs */
453         right_fan       = i8k_get_fan_status(I8K_FAN_RIGHT);    /*   580 Âµs */
454         left_speed      = i8k_get_fan_speed(I8K_FAN_LEFT);      /*   580 Âµs */
455         right_speed     = i8k_get_fan_speed(I8K_FAN_RIGHT);     /*   580 Âµs */
456         fn_key          = i8k_get_fn_status();                  /*   750 Âµs */
457         if (power_status)
458                 ac_power = i8k_get_power_status();              /* 14700 Âµs */
459         else
460                 ac_power = -1;
461
462         /*
463          * Info:
464          *
465          * 1)  Format version (this will change if format changes)
466          * 2)  BIOS version
467          * 3)  BIOS machine ID
468          * 4)  Cpu temperature
469          * 5)  Left fan status
470          * 6)  Right fan status
471          * 7)  Left fan speed
472          * 8)  Right fan speed
473          * 9)  AC power
474          * 10) Fn Key status
475          */
476         return seq_printf(seq, "%s %s %s %d %d %d %d %d %d %d\n",
477                           I8K_PROC_FMT,
478                           bios_version,
479                           i8k_get_dmi_data(DMI_PRODUCT_SERIAL),
480                           cpu_temp,
481                           left_fan, right_fan, left_speed, right_speed,
482                           ac_power, fn_key);
483 }
484
485 static int i8k_open_fs(struct inode *inode, struct file *file)
486 {
487         return single_open(file, i8k_proc_show, NULL);
488 }
489
490
491 /*
492  * Hwmon interface
493  */
494
495 static ssize_t i8k_hwmon_show_temp(struct device *dev,
496                                    struct device_attribute *devattr,
497                                    char *buf)
498 {
499         int index = to_sensor_dev_attr(devattr)->index;
500         int temp;
501
502         temp = i8k_get_temp(index);
503         if (temp < 0)
504                 return temp;
505         return sprintf(buf, "%d\n", temp * 1000);
506 }
507
508 static ssize_t i8k_hwmon_show_fan(struct device *dev,
509                                   struct device_attribute *devattr,
510                                   char *buf)
511 {
512         int index = to_sensor_dev_attr(devattr)->index;
513         int fan_speed;
514
515         fan_speed = i8k_get_fan_speed(index);
516         if (fan_speed < 0)
517                 return fan_speed;
518         return sprintf(buf, "%d\n", fan_speed);
519 }
520
521 static ssize_t i8k_hwmon_show_label(struct device *dev,
522                                     struct device_attribute *devattr,
523                                     char *buf)
524 {
525         static const char *labels[3] = {
526                 "CPU",
527                 "Left Fan",
528                 "Right Fan",
529         };
530         int index = to_sensor_dev_attr(devattr)->index;
531
532         return sprintf(buf, "%s\n", labels[index]);
533 }
534
535 static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 0);
536 static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 1);
537 static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 2);
538 static SENSOR_DEVICE_ATTR(temp4_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 3);
539 static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, i8k_hwmon_show_fan, NULL,
540                           I8K_FAN_LEFT);
541 static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, i8k_hwmon_show_fan, NULL,
542                           I8K_FAN_RIGHT);
543 static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, i8k_hwmon_show_label, NULL, 0);
544 static SENSOR_DEVICE_ATTR(fan1_label, S_IRUGO, i8k_hwmon_show_label, NULL, 1);
545 static SENSOR_DEVICE_ATTR(fan2_label, S_IRUGO, i8k_hwmon_show_label, NULL, 2);
546
547 static struct attribute *i8k_attrs[] = {
548         &sensor_dev_attr_temp1_input.dev_attr.attr,     /* 0 */
549         &sensor_dev_attr_temp1_label.dev_attr.attr,     /* 1 */
550         &sensor_dev_attr_temp2_input.dev_attr.attr,     /* 2 */
551         &sensor_dev_attr_temp3_input.dev_attr.attr,     /* 3 */
552         &sensor_dev_attr_temp4_input.dev_attr.attr,     /* 4 */
553         &sensor_dev_attr_fan1_input.dev_attr.attr,      /* 5 */
554         &sensor_dev_attr_fan1_label.dev_attr.attr,      /* 6 */
555         &sensor_dev_attr_fan2_input.dev_attr.attr,      /* 7 */
556         &sensor_dev_attr_fan2_label.dev_attr.attr,      /* 8 */
557         NULL
558 };
559
560 static umode_t i8k_is_visible(struct kobject *kobj, struct attribute *attr,
561                               int index)
562 {
563         if ((index == 0 || index == 1) &&
564             !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP1))
565                 return 0;
566         if (index == 2 && !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP2))
567                 return 0;
568         if (index == 3 && !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP3))
569                 return 0;
570         if (index == 4 && !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP4))
571                 return 0;
572         if ((index == 5 || index == 6) &&
573             !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN1))
574                 return 0;
575         if ((index == 7 || index == 8) &&
576             !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN2))
577                 return 0;
578
579         return attr->mode;
580 }
581
582 static const struct attribute_group i8k_group = {
583         .attrs = i8k_attrs,
584         .is_visible = i8k_is_visible,
585 };
586 __ATTRIBUTE_GROUPS(i8k);
587
588 static int __init i8k_init_hwmon(void)
589 {
590         int err;
591
592         i8k_hwmon_flags = 0;
593
594         /* CPU temperature attributes, if temperature reading is OK */
595         err = i8k_get_temp(0);
596         if (err >= 0)
597                 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP1;
598         /* check for additional temperature sensors */
599         err = i8k_get_temp(1);
600         if (err >= 0)
601                 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP2;
602         err = i8k_get_temp(2);
603         if (err >= 0)
604                 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP3;
605         err = i8k_get_temp(3);
606         if (err >= 0)
607                 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP4;
608
609         /* Left fan attributes, if left fan is present */
610         err = i8k_get_fan_status(I8K_FAN_LEFT);
611         if (err >= 0)
612                 i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN1;
613
614         /* Right fan attributes, if right fan is present */
615         err = i8k_get_fan_status(I8K_FAN_RIGHT);
616         if (err >= 0)
617                 i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN2;
618
619         i8k_hwmon_dev = hwmon_device_register_with_groups(NULL, "i8k", NULL,
620                                                           i8k_groups);
621         if (IS_ERR(i8k_hwmon_dev)) {
622                 err = PTR_ERR(i8k_hwmon_dev);
623                 i8k_hwmon_dev = NULL;
624                 pr_err("hwmon registration failed (%d)\n", err);
625                 return err;
626         }
627         return 0;
628 }
629
630 static struct dmi_system_id i8k_dmi_table[] __initdata = {
631         {
632                 .ident = "Dell Inspiron",
633                 .matches = {
634                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
635                         DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
636                 },
637         },
638         {
639                 .ident = "Dell Latitude",
640                 .matches = {
641                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
642                         DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
643                 },
644         },
645         {
646                 .ident = "Dell Inspiron 2",
647                 .matches = {
648                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
649                         DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
650                 },
651         },
652         {
653                 .ident = "Dell Latitude 2",
654                 .matches = {
655                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
656                         DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
657                 },
658         },
659         {       /* UK Inspiron 6400  */
660                 .ident = "Dell Inspiron 3",
661                 .matches = {
662                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
663                         DMI_MATCH(DMI_PRODUCT_NAME, "MM061"),
664                 },
665         },
666         {
667                 .ident = "Dell Inspiron 3",
668                 .matches = {
669                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
670                         DMI_MATCH(DMI_PRODUCT_NAME, "MP061"),
671                 },
672         },
673         {
674                 .ident = "Dell Precision",
675                 .matches = {
676                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
677                         DMI_MATCH(DMI_PRODUCT_NAME, "Precision"),
678                 },
679         },
680         {
681                 .ident = "Dell Vostro",
682                 .matches = {
683                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
684                         DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"),
685                 },
686         },
687         {
688                 .ident = "Dell XPS421",
689                 .matches = {
690                         DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
691                         DMI_MATCH(DMI_PRODUCT_NAME, "XPS L421X"),
692                 },
693         },
694         { }
695 };
696
697 /*
698  * Probe for the presence of a supported laptop.
699  */
700 static int __init i8k_probe(void)
701 {
702         char buff[4];
703         int version;
704
705         /*
706          * Get DMI information
707          */
708         if (!dmi_check_system(i8k_dmi_table)) {
709                 if (!ignore_dmi && !force)
710                         return -ENODEV;
711
712                 pr_info("not running on a supported Dell system.\n");
713                 pr_info("vendor=%s, model=%s, version=%s\n",
714                         i8k_get_dmi_data(DMI_SYS_VENDOR),
715                         i8k_get_dmi_data(DMI_PRODUCT_NAME),
716                         i8k_get_dmi_data(DMI_BIOS_VERSION));
717         }
718
719         strlcpy(bios_version, i8k_get_dmi_data(DMI_BIOS_VERSION),
720                 sizeof(bios_version));
721
722         /*
723          * Get SMM Dell signature
724          */
725         if (i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG1) &&
726             i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG2)) {
727                 pr_err("unable to get SMM Dell signature\n");
728                 if (!force)
729                         return -ENODEV;
730         }
731
732         /*
733          * Get SMM BIOS version.
734          */
735         version = i8k_get_bios_version();
736         if (version <= 0) {
737                 pr_warn("unable to get SMM BIOS version\n");
738         } else {
739                 buff[0] = (version >> 16) & 0xff;
740                 buff[1] = (version >> 8) & 0xff;
741                 buff[2] = (version) & 0xff;
742                 buff[3] = '\0';
743                 /*
744                  * If DMI BIOS version is unknown use SMM BIOS version.
745                  */
746                 if (!dmi_get_system_info(DMI_BIOS_VERSION))
747                         strlcpy(bios_version, buff, sizeof(bios_version));
748
749                 /*
750                  * Check if the two versions match.
751                  */
752                 if (strncmp(buff, bios_version, sizeof(bios_version)) != 0)
753                         pr_warn("BIOS version mismatch: %s != %s\n",
754                                 buff, bios_version);
755         }
756
757         return 0;
758 }
759
760 static int __init i8k_init(void)
761 {
762         struct proc_dir_entry *proc_i8k;
763         int err;
764
765         /* Are we running on an supported laptop? */
766         if (i8k_probe())
767                 return -ENODEV;
768
769         /* Register the proc entry */
770         proc_i8k = proc_create("i8k", 0, NULL, &i8k_fops);
771         if (!proc_i8k)
772                 return -ENOENT;
773
774         err = i8k_init_hwmon();
775         if (err)
776                 goto exit_remove_proc;
777
778         return 0;
779
780  exit_remove_proc:
781         remove_proc_entry("i8k", NULL);
782         return err;
783 }
784
785 static void __exit i8k_exit(void)
786 {
787         hwmon_device_unregister(i8k_hwmon_dev);
788         remove_proc_entry("i8k", NULL);
789 }
790
791 module_init(i8k_init);
792 module_exit(i8k_exit);