1 #ifndef _I8042_SPARCIO_H
2 #define _I8042_SPARCIO_H
7 #include <asm/of_device.h>
9 static int i8042_kbd_irq
= -1;
10 static int i8042_aux_irq
= -1;
11 #define I8042_KBD_IRQ i8042_kbd_irq
12 #define I8042_AUX_IRQ i8042_aux_irq
14 #define I8042_KBD_PHYS_DESC "sparcps2/serio0"
15 #define I8042_AUX_PHYS_DESC "sparcps2/serio1"
16 #define I8042_MUX_PHYS_DESC "sparcps2/serio%d"
18 static void __iomem
*kbd_iobase
;
19 static struct resource
*kbd_res
;
21 #define I8042_COMMAND_REG (kbd_iobase + 0x64UL)
22 #define I8042_DATA_REG (kbd_iobase + 0x60UL)
24 static inline int i8042_read_data(void)
26 return readb(kbd_iobase
+ 0x60UL
);
29 static inline int i8042_read_status(void)
31 return readb(kbd_iobase
+ 0x64UL
);
34 static inline void i8042_write_data(int val
)
36 writeb(val
, kbd_iobase
+ 0x60UL
);
39 static inline void i8042_write_command(int val
)
41 writeb(val
, kbd_iobase
+ 0x64UL
);
44 #define OBP_PS2KBD_NAME1 "kb_ps2"
45 #define OBP_PS2KBD_NAME2 "keyboard"
46 #define OBP_PS2MS_NAME1 "kdmouse"
47 #define OBP_PS2MS_NAME2 "mouse"
49 static int __devinit
sparc_i8042_probe(struct of_device
*op
, const struct of_device_id
*match
)
51 struct device_node
*dp
= op
->node
;
55 if (!strcmp(dp
->name
, OBP_PS2KBD_NAME1
) ||
56 !strcmp(dp
->name
, OBP_PS2KBD_NAME2
)) {
57 struct of_device
*kbd
= of_find_device_by_node(dp
);
58 unsigned int irq
= kbd
->irqs
[0];
59 if (irq
== 0xffffffff)
62 kbd_iobase
= of_ioremap(&kbd
->resource
[0],
64 kbd_res
= &kbd
->resource
[0];
65 } else if (!strcmp(dp
->name
, OBP_PS2MS_NAME1
) ||
66 !strcmp(dp
->name
, OBP_PS2MS_NAME2
)) {
67 struct of_device
*ms
= of_find_device_by_node(dp
);
68 unsigned int irq
= ms
->irqs
[0];
69 if (irq
== 0xffffffff)
80 static int __devexit
sparc_i8042_remove(struct of_device
*op
)
82 of_iounmap(kbd_res
, kbd_iobase
, 8);
87 static struct of_device_id sparc_i8042_match
[] = {
93 MODULE_DEVICE_TABLE(of
, sparc_i8042_match
);
95 static struct of_platform_driver sparc_i8042_driver
= {
97 .match_table
= sparc_i8042_match
,
98 .probe
= sparc_i8042_probe
,
99 .remove
= __devexit_p(sparc_i8042_remove
),
102 static int __init
i8042_platform_init(void)
107 struct device_node
*root
= of_find_node_by_path("/");
109 if (!strcmp(root
->name
, "SUNW,JavaStation-1")) {
110 /* Hardcoded values for MrCoffee. */
111 i8042_kbd_irq
= i8042_aux_irq
= 13 | 0x20;
112 kbd_iobase
= ioremap(0x71300060, 8);
116 int err
= of_register_driver(&sparc_i8042_driver
,
121 if (i8042_kbd_irq
== -1 ||
122 i8042_aux_irq
== -1) {
124 of_iounmap(kbd_res
, kbd_iobase
, 8);
125 kbd_iobase
= (void __iomem
*) NULL
;
134 #endif /* CONFIG_PCI */
137 static inline void i8042_platform_exit(void)
140 struct device_node
*root
= of_find_node_by_path("/");
142 if (strcmp(root
->name
, "SUNW,JavaStation-1"))
143 of_unregister_driver(&sparc_i8042_driver
);
147 #endif /* _I8042_SPARCIO_H */