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