blob: ee42eabc464d30b1f76c1728d850ac042db6cff8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * i8k.c -- Linux driver for accessing the SMM BIOS on Dell laptops.
3 * See http://www.debian.org/~dz/i8k/ for more information
4 * and for latest version of this driver.
5 *
6 * Copyright (C) 2001 Massimo Dal Zotto <dz@debian.org>
7 *
Jean Delvare949a9d72011-05-25 20:43:33 +02008 * Hwmon integration:
9 * Copyright (C) 2011 Jean Delvare <khali@linux-fr.org>
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * 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 Roeck60e71aa2013-12-14 09:30:08 -080022#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/types.h>
26#include <linux/init.h>
27#include <linux/proc_fs.h>
Dmitry Torokhov352f8f82005-06-25 14:54:26 -070028#include <linux/seq_file.h>
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070029#include <linux/dmi.h>
Alexey Dobriyan7e80d0d2007-05-08 00:28:59 -070030#include <linux/capability.h>
Arnd Bergmann613655f2010-06-02 14:28:52 +020031#include <linux/mutex.h>
Jean Delvare949a9d72011-05-25 20:43:33 +020032#include <linux/hwmon.h>
33#include <linux/hwmon-sysfs.h>
Guenter Roeck12186f52013-12-14 09:30:09 -080034#include <linux/uaccess.h>
35#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <linux/i8k.h>
38
Dmitry Torokhov352f8f82005-06-25 14:54:26 -070039#define I8K_VERSION "1.14 21/02/2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define I8K_SMM_FN_STATUS 0x0025
42#define I8K_SMM_POWER_STATUS 0x0069
43#define I8K_SMM_SET_FAN 0x01a3
44#define I8K_SMM_GET_FAN 0x00a3
45#define I8K_SMM_GET_SPEED 0x02a3
46#define I8K_SMM_GET_TEMP 0x10a3
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -070047#define I8K_SMM_GET_DELL_SIG1 0xfea3
48#define I8K_SMM_GET_DELL_SIG2 0xffa3
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define I8K_SMM_BIOS_VERSION 0x00a6
50
51#define I8K_FAN_MULT 30
52#define I8K_MAX_TEMP 127
53
54#define I8K_FN_NONE 0x00
55#define I8K_FN_UP 0x01
56#define I8K_FN_DOWN 0x02
57#define I8K_FN_MUTE 0x04
58#define I8K_FN_MASK 0x07
59#define I8K_FN_SHIFT 8
60
61#define I8K_POWER_AC 0x05
62#define I8K_POWER_BATTERY 0x01
63
64#define I8K_TEMPERATURE_BUG 1
65
Arnd Bergmann613655f2010-06-02 14:28:52 +020066static DEFINE_MUTEX(i8k_mutex);
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070067static char bios_version[4];
Jean Delvare949a9d72011-05-25 20:43:33 +020068static struct device *i8k_hwmon_dev;
Guenter Roeck82ba1d32013-12-14 09:30:10 -080069static u32 i8k_hwmon_flags;
70
71#define I8K_HWMON_HAVE_TEMP1 (1 << 0)
72#define I8K_HWMON_HAVE_FAN1 (1 << 1)
73#define I8K_HWMON_HAVE_FAN2 (1 << 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)");
76MODULE_DESCRIPTION("Driver for accessing SMM BIOS on Dell laptops");
77MODULE_LICENSE("GPL");
78
Rusty Russell90ab5ee2012-01-13 09:32:20 +103079static bool force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080module_param(force, bool, 0);
81MODULE_PARM_DESC(force, "Force loading without checking for supported models");
82
Rusty Russell90ab5ee2012-01-13 09:32:20 +103083static bool ignore_dmi;
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070084module_param(ignore_dmi, bool, 0);
85MODULE_PARM_DESC(ignore_dmi, "Continue probing hardware even if DMI data does not match");
86
Rusty Russell90ab5ee2012-01-13 09:32:20 +103087static bool restricted;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088module_param(restricted, bool, 0);
89MODULE_PARM_DESC(restricted, "Allow fan control if SYS_ADMIN capability set");
90
Rusty Russell90ab5ee2012-01-13 09:32:20 +103091static bool power_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092module_param(power_status, bool, 0600);
93MODULE_PARM_DESC(power_status, "Report power status in /proc/i8k");
94
Jochen Eisinger4ed99a22008-05-01 04:34:58 -070095static int fan_mult = I8K_FAN_MULT;
96module_param(fan_mult, int, 0);
97MODULE_PARM_DESC(fan_mult, "Factor to multiply fan speed with");
98
Dmitry Torokhov352f8f82005-06-25 14:54:26 -070099static int i8k_open_fs(struct inode *inode, struct file *file);
Frederic Weisbeckerd79b6f42010-03-30 07:27:50 +0200100static long i8k_ioctl(struct file *, unsigned int, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Arjan van de Ven62322d22006-07-03 00:24:21 -0700102static const struct file_operations i8k_fops = {
Denis V. Lunev1b502212008-04-29 01:02:34 -0700103 .owner = THIS_MODULE,
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700104 .open = i8k_open_fs,
105 .read = seq_read,
106 .llseek = seq_lseek,
107 .release = single_release,
Frederic Weisbeckerd79b6f42010-03-30 07:27:50 +0200108 .unlocked_ioctl = i8k_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700111struct smm_regs {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700112 unsigned int eax;
Guenter Roeck12186f52013-12-14 09:30:09 -0800113 unsigned int ebx __packed;
114 unsigned int ecx __packed;
115 unsigned int edx __packed;
116 unsigned int esi __packed;
117 unsigned int edi __packed;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700118};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jeff Garzik18552562007-10-03 15:15:40 -0400120static inline const char *i8k_get_dmi_data(int field)
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700121{
Jeff Garzik18552562007-10-03 15:15:40 -0400122 const char *dmi_data = dmi_get_system_info(field);
Dmitry Torokhov4f005552005-11-12 00:55:15 -0500123
124 return dmi_data && *dmi_data ? dmi_data : "?";
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/*
128 * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard.
129 */
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700130static int i8k_smm(struct smm_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700132 int rc;
133 int eax = regs->eax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Bradley Smithfe04f222008-02-07 00:16:27 -0800135#if defined(CONFIG_X86_64)
Jim Bos22d32432010-11-15 21:22:37 +0100136 asm volatile("pushq %%rax\n\t"
Bradley Smithfe04f222008-02-07 00:16:27 -0800137 "movl 0(%%rax),%%edx\n\t"
138 "pushq %%rdx\n\t"
139 "movl 4(%%rax),%%ebx\n\t"
140 "movl 8(%%rax),%%ecx\n\t"
141 "movl 12(%%rax),%%edx\n\t"
142 "movl 16(%%rax),%%esi\n\t"
143 "movl 20(%%rax),%%edi\n\t"
144 "popq %%rax\n\t"
145 "out %%al,$0xb2\n\t"
146 "out %%al,$0x84\n\t"
147 "xchgq %%rax,(%%rsp)\n\t"
148 "movl %%ebx,4(%%rax)\n\t"
149 "movl %%ecx,8(%%rax)\n\t"
150 "movl %%edx,12(%%rax)\n\t"
151 "movl %%esi,16(%%rax)\n\t"
152 "movl %%edi,20(%%rax)\n\t"
153 "popq %%rdx\n\t"
154 "movl %%edx,0(%%rax)\n\t"
Luca Tettamantibc1f4192011-05-25 20:43:31 +0200155 "pushfq\n\t"
156 "popq %%rax\n\t"
Bradley Smithfe04f222008-02-07 00:16:27 -0800157 "andl $1,%%eax\n"
Guenter Roeck12186f52013-12-14 09:30:09 -0800158 : "=a"(rc)
Bradley Smithfe04f222008-02-07 00:16:27 -0800159 : "a"(regs)
160 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
161#else
Jim Bos22d32432010-11-15 21:22:37 +0100162 asm volatile("pushl %%eax\n\t"
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700163 "movl 0(%%eax),%%edx\n\t"
164 "push %%edx\n\t"
165 "movl 4(%%eax),%%ebx\n\t"
166 "movl 8(%%eax),%%ecx\n\t"
167 "movl 12(%%eax),%%edx\n\t"
168 "movl 16(%%eax),%%esi\n\t"
169 "movl 20(%%eax),%%edi\n\t"
170 "popl %%eax\n\t"
171 "out %%al,$0xb2\n\t"
172 "out %%al,$0x84\n\t"
173 "xchgl %%eax,(%%esp)\n\t"
174 "movl %%ebx,4(%%eax)\n\t"
175 "movl %%ecx,8(%%eax)\n\t"
176 "movl %%edx,12(%%eax)\n\t"
177 "movl %%esi,16(%%eax)\n\t"
178 "movl %%edi,20(%%eax)\n\t"
179 "popl %%edx\n\t"
180 "movl %%edx,0(%%eax)\n\t"
181 "lahf\n\t"
182 "shrl $8,%%eax\n\t"
Jim Bos6b4e81d2010-11-13 12:13:53 +0100183 "andl $1,%%eax\n"
Guenter Roeck12186f52013-12-14 09:30:09 -0800184 : "=a"(rc)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700185 : "a"(regs)
186 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
Bradley Smithfe04f222008-02-07 00:16:27 -0800187#endif
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700188 if (rc != 0 || (regs->eax & 0xffff) == 0xffff || regs->eax == eax)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/*
195 * Read the bios version. Return the version as an integer corresponding
196 * to the ascii value, for example "A17" is returned as 0x00413137.
197 */
198static int i8k_get_bios_version(void)
199{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700200 struct smm_regs regs = { .eax = I8K_SMM_BIOS_VERSION, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700202 return i8k_smm(&regs) ? : regs.eax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * Read the Fn key status.
207 */
208static int i8k_get_fn_status(void)
209{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700210 struct smm_regs regs = { .eax = I8K_SMM_FN_STATUS, };
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700211 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Guenter Roeck12186f52013-12-14 09:30:09 -0800213 rc = i8k_smm(&regs);
214 if (rc < 0)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700215 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700217 switch ((regs.eax >> I8K_FN_SHIFT) & I8K_FN_MASK) {
218 case I8K_FN_UP:
219 return I8K_VOL_UP;
220 case I8K_FN_DOWN:
221 return I8K_VOL_DOWN;
222 case I8K_FN_MUTE:
223 return I8K_VOL_MUTE;
224 default:
225 return 0;
226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229/*
230 * Read the power status.
231 */
232static int i8k_get_power_status(void)
233{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700234 struct smm_regs regs = { .eax = I8K_SMM_POWER_STATUS, };
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700235 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Guenter Roeck12186f52013-12-14 09:30:09 -0800237 rc = i8k_smm(&regs);
238 if (rc < 0)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700239 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700241 return (regs.eax & 0xff) == I8K_POWER_AC ? I8K_AC : I8K_BATTERY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244/*
245 * Read the fan status.
246 */
247static int i8k_get_fan_status(int fan)
248{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700249 struct smm_regs regs = { .eax = I8K_SMM_GET_FAN, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700251 regs.ebx = fan & 0xff;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700252 return i8k_smm(&regs) ? : regs.eax & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/*
256 * Read the fan speed in RPM.
257 */
258static int i8k_get_fan_speed(int fan)
259{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700260 struct smm_regs regs = { .eax = I8K_SMM_GET_SPEED, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700262 regs.ebx = fan & 0xff;
Jochen Eisinger4ed99a22008-05-01 04:34:58 -0700263 return i8k_smm(&regs) ? : (regs.eax & 0xffff) * fan_mult;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266/*
267 * Set the fan speed (off, low, high). Returns the new fan status.
268 */
269static int i8k_set_fan(int fan, int speed)
270{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700271 struct smm_regs regs = { .eax = I8K_SMM_SET_FAN, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700273 speed = (speed < 0) ? 0 : ((speed > I8K_FAN_MAX) ? I8K_FAN_MAX : speed);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700274 regs.ebx = (fan & 0xff) | (speed << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700276 return i8k_smm(&regs) ? : i8k_get_fan_status(fan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279/*
280 * Read the cpu temperature.
281 */
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700282static int i8k_get_temp(int sensor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700284 struct smm_regs regs = { .eax = I8K_SMM_GET_TEMP, };
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700285 int rc;
286 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288#ifdef I8K_TEMPERATURE_BUG
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700289 static int prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#endif
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700291 regs.ebx = sensor & 0xff;
Guenter Roeck12186f52013-12-14 09:30:09 -0800292 rc = i8k_smm(&regs);
293 if (rc < 0)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700294 return rc;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700295
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700296 temp = regs.eax & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298#ifdef I8K_TEMPERATURE_BUG
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700299 /*
300 * Sometimes the temperature sensor returns 0x99, which is out of range.
301 * In this case we return (once) the previous cached value. For example:
302 # 1003655137 00000058 00005a4b
303 # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees
304 # 1003655139 00000054 00005c52
305 */
306 if (temp > I8K_MAX_TEMP) {
307 temp = prev;
308 prev = I8K_MAX_TEMP;
309 } else {
310 prev = temp;
311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#endif
313
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700314 return temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700317static int i8k_get_dell_signature(int req_fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700319 struct smm_regs regs = { .eax = req_fn, };
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700320 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Guenter Roeck12186f52013-12-14 09:30:09 -0800322 rc = i8k_smm(&regs);
323 if (rc < 0)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700324 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700326 return regs.eax == 1145651527 && regs.edx == 1145392204 ? 0 : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Frederic Weisbeckerd79b6f42010-03-30 07:27:50 +0200329static int
330i8k_ioctl_unlocked(struct file *fp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700332 int val = 0;
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700333 int speed;
334 unsigned char buff[16];
335 int __user *argp = (int __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700337 if (!argp)
338 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700340 switch (cmd) {
341 case I8K_BIOS_VERSION:
342 val = i8k_get_bios_version();
343 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700345 case I8K_MACHINE_ID:
346 memset(buff, 0, 16);
Guenter Roeck12186f52013-12-14 09:30:09 -0800347 strlcpy(buff, i8k_get_dmi_data(DMI_PRODUCT_SERIAL),
348 sizeof(buff));
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700349 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700351 case I8K_FN_STATUS:
352 val = i8k_get_fn_status();
353 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700355 case I8K_POWER_STATUS:
356 val = i8k_get_power_status();
357 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700359 case I8K_GET_TEMP:
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700360 val = i8k_get_temp(0);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700361 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700363 case I8K_GET_SPEED:
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700364 if (copy_from_user(&val, argp, sizeof(int)))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700365 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700366
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700367 val = i8k_get_fan_speed(val);
368 break;
369
370 case I8K_GET_FAN:
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700371 if (copy_from_user(&val, argp, sizeof(int)))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700372 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700373
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700374 val = i8k_get_fan_status(val);
375 break;
376
377 case I8K_SET_FAN:
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700378 if (restricted && !capable(CAP_SYS_ADMIN))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700379 return -EPERM;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700380
381 if (copy_from_user(&val, argp, sizeof(int)))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700382 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700383
384 if (copy_from_user(&speed, argp + 1, sizeof(int)))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700385 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700386
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700387 val = i8k_set_fan(val, speed);
388 break;
389
390 default:
391 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700394 if (val < 0)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700395 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700397 switch (cmd) {
398 case I8K_BIOS_VERSION:
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700399 if (copy_to_user(argp, &val, 4))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700400 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700401
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700402 break;
403 case I8K_MACHINE_ID:
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700404 if (copy_to_user(argp, buff, 16))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700405 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700406
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700407 break;
408 default:
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700409 if (copy_to_user(argp, &val, sizeof(int)))
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700410 return -EFAULT;
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700411
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Frederic Weisbeckerd79b6f42010-03-30 07:27:50 +0200418static long i8k_ioctl(struct file *fp, unsigned int cmd, unsigned long arg)
419{
420 long ret;
421
Arnd Bergmann613655f2010-06-02 14:28:52 +0200422 mutex_lock(&i8k_mutex);
Frederic Weisbeckerd79b6f42010-03-30 07:27:50 +0200423 ret = i8k_ioctl_unlocked(fp, cmd, arg);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200424 mutex_unlock(&i8k_mutex);
Frederic Weisbeckerd79b6f42010-03-30 07:27:50 +0200425
426 return ret;
427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/*
430 * Print the information for /proc/i8k.
431 */
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700432static int i8k_proc_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700434 int fn_key, cpu_temp, ac_power;
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700435 int left_fan, right_fan, left_speed, right_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200437 cpu_temp = i8k_get_temp(0); /* 11100 µs */
438 left_fan = i8k_get_fan_status(I8K_FAN_LEFT); /* 580 µs */
439 right_fan = i8k_get_fan_status(I8K_FAN_RIGHT); /* 580 µs */
440 left_speed = i8k_get_fan_speed(I8K_FAN_LEFT); /* 580 µs */
441 right_speed = i8k_get_fan_speed(I8K_FAN_RIGHT); /* 580 µs */
442 fn_key = i8k_get_fn_status(); /* 750 µs */
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700443 if (power_status)
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200444 ac_power = i8k_get_power_status(); /* 14700 µs */
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700445 else
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700446 ac_power = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700448 /*
449 * Info:
450 *
451 * 1) Format version (this will change if format changes)
452 * 2) BIOS version
453 * 3) BIOS machine ID
454 * 4) Cpu temperature
455 * 5) Left fan status
456 * 6) Right fan status
457 * 7) Left fan speed
458 * 8) Right fan speed
459 * 9) AC power
460 * 10) Fn Key status
461 */
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700462 return seq_printf(seq, "%s %s %s %d %d %d %d %d %d %d\n",
463 I8K_PROC_FMT,
464 bios_version,
Dmitry Torokhov4f005552005-11-12 00:55:15 -0500465 i8k_get_dmi_data(DMI_PRODUCT_SERIAL),
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700466 cpu_temp,
467 left_fan, right_fan, left_speed, right_speed,
468 ac_power, fn_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700471static int i8k_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700473 return single_open(file, i8k_proc_show, NULL);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700474}
475
Jean Delvare949a9d72011-05-25 20:43:33 +0200476
477/*
478 * Hwmon interface
479 */
480
481static ssize_t i8k_hwmon_show_temp(struct device *dev,
482 struct device_attribute *devattr,
483 char *buf)
484{
485 int cpu_temp;
486
487 cpu_temp = i8k_get_temp(0);
488 if (cpu_temp < 0)
489 return cpu_temp;
490 return sprintf(buf, "%d\n", cpu_temp * 1000);
491}
492
493static ssize_t i8k_hwmon_show_fan(struct device *dev,
494 struct device_attribute *devattr,
495 char *buf)
496{
497 int index = to_sensor_dev_attr(devattr)->index;
498 int fan_speed;
499
500 fan_speed = i8k_get_fan_speed(index);
501 if (fan_speed < 0)
502 return fan_speed;
503 return sprintf(buf, "%d\n", fan_speed);
504}
505
506static ssize_t i8k_hwmon_show_label(struct device *dev,
507 struct device_attribute *devattr,
508 char *buf)
509{
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800510 static const char *labels[3] = {
Jean Delvare949a9d72011-05-25 20:43:33 +0200511 "CPU",
512 "Left Fan",
513 "Right Fan",
514 };
515 int index = to_sensor_dev_attr(devattr)->index;
516
517 return sprintf(buf, "%s\n", labels[index]);
518}
519
520static DEVICE_ATTR(temp1_input, S_IRUGO, i8k_hwmon_show_temp, NULL);
521static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, i8k_hwmon_show_fan, NULL,
522 I8K_FAN_LEFT);
523static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, i8k_hwmon_show_fan, NULL,
524 I8K_FAN_RIGHT);
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800525static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, i8k_hwmon_show_label, NULL, 0);
526static SENSOR_DEVICE_ATTR(fan1_label, S_IRUGO, i8k_hwmon_show_label, NULL, 1);
527static SENSOR_DEVICE_ATTR(fan2_label, S_IRUGO, i8k_hwmon_show_label, NULL, 2);
Jean Delvare949a9d72011-05-25 20:43:33 +0200528
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800529static struct attribute *i8k_attrs[] = {
530 &dev_attr_temp1_input.attr, /* 0 */
531 &sensor_dev_attr_temp1_label.dev_attr.attr, /* 1 */
532 &sensor_dev_attr_fan1_input.dev_attr.attr, /* 2 */
533 &sensor_dev_attr_fan1_label.dev_attr.attr, /* 3 */
534 &sensor_dev_attr_fan2_input.dev_attr.attr, /* 4 */
535 &sensor_dev_attr_fan2_label.dev_attr.attr, /* 5 */
536 NULL
537};
538
539static umode_t i8k_is_visible(struct kobject *kobj, struct attribute *attr,
540 int index)
Jean Delvare949a9d72011-05-25 20:43:33 +0200541{
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800542 if ((index == 0 || index == 1) &&
543 !(i8k_hwmon_flags & I8K_HWMON_HAVE_TEMP1))
544 return 0;
545 if ((index == 2 || index == 3) &&
546 !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN1))
547 return 0;
548 if ((index == 4 || index == 5) &&
549 !(i8k_hwmon_flags & I8K_HWMON_HAVE_FAN2))
550 return 0;
551
552 return attr->mode;
Jean Delvare949a9d72011-05-25 20:43:33 +0200553}
554
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800555static const struct attribute_group i8k_group = {
556 .attrs = i8k_attrs,
557 .is_visible = i8k_is_visible,
558};
559__ATTRIBUTE_GROUPS(i8k);
560
Jean Delvare949a9d72011-05-25 20:43:33 +0200561static int __init i8k_init_hwmon(void)
562{
563 int err;
564
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800565 i8k_hwmon_flags = 0;
566
567 /* CPU temperature attributes, if temperature reading is OK */
568 err = i8k_get_temp(0);
569 if (err >= 0)
570 i8k_hwmon_flags |= I8K_HWMON_HAVE_TEMP1;
571
572 /* Left fan attributes, if left fan is present */
573 err = i8k_get_fan_status(I8K_FAN_LEFT);
574 if (err >= 0)
575 i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN1;
576
577 /* Right fan attributes, if right fan is present */
578 err = i8k_get_fan_status(I8K_FAN_RIGHT);
579 if (err >= 0)
580 i8k_hwmon_flags |= I8K_HWMON_HAVE_FAN2;
581
582 i8k_hwmon_dev = hwmon_device_register_with_groups(NULL, "i8k", NULL,
583 i8k_groups);
Jean Delvare949a9d72011-05-25 20:43:33 +0200584 if (IS_ERR(i8k_hwmon_dev)) {
585 err = PTR_ERR(i8k_hwmon_dev);
586 i8k_hwmon_dev = NULL;
Guenter Roeck60e71aa2013-12-14 09:30:08 -0800587 pr_err("hwmon registration failed (%d)\n", err);
Jean Delvare949a9d72011-05-25 20:43:33 +0200588 return err;
589 }
Jean Delvare949a9d72011-05-25 20:43:33 +0200590 return 0;
Jean Delvare949a9d72011-05-25 20:43:33 +0200591}
592
Guenter Roeck12186f52013-12-14 09:30:09 -0800593static struct dmi_system_id i8k_dmi_table[] __initdata = {
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700594 {
595 .ident = "Dell Inspiron",
596 .matches = {
597 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
598 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
599 },
600 },
601 {
602 .ident = "Dell Latitude",
603 .matches = {
604 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
605 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
606 },
607 },
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700608 {
609 .ident = "Dell Inspiron 2",
610 .matches = {
611 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
612 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
613 },
614 },
615 {
616 .ident = "Dell Latitude 2",
617 .matches = {
618 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
619 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
620 },
621 },
Nick Warnea9000d02008-02-06 01:37:47 -0800622 { /* UK Inspiron 6400 */
623 .ident = "Dell Inspiron 3",
624 .matches = {
625 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
626 DMI_MATCH(DMI_PRODUCT_NAME, "MM061"),
627 },
628 },
Frank Sorenson48103c52008-02-07 00:16:31 -0800629 {
630 .ident = "Dell Inspiron 3",
631 .matches = {
632 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
633 DMI_MATCH(DMI_PRODUCT_NAME, "MP061"),
634 },
635 },
Andy Spencer7ab21a82009-01-02 16:19:13 +0000636 {
637 .ident = "Dell Precision",
638 .matches = {
639 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
640 DMI_MATCH(DMI_PRODUCT_NAME, "Precision"),
641 },
642 },
Federico Heinzbef2a502009-01-02 16:19:23 +0000643 {
644 .ident = "Dell Vostro",
645 .matches = {
646 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
647 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"),
648 },
649 },
Alan Cox9aa5b012013-12-03 13:56:56 -0800650 {
651 .ident = "Dell XPS421",
652 .matches = {
653 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
654 DMI_MATCH(DMI_PRODUCT_NAME, "XPS L421X"),
655 },
656 },
Guenter Roeck12186f52013-12-14 09:30:09 -0800657 { }
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700658};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660/*
661 * Probe for the presence of a supported laptop.
662 */
663static int __init i8k_probe(void)
664{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700665 char buff[4];
666 int version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /*
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700669 * Get DMI information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700671 if (!dmi_check_system(i8k_dmi_table)) {
672 if (!ignore_dmi && !force)
673 return -ENODEV;
674
Guenter Roeck60e71aa2013-12-14 09:30:08 -0800675 pr_info("not running on a supported Dell system.\n");
676 pr_info("vendor=%s, model=%s, version=%s\n",
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700677 i8k_get_dmi_data(DMI_SYS_VENDOR),
678 i8k_get_dmi_data(DMI_PRODUCT_NAME),
679 i8k_get_dmi_data(DMI_BIOS_VERSION));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700681
Guenter Roeck12186f52013-12-14 09:30:09 -0800682 strlcpy(bios_version, i8k_get_dmi_data(DMI_BIOS_VERSION),
683 sizeof(bios_version));
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700686 * Get SMM Dell signature
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
Dmitry Torokhov7e0fa312005-06-25 14:54:28 -0700688 if (i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG1) &&
689 i8k_get_dell_signature(I8K_SMM_GET_DELL_SIG2)) {
Guenter Roeck60e71aa2013-12-14 09:30:08 -0800690 pr_err("unable to get SMM Dell signature\n");
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700691 if (!force)
692 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700695 /*
696 * Get SMM BIOS version.
697 */
698 version = i8k_get_bios_version();
699 if (version <= 0) {
Guenter Roeck60e71aa2013-12-14 09:30:08 -0800700 pr_warn("unable to get SMM BIOS version\n");
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700701 } else {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700702 buff[0] = (version >> 16) & 0xff;
703 buff[1] = (version >> 8) & 0xff;
704 buff[2] = (version) & 0xff;
705 buff[3] = '\0';
706 /*
707 * If DMI BIOS version is unknown use SMM BIOS version.
708 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700709 if (!dmi_get_system_info(DMI_BIOS_VERSION))
710 strlcpy(bios_version, buff, sizeof(bios_version));
711
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700712 /*
713 * Check if the two versions match.
714 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700715 if (strncmp(buff, bios_version, sizeof(bios_version)) != 0)
Guenter Roeck60e71aa2013-12-14 09:30:08 -0800716 pr_warn("BIOS version mismatch: %s != %s\n",
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700717 buff, bios_version);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700718 }
719
720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700723static int __init i8k_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700725 struct proc_dir_entry *proc_i8k;
Jean Delvare949a9d72011-05-25 20:43:33 +0200726 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700728 /* Are we running on an supported laptop? */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700729 if (i8k_probe())
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700730 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700732 /* Register the proc entry */
Denis V. Lunev1b502212008-04-29 01:02:34 -0700733 proc_i8k = proc_create("i8k", 0, NULL, &i8k_fops);
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700734 if (!proc_i8k)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700735 return -ENOENT;
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700736
Jean Delvare949a9d72011-05-25 20:43:33 +0200737 err = i8k_init_hwmon();
738 if (err)
739 goto exit_remove_proc;
740
Guenter Roeck60e71aa2013-12-14 09:30:08 -0800741 pr_info("Dell laptop SMM driver v%s Massimo Dal Zotto (dz@debian.org)\n",
742 I8K_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700744 return 0;
Jean Delvare949a9d72011-05-25 20:43:33 +0200745
746 exit_remove_proc:
747 remove_proc_entry("i8k", NULL);
748 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700751static void __exit i8k_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
Guenter Roeck82ba1d32013-12-14 09:30:10 -0800753 hwmon_device_unregister(i8k_hwmon_dev);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700754 remove_proc_entry("i8k", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Dmitry Torokhov8378b9242005-06-25 14:54:27 -0700757module_init(i8k_init);
758module_exit(i8k_exit);