Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / input / serio / i8042-jazzio.h
blob5c20ab131488e038228f642e5c7e0705834257e9
1 #ifndef _I8042_JAZZ_H
2 #define _I8042_JAZZ_H
4 #include <asm/jazz.h>
6 /*
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
13 * Names.
16 #define I8042_KBD_PHYS_DESC "R4030/serio0"
17 #define I8042_AUX_PHYS_DESC "R4030/serio1"
18 #define I8042_MUX_PHYS_DESC "R4030/serio%d"
21 * IRQs.
24 #define I8042_KBD_IRQ JAZZ_KEYBOARD_IRQ
25 #define I8042_AUX_IRQ JAZZ_MOUSE_IRQ
27 #define I8042_COMMAND_REG ((unsigned long)&jazz_kh->command)
28 #define I8042_STATUS_REG ((unsigned long)&jazz_kh->command)
29 #define I8042_DATA_REG ((unsigned long)&jazz_kh->data)
31 static inline int i8042_read_data(void)
33 return jazz_kh->data;
36 static inline int i8042_read_status(void)
38 return jazz_kh->command;
41 static inline void i8042_write_data(int val)
43 jazz_kh->data = val;
46 static inline void i8042_write_command(int val)
48 jazz_kh->command = val;
51 static inline int i8042_platform_init(void)
53 #if 0
54 /* XXX JAZZ_KEYBOARD_ADDRESS is a virtual address */
55 if (!request_mem_region(JAZZ_KEYBOARD_ADDRESS, 2, "i8042"))
56 return 1;
57 #endif
59 return 0;
62 static inline void i8042_platform_exit(void)
64 #if 0
65 release_mem_region(JAZZ_KEYBOARD_ADDRESS, 2);
66 #endif
69 #endif /* _I8042_JAZZ_H */