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.
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"
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)
36 static inline int i8042_read_status(void)
38 return jazz_kh
->command
;
41 static inline void i8042_write_data(int val
)
46 static inline void i8042_write_command(int val
)
48 jazz_kh
->command
= val
;
51 static inline int i8042_platform_init(void)
54 /* XXX JAZZ_KEYBOARD_ADDRESS is a virtual address */
55 if (!request_mem_region(JAZZ_KEYBOARD_ADDRESS
, 2, "i8042"))
62 static inline void i8042_platform_exit(void)
65 release_mem_region(JAZZ_KEYBOARD_ADDRESS
, 2);
69 #endif /* _I8042_JAZZ_H */