Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / input / serio / i8042-ip22io.h
blobee1ad27d6ed06ef70370f3096352b37acb1c1368
1 #ifndef _I8042_IP22_H
2 #define _I8042_IP22_H
4 #include <asm/sgi/ioc.h>
5 #include <asm/sgi/ip22.h>
7 /*
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
14 * Names.
17 #define I8042_KBD_PHYS_DESC "hpc3ps2/serio0"
18 #define I8042_AUX_PHYS_DESC "hpc3ps2/serio1"
19 #define I8042_MUX_PHYS_DESC "hpc3ps2/serio%d"
22 * IRQs.
25 #define I8042_KBD_IRQ SGI_KEYBD_IRQ
26 #define I8042_AUX_IRQ SGI_KEYBD_IRQ
29 * Register numbers.
32 #define I8042_COMMAND_REG ((unsigned long)&sgioc->kbdmouse.command)
33 #define I8042_STATUS_REG ((unsigned long)&sgioc->kbdmouse.command)
34 #define I8042_DATA_REG ((unsigned long)&sgioc->kbdmouse.data)
36 static inline int i8042_read_data(void)
38 return sgioc->kbdmouse.data;
41 static inline int i8042_read_status(void)
43 return sgioc->kbdmouse.command;
46 static inline void i8042_write_data(int val)
48 sgioc->kbdmouse.data = val;
51 static inline void i8042_write_command(int val)
53 sgioc->kbdmouse.command = val;
56 static inline int i8042_platform_init(void)
58 #if 0
59 /* XXX sgi_kh is a virtual address */
60 if (!request_mem_region(sgi_kh, sizeof(struct hpc_keyb), "i8042"))
61 return -EBUSY;
62 #endif
64 i8042_reset = 1;
66 return 0;
69 static inline void i8042_platform_exit(void)
71 #if 0
72 release_mem_region(JAZZ_KEYBOARD_ADDRESS, sizeof(struct hpc_keyb));
73 #endif
76 #endif /* _I8042_IP22_H */