blob: 81d2f675fb773edc3f9c8217a047559ed54a4305 [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 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 */
18
19#include <linux/module.h>
20#include <linux/types.h>
21#include <linux/init.h>
22#include <linux/proc_fs.h>
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070023#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/uaccess.h>
25#include <asm/io.h>
26
27#include <linux/i8k.h>
28
29#define I8K_VERSION "1.13 14/05/2002"
30
31#define I8K_SMM_FN_STATUS 0x0025
32#define I8K_SMM_POWER_STATUS 0x0069
33#define I8K_SMM_SET_FAN 0x01a3
34#define I8K_SMM_GET_FAN 0x00a3
35#define I8K_SMM_GET_SPEED 0x02a3
36#define I8K_SMM_GET_TEMP 0x10a3
37#define I8K_SMM_GET_DELL_SIG 0xffa3
38#define I8K_SMM_BIOS_VERSION 0x00a6
39
40#define I8K_FAN_MULT 30
41#define I8K_MAX_TEMP 127
42
43#define I8K_FN_NONE 0x00
44#define I8K_FN_UP 0x01
45#define I8K_FN_DOWN 0x02
46#define I8K_FN_MUTE 0x04
47#define I8K_FN_MASK 0x07
48#define I8K_FN_SHIFT 8
49
50#define I8K_POWER_AC 0x05
51#define I8K_POWER_BATTERY 0x01
52
53#define I8K_TEMPERATURE_BUG 1
54
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070055static char bios_version[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)");
58MODULE_DESCRIPTION("Driver for accessing SMM BIOS on Dell laptops");
59MODULE_LICENSE("GPL");
60
61static int force;
62module_param(force, bool, 0);
63MODULE_PARM_DESC(force, "Force loading without checking for supported models");
64
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070065static int ignore_dmi;
66module_param(ignore_dmi, bool, 0);
67MODULE_PARM_DESC(ignore_dmi, "Continue probing hardware even if DMI data does not match");
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int restricted;
70module_param(restricted, bool, 0);
71MODULE_PARM_DESC(restricted, "Allow fan control if SYS_ADMIN capability set");
72
73static int power_status;
74module_param(power_status, bool, 0600);
75MODULE_PARM_DESC(power_status, "Report power status in /proc/i8k");
76
77static ssize_t i8k_read(struct file *, char __user *, size_t, loff_t *);
78static int i8k_ioctl(struct inode *, struct file *, unsigned int,
79 unsigned long);
80
81static struct file_operations i8k_fops = {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -070082 .read = i8k_read,
83 .ioctl = i8k_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86typedef struct {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -070087 unsigned int eax;
88 unsigned int ebx __attribute__ ((packed));
89 unsigned int ecx __attribute__ ((packed));
90 unsigned int edx __attribute__ ((packed));
91 unsigned int esi __attribute__ ((packed));
92 unsigned int edi __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -070093} SMMRegisters;
94
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070095static inline char *i8k_get_dmi_data(int field)
96{
97 return dmi_get_system_info(field) ? : "N/A";
98}
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard.
102 */
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700103static int i8k_smm(SMMRegisters * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700105 int rc;
106 int eax = regs->eax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700108 asm("pushl %%eax\n\t"
109 "movl 0(%%eax),%%edx\n\t"
110 "push %%edx\n\t"
111 "movl 4(%%eax),%%ebx\n\t"
112 "movl 8(%%eax),%%ecx\n\t"
113 "movl 12(%%eax),%%edx\n\t"
114 "movl 16(%%eax),%%esi\n\t"
115 "movl 20(%%eax),%%edi\n\t"
116 "popl %%eax\n\t"
117 "out %%al,$0xb2\n\t"
118 "out %%al,$0x84\n\t"
119 "xchgl %%eax,(%%esp)\n\t"
120 "movl %%ebx,4(%%eax)\n\t"
121 "movl %%ecx,8(%%eax)\n\t"
122 "movl %%edx,12(%%eax)\n\t"
123 "movl %%esi,16(%%eax)\n\t"
124 "movl %%edi,20(%%eax)\n\t"
125 "popl %%edx\n\t"
126 "movl %%edx,0(%%eax)\n\t"
127 "lahf\n\t"
128 "shrl $8,%%eax\n\t"
129 "andl $1,%%eax\n":"=a"(rc)
130 : "a"(regs)
131 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700133 if ((rc != 0) || ((regs->eax & 0xffff) == 0xffff) || (regs->eax == eax)) {
134 return -EINVAL;
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700137 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140/*
141 * Read the bios version. Return the version as an integer corresponding
142 * to the ascii value, for example "A17" is returned as 0x00413137.
143 */
144static int i8k_get_bios_version(void)
145{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700146 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
147 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700149 regs.eax = I8K_SMM_BIOS_VERSION;
150 if ((rc = i8k_smm(&regs)) < 0) {
151 return rc;
152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700154 return regs.eax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * Read the Fn key status.
159 */
160static int i8k_get_fn_status(void)
161{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700162 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
163 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700165 regs.eax = I8K_SMM_FN_STATUS;
166 if ((rc = i8k_smm(&regs)) < 0) {
167 return rc;
168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700170 switch ((regs.eax >> I8K_FN_SHIFT) & I8K_FN_MASK) {
171 case I8K_FN_UP:
172 return I8K_VOL_UP;
173 case I8K_FN_DOWN:
174 return I8K_VOL_DOWN;
175 case I8K_FN_MUTE:
176 return I8K_VOL_MUTE;
177 default:
178 return 0;
179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182/*
183 * Read the power status.
184 */
185static int i8k_get_power_status(void)
186{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700187 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
188 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700190 regs.eax = I8K_SMM_POWER_STATUS;
191 if ((rc = i8k_smm(&regs)) < 0) {
192 return rc;
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700195 switch (regs.eax & 0xff) {
196 case I8K_POWER_AC:
197 return I8K_AC;
198 default:
199 return I8K_BATTERY;
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
204 * Read the fan status.
205 */
206static int i8k_get_fan_status(int fan)
207{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700208 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
209 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700211 regs.eax = I8K_SMM_GET_FAN;
212 regs.ebx = fan & 0xff;
213 if ((rc = i8k_smm(&regs)) < 0) {
214 return rc;
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700217 return (regs.eax & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220/*
221 * Read the fan speed in RPM.
222 */
223static int i8k_get_fan_speed(int fan)
224{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700225 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
226 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700228 regs.eax = I8K_SMM_GET_SPEED;
229 regs.ebx = fan & 0xff;
230 if ((rc = i8k_smm(&regs)) < 0) {
231 return rc;
232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700234 return (regs.eax & 0xffff) * I8K_FAN_MULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237/*
238 * Set the fan speed (off, low, high). Returns the new fan status.
239 */
240static int i8k_set_fan(int fan, int speed)
241{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700242 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
243 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700245 speed = (speed < 0) ? 0 : ((speed > I8K_FAN_MAX) ? I8K_FAN_MAX : speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700247 regs.eax = I8K_SMM_SET_FAN;
248 regs.ebx = (fan & 0xff) | (speed << 8);
249 if ((rc = i8k_smm(&regs)) < 0) {
250 return rc;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700253 return (i8k_get_fan_status(fan));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256/*
257 * Read the cpu temperature.
258 */
259static int i8k_get_cpu_temp(void)
260{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700261 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
262 int rc;
263 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265#ifdef I8K_TEMPERATURE_BUG
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700266 static int prev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267#endif
268
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700269 regs.eax = I8K_SMM_GET_TEMP;
270 if ((rc = i8k_smm(&regs)) < 0) {
271 return rc;
272 }
273 temp = regs.eax & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275#ifdef I8K_TEMPERATURE_BUG
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700276 /*
277 * Sometimes the temperature sensor returns 0x99, which is out of range.
278 * In this case we return (once) the previous cached value. For example:
279 # 1003655137 00000058 00005a4b
280 # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees
281 # 1003655139 00000054 00005c52
282 */
283 if (temp > I8K_MAX_TEMP) {
284 temp = prev;
285 prev = I8K_MAX_TEMP;
286 } else {
287 prev = temp;
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289#endif
290
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700291 return temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static int i8k_get_dell_signature(void)
295{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700296 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
297 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700299 regs.eax = I8K_SMM_GET_DELL_SIG;
300 if ((rc = i8k_smm(&regs)) < 0) {
301 return rc;
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700304 if ((regs.eax == 1145651527) && (regs.edx == 1145392204)) {
305 return 0;
306 } else {
307 return -1;
308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311static int i8k_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
312 unsigned long arg)
313{
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700314 int val = 0;
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700315 int speed;
316 unsigned char buff[16];
317 int __user *argp = (int __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700319 if (!argp)
320 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700322 switch (cmd) {
323 case I8K_BIOS_VERSION:
324 val = i8k_get_bios_version();
325 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700327 case I8K_MACHINE_ID:
328 memset(buff, 0, 16);
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700329 strlcpy(buff, i8k_get_dmi_data(DMI_PRODUCT_SERIAL), sizeof(buff));
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700330 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700332 case I8K_FN_STATUS:
333 val = i8k_get_fn_status();
334 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700336 case I8K_POWER_STATUS:
337 val = i8k_get_power_status();
338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700340 case I8K_GET_TEMP:
341 val = i8k_get_cpu_temp();
342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700344 case I8K_GET_SPEED:
345 if (copy_from_user(&val, argp, sizeof(int))) {
346 return -EFAULT;
347 }
348 val = i8k_get_fan_speed(val);
349 break;
350
351 case I8K_GET_FAN:
352 if (copy_from_user(&val, argp, sizeof(int))) {
353 return -EFAULT;
354 }
355 val = i8k_get_fan_status(val);
356 break;
357
358 case I8K_SET_FAN:
359 if (restricted && !capable(CAP_SYS_ADMIN)) {
360 return -EPERM;
361 }
362 if (copy_from_user(&val, argp, sizeof(int))) {
363 return -EFAULT;
364 }
365 if (copy_from_user(&speed, argp + 1, sizeof(int))) {
366 return -EFAULT;
367 }
368 val = i8k_set_fan(val, speed);
369 break;
370
371 default:
372 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700375 if (val < 0) {
376 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700379 switch (cmd) {
380 case I8K_BIOS_VERSION:
381 if (copy_to_user(argp, &val, 4)) {
382 return -EFAULT;
383 }
384 break;
385 case I8K_MACHINE_ID:
386 if (copy_to_user(argp, buff, 16)) {
387 return -EFAULT;
388 }
389 break;
390 default:
391 if (copy_to_user(argp, &val, sizeof(int))) {
392 return -EFAULT;
393 }
394 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400/*
401 * Print the information for /proc/i8k.
402 */
403static int i8k_get_info(char *buffer, char **start, off_t fpos, int length)
404{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700405 int n, fn_key, cpu_temp, ac_power;
406 int left_fan, right_fan, left_speed, right_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700408 cpu_temp = i8k_get_cpu_temp(); /* 11100 µs */
409 left_fan = i8k_get_fan_status(I8K_FAN_LEFT); /* 580 µs */
410 right_fan = i8k_get_fan_status(I8K_FAN_RIGHT); /* 580 µs */
411 left_speed = i8k_get_fan_speed(I8K_FAN_LEFT); /* 580 µs */
412 right_speed = i8k_get_fan_speed(I8K_FAN_RIGHT); /* 580 µs */
413 fn_key = i8k_get_fn_status(); /* 750 µs */
414 if (power_status) {
415 ac_power = i8k_get_power_status(); /* 14700 µs */
416 } else {
417 ac_power = -1;
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700420 /*
421 * Info:
422 *
423 * 1) Format version (this will change if format changes)
424 * 2) BIOS version
425 * 3) BIOS machine ID
426 * 4) Cpu temperature
427 * 5) Left fan status
428 * 6) Right fan status
429 * 7) Left fan speed
430 * 8) Right fan speed
431 * 9) AC power
432 * 10) Fn Key status
433 */
434 n = sprintf(buffer, "%s %s %s %d %d %d %d %d %d %d\n",
435 I8K_PROC_FMT,
436 bios_version,
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700437 dmi_get_system_info(DMI_PRODUCT_SERIAL) ? : "N/A",
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700438 cpu_temp,
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700439 left_fan, right_fan, left_speed, right_speed,
440 ac_power, fn_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700445static ssize_t i8k_read(struct file *f, char __user * buffer, size_t len,
446 loff_t * fpos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700448 int n;
449 char info[128];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700451 n = i8k_get_info(info, NULL, 0, 128);
452 if (n <= 0) {
453 return n;
454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700456 if (*fpos >= n) {
457 return 0;
458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700460 if ((*fpos + len) >= n) {
461 len = n - *fpos;
462 }
463
464 if (copy_to_user(buffer, info, len) != 0) {
465 return -EFAULT;
466 }
467
468 *fpos += len;
469 return len;
470}
471
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700472static struct dmi_system_id __initdata i8k_dmi_table[] = {
473 {
474 .ident = "Dell Inspiron",
475 .matches = {
476 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
477 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
478 },
479 },
480 {
481 .ident = "Dell Latitude",
482 .matches = {
483 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
484 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
485 },
486 },
487 { }
488};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490/*
491 * Probe for the presence of a supported laptop.
492 */
493static int __init i8k_probe(void)
494{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700495 char buff[4];
496 int version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700499 * Get DMI information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700501 if (!dmi_check_system(i8k_dmi_table)) {
502 if (!ignore_dmi && !force)
503 return -ENODEV;
504
505 printk(KERN_INFO "i8k: not running on a supported Dell system.\n");
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700506 printk(KERN_INFO "i8k: vendor=%s, model=%s, version=%s\n",
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700507 i8k_get_dmi_data(DMI_SYS_VENDOR),
508 i8k_get_dmi_data(DMI_PRODUCT_NAME),
509 i8k_get_dmi_data(DMI_BIOS_VERSION));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700511
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700512 strlcpy(bios_version, i8k_get_dmi_data(DMI_BIOS_VERSION), sizeof(bios_version));
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /*
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700515 * Get SMM Dell signature
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 */
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700517 if (i8k_get_dell_signature() != 0) {
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700518 printk(KERN_ERR "i8k: unable to get SMM Dell signature\n");
519 if (!force)
520 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700523 /*
524 * Get SMM BIOS version.
525 */
526 version = i8k_get_bios_version();
527 if (version <= 0) {
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700528 printk(KERN_WARNING "i8k: unable to get SMM BIOS version\n");
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700529 } else {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700530 buff[0] = (version >> 16) & 0xff;
531 buff[1] = (version >> 8) & 0xff;
532 buff[2] = (version) & 0xff;
533 buff[3] = '\0';
534 /*
535 * If DMI BIOS version is unknown use SMM BIOS version.
536 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700537 if (!dmi_get_system_info(DMI_BIOS_VERSION))
538 strlcpy(bios_version, buff, sizeof(bios_version));
539
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700540 /*
541 * Check if the two versions match.
542 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700543 if (strncmp(buff, bios_version, sizeof(bios_version)) != 0)
544 printk(KERN_WARNING "i8k: BIOS version mismatch: %s != %s\n",
545 buff, bios_version);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700546 }
547
548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
551#ifdef MODULE
552static
553#endif
554int __init i8k_init(void)
555{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700556 struct proc_dir_entry *proc_i8k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700558 /* Are we running on an supported laptop? */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700559 if (i8k_probe())
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700560 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700562 /* Register the proc entry */
563 proc_i8k = create_proc_info_entry("i8k", 0, NULL, i8k_get_info);
564 if (!proc_i8k) {
565 return -ENOENT;
566 }
567 proc_i8k->proc_fops = &i8k_fops;
568 proc_i8k->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700570 printk(KERN_INFO
571 "Dell laptop SMM driver v%s Massimo Dal Zotto (dz@debian.org)\n",
572 I8K_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
577#ifdef MODULE
578int init_module(void)
579{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700580 return i8k_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
583void cleanup_module(void)
584{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700585 /* Remove the proc entry */
586 remove_proc_entry("i8k", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700588 printk(KERN_INFO "i8k: module unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590#endif
591
592/* end of file */