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