aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/serio/i8042-ip22io.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/input/serio/i8042-ip22io.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/input/serio/i8042-ip22io.h')
-rw-r--r--drivers/input/serio/i8042-ip22io.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/drivers/input/serio/i8042-ip22io.h b/drivers/input/serio/i8042-ip22io.h
new file mode 100644
index 000000000000..863b9c95fbb8
--- /dev/null
+++ b/drivers/input/serio/i8042-ip22io.h
@@ -0,0 +1,76 @@
1#ifndef _I8042_IP22_H
2#define _I8042_IP22_H
3
4#include <asm/sgi/ioc.h>
5#include <asm/sgi/ip22.h>
6
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.
11 */
12
13/*
14 * Names.
15 */
16
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"
20
21/*
22 * IRQs.
23 */
24
25#define I8042_KBD_IRQ SGI_KEYBD_IRQ
26#define I8042_AUX_IRQ SGI_KEYBD_IRQ
27
28/*
29 * Register numbers.
30 */
31
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)
35
36static inline int i8042_read_data(void)
37{
38 return sgioc->kbdmouse.data;
39}
40
41static inline int i8042_read_status(void)
42{
43 return sgioc->kbdmouse.command;
44}
45
46static inline void i8042_write_data(int val)
47{
48 sgioc->kbdmouse.data = val;
49}
50
51static inline void i8042_write_command(int val)
52{
53 sgioc->kbdmouse.command = val;
54}
55
56static inline int i8042_platform_init(void)
57{
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 1;
62#endif
63
64 i8042_reset = 1;
65
66 return 0;
67}
68
69static inline void i8042_platform_exit(void)
70{
71#if 0
72 release_mem_region(JAZZ_KEYBOARD_ADDRESS, sizeof(struct hpc_keyb));
73#endif
74}
75
76#endif /* _I8042_IP22_H */