summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/keyboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-ppc/keyboard.h')
-rw-r--r--include/asm-ppc/keyboard.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/include/asm-ppc/keyboard.h b/include/asm-ppc/keyboard.h
new file mode 100644
index 000000000..6cd1391de
--- /dev/null
+++ b/include/asm-ppc/keyboard.h
@@ -0,0 +1,49 @@
+/*
+ * linux/include/asm-ppc/keyboard.h
+ *
+ * Created 3 Nov 1996 by Geert Uytterhoeven
+ */
+
+/*
+ * This file contains the ppc architecture specific keyboard definitions
+ */
+
+#ifndef __ASMPPC_KEYBOARD_H
+#define __ASMPPC_KEYBOARD_H
+
+#ifdef __KERNEL__
+
+#define KEYBOARD_IRQ 1
+#define DISABLE_KBD_DURING_INTERRUPTS 0
+
+#define KBD_REPORT_ERR
+#define KBD_REPORT_UNKN
+/* #define KBD_IS_FOCUS_9000 */
+
+extern int pckbd_setkeycode(unsigned int scancode, unsigned int keycode);
+extern int pckbd_getkeycode(unsigned int scancode);
+extern int pckbd_pretranslate(unsigned char scancode, char raw_mode);
+extern int pckbd_translate(unsigned char scancode, unsigned char *keycode,
+ char raw_mode);
+extern char pckbd_unexpected_up(unsigned char keycode);
+extern void pckbd_leds(unsigned char leds);
+extern void pckbd_init_hw(void);
+
+#define kbd_setkeycode pckbd_setkeycode
+#define kbd_getkeycode pckbd_getkeycode
+#define kbd_pretranslate pckbd_pretranslate
+#define kbd_translate pckbd_translate
+#define kbd_unexpected_up pckbd_unexpected_up
+#define kbd_leds pckbd_leds
+#define kbd_init_hw pckbd_init_hw
+
+#define INIT_KBD
+
+extern __inline__ void keyboard_setup()
+{
+ request_region(0x60,16,"keyboard");
+}
+
+#endif /* __KERNEL__ */
+
+#endif /* __ASMPPC_KEYBOARD_H */