2 * dell-smm-hwmon.c -- Linux driver for accessing the SMM BIOS on Dell laptops.
4 * Copyright (C) 2001 Massimo Dal Zotto <dz@debian.org>
7 * Copyright (C) 2011 Jean Delvare <jdelvare@suse.de>
8 * Copyright (C) 2013, 2014 Guenter Roeck <linux@roeck-us.net>
9 * Copyright (C) 2014, 2015 Pali Rohár <pali.rohar@gmail.com>
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
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.
22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24 #include <linux/delay.h>
25 #include <linux/module.h>
26 #include <linux/types.h>
27 #include <linux/init.h>
28 #include <linux/proc_fs.h>
29 #include <linux/seq_file.h>
30 #include <linux/dmi.h>
31 #include <linux/capability.h>
32 #include <linux/mutex.h>
33 #include <linux/hwmon.h>
34 #include <linux/hwmon-sysfs.h>
35 #include <linux/uaccess.h>
37 #include <linux/sched.h>
38 #include <linux/ctype.h>
40 #include <linux/i8k.h>
42 #define I8K_SMM_FN_STATUS 0x0025
43 #define I8K_SMM_POWER_STATUS 0x0069
44 #define I8K_SMM_SET_FAN 0x01a3
45 #define I8K_SMM_GET_FAN 0x00a3
46 #define I8K_SMM_GET_SPEED 0x02a3
47 #define I8K_SMM_GET_FAN_TYPE 0x03a3
48 #define I8K_SMM_GET_NOM_SPEED 0x04a3
49 #define I8K_SMM_GET_TEMP 0x10a3
50 #define I8K_SMM_GET_TEMP_TYPE 0x11a3
51 #define I8K_SMM_GET_DELL_SIG1 0xfea3
52 #define I8K_SMM_GET_DELL_SIG2 0xffa3
54 #define I8K_FAN_MULT 30
55 #define I8K_FAN_MAX_RPM 30000
56 #define I8K_MAX_TEMP 127
58 #define I8K_FN_NONE 0x00
59 #define I8K_FN_UP 0x01
60 #define I8K_FN_DOWN 0x02
61 #define I8K_FN_MUTE 0x04
62 #define I8K_FN_MASK 0x07
63 #define I8K_FN_SHIFT 8
65 #define I8K_POWER_AC 0x05
66 #define I8K_POWER_BATTERY 0x01
68 static DEFINE_MUTEX(i8k_mutex
);
69 static char bios_version
[4];
70 static char bios_machineid
[16];
71 static struct device
*i8k_hwmon_dev
;
72 static u32 i8k_hwmon_flags
;
73 static uint i8k_fan_mult
= I8K_FAN_MULT
;
74 static uint i8k_pwm_mult
;
75 static uint i8k_fan_max
= I8K_FAN_HIGH
;
76 static bool disallow_fan_type_call
;
78 #define I8K_HWMON_HAVE_TEMP1 (1 << 0)
79 #define I8K_HWMON_HAVE_TEMP2 (1 << 1)
80 #define I8K_HWMON_HAVE_TEMP3 (1 << 2)
81 #define I8K_HWMON_HAVE_TEMP4 (1 << 3)
82 #define I8K_HWMON_HAVE_FAN1 (1 << 4)
83 #define I8K_HWMON_HAVE_FAN2 (1 << 5)
84 #define I8K_HWMON_HAVE_FAN3 (1 << 6)
86 MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)");
87 MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>");
88 MODULE_DESCRIPTION("Dell laptop SMM BIOS hwmon driver");
89 MODULE_LICENSE("GPL");
93 module_param(force
, bool, 0);
94 MODULE_PARM_DESC(force
, "Force loading without checking for supported models");
96 static bool ignore_dmi
;
97 module_param(ignore_dmi
, bool, 0);
98 MODULE_PARM_DESC(ignore_dmi
, "Continue probing hardware even if DMI data does not match");
100 #if IS_ENABLED(CONFIG_I8K)
101 static bool restricted
= true;
102 module_param(restricted
, bool, 0);
103 MODULE_PARM_DESC(restricted
, "Restrict fan control and serial number to CAP_SYS_ADMIN (default: 1)");
105 static bool power_status
;
106 module_param(power_status
, bool, 0600);
107 MODULE_PARM_DESC(power_status
, "Report power status in /proc/i8k (default: 0)");
110 static uint fan_mult
;
111 module_param(fan_mult
, uint
, 0);
112 MODULE_PARM_DESC(fan_mult
, "Factor to multiply fan speed with (default: autodetect)");
115 module_param(fan_max
, uint
, 0);
116 MODULE_PARM_DESC(fan_max
, "Maximum configurable fan speed (default: autodetect)");
120 unsigned int ebx __packed
;
121 unsigned int ecx __packed
;
122 unsigned int edx __packed
;
123 unsigned int esi __packed
;
124 unsigned int edi __packed
;
127 static inline const char *i8k_get_dmi_data(int field
)
129 const char *dmi_data
= dmi_get_system_info(field
);
131 return dmi_data
&& *dmi_data
? dmi_data
: "?";
135 * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard.
137 static int i8k_smm(struct smm_regs
*regs
)
141 cpumask_var_t old_mask
;
145 unsigned long duration
;
146 ktime_t calltime
, delta
, rettime
;
148 calltime
= ktime_get();
151 /* SMM requires CPU 0 */
152 if (!alloc_cpumask_var(&old_mask
, GFP_KERNEL
))
154 cpumask_copy(old_mask
, ¤t
->cpus_allowed
);
155 rc
= set_cpus_allowed_ptr(current
, cpumask_of(0));
158 if (smp_processor_id() != 0) {
163 #if defined(CONFIG_X86_64)
164 asm volatile("pushq %%rax\n\t"
165 "movl 0(%%rax),%%edx\n\t"
167 "movl 4(%%rax),%%ebx\n\t"
168 "movl 8(%%rax),%%ecx\n\t"
169 "movl 12(%%rax),%%edx\n\t"
170 "movl 16(%%rax),%%esi\n\t"
171 "movl 20(%%rax),%%edi\n\t"
175 "xchgq %%rax,(%%rsp)\n\t"
176 "movl %%ebx,4(%%rax)\n\t"
177 "movl %%ecx,8(%%rax)\n\t"
178 "movl %%edx,12(%%rax)\n\t"
179 "movl %%esi,16(%%rax)\n\t"
180 "movl %%edi,20(%%rax)\n\t"
182 "movl %%edx,0(%%rax)\n\t"
188 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
190 asm volatile("pushl %%eax\n\t"
191 "movl 0(%%eax),%%edx\n\t"
193 "movl 4(%%eax),%%ebx\n\t"
194 "movl 8(%%eax),%%ecx\n\t"
195 "movl 12(%%eax),%%edx\n\t"
196 "movl 16(%%eax),%%esi\n\t"
197 "movl 20(%%eax),%%edi\n\t"
201 "xchgl %%eax,(%%esp)\n\t"
202 "movl %%ebx,4(%%eax)\n\t"
203 "movl %%ecx,8(%%eax)\n\t"
204 "movl %%edx,12(%%eax)\n\t"
205 "movl %%esi,16(%%eax)\n\t"
206 "movl %%edi,20(%%eax)\n\t"
208 "movl %%edx,0(%%eax)\n\t"
214 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
216 if (rc
!= 0 || (regs
->eax
& 0xffff) == 0xffff || regs
->eax
== eax
)
220 set_cpus_allowed_ptr(current
, old_mask
);
221 free_cpumask_var(old_mask
);
224 rettime
= ktime_get();
225 delta
= ktime_sub(rettime
, calltime
);
226 duration
= ktime_to_ns(delta
) >> 10;
227 pr_debug("smm(0x%.4x 0x%.4x) = 0x%.4x (took %7lu usecs)\n", eax
, ebx
,
228 (rc
? 0xffff : regs
->eax
& 0xffff), duration
);
235 * Read the fan status.
237 static int i8k_get_fan_status(int fan
)
239 struct smm_regs regs
= { .eax
= I8K_SMM_GET_FAN
, };
241 regs
.ebx
= fan
& 0xff;
242 return i8k_smm(®s
) ? : regs
.eax
& 0xff;
246 * Read the fan speed in RPM.
248 static int i8k_get_fan_speed(int fan
)
250 struct smm_regs regs
= { .eax
= I8K_SMM_GET_SPEED
, };
252 regs
.ebx
= fan
& 0xff;
253 return i8k_smm(®s
) ? : (regs
.eax
& 0xffff) * i8k_fan_mult
;
259 static int _i8k_get_fan_type(int fan
)
261 struct smm_regs regs
= { .eax
= I8K_SMM_GET_FAN_TYPE
, };
263 if (disallow_fan_type_call
)
266 regs
.ebx
= fan
& 0xff;
267 return i8k_smm(®s
) ? : regs
.eax
& 0xff;
270 static int i8k_get_fan_type(int fan
)
272 /* I8K_SMM_GET_FAN_TYPE SMM call is expensive, so cache values */
273 static int types
[3] = { INT_MIN
, INT_MIN
, INT_MIN
};
275 if (types
[fan
] == INT_MIN
)
276 types
[fan
] = _i8k_get_fan_type(fan
);
282 * Read the fan nominal rpm for specific fan speed.
284 static int i8k_get_fan_nominal_speed(int fan
, int speed
)
286 struct smm_regs regs
= { .eax
= I8K_SMM_GET_NOM_SPEED
, };
288 regs
.ebx
= (fan
& 0xff) | (speed
<< 8);
289 return i8k_smm(®s
) ? : (regs
.eax
& 0xffff) * i8k_fan_mult
;
293 * Set the fan speed (off, low, high). Returns the new fan status.
295 static int i8k_set_fan(int fan
, int speed
)
297 struct smm_regs regs
= { .eax
= I8K_SMM_SET_FAN
, };
299 speed
= (speed
< 0) ? 0 : ((speed
> i8k_fan_max
) ? i8k_fan_max
: speed
);
300 regs
.ebx
= (fan
& 0xff) | (speed
<< 8);
302 return i8k_smm(®s
) ? : i8k_get_fan_status(fan
);
305 static int i8k_get_temp_type(int sensor
)
307 struct smm_regs regs
= { .eax
= I8K_SMM_GET_TEMP_TYPE
, };
309 regs
.ebx
= sensor
& 0xff;
310 return i8k_smm(®s
) ? : regs
.eax
& 0xff;
314 * Read the cpu temperature.
316 static int _i8k_get_temp(int sensor
)
318 struct smm_regs regs
= {
319 .eax
= I8K_SMM_GET_TEMP
,
320 .ebx
= sensor
& 0xff,
323 return i8k_smm(®s
) ? : regs
.eax
& 0xff;
326 static int i8k_get_temp(int sensor
)
328 int temp
= _i8k_get_temp(sensor
);
331 * Sometimes the temperature sensor returns 0x99, which is out of range.
332 * In this case we retry (once) before returning an error.
333 # 1003655137 00000058 00005a4b
334 # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees
335 # 1003655139 00000054 00005c52
339 temp
= _i8k_get_temp(sensor
);
342 * Return -ENODATA for all invalid temperatures.
344 * Known instances are the 0x99 value as seen above as well as
345 * 0xc1 (193), which may be returned when trying to read the GPU
346 * temperature if the system supports a GPU and it is currently
349 if (temp
> I8K_MAX_TEMP
)
355 static int i8k_get_dell_signature(int req_fn
)
357 struct smm_regs regs
= { .eax
= req_fn
, };
364 return regs
.eax
== 1145651527 && regs
.edx
== 1145392204 ? 0 : -1;
367 #if IS_ENABLED(CONFIG_I8K)
370 * Read the Fn key status.
372 static int i8k_get_fn_status(void)
374 struct smm_regs regs
= { .eax
= I8K_SMM_FN_STATUS
, };
381 switch ((regs
.eax
>> I8K_FN_SHIFT
) & I8K_FN_MASK
) {
394 * Read the power status.
396 static int i8k_get_power_status(void)
398 struct smm_regs regs
= { .eax
= I8K_SMM_POWER_STATUS
, };
405 return (regs
.eax
& 0xff) == I8K_POWER_AC
? I8K_AC
: I8K_BATTERY
;
413 i8k_ioctl_unlocked(struct file
*fp
, unsigned int cmd
, unsigned long arg
)
417 unsigned char buff
[16];
418 int __user
*argp
= (int __user
*)arg
;
424 case I8K_BIOS_VERSION
:
425 if (!isdigit(bios_version
[0]) || !isdigit(bios_version
[1]) ||
426 !isdigit(bios_version
[2]))
429 val
= (bios_version
[0] << 16) |
430 (bios_version
[1] << 8) | bios_version
[2];
434 if (restricted
&& !capable(CAP_SYS_ADMIN
))
437 memset(buff
, 0, sizeof(buff
));
438 strlcpy(buff
, bios_machineid
, sizeof(buff
));
442 val
= i8k_get_fn_status();
445 case I8K_POWER_STATUS
:
446 val
= i8k_get_power_status();
450 val
= i8k_get_temp(0);
454 if (copy_from_user(&val
, argp
, sizeof(int)))
457 val
= i8k_get_fan_speed(val
);
461 if (copy_from_user(&val
, argp
, sizeof(int)))
464 val
= i8k_get_fan_status(val
);
468 if (restricted
&& !capable(CAP_SYS_ADMIN
))
471 if (copy_from_user(&val
, argp
, sizeof(int)))
474 if (copy_from_user(&speed
, argp
+ 1, sizeof(int)))
477 val
= i8k_set_fan(val
, speed
);
488 case I8K_BIOS_VERSION
:
489 if (copy_to_user(argp
, &val
, 4))
494 if (copy_to_user(argp
, buff
, 16))
499 if (copy_to_user(argp
, &val
, sizeof(int)))
508 static long i8k_ioctl(struct file
*fp
, unsigned int cmd
, unsigned long arg
)
512 mutex_lock(&i8k_mutex
);
513 ret
= i8k_ioctl_unlocked(fp
, cmd
, arg
);
514 mutex_unlock(&i8k_mutex
);
520 * Print the information for /proc/i8k.
522 static int i8k_proc_show(struct seq_file
*seq
, void *offset
)
524 int fn_key
, cpu_temp
, ac_power
;
525 int left_fan
, right_fan
, left_speed
, right_speed
;
527 cpu_temp
= i8k_get_temp(0); /* 11100 µs */
528 left_fan
= i8k_get_fan_status(I8K_FAN_LEFT
); /* 580 µs */
529 right_fan
= i8k_get_fan_status(I8K_FAN_RIGHT
); /* 580 µs */
530 left_speed
= i8k_get_fan_speed(I8K_FAN_LEFT
); /* 580 µs */
531 right_speed
= i8k_get_fan_speed(I8K_FAN_RIGHT
); /* 580 µs */
532 fn_key
= i8k_get_fn_status(); /* 750 µs */
534 ac_power
= i8k_get_power_status(); /* 14700 µs */
541 * 1) Format version (this will change if format changes)
546 * 6) Right fan status
552 seq_printf(seq
, "%s %s %s %d %d %d %d %d %d %d\n",
555 (restricted
&& !capable(CAP_SYS_ADMIN
)) ? "-1" : bios_machineid
,
557 left_fan
, right_fan
, left_speed
, right_speed
,
563 static int i8k_open_fs(struct inode
*inode
, struct file
*file
)
565 return single_open(file
, i8k_proc_show
, NULL
);
568 static const struct file_operations i8k_fops
= {
569 .owner
= THIS_MODULE
,
573 .release
= single_release
,
574 .unlocked_ioctl
= i8k_ioctl
,
577 static void __init
i8k_init_procfs(void)
579 /* Register the proc entry */
580 proc_create("i8k", 0, NULL
, &i8k_fops
);
583 static void __exit
i8k_exit_procfs(void)
585 remove_proc_entry("i8k", NULL
);
590 static inline void __init
i8k_init_procfs(void)
594 static inline void __exit
i8k_exit_procfs(void)
604 static ssize_t
i8k_hwmon_show_temp_label(struct device
*dev
,
605 struct device_attribute
*devattr
,
608 static const char * const labels
[] = {
616 int index
= to_sensor_dev_attr(devattr
)->index
;
619 type
= i8k_get_temp_type(index
);
622 if (type
>= ARRAY_SIZE(labels
))
623 type
= ARRAY_SIZE(labels
) - 1;
624 return sprintf(buf
, "%s\n", labels
[type
]);
627 static ssize_t
i8k_hwmon_show_temp(struct device
*dev
,
628 struct device_attribute
*devattr
,
631 int index
= to_sensor_dev_attr(devattr
)->index
;
634 temp
= i8k_get_temp(index
);
637 return sprintf(buf
, "%d\n", temp
* 1000);
640 static ssize_t
i8k_hwmon_show_fan_label(struct device
*dev
,
641 struct device_attribute
*devattr
,
644 static const char * const labels
[] = {
652 int index
= to_sensor_dev_attr(devattr
)->index
;
656 type
= i8k_get_fan_type(index
);
665 if (type
>= ARRAY_SIZE(labels
))
666 type
= (ARRAY_SIZE(labels
) - 1);
668 return sprintf(buf
, "%s%s\n", (dock
? "Docking " : ""), labels
[type
]);
671 static ssize_t
i8k_hwmon_show_fan(struct device
*dev
,
672 struct device_attribute
*devattr
,
675 int index
= to_sensor_dev_attr(devattr
)->index
;
678 fan_speed
= i8k_get_fan_speed(index
);
681 return sprintf(buf
, "%d\n", fan_speed
);
684 static ssize_t
i8k_hwmon_show_pwm(struct device
*dev
,
685 struct device_attribute
*devattr
,
688 int index
= to_sensor_dev_attr(devattr
)->index
;
691 status
= i8k_get_fan_status(index
);
694 return sprintf(buf
, "%d\n", clamp_val(status
* i8k_pwm_mult
, 0, 255));
697 static ssize_t
i8k_hwmon_set_pwm(struct device
*dev
,
698 struct device_attribute
*attr
,
699 const char *buf
, size_t count
)
701 int index
= to_sensor_dev_attr(attr
)->index
;
705 err
= kstrtoul(buf
, 10, &val
);
708 val
= clamp_val(DIV_ROUND_CLOSEST(val
, i8k_pwm_mult
), 0, i8k_fan_max
);
710 mutex_lock(&i8k_mutex
);
711 err
= i8k_set_fan(index
, val
);
712 mutex_unlock(&i8k_mutex
);
714 return err
< 0 ? -EIO
: count
;
717 static SENSOR_DEVICE_ATTR(temp1_input
, S_IRUGO
, i8k_hwmon_show_temp
, NULL
, 0);
718 static SENSOR_DEVICE_ATTR(temp1_label
, S_IRUGO
, i8k_hwmon_show_temp_label
, NULL
,
720 static SENSOR_DEVICE_ATTR(temp2_input
, S_IRUGO
, i8k_hwmon_show_temp
, NULL
, 1);
721 static SENSOR_DEVICE_ATTR(temp2_label
, S_IRUGO
, i8k_hwmon_show_temp_label
, NULL
,
723 static SENSOR_DEVICE_ATTR(temp3_input
, S_IRUGO
, i8k_hwmon_show_temp
, NULL
, 2);
724 static SENSOR_DEVICE_ATTR(temp3_label
, S_IRUGO
, i8k_hwmon_show_temp_label
, NULL
,
726 static SENSOR_DEVICE_ATTR(temp4_input
, S_IRUGO
, i8k_hwmon_show_temp
, NULL
, 3);
727 static SENSOR_DEVICE_ATTR(temp4_label
, S_IRUGO
, i8k_hwmon_show_temp_label
, NULL
,
729 static SENSOR_DEVICE_ATTR(fan1_input
, S_IRUGO
, i8k_hwmon_show_fan
, NULL
, 0);
730 static SENSOR_DEVICE_ATTR(fan1_label
, S_IRUGO
, i8k_hwmon_show_fan_label
, NULL
,
732 static SENSOR_DEVICE_ATTR(pwm1
, S_IRUGO
| S_IWUSR
, i8k_hwmon_show_pwm
,
733 i8k_hwmon_set_pwm
, 0);
734 static SENSOR_DEVICE_ATTR(fan2_input
, S_IRUGO
, i8k_hwmon_show_fan
, NULL
,
736 static SENSOR_DEVICE_ATTR(fan2_label
, S_IRUGO
, i8k_hwmon_show_fan_label
, NULL
,
738 static SENSOR_DEVICE_ATTR(pwm2
, S_IRUGO
| S_IWUSR
, i8k_hwmon_show_pwm
,
739 i8k_hwmon_set_pwm
, 1);
740 static SENSOR_DEVICE_ATTR(fan3_input
, S_IRUGO
, i8k_hwmon_show_fan
, NULL
,
742 static SENSOR_DEVICE_ATTR(fan3_label
, S_IRUGO
, i8k_hwmon_show_fan_label
, NULL
,
744 static SENSOR_DEVICE_ATTR(pwm3
, S_IRUGO
| S_IWUSR
, i8k_hwmon_show_pwm
,
745 i8k_hwmon_set_pwm
, 2);
747 static struct attribute
*i8k_attrs
[] = {
748 &sensor_dev_attr_temp1_input
.dev_attr
.attr
, /* 0 */
749 &sensor_dev_attr_temp1_label
.dev_attr
.attr
, /* 1 */
750 &sensor_dev_attr_temp2_input
.dev_attr
.attr
, /* 2 */
751 &sensor_dev_attr_temp2_label
.dev_attr
.attr
, /* 3 */
752 &sensor_dev_attr_temp3_input
.dev_attr
.attr
, /* 4 */
753 &sensor_dev_attr_temp3_label
.dev_attr
.attr
, /* 5 */
754 &sensor_dev_attr_temp4_input
.dev_attr
.attr
, /* 6 */
755 &sensor_dev_attr_temp4_label
.dev_attr
.attr
, /* 7 */
756 &sensor_dev_attr_fan1_input
.dev_attr
.attr
, /* 8 */
757 &sensor_dev_attr_fan1_label
.dev_attr
.attr
, /* 9 */
758 &sensor_dev_attr_pwm1
.dev_attr
.attr
, /* 10 */
759 &sensor_dev_attr_fan2_input
.dev_attr
.attr
, /* 11 */
760 &sensor_dev_attr_fan2_label
.dev_attr
.attr
, /* 12 */
761 &sensor_dev_attr_pwm2
.dev_attr
.attr
, /* 13 */
762 &sensor_dev_attr_fan3_input
.dev_attr
.attr
, /* 14 */
763 &sensor_dev_attr_fan3_label
.dev_attr
.attr
, /* 15 */
764 &sensor_dev_attr_pwm3
.dev_attr
.attr
, /* 16 */
768 static umode_t
i8k_is_visible(struct kobject
*kobj
, struct attribute
*attr
,
771 if (disallow_fan_type_call
&&
772 (index
== 9 || index
== 12 || index
== 15))
774 if (index
>= 0 && index
<= 1 &&
775 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_TEMP1
))
777 if (index
>= 2 && index
<= 3 &&
778 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_TEMP2
))
780 if (index
>= 4 && index
<= 5 &&
781 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_TEMP3
))
783 if (index
>= 6 && index
<= 7 &&
784 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_TEMP4
))
786 if (index
>= 8 && index
<= 10 &&
787 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_FAN1
))
789 if (index
>= 11 && index
<= 13 &&
790 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_FAN2
))
792 if (index
>= 14 && index
<= 16 &&
793 !(i8k_hwmon_flags
& I8K_HWMON_HAVE_FAN3
))
799 static const struct attribute_group i8k_group
= {
801 .is_visible
= i8k_is_visible
,
803 __ATTRIBUTE_GROUPS(i8k
);
805 static int __init
i8k_init_hwmon(void)
811 /* CPU temperature attributes, if temperature type is OK */
812 err
= i8k_get_temp_type(0);
814 i8k_hwmon_flags
|= I8K_HWMON_HAVE_TEMP1
;
815 /* check for additional temperature sensors */
816 err
= i8k_get_temp_type(1);
818 i8k_hwmon_flags
|= I8K_HWMON_HAVE_TEMP2
;
819 err
= i8k_get_temp_type(2);
821 i8k_hwmon_flags
|= I8K_HWMON_HAVE_TEMP3
;
822 err
= i8k_get_temp_type(3);
824 i8k_hwmon_flags
|= I8K_HWMON_HAVE_TEMP4
;
826 /* First fan attributes, if fan status or type is OK */
827 err
= i8k_get_fan_status(0);
829 err
= i8k_get_fan_type(0);
831 i8k_hwmon_flags
|= I8K_HWMON_HAVE_FAN1
;
833 /* Second fan attributes, if fan status or type is OK */
834 err
= i8k_get_fan_status(1);
836 err
= i8k_get_fan_type(1);
838 i8k_hwmon_flags
|= I8K_HWMON_HAVE_FAN2
;
840 /* Third fan attributes, if fan status or type is OK */
841 err
= i8k_get_fan_status(2);
843 err
= i8k_get_fan_type(2);
845 i8k_hwmon_flags
|= I8K_HWMON_HAVE_FAN3
;
847 i8k_hwmon_dev
= hwmon_device_register_with_groups(NULL
, "dell_smm",
849 if (IS_ERR(i8k_hwmon_dev
)) {
850 err
= PTR_ERR(i8k_hwmon_dev
);
851 i8k_hwmon_dev
= NULL
;
852 pr_err("hwmon registration failed (%d)\n", err
);
858 struct i8k_config_data
{
870 static const struct i8k_config_data i8k_config_data
[] = {
871 [DELL_LATITUDE_D520
] = {
873 .fan_max
= I8K_FAN_TURBO
,
875 [DELL_PRECISION_490
] = {
877 .fan_max
= I8K_FAN_TURBO
,
881 .fan_max
= I8K_FAN_HIGH
,
885 .fan_max
= I8K_FAN_HIGH
,
889 static struct dmi_system_id i8k_dmi_table
[] __initdata
= {
891 .ident
= "Dell Inspiron",
893 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Computer"),
894 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron"),
898 .ident
= "Dell Latitude",
900 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Computer"),
901 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude"),
905 .ident
= "Dell Inspiron 2",
907 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
908 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron"),
912 .ident
= "Dell Latitude D520",
914 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
915 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude D520"),
917 .driver_data
= (void *)&i8k_config_data
[DELL_LATITUDE_D520
],
920 .ident
= "Dell Latitude 2",
922 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
923 DMI_MATCH(DMI_PRODUCT_NAME
, "Latitude"),
926 { /* UK Inspiron 6400 */
927 .ident
= "Dell Inspiron 3",
929 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
930 DMI_MATCH(DMI_PRODUCT_NAME
, "MM061"),
934 .ident
= "Dell Inspiron 3",
936 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
937 DMI_MATCH(DMI_PRODUCT_NAME
, "MP061"),
941 .ident
= "Dell Precision 490",
943 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
944 DMI_MATCH(DMI_PRODUCT_NAME
,
945 "Precision WorkStation 490"),
947 .driver_data
= (void *)&i8k_config_data
[DELL_PRECISION_490
],
950 .ident
= "Dell Precision",
952 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
953 DMI_MATCH(DMI_PRODUCT_NAME
, "Precision"),
957 .ident
= "Dell Vostro",
959 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
960 DMI_MATCH(DMI_PRODUCT_NAME
, "Vostro"),
964 .ident
= "Dell XPS421",
966 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
967 DMI_MATCH(DMI_PRODUCT_NAME
, "XPS L421X"),
971 .ident
= "Dell Studio",
973 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
974 DMI_MATCH(DMI_PRODUCT_NAME
, "Studio"),
976 .driver_data
= (void *)&i8k_config_data
[DELL_STUDIO
],
979 .ident
= "Dell XPS 13",
981 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
982 DMI_MATCH(DMI_PRODUCT_NAME
, "XPS13"),
984 .driver_data
= (void *)&i8k_config_data
[DELL_XPS
],
987 .ident
= "Dell XPS M140",
989 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
990 DMI_MATCH(DMI_PRODUCT_NAME
, "MXC051"),
992 .driver_data
= (void *)&i8k_config_data
[DELL_XPS
],
997 MODULE_DEVICE_TABLE(dmi
, i8k_dmi_table
);
1000 * On some machines once I8K_SMM_GET_FAN_TYPE is issued then CPU fan speed
1001 * randomly going up and down due to bug in Dell SMM or BIOS. Here is blacklist
1002 * of affected Dell machines for which we disallow I8K_SMM_GET_FAN_TYPE call.
1003 * See bug: https://bugzilla.kernel.org/show_bug.cgi?id=100121
1005 static struct dmi_system_id i8k_blacklist_fan_type_dmi_table
[] __initdata
= {
1007 .ident
= "Dell Studio XPS 8000",
1009 DMI_EXACT_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
1010 DMI_EXACT_MATCH(DMI_PRODUCT_NAME
, "Studio XPS 8000"),
1014 .ident
= "Dell Studio XPS 8100",
1016 DMI_EXACT_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
1017 DMI_EXACT_MATCH(DMI_PRODUCT_NAME
, "Studio XPS 8100"),
1021 .ident
= "Dell Inspiron 580",
1023 DMI_EXACT_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
1024 DMI_EXACT_MATCH(DMI_PRODUCT_NAME
, "Inspiron 580 "),
1031 * Probe for the presence of a supported laptop.
1033 static int __init
i8k_probe(void)
1035 const struct dmi_system_id
*id
;
1039 * Get DMI information
1041 if (!dmi_check_system(i8k_dmi_table
)) {
1042 if (!ignore_dmi
&& !force
)
1045 pr_info("not running on a supported Dell system.\n");
1046 pr_info("vendor=%s, model=%s, version=%s\n",
1047 i8k_get_dmi_data(DMI_SYS_VENDOR
),
1048 i8k_get_dmi_data(DMI_PRODUCT_NAME
),
1049 i8k_get_dmi_data(DMI_BIOS_VERSION
));
1052 if (dmi_check_system(i8k_blacklist_fan_type_dmi_table
))
1053 disallow_fan_type_call
= true;
1055 strlcpy(bios_version
, i8k_get_dmi_data(DMI_BIOS_VERSION
),
1056 sizeof(bios_version
));
1057 strlcpy(bios_machineid
, i8k_get_dmi_data(DMI_PRODUCT_SERIAL
),
1058 sizeof(bios_machineid
));
1061 * Get SMM Dell signature
1063 if (i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG1
) &&
1064 i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG2
)) {
1065 pr_err("unable to get SMM Dell signature\n");
1071 * Set fan multiplier and maximal fan speed from dmi config
1072 * Values specified in module parameters override values from dmi
1074 id
= dmi_first_match(i8k_dmi_table
);
1075 if (id
&& id
->driver_data
) {
1076 const struct i8k_config_data
*conf
= id
->driver_data
;
1077 if (!fan_mult
&& conf
->fan_mult
)
1078 fan_mult
= conf
->fan_mult
;
1079 if (!fan_max
&& conf
->fan_max
)
1080 fan_max
= conf
->fan_max
;
1083 i8k_fan_max
= fan_max
? : I8K_FAN_HIGH
; /* Must not be 0 */
1084 i8k_pwm_mult
= DIV_ROUND_UP(255, i8k_fan_max
);
1088 * Autodetect fan multiplier based on nominal rpm
1089 * If fan reports rpm value too high then set multiplier to 1
1091 for (fan
= 0; fan
< 2; ++fan
) {
1092 ret
= i8k_get_fan_nominal_speed(fan
, i8k_fan_max
);
1095 if (ret
> I8K_FAN_MAX_RPM
)
1100 /* Fan multiplier was specified in module param or in dmi */
1101 i8k_fan_mult
= fan_mult
;
1107 static int __init
i8k_init(void)
1111 /* Are we running on an supported laptop? */
1115 err
= i8k_init_hwmon();
1123 static void __exit
i8k_exit(void)
1125 hwmon_device_unregister(i8k_hwmon_dev
);
1129 module_init(i8k_init
);
1130 module_exit(i8k_exit
);