toshiba.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* toshiba.c -- Linux driver for accessing the SMM on Toshiba laptops
  2.  *
  3.  * Copyright (c) 1996-2001  Jonathan A. Buzzard (jonathan@buzzard.org.uk)
  4.  *
  5.  * Valuable assistance and patches from:
  6.  *     Tom May <tom@you-bastards.com>
  7.  *     Rob Napier <rnapier@employees.org>
  8.  *
  9.  * Fn status port numbers for machine ID's courtesy of
  10.  *     0xfc02: Scott Eisert <scott.e@sky-eye.com>
  11.  *     0xfc04: Steve VanDevender <stevev@efn.org>
  12.  *     0xfc08: Garth Berry <garth@itsbruce.net>
  13.  *     0xfc0a: Egbert Eich <eich@xfree86.org>
  14.  *     0xfc10: Andrew Lofthouse <Andrew.Lofthouse@robins.af.mil>
  15.  *     0xfc11: Spencer Olson <solson@novell.com>
  16.  *     0xfc13: Claudius Frankewitz <kryp@gmx.de>
  17.  *     0xfc15: Tom May <tom@you-bastards.com>
  18.  *     0xfc17: Dave Konrad <konrad@xenia.it>
  19.  *     0xfc1a: George Betzos <betzos@engr.colostate.edu>
  20.  *     0xfc1b: Munemasa Wada <munemasa@jnovel.co.jp>
  21.  *     0xfc1d: Arthur Liu <armie@slap.mine.nu>
  22.  *     0xfc5a: Jacques L'helgoualc'h <lhh@free.fr>
  23.  *     0xfcd1: Mr. Dave Konrad <konrad@xenia.it>
  24.  *
  25.  * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
  26.  *
  27.  *   This code is covered by the GNU GPL and you are free to make any
  28.  *   changes you wish to it under the terms of the license. However the
  29.  *   code has the potential to render your computer and/or someone else's
  30.  *   unusable. Please proceed with care when modifying the code.
  31.  *
  32.  * Note: Unfortunately the laptop hardware can close the System Configuration
  33.  *       Interface on it's own accord. It is therefore necessary for *all*
  34.  *       programs using this driver to be aware that *any* SCI call can fail at
  35.  *       *any* time. It is up to any program to be aware of this eventuality
  36.  *       and take appropriate steps.
  37.  *
  38.  * This program is free software; you can redistribute it and/or modify it
  39.  * under the terms of the GNU General Public License as published by the
  40.  * Free Software Foundation; either version 2, or (at your option) any
  41.  * later version.
  42.  *
  43.  * This program is distributed in the hope that it will be useful, but
  44.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  45.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  46.  * General Public License for more details.
  47.  *
  48.  * The information used to write this driver has been obtained by reverse
  49.  * engineering the software supplied by Toshiba for their portable computers in
  50.  * strict accordance with the European Council Directive 92/250/EEC on the legal
  51.  * protection of computer programs, and it's implementation into English Law by
  52.  * the Copyright (Computer Programs) Regulations 1992 (S.I. 1992 No.3233).
  53.  *
  54.  */
  55. #define TOSH_VERSION "1.11 26/9/2001"
  56. #define TOSH_DEBUG 0
  57. #include <linux/module.h>
  58. #include <linux/version.h>
  59. #include <linux/kernel.h>
  60. #include <linux/sched.h>
  61. #include <linux/types.h>
  62. #include <linux/fcntl.h>
  63. #include <linux/miscdevice.h>
  64. #include <linux/ioport.h>
  65. #include <asm/io.h>
  66. #include <asm/uaccess.h>
  67. #include <linux/init.h>
  68. #include <linux/stat.h>
  69. #include <linux/proc_fs.h>
  70. #include <linux/toshiba.h>
  71. #define TOSH_MINOR_DEV 181
  72. static int tosh_id = 0x0000;
  73. static int tosh_bios = 0x0000;
  74. static int tosh_date = 0x0000;
  75. static int tosh_sci = 0x0000;
  76. static int tosh_fan = 0;
  77. static int tosh_fn = 0;
  78. MODULE_PARM(tosh_fn, "i");
  79. MODULE_LICENSE("GPL");
  80. static int tosh_get_info(char *, char **, off_t, int);
  81. static int tosh_ioctl(struct inode *, struct file *, unsigned int,
  82. unsigned long);
  83. static struct file_operations tosh_fops = {
  84. owner: THIS_MODULE,
  85. ioctl: tosh_ioctl,
  86. };
  87. static struct miscdevice tosh_device = {
  88. TOSH_MINOR_DEV,
  89. "toshiba",
  90. &tosh_fops
  91. };
  92. /*
  93.  * Read the Fn key status
  94.  */
  95. static int tosh_fn_status(void)
  96. {
  97.         unsigned char scan;
  98. unsigned long flags;
  99. if (tosh_fn!=0) {
  100. scan = inb(tosh_fn);
  101. } else {
  102. save_flags(flags);
  103. cli();
  104. outb(0x8e, 0xe4);
  105. scan = inb(0xe5);
  106. restore_flags(flags);
  107. }
  108.         return (int) scan;
  109. }
  110. /*
  111.  * For the Portage 610CT and the Tecra 700CS/700CDT emulate the HCI fan function
  112.  */
  113. static int tosh_emulate_fan(SMMRegisters *regs)
  114. {
  115. unsigned long eax,ecx,flags;
  116. unsigned char al;
  117. eax = regs->eax & 0xff00;
  118. ecx = regs->ecx & 0xffff;
  119. /* Portage 610CT */
  120. if (tosh_id==0xfccb) {
  121. if (eax==0xfe00) {
  122. /* fan status */
  123. save_flags(flags);
  124. cli();
  125. outb(0xbe, 0xe4);
  126. al = inb(0xe5);
  127. restore_flags(flags);
  128. regs->eax = 0x00;
  129. regs->ecx = (unsigned int) (al & 0x01);
  130. }
  131. if ((eax==0xff00) && (ecx==0x0000)) {
  132. /* fan off */
  133. save_flags(flags);
  134. cli();
  135. outb(0xbe, 0xe4);
  136. al = inb(0xe5);
  137. outb(0xbe, 0xe4);
  138. outb (al | 0x01, 0xe5);
  139. restore_flags(flags);
  140. regs->eax = 0x00;
  141. regs->ecx = 0x00;
  142. }
  143. if ((eax==0xff00) && (ecx==0x0001)) {
  144. /* fan on */
  145. save_flags(flags);
  146. cli();
  147. outb(0xbe, 0xe4);
  148. al = inb(0xe5);
  149. outb(0xbe, 0xe4);
  150. outb(al & 0xfe, 0xe5);
  151. restore_flags(flags);
  152. regs->eax = 0x00;
  153. regs->ecx = 0x01;
  154. }
  155. }
  156. /* Tecra 700CS/CDT */
  157. if (tosh_id==0xfccc) {
  158. if (eax==0xfe00) {
  159. /* fan status */
  160. save_flags(flags);
  161. cli();
  162. outb(0xe0, 0xe4);
  163. al = inb(0xe5);
  164. restore_flags(flags);
  165. regs->eax = 0x00;
  166. regs->ecx = al & 0x01;
  167. }
  168. if ((eax==0xff00) && (ecx==0x0000)) {
  169. /* fan off */
  170. save_flags(flags);
  171. cli();
  172. outb(0xe0, 0xe4);
  173. al = inb(0xe5);
  174. outw(0xe0 | ((al & 0xfe) << 8), 0xe4);
  175. restore_flags(flags);
  176. regs->eax = 0x00;
  177. regs->ecx = 0x00;
  178. }
  179. if ((eax==0xff00) && (ecx==0x0001)) {
  180. /* fan on */
  181. save_flags(flags);
  182. cli();
  183. outb(0xe0, 0xe4);
  184. al = inb(0xe5);
  185. outw(0xe0 | ((al | 0x01) << 8), 0xe4);
  186. restore_flags(flags);
  187. regs->eax = 0x00;
  188. regs->ecx = 0x01;
  189. }
  190. }
  191. return 0;
  192. }
  193. /*
  194.  * Put the laptop into System Management Mode
  195.  */
  196. static int tosh_smm(SMMRegisters *regs)
  197. {
  198. int eax;
  199. asm ("# load the values into the registersnt" 
  200. "pushl %%eaxnt" 
  201. "movl 0(%%eax),%%edxnt" 
  202. "push %%edxnt" 
  203. "movl 4(%%eax),%%ebxnt" 
  204. "movl 8(%%eax),%%ecxnt" 
  205. "movl 12(%%eax),%%edxnt" 
  206. "movl 16(%%eax),%%esint" 
  207. "movl 20(%%eax),%%edint" 
  208. "popl %%eaxnt" 
  209. "# call the System Management modent" 
  210. "inb $0xb2,%%alnt"
  211. "# fill out the memory with the values in the registersnt" 
  212. "xchgl %%eax,(%%esp)nt"
  213. "movl %%ebx,4(%%eax)nt" 
  214. "movl %%ecx,8(%%eax)nt" 
  215. "movl %%edx,12(%%eax)nt" 
  216. "movl %%esi,16(%%eax)nt" 
  217. "movl %%edi,20(%%eax)nt" 
  218. "popl %%edxnt" 
  219. "movl %%edx,0(%%eax)nt" 
  220. "# setup the return value to the carry flagnt" 
  221. "lahfnt" 
  222. "shrl $8,%%eaxnt" 
  223. "andl $1,%%eaxn" 
  224. : "=a" (eax)
  225. : "a" (regs)
  226. : "%ebx", "%ecx", "%edx", "%esi", "%edi", "memory");
  227. return eax;
  228. }
  229. static int tosh_ioctl(struct inode *ip, struct file *fp, unsigned int cmd,
  230. unsigned long arg)
  231. {
  232. SMMRegisters regs;
  233. unsigned short ax,bx;
  234. int err;
  235. if (!arg)
  236. return -EINVAL;
  237. if (copy_from_user(&regs, (SMMRegisters *) arg, sizeof(SMMRegisters)))
  238. return -EFAULT;
  239. switch (cmd) {
  240. case TOSH_SMM:
  241. ax = regs.eax & 0xff00;
  242. bx = regs.ebx & 0xffff;
  243. /* block HCI calls to read/write memory & PCI devices */
  244. if (((ax==0xff00) || (ax==0xfe00)) && (bx>0x0069))
  245. return -EINVAL;
  246. /* do we need to emulate the fan ? */
  247. if (tosh_fan==1) {
  248. if (((ax==0xf300) || (ax==0xf400)) && (bx==0x0004)) {
  249. err = tosh_emulate_fan(&regs);
  250. break;
  251. }
  252. }
  253. err = tosh_smm(&regs);
  254. break;
  255. default:
  256. return -EINVAL;
  257. }
  258.         if (copy_to_user((SMMRegisters *) arg, &regs, sizeof(SMMRegisters)))
  259.          return -EFAULT;
  260. return (err==0) ? 0:-EINVAL;
  261. }
  262. /*
  263.  * Print the information for /proc/toshiba
  264.  */
  265. int tosh_get_info(char *buffer, char **start, off_t fpos, int length)
  266. {
  267. char *temp;
  268. int key;
  269. temp = buffer;
  270. key = tosh_fn_status();
  271. /* Arguments
  272.      0) Linux driver version (this will change if format changes)
  273.      1) Machine ID
  274.      2) SCI version
  275.      3) BIOS version (major, minor)
  276.      4) BIOS date (in SCI date format)
  277.      5) Fn Key status
  278. */
  279. temp += sprintf(temp, "1.1 0x%04x %d.%d %d.%d 0x%04x 0x%02xn",
  280. tosh_id,
  281. (tosh_sci & 0xff00)>>8,
  282. tosh_sci & 0xff,
  283. (tosh_bios & 0xff00)>>8,
  284. tosh_bios & 0xff,
  285. tosh_date,
  286. key);
  287. return temp-buffer;
  288. }
  289. /*
  290.  * Determine which port to use for the Fn key status
  291.  */
  292. static void tosh_set_fn_port(void)
  293. {
  294. switch (tosh_id) {
  295. case 0xfc02: case 0xfc04: case 0xfc09: case 0xfc0a: case 0xfc10:
  296. case 0xfc11: case 0xfc13: case 0xfc15: case 0xfc1a: case 0xfc1b:
  297. case 0xfc5a:
  298. tosh_fn = 0x62;
  299. break;
  300. case 0xfc08: case 0xfc17: case 0xfc1d: case 0xfcd1: case 0xfce0:
  301. case 0xfce2:
  302. tosh_fn = 0x68;
  303. break;
  304. default:
  305. tosh_fn = 0x00;
  306. break;
  307. }
  308. return;
  309. }
  310. /*
  311.  * Get the machine identification number of the current model
  312.  */
  313. static int tosh_get_machine_id(void)
  314. {
  315. int id;
  316. SMMRegisters regs;
  317. unsigned short bx,cx;
  318. unsigned long address;
  319. id = (0x100*(int) isa_readb(0xffffe))+((int) isa_readb(0xffffa));
  320. /* do we have a SCTTable machine identication number on our hands */
  321. if (id==0xfc2f) {
  322. /* start by getting a pointer into the BIOS */
  323. regs.eax = 0xc000;
  324. regs.ebx = 0x0000;
  325. regs.ecx = 0x0000;
  326. tosh_smm(&regs);
  327. bx = (unsigned short) (regs.ebx & 0xffff);
  328. /* At this point in the Toshiba routines under MS Windows
  329.    the bx register holds 0xe6f5. However my code is producing
  330.    a different value! For the time being I will just fudge the
  331.    value. This has been verified on a Satellite Pro 430CDT,
  332.    Tecra 750CDT, Tecra 780DVD and Satellite 310CDT. */
  333. #if TOSH_DEBUG
  334. printk("toshiba: debugging ID ebx=0x%04xn", regs.ebx);
  335. #endif
  336. bx = 0xe6f5;
  337. /* now twiddle with our pointer a bit */
  338. address = 0x000f0000+bx;
  339. cx = isa_readw(address);
  340. address = 0x000f0009+bx+cx;
  341. cx = isa_readw(address);
  342. address = 0x000f000a+cx;
  343. cx = isa_readw(address);
  344. /* now construct our machine identification number */
  345. id = ((cx & 0xff)<<8)+((cx & 0xff00)>>8);
  346. }
  347. return id;
  348. }
  349. /*
  350.  * Probe for the presence of a Toshiba laptop
  351.  *
  352.  *   returns and non-zero if unable to detect the presence of a Toshiba
  353.  *   laptop, otherwise zero and determines the Machine ID, BIOS version and
  354.  *   date, and SCI version.
  355.  */
  356. int tosh_probe(void)
  357. {
  358. int i,major,minor,day,year,month,flag;
  359. unsigned char signature[7] = { 0x54,0x4f,0x53,0x48,0x49,0x42,0x41 };
  360. SMMRegisters regs;
  361. /* extra sanity check for the string "TOSHIBA" in the BIOS because
  362.    some machines that are not Toshiba's pass the next test */
  363. for (i=0;i<7;i++) {
  364. if (isa_readb(0xfe010+i)!=signature[i]) {
  365. printk("toshiba: not a supported Toshiba laptopn");
  366. return -ENODEV;
  367. }
  368. }
  369. /* call the Toshiba SCI support check routine */
  370. regs.eax = 0xf0f0;
  371. regs.ebx = 0x0000;
  372. regs.ecx = 0x0000;
  373. flag = tosh_smm(&regs);
  374. /* if this is not a Toshiba laptop carry flag is set and ah=0x86 */
  375. if ((flag==1) || ((regs.eax & 0xff00)==0x8600)) {
  376. printk("toshiba: not a supported Toshiba laptopn");
  377. return -ENODEV;
  378. }
  379. /* if we get this far then we are running on a Toshiba (probably)! */
  380. tosh_sci = regs.edx & 0xffff;
  381. /* next get the machine ID of the current laptop */
  382. tosh_id = tosh_get_machine_id();
  383. /* get the BIOS version */
  384. major = isa_readb(0xfe009)-'0';
  385. minor = ((isa_readb(0xfe00b)-'0')*10)+(isa_readb(0xfe00c)-'0');
  386. tosh_bios = (major*0x100)+minor;
  387. /* get the BIOS date */
  388. day = ((isa_readb(0xffff5)-'0')*10)+(isa_readb(0xffff6)-'0');
  389. month = ((isa_readb(0xffff8)-'0')*10)+(isa_readb(0xffff9)-'0');
  390. year = ((isa_readb(0xffffb)-'0')*10)+(isa_readb(0xffffc)-'0');
  391. tosh_date = (((year-90) & 0x1f)<<10) | ((month & 0xf)<<6)
  392. | ((day & 0x1f)<<1);
  393. /* in theory we should check the ports we are going to use for the
  394.    fn key detection (and the fan on the Portage 610/Tecra700), and
  395.    then request them to stop other drivers using them. However as
  396.    the keyboard driver grabs 0x60-0x6f and the pic driver grabs
  397.    0xa0-0xbf we can't. We just have to live dangerously and use the
  398.    ports anyway, oh boy! */
  399. /* do we need to emulate the fan? */
  400. if ((tosh_id==0xfccb) || (tosh_id==0xfccc))
  401. tosh_fan = 1;
  402. return 0;
  403. }
  404. int __init tosh_init(void)
  405. {
  406. /* are we running on a Toshiba laptop */
  407. if (tosh_probe()!=0)
  408. return -EIO;
  409. printk(KERN_INFO "Toshiba System Managment Mode driver v"
  410. TOSH_VERSION"n");
  411. /* set the port to use for Fn status if not specified as a parameter */
  412. if (tosh_fn==0x00)
  413. tosh_set_fn_port();
  414. /* register the device file */
  415. misc_register(&tosh_device);
  416. /* register the proc entry */
  417. create_proc_info_entry("toshiba", 0, NULL, tosh_get_info);
  418. return 0;
  419. }
  420. #ifdef MODULE
  421. int init_module(void)
  422. {
  423. return tosh_init();
  424. }
  425. void cleanup_module(void)
  426. {
  427. /* remove the proc entry */
  428. remove_proc_entry("toshiba", NULL);
  429. /* unregister the device file */
  430. misc_deregister(&tosh_device);
  431. }
  432. #endif