i8042.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * (C) Copyright 2002 ELTEC Elektronik AG
  3. * Frank Gottschling <fgottschling@eltec.de>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /* i8042.h - Intel 8042 keyboard driver header */
  24. #ifndef _I8042_H_
  25. #define _I8042_H_
  26. /* defines */
  27. #define I8042_DATA_REG (CFG_ISA_IO + 0x0060) /* keyboard i/o buffer */
  28. #define I8042_STATUS_REG (CFG_ISA_IO + 0x0064) /* keyboard status read */
  29. #define I8042_COMMAND_REG (CFG_ISA_IO + 0x0064) /* keyboard ctrl write */
  30. #define KBD_US 0 /* default US layout */
  31. #define KBD_GER 1 /* german layout */
  32. #define KBD_TIMEOUT 1000 /* 1 sec */
  33. #define KBD_RESET_TRIES 3
  34. #define AS 0 /* normal character index */
  35. #define SH 1 /* shift index */
  36. #define CN 2 /* control index */
  37. #define NM 3 /* numeric lock index */
  38. #define AK 4 /* right alt key */
  39. #define CP 5 /* capslock index */
  40. #define ST 6 /* stop output index */
  41. #define EX 7 /* extended code index */
  42. #define ES 8 /* escape and extended code index */
  43. #define NORMAL 0x0000 /* normal key */
  44. #define STP 0x0001 /* scroll lock stop output*/
  45. #define NUM 0x0002 /* numeric lock */
  46. #define CAPS 0x0004 /* capslock */
  47. #define SHIFT 0x0008 /* shift */
  48. #define CTRL 0x0010 /* control*/
  49. #define EXT 0x0020 /* extended scan code 0xe0 */
  50. #define ESC 0x0040 /* escape key press */
  51. #define E1 0x0080 /* extended scan code 0xe1 */
  52. #define BRK 0x0100 /* make break flag for keyboard */
  53. #define ALT 0x0200 /* right alt */
  54. /* exports */
  55. int i8042_kbd_init(void);
  56. int i8042_tstc(void);
  57. int i8042_getc(void);
  58. #endif /* _I8042_H_ */