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

嵌入式Linux

开发平台:

Unix_Linux

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