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