Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Pali Rohár | a5afba1 | 2015-05-14 13:16:36 +0200 | [diff] [blame] | 2 | * dell-smm-hwmon.c -- Linux driver for accessing the SMM BIOS on Dell laptops. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2001 Massimo Dal Zotto <dz@debian.org> |
| 5 | * |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 6 | * Hwmon integration: |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 7 | * Copyright (C) 2011 Jean Delvare <jdelvare@suse.de> |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 8 | * Copyright (C) 2013, 2014 Guenter Roeck <linux@roeck-us.net> |
Pali Rohár | a5afba1 | 2015-05-14 13:16:36 +0200 | [diff] [blame] | 9 | * Copyright (C) 2014, 2015 Pali Rohár <pali.rohar@gmail.com> |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Guenter Roeck | 60e71aa | 2013-12-14 09:30:08 -0800 | [diff] [blame] | 22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 23 | |
Juergen Gross | 27046a3 | 2016-08-29 08:48:47 +0200 | [diff] [blame] | 24 | #include <linux/cpu.h> |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 25 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/module.h> |
| 27 | #include <linux/types.h> |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/proc_fs.h> |
Dmitry Torokhov | 352f8f8 | 2005-06-25 14:54:26 -0700 | [diff] [blame] | 30 | #include <linux/seq_file.h> |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 31 | #include <linux/dmi.h> |
Alexey Dobriyan | 7e80d0d | 2007-05-08 00:28:59 -0700 | [diff] [blame] | 32 | #include <linux/capability.h> |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 33 | #include <linux/mutex.h> |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 34 | #include <linux/hwmon.h> |
| 35 | #include <linux/hwmon-sysfs.h> |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 36 | #include <linux/uaccess.h> |
| 37 | #include <linux/io.h> |
Guenter Roeck | f36fdb9 | 2013-12-14 09:30:15 -0800 | [diff] [blame] | 38 | #include <linux/sched.h> |
Pali Rohár | 053ea64 | 2016-06-18 00:54:44 +0200 | [diff] [blame] | 39 | #include <linux/ctype.h> |
Juergen Gross | 27046a3 | 2016-08-29 08:48:47 +0200 | [diff] [blame] | 40 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #include <linux/i8k.h> |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define I8K_SMM_FN_STATUS 0x0025 |
| 45 | #define I8K_SMM_POWER_STATUS 0x0069 |
| 46 | #define I8K_SMM_SET_FAN 0x01a3 |
| 47 | #define I8K_SMM_GET_FAN 0x00a3 |
| 48 | #define I8K_SMM_GET_SPEED 0x02a3 |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 49 | #define I8K_SMM_GET_FAN_TYPE 0x03a3 |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 50 | #define I8K_SMM_GET_NOM_SPEED 0x04a3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define I8K_SMM_GET_TEMP 0x10a3 |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 52 | #define I8K_SMM_GET_TEMP_TYPE 0x11a3 |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 53 | #define I8K_SMM_GET_DELL_SIG1 0xfea3 |
| 54 | #define I8K_SMM_GET_DELL_SIG2 0xffa3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | #define I8K_FAN_MULT 30 |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 57 | #define I8K_FAN_MAX_RPM 30000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #define I8K_MAX_TEMP 127 |
| 59 | |
| 60 | #define I8K_FN_NONE 0x00 |
| 61 | #define I8K_FN_UP 0x01 |
| 62 | #define I8K_FN_DOWN 0x02 |
| 63 | #define I8K_FN_MUTE 0x04 |
| 64 | #define I8K_FN_MASK 0x07 |
| 65 | #define I8K_FN_SHIFT 8 |
| 66 | |
| 67 | #define I8K_POWER_AC 0x05 |
| 68 | #define I8K_POWER_BATTERY 0x01 |
| 69 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 70 | static DEFINE_MUTEX(i8k_mutex); |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 71 | static char bios_version[4]; |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 72 | static char bios_machineid[16]; |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 73 | static struct device *i8k_hwmon_dev; |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 74 | static u32 i8k_hwmon_flags; |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 75 | static uint i8k_fan_mult = I8K_FAN_MULT; |
Pali Rohár | 7f69fb0 | 2015-01-12 14:32:02 +0100 | [diff] [blame] | 76 | static uint i8k_pwm_mult; |
| 77 | static uint i8k_fan_max = I8K_FAN_HIGH; |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 78 | static bool disallow_fan_type_call; |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 79 | |
| 80 | #define I8K_HWMON_HAVE_TEMP1 (1 << 0) |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 81 | #define I8K_HWMON_HAVE_TEMP2 (1 << 1) |
| 82 | #define I8K_HWMON_HAVE_TEMP3 (1 << 2) |
| 83 | #define I8K_HWMON_HAVE_TEMP4 (1 << 3) |
| 84 | #define I8K_HWMON_HAVE_FAN1 (1 << 4) |
| 85 | #define I8K_HWMON_HAVE_FAN2 (1 << 5) |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 86 | #define I8K_HWMON_HAVE_FAN3 (1 << 6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)"); |
Pali Rohár | a5afba1 | 2015-05-14 13:16:36 +0200 | [diff] [blame] | 89 | MODULE_AUTHOR("Pali Rohár <pali.rohar@gmail.com>"); |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 90 | MODULE_DESCRIPTION("Dell laptop SMM BIOS hwmon driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | MODULE_LICENSE("GPL"); |
Pali Rohár | a5afba1 | 2015-05-14 13:16:36 +0200 | [diff] [blame] | 92 | MODULE_ALIAS("i8k"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 94 | static bool force; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | module_param(force, bool, 0); |
| 96 | MODULE_PARM_DESC(force, "Force loading without checking for supported models"); |
| 97 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 98 | static bool ignore_dmi; |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 99 | module_param(ignore_dmi, bool, 0); |
| 100 | MODULE_PARM_DESC(ignore_dmi, "Continue probing hardware even if DMI data does not match"); |
| 101 | |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 102 | #if IS_ENABLED(CONFIG_I8K) |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 103 | static bool restricted = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | module_param(restricted, bool, 0); |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 105 | MODULE_PARM_DESC(restricted, "Restrict fan control and serial number to CAP_SYS_ADMIN (default: 1)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 107 | static bool power_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | module_param(power_status, bool, 0600); |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 109 | MODULE_PARM_DESC(power_status, "Report power status in /proc/i8k (default: 0)"); |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 110 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 112 | static uint fan_mult; |
Pali Rohár | 7f69fb0 | 2015-01-12 14:32:02 +0100 | [diff] [blame] | 113 | module_param(fan_mult, uint, 0); |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 114 | MODULE_PARM_DESC(fan_mult, "Factor to multiply fan speed with (default: autodetect)"); |
Jochen Eisinger | 4ed99a2 | 2008-05-01 04:34:58 -0700 | [diff] [blame] | 115 | |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 116 | static uint fan_max; |
Pali Rohár | 7f69fb0 | 2015-01-12 14:32:02 +0100 | [diff] [blame] | 117 | module_param(fan_max, uint, 0); |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 118 | MODULE_PARM_DESC(fan_max, "Maximum configurable fan speed (default: autodetect)"); |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 119 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 120 | struct smm_regs { |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 121 | unsigned int eax; |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 122 | unsigned int ebx __packed; |
| 123 | unsigned int ecx __packed; |
| 124 | unsigned int edx __packed; |
| 125 | unsigned int esi __packed; |
| 126 | unsigned int edi __packed; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 127 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 129 | static inline const char *i8k_get_dmi_data(int field) |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 130 | { |
Jeff Garzik | 1855256 | 2007-10-03 15:15:40 -0400 | [diff] [blame] | 131 | const char *dmi_data = dmi_get_system_info(field); |
Dmitry Torokhov | 4f00555 | 2005-11-12 00:55:15 -0500 | [diff] [blame] | 132 | |
| 133 | return dmi_data && *dmi_data ? dmi_data : "?"; |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 134 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
| 136 | /* |
| 137 | * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard. |
| 138 | */ |
Juergen Gross | 27046a3 | 2016-08-29 08:48:47 +0200 | [diff] [blame] | 139 | static int i8k_smm_func(void *par) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 141 | int rc; |
Juergen Gross | 27046a3 | 2016-08-29 08:48:47 +0200 | [diff] [blame] | 142 | struct smm_regs *regs = par; |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 143 | int eax = regs->eax; |
Guenter Roeck | f36fdb9 | 2013-12-14 09:30:15 -0800 | [diff] [blame] | 144 | |
Pali Rohár | 9d58bec | 2016-06-18 00:54:49 +0200 | [diff] [blame] | 145 | #ifdef DEBUG |
| 146 | int ebx = regs->ebx; |
| 147 | unsigned long duration; |
| 148 | ktime_t calltime, delta, rettime; |
| 149 | |
| 150 | calltime = ktime_get(); |
| 151 | #endif |
| 152 | |
Guenter Roeck | f36fdb9 | 2013-12-14 09:30:15 -0800 | [diff] [blame] | 153 | /* SMM requires CPU 0 */ |
Juergen Gross | 27046a3 | 2016-08-29 08:48:47 +0200 | [diff] [blame] | 154 | if (smp_processor_id() != 0) |
| 155 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Bradley Smith | fe04f22 | 2008-02-07 00:16:27 -0800 | [diff] [blame] | 157 | #if defined(CONFIG_X86_64) |
Jim Bos | 22d3243 | 2010-11-15 21:22:37 +0100 | [diff] [blame] | 158 | asm volatile("pushq %%rax\n\t" |
Bradley Smith | fe04f22 | 2008-02-07 00:16:27 -0800 | [diff] [blame] | 159 | "movl 0(%%rax),%%edx\n\t" |
| 160 | "pushq %%rdx\n\t" |
| 161 | "movl 4(%%rax),%%ebx\n\t" |
| 162 | "movl 8(%%rax),%%ecx\n\t" |
| 163 | "movl 12(%%rax),%%edx\n\t" |
| 164 | "movl 16(%%rax),%%esi\n\t" |
| 165 | "movl 20(%%rax),%%edi\n\t" |
| 166 | "popq %%rax\n\t" |
| 167 | "out %%al,$0xb2\n\t" |
| 168 | "out %%al,$0x84\n\t" |
| 169 | "xchgq %%rax,(%%rsp)\n\t" |
| 170 | "movl %%ebx,4(%%rax)\n\t" |
| 171 | "movl %%ecx,8(%%rax)\n\t" |
| 172 | "movl %%edx,12(%%rax)\n\t" |
| 173 | "movl %%esi,16(%%rax)\n\t" |
| 174 | "movl %%edi,20(%%rax)\n\t" |
| 175 | "popq %%rdx\n\t" |
| 176 | "movl %%edx,0(%%rax)\n\t" |
Luca Tettamanti | bc1f419 | 2011-05-25 20:43:31 +0200 | [diff] [blame] | 177 | "pushfq\n\t" |
| 178 | "popq %%rax\n\t" |
Bradley Smith | fe04f22 | 2008-02-07 00:16:27 -0800 | [diff] [blame] | 179 | "andl $1,%%eax\n" |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 180 | : "=a"(rc) |
Bradley Smith | fe04f22 | 2008-02-07 00:16:27 -0800 | [diff] [blame] | 181 | : "a"(regs) |
| 182 | : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory"); |
| 183 | #else |
Jim Bos | 22d3243 | 2010-11-15 21:22:37 +0100 | [diff] [blame] | 184 | asm volatile("pushl %%eax\n\t" |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 185 | "movl 0(%%eax),%%edx\n\t" |
| 186 | "push %%edx\n\t" |
| 187 | "movl 4(%%eax),%%ebx\n\t" |
| 188 | "movl 8(%%eax),%%ecx\n\t" |
| 189 | "movl 12(%%eax),%%edx\n\t" |
| 190 | "movl 16(%%eax),%%esi\n\t" |
| 191 | "movl 20(%%eax),%%edi\n\t" |
| 192 | "popl %%eax\n\t" |
| 193 | "out %%al,$0xb2\n\t" |
| 194 | "out %%al,$0x84\n\t" |
| 195 | "xchgl %%eax,(%%esp)\n\t" |
| 196 | "movl %%ebx,4(%%eax)\n\t" |
| 197 | "movl %%ecx,8(%%eax)\n\t" |
| 198 | "movl %%edx,12(%%eax)\n\t" |
| 199 | "movl %%esi,16(%%eax)\n\t" |
| 200 | "movl %%edi,20(%%eax)\n\t" |
| 201 | "popl %%edx\n\t" |
| 202 | "movl %%edx,0(%%eax)\n\t" |
| 203 | "lahf\n\t" |
| 204 | "shrl $8,%%eax\n\t" |
Jim Bos | 6b4e81d | 2010-11-13 12:13:53 +0100 | [diff] [blame] | 205 | "andl $1,%%eax\n" |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 206 | : "=a"(rc) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 207 | : "a"(regs) |
| 208 | : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory"); |
Bradley Smith | fe04f22 | 2008-02-07 00:16:27 -0800 | [diff] [blame] | 209 | #endif |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 210 | if (rc != 0 || (regs->eax & 0xffff) == 0xffff || regs->eax == eax) |
Guenter Roeck | f36fdb9 | 2013-12-14 09:30:15 -0800 | [diff] [blame] | 211 | rc = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Pali Rohár | 9d58bec | 2016-06-18 00:54:49 +0200 | [diff] [blame] | 213 | #ifdef DEBUG |
| 214 | rettime = ktime_get(); |
| 215 | delta = ktime_sub(rettime, calltime); |
| 216 | duration = ktime_to_ns(delta) >> 10; |
| 217 | pr_debug("smm(0x%.4x 0x%.4x) = 0x%.4x (took %7lu usecs)\n", eax, ebx, |
| 218 | (rc ? 0xffff : regs->eax & 0xffff), duration); |
| 219 | #endif |
| 220 | |
Guenter Roeck | f36fdb9 | 2013-12-14 09:30:15 -0800 | [diff] [blame] | 221 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | /* |
Juergen Gross | 27046a3 | 2016-08-29 08:48:47 +0200 | [diff] [blame] | 225 | * Call the System Management Mode BIOS. |
| 226 | */ |
| 227 | static int i8k_smm(struct smm_regs *regs) |
| 228 | { |
| 229 | int ret; |
| 230 | |
| 231 | get_online_cpus(); |
| 232 | ret = smp_call_on_cpu(0, i8k_smm_func, regs, true); |
| 233 | put_online_cpus(); |
| 234 | |
| 235 | return ret; |
| 236 | } |
| 237 | |
| 238 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | * Read the fan status. |
| 240 | */ |
| 241 | static int i8k_get_fan_status(int fan) |
| 242 | { |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 243 | struct smm_regs regs = { .eax = I8K_SMM_GET_FAN, }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 245 | regs.ebx = fan & 0xff; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 246 | return i8k_smm(®s) ? : regs.eax & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | /* |
| 250 | * Read the fan speed in RPM. |
| 251 | */ |
| 252 | static int i8k_get_fan_speed(int fan) |
| 253 | { |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 254 | struct smm_regs regs = { .eax = I8K_SMM_GET_SPEED, }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 256 | regs.ebx = fan & 0xff; |
Guenter Roeck | 26d0938 | 2013-12-14 09:30:19 -0800 | [diff] [blame] | 257 | return i8k_smm(®s) ? : (regs.eax & 0xffff) * i8k_fan_mult; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 261 | * Read the fan type. |
| 262 | */ |
Pali Rohár | 5ce9171 | 2016-06-18 00:54:47 +0200 | [diff] [blame] | 263 | static int _i8k_get_fan_type(int fan) |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 264 | { |
| 265 | struct smm_regs regs = { .eax = I8K_SMM_GET_FAN_TYPE, }; |
| 266 | |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 267 | if (disallow_fan_type_call) |
| 268 | return -EINVAL; |
| 269 | |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 270 | regs.ebx = fan & 0xff; |
| 271 | return i8k_smm(®s) ? : regs.eax & 0xff; |
| 272 | } |
| 273 | |
Pali Rohár | 5ce9171 | 2016-06-18 00:54:47 +0200 | [diff] [blame] | 274 | static int i8k_get_fan_type(int fan) |
| 275 | { |
| 276 | /* I8K_SMM_GET_FAN_TYPE SMM call is expensive, so cache values */ |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 277 | static int types[3] = { INT_MIN, INT_MIN, INT_MIN }; |
Pali Rohár | 5ce9171 | 2016-06-18 00:54:47 +0200 | [diff] [blame] | 278 | |
| 279 | if (types[fan] == INT_MIN) |
| 280 | types[fan] = _i8k_get_fan_type(fan); |
| 281 | |
| 282 | return types[fan]; |
| 283 | } |
| 284 | |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 285 | /* |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 286 | * Read the fan nominal rpm for specific fan speed. |
| 287 | */ |
| 288 | static int i8k_get_fan_nominal_speed(int fan, int speed) |
| 289 | { |
| 290 | struct smm_regs regs = { .eax = I8K_SMM_GET_NOM_SPEED, }; |
| 291 | |
| 292 | regs.ebx = (fan & 0xff) | (speed << 8); |
| 293 | return i8k_smm(®s) ? : (regs.eax & 0xffff) * i8k_fan_mult; |
| 294 | } |
| 295 | |
| 296 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | * Set the fan speed (off, low, high). Returns the new fan status. |
| 298 | */ |
| 299 | static int i8k_set_fan(int fan, int speed) |
| 300 | { |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 301 | struct smm_regs regs = { .eax = I8K_SMM_SET_FAN, }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 303 | speed = (speed < 0) ? 0 : ((speed > i8k_fan_max) ? i8k_fan_max : speed); |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 304 | regs.ebx = (fan & 0xff) | (speed << 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 306 | return i8k_smm(®s) ? : i8k_get_fan_status(fan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 309 | static int i8k_get_temp_type(int sensor) |
| 310 | { |
| 311 | struct smm_regs regs = { .eax = I8K_SMM_GET_TEMP_TYPE, }; |
| 312 | |
| 313 | regs.ebx = sensor & 0xff; |
| 314 | return i8k_smm(®s) ? : regs.eax & 0xff; |
| 315 | } |
| 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | /* |
| 318 | * Read the cpu temperature. |
| 319 | */ |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 320 | static int _i8k_get_temp(int sensor) |
| 321 | { |
| 322 | struct smm_regs regs = { |
| 323 | .eax = I8K_SMM_GET_TEMP, |
| 324 | .ebx = sensor & 0xff, |
| 325 | }; |
| 326 | |
| 327 | return i8k_smm(®s) ? : regs.eax & 0xff; |
| 328 | } |
| 329 | |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 330 | static int i8k_get_temp(int sensor) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 332 | int temp = _i8k_get_temp(sensor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 334 | /* |
| 335 | * Sometimes the temperature sensor returns 0x99, which is out of range. |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 336 | * In this case we retry (once) before returning an error. |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 337 | # 1003655137 00000058 00005a4b |
| 338 | # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees |
| 339 | # 1003655139 00000054 00005c52 |
| 340 | */ |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 341 | if (temp == 0x99) { |
| 342 | msleep(100); |
| 343 | temp = _i8k_get_temp(sensor); |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 344 | } |
Guenter Roeck | 564132d | 2015-01-12 14:32:00 +0100 | [diff] [blame] | 345 | /* |
| 346 | * Return -ENODATA for all invalid temperatures. |
| 347 | * |
| 348 | * Known instances are the 0x99 value as seen above as well as |
| 349 | * 0xc1 (193), which may be returned when trying to read the GPU |
| 350 | * temperature if the system supports a GPU and it is currently |
| 351 | * turned off. |
| 352 | */ |
Pali Rohár | 723493c | 2014-11-18 15:56:54 +0100 | [diff] [blame] | 353 | if (temp > I8K_MAX_TEMP) |
Pali Rohár | 83d514d | 2015-01-12 14:31:59 +0100 | [diff] [blame] | 354 | return -ENODATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 356 | return temp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 359 | static int i8k_get_dell_signature(int req_fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | { |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 361 | struct smm_regs regs = { .eax = req_fn, }; |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 362 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 364 | rc = i8k_smm(®s); |
| 365 | if (rc < 0) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 366 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 368 | return regs.eax == 1145651527 && regs.edx == 1145392204 ? 0 : -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 371 | #if IS_ENABLED(CONFIG_I8K) |
| 372 | |
| 373 | /* |
| 374 | * Read the Fn key status. |
| 375 | */ |
| 376 | static int i8k_get_fn_status(void) |
| 377 | { |
| 378 | struct smm_regs regs = { .eax = I8K_SMM_FN_STATUS, }; |
| 379 | int rc; |
| 380 | |
| 381 | rc = i8k_smm(®s); |
| 382 | if (rc < 0) |
| 383 | return rc; |
| 384 | |
| 385 | switch ((regs.eax >> I8K_FN_SHIFT) & I8K_FN_MASK) { |
| 386 | case I8K_FN_UP: |
| 387 | return I8K_VOL_UP; |
| 388 | case I8K_FN_DOWN: |
| 389 | return I8K_VOL_DOWN; |
| 390 | case I8K_FN_MUTE: |
| 391 | return I8K_VOL_MUTE; |
| 392 | default: |
| 393 | return 0; |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | /* |
| 398 | * Read the power status. |
| 399 | */ |
| 400 | static int i8k_get_power_status(void) |
| 401 | { |
| 402 | struct smm_regs regs = { .eax = I8K_SMM_POWER_STATUS, }; |
| 403 | int rc; |
| 404 | |
| 405 | rc = i8k_smm(®s); |
| 406 | if (rc < 0) |
| 407 | return rc; |
| 408 | |
| 409 | return (regs.eax & 0xff) == I8K_POWER_AC ? I8K_AC : I8K_BATTERY; |
| 410 | } |
| 411 | |
| 412 | /* |
| 413 | * Procfs interface |
| 414 | */ |
| 415 | |
Frederic Weisbecker | d79b6f4 | 2010-03-30 07:27:50 +0200 | [diff] [blame] | 416 | static int |
| 417 | i8k_ioctl_unlocked(struct file *fp, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | { |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 419 | int val = 0; |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 420 | int speed; |
| 421 | unsigned char buff[16]; |
| 422 | int __user *argp = (int __user *)arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 424 | if (!argp) |
| 425 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 427 | switch (cmd) { |
| 428 | case I8K_BIOS_VERSION: |
Pali Rohár | 053ea64 | 2016-06-18 00:54:44 +0200 | [diff] [blame] | 429 | if (!isdigit(bios_version[0]) || !isdigit(bios_version[1]) || |
| 430 | !isdigit(bios_version[2])) |
| 431 | return -EINVAL; |
| 432 | |
Guenter Roeck | e551b15 | 2013-12-14 09:30:20 -0800 | [diff] [blame] | 433 | val = (bios_version[0] << 16) | |
| 434 | (bios_version[1] << 8) | bios_version[2]; |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 435 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 437 | case I8K_MACHINE_ID: |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 438 | if (restricted && !capable(CAP_SYS_ADMIN)) |
| 439 | return -EPERM; |
| 440 | |
| 441 | memset(buff, 0, sizeof(buff)); |
| 442 | strlcpy(buff, bios_machineid, sizeof(buff)); |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 443 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 445 | case I8K_FN_STATUS: |
| 446 | val = i8k_get_fn_status(); |
| 447 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 449 | case I8K_POWER_STATUS: |
| 450 | val = i8k_get_power_status(); |
| 451 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 453 | case I8K_GET_TEMP: |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 454 | val = i8k_get_temp(0); |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 455 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 457 | case I8K_GET_SPEED: |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 458 | if (copy_from_user(&val, argp, sizeof(int))) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 459 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 460 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 461 | val = i8k_get_fan_speed(val); |
| 462 | break; |
| 463 | |
| 464 | case I8K_GET_FAN: |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 465 | if (copy_from_user(&val, argp, sizeof(int))) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 466 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 467 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 468 | val = i8k_get_fan_status(val); |
| 469 | break; |
| 470 | |
| 471 | case I8K_SET_FAN: |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 472 | if (restricted && !capable(CAP_SYS_ADMIN)) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 473 | return -EPERM; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 474 | |
| 475 | if (copy_from_user(&val, argp, sizeof(int))) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 476 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 477 | |
| 478 | if (copy_from_user(&speed, argp + 1, sizeof(int))) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 479 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 480 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 481 | val = i8k_set_fan(val, speed); |
| 482 | break; |
| 483 | |
| 484 | default: |
| 485 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 488 | if (val < 0) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 489 | return val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 491 | switch (cmd) { |
| 492 | case I8K_BIOS_VERSION: |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 493 | if (copy_to_user(argp, &val, 4)) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 494 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 495 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 496 | break; |
| 497 | case I8K_MACHINE_ID: |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 498 | if (copy_to_user(argp, buff, 16)) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 499 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 500 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 501 | break; |
| 502 | default: |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 503 | if (copy_to_user(argp, &val, sizeof(int))) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 504 | return -EFAULT; |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 505 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 506 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 509 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Frederic Weisbecker | d79b6f4 | 2010-03-30 07:27:50 +0200 | [diff] [blame] | 512 | static long i8k_ioctl(struct file *fp, unsigned int cmd, unsigned long arg) |
| 513 | { |
| 514 | long ret; |
| 515 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 516 | mutex_lock(&i8k_mutex); |
Frederic Weisbecker | d79b6f4 | 2010-03-30 07:27:50 +0200 | [diff] [blame] | 517 | ret = i8k_ioctl_unlocked(fp, cmd, arg); |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 518 | mutex_unlock(&i8k_mutex); |
Frederic Weisbecker | d79b6f4 | 2010-03-30 07:27:50 +0200 | [diff] [blame] | 519 | |
| 520 | return ret; |
| 521 | } |
| 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | /* |
| 524 | * Print the information for /proc/i8k. |
| 525 | */ |
Dmitry Torokhov | 352f8f8 | 2005-06-25 14:54:26 -0700 | [diff] [blame] | 526 | static int i8k_proc_show(struct seq_file *seq, void *offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
Dmitry Torokhov | 352f8f8 | 2005-06-25 14:54:26 -0700 | [diff] [blame] | 528 | int fn_key, cpu_temp, ac_power; |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 529 | int left_fan, right_fan, left_speed, right_speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 531 | cpu_temp = i8k_get_temp(0); /* 11100 µs */ |
| 532 | left_fan = i8k_get_fan_status(I8K_FAN_LEFT); /* 580 µs */ |
| 533 | right_fan = i8k_get_fan_status(I8K_FAN_RIGHT); /* 580 µs */ |
| 534 | left_speed = i8k_get_fan_speed(I8K_FAN_LEFT); /* 580 µs */ |
| 535 | right_speed = i8k_get_fan_speed(I8K_FAN_RIGHT); /* 580 µs */ |
| 536 | fn_key = i8k_get_fn_status(); /* 750 µs */ |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 537 | if (power_status) |
Jan Engelhardt | 96de0e2 | 2007-10-19 23:21:04 +0200 | [diff] [blame] | 538 | ac_power = i8k_get_power_status(); /* 14700 µs */ |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 539 | else |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 540 | ac_power = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 542 | /* |
| 543 | * Info: |
| 544 | * |
| 545 | * 1) Format version (this will change if format changes) |
| 546 | * 2) BIOS version |
| 547 | * 3) BIOS machine ID |
| 548 | * 4) Cpu temperature |
| 549 | * 5) Left fan status |
| 550 | * 6) Right fan status |
| 551 | * 7) Left fan speed |
| 552 | * 8) Right fan speed |
| 553 | * 9) AC power |
| 554 | * 10) Fn Key status |
| 555 | */ |
Joe Perches | 3a267d3 | 2015-02-21 18:53:47 -0800 | [diff] [blame] | 556 | seq_printf(seq, "%s %s %s %d %d %d %d %d %d %d\n", |
| 557 | I8K_PROC_FMT, |
| 558 | bios_version, |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 559 | (restricted && !capable(CAP_SYS_ADMIN)) ? "-1" : bios_machineid, |
Joe Perches | 3a267d3 | 2015-02-21 18:53:47 -0800 | [diff] [blame] | 560 | cpu_temp, |
| 561 | left_fan, right_fan, left_speed, right_speed, |
| 562 | ac_power, fn_key); |
| 563 | |
| 564 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Dmitry Torokhov | 352f8f8 | 2005-06-25 14:54:26 -0700 | [diff] [blame] | 567 | static int i8k_open_fs(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { |
Dmitry Torokhov | 352f8f8 | 2005-06-25 14:54:26 -0700 | [diff] [blame] | 569 | return single_open(file, i8k_proc_show, NULL); |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 570 | } |
| 571 | |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 572 | static const struct file_operations i8k_fops = { |
| 573 | .owner = THIS_MODULE, |
| 574 | .open = i8k_open_fs, |
| 575 | .read = seq_read, |
| 576 | .llseek = seq_lseek, |
| 577 | .release = single_release, |
| 578 | .unlocked_ioctl = i8k_ioctl, |
| 579 | }; |
| 580 | |
| 581 | static void __init i8k_init_procfs(void) |
| 582 | { |
| 583 | /* Register the proc entry */ |
| 584 | proc_create("i8k", 0, NULL, &i8k_fops); |
| 585 | } |
| 586 | |
| 587 | static void __exit i8k_exit_procfs(void) |
| 588 | { |
| 589 | remove_proc_entry("i8k", NULL); |
| 590 | } |
| 591 | |
| 592 | #else |
| 593 | |
| 594 | static inline void __init i8k_init_procfs(void) |
| 595 | { |
| 596 | } |
| 597 | |
| 598 | static inline void __exit i8k_exit_procfs(void) |
| 599 | { |
| 600 | } |
| 601 | |
| 602 | #endif |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 603 | |
| 604 | /* |
| 605 | * Hwmon interface |
| 606 | */ |
| 607 | |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 608 | static ssize_t i8k_hwmon_show_temp_label(struct device *dev, |
| 609 | struct device_attribute *devattr, |
| 610 | char *buf) |
| 611 | { |
| 612 | static const char * const labels[] = { |
| 613 | "CPU", |
| 614 | "GPU", |
| 615 | "SODIMM", |
| 616 | "Other", |
| 617 | "Ambient", |
| 618 | "Other", |
| 619 | }; |
| 620 | int index = to_sensor_dev_attr(devattr)->index; |
| 621 | int type; |
| 622 | |
| 623 | type = i8k_get_temp_type(index); |
| 624 | if (type < 0) |
| 625 | return type; |
| 626 | if (type >= ARRAY_SIZE(labels)) |
| 627 | type = ARRAY_SIZE(labels) - 1; |
| 628 | return sprintf(buf, "%s\n", labels[type]); |
| 629 | } |
| 630 | |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 631 | static ssize_t i8k_hwmon_show_temp(struct device *dev, |
| 632 | struct device_attribute *devattr, |
| 633 | char *buf) |
| 634 | { |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 635 | int index = to_sensor_dev_attr(devattr)->index; |
| 636 | int temp; |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 637 | |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 638 | temp = i8k_get_temp(index); |
| 639 | if (temp < 0) |
| 640 | return temp; |
| 641 | return sprintf(buf, "%d\n", temp * 1000); |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 642 | } |
| 643 | |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 644 | static ssize_t i8k_hwmon_show_fan_label(struct device *dev, |
| 645 | struct device_attribute *devattr, |
| 646 | char *buf) |
| 647 | { |
| 648 | static const char * const labels[] = { |
| 649 | "Processor Fan", |
| 650 | "Motherboard Fan", |
| 651 | "Video Fan", |
| 652 | "Power Supply Fan", |
| 653 | "Chipset Fan", |
| 654 | "Other Fan", |
| 655 | }; |
| 656 | int index = to_sensor_dev_attr(devattr)->index; |
| 657 | bool dock = false; |
| 658 | int type; |
| 659 | |
| 660 | type = i8k_get_fan_type(index); |
| 661 | if (type < 0) |
| 662 | return type; |
| 663 | |
| 664 | if (type & 0x10) { |
| 665 | dock = true; |
| 666 | type &= 0x0F; |
| 667 | } |
| 668 | |
| 669 | if (type >= ARRAY_SIZE(labels)) |
| 670 | type = (ARRAY_SIZE(labels) - 1); |
| 671 | |
| 672 | return sprintf(buf, "%s%s\n", (dock ? "Docking " : ""), labels[type]); |
| 673 | } |
| 674 | |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 675 | static ssize_t i8k_hwmon_show_fan(struct device *dev, |
| 676 | struct device_attribute *devattr, |
| 677 | char *buf) |
| 678 | { |
| 679 | int index = to_sensor_dev_attr(devattr)->index; |
| 680 | int fan_speed; |
| 681 | |
| 682 | fan_speed = i8k_get_fan_speed(index); |
| 683 | if (fan_speed < 0) |
| 684 | return fan_speed; |
| 685 | return sprintf(buf, "%d\n", fan_speed); |
| 686 | } |
| 687 | |
Guenter Roeck | e7f5f27 | 2013-12-14 09:30:21 -0800 | [diff] [blame] | 688 | static ssize_t i8k_hwmon_show_pwm(struct device *dev, |
| 689 | struct device_attribute *devattr, |
| 690 | char *buf) |
| 691 | { |
| 692 | int index = to_sensor_dev_attr(devattr)->index; |
| 693 | int status; |
| 694 | |
| 695 | status = i8k_get_fan_status(index); |
| 696 | if (status < 0) |
| 697 | return -EIO; |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 698 | return sprintf(buf, "%d\n", clamp_val(status * i8k_pwm_mult, 0, 255)); |
Guenter Roeck | e7f5f27 | 2013-12-14 09:30:21 -0800 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | static ssize_t i8k_hwmon_set_pwm(struct device *dev, |
| 702 | struct device_attribute *attr, |
| 703 | const char *buf, size_t count) |
| 704 | { |
| 705 | int index = to_sensor_dev_attr(attr)->index; |
| 706 | unsigned long val; |
| 707 | int err; |
| 708 | |
| 709 | err = kstrtoul(buf, 10, &val); |
| 710 | if (err) |
| 711 | return err; |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 712 | val = clamp_val(DIV_ROUND_CLOSEST(val, i8k_pwm_mult), 0, i8k_fan_max); |
Guenter Roeck | e7f5f27 | 2013-12-14 09:30:21 -0800 | [diff] [blame] | 713 | |
| 714 | mutex_lock(&i8k_mutex); |
| 715 | err = i8k_set_fan(index, val); |
| 716 | mutex_unlock(&i8k_mutex); |
| 717 | |
| 718 | return err < 0 ? -EIO : count; |
| 719 | } |
| 720 | |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 721 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 0); |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 722 | static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, i8k_hwmon_show_temp_label, NULL, |
| 723 | 0); |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 724 | static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 1); |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 725 | static SENSOR_DEVICE_ATTR(temp2_label, S_IRUGO, i8k_hwmon_show_temp_label, NULL, |
| 726 | 1); |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 727 | static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 2); |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 728 | static SENSOR_DEVICE_ATTR(temp3_label, S_IRUGO, i8k_hwmon_show_temp_label, NULL, |
| 729 | 2); |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 730 | static SENSOR_DEVICE_ATTR(temp4_input, S_IRUGO, i8k_hwmon_show_temp, NULL, 3); |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 731 | static SENSOR_DEVICE_ATTR(temp4_label, S_IRUGO, i8k_hwmon_show_temp_label, NULL, |
| 732 | 3); |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 733 | static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, i8k_hwmon_show_fan, NULL, 0); |
| 734 | static SENSOR_DEVICE_ATTR(fan1_label, S_IRUGO, i8k_hwmon_show_fan_label, NULL, |
| 735 | 0); |
Guenter Roeck | e7f5f27 | 2013-12-14 09:30:21 -0800 | [diff] [blame] | 736 | static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, i8k_hwmon_show_pwm, |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 737 | i8k_hwmon_set_pwm, 0); |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 738 | static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, i8k_hwmon_show_fan, NULL, |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 739 | 1); |
| 740 | static SENSOR_DEVICE_ATTR(fan2_label, S_IRUGO, i8k_hwmon_show_fan_label, NULL, |
| 741 | 1); |
Guenter Roeck | e7f5f27 | 2013-12-14 09:30:21 -0800 | [diff] [blame] | 742 | static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, i8k_hwmon_show_pwm, |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 743 | i8k_hwmon_set_pwm, 1); |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 744 | static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, i8k_hwmon_show_fan, NULL, |
| 745 | 2); |
| 746 | static SENSOR_DEVICE_ATTR(fan3_label, S_IRUGO, i8k_hwmon_show_fan_label, NULL, |
| 747 | 2); |
| 748 | static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, i8k_hwmon_show_pwm, |
| 749 | i8k_hwmon_set_pwm, 2); |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 750 | |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 751 | static struct attribute *i8k_attrs[] = { |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 752 | &sensor_dev_attr_temp1_input.dev_attr.attr, /* 0 */ |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 753 | &sensor_dev_attr_temp1_label.dev_attr.attr, /* 1 */ |
| 754 | &sensor_dev_attr_temp2_input.dev_attr.attr, /* 2 */ |
| 755 | &sensor_dev_attr_temp2_label.dev_attr.attr, /* 3 */ |
| 756 | &sensor_dev_attr_temp3_input.dev_attr.attr, /* 4 */ |
| 757 | &sensor_dev_attr_temp3_label.dev_attr.attr, /* 5 */ |
| 758 | &sensor_dev_attr_temp4_input.dev_attr.attr, /* 6 */ |
| 759 | &sensor_dev_attr_temp4_label.dev_attr.attr, /* 7 */ |
| 760 | &sensor_dev_attr_fan1_input.dev_attr.attr, /* 8 */ |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 761 | &sensor_dev_attr_fan1_label.dev_attr.attr, /* 9 */ |
| 762 | &sensor_dev_attr_pwm1.dev_attr.attr, /* 10 */ |
| 763 | &sensor_dev_attr_fan2_input.dev_attr.attr, /* 11 */ |
| 764 | &sensor_dev_attr_fan2_label.dev_attr.attr, /* 12 */ |
| 765 | &sensor_dev_attr_pwm2.dev_attr.attr, /* 13 */ |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 766 | &sensor_dev_attr_fan3_input.dev_attr.attr, /* 14 */ |
| 767 | &sensor_dev_attr_fan3_label.dev_attr.attr, /* 15 */ |
| 768 | &sensor_dev_attr_pwm3.dev_attr.attr, /* 16 */ |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 769 | NULL |
| 770 | }; |
| 771 | |
| 772 | static umode_t i8k_is_visible(struct kobject *kobj, struct attribute *attr, |
| 773 | int index) |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 774 | { |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 775 | if (disallow_fan_type_call && |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 776 | (index == 9 || index == 12 || index == 15)) |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 777 | return 0; |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 778 | if (index >= 0 && index <= 1 && |
| 779 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP1)) |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 780 | return 0; |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 781 | if (index >= 2 && index <= 3 && |
| 782 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP2)) |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 783 | return 0; |
Guenter Roeck | b12ce5f | 2014-06-21 08:08:09 -0700 | [diff] [blame] | 784 | if (index >= 4 && index <= 5 && |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 785 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP3)) |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 786 | return 0; |
Guenter Roeck | b12ce5f | 2014-06-21 08:08:09 -0700 | [diff] [blame] | 787 | if (index >= 6 && index <= 7 && |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 788 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP4)) |
| 789 | return 0; |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 790 | if (index >= 8 && index <= 10 && |
Pali Rohár | 5114b47 | 2015-01-12 14:31:57 +0100 | [diff] [blame] | 791 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN1)) |
| 792 | return 0; |
Pali Rohár | f989e55 | 2015-01-12 14:32:05 +0100 | [diff] [blame] | 793 | if (index >= 11 && index <= 13 && |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 794 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN2)) |
| 795 | return 0; |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 796 | if (index >= 14 && index <= 16 && |
| 797 | !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN3)) |
| 798 | return 0; |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 799 | |
| 800 | return attr->mode; |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 801 | } |
| 802 | |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 803 | static const struct attribute_group i8k_group = { |
| 804 | .attrs = i8k_attrs, |
| 805 | .is_visible = i8k_is_visible, |
| 806 | }; |
| 807 | __ATTRIBUTE_GROUPS(i8k); |
| 808 | |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 809 | static int __init i8k_init_hwmon(void) |
| 810 | { |
| 811 | int err; |
| 812 | |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 813 | i8k_hwmon_flags = 0; |
| 814 | |
Pali Rohár | 672af22 | 2015-01-12 14:31:58 +0100 | [diff] [blame] | 815 | /* CPU temperature attributes, if temperature type is OK */ |
| 816 | err = i8k_get_temp_type(0); |
| 817 | if (err >= 0) |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 818 | i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP1; |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 819 | /* check for additional temperature sensors */ |
Pali Rohár | 672af22 | 2015-01-12 14:31:58 +0100 | [diff] [blame] | 820 | err = i8k_get_temp_type(1); |
| 821 | if (err >= 0) |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 822 | i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP2; |
Pali Rohár | 672af22 | 2015-01-12 14:31:58 +0100 | [diff] [blame] | 823 | err = i8k_get_temp_type(2); |
| 824 | if (err >= 0) |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 825 | i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP3; |
Pali Rohár | 672af22 | 2015-01-12 14:31:58 +0100 | [diff] [blame] | 826 | err = i8k_get_temp_type(3); |
| 827 | if (err >= 0) |
Guenter Roeck | d83c39d | 2013-12-14 09:30:11 -0800 | [diff] [blame] | 828 | i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP4; |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 829 | |
Pali Rohár | 5ce9171 | 2016-06-18 00:54:47 +0200 | [diff] [blame] | 830 | /* First fan attributes, if fan status or type is OK */ |
| 831 | err = i8k_get_fan_status(0); |
| 832 | if (err < 0) |
| 833 | err = i8k_get_fan_type(0); |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 834 | if (err >= 0) |
| 835 | i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN1; |
| 836 | |
Pali Rohár | 5ce9171 | 2016-06-18 00:54:47 +0200 | [diff] [blame] | 837 | /* Second fan attributes, if fan status or type is OK */ |
| 838 | err = i8k_get_fan_status(1); |
| 839 | if (err < 0) |
| 840 | err = i8k_get_fan_type(1); |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 841 | if (err >= 0) |
| 842 | i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN2; |
| 843 | |
Pali Rohár | 747bc8b | 2016-06-18 00:54:48 +0200 | [diff] [blame] | 844 | /* Third fan attributes, if fan status or type is OK */ |
| 845 | err = i8k_get_fan_status(2); |
| 846 | if (err < 0) |
| 847 | err = i8k_get_fan_type(2); |
| 848 | if (err >= 0) |
| 849 | i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN3; |
| 850 | |
Gabriele Mazzotta | 9026cae | 2015-06-27 15:22:05 +0200 | [diff] [blame] | 851 | i8k_hwmon_dev = hwmon_device_register_with_groups(NULL, "dell_smm", |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 852 | NULL, i8k_groups); |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 853 | if (IS_ERR(i8k_hwmon_dev)) { |
| 854 | err = PTR_ERR(i8k_hwmon_dev); |
| 855 | i8k_hwmon_dev = NULL; |
Guenter Roeck | 60e71aa | 2013-12-14 09:30:08 -0800 | [diff] [blame] | 856 | pr_err("hwmon registration failed (%d)\n", err); |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 857 | return err; |
| 858 | } |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 859 | return 0; |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 860 | } |
| 861 | |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 862 | struct i8k_config_data { |
Pali Rohár | 7f69fb0 | 2015-01-12 14:32:02 +0100 | [diff] [blame] | 863 | uint fan_mult; |
| 864 | uint fan_max; |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 865 | }; |
| 866 | |
| 867 | enum i8k_configs { |
Guenter Roeck | 7b88344 | 2014-06-21 08:08:12 -0700 | [diff] [blame] | 868 | DELL_LATITUDE_D520, |
| 869 | DELL_PRECISION_490, |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 870 | DELL_STUDIO, |
Guenter Roeck | 34ae40f | 2015-01-12 14:32:01 +0100 | [diff] [blame] | 871 | DELL_XPS, |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 872 | }; |
| 873 | |
| 874 | static const struct i8k_config_data i8k_config_data[] = { |
Guenter Roeck | 7b88344 | 2014-06-21 08:08:12 -0700 | [diff] [blame] | 875 | [DELL_LATITUDE_D520] = { |
| 876 | .fan_mult = 1, |
| 877 | .fan_max = I8K_FAN_TURBO, |
| 878 | }, |
| 879 | [DELL_PRECISION_490] = { |
| 880 | .fan_mult = 1, |
| 881 | .fan_max = I8K_FAN_TURBO, |
| 882 | }, |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 883 | [DELL_STUDIO] = { |
| 884 | .fan_mult = 1, |
| 885 | .fan_max = I8K_FAN_HIGH, |
| 886 | }, |
Guenter Roeck | 34ae40f | 2015-01-12 14:32:01 +0100 | [diff] [blame] | 887 | [DELL_XPS] = { |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 888 | .fan_mult = 1, |
| 889 | .fan_max = I8K_FAN_HIGH, |
| 890 | }, |
| 891 | }; |
| 892 | |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 893 | static struct dmi_system_id i8k_dmi_table[] __initdata = { |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 894 | { |
| 895 | .ident = "Dell Inspiron", |
| 896 | .matches = { |
| 897 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"), |
| 898 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"), |
| 899 | }, |
| 900 | }, |
| 901 | { |
| 902 | .ident = "Dell Latitude", |
| 903 | .matches = { |
| 904 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"), |
| 905 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"), |
| 906 | }, |
| 907 | }, |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 908 | { |
| 909 | .ident = "Dell Inspiron 2", |
| 910 | .matches = { |
| 911 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 912 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"), |
| 913 | }, |
| 914 | }, |
| 915 | { |
Guenter Roeck | 7b88344 | 2014-06-21 08:08:12 -0700 | [diff] [blame] | 916 | .ident = "Dell Latitude D520", |
| 917 | .matches = { |
| 918 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 919 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D520"), |
| 920 | }, |
| 921 | .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520], |
| 922 | }, |
| 923 | { |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 924 | .ident = "Dell Latitude 2", |
| 925 | .matches = { |
| 926 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 927 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"), |
| 928 | }, |
| 929 | }, |
Nick Warne | a9000d0 | 2008-02-06 01:37:47 -0800 | [diff] [blame] | 930 | { /* UK Inspiron 6400 */ |
| 931 | .ident = "Dell Inspiron 3", |
| 932 | .matches = { |
| 933 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 934 | DMI_MATCH(DMI_PRODUCT_NAME, "MM061"), |
| 935 | }, |
| 936 | }, |
Frank Sorenson | 48103c5 | 2008-02-07 00:16:31 -0800 | [diff] [blame] | 937 | { |
| 938 | .ident = "Dell Inspiron 3", |
| 939 | .matches = { |
| 940 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 941 | DMI_MATCH(DMI_PRODUCT_NAME, "MP061"), |
| 942 | }, |
| 943 | }, |
Andy Spencer | 7ab21a8 | 2009-01-02 16:19:13 +0000 | [diff] [blame] | 944 | { |
Guenter Roeck | 7b88344 | 2014-06-21 08:08:12 -0700 | [diff] [blame] | 945 | .ident = "Dell Precision 490", |
| 946 | .matches = { |
| 947 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 948 | DMI_MATCH(DMI_PRODUCT_NAME, |
| 949 | "Precision WorkStation 490"), |
| 950 | }, |
| 951 | .driver_data = (void *)&i8k_config_data[DELL_PRECISION_490], |
| 952 | }, |
| 953 | { |
Andy Spencer | 7ab21a8 | 2009-01-02 16:19:13 +0000 | [diff] [blame] | 954 | .ident = "Dell Precision", |
| 955 | .matches = { |
| 956 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 957 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision"), |
| 958 | }, |
| 959 | }, |
Federico Heinz | bef2a50 | 2009-01-02 16:19:23 +0000 | [diff] [blame] | 960 | { |
| 961 | .ident = "Dell Vostro", |
| 962 | .matches = { |
| 963 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 964 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"), |
| 965 | }, |
| 966 | }, |
Alan Cox | 9aa5b01 | 2013-12-03 13:56:56 -0800 | [diff] [blame] | 967 | { |
| 968 | .ident = "Dell XPS421", |
| 969 | .matches = { |
| 970 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 971 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS L421X"), |
| 972 | }, |
| 973 | }, |
Guenter Roeck | ff457bd | 2013-12-14 09:30:17 -0800 | [diff] [blame] | 974 | { |
| 975 | .ident = "Dell Studio", |
| 976 | .matches = { |
| 977 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 978 | DMI_MATCH(DMI_PRODUCT_NAME, "Studio"), |
| 979 | }, |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 980 | .driver_data = (void *)&i8k_config_data[DELL_STUDIO], |
Guenter Roeck | ff457bd | 2013-12-14 09:30:17 -0800 | [diff] [blame] | 981 | }, |
Guenter Roeck | 919a030 | 2013-12-14 09:30:18 -0800 | [diff] [blame] | 982 | { |
Guenter Roeck | 34ae40f | 2015-01-12 14:32:01 +0100 | [diff] [blame] | 983 | .ident = "Dell XPS 13", |
| 984 | .matches = { |
| 985 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 986 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS13"), |
| 987 | }, |
| 988 | .driver_data = (void *)&i8k_config_data[DELL_XPS], |
| 989 | }, |
| 990 | { |
Guenter Roeck | 919a030 | 2013-12-14 09:30:18 -0800 | [diff] [blame] | 991 | .ident = "Dell XPS M140", |
| 992 | .matches = { |
| 993 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 994 | DMI_MATCH(DMI_PRODUCT_NAME, "MXC051"), |
| 995 | }, |
Guenter Roeck | 34ae40f | 2015-01-12 14:32:01 +0100 | [diff] [blame] | 996 | .driver_data = (void *)&i8k_config_data[DELL_XPS], |
Guenter Roeck | 919a030 | 2013-12-14 09:30:18 -0800 | [diff] [blame] | 997 | }, |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 998 | { } |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 999 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | |
Pali Rohár | 148b1fd | 2014-10-18 00:17:49 +0200 | [diff] [blame] | 1001 | MODULE_DEVICE_TABLE(dmi, i8k_dmi_table); |
| 1002 | |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 1003 | /* |
| 1004 | * On some machines once I8K_SMM_GET_FAN_TYPE is issued then CPU fan speed |
| 1005 | * randomly going up and down due to bug in Dell SMM or BIOS. Here is blacklist |
| 1006 | * of affected Dell machines for which we disallow I8K_SMM_GET_FAN_TYPE call. |
| 1007 | * See bug: https://bugzilla.kernel.org/show_bug.cgi?id=100121 |
| 1008 | */ |
| 1009 | static struct dmi_system_id i8k_blacklist_fan_type_dmi_table[] __initdata = { |
Pali Rohár | a4b45b2 | 2015-07-30 20:41:57 +0200 | [diff] [blame] | 1010 | { |
Thorsten Leemhuis | 6220f4e | 2016-01-17 16:03:04 +0100 | [diff] [blame] | 1011 | .ident = "Dell Studio XPS 8000", |
| 1012 | .matches = { |
| 1013 | DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 1014 | DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Studio XPS 8000"), |
| 1015 | }, |
| 1016 | }, |
| 1017 | { |
Pali Rohár | a4b45b2 | 2015-07-30 20:41:57 +0200 | [diff] [blame] | 1018 | .ident = "Dell Studio XPS 8100", |
| 1019 | .matches = { |
| 1020 | DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 1021 | DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Studio XPS 8100"), |
| 1022 | }, |
| 1023 | }, |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 1024 | { |
| 1025 | .ident = "Dell Inspiron 580", |
| 1026 | .matches = { |
| 1027 | DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 1028 | DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Inspiron 580 "), |
| 1029 | }, |
| 1030 | }, |
Pali Rohár | a4b45b2 | 2015-07-30 20:41:57 +0200 | [diff] [blame] | 1031 | { } |
| 1032 | }; |
| 1033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | /* |
| 1035 | * Probe for the presence of a supported laptop. |
| 1036 | */ |
| 1037 | static int __init i8k_probe(void) |
| 1038 | { |
Guenter Roeck | 26d0938 | 2013-12-14 09:30:19 -0800 | [diff] [blame] | 1039 | const struct dmi_system_id *id; |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 1040 | int fan, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | /* |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1043 | * Get DMI information |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | */ |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 1045 | if (!dmi_check_system(i8k_dmi_table)) { |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 1046 | if (!ignore_dmi && !force) |
| 1047 | return -ENODEV; |
| 1048 | |
Guenter Roeck | 60e71aa | 2013-12-14 09:30:08 -0800 | [diff] [blame] | 1049 | pr_info("not running on a supported Dell system.\n"); |
| 1050 | pr_info("vendor=%s, model=%s, version=%s\n", |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 1051 | i8k_get_dmi_data(DMI_SYS_VENDOR), |
| 1052 | i8k_get_dmi_data(DMI_PRODUCT_NAME), |
| 1053 | i8k_get_dmi_data(DMI_BIOS_VERSION)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | } |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1055 | |
Pali Rohár | 2744d2f | 2016-06-18 00:54:46 +0200 | [diff] [blame] | 1056 | if (dmi_check_system(i8k_blacklist_fan_type_dmi_table)) |
| 1057 | disallow_fan_type_call = true; |
| 1058 | |
Guenter Roeck | 12186f5 | 2013-12-14 09:30:09 -0800 | [diff] [blame] | 1059 | strlcpy(bios_version, i8k_get_dmi_data(DMI_BIOS_VERSION), |
| 1060 | sizeof(bios_version)); |
Pali Rohár | 7613663 | 2016-06-18 00:54:45 +0200 | [diff] [blame] | 1061 | strlcpy(bios_machineid, i8k_get_dmi_data(DMI_PRODUCT_SERIAL), |
| 1062 | sizeof(bios_machineid)); |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 1063 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | /* |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1065 | * Get SMM Dell signature |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | */ |
Dmitry Torokhov | 7e0fa31 | 2005-06-25 14:54:28 -0700 | [diff] [blame] | 1067 | if (i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG1) && |
| 1068 | i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG2)) { |
Guenter Roeck | 60e71aa | 2013-12-14 09:30:08 -0800 | [diff] [blame] | 1069 | pr_err("unable to get SMM Dell signature\n"); |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 1070 | if (!force) |
| 1071 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 1074 | /* |
| 1075 | * Set fan multiplier and maximal fan speed from dmi config |
| 1076 | * Values specified in module parameters override values from dmi |
| 1077 | */ |
Guenter Roeck | 26d0938 | 2013-12-14 09:30:19 -0800 | [diff] [blame] | 1078 | id = dmi_first_match(i8k_dmi_table); |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 1079 | if (id && id->driver_data) { |
| 1080 | const struct i8k_config_data *conf = id->driver_data; |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 1081 | if (!fan_mult && conf->fan_mult) |
| 1082 | fan_mult = conf->fan_mult; |
| 1083 | if (!fan_max && conf->fan_max) |
| 1084 | fan_max = conf->fan_max; |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 1085 | } |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 1086 | |
| 1087 | i8k_fan_max = fan_max ? : I8K_FAN_HIGH; /* Must not be 0 */ |
Guenter Roeck | 81474fc | 2014-06-21 08:08:10 -0700 | [diff] [blame] | 1088 | i8k_pwm_mult = DIV_ROUND_UP(255, i8k_fan_max); |
Guenter Roeck | 26d0938 | 2013-12-14 09:30:19 -0800 | [diff] [blame] | 1089 | |
Pali Rohár | 8f21d8e | 2015-01-12 14:32:03 +0100 | [diff] [blame] | 1090 | if (!fan_mult) { |
| 1091 | /* |
| 1092 | * Autodetect fan multiplier based on nominal rpm |
| 1093 | * If fan reports rpm value too high then set multiplier to 1 |
| 1094 | */ |
| 1095 | for (fan = 0; fan < 2; ++fan) { |
| 1096 | ret = i8k_get_fan_nominal_speed(fan, i8k_fan_max); |
| 1097 | if (ret < 0) |
| 1098 | continue; |
| 1099 | if (ret > I8K_FAN_MAX_RPM) |
| 1100 | i8k_fan_mult = 1; |
| 1101 | break; |
| 1102 | } |
| 1103 | } else { |
| 1104 | /* Fan multiplier was specified in module param or in dmi */ |
| 1105 | i8k_fan_mult = fan_mult; |
| 1106 | } |
| 1107 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1108 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | } |
| 1110 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 1111 | static int __init i8k_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | { |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 1113 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1115 | /* Are we running on an supported laptop? */ |
Dmitry Torokhov | e70c9d5 | 2005-06-25 14:54:25 -0700 | [diff] [blame] | 1116 | if (i8k_probe()) |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1117 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 1119 | err = i8k_init_hwmon(); |
| 1120 | if (err) |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 1121 | return err; |
Jean Delvare | 949a9d7 | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 1122 | |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 1123 | i8k_init_procfs(); |
Dmitry Torokhov | dec63ec | 2005-06-25 14:54:23 -0700 | [diff] [blame] | 1124 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | } |
| 1126 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 1127 | static void __exit i8k_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | { |
Guenter Roeck | 82ba1d3 | 2013-12-14 09:30:10 -0800 | [diff] [blame] | 1129 | hwmon_device_unregister(i8k_hwmon_dev); |
Pali Rohár | 039ae58 | 2015-05-14 13:16:37 +0200 | [diff] [blame] | 1130 | i8k_exit_procfs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | |
Dmitry Torokhov | 8378b924 | 2005-06-25 14:54:27 -0700 | [diff] [blame] | 1133 | module_init(i8k_init); |
| 1134 | module_exit(i8k_exit); |