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