Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / hwmon / dell-smm-hwmon.c
blobf5bdf842040e6c4bde367e72339edd18a09e78f7
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * dell-smm-hwmon.c -- Linux driver for accessing the SMM BIOS on Dell laptops.
5 * Copyright (C) 2001 Massimo Dal Zotto <dz@debian.org>
7 * Hwmon integration:
8 * Copyright (C) 2011 Jean Delvare <jdelvare@suse.de>
9 * Copyright (C) 2013, 2014 Guenter Roeck <linux@roeck-us.net>
10 * Copyright (C) 2014, 2015 Pali Rohár <pali@kernel.org>
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/acpi.h>
16 #include <linux/capability.h>
17 #include <linux/cpu.h>
18 #include <linux/ctype.h>
19 #include <linux/delay.h>
20 #include <linux/dmi.h>
21 #include <linux/err.h>
22 #include <linux/errno.h>
23 #include <linux/hwmon.h>
24 #include <linux/init.h>
25 #include <linux/kconfig.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/mutex.h>
29 #include <linux/platform_device.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
32 #include <linux/slab.h>
33 #include <linux/smp.h>
34 #include <linux/string.h>
35 #include <linux/thermal.h>
36 #include <linux/types.h>
37 #include <linux/uaccess.h>
38 #include <linux/wmi.h>
40 #include <linux/i8k.h>
41 #include <linux/unaligned.h>
43 #define I8K_SMM_FN_STATUS 0x0025
44 #define I8K_SMM_POWER_STATUS 0x0069
45 #define I8K_SMM_SET_FAN 0x01a3
46 #define I8K_SMM_GET_FAN 0x00a3
47 #define I8K_SMM_GET_SPEED 0x02a3
48 #define I8K_SMM_GET_FAN_TYPE 0x03a3
49 #define I8K_SMM_GET_NOM_SPEED 0x04a3
50 #define I8K_SMM_GET_TEMP 0x10a3
51 #define I8K_SMM_GET_TEMP_TYPE 0x11a3
52 #define I8K_SMM_GET_DELL_SIG1 0xfea3
53 #define I8K_SMM_GET_DELL_SIG2 0xffa3
55 /* in usecs */
56 #define DELL_SMM_MAX_DURATION 250000
58 #define I8K_FAN_MULT 30
59 #define I8K_FAN_RPM_THRESHOLD 1000
60 #define I8K_MAX_TEMP 127
62 #define I8K_FN_NONE 0x00
63 #define I8K_FN_UP 0x01
64 #define I8K_FN_DOWN 0x02
65 #define I8K_FN_MUTE 0x04
66 #define I8K_FN_MASK 0x07
67 #define I8K_FN_SHIFT 8
69 #define I8K_POWER_AC 0x05
70 #define I8K_POWER_BATTERY 0x01
72 #define DELL_SMM_WMI_GUID "F1DDEE52-063C-4784-A11E-8A06684B9B01"
73 #define DELL_SMM_LEGACY_EXECUTE 0x1
75 #define DELL_SMM_NO_TEMP 10
76 #define DELL_SMM_NO_FANS 3
78 struct smm_regs {
79 unsigned int eax;
80 unsigned int ebx;
81 unsigned int ecx;
82 unsigned int edx;
83 unsigned int esi;
84 unsigned int edi;
87 struct dell_smm_ops {
88 struct device *smm_dev;
89 int (*smm_call)(struct device *smm_dev, struct smm_regs *regs);
92 struct dell_smm_data {
93 struct mutex i8k_mutex; /* lock for sensors writes */
94 char bios_version[4];
95 char bios_machineid[16];
96 uint i8k_fan_mult;
97 uint i8k_pwm_mult;
98 uint i8k_fan_max;
99 int temp_type[DELL_SMM_NO_TEMP];
100 bool fan[DELL_SMM_NO_FANS];
101 int fan_type[DELL_SMM_NO_FANS];
102 int *fan_nominal_speed[DELL_SMM_NO_FANS];
103 const struct dell_smm_ops *ops;
106 struct dell_smm_cooling_data {
107 u8 fan_num;
108 struct dell_smm_data *data;
111 MODULE_AUTHOR("Massimo Dal Zotto <dz@debian.org>");
112 MODULE_AUTHOR("Pali Rohár <pali@kernel.org>");
113 MODULE_DESCRIPTION("Dell laptop SMM BIOS hwmon driver");
114 MODULE_LICENSE("GPL");
115 MODULE_ALIAS("i8k");
117 static bool force;
118 module_param_unsafe(force, bool, 0);
119 MODULE_PARM_DESC(force, "Force loading without checking for supported models and features");
121 static bool ignore_dmi;
122 module_param(ignore_dmi, bool, 0);
123 MODULE_PARM_DESC(ignore_dmi, "Continue probing hardware even if DMI data does not match");
125 #if IS_ENABLED(CONFIG_I8K)
126 static bool restricted = true;
127 module_param(restricted, bool, 0);
128 MODULE_PARM_DESC(restricted, "Restrict fan control and serial number to CAP_SYS_ADMIN (default: 1)");
130 static bool power_status;
131 module_param(power_status, bool, 0600);
132 MODULE_PARM_DESC(power_status, "Report power status in /proc/i8k (default: 0)");
133 #endif
135 static uint fan_mult;
136 module_param(fan_mult, uint, 0);
137 MODULE_PARM_DESC(fan_mult, "Factor to multiply fan speed with (default: autodetect)");
139 static uint fan_max;
140 module_param(fan_max, uint, 0);
141 MODULE_PARM_DESC(fan_max, "Maximum configurable fan speed (default: autodetect)");
143 static bool disallow_fan_type_call, disallow_fan_support;
145 static unsigned int manual_fan, auto_fan;
147 static const char * const temp_labels[] = {
148 "CPU",
149 "GPU",
150 "SODIMM",
151 "Other",
152 "Ambient",
153 "Other",
156 static const char * const fan_labels[] = {
157 "Processor Fan",
158 "Motherboard Fan",
159 "Video Fan",
160 "Power Supply Fan",
161 "Chipset Fan",
162 "Other Fan",
165 static const char * const docking_labels[] = {
166 "Docking Processor Fan",
167 "Docking Motherboard Fan",
168 "Docking Video Fan",
169 "Docking Power Supply Fan",
170 "Docking Chipset Fan",
171 "Docking Other Fan",
174 static inline const char __init *i8k_get_dmi_data(int field)
176 const char *dmi_data = dmi_get_system_info(field);
178 return dmi_data && *dmi_data ? dmi_data : "?";
182 * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard.
184 static int i8k_smm_func(void *par)
186 struct smm_regs *regs = par;
187 unsigned char carry;
189 /* SMM requires CPU 0 */
190 if (smp_processor_id() != 0)
191 return -EBUSY;
193 asm volatile("out %%al,$0xb2\n\t"
194 "out %%al,$0x84\n\t"
195 "setc %0\n"
196 : "=mr" (carry),
197 "+a" (regs->eax),
198 "+b" (regs->ebx),
199 "+c" (regs->ecx),
200 "+d" (regs->edx),
201 "+S" (regs->esi),
202 "+D" (regs->edi));
204 if (carry)
205 return -EINVAL;
207 return 0;
211 * Call the System Management Mode BIOS.
213 static int i8k_smm_call(struct device *dummy, struct smm_regs *regs)
215 int ret;
217 cpus_read_lock();
218 ret = smp_call_on_cpu(0, i8k_smm_func, regs, true);
219 cpus_read_unlock();
221 return ret;
224 static const struct dell_smm_ops i8k_smm_ops = {
225 .smm_call = i8k_smm_call,
229 * Call the System Management Mode BIOS over WMI.
231 static ssize_t wmi_parse_register(u8 *buffer, u32 length, unsigned int *reg)
233 __le32 value;
234 u32 reg_size;
236 if (length <= sizeof(reg_size))
237 return -ENODATA;
239 reg_size = get_unaligned_le32(buffer);
240 if (!reg_size || reg_size > sizeof(value))
241 return -ENOMSG;
243 if (length < sizeof(reg_size) + reg_size)
244 return -ENODATA;
246 memcpy_and_pad(&value, sizeof(value), buffer + sizeof(reg_size), reg_size, 0);
247 *reg = le32_to_cpu(value);
249 return reg_size + sizeof(reg_size);
252 static int wmi_parse_response(u8 *buffer, u32 length, struct smm_regs *regs)
254 unsigned int *registers[] = {
255 &regs->eax,
256 &regs->ebx,
257 &regs->ecx,
258 &regs->edx
260 u32 offset = 0;
261 ssize_t ret;
262 int i;
264 for (i = 0; i < ARRAY_SIZE(registers); i++) {
265 if (offset >= length)
266 return -ENODATA;
268 ret = wmi_parse_register(buffer + offset, length - offset, registers[i]);
269 if (ret < 0)
270 return ret;
272 offset += ret;
275 if (offset != length)
276 return -ENOMSG;
278 return 0;
281 static int wmi_smm_call(struct device *dev, struct smm_regs *regs)
283 struct wmi_device *wdev = container_of(dev, struct wmi_device, dev);
284 struct acpi_buffer out = { ACPI_ALLOCATE_BUFFER, NULL };
285 u32 wmi_payload[] = {
286 sizeof(regs->eax),
287 regs->eax,
288 sizeof(regs->ebx),
289 regs->ebx,
290 sizeof(regs->ecx),
291 regs->ecx,
292 sizeof(regs->edx),
293 regs->edx
295 const struct acpi_buffer in = {
296 .length = sizeof(wmi_payload),
297 .pointer = &wmi_payload,
299 union acpi_object *obj;
300 acpi_status status;
301 int ret;
303 status = wmidev_evaluate_method(wdev, 0x0, DELL_SMM_LEGACY_EXECUTE, &in, &out);
304 if (ACPI_FAILURE(status))
305 return -EIO;
307 obj = out.pointer;
308 if (!obj)
309 return -ENODATA;
311 if (obj->type != ACPI_TYPE_BUFFER) {
312 ret = -ENOMSG;
314 goto err_free;
317 ret = wmi_parse_response(obj->buffer.pointer, obj->buffer.length, regs);
319 err_free:
320 kfree(obj);
322 return ret;
325 static int dell_smm_call(const struct dell_smm_ops *ops, struct smm_regs *regs)
327 unsigned int eax = regs->eax;
328 unsigned int ebx = regs->ebx;
329 long long duration;
330 ktime_t calltime;
331 int ret;
333 calltime = ktime_get();
334 ret = ops->smm_call(ops->smm_dev, regs);
335 duration = ktime_us_delta(ktime_get(), calltime);
337 pr_debug("SMM(0x%.4x 0x%.4x) = 0x%.4x status: %d (took %7lld usecs)\n",
338 eax, ebx, regs->eax & 0xffff, ret, duration);
340 if (duration > DELL_SMM_MAX_DURATION)
341 pr_warn_once("SMM call took %lld usecs!\n", duration);
343 if (ret < 0)
344 return ret;
346 if ((regs->eax & 0xffff) == 0xffff || regs->eax == eax)
347 return -EINVAL;
349 return 0;
353 * Read the fan status.
355 static int i8k_get_fan_status(const struct dell_smm_data *data, u8 fan)
357 struct smm_regs regs = {
358 .eax = I8K_SMM_GET_FAN,
359 .ebx = fan,
362 if (disallow_fan_support)
363 return -EINVAL;
365 return dell_smm_call(data->ops, &regs) ? : regs.eax & 0xff;
369 * Read the fan speed in RPM.
371 static int i8k_get_fan_speed(const struct dell_smm_data *data, u8 fan)
373 struct smm_regs regs = {
374 .eax = I8K_SMM_GET_SPEED,
375 .ebx = fan,
378 if (disallow_fan_support)
379 return -EINVAL;
381 return dell_smm_call(data->ops, &regs) ? : (regs.eax & 0xffff) * data->i8k_fan_mult;
385 * Read the fan type.
387 static int _i8k_get_fan_type(const struct dell_smm_data *data, u8 fan)
389 struct smm_regs regs = {
390 .eax = I8K_SMM_GET_FAN_TYPE,
391 .ebx = fan,
394 if (disallow_fan_support || disallow_fan_type_call)
395 return -EINVAL;
397 return dell_smm_call(data->ops, &regs) ? : regs.eax & 0xff;
400 static int i8k_get_fan_type(struct dell_smm_data *data, u8 fan)
402 /* I8K_SMM_GET_FAN_TYPE SMM call is expensive, so cache values */
403 if (data->fan_type[fan] == INT_MIN)
404 data->fan_type[fan] = _i8k_get_fan_type(data, fan);
406 return data->fan_type[fan];
410 * Read the fan nominal rpm for specific fan speed.
412 static int i8k_get_fan_nominal_speed(const struct dell_smm_data *data, u8 fan, int speed)
414 struct smm_regs regs = {
415 .eax = I8K_SMM_GET_NOM_SPEED,
416 .ebx = fan | (speed << 8),
419 if (disallow_fan_support)
420 return -EINVAL;
422 return dell_smm_call(data->ops, &regs) ? : (regs.eax & 0xffff);
426 * Enable or disable automatic BIOS fan control support
428 static int i8k_enable_fan_auto_mode(const struct dell_smm_data *data, bool enable)
430 struct smm_regs regs = { };
432 if (disallow_fan_support)
433 return -EINVAL;
435 regs.eax = enable ? auto_fan : manual_fan;
436 return dell_smm_call(data->ops, &regs);
440 * Set the fan speed (off, low, high, ...).
442 static int i8k_set_fan(const struct dell_smm_data *data, u8 fan, int speed)
444 struct smm_regs regs = { .eax = I8K_SMM_SET_FAN, };
446 if (disallow_fan_support)
447 return -EINVAL;
449 speed = (speed < 0) ? 0 : ((speed > data->i8k_fan_max) ? data->i8k_fan_max : speed);
450 regs.ebx = fan | (speed << 8);
452 return dell_smm_call(data->ops, &regs);
455 static int i8k_get_temp_type(const struct dell_smm_data *data, u8 sensor)
457 struct smm_regs regs = {
458 .eax = I8K_SMM_GET_TEMP_TYPE,
459 .ebx = sensor,
462 return dell_smm_call(data->ops, &regs) ? : regs.eax & 0xff;
466 * Read the cpu temperature.
468 static int _i8k_get_temp(const struct dell_smm_data *data, u8 sensor)
470 struct smm_regs regs = {
471 .eax = I8K_SMM_GET_TEMP,
472 .ebx = sensor,
475 return dell_smm_call(data->ops, &regs) ? : regs.eax & 0xff;
478 static int i8k_get_temp(const struct dell_smm_data *data, u8 sensor)
480 int temp = _i8k_get_temp(data, sensor);
483 * Sometimes the temperature sensor returns 0x99, which is out of range.
484 * In this case we retry (once) before returning an error.
485 # 1003655137 00000058 00005a4b
486 # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees
487 # 1003655139 00000054 00005c52
489 if (temp == 0x99) {
490 msleep(100);
491 temp = _i8k_get_temp(data, sensor);
494 * Return -ENODATA for all invalid temperatures.
496 * Known instances are the 0x99 value as seen above as well as
497 * 0xc1 (193), which may be returned when trying to read the GPU
498 * temperature if the system supports a GPU and it is currently
499 * turned off.
501 if (temp > I8K_MAX_TEMP)
502 return -ENODATA;
504 return temp;
507 static int dell_smm_get_signature(const struct dell_smm_ops *ops, int req_fn)
509 struct smm_regs regs = { .eax = req_fn, };
510 int rc;
512 rc = dell_smm_call(ops, &regs);
513 if (rc < 0)
514 return rc;
516 return regs.eax == 1145651527 && regs.edx == 1145392204 ? 0 : -1;
519 #if IS_ENABLED(CONFIG_I8K)
522 * Read the Fn key status.
524 static int i8k_get_fn_status(const struct dell_smm_data *data)
526 struct smm_regs regs = { .eax = I8K_SMM_FN_STATUS, };
527 int rc;
529 rc = dell_smm_call(data->ops, &regs);
530 if (rc < 0)
531 return rc;
533 switch ((regs.eax >> I8K_FN_SHIFT) & I8K_FN_MASK) {
534 case I8K_FN_UP:
535 return I8K_VOL_UP;
536 case I8K_FN_DOWN:
537 return I8K_VOL_DOWN;
538 case I8K_FN_MUTE:
539 return I8K_VOL_MUTE;
540 default:
541 return 0;
546 * Read the power status.
548 static int i8k_get_power_status(const struct dell_smm_data *data)
550 struct smm_regs regs = { .eax = I8K_SMM_POWER_STATUS, };
551 int rc;
553 rc = dell_smm_call(data->ops, &regs);
554 if (rc < 0)
555 return rc;
557 return (regs.eax & 0xff) == I8K_POWER_AC ? I8K_AC : I8K_BATTERY;
561 * Procfs interface
564 static long i8k_ioctl(struct file *fp, unsigned int cmd, unsigned long arg)
566 struct dell_smm_data *data = pde_data(file_inode(fp));
567 int __user *argp = (int __user *)arg;
568 int speed, err;
569 int val = 0;
571 if (!argp)
572 return -EINVAL;
574 switch (cmd) {
575 case I8K_BIOS_VERSION:
576 if (!isdigit(data->bios_version[0]) || !isdigit(data->bios_version[1]) ||
577 !isdigit(data->bios_version[2]))
578 return -EINVAL;
580 val = (data->bios_version[0] << 16) |
581 (data->bios_version[1] << 8) | data->bios_version[2];
583 if (copy_to_user(argp, &val, sizeof(val)))
584 return -EFAULT;
586 return 0;
587 case I8K_MACHINE_ID:
588 if (restricted && !capable(CAP_SYS_ADMIN))
589 return -EPERM;
591 if (copy_to_user(argp, data->bios_machineid, sizeof(data->bios_machineid)))
592 return -EFAULT;
594 return 0;
595 case I8K_FN_STATUS:
596 val = i8k_get_fn_status(data);
597 break;
599 case I8K_POWER_STATUS:
600 val = i8k_get_power_status(data);
601 break;
603 case I8K_GET_TEMP:
604 val = i8k_get_temp(data, 0);
605 break;
607 case I8K_GET_SPEED:
608 if (copy_from_user(&val, argp, sizeof(int)))
609 return -EFAULT;
611 if (val > U8_MAX || val < 0)
612 return -EINVAL;
614 val = i8k_get_fan_speed(data, val);
615 break;
617 case I8K_GET_FAN:
618 if (copy_from_user(&val, argp, sizeof(int)))
619 return -EFAULT;
621 if (val > U8_MAX || val < 0)
622 return -EINVAL;
624 val = i8k_get_fan_status(data, val);
625 break;
627 case I8K_SET_FAN:
628 if (restricted && !capable(CAP_SYS_ADMIN))
629 return -EPERM;
631 if (copy_from_user(&val, argp, sizeof(int)))
632 return -EFAULT;
634 if (val > U8_MAX || val < 0)
635 return -EINVAL;
637 if (copy_from_user(&speed, argp + 1, sizeof(int)))
638 return -EFAULT;
640 mutex_lock(&data->i8k_mutex);
641 err = i8k_set_fan(data, val, speed);
642 if (err < 0)
643 val = err;
644 else
645 val = i8k_get_fan_status(data, val);
646 mutex_unlock(&data->i8k_mutex);
647 break;
649 default:
650 return -ENOIOCTLCMD;
653 if (val < 0)
654 return val;
656 if (copy_to_user(argp, &val, sizeof(int)))
657 return -EFAULT;
659 return 0;
663 * Print the information for /proc/i8k.
665 static int i8k_proc_show(struct seq_file *seq, void *offset)
667 struct dell_smm_data *data = seq->private;
668 int fn_key, cpu_temp, ac_power;
669 int left_fan, right_fan, left_speed, right_speed;
671 cpu_temp = i8k_get_temp(data, 0); /* 11100 µs */
672 left_fan = i8k_get_fan_status(data, I8K_FAN_LEFT); /* 580 µs */
673 right_fan = i8k_get_fan_status(data, I8K_FAN_RIGHT); /* 580 µs */
674 left_speed = i8k_get_fan_speed(data, I8K_FAN_LEFT); /* 580 µs */
675 right_speed = i8k_get_fan_speed(data, I8K_FAN_RIGHT); /* 580 µs */
676 fn_key = i8k_get_fn_status(data); /* 750 µs */
677 if (power_status)
678 ac_power = i8k_get_power_status(data); /* 14700 µs */
679 else
680 ac_power = -1;
683 * Info:
685 * 1) Format version (this will change if format changes)
686 * 2) BIOS version
687 * 3) BIOS machine ID
688 * 4) Cpu temperature
689 * 5) Left fan status
690 * 6) Right fan status
691 * 7) Left fan speed
692 * 8) Right fan speed
693 * 9) AC power
694 * 10) Fn Key status
696 seq_printf(seq, "%s %s %s %d %d %d %d %d %d %d\n",
697 I8K_PROC_FMT,
698 data->bios_version,
699 (restricted && !capable(CAP_SYS_ADMIN)) ? "-1" : data->bios_machineid,
700 cpu_temp,
701 left_fan, right_fan, left_speed, right_speed,
702 ac_power, fn_key);
704 return 0;
707 static int i8k_open_fs(struct inode *inode, struct file *file)
709 return single_open(file, i8k_proc_show, pde_data(inode));
712 static const struct proc_ops i8k_proc_ops = {
713 .proc_open = i8k_open_fs,
714 .proc_read = seq_read,
715 .proc_lseek = seq_lseek,
716 .proc_release = single_release,
717 .proc_ioctl = i8k_ioctl,
720 static void i8k_exit_procfs(void *param)
722 remove_proc_entry("i8k", NULL);
725 static void __init i8k_init_procfs(struct device *dev)
727 struct dell_smm_data *data = dev_get_drvdata(dev);
729 strscpy(data->bios_version, i8k_get_dmi_data(DMI_BIOS_VERSION),
730 sizeof(data->bios_version));
731 strscpy(data->bios_machineid, i8k_get_dmi_data(DMI_PRODUCT_SERIAL),
732 sizeof(data->bios_machineid));
734 /* Only register exit function if creation was successful */
735 if (proc_create_data("i8k", 0, NULL, &i8k_proc_ops, data))
736 devm_add_action_or_reset(dev, i8k_exit_procfs, NULL);
739 #else
741 static void __init i8k_init_procfs(struct device *dev)
745 #endif
747 static int dell_smm_get_max_state(struct thermal_cooling_device *dev, unsigned long *state)
749 struct dell_smm_cooling_data *cdata = dev->devdata;
751 *state = cdata->data->i8k_fan_max;
753 return 0;
756 static int dell_smm_get_cur_state(struct thermal_cooling_device *dev, unsigned long *state)
758 struct dell_smm_cooling_data *cdata = dev->devdata;
759 int ret;
761 ret = i8k_get_fan_status(cdata->data, cdata->fan_num);
762 if (ret < 0)
763 return ret;
765 *state = ret;
767 return 0;
770 static int dell_smm_set_cur_state(struct thermal_cooling_device *dev, unsigned long state)
772 struct dell_smm_cooling_data *cdata = dev->devdata;
773 struct dell_smm_data *data = cdata->data;
774 int ret;
776 if (state > data->i8k_fan_max)
777 return -EINVAL;
779 mutex_lock(&data->i8k_mutex);
780 ret = i8k_set_fan(data, cdata->fan_num, (int)state);
781 mutex_unlock(&data->i8k_mutex);
783 return ret;
786 static const struct thermal_cooling_device_ops dell_smm_cooling_ops = {
787 .get_max_state = dell_smm_get_max_state,
788 .get_cur_state = dell_smm_get_cur_state,
789 .set_cur_state = dell_smm_set_cur_state,
792 static umode_t dell_smm_is_visible(const void *drvdata, enum hwmon_sensor_types type, u32 attr,
793 int channel)
795 const struct dell_smm_data *data = drvdata;
797 switch (type) {
798 case hwmon_temp:
799 switch (attr) {
800 case hwmon_temp_input:
801 /* _i8k_get_temp() is fine since we do not care about the actual value */
802 if (data->temp_type[channel] >= 0 || _i8k_get_temp(data, channel) >= 0)
803 return 0444;
805 break;
806 case hwmon_temp_label:
807 if (data->temp_type[channel] >= 0)
808 return 0444;
810 break;
811 default:
812 break;
814 break;
815 case hwmon_fan:
816 if (disallow_fan_support)
817 break;
819 switch (attr) {
820 case hwmon_fan_input:
821 if (data->fan[channel])
822 return 0444;
824 break;
825 case hwmon_fan_label:
826 if (data->fan[channel] && !disallow_fan_type_call)
827 return 0444;
829 break;
830 case hwmon_fan_min:
831 case hwmon_fan_max:
832 case hwmon_fan_target:
833 if (data->fan_nominal_speed[channel])
834 return 0444;
836 break;
837 default:
838 break;
840 break;
841 case hwmon_pwm:
842 if (disallow_fan_support)
843 break;
845 switch (attr) {
846 case hwmon_pwm_input:
847 if (data->fan[channel])
848 return 0644;
850 break;
851 case hwmon_pwm_enable:
852 if (auto_fan)
854 * There is no command for retrieve the current status
855 * from BIOS, and userspace/firmware itself can change
856 * it.
857 * Thus we can only provide write-only access for now.
859 return 0200;
861 break;
862 default:
863 break;
865 break;
866 default:
867 break;
870 return 0;
873 static int dell_smm_read(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel,
874 long *val)
876 struct dell_smm_data *data = dev_get_drvdata(dev);
877 int mult = data->i8k_fan_mult;
878 int ret;
880 switch (type) {
881 case hwmon_temp:
882 switch (attr) {
883 case hwmon_temp_input:
884 ret = i8k_get_temp(data, channel);
885 if (ret < 0)
886 return ret;
888 *val = ret * 1000;
890 return 0;
891 default:
892 break;
894 break;
895 case hwmon_fan:
896 switch (attr) {
897 case hwmon_fan_input:
898 ret = i8k_get_fan_speed(data, channel);
899 if (ret < 0)
900 return ret;
902 *val = ret;
904 return 0;
905 case hwmon_fan_min:
906 *val = data->fan_nominal_speed[channel][0] * mult;
908 return 0;
909 case hwmon_fan_max:
910 *val = data->fan_nominal_speed[channel][data->i8k_fan_max] * mult;
912 return 0;
913 case hwmon_fan_target:
914 ret = i8k_get_fan_status(data, channel);
915 if (ret < 0)
916 return ret;
918 if (ret > data->i8k_fan_max)
919 ret = data->i8k_fan_max;
921 *val = data->fan_nominal_speed[channel][ret] * mult;
923 return 0;
924 default:
925 break;
927 break;
928 case hwmon_pwm:
929 switch (attr) {
930 case hwmon_pwm_input:
931 ret = i8k_get_fan_status(data, channel);
932 if (ret < 0)
933 return ret;
935 *val = clamp_val(ret * data->i8k_pwm_mult, 0, 255);
937 return 0;
938 default:
939 break;
941 break;
942 default:
943 break;
946 return -EOPNOTSUPP;
949 static const char *dell_smm_fan_label(struct dell_smm_data *data, int channel)
951 bool dock = false;
952 int type = i8k_get_fan_type(data, channel);
954 if (type < 0)
955 return ERR_PTR(type);
957 if (type & 0x10) {
958 dock = true;
959 type &= 0x0F;
962 if (type >= ARRAY_SIZE(fan_labels))
963 type = ARRAY_SIZE(fan_labels) - 1;
965 return dock ? docking_labels[type] : fan_labels[type];
968 static int dell_smm_read_string(struct device *dev, enum hwmon_sensor_types type, u32 attr,
969 int channel, const char **str)
971 struct dell_smm_data *data = dev_get_drvdata(dev);
973 switch (type) {
974 case hwmon_temp:
975 switch (attr) {
976 case hwmon_temp_label:
977 *str = temp_labels[data->temp_type[channel]];
978 return 0;
979 default:
980 break;
982 break;
983 case hwmon_fan:
984 switch (attr) {
985 case hwmon_fan_label:
986 *str = dell_smm_fan_label(data, channel);
987 return PTR_ERR_OR_ZERO(*str);
988 default:
989 break;
991 break;
992 default:
993 break;
996 return -EOPNOTSUPP;
999 static int dell_smm_write(struct device *dev, enum hwmon_sensor_types type, u32 attr, int channel,
1000 long val)
1002 struct dell_smm_data *data = dev_get_drvdata(dev);
1003 unsigned long pwm;
1004 bool enable;
1005 int err;
1007 switch (type) {
1008 case hwmon_pwm:
1009 switch (attr) {
1010 case hwmon_pwm_input:
1011 pwm = clamp_val(DIV_ROUND_CLOSEST(val, data->i8k_pwm_mult), 0,
1012 data->i8k_fan_max);
1014 mutex_lock(&data->i8k_mutex);
1015 err = i8k_set_fan(data, channel, pwm);
1016 mutex_unlock(&data->i8k_mutex);
1018 if (err < 0)
1019 return err;
1021 return 0;
1022 case hwmon_pwm_enable:
1023 if (!val)
1024 return -EINVAL;
1026 if (val == 1)
1027 enable = false;
1028 else
1029 enable = true;
1031 mutex_lock(&data->i8k_mutex);
1032 err = i8k_enable_fan_auto_mode(data, enable);
1033 mutex_unlock(&data->i8k_mutex);
1035 if (err < 0)
1036 return err;
1038 return 0;
1039 default:
1040 break;
1042 break;
1043 default:
1044 break;
1047 return -EOPNOTSUPP;
1050 static const struct hwmon_ops dell_smm_ops = {
1051 .is_visible = dell_smm_is_visible,
1052 .read = dell_smm_read,
1053 .read_string = dell_smm_read_string,
1054 .write = dell_smm_write,
1057 static const struct hwmon_channel_info * const dell_smm_info[] = {
1058 HWMON_CHANNEL_INFO(chip, HWMON_C_REGISTER_TZ),
1059 HWMON_CHANNEL_INFO(temp,
1060 HWMON_T_INPUT | HWMON_T_LABEL,
1061 HWMON_T_INPUT | HWMON_T_LABEL,
1062 HWMON_T_INPUT | HWMON_T_LABEL,
1063 HWMON_T_INPUT | HWMON_T_LABEL,
1064 HWMON_T_INPUT | HWMON_T_LABEL,
1065 HWMON_T_INPUT | HWMON_T_LABEL,
1066 HWMON_T_INPUT | HWMON_T_LABEL,
1067 HWMON_T_INPUT | HWMON_T_LABEL,
1068 HWMON_T_INPUT | HWMON_T_LABEL,
1069 HWMON_T_INPUT | HWMON_T_LABEL
1071 HWMON_CHANNEL_INFO(fan,
1072 HWMON_F_INPUT | HWMON_F_LABEL | HWMON_F_MIN | HWMON_F_MAX |
1073 HWMON_F_TARGET,
1074 HWMON_F_INPUT | HWMON_F_LABEL | HWMON_F_MIN | HWMON_F_MAX |
1075 HWMON_F_TARGET,
1076 HWMON_F_INPUT | HWMON_F_LABEL | HWMON_F_MIN | HWMON_F_MAX |
1077 HWMON_F_TARGET
1079 HWMON_CHANNEL_INFO(pwm,
1080 HWMON_PWM_INPUT | HWMON_PWM_ENABLE,
1081 HWMON_PWM_INPUT,
1082 HWMON_PWM_INPUT
1084 NULL
1087 static const struct hwmon_chip_info dell_smm_chip_info = {
1088 .ops = &dell_smm_ops,
1089 .info = dell_smm_info,
1092 static int dell_smm_init_cdev(struct device *dev, u8 fan_num)
1094 struct dell_smm_data *data = dev_get_drvdata(dev);
1095 struct thermal_cooling_device *cdev;
1096 struct dell_smm_cooling_data *cdata;
1097 int ret = 0;
1098 char *name;
1100 name = kasprintf(GFP_KERNEL, "dell-smm-fan%u", fan_num + 1);
1101 if (!name)
1102 return -ENOMEM;
1104 cdata = devm_kmalloc(dev, sizeof(*cdata), GFP_KERNEL);
1105 if (cdata) {
1106 cdata->fan_num = fan_num;
1107 cdata->data = data;
1108 cdev = devm_thermal_of_cooling_device_register(dev, NULL, name, cdata,
1109 &dell_smm_cooling_ops);
1110 if (IS_ERR(cdev)) {
1111 devm_kfree(dev, cdata);
1112 ret = PTR_ERR(cdev);
1114 } else {
1115 ret = -ENOMEM;
1118 kfree(name);
1120 return ret;
1123 static int dell_smm_init_hwmon(struct device *dev)
1125 struct dell_smm_data *data = dev_get_drvdata(dev);
1126 struct device *dell_smm_hwmon_dev;
1127 int state, err;
1128 u8 i;
1130 for (i = 0; i < DELL_SMM_NO_TEMP; i++) {
1131 data->temp_type[i] = i8k_get_temp_type(data, i);
1132 if (data->temp_type[i] < 0)
1133 continue;
1135 if (data->temp_type[i] >= ARRAY_SIZE(temp_labels))
1136 data->temp_type[i] = ARRAY_SIZE(temp_labels) - 1;
1139 for (i = 0; i < DELL_SMM_NO_FANS; i++) {
1140 data->fan_type[i] = INT_MIN;
1141 err = i8k_get_fan_status(data, i);
1142 if (err < 0)
1143 err = i8k_get_fan_type(data, i);
1145 if (err < 0)
1146 continue;
1148 data->fan[i] = true;
1150 /* the cooling device is not critical, ignore failures */
1151 if (IS_REACHABLE(CONFIG_THERMAL)) {
1152 err = dell_smm_init_cdev(dev, i);
1153 if (err < 0)
1154 dev_warn(dev, "Failed to register cooling device for fan %u\n",
1155 i + 1);
1158 data->fan_nominal_speed[i] = devm_kmalloc_array(dev, data->i8k_fan_max + 1,
1159 sizeof(*data->fan_nominal_speed[i]),
1160 GFP_KERNEL);
1161 if (!data->fan_nominal_speed[i])
1162 continue;
1164 for (state = 0; state <= data->i8k_fan_max; state++) {
1165 err = i8k_get_fan_nominal_speed(data, i, state);
1166 if (err < 0) {
1167 /* Mark nominal speed table as invalid in case of error */
1168 devm_kfree(dev, data->fan_nominal_speed[i]);
1169 data->fan_nominal_speed[i] = NULL;
1170 break;
1172 data->fan_nominal_speed[i][state] = err;
1174 * Autodetect fan multiplier based on nominal rpm if multiplier
1175 * was not specified as module param or in DMI. If fan reports
1176 * rpm value too high then set multiplier to 1.
1178 if (!fan_mult && err > I8K_FAN_RPM_THRESHOLD)
1179 data->i8k_fan_mult = 1;
1183 dell_smm_hwmon_dev = devm_hwmon_device_register_with_info(dev, "dell_smm", data,
1184 &dell_smm_chip_info, NULL);
1186 return PTR_ERR_OR_ZERO(dell_smm_hwmon_dev);
1189 static int dell_smm_init_data(struct device *dev, const struct dell_smm_ops *ops)
1191 struct dell_smm_data *data;
1193 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
1194 if (!data)
1195 return -ENOMEM;
1197 mutex_init(&data->i8k_mutex);
1198 dev_set_drvdata(dev, data);
1200 data->ops = ops;
1201 /* All options must not be 0 */
1202 data->i8k_fan_mult = fan_mult ? : I8K_FAN_MULT;
1203 data->i8k_fan_max = fan_max ? : I8K_FAN_HIGH;
1204 data->i8k_pwm_mult = DIV_ROUND_UP(255, data->i8k_fan_max);
1206 return 0;
1209 static const struct dmi_system_id i8k_dmi_table[] __initconst = {
1211 .ident = "Dell G5 5590",
1212 .matches = {
1213 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1214 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "G5 5590"),
1218 .ident = "Dell G5 5505",
1219 .matches = {
1220 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1221 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "G5 5505"),
1225 .ident = "Dell Inspiron",
1226 .matches = {
1227 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
1228 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
1232 .ident = "Dell Latitude",
1233 .matches = {
1234 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
1235 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
1239 .ident = "Dell Inspiron 2",
1240 .matches = {
1241 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1242 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
1246 .ident = "Dell Latitude 2",
1247 .matches = {
1248 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1249 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
1252 { /* UK Inspiron 6400 */
1253 .ident = "Dell Inspiron 3",
1254 .matches = {
1255 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1256 DMI_MATCH(DMI_PRODUCT_NAME, "MM061"),
1260 .ident = "Dell Inspiron 3",
1261 .matches = {
1262 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1263 DMI_MATCH(DMI_PRODUCT_NAME, "MP061"),
1267 .ident = "Dell OptiPlex 7060",
1268 .matches = {
1269 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1270 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "OptiPlex 7060"),
1274 .ident = "Dell Precision",
1275 .matches = {
1276 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1277 DMI_MATCH(DMI_PRODUCT_NAME, "Precision"),
1281 .ident = "Dell Vostro",
1282 .matches = {
1283 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1284 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"),
1288 .ident = "Dell Studio",
1289 .matches = {
1290 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1291 DMI_MATCH(DMI_PRODUCT_NAME, "Studio"),
1295 .ident = "Dell XPS M140",
1296 .matches = {
1297 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1298 DMI_MATCH(DMI_PRODUCT_NAME, "MXC051"),
1302 .ident = "Dell XPS",
1303 .matches = {
1304 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1305 DMI_MATCH(DMI_PRODUCT_NAME, "XPS"),
1311 MODULE_DEVICE_TABLE(dmi, i8k_dmi_table);
1314 * Only use for machines which need some special configuration
1315 * in order to work correctly (e.g. if autoconfig fails on this machines).
1317 struct i8k_config_data {
1318 uint fan_mult;
1319 uint fan_max;
1322 enum i8k_configs {
1323 DELL_LATITUDE_D520,
1324 DELL_PRECISION_490,
1325 DELL_STUDIO,
1326 DELL_XPS,
1329 static const struct i8k_config_data i8k_config_data[] __initconst = {
1330 [DELL_LATITUDE_D520] = {
1331 .fan_mult = 1,
1332 .fan_max = I8K_FAN_TURBO,
1334 [DELL_PRECISION_490] = {
1335 .fan_mult = 1,
1336 .fan_max = I8K_FAN_TURBO,
1338 [DELL_STUDIO] = {
1339 .fan_mult = 1,
1340 .fan_max = I8K_FAN_HIGH,
1342 [DELL_XPS] = {
1343 .fan_mult = 1,
1344 .fan_max = I8K_FAN_HIGH,
1348 static const struct dmi_system_id i8k_config_dmi_table[] __initconst = {
1350 .ident = "Dell Latitude D520",
1351 .matches = {
1352 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1353 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D520"),
1355 .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520],
1358 .ident = "Dell Precision 490",
1359 .matches = {
1360 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1361 DMI_MATCH(DMI_PRODUCT_NAME,
1362 "Precision WorkStation 490"),
1364 .driver_data = (void *)&i8k_config_data[DELL_PRECISION_490],
1367 .ident = "Dell Studio",
1368 .matches = {
1369 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1370 DMI_MATCH(DMI_PRODUCT_NAME, "Studio"),
1372 .driver_data = (void *)&i8k_config_data[DELL_STUDIO],
1375 .ident = "Dell XPS M140",
1376 .matches = {
1377 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1378 DMI_MATCH(DMI_PRODUCT_NAME, "MXC051"),
1380 .driver_data = (void *)&i8k_config_data[DELL_XPS],
1386 * On some machines once I8K_SMM_GET_FAN_TYPE is issued then CPU fan speed
1387 * randomly going up and down due to bug in Dell SMM or BIOS. Here is blacklist
1388 * of affected Dell machines for which we disallow I8K_SMM_GET_FAN_TYPE call.
1389 * See bug: https://bugzilla.kernel.org/show_bug.cgi?id=100121
1391 static const struct dmi_system_id i8k_blacklist_fan_type_dmi_table[] __initconst = {
1393 .ident = "Dell Studio XPS 8000",
1394 .matches = {
1395 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1396 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Studio XPS 8000"),
1400 .ident = "Dell Studio XPS 8100",
1401 .matches = {
1402 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1403 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Studio XPS 8100"),
1407 .ident = "Dell Inspiron 580",
1408 .matches = {
1409 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1410 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Inspiron 580 "),
1414 .ident = "Dell Inspiron 3505",
1415 .matches = {
1416 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1417 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Inspiron 3505"),
1424 * On some machines all fan related SMM functions implemented by Dell BIOS
1425 * firmware freeze kernel for about 500ms. Until Dell fixes these problems fan
1426 * support for affected blacklisted Dell machines stay disabled.
1427 * See bug: https://bugzilla.kernel.org/show_bug.cgi?id=195751
1429 static const struct dmi_system_id i8k_blacklist_fan_support_dmi_table[] __initconst = {
1431 .ident = "Dell Inspiron 7720",
1432 .matches = {
1433 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1434 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Inspiron 7720"),
1438 .ident = "Dell Vostro 3360",
1439 .matches = {
1440 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1441 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Vostro 3360"),
1445 .ident = "Dell XPS13 9333",
1446 .matches = {
1447 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1448 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "XPS13 9333"),
1452 .ident = "Dell XPS 15 L502X",
1453 .matches = {
1454 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1455 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Dell System XPS L502X"),
1461 struct i8k_fan_control_data {
1462 unsigned int manual_fan;
1463 unsigned int auto_fan;
1466 enum i8k_fan_controls {
1467 I8K_FAN_30A3_31A3,
1468 I8K_FAN_34A3_35A3,
1471 static const struct i8k_fan_control_data i8k_fan_control_data[] __initconst = {
1472 [I8K_FAN_30A3_31A3] = {
1473 .manual_fan = 0x30a3,
1474 .auto_fan = 0x31a3,
1476 [I8K_FAN_34A3_35A3] = {
1477 .manual_fan = 0x34a3,
1478 .auto_fan = 0x35a3,
1482 static const struct dmi_system_id i8k_whitelist_fan_control[] __initconst = {
1484 .ident = "Dell Latitude 5480",
1485 .matches = {
1486 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1487 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Latitude 5480"),
1489 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1492 .ident = "Dell Latitude 7320",
1493 .matches = {
1494 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1495 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Latitude 7320"),
1497 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_30A3_31A3],
1500 .ident = "Dell Latitude E6440",
1501 .matches = {
1502 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1503 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Latitude E6440"),
1505 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1508 .ident = "Dell Latitude E7440",
1509 .matches = {
1510 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1511 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Latitude E7440"),
1513 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1516 .ident = "Dell Precision 5530",
1517 .matches = {
1518 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1519 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Precision 5530"),
1521 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1524 .ident = "Dell Precision 7510",
1525 .matches = {
1526 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1527 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Precision 7510"),
1529 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1532 .ident = "Dell Precision 7540",
1533 .matches = {
1534 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1535 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Precision 7540"),
1537 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1540 .ident = "Dell XPS 13 7390",
1541 .matches = {
1542 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1543 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "XPS 13 7390"),
1545 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1548 .ident = "Dell Optiplex 7000",
1549 .matches = {
1550 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1551 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "OptiPlex 7000"),
1553 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_34A3_35A3],
1556 .ident = "Dell XPS 9315",
1557 .matches = {
1558 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1559 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "XPS 9315"),
1561 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_30A3_31A3],
1564 .ident = "Dell G15 5511",
1565 .matches = {
1566 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
1567 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Dell G15 5511"),
1569 .driver_data = (void *)&i8k_fan_control_data[I8K_FAN_30A3_31A3],
1575 * Legacy SMM backend driver.
1577 static int __init dell_smm_probe(struct platform_device *pdev)
1579 int ret;
1581 ret = dell_smm_init_data(&pdev->dev, &i8k_smm_ops);
1582 if (ret < 0)
1583 return ret;
1585 ret = dell_smm_init_hwmon(&pdev->dev);
1586 if (ret)
1587 return ret;
1589 i8k_init_procfs(&pdev->dev);
1591 return 0;
1594 static struct platform_driver dell_smm_driver = {
1595 .driver = {
1596 .name = KBUILD_MODNAME,
1600 static struct platform_device *dell_smm_device;
1603 * WMI SMM backend driver.
1605 static int dell_smm_wmi_probe(struct wmi_device *wdev, const void *context)
1607 struct dell_smm_ops *ops;
1608 int ret;
1610 ops = devm_kzalloc(&wdev->dev, sizeof(*ops), GFP_KERNEL);
1611 if (!ops)
1612 return -ENOMEM;
1614 ops->smm_call = wmi_smm_call;
1615 ops->smm_dev = &wdev->dev;
1617 if (dell_smm_get_signature(ops, I8K_SMM_GET_DELL_SIG1) &&
1618 dell_smm_get_signature(ops, I8K_SMM_GET_DELL_SIG2))
1619 return -ENODEV;
1621 ret = dell_smm_init_data(&wdev->dev, ops);
1622 if (ret < 0)
1623 return ret;
1625 return dell_smm_init_hwmon(&wdev->dev);
1628 static const struct wmi_device_id dell_smm_wmi_id_table[] = {
1629 { DELL_SMM_WMI_GUID, NULL },
1632 MODULE_DEVICE_TABLE(wmi, dell_smm_wmi_id_table);
1634 static struct wmi_driver dell_smm_wmi_driver = {
1635 .driver = {
1636 .name = KBUILD_MODNAME,
1637 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
1639 .id_table = dell_smm_wmi_id_table,
1640 .probe = dell_smm_wmi_probe,
1641 .no_singleton = true,
1645 * Probe for the presence of a supported laptop.
1647 static void __init dell_smm_init_dmi(void)
1649 struct i8k_fan_control_data *control;
1650 struct i8k_config_data *config;
1651 const struct dmi_system_id *id;
1653 if (dmi_check_system(i8k_blacklist_fan_support_dmi_table)) {
1654 if (!force) {
1655 pr_notice("Disabling fan support due to BIOS bugs\n");
1656 disallow_fan_support = true;
1657 } else {
1658 pr_warn("Enabling fan support despite BIOS bugs\n");
1662 if (dmi_check_system(i8k_blacklist_fan_type_dmi_table)) {
1663 if (!force) {
1664 pr_notice("Disabling fan type call due to BIOS bugs\n");
1665 disallow_fan_type_call = true;
1666 } else {
1667 pr_warn("Enabling fan type call despite BIOS bugs\n");
1672 * Set fan multiplier and maximal fan speed from DMI config.
1673 * Values specified in module parameters override values from DMI.
1675 id = dmi_first_match(i8k_config_dmi_table);
1676 if (id && id->driver_data) {
1677 config = id->driver_data;
1678 if (!fan_mult && config->fan_mult)
1679 fan_mult = config->fan_mult;
1681 if (!fan_max && config->fan_max)
1682 fan_max = config->fan_max;
1685 id = dmi_first_match(i8k_whitelist_fan_control);
1686 if (id && id->driver_data) {
1687 control = id->driver_data;
1688 manual_fan = control->manual_fan;
1689 auto_fan = control->auto_fan;
1691 pr_info("Enabling support for setting automatic/manual fan control\n");
1695 static int __init dell_smm_legacy_check(void)
1697 if (!dmi_check_system(i8k_dmi_table)) {
1698 if (!ignore_dmi && !force)
1699 return -ENODEV;
1701 pr_info("Probing for legacy SMM handler on unsupported machine\n");
1702 pr_info("vendor=%s, model=%s, version=%s\n",
1703 i8k_get_dmi_data(DMI_SYS_VENDOR),
1704 i8k_get_dmi_data(DMI_PRODUCT_NAME),
1705 i8k_get_dmi_data(DMI_BIOS_VERSION));
1708 if (dell_smm_get_signature(&i8k_smm_ops, I8K_SMM_GET_DELL_SIG1) &&
1709 dell_smm_get_signature(&i8k_smm_ops, I8K_SMM_GET_DELL_SIG2)) {
1710 if (!force)
1711 return -ENODEV;
1713 pr_warn("Forcing legacy SMM calls on a possibly incompatible machine\n");
1716 return 0;
1719 static int __init i8k_init(void)
1721 int ret;
1723 dell_smm_init_dmi();
1725 ret = dell_smm_legacy_check();
1726 if (ret < 0) {
1728 * On modern machines, SMM communication happens over WMI, meaning
1729 * the SMM handler might not react to legacy SMM calls.
1731 return wmi_driver_register(&dell_smm_wmi_driver);
1734 dell_smm_device = platform_create_bundle(&dell_smm_driver, dell_smm_probe, NULL, 0, NULL,
1737 return PTR_ERR_OR_ZERO(dell_smm_device);
1740 static void __exit i8k_exit(void)
1742 if (dell_smm_device) {
1743 platform_device_unregister(dell_smm_device);
1744 platform_driver_unregister(&dell_smm_driver);
1745 } else {
1746 wmi_driver_unregister(&dell_smm_wmi_driver);
1750 module_init(i8k_init);
1751 module_exit(i8k_exit);