Linux 5.1.15
[linux/fpc-iii.git] / drivers / input / serio / sa1111ps2.c
blobf9e5c793f4f093d888ee34a1ab000830bec2538c
1 /*
2 * linux/drivers/input/serio/sa1111ps2.c
4 * Copyright (C) 2002 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License.
9 */
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/input.h>
13 #include <linux/serio.h>
14 #include <linux/errno.h>
15 #include <linux/interrupt.h>
16 #include <linux/ioport.h>
17 #include <linux/delay.h>
18 #include <linux/device.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
22 #include <asm/io.h>
24 #include <asm/hardware/sa1111.h>
26 #define PS2CR 0x0000
27 #define PS2STAT 0x0004
28 #define PS2DATA 0x0008
29 #define PS2CLKDIV 0x000c
30 #define PS2PRECNT 0x0010
32 #define PS2CR_ENA 0x08
33 #define PS2CR_FKD 0x02
34 #define PS2CR_FKC 0x01
36 #define PS2STAT_STP 0x0100
37 #define PS2STAT_TXE 0x0080
38 #define PS2STAT_TXB 0x0040
39 #define PS2STAT_RXF 0x0020
40 #define PS2STAT_RXB 0x0010
41 #define PS2STAT_ENA 0x0008
42 #define PS2STAT_RXP 0x0004
43 #define PS2STAT_KBD 0x0002
44 #define PS2STAT_KBC 0x0001
46 struct ps2if {
47 struct serio *io;
48 struct sa1111_dev *dev;
49 void __iomem *base;
50 int rx_irq;
51 int tx_irq;
52 unsigned int open;
53 spinlock_t lock;
54 unsigned int head;
55 unsigned int tail;
56 unsigned char buf[4];
60 * Read all bytes waiting in the PS2 port. There should be
61 * at the most one, but we loop for safety. If there was a
62 * framing error, we have to manually clear the status.
64 static irqreturn_t ps2_rxint(int irq, void *dev_id)
66 struct ps2if *ps2if = dev_id;
67 unsigned int scancode, flag, status;
69 status = readl_relaxed(ps2if->base + PS2STAT);
70 while (status & PS2STAT_RXF) {
71 if (status & PS2STAT_STP)
72 writel_relaxed(PS2STAT_STP, ps2if->base + PS2STAT);
74 flag = (status & PS2STAT_STP ? SERIO_FRAME : 0) |
75 (status & PS2STAT_RXP ? 0 : SERIO_PARITY);
77 scancode = readl_relaxed(ps2if->base + PS2DATA) & 0xff;
79 if (hweight8(scancode) & 1)
80 flag ^= SERIO_PARITY;
82 serio_interrupt(ps2if->io, scancode, flag);
84 status = readl_relaxed(ps2if->base + PS2STAT);
87 return IRQ_HANDLED;
91 * Completion of ps2 write
93 static irqreturn_t ps2_txint(int irq, void *dev_id)
95 struct ps2if *ps2if = dev_id;
96 unsigned int status;
98 spin_lock(&ps2if->lock);
99 status = readl_relaxed(ps2if->base + PS2STAT);
100 if (ps2if->head == ps2if->tail) {
101 disable_irq_nosync(irq);
102 /* done */
103 } else if (status & PS2STAT_TXE) {
104 writel_relaxed(ps2if->buf[ps2if->tail], ps2if->base + PS2DATA);
105 ps2if->tail = (ps2if->tail + 1) & (sizeof(ps2if->buf) - 1);
107 spin_unlock(&ps2if->lock);
109 return IRQ_HANDLED;
113 * Write a byte to the PS2 port. We have to wait for the
114 * port to indicate that the transmitter is empty.
116 static int ps2_write(struct serio *io, unsigned char val)
118 struct ps2if *ps2if = io->port_data;
119 unsigned long flags;
120 unsigned int head;
122 spin_lock_irqsave(&ps2if->lock, flags);
125 * If the TX register is empty, we can go straight out.
127 if (readl_relaxed(ps2if->base + PS2STAT) & PS2STAT_TXE) {
128 writel_relaxed(val, ps2if->base + PS2DATA);
129 } else {
130 if (ps2if->head == ps2if->tail)
131 enable_irq(ps2if->tx_irq);
132 head = (ps2if->head + 1) & (sizeof(ps2if->buf) - 1);
133 if (head != ps2if->tail) {
134 ps2if->buf[ps2if->head] = val;
135 ps2if->head = head;
139 spin_unlock_irqrestore(&ps2if->lock, flags);
140 return 0;
143 static int ps2_open(struct serio *io)
145 struct ps2if *ps2if = io->port_data;
146 int ret;
148 ret = sa1111_enable_device(ps2if->dev);
149 if (ret)
150 return ret;
152 ret = request_irq(ps2if->rx_irq, ps2_rxint, 0,
153 SA1111_DRIVER_NAME(ps2if->dev), ps2if);
154 if (ret) {
155 printk(KERN_ERR "sa1111ps2: could not allocate IRQ%d: %d\n",
156 ps2if->rx_irq, ret);
157 sa1111_disable_device(ps2if->dev);
158 return ret;
161 ret = request_irq(ps2if->tx_irq, ps2_txint, 0,
162 SA1111_DRIVER_NAME(ps2if->dev), ps2if);
163 if (ret) {
164 printk(KERN_ERR "sa1111ps2: could not allocate IRQ%d: %d\n",
165 ps2if->tx_irq, ret);
166 free_irq(ps2if->rx_irq, ps2if);
167 sa1111_disable_device(ps2if->dev);
168 return ret;
171 ps2if->open = 1;
173 enable_irq_wake(ps2if->rx_irq);
175 writel_relaxed(PS2CR_ENA, ps2if->base + PS2CR);
176 return 0;
179 static void ps2_close(struct serio *io)
181 struct ps2if *ps2if = io->port_data;
183 writel_relaxed(0, ps2if->base + PS2CR);
185 disable_irq_wake(ps2if->rx_irq);
187 ps2if->open = 0;
189 free_irq(ps2if->tx_irq, ps2if);
190 free_irq(ps2if->rx_irq, ps2if);
192 sa1111_disable_device(ps2if->dev);
196 * Clear the input buffer.
198 static void ps2_clear_input(struct ps2if *ps2if)
200 int maxread = 100;
202 while (maxread--) {
203 if ((readl_relaxed(ps2if->base + PS2DATA) & 0xff) == 0xff)
204 break;
208 static unsigned int ps2_test_one(struct ps2if *ps2if,
209 unsigned int mask)
211 unsigned int val;
213 writel_relaxed(PS2CR_ENA | mask, ps2if->base + PS2CR);
215 udelay(10);
217 val = readl_relaxed(ps2if->base + PS2STAT);
218 return val & (PS2STAT_KBC | PS2STAT_KBD);
222 * Test the keyboard interface. We basically check to make sure that
223 * we can drive each line to the keyboard independently of each other.
225 static int ps2_test(struct ps2if *ps2if)
227 unsigned int stat;
228 int ret = 0;
230 stat = ps2_test_one(ps2if, PS2CR_FKC);
231 if (stat != PS2STAT_KBD) {
232 printk("PS/2 interface test failed[1]: %02x\n", stat);
233 ret = -ENODEV;
236 stat = ps2_test_one(ps2if, 0);
237 if (stat != (PS2STAT_KBC | PS2STAT_KBD)) {
238 printk("PS/2 interface test failed[2]: %02x\n", stat);
239 ret = -ENODEV;
242 stat = ps2_test_one(ps2if, PS2CR_FKD);
243 if (stat != PS2STAT_KBC) {
244 printk("PS/2 interface test failed[3]: %02x\n", stat);
245 ret = -ENODEV;
248 writel_relaxed(0, ps2if->base + PS2CR);
250 return ret;
254 * Add one device to this driver.
256 static int ps2_probe(struct sa1111_dev *dev)
258 struct ps2if *ps2if;
259 struct serio *serio;
260 int ret;
262 ps2if = kzalloc(sizeof(struct ps2if), GFP_KERNEL);
263 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
264 if (!ps2if || !serio) {
265 ret = -ENOMEM;
266 goto free;
269 serio->id.type = SERIO_8042;
270 serio->write = ps2_write;
271 serio->open = ps2_open;
272 serio->close = ps2_close;
273 strlcpy(serio->name, dev_name(&dev->dev), sizeof(serio->name));
274 strlcpy(serio->phys, dev_name(&dev->dev), sizeof(serio->phys));
275 serio->port_data = ps2if;
276 serio->dev.parent = &dev->dev;
277 ps2if->io = serio;
278 ps2if->dev = dev;
279 sa1111_set_drvdata(dev, ps2if);
281 spin_lock_init(&ps2if->lock);
283 ps2if->rx_irq = sa1111_get_irq(dev, 0);
284 if (ps2if->rx_irq <= 0) {
285 ret = ps2if->rx_irq ? : -ENXIO;
286 goto free;
289 ps2if->tx_irq = sa1111_get_irq(dev, 1);
290 if (ps2if->tx_irq <= 0) {
291 ret = ps2if->tx_irq ? : -ENXIO;
292 goto free;
296 * Request the physical region for this PS2 port.
298 if (!request_mem_region(dev->res.start,
299 dev->res.end - dev->res.start + 1,
300 SA1111_DRIVER_NAME(dev))) {
301 ret = -EBUSY;
302 goto free;
306 * Our parent device has already mapped the region.
308 ps2if->base = dev->mapbase;
310 sa1111_enable_device(ps2if->dev);
312 /* Incoming clock is 8MHz */
313 writel_relaxed(0, ps2if->base + PS2CLKDIV);
314 writel_relaxed(127, ps2if->base + PS2PRECNT);
317 * Flush any pending input.
319 ps2_clear_input(ps2if);
322 * Test the keyboard interface.
324 ret = ps2_test(ps2if);
325 if (ret)
326 goto out;
329 * Flush any pending input.
331 ps2_clear_input(ps2if);
333 sa1111_disable_device(ps2if->dev);
334 serio_register_port(ps2if->io);
335 return 0;
337 out:
338 sa1111_disable_device(ps2if->dev);
339 release_mem_region(dev->res.start, resource_size(&dev->res));
340 free:
341 sa1111_set_drvdata(dev, NULL);
342 kfree(ps2if);
343 kfree(serio);
344 return ret;
348 * Remove one device from this driver.
350 static int ps2_remove(struct sa1111_dev *dev)
352 struct ps2if *ps2if = sa1111_get_drvdata(dev);
354 serio_unregister_port(ps2if->io);
355 release_mem_region(dev->res.start, resource_size(&dev->res));
356 sa1111_set_drvdata(dev, NULL);
358 kfree(ps2if);
360 return 0;
364 * Our device driver structure
366 static struct sa1111_driver ps2_driver = {
367 .drv = {
368 .name = "sa1111-ps2",
369 .owner = THIS_MODULE,
371 .devid = SA1111_DEVID_PS2,
372 .probe = ps2_probe,
373 .remove = ps2_remove,
376 static int __init ps2_init(void)
378 return sa1111_driver_register(&ps2_driver);
381 static void __exit ps2_exit(void)
383 sa1111_driver_unregister(&ps2_driver);
386 module_init(ps2_init);
387 module_exit(ps2_exit);
389 MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
390 MODULE_DESCRIPTION("SA1111 PS2 controller driver");
391 MODULE_LICENSE("GPL");