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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/char/pc_keyb.c
  3.  *
  4.  * Separation of the PC low-level part by Geert Uytterhoeven, May 1997
  5.  * See keyboard.c for the whole history.
  6.  *
  7.  * Major cleanup by Martin Mares, May 1997
  8.  *
  9.  * Combined the keyboard and PS/2 mouse handling into one file,
  10.  * because they share the same hardware.
  11.  * Johan Myreen <jem@iki.fi> 1998-10-08.
  12.  *
  13.  * Code fixes to handle mouse ACKs properly.
  14.  * C. Scott Ananian <cananian@alumni.princeton.edu> 1999-01-29.
  15.  *
  16.  */
  17. #include <linux/config.h>
  18. #include <linux/spinlock.h>
  19. #include <linux/sched.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/tty.h>
  22. #include <linux/mm.h>
  23. #include <linux/signal.h>
  24. #include <linux/init.h>
  25. #include <linux/kbd_ll.h>
  26. #include <linux/delay.h>
  27. #include <linux/random.h>
  28. #include <linux/poll.h>
  29. #include <linux/miscdevice.h>
  30. #include <linux/slab.h>
  31. #include <linux/kbd_kern.h>
  32. #include <linux/vt_kern.h>
  33. #include <linux/smp_lock.h>
  34. #include <linux/kd.h>
  35. #include <linux/pm.h>
  36. #include <asm/keyboard.h>
  37. #include <asm/bitops.h>
  38. #include <asm/uaccess.h>
  39. #include <asm/irq.h>
  40. #include <asm/system.h>
  41. #include <asm/io.h>
  42. /* Some configuration switches are present in the include file... */
  43. #include <linux/pc_keyb.h>
  44. /* Simple translation table for the SysRq keys */
  45. #ifdef CONFIG_MAGIC_SYSRQ
  46. unsigned char pckbd_sysrq_xlate[128] =
  47. "00331234567890-=177t" /* 0x00 - 0x0f */
  48. "qwertyuiop[]r00as" /* 0x10 - 0x1f */
  49. "dfghjkl;'`00\zxcv" /* 0x20 - 0x2f */
  50. "bnm,./00*00 00201202203204205" /* 0x30 - 0x3f */
  51. "2062072102112120000789-456+1" /* 0x40 - 0x4f */
  52. "230177000021321400000000000000000000" /* 0x50 - 0x5f */
  53. "r00/"; /* 0x60 - 0x6f */
  54. #endif
  55. static void kbd_write_command_w(int data);
  56. static void kbd_write_output_w(int data);
  57. #ifdef CONFIG_PSMOUSE
  58. static void aux_write_ack(int val);
  59. static void __aux_write_ack(int val);
  60. static int aux_reconnect = 0;
  61. #endif
  62. static spinlock_t kbd_controller_lock = SPIN_LOCK_UNLOCKED;
  63. static unsigned char handle_kbd_event(void);
  64. /* used only by send_data - set by keyboard_interrupt */
  65. static volatile unsigned char reply_expected;
  66. static volatile unsigned char acknowledge;
  67. static volatile unsigned char resend;
  68. #if defined CONFIG_PSMOUSE
  69. /*
  70.  * PS/2 Auxiliary Device
  71.  */
  72. static int __init psaux_init(void);
  73. #define AUX_RECONNECT1 0xaa /* scancode1 when ps2 device is plugged (back) in */
  74. #define AUX_RECONNECT2 0x00 /* scancode2 when ps2 device is plugged (back) in */
  75.  
  76. static struct aux_queue *queue; /* Mouse data buffer. */
  77. static int aux_count;
  78. /* used when we send commands to the mouse that expect an ACK. */
  79. static unsigned char mouse_reply_expected;
  80. #define AUX_INTS_OFF (KBD_MODE_KCC | KBD_MODE_DISABLE_MOUSE | KBD_MODE_SYS | KBD_MODE_KBD_INT)
  81. #define AUX_INTS_ON  (KBD_MODE_KCC | KBD_MODE_SYS | KBD_MODE_MOUSE_INT | KBD_MODE_KBD_INT)
  82. #define MAX_RETRIES 60 /* some aux operations take long time*/
  83. #endif /* CONFIG_PSMOUSE */
  84. /*
  85.  * Wait for keyboard controller input buffer to drain.
  86.  *
  87.  * Don't use 'jiffies' so that we don't depend on
  88.  * interrupts..
  89.  *
  90.  * Quote from PS/2 System Reference Manual:
  91.  *
  92.  * "Address hex 0060 and address hex 0064 should be written only when
  93.  * the input-buffer-full bit and output-buffer-full bit in the
  94.  * Controller Status register are set 0."
  95.  */
  96. static void kb_wait(void)
  97. {
  98. unsigned long timeout = KBC_TIMEOUT;
  99. do {
  100. /*
  101.  * "handle_kbd_event()" will handle any incoming events
  102.  * while we wait - keypresses or mouse movement.
  103.  */
  104. unsigned char status = handle_kbd_event();
  105. if (! (status & KBD_STAT_IBF))
  106. return;
  107. mdelay(1);
  108. timeout--;
  109. } while (timeout);
  110. #ifdef KBD_REPORT_TIMEOUTS
  111. printk(KERN_WARNING "Keyboard timed out[1]n");
  112. #endif
  113. }
  114. /*
  115.  * Translation of escaped scancodes to keycodes.
  116.  * This is now user-settable.
  117.  * The keycodes 1-88,96-111,119 are fairly standard, and
  118.  * should probably not be changed - changing might confuse X.
  119.  * X also interprets scancode 0x5d (KEY_Begin).
  120.  *
  121.  * For 1-88 keycode equals scancode.
  122.  */
  123. #define E0_KPENTER 96
  124. #define E0_RCTRL   97
  125. #define E0_KPSLASH 98
  126. #define E0_PRSCR   99
  127. #define E0_RALT    100
  128. #define E0_BREAK   101  /* (control-pause) */
  129. #define E0_HOME    102
  130. #define E0_UP      103
  131. #define E0_PGUP    104
  132. #define E0_LEFT    105
  133. #define E0_RIGHT   106
  134. #define E0_END     107
  135. #define E0_DOWN    108
  136. #define E0_PGDN    109
  137. #define E0_INS     110
  138. #define E0_DEL     111
  139. #define E1_PAUSE   119
  140. /*
  141.  * The keycodes below are randomly located in 89-95,112-118,120-127.
  142.  * They could be thrown away (and all occurrences below replaced by 0),
  143.  * but that would force many users to use the `setkeycodes' utility, where
  144.  * they needed not before. It does not matter that there are duplicates, as
  145.  * long as no duplication occurs for any single keyboard.
  146.  */
  147. #define SC_LIM 89
  148. #define FOCUS_PF1 85           /* actual code! */
  149. #define FOCUS_PF2 89
  150. #define FOCUS_PF3 90
  151. #define FOCUS_PF4 91
  152. #define FOCUS_PF5 92
  153. #define FOCUS_PF6 93
  154. #define FOCUS_PF7 94
  155. #define FOCUS_PF8 95
  156. #define FOCUS_PF9 120
  157. #define FOCUS_PF10 121
  158. #define FOCUS_PF11 122
  159. #define FOCUS_PF12 123
  160. #define JAP_86     124
  161. /* tfj@olivia.ping.dk:
  162.  * The four keys are located over the numeric keypad, and are
  163.  * labelled A1-A4. It's an rc930 keyboard, from
  164.  * Regnecentralen/RC International, Now ICL.
  165.  * Scancodes: 59, 5a, 5b, 5c.
  166.  */
  167. #define RGN1 124
  168. #define RGN2 125
  169. #define RGN3 126
  170. #define RGN4 127
  171. static unsigned char high_keys[128 - SC_LIM] = {
  172.   RGN1, RGN2, RGN3, RGN4, 0, 0, 0,                   /* 0x59-0x5f */
  173.   0, 0, 0, 0, 0, 0, 0, 0,                            /* 0x60-0x67 */
  174.   0, 0, 0, 0, 0, FOCUS_PF11, 0, FOCUS_PF12,          /* 0x68-0x6f */
  175.   0, 0, 0, FOCUS_PF2, FOCUS_PF9, 0, 0, FOCUS_PF3,    /* 0x70-0x77 */
  176.   FOCUS_PF4, FOCUS_PF5, FOCUS_PF6, FOCUS_PF7,        /* 0x78-0x7b */
  177.   FOCUS_PF8, JAP_86, FOCUS_PF10, 0                   /* 0x7c-0x7f */
  178. };
  179. /* BTC */
  180. #define E0_MACRO   112
  181. /* LK450 */
  182. #define E0_F13     113
  183. #define E0_F14     114
  184. #define E0_HELP    115
  185. #define E0_DO      116
  186. #define E0_F17     117
  187. #define E0_KPMINPLUS 118
  188. /*
  189.  * My OmniKey generates e0 4c for  the "OMNI" key and the
  190.  * right alt key does nada. [kkoller@nyx10.cs.du.edu]
  191.  */
  192. #define E0_OK 124
  193. /*
  194.  * New microsoft keyboard is rumoured to have
  195.  * e0 5b (left window button), e0 5c (right window button),
  196.  * e0 5d (menu button). [or: LBANNER, RBANNER, RMENU]
  197.  * [or: Windows_L, Windows_R, TaskMan]
  198.  */
  199. #define E0_MSLW 125
  200. #define E0_MSRW 126
  201. #define E0_MSTM 127
  202. static unsigned char e0_keys[128] = {
  203.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x00-0x07 */
  204.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x08-0x0f */
  205.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x10-0x17 */
  206.   0, 0, 0, 0, E0_KPENTER, E0_RCTRL, 0, 0,       /* 0x18-0x1f */
  207.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x20-0x27 */
  208.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x28-0x2f */
  209.   0, 0, 0, 0, 0, E0_KPSLASH, 0, E0_PRSCR,       /* 0x30-0x37 */
  210.   E0_RALT, 0, 0, 0, 0, E0_F13, E0_F14, E0_HELP,       /* 0x38-0x3f */
  211.   E0_DO, E0_F17, 0, 0, 0, 0, E0_BREAK, E0_HOME,       /* 0x40-0x47 */
  212.   E0_UP, E0_PGUP, 0, E0_LEFT, E0_OK, E0_RIGHT, E0_KPMINPLUS, E0_END,/* 0x48-0x4f */
  213.   E0_DOWN, E0_PGDN, E0_INS, E0_DEL, 0, 0, 0, 0,       /* 0x50-0x57 */
  214.   0, 0, 0, E0_MSLW, E0_MSRW, E0_MSTM, 0, 0,       /* 0x58-0x5f */
  215.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x60-0x67 */
  216.   0, 0, 0, 0, 0, 0, 0, E0_MACRO,       /* 0x68-0x6f */
  217.   0, 0, 0, 0, 0, 0, 0, 0,       /* 0x70-0x77 */
  218.   0, 0, 0, 0, 0, 0, 0, 0       /* 0x78-0x7f */
  219. };
  220. int pckbd_setkeycode(unsigned int scancode, unsigned int keycode)
  221. {
  222. if (scancode < SC_LIM || scancode > 255 || keycode > 127)
  223.   return -EINVAL;
  224. if (scancode < 128)
  225.   high_keys[scancode - SC_LIM] = keycode;
  226. else
  227.   e0_keys[scancode - 128] = keycode;
  228. return 0;
  229. }
  230. int pckbd_getkeycode(unsigned int scancode)
  231. {
  232. return
  233.   (scancode < SC_LIM || scancode > 255) ? -EINVAL :
  234.   (scancode < 128) ? high_keys[scancode - SC_LIM] :
  235.     e0_keys[scancode - 128];
  236. }
  237. static int do_acknowledge(unsigned char scancode)
  238. {
  239. if (reply_expected) {
  240.   /* Unfortunately, we must recognise these codes only if we know they
  241.    * are known to be valid (i.e., after sending a command), because there
  242.    * are some brain-damaged keyboards (yes, FOCUS 9000 again) which have
  243.    * keys with such codes :(
  244.    */
  245. if (scancode == KBD_REPLY_ACK) {
  246. acknowledge = 1;
  247. reply_expected = 0;
  248. return 0;
  249. } else if (scancode == KBD_REPLY_RESEND) {
  250. resend = 1;
  251. reply_expected = 0;
  252. return 0;
  253. }
  254. /* Should not happen... */
  255. #if 0
  256. printk(KERN_DEBUG "keyboard reply expected - got %02xn",
  257.        scancode);
  258. #endif
  259. }
  260. return 1;
  261. }
  262. int pckbd_translate(unsigned char scancode, unsigned char *keycode,
  263.     char raw_mode)
  264. {
  265. static int prev_scancode;
  266. /* special prefix scancodes.. */
  267. if (scancode == 0xe0 || scancode == 0xe1) {
  268. prev_scancode = scancode;
  269. return 0;
  270. }
  271. /* 0xFF is sent by a few keyboards, ignore it. 0x00 is error */
  272. if (scancode == 0x00 || scancode == 0xff) {
  273. prev_scancode = 0;
  274. return 0;
  275. }
  276. scancode &= 0x7f;
  277. if (prev_scancode) {
  278.   /*
  279.    * usually it will be 0xe0, but a Pause key generates
  280.    * e1 1d 45 e1 9d c5 when pressed, and nothing when released
  281.    */
  282.   if (prev_scancode != 0xe0) {
  283.       if (prev_scancode == 0xe1 && scancode == 0x1d) {
  284.   prev_scancode = 0x100;
  285.   return 0;
  286.       } else if (prev_scancode == 0x100 && scancode == 0x45) {
  287.   *keycode = E1_PAUSE;
  288.   prev_scancode = 0;
  289.       } else {
  290. #ifdef KBD_REPORT_UNKN
  291.   if (!raw_mode)
  292.     printk(KERN_INFO "keyboard: unknown e1 escape sequencen");
  293. #endif
  294.   prev_scancode = 0;
  295.   return 0;
  296.       }
  297.   } else {
  298.       prev_scancode = 0;
  299.       /*
  300.        *  The keyboard maintains its own internal caps lock and
  301.        *  num lock statuses. In caps lock mode E0 AA precedes make
  302.        *  code and E0 2A follows break code. In num lock mode,
  303.        *  E0 2A precedes make code and E0 AA follows break code.
  304.        *  We do our own book-keeping, so we will just ignore these.
  305.        */
  306.       /*
  307.        *  For my keyboard there is no caps lock mode, but there are
  308.        *  both Shift-L and Shift-R modes. The former mode generates
  309.        *  E0 2A / E0 AA pairs, the latter E0 B6 / E0 36 pairs.
  310.        *  So, we should also ignore the latter. - aeb@cwi.nl
  311.        */
  312.       if (scancode == 0x2a || scancode == 0x36)
  313. return 0;
  314.       if (e0_keys[scancode])
  315. *keycode = e0_keys[scancode];
  316.       else {
  317. #ifdef KBD_REPORT_UNKN
  318.   if (!raw_mode)
  319.     printk(KERN_INFO "keyboard: unknown scancode e0 %02xn",
  320.    scancode);
  321. #endif
  322.   return 0;
  323.       }
  324.   }
  325. } else if (scancode >= SC_LIM) {
  326.     /* This happens with the FOCUS 9000 keyboard
  327.        Its keys PF1..PF12 are reported to generate
  328.        55 73 77 78 79 7a 7b 7c 74 7e 6d 6f
  329.        Moreover, unless repeated, they do not generate
  330.        key-down events, so we have to zero up_flag below */
  331.     /* Also, Japanese 86/106 keyboards are reported to
  332.        generate 0x73 and 0x7d for  - and  | respectively. */
  333.     /* Also, some Brazilian keyboard is reported to produce
  334.        0x73 and 0x7e for  ? and KP-dot, respectively. */
  335.   *keycode = high_keys[scancode - SC_LIM];
  336.   if (!*keycode) {
  337.       if (!raw_mode) {
  338. #ifdef KBD_REPORT_UNKN
  339.   printk(KERN_INFO "keyboard: unrecognized scancode (%02x)"
  340.  " - ignoredn", scancode);
  341. #endif
  342.       }
  343.       return 0;
  344.   }
  345.   } else
  346.   *keycode = scancode;
  347.   return 1;
  348. }
  349. char pckbd_unexpected_up(unsigned char keycode)
  350. {
  351. /* unexpected, but this can happen: maybe this was a key release for a
  352.    FOCUS 9000 PF key; if we want to see it, we have to clear up_flag */
  353. if (keycode >= SC_LIM || keycode == 85)
  354.     return 0;
  355. else
  356.     return 0200;
  357. }
  358. int pckbd_pm_resume(struct pm_dev *dev, pm_request_t rqst, void *data) 
  359. {
  360. #if defined CONFIG_PSMOUSE
  361.        unsigned long flags;
  362.        if (rqst == PM_RESUME) {
  363.                if (queue) {                    /* Aux port detected */
  364.                        if (aux_count == 0) {   /* Mouse not in use */ 
  365.                                spin_lock_irqsave(&kbd_controller_lock, flags);
  366.        /*
  367. * Dell Lat. C600 A06 enables mouse after resume.
  368. * When user touches the pad, it posts IRQ 12
  369. * (which we do not process), thus holding keyboard.
  370. */
  371.        kbd_write_command(KBD_CCMD_MOUSE_DISABLE);
  372.        /* kbd_write_cmd(AUX_INTS_OFF); */ /* Config & lock */
  373.        kb_wait();
  374.        kbd_write_command(KBD_CCMD_WRITE_MODE);
  375.        kb_wait();
  376.        kbd_write_output(AUX_INTS_OFF);
  377.        spin_unlock_irqrestore(&kbd_controller_lock, flags);
  378.        }
  379.        }
  380.        }
  381. #endif
  382.        return 0;
  383. }
  384. static inline void handle_mouse_event(unsigned char scancode)
  385. {
  386. #ifdef CONFIG_PSMOUSE
  387. static unsigned char prev_code;
  388. if (mouse_reply_expected) {
  389. if (scancode == AUX_ACK) {
  390. mouse_reply_expected--;
  391. return;
  392. }
  393. mouse_reply_expected = 0;
  394. }
  395. else if(scancode == AUX_RECONNECT2 && prev_code == AUX_RECONNECT1
  396. && aux_reconnect) {
  397. printk (KERN_INFO "PS/2 mouse reconnect detectedn");
  398. queue->head = queue->tail = 0; /* Flush input queue */
  399. __aux_write_ack(AUX_ENABLE_DEV);  /* ping the mouse :) */
  400. return;
  401. }
  402. prev_code = scancode;
  403. add_mouse_randomness(scancode);
  404. if (aux_count) {
  405. int head = queue->head;
  406. queue->buf[head] = scancode;
  407. head = (head + 1) & (AUX_BUF_SIZE-1);
  408. if (head != queue->tail) {
  409. queue->head = head;
  410. kill_fasync(&queue->fasync, SIGIO, POLL_IN);
  411. wake_up_interruptible(&queue->proc_list);
  412. }
  413. }
  414. #endif
  415. }
  416. static unsigned char kbd_exists = 1;
  417. static inline void handle_keyboard_event(unsigned char scancode)
  418. {
  419. #ifdef CONFIG_VT
  420. kbd_exists = 1;
  421. if (do_acknowledge(scancode))
  422. handle_scancode(scancode, !(scancode & 0x80));
  423. #endif
  424. tasklet_schedule(&keyboard_tasklet);
  425. }
  426. /*
  427.  * This reads the keyboard status port, and does the
  428.  * appropriate action.
  429.  *
  430.  * It requires that we hold the keyboard controller
  431.  * spinlock.
  432.  */
  433. static unsigned char handle_kbd_event(void)
  434. {
  435. unsigned char status = kbd_read_status();
  436. unsigned int work = 10000;
  437. while ((--work > 0) && (status & KBD_STAT_OBF)) {
  438. unsigned char scancode;
  439. scancode = kbd_read_input();
  440. /* Error bytes must be ignored to make the 
  441.    Synaptics touchpads compaq use work */
  442. #if 1
  443. /* Ignore error bytes */
  444. if (!(status & (KBD_STAT_GTO | KBD_STAT_PERR)))
  445. #endif
  446. {
  447. if (status & KBD_STAT_MOUSE_OBF)
  448. handle_mouse_event(scancode);
  449. else
  450. handle_keyboard_event(scancode);
  451. }
  452. status = kbd_read_status();
  453. }
  454. if (!work)
  455. printk(KERN_ERR "pc_keyb: controller jammed (0x%02X).n", status);
  456. return status;
  457. }
  458. static void keyboard_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  459. {
  460. #ifdef CONFIG_VT
  461. kbd_pt_regs = regs;
  462. #endif
  463. spin_lock_irq(&kbd_controller_lock);
  464. handle_kbd_event();
  465. spin_unlock_irq(&kbd_controller_lock);
  466. }
  467. /*
  468.  * send_data sends a character to the keyboard and waits
  469.  * for an acknowledge, possibly retrying if asked to. Returns
  470.  * the success status.
  471.  *
  472.  * Don't use 'jiffies', so that we don't depend on interrupts
  473.  */
  474. static int send_data(unsigned char data)
  475. {
  476. int retries = 3;
  477. do {
  478. unsigned long timeout = KBD_TIMEOUT;
  479. acknowledge = 0; /* Set by interrupt routine on receipt of ACK. */
  480. resend = 0;
  481. reply_expected = 1;
  482. kbd_write_output_w(data);
  483. for (;;) {
  484. if (acknowledge)
  485. return 1;
  486. if (resend)
  487. break;
  488. mdelay(1);
  489. if (!--timeout) {
  490. #ifdef KBD_REPORT_TIMEOUTS
  491. printk(KERN_WARNING "keyboard: Timeout - AT keyboard not present?(%02x)n", data);
  492. #endif
  493. return 0;
  494. }
  495. }
  496. } while (retries-- > 0);
  497. #ifdef KBD_REPORT_TIMEOUTS
  498. printk(KERN_WARNING "keyboard: Too many NACKs -- noisy kbd cable?n");
  499. #endif
  500. return 0;
  501. }
  502. void pckbd_leds(unsigned char leds)
  503. {
  504. if (kbd_exists && (!send_data(KBD_CMD_SET_LEDS) || !send_data(leds))) {
  505. send_data(KBD_CMD_ENABLE); /* re-enable kbd if any errors */
  506. kbd_exists = 0;
  507. }
  508. }
  509. #define DEFAULT_KEYB_REP_DELAY 250
  510. #define DEFAULT_KEYB_REP_RATE 30 /* cps */
  511. static struct kbd_repeat kbdrate={
  512. DEFAULT_KEYB_REP_DELAY,
  513. DEFAULT_KEYB_REP_RATE
  514. };
  515. static unsigned char parse_kbd_rate(struct kbd_repeat *r)
  516. {
  517. static struct r2v{
  518. int rate;
  519. unsigned char val;
  520. } kbd_rates[]={ {5,0x14},
  521. {7,0x10},
  522. {10,0x0c},
  523. {15,0x08},
  524. {20,0x04},
  525. {25,0x02},
  526. {30,0x00}
  527. };
  528. static struct d2v{
  529. int delay;
  530. unsigned char val;
  531. } kbd_delays[]={{250,0},
  532. {500,1},
  533. {750,2},
  534. {1000,3}
  535. };
  536. int rate=0,delay=0;
  537. if (r != NULL){
  538. int i,new_rate=30,new_delay=250;
  539. if (r->rate <= 0)
  540. r->rate=kbdrate.rate;
  541. if (r->delay <= 0)
  542. r->delay=kbdrate.delay;
  543. for (i=0; i < sizeof(kbd_rates)/sizeof(struct r2v); i++)
  544. if (kbd_rates[i].rate == r->rate){
  545. new_rate=kbd_rates[i].rate;
  546. rate=kbd_rates[i].val;
  547. break;
  548. }
  549. for (i=0; i < sizeof(kbd_delays)/sizeof(struct d2v); i++)
  550. if (kbd_delays[i].delay == r->delay){
  551. new_delay=kbd_delays[i].delay;
  552. delay=kbd_delays[i].val;
  553. break;
  554. }
  555. r->rate=new_rate;
  556. r->delay=new_delay;
  557. }
  558. return (delay << 5) | rate;
  559. }
  560. static int write_kbd_rate(unsigned char r)
  561. {
  562. if (!send_data(KBD_CMD_SET_RATE) || !send_data(r)){
  563. send_data(KBD_CMD_ENABLE);  /* re-enable kbd if any errors */
  564. return 0;
  565. }else
  566. return 1;
  567. }
  568. static int pckbd_rate(struct kbd_repeat *rep)
  569. {
  570. if (rep == NULL)
  571. return -EINVAL;
  572. else{
  573. unsigned char r=parse_kbd_rate(rep);
  574. struct kbd_repeat old_rep;
  575. memcpy(&old_rep,&kbdrate,sizeof(struct kbd_repeat));
  576. if (write_kbd_rate(r)){
  577. memcpy(&kbdrate,rep,sizeof(struct kbd_repeat));
  578. memcpy(rep,&old_rep,sizeof(struct kbd_repeat));
  579. return 0;
  580. }
  581. }
  582. return -EIO;
  583. }
  584. /*
  585.  * In case we run on a non-x86 hardware we need to initialize both the
  586.  * keyboard controller and the keyboard.  On a x86, the BIOS will
  587.  * already have initialized them.
  588.  *
  589.  * Some x86 BIOSes do not correctly initialize the keyboard, so the
  590.  * "kbd-reset" command line options can be given to force a reset.
  591.  * [Ranger]
  592.  */
  593. #ifdef __i386__
  594.  int kbd_startup_reset __initdata = 0;
  595. #else
  596.  int kbd_startup_reset __initdata = 1;
  597. #endif
  598. /* for "kbd-reset" cmdline param */
  599. static int __init kbd_reset_setup(char *str)
  600. {
  601. kbd_startup_reset = 1;
  602. return 1;
  603. }
  604. __setup("kbd-reset", kbd_reset_setup);
  605. #define KBD_NO_DATA (-1) /* No data */
  606. #define KBD_BAD_DATA (-2) /* Parity or other error */
  607. static int __init kbd_read_data(void)
  608. {
  609. int retval = KBD_NO_DATA;
  610. unsigned char status;
  611. status = kbd_read_status();
  612. if (status & KBD_STAT_OBF) {
  613. unsigned char data = kbd_read_input();
  614. retval = data;
  615. if (status & (KBD_STAT_GTO | KBD_STAT_PERR))
  616. retval = KBD_BAD_DATA;
  617. }
  618. return retval;
  619. }
  620. static void __init kbd_clear_input(void)
  621. {
  622. int maxread = 100; /* Random number */
  623. do {
  624. if (kbd_read_data() == KBD_NO_DATA)
  625. break;
  626. } while (--maxread);
  627. }
  628. static int __init kbd_wait_for_input(void)
  629. {
  630. long timeout = KBD_INIT_TIMEOUT;
  631. do {
  632. int retval = kbd_read_data();
  633. if (retval >= 0)
  634. return retval;
  635. mdelay(1);
  636. } while (--timeout);
  637. return -1;
  638. }
  639. static void kbd_write_command_w(int data)
  640. {
  641. unsigned long flags;
  642. spin_lock_irqsave(&kbd_controller_lock, flags);
  643. kb_wait();
  644. kbd_write_command(data);
  645. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  646. }
  647. static void kbd_write_output_w(int data)
  648. {
  649. unsigned long flags;
  650. spin_lock_irqsave(&kbd_controller_lock, flags);
  651. kb_wait();
  652. kbd_write_output(data);
  653. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  654. }
  655. #if defined(__alpha__)
  656. /*
  657.  * Some Alphas cannot mask some/all interrupts, so we have to
  658.  * make sure not to allow interrupts AT ALL when polling for
  659.  * specific return values from the keyboard.
  660.  *
  661.  * I think this should work on any architecture, but for now, only Alpha.
  662.  */
  663. static int kbd_write_command_w_and_wait(int data)
  664. {
  665. unsigned long flags;
  666. int input;
  667. spin_lock_irqsave(&kbd_controller_lock, flags);
  668. kb_wait();
  669. kbd_write_command(data);
  670. input = kbd_wait_for_input();
  671. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  672. return input;
  673. }
  674. static int kbd_write_output_w_and_wait(int data)
  675. {
  676. unsigned long flags;
  677. int input;
  678. spin_lock_irqsave(&kbd_controller_lock, flags);
  679. kb_wait();
  680. kbd_write_output(data);
  681. input = kbd_wait_for_input();
  682. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  683. return input;
  684. }
  685. #else
  686. static int kbd_write_command_w_and_wait(int data)
  687. {
  688. kbd_write_command_w(data);
  689. return kbd_wait_for_input();
  690. }
  691. static int kbd_write_output_w_and_wait(int data)
  692. {
  693. kbd_write_output_w(data);
  694. return kbd_wait_for_input();
  695. }
  696. #endif /* __alpha__ */
  697. #if defined CONFIG_PSMOUSE
  698. static void kbd_write_cmd(int cmd)
  699. {
  700. unsigned long flags;
  701. spin_lock_irqsave(&kbd_controller_lock, flags);
  702. kb_wait();
  703. kbd_write_command(KBD_CCMD_WRITE_MODE);
  704. kb_wait();
  705. kbd_write_output(cmd);
  706. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  707. }
  708. #endif /* CONFIG_PSMOUSE */
  709. static char * __init initialize_kbd(void)
  710. {
  711. int status;
  712. /*
  713.  * Test the keyboard interface.
  714.  * This seems to be the only way to get it going.
  715.  * If the test is successful a x55 is placed in the input buffer.
  716.  */
  717. kbd_write_command_w(KBD_CCMD_SELF_TEST);
  718. if (kbd_wait_for_input() != 0x55)
  719. return "Keyboard failed self test";
  720. /*
  721.  * Perform a keyboard interface test.  This causes the controller
  722.  * to test the keyboard clock and data lines.  The results of the
  723.  * test are placed in the input buffer.
  724.  */
  725. kbd_write_command_w(KBD_CCMD_KBD_TEST);
  726. if (kbd_wait_for_input() != 0x00)
  727. return "Keyboard interface failed self test";
  728. /*
  729.  * Enable the keyboard by allowing the keyboard clock to run.
  730.  */
  731. kbd_write_command_w(KBD_CCMD_KBD_ENABLE);
  732. /*
  733.  * Reset keyboard. If the read times out
  734.  * then the assumption is that no keyboard is
  735.  * plugged into the machine.
  736.  * This defaults the keyboard to scan-code set 2.
  737.  *
  738.  * Set up to try again if the keyboard asks for RESEND.
  739.  */
  740. do {
  741. kbd_write_output_w(KBD_CMD_RESET);
  742. status = kbd_wait_for_input();
  743. if (status == KBD_REPLY_ACK)
  744. break;
  745. if (status != KBD_REPLY_RESEND)
  746. return "Keyboard reset failed, no ACK";
  747. } while (1);
  748. if (kbd_wait_for_input() != KBD_REPLY_POR)
  749. return "Keyboard reset failed, no POR";
  750. /*
  751.  * Set keyboard controller mode. During this, the keyboard should be
  752.  * in the disabled state.
  753.  *
  754.  * Set up to try again if the keyboard asks for RESEND.
  755.  */
  756. do {
  757. kbd_write_output_w(KBD_CMD_DISABLE);
  758. status = kbd_wait_for_input();
  759. if (status == KBD_REPLY_ACK)
  760. break;
  761. if (status != KBD_REPLY_RESEND)
  762. return "Disable keyboard: no ACK";
  763. } while (1);
  764. kbd_write_command_w(KBD_CCMD_WRITE_MODE);
  765. kbd_write_output_w(KBD_MODE_KBD_INT
  766.       | KBD_MODE_SYS
  767.       | KBD_MODE_DISABLE_MOUSE
  768.       | KBD_MODE_KCC);
  769. /* ibm powerpc portables need this to use scan-code set 1 -- Cort */
  770. if (!(kbd_write_command_w_and_wait(KBD_CCMD_READ_MODE) & KBD_MODE_KCC))
  771. {
  772. /*
  773.  * If the controller does not support conversion,
  774.  * Set the keyboard to scan-code set 1.
  775.  */
  776. kbd_write_output_w(0xF0);
  777. kbd_wait_for_input();
  778. kbd_write_output_w(0x01);
  779. kbd_wait_for_input();
  780. }
  781. if (kbd_write_output_w_and_wait(KBD_CMD_ENABLE) != KBD_REPLY_ACK)
  782. return "Enable keyboard: no ACK";
  783. /*
  784.  * Finally, set the typematic rate to maximum.
  785.  */
  786. if (kbd_write_output_w_and_wait(KBD_CMD_SET_RATE) != KBD_REPLY_ACK)
  787. return "Set rate: no ACK";
  788. if (kbd_write_output_w_and_wait(0x00) != KBD_REPLY_ACK)
  789. return "Set rate: no 2nd ACK";
  790. return NULL;
  791. }
  792. void __init pckbd_init_hw(void)
  793. {
  794. kbd_request_region();
  795. /* Flush any pending input. */
  796. kbd_clear_input();
  797. if (kbd_startup_reset) {
  798. char *msg = initialize_kbd();
  799. if (msg)
  800. printk(KERN_WARNING "initialize_kbd: %sn", msg);
  801. }
  802. #if defined CONFIG_PSMOUSE
  803. psaux_init();
  804. #endif
  805. kbd_rate = pckbd_rate;
  806. /* Ok, finally allocate the IRQ, and off we go.. */
  807. kbd_request_irq(keyboard_interrupt);
  808. }
  809. #if defined CONFIG_PSMOUSE
  810. static int __init aux_reconnect_setup (char *str)
  811. {
  812. aux_reconnect = 1;
  813. return 1;
  814. }
  815. __setup("psaux-reconnect", aux_reconnect_setup);
  816. /*
  817.  * Check if this is a dual port controller.
  818.  */
  819. static int __init detect_auxiliary_port(void)
  820. {
  821. unsigned long flags;
  822. int loops = 10;
  823. int retval = 0;
  824. /* Check if the BIOS detected a device on the auxiliary port. */
  825. if (aux_device_present == 0xaa)
  826. return 1;
  827. spin_lock_irqsave(&kbd_controller_lock, flags);
  828. /* Put the value 0x5A in the output buffer using the "Write
  829.  * Auxiliary Device Output Buffer" command (0xD3). Poll the
  830.  * Status Register for a while to see if the value really
  831.  * turns up in the Data Register. If the KBD_STAT_MOUSE_OBF
  832.  * bit is also set to 1 in the Status Register, we assume this
  833.  * controller has an Auxiliary Port (a.k.a. Mouse Port).
  834.  */
  835. kb_wait();
  836. kbd_write_command(KBD_CCMD_WRITE_AUX_OBUF);
  837. kb_wait();
  838. kbd_write_output(0x5a); /* 0x5a is a random dummy value. */
  839. do {
  840. unsigned char status = kbd_read_status();
  841. if (status & KBD_STAT_OBF) {
  842. (void) kbd_read_input();
  843. if (status & KBD_STAT_MOUSE_OBF) {
  844. printk(KERN_INFO "Detected PS/2 Mouse Port.n");
  845. retval = 1;
  846. }
  847. break;
  848. }
  849. mdelay(1);
  850. } while (--loops);
  851. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  852. return retval;
  853. }
  854. /*
  855.  * Send a byte to the mouse.
  856.  */
  857. static void aux_write_dev(int val)
  858. {
  859. unsigned long flags;
  860. spin_lock_irqsave(&kbd_controller_lock, flags);
  861. kb_wait();
  862. kbd_write_command(KBD_CCMD_WRITE_MOUSE);
  863. kb_wait();
  864. kbd_write_output(val);
  865. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  866. }
  867. /*
  868.  * Send a byte to the mouse & handle returned ack
  869.  */
  870. static void __aux_write_ack(int val)
  871. {
  872. kb_wait();
  873. kbd_write_command(KBD_CCMD_WRITE_MOUSE);
  874. kb_wait();
  875. kbd_write_output(val);
  876. /* we expect an ACK in response. */
  877. mouse_reply_expected++;
  878. kb_wait();
  879. }
  880. static void aux_write_ack(int val)
  881. {
  882. unsigned long flags;
  883. spin_lock_irqsave(&kbd_controller_lock, flags);
  884. __aux_write_ack(val);
  885. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  886. }
  887. static unsigned char get_from_queue(void)
  888. {
  889. unsigned char result;
  890. unsigned long flags;
  891. spin_lock_irqsave(&kbd_controller_lock, flags);
  892. result = queue->buf[queue->tail];
  893. queue->tail = (queue->tail + 1) & (AUX_BUF_SIZE-1);
  894. spin_unlock_irqrestore(&kbd_controller_lock, flags);
  895. return result;
  896. }
  897. static inline int queue_empty(void)
  898. {
  899. return queue->head == queue->tail;
  900. }
  901. static int fasync_aux(int fd, struct file *filp, int on)
  902. {
  903. int retval;
  904. retval = fasync_helper(fd, filp, on, &queue->fasync);
  905. if (retval < 0)
  906. return retval;
  907. return 0;
  908. }
  909. /*
  910.  * Random magic cookie for the aux device
  911.  */
  912. #define AUX_DEV ((void *)queue)
  913. static int release_aux(struct inode * inode, struct file * file)
  914. {
  915. lock_kernel();
  916. fasync_aux(-1, file, 0);
  917. if (--aux_count) {
  918. unlock_kernel();
  919. return 0;
  920. }
  921. kbd_write_cmd(AUX_INTS_OFF);     /* Disable controller ints */
  922. kbd_write_command_w(KBD_CCMD_MOUSE_DISABLE);
  923. aux_free_irq(AUX_DEV);
  924. unlock_kernel();
  925. return 0;
  926. }
  927. /*
  928.  * Install interrupt handler.
  929.  * Enable auxiliary device.
  930.  */
  931. static int open_aux(struct inode * inode, struct file * file)
  932. {
  933. if (aux_count++) {
  934. return 0;
  935. }
  936. queue->head = queue->tail = 0; /* Flush input queue */
  937. if (aux_request_irq(keyboard_interrupt, AUX_DEV)) {
  938. aux_count--;
  939. return -EBUSY;
  940. }
  941. kbd_write_command_w(KBD_CCMD_MOUSE_ENABLE); /* Enable the
  942.    auxiliary port on
  943.    controller. */
  944. aux_write_ack(AUX_ENABLE_DEV); /* Enable aux device */
  945. kbd_write_cmd(AUX_INTS_ON); /* Enable controller ints */
  946. mdelay(2); /* Ensure we follow the kbc access delay rules.. */
  947. send_data(KBD_CMD_ENABLE); /* try to workaround toshiba4030cdt problem */
  948. return 0;
  949. }
  950. /*
  951.  * Put bytes from input queue to buffer.
  952.  */
  953. static ssize_t read_aux(struct file * file, char * buffer,
  954. size_t count, loff_t *ppos)
  955. {
  956. DECLARE_WAITQUEUE(wait, current);
  957. ssize_t i = count;
  958. unsigned char c;
  959. if (queue_empty()) {
  960. if (file->f_flags & O_NONBLOCK)
  961. return -EAGAIN;
  962. add_wait_queue(&queue->proc_list, &wait);
  963. repeat:
  964. set_current_state(TASK_INTERRUPTIBLE);
  965. if (queue_empty() && !signal_pending(current)) {
  966. schedule();
  967. goto repeat;
  968. }
  969. current->state = TASK_RUNNING;
  970. remove_wait_queue(&queue->proc_list, &wait);
  971. }
  972. while (i > 0 && !queue_empty()) {
  973. c = get_from_queue();
  974. put_user(c, buffer++);
  975. i--;
  976. }
  977. if (count-i) {
  978. file->f_dentry->d_inode->i_atime = CURRENT_TIME;
  979. return count-i;
  980. }
  981. if (signal_pending(current))
  982. return -ERESTARTSYS;
  983. return 0;
  984. }
  985. /*
  986.  * Write to the aux device.
  987.  */
  988. static ssize_t write_aux(struct file * file, const char * buffer,
  989.  size_t count, loff_t *ppos)
  990. {
  991. ssize_t retval = 0;
  992. if (count) {
  993. ssize_t written = 0;
  994. if (count > 32)
  995. count = 32; /* Limit to 32 bytes. */
  996. do {
  997. char c;
  998. get_user(c, buffer++);
  999. aux_write_dev(c);
  1000. written++;
  1001. } while (--count);
  1002. retval = -EIO;
  1003. if (written) {
  1004. retval = written;
  1005. file->f_dentry->d_inode->i_mtime = CURRENT_TIME;
  1006. }
  1007. }
  1008. return retval;
  1009. }
  1010. /* No kernel lock held - fine */
  1011. static unsigned int aux_poll(struct file *file, poll_table * wait)
  1012. {
  1013. poll_wait(file, &queue->proc_list, wait);
  1014. if (!queue_empty())
  1015. return POLLIN | POLLRDNORM;
  1016. return 0;
  1017. }
  1018. struct file_operations psaux_fops = {
  1019. read: read_aux,
  1020. write: write_aux,
  1021. poll: aux_poll,
  1022. open: open_aux,
  1023. release: release_aux,
  1024. fasync: fasync_aux,
  1025. };
  1026. /*
  1027.  * Initialize driver.
  1028.  */
  1029. static struct miscdevice psaux_mouse = {
  1030. PSMOUSE_MINOR, "psaux", &psaux_fops
  1031. };
  1032. static int __init psaux_init(void)
  1033. {
  1034. int retval;
  1035. if (!detect_auxiliary_port())
  1036. return -EIO;
  1037. if ((retval = misc_register(&psaux_mouse)))
  1038. return retval;
  1039. queue = (struct aux_queue *) kmalloc(sizeof(*queue), GFP_KERNEL);
  1040. if (queue == NULL) {
  1041. printk(KERN_ERR "psaux_init(): out of memoryn");
  1042. misc_deregister(&psaux_mouse);
  1043. return -ENOMEM;
  1044. }
  1045. memset(queue, 0, sizeof(*queue));
  1046. queue->head = queue->tail = 0;
  1047. init_waitqueue_head(&queue->proc_list);
  1048. #ifdef INITIALIZE_MOUSE
  1049. kbd_write_command_w(KBD_CCMD_MOUSE_ENABLE); /* Enable Aux. */
  1050. aux_write_ack(AUX_SET_SAMPLE);
  1051. aux_write_ack(100); /* 100 samples/sec */
  1052. aux_write_ack(AUX_SET_RES);
  1053. aux_write_ack(3); /* 8 counts per mm */
  1054. aux_write_ack(AUX_SET_SCALE21); /* 2:1 scaling */
  1055. #endif /* INITIALIZE_MOUSE */
  1056. kbd_write_command(KBD_CCMD_MOUSE_DISABLE); /* Disable aux device. */
  1057. kbd_write_cmd(AUX_INTS_OFF); /* Disable controller ints. */
  1058. return 0;
  1059. }
  1060. #endif /* CONFIG_PSMOUSE */