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