blob: 1599456bdb6522c3974ebc1248e368b7ba61369d [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 Torokhov352f8f82005-06-25 14:54:26 -070023#include <linux/seq_file.h>
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070024#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/uaccess.h>
26#include <asm/io.h>
27
28#include <linux/i8k.h>
29
Dmitry Torokhov352f8f82005-06-25 14:54:26 -070030#define I8K_VERSION "1.14 21/02/2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#define I8K_SMM_FN_STATUS 0x0025
33#define I8K_SMM_POWER_STATUS 0x0069
34#define I8K_SMM_SET_FAN 0x01a3
35#define I8K_SMM_GET_FAN 0x00a3
36#define I8K_SMM_GET_SPEED 0x02a3
37#define I8K_SMM_GET_TEMP 0x10a3
38#define I8K_SMM_GET_DELL_SIG 0xffa3
39#define I8K_SMM_BIOS_VERSION 0x00a6
40
41#define I8K_FAN_MULT 30
42#define I8K_MAX_TEMP 127
43
44#define I8K_FN_NONE 0x00
45#define I8K_FN_UP 0x01
46#define I8K_FN_DOWN 0x02
47#define I8K_FN_MUTE 0x04
48#define I8K_FN_MASK 0x07
49#define I8K_FN_SHIFT 8
50
51#define I8K_POWER_AC 0x05
52#define I8K_POWER_BATTERY 0x01
53
54#define I8K_TEMPERATURE_BUG 1
55
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070056static char bios_version[4];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)");
59MODULE_DESCRIPTION("Driver for accessing SMM BIOS on Dell laptops");
60MODULE_LICENSE("GPL");
61
62static int force;
63module_param(force, bool, 0);
64MODULE_PARM_DESC(force, "Force loading without checking for supported models");
65
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070066static int ignore_dmi;
67module_param(ignore_dmi, bool, 0);
68MODULE_PARM_DESC(ignore_dmi, "Continue probing hardware even if DMI data does not match");
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static int restricted;
71module_param(restricted, bool, 0);
72MODULE_PARM_DESC(restricted, "Allow fan control if SYS_ADMIN capability set");
73
74static int power_status;
75module_param(power_status, bool, 0600);
76MODULE_PARM_DESC(power_status, "Report power status in /proc/i8k");
77
Dmitry Torokhov352f8f82005-06-25 14:54:26 -070078static int i8k_open_fs(struct inode *inode, struct file *file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static int i8k_ioctl(struct inode *, struct file *, unsigned int,
80 unsigned long);
81
82static struct file_operations i8k_fops = {
Dmitry Torokhov352f8f82005-06-25 14:54:26 -070083 .open = i8k_open_fs,
84 .read = seq_read,
85 .llseek = seq_lseek,
86 .release = single_release,
87 .ioctl = i8k_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
90typedef struct {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -070091 unsigned int eax;
92 unsigned int ebx __attribute__ ((packed));
93 unsigned int ecx __attribute__ ((packed));
94 unsigned int edx __attribute__ ((packed));
95 unsigned int esi __attribute__ ((packed));
96 unsigned int edi __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097} SMMRegisters;
98
Dmitry Torokhove70c9d52005-06-25 14:54:25 -070099static inline char *i8k_get_dmi_data(int field)
100{
101 return dmi_get_system_info(field) ? : "N/A";
102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/*
105 * Call the System Management Mode BIOS. Code provided by Jonathan Buzzard.
106 */
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700107static int i8k_smm(SMMRegisters * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700109 int rc;
110 int eax = regs->eax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700112 asm("pushl %%eax\n\t"
113 "movl 0(%%eax),%%edx\n\t"
114 "push %%edx\n\t"
115 "movl 4(%%eax),%%ebx\n\t"
116 "movl 8(%%eax),%%ecx\n\t"
117 "movl 12(%%eax),%%edx\n\t"
118 "movl 16(%%eax),%%esi\n\t"
119 "movl 20(%%eax),%%edi\n\t"
120 "popl %%eax\n\t"
121 "out %%al,$0xb2\n\t"
122 "out %%al,$0x84\n\t"
123 "xchgl %%eax,(%%esp)\n\t"
124 "movl %%ebx,4(%%eax)\n\t"
125 "movl %%ecx,8(%%eax)\n\t"
126 "movl %%edx,12(%%eax)\n\t"
127 "movl %%esi,16(%%eax)\n\t"
128 "movl %%edi,20(%%eax)\n\t"
129 "popl %%edx\n\t"
130 "movl %%edx,0(%%eax)\n\t"
131 "lahf\n\t"
132 "shrl $8,%%eax\n\t"
133 "andl $1,%%eax\n":"=a"(rc)
134 : "a"(regs)
135 : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700137 if ((rc != 0) || ((regs->eax & 0xffff) == 0xffff) || (regs->eax == eax)) {
138 return -EINVAL;
139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144/*
145 * Read the bios version. Return the version as an integer corresponding
146 * to the ascii value, for example "A17" is returned as 0x00413137.
147 */
148static int i8k_get_bios_version(void)
149{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700150 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
151 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700153 regs.eax = I8K_SMM_BIOS_VERSION;
154 if ((rc = i8k_smm(&regs)) < 0) {
155 return rc;
156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700158 return regs.eax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * Read the Fn key status.
163 */
164static int i8k_get_fn_status(void)
165{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700166 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
167 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700169 regs.eax = I8K_SMM_FN_STATUS;
170 if ((rc = i8k_smm(&regs)) < 0) {
171 return rc;
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700174 switch ((regs.eax >> I8K_FN_SHIFT) & I8K_FN_MASK) {
175 case I8K_FN_UP:
176 return I8K_VOL_UP;
177 case I8K_FN_DOWN:
178 return I8K_VOL_DOWN;
179 case I8K_FN_MUTE:
180 return I8K_VOL_MUTE;
181 default:
182 return 0;
183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/*
187 * Read the power status.
188 */
189static int i8k_get_power_status(void)
190{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700191 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
192 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700194 regs.eax = I8K_SMM_POWER_STATUS;
195 if ((rc = i8k_smm(&regs)) < 0) {
196 return rc;
197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700199 switch (regs.eax & 0xff) {
200 case I8K_POWER_AC:
201 return I8K_AC;
202 default:
203 return I8K_BATTERY;
204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207/*
208 * Read the fan status.
209 */
210static int i8k_get_fan_status(int fan)
211{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700212 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
213 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700215 regs.eax = I8K_SMM_GET_FAN;
216 regs.ebx = fan & 0xff;
217 if ((rc = i8k_smm(&regs)) < 0) {
218 return rc;
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700221 return (regs.eax & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224/*
225 * Read the fan speed in RPM.
226 */
227static int i8k_get_fan_speed(int fan)
228{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700229 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
230 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700232 regs.eax = I8K_SMM_GET_SPEED;
233 regs.ebx = fan & 0xff;
234 if ((rc = i8k_smm(&regs)) < 0) {
235 return rc;
236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700238 return (regs.eax & 0xffff) * I8K_FAN_MULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/*
242 * Set the fan speed (off, low, high). Returns the new fan status.
243 */
244static int i8k_set_fan(int fan, int speed)
245{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700246 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
247 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700249 speed = (speed < 0) ? 0 : ((speed > I8K_FAN_MAX) ? I8K_FAN_MAX : speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700251 regs.eax = I8K_SMM_SET_FAN;
252 regs.ebx = (fan & 0xff) | (speed << 8);
253 if ((rc = i8k_smm(&regs)) < 0) {
254 return rc;
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700257 return (i8k_get_fan_status(fan));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/*
261 * Read the cpu temperature.
262 */
263static int i8k_get_cpu_temp(void)
264{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700265 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
266 int rc;
267 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269#ifdef I8K_TEMPERATURE_BUG
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700270 static int prev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#endif
272
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700273 regs.eax = I8K_SMM_GET_TEMP;
274 if ((rc = i8k_smm(&regs)) < 0) {
275 return rc;
276 }
277 temp = regs.eax & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279#ifdef I8K_TEMPERATURE_BUG
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700280 /*
281 * Sometimes the temperature sensor returns 0x99, which is out of range.
282 * In this case we return (once) the previous cached value. For example:
283 # 1003655137 00000058 00005a4b
284 # 1003655138 00000099 00003a80 <--- 0x99 = 153 degrees
285 # 1003655139 00000054 00005c52
286 */
287 if (temp > I8K_MAX_TEMP) {
288 temp = prev;
289 prev = I8K_MAX_TEMP;
290 } else {
291 prev = temp;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293#endif
294
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700295 return temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298static int i8k_get_dell_signature(void)
299{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700300 SMMRegisters regs = { 0, 0, 0, 0, 0, 0 };
301 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700303 regs.eax = I8K_SMM_GET_DELL_SIG;
304 if ((rc = i8k_smm(&regs)) < 0) {
305 return rc;
306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700308 if ((regs.eax == 1145651527) && (regs.edx == 1145392204)) {
309 return 0;
310 } else {
311 return -1;
312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315static int i8k_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
316 unsigned long arg)
317{
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700318 int val = 0;
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700319 int speed;
320 unsigned char buff[16];
321 int __user *argp = (int __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700323 if (!argp)
324 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700326 switch (cmd) {
327 case I8K_BIOS_VERSION:
328 val = i8k_get_bios_version();
329 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700331 case I8K_MACHINE_ID:
332 memset(buff, 0, 16);
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700333 strlcpy(buff, i8k_get_dmi_data(DMI_PRODUCT_SERIAL), sizeof(buff));
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700334 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700336 case I8K_FN_STATUS:
337 val = i8k_get_fn_status();
338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700340 case I8K_POWER_STATUS:
341 val = i8k_get_power_status();
342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700344 case I8K_GET_TEMP:
345 val = i8k_get_cpu_temp();
346 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700348 case I8K_GET_SPEED:
349 if (copy_from_user(&val, argp, sizeof(int))) {
350 return -EFAULT;
351 }
352 val = i8k_get_fan_speed(val);
353 break;
354
355 case I8K_GET_FAN:
356 if (copy_from_user(&val, argp, sizeof(int))) {
357 return -EFAULT;
358 }
359 val = i8k_get_fan_status(val);
360 break;
361
362 case I8K_SET_FAN:
363 if (restricted && !capable(CAP_SYS_ADMIN)) {
364 return -EPERM;
365 }
366 if (copy_from_user(&val, argp, sizeof(int))) {
367 return -EFAULT;
368 }
369 if (copy_from_user(&speed, argp + 1, sizeof(int))) {
370 return -EFAULT;
371 }
372 val = i8k_set_fan(val, speed);
373 break;
374
375 default:
376 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700379 if (val < 0) {
380 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700383 switch (cmd) {
384 case I8K_BIOS_VERSION:
385 if (copy_to_user(argp, &val, 4)) {
386 return -EFAULT;
387 }
388 break;
389 case I8K_MACHINE_ID:
390 if (copy_to_user(argp, buff, 16)) {
391 return -EFAULT;
392 }
393 break;
394 default:
395 if (copy_to_user(argp, &val, sizeof(int))) {
396 return -EFAULT;
397 }
398 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404/*
405 * Print the information for /proc/i8k.
406 */
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700407static int i8k_proc_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700409 int fn_key, cpu_temp, ac_power;
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700410 int left_fan, right_fan, left_speed, right_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700412 cpu_temp = i8k_get_cpu_temp(); /* 11100 µs */
413 left_fan = i8k_get_fan_status(I8K_FAN_LEFT); /* 580 µs */
414 right_fan = i8k_get_fan_status(I8K_FAN_RIGHT); /* 580 µs */
415 left_speed = i8k_get_fan_speed(I8K_FAN_LEFT); /* 580 µs */
416 right_speed = i8k_get_fan_speed(I8K_FAN_RIGHT); /* 580 µs */
417 fn_key = i8k_get_fn_status(); /* 750 µs */
418 if (power_status) {
419 ac_power = i8k_get_power_status(); /* 14700 µs */
420 } else {
421 ac_power = -1;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700424 /*
425 * Info:
426 *
427 * 1) Format version (this will change if format changes)
428 * 2) BIOS version
429 * 3) BIOS machine ID
430 * 4) Cpu temperature
431 * 5) Left fan status
432 * 6) Right fan status
433 * 7) Left fan speed
434 * 8) Right fan speed
435 * 9) AC power
436 * 10) Fn Key status
437 */
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700438 return seq_printf(seq, "%s %s %s %d %d %d %d %d %d %d\n",
439 I8K_PROC_FMT,
440 bios_version,
441 dmi_get_system_info(DMI_PRODUCT_SERIAL) ? : "N/A",
442 cpu_temp,
443 left_fan, right_fan, left_speed, right_speed,
444 ac_power, fn_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700447static int i8k_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700449 return single_open(file, i8k_proc_show, NULL);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700450}
451
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700452static struct dmi_system_id __initdata i8k_dmi_table[] = {
453 {
454 .ident = "Dell Inspiron",
455 .matches = {
456 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
457 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron"),
458 },
459 },
460 {
461 .ident = "Dell Latitude",
462 .matches = {
463 DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer"),
464 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude"),
465 },
466 },
467 { }
468};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470/*
471 * Probe for the presence of a supported laptop.
472 */
473static int __init i8k_probe(void)
474{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700475 char buff[4];
476 int version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /*
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700479 * Get DMI information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700481 if (!dmi_check_system(i8k_dmi_table)) {
482 if (!ignore_dmi && !force)
483 return -ENODEV;
484
485 printk(KERN_INFO "i8k: not running on a supported Dell system.\n");
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700486 printk(KERN_INFO "i8k: vendor=%s, model=%s, version=%s\n",
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700487 i8k_get_dmi_data(DMI_SYS_VENDOR),
488 i8k_get_dmi_data(DMI_PRODUCT_NAME),
489 i8k_get_dmi_data(DMI_BIOS_VERSION));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700491
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700492 strlcpy(bios_version, i8k_get_dmi_data(DMI_BIOS_VERSION), sizeof(bios_version));
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /*
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700495 * Get SMM Dell signature
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 */
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700497 if (i8k_get_dell_signature() != 0) {
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700498 printk(KERN_ERR "i8k: unable to get SMM Dell signature\n");
499 if (!force)
500 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700503 /*
504 * Get SMM BIOS version.
505 */
506 version = i8k_get_bios_version();
507 if (version <= 0) {
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700508 printk(KERN_WARNING "i8k: unable to get SMM BIOS version\n");
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700509 } else {
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700510 buff[0] = (version >> 16) & 0xff;
511 buff[1] = (version >> 8) & 0xff;
512 buff[2] = (version) & 0xff;
513 buff[3] = '\0';
514 /*
515 * If DMI BIOS version is unknown use SMM BIOS version.
516 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700517 if (!dmi_get_system_info(DMI_BIOS_VERSION))
518 strlcpy(bios_version, buff, sizeof(bios_version));
519
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700520 /*
521 * Check if the two versions match.
522 */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700523 if (strncmp(buff, bios_version, sizeof(bios_version)) != 0)
524 printk(KERN_WARNING "i8k: BIOS version mismatch: %s != %s\n",
525 buff, bios_version);
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700526 }
527
528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531#ifdef MODULE
532static
533#endif
534int __init i8k_init(void)
535{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700536 struct proc_dir_entry *proc_i8k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700538 /* Are we running on an supported laptop? */
Dmitry Torokhove70c9d52005-06-25 14:54:25 -0700539 if (i8k_probe())
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700540 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700542 /* Register the proc entry */
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700543 proc_i8k = create_proc_entry("i8k", 0, NULL);
544 if (!proc_i8k)
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700545 return -ENOENT;
Dmitry Torokhov352f8f82005-06-25 14:54:26 -0700546
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700547 proc_i8k->proc_fops = &i8k_fops;
548 proc_i8k->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700550 printk(KERN_INFO
551 "Dell laptop SMM driver v%s Massimo Dal Zotto (dz@debian.org)\n",
552 I8K_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557#ifdef MODULE
558int init_module(void)
559{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700560 return i8k_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563void cleanup_module(void)
564{
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700565 /* Remove the proc entry */
566 remove_proc_entry("i8k", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Dmitry Torokhovdec63ec2005-06-25 14:54:23 -0700568 printk(KERN_INFO "i8k: module unloaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570#endif
571
572/* end of file */