1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/drivers/input/serio/sa1111ps2.c
5 * Copyright (C) 2002 Russell King
7 #include <linux/module.h>
8 #include <linux/init.h>
9 #include <linux/input.h>
10 #include <linux/serio.h>
11 #include <linux/errno.h>
12 #include <linux/interrupt.h>
13 #include <linux/ioport.h>
14 #include <linux/delay.h>
15 #include <linux/device.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
21 #include <asm/hardware/sa1111.h>
24 #define PS2STAT 0x0004
25 #define PS2DATA 0x0008
26 #define PS2CLKDIV 0x000c
27 #define PS2PRECNT 0x0010
29 #define PS2CR_ENA 0x08
30 #define PS2CR_FKD 0x02
31 #define PS2CR_FKC 0x01
33 #define PS2STAT_STP 0x0100
34 #define PS2STAT_TXE 0x0080
35 #define PS2STAT_TXB 0x0040
36 #define PS2STAT_RXF 0x0020
37 #define PS2STAT_RXB 0x0010
38 #define PS2STAT_ENA 0x0008
39 #define PS2STAT_RXP 0x0004
40 #define PS2STAT_KBD 0x0002
41 #define PS2STAT_KBC 0x0001
45 struct sa1111_dev
*dev
;
57 * Read all bytes waiting in the PS2 port. There should be
58 * at the most one, but we loop for safety. If there was a
59 * framing error, we have to manually clear the status.
61 static irqreturn_t
ps2_rxint(int irq
, void *dev_id
)
63 struct ps2if
*ps2if
= dev_id
;
64 unsigned int scancode
, flag
, status
;
66 status
= readl_relaxed(ps2if
->base
+ PS2STAT
);
67 while (status
& PS2STAT_RXF
) {
68 if (status
& PS2STAT_STP
)
69 writel_relaxed(PS2STAT_STP
, ps2if
->base
+ PS2STAT
);
71 flag
= (status
& PS2STAT_STP
? SERIO_FRAME
: 0) |
72 (status
& PS2STAT_RXP
? 0 : SERIO_PARITY
);
74 scancode
= readl_relaxed(ps2if
->base
+ PS2DATA
) & 0xff;
76 if (hweight8(scancode
) & 1)
79 serio_interrupt(ps2if
->io
, scancode
, flag
);
81 status
= readl_relaxed(ps2if
->base
+ PS2STAT
);
88 * Completion of ps2 write
90 static irqreturn_t
ps2_txint(int irq
, void *dev_id
)
92 struct ps2if
*ps2if
= dev_id
;
95 guard(spinlock
)(&ps2if
->lock
);
97 status
= readl_relaxed(ps2if
->base
+ PS2STAT
);
98 if (ps2if
->head
== ps2if
->tail
) {
99 disable_irq_nosync(irq
);
101 } else if (status
& PS2STAT_TXE
) {
102 writel_relaxed(ps2if
->buf
[ps2if
->tail
], ps2if
->base
+ PS2DATA
);
103 ps2if
->tail
= (ps2if
->tail
+ 1) & (sizeof(ps2if
->buf
) - 1);
110 * Write a byte to the PS2 port. We have to wait for the
111 * port to indicate that the transmitter is empty.
113 static int ps2_write(struct serio
*io
, unsigned char val
)
115 struct ps2if
*ps2if
= io
->port_data
;
118 guard(spinlock_irqsave
)(&ps2if
->lock
);
121 * If the TX register is empty, we can go straight out.
123 if (readl_relaxed(ps2if
->base
+ PS2STAT
) & PS2STAT_TXE
) {
124 writel_relaxed(val
, ps2if
->base
+ PS2DATA
);
126 if (ps2if
->head
== ps2if
->tail
)
127 enable_irq(ps2if
->tx_irq
);
128 head
= (ps2if
->head
+ 1) & (sizeof(ps2if
->buf
) - 1);
129 if (head
!= ps2if
->tail
) {
130 ps2if
->buf
[ps2if
->head
] = val
;
138 static int ps2_open(struct serio
*io
)
140 struct ps2if
*ps2if
= io
->port_data
;
143 ret
= sa1111_enable_device(ps2if
->dev
);
147 ret
= request_irq(ps2if
->rx_irq
, ps2_rxint
, 0,
148 SA1111_DRIVER_NAME(ps2if
->dev
), ps2if
);
150 printk(KERN_ERR
"sa1111ps2: could not allocate IRQ%d: %d\n",
152 sa1111_disable_device(ps2if
->dev
);
156 ret
= request_irq(ps2if
->tx_irq
, ps2_txint
, 0,
157 SA1111_DRIVER_NAME(ps2if
->dev
), ps2if
);
159 printk(KERN_ERR
"sa1111ps2: could not allocate IRQ%d: %d\n",
161 free_irq(ps2if
->rx_irq
, ps2if
);
162 sa1111_disable_device(ps2if
->dev
);
168 enable_irq_wake(ps2if
->rx_irq
);
170 writel_relaxed(PS2CR_ENA
, ps2if
->base
+ PS2CR
);
174 static void ps2_close(struct serio
*io
)
176 struct ps2if
*ps2if
= io
->port_data
;
178 writel_relaxed(0, ps2if
->base
+ PS2CR
);
180 disable_irq_wake(ps2if
->rx_irq
);
184 free_irq(ps2if
->tx_irq
, ps2if
);
185 free_irq(ps2if
->rx_irq
, ps2if
);
187 sa1111_disable_device(ps2if
->dev
);
191 * Clear the input buffer.
193 static void ps2_clear_input(struct ps2if
*ps2if
)
198 if ((readl_relaxed(ps2if
->base
+ PS2DATA
) & 0xff) == 0xff)
203 static unsigned int ps2_test_one(struct ps2if
*ps2if
,
208 writel_relaxed(PS2CR_ENA
| mask
, ps2if
->base
+ PS2CR
);
212 val
= readl_relaxed(ps2if
->base
+ PS2STAT
);
213 return val
& (PS2STAT_KBC
| PS2STAT_KBD
);
217 * Test the keyboard interface. We basically check to make sure that
218 * we can drive each line to the keyboard independently of each other.
220 static int ps2_test(struct ps2if
*ps2if
)
225 stat
= ps2_test_one(ps2if
, PS2CR_FKC
);
226 if (stat
!= PS2STAT_KBD
) {
227 printk("PS/2 interface test failed[1]: %02x\n", stat
);
231 stat
= ps2_test_one(ps2if
, 0);
232 if (stat
!= (PS2STAT_KBC
| PS2STAT_KBD
)) {
233 printk("PS/2 interface test failed[2]: %02x\n", stat
);
237 stat
= ps2_test_one(ps2if
, PS2CR_FKD
);
238 if (stat
!= PS2STAT_KBC
) {
239 printk("PS/2 interface test failed[3]: %02x\n", stat
);
243 writel_relaxed(0, ps2if
->base
+ PS2CR
);
249 * Add one device to this driver.
251 static int ps2_probe(struct sa1111_dev
*dev
)
257 ps2if
= kzalloc(sizeof(*ps2if
), GFP_KERNEL
);
258 serio
= kzalloc(sizeof(*serio
), GFP_KERNEL
);
259 if (!ps2if
|| !serio
) {
264 serio
->id
.type
= SERIO_8042
;
265 serio
->write
= ps2_write
;
266 serio
->open
= ps2_open
;
267 serio
->close
= ps2_close
;
268 strscpy(serio
->name
, dev_name(&dev
->dev
), sizeof(serio
->name
));
269 strscpy(serio
->phys
, dev_name(&dev
->dev
), sizeof(serio
->phys
));
270 serio
->port_data
= ps2if
;
271 serio
->dev
.parent
= &dev
->dev
;
274 sa1111_set_drvdata(dev
, ps2if
);
276 spin_lock_init(&ps2if
->lock
);
278 ps2if
->rx_irq
= sa1111_get_irq(dev
, 0);
279 if (ps2if
->rx_irq
<= 0) {
280 ret
= ps2if
->rx_irq
? : -ENXIO
;
284 ps2if
->tx_irq
= sa1111_get_irq(dev
, 1);
285 if (ps2if
->tx_irq
<= 0) {
286 ret
= ps2if
->tx_irq
? : -ENXIO
;
291 * Request the physical region for this PS2 port.
293 if (!request_mem_region(dev
->res
.start
,
294 dev
->res
.end
- dev
->res
.start
+ 1,
295 SA1111_DRIVER_NAME(dev
))) {
301 * Our parent device has already mapped the region.
303 ps2if
->base
= dev
->mapbase
;
305 sa1111_enable_device(ps2if
->dev
);
307 /* Incoming clock is 8MHz */
308 writel_relaxed(0, ps2if
->base
+ PS2CLKDIV
);
309 writel_relaxed(127, ps2if
->base
+ PS2PRECNT
);
312 * Flush any pending input.
314 ps2_clear_input(ps2if
);
317 * Test the keyboard interface.
319 ret
= ps2_test(ps2if
);
324 * Flush any pending input.
326 ps2_clear_input(ps2if
);
328 sa1111_disable_device(ps2if
->dev
);
329 serio_register_port(ps2if
->io
);
333 sa1111_disable_device(ps2if
->dev
);
334 release_mem_region(dev
->res
.start
, resource_size(&dev
->res
));
336 sa1111_set_drvdata(dev
, NULL
);
343 * Remove one device from this driver.
345 static void ps2_remove(struct sa1111_dev
*dev
)
347 struct ps2if
*ps2if
= sa1111_get_drvdata(dev
);
349 serio_unregister_port(ps2if
->io
);
350 release_mem_region(dev
->res
.start
, resource_size(&dev
->res
));
351 sa1111_set_drvdata(dev
, NULL
);
357 * Our device driver structure
359 static struct sa1111_driver ps2_driver
= {
361 .name
= "sa1111-ps2",
362 .owner
= THIS_MODULE
,
364 .devid
= SA1111_DEVID_PS2
,
366 .remove
= ps2_remove
,
369 static int __init
ps2_init(void)
371 return sa1111_driver_register(&ps2_driver
);
374 static void __exit
ps2_exit(void)
376 sa1111_driver_unregister(&ps2_driver
);
379 module_init(ps2_init
);
380 module_exit(ps2_exit
);
382 MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
383 MODULE_DESCRIPTION("SA1111 PS2 controller driver");
384 MODULE_LICENSE("GPL");