1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _I8042_SPARCIO_H
3 #define _I8042_SPARCIO_H
6 #include <linux/of_platform.h>
7 #include <linux/platform_device.h>
8 #include <linux/types.h>
11 #include <asm/oplib.h>
14 static int i8042_kbd_irq
= -1;
15 static int i8042_aux_irq
= -1;
16 #define I8042_KBD_IRQ i8042_kbd_irq
17 #define I8042_AUX_IRQ i8042_aux_irq
19 #define I8042_KBD_PHYS_DESC "sparcps2/serio0"
20 #define I8042_AUX_PHYS_DESC "sparcps2/serio1"
21 #define I8042_MUX_PHYS_DESC "sparcps2/serio%d"
23 static void __iomem
*kbd_iobase
;
25 #define I8042_COMMAND_REG (kbd_iobase + 0x64UL)
26 #define I8042_DATA_REG (kbd_iobase + 0x60UL)
28 static inline int i8042_read_data(void)
30 return readb(kbd_iobase
+ 0x60UL
);
33 static inline int i8042_read_status(void)
35 return readb(kbd_iobase
+ 0x64UL
);
38 static inline void i8042_write_data(int val
)
40 writeb(val
, kbd_iobase
+ 0x60UL
);
43 static inline void i8042_write_command(int val
)
45 writeb(val
, kbd_iobase
+ 0x64UL
);
50 static struct resource
*kbd_res
;
52 #define OBP_PS2KBD_NAME1 "kb_ps2"
53 #define OBP_PS2KBD_NAME2 "keyboard"
54 #define OBP_PS2MS_NAME1 "kdmouse"
55 #define OBP_PS2MS_NAME2 "mouse"
57 static int sparc_i8042_probe(struct platform_device
*op
)
59 struct device_node
*dp
;
61 for_each_child_of_node(op
->dev
.of_node
, dp
) {
62 if (of_node_name_eq(dp
, OBP_PS2KBD_NAME1
) ||
63 of_node_name_eq(dp
, OBP_PS2KBD_NAME2
)) {
64 struct platform_device
*kbd
= of_find_device_by_node(dp
);
65 unsigned int irq
= kbd
->archdata
.irqs
[0];
66 if (irq
== 0xffffffff)
67 irq
= op
->archdata
.irqs
[0];
69 kbd_iobase
= of_ioremap(&kbd
->resource
[0],
71 kbd_res
= &kbd
->resource
[0];
72 } else if (of_node_name_eq(dp
, OBP_PS2MS_NAME1
) ||
73 of_node_name_eq(dp
, OBP_PS2MS_NAME2
)) {
74 struct platform_device
*ms
= of_find_device_by_node(dp
);
75 unsigned int irq
= ms
->archdata
.irqs
[0];
76 if (irq
== 0xffffffff)
77 irq
= op
->archdata
.irqs
[0];
85 static void sparc_i8042_remove(struct platform_device
*op
)
87 of_iounmap(kbd_res
, kbd_iobase
, 8);
90 static const struct of_device_id sparc_i8042_match
[] = {
96 MODULE_DEVICE_TABLE(of
, sparc_i8042_match
);
98 static struct platform_driver sparc_i8042_driver
= {
101 .of_match_table
= sparc_i8042_match
,
103 .probe
= sparc_i8042_probe
,
104 .remove_new
= sparc_i8042_remove
,
107 static bool i8042_is_mr_coffee(void)
109 struct device_node
*root
;
113 root
= of_find_node_by_path("/");
115 name
= of_get_property(root
, "name", NULL
);
116 is_mr_coffee
= name
&& !strcmp(name
, "SUNW,JavaStation-1");
123 static int __init
i8042_platform_init(void)
125 if (i8042_is_mr_coffee()) {
126 /* Hardcoded values for MrCoffee. */
127 i8042_kbd_irq
= i8042_aux_irq
= 13 | 0x20;
128 kbd_iobase
= ioremap(0x71300060, 8);
132 int err
= platform_driver_register(&sparc_i8042_driver
);
136 if (i8042_kbd_irq
== -1 ||
137 i8042_aux_irq
== -1) {
139 of_iounmap(kbd_res
, kbd_iobase
, 8);
140 kbd_iobase
= (void __iomem
*) NULL
;
146 i8042_reset
= I8042_RESET_ALWAYS
;
151 static inline void i8042_platform_exit(void)
153 if (!i8042_is_mr_coffee())
154 platform_driver_unregister(&sparc_i8042_driver
);
157 #else /* !CONFIG_PCI */
158 static int __init
i8042_platform_init(void)
163 static inline void i8042_platform_exit(void)
166 #endif /* !CONFIG_PCI */
168 #endif /* _I8042_SPARCIO_H */