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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/acorn/char/keyb_arc.c
  3.  *
  4.  *  Copyright (C) 2000 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Acorn keyboard driver for ARM Linux.
  11.  *
  12.  *  The Acorn keyboard appears to have a ***very*** buggy reset protocol -
  13.  *  every reset behaves differently.  We try to get round this by attempting
  14.  *  a few things...
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/sched.h>
  18. #include <linux/interrupt.h>
  19. #include <linux/tty.h>
  20. #include <linux/tty_flip.h>
  21. #include <linux/mm.h>
  22. #include <linux/slab.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/signal.h>
  25. #include <linux/timer.h>
  26. #include <linux/random.h>
  27. #include <linux/ctype.h>
  28. #include <linux/init.h>
  29. #include <linux/kbd_ll.h>
  30. #include <linux/kbd_kern.h>
  31. #include <linux/delay.h>
  32. #include <asm/bitops.h>
  33. #include <asm/keyboard.h>
  34. #include <asm/irq.h>
  35. #include <asm/hardware.h>
  36. #include <asm/hardware/ioc.h>
  37. #include "../../char/busmouse.h"
  38. extern struct tasklet_struct keyboard_tasklet;
  39. extern void kbd_reset_kdown(void);
  40. #define VERSION 108
  41. #define KBD_REPORT_ERR
  42. #define KBD_REPORT_UNKN
  43. #include <asm/io.h>
  44. #include <asm/system.h>
  45. static char kbd_txval[4];
  46. static unsigned char kbd_txhead, kbd_txtail;
  47. #define KBD_INCTXPTR(ptr) ((ptr) = ((ptr) + 1) & 3)
  48. static int kbd_id = -1;
  49. static DECLARE_WAIT_QUEUE_HEAD(kbd_waitq);
  50. #ifdef CONFIG_KBDMOUSE
  51. static int mousedev;
  52. #endif
  53. /*
  54.  * Protocol codes to send the keyboard.
  55.  */
  56. #define HRST 0xff /* reset keyboard */
  57. #define RAK1 0xfe /* reset response */
  58. #define RAK2 0xfd /* reset response */
  59. #define BACK 0x3f /* Ack for first keyboard pair */
  60. #define SMAK 0x33 /* Last data byte ack (key scanning + mouse movement scanning) */
  61. #define MACK 0x32 /* Last data byte ack (mouse movement scanning) */
  62. #define SACK 0x31 /* Last data byte ack (key scanning) */
  63. #define NACK 0x30 /* Last data byte ack (no scanning, mouse data) */
  64. #define RQMP 0x22 /* Request mouse data */
  65. #define PRST 0x21 /* nothing */
  66. #define RQID 0x20 /* Request ID */
  67. #define UP_FLAG 1
  68. #ifdef CONFIG_MAGIC_SYSRQ
  69. unsigned char a5kkbd_sysrq_xlate[] = 
  70. {
  71.     27,    0,    0,    0,    0,    0,    0,    0,
  72.      0,    0,    0,    0,    0,    0,    0,    0,
  73.    '`',  '1',  '2',  '3',  '4',  '5',  '6',  '7',
  74.    '8',  '9',  '0',  '-',  '=',  '