GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / input / serio / gscps2.c
blob785294d454db2327103efaa2cfae07d087f795f4
1 /*
2 * drivers/input/serio/gscps2.c
4 * Copyright (c) 2004-2006 Helge Deller <deller@gmx.de>
5 * Copyright (c) 2002 Laurent Canet <canetl@esiee.fr>
6 * Copyright (c) 2002 Thibaut Varene <varenet@parisc-linux.org>
8 * Pieces of code based on linux-2.4's hp_mouse.c & hp_keyb.c
9 * Copyright (c) 1999 Alex deVries <alex@onefishtwo.ca>
10 * Copyright (c) 1999-2000 Philipp Rumpf <prumpf@tux.org>
11 * Copyright (c) 2000 Xavier Debacker <debackex@esiee.fr>
12 * Copyright (c) 2000-2001 Thomas Marteau <marteaut@esiee.fr>
14 * HP GSC PS/2 port driver, found in PA/RISC Workstations
16 * This file is subject to the terms and conditions of the GNU General Public
17 * License. See the file "COPYING" in the main directory of this archive
18 * for more details.
20 * TODO:
21 * - Dino testing (did HP ever shipped a machine on which this port
22 * was usable/enabled ?)
25 #include <linux/init.h>
26 #include <linux/module.h>
27 #include <linux/slab.h>
28 #include <linux/serio.h>
29 #include <linux/input.h>
30 #include <linux/interrupt.h>
31 #include <linux/spinlock.h>
32 #include <linux/delay.h>
33 #include <linux/ioport.h>
34 #include <linux/pci_ids.h>
36 #include <asm/irq.h>
37 #include <asm/io.h>
38 #include <asm/parisc-device.h>
40 MODULE_AUTHOR("Laurent Canet <canetl@esiee.fr>, Thibaut Varene <varenet@parisc-linux.org>, Helge Deller <deller@gmx.de>");
41 MODULE_DESCRIPTION("HP GSC PS2 port driver");
42 MODULE_LICENSE("GPL");
43 MODULE_DEVICE_TABLE(parisc, gscps2_device_tbl);
45 #define PFX "gscps2.c: "
48 * Driver constants
51 /* various constants */
52 #define ENABLE 1
53 #define DISABLE 0
55 #define GSC_DINO_OFFSET 0x0800 /* offset for DINO controller versus LASI one */
57 /* PS/2 IO port offsets */
58 #define GSC_ID 0x00 /* device ID offset (see: GSC_ID_XXX) */
59 #define GSC_RESET 0x00 /* reset port offset */
60 #define GSC_RCVDATA 0x04 /* receive port offset */
61 #define GSC_XMTDATA 0x04 /* transmit port offset */
62 #define GSC_CONTROL 0x08 /* see: Control register bits */
63 #define GSC_STATUS 0x0C /* see: Status register bits */
65 /* Control register bits */
66 #define GSC_CTRL_ENBL 0x01 /* enable interface */
67 #define GSC_CTRL_LPBXR 0x02 /* loopback operation */
68 #define GSC_CTRL_DIAG 0x20 /* directly control clock/data line */
69 #define GSC_CTRL_DATDIR 0x40 /* data line direct control */
70 #define GSC_CTRL_CLKDIR 0x80 /* clock line direct control */
72 /* Status register bits */
73 #define GSC_STAT_RBNE 0x01 /* Receive Buffer Not Empty */
74 #define GSC_STAT_TBNE 0x02 /* Transmit Buffer Not Empty */
75 #define GSC_STAT_TERR 0x04 /* Timeout Error */
76 #define GSC_STAT_PERR 0x08 /* Parity Error */
77 #define GSC_STAT_CMPINTR 0x10 /* Composite Interrupt = irq on any port */
78 #define GSC_STAT_DATSHD 0x40 /* Data Line Shadow */
79 #define GSC_STAT_CLKSHD 0x80 /* Clock Line Shadow */
81 /* IDs returned by GSC_ID port register */
82 #define GSC_ID_KEYBOARD 0 /* device ID values */
83 #define GSC_ID_MOUSE 1
86 static irqreturn_t gscps2_interrupt(int irq, void *dev);
88 #define BUFFER_SIZE 0x0f
90 /* GSC PS/2 port device struct */
91 struct gscps2port {
92 struct list_head node;
93 struct parisc_device *padev;
94 struct serio *port;
95 spinlock_t lock;
96 char *addr;
97 u8 act, append; /* position in buffer[] */
98 struct {
99 u8 data;
100 u8 str;
101 } buffer[BUFFER_SIZE+1];
102 int id;
106 * Various HW level routines
109 #define gscps2_readb_input(x) readb((x)+GSC_RCVDATA)
110 #define gscps2_readb_control(x) readb((x)+GSC_CONTROL)
111 #define gscps2_readb_status(x) readb((x)+GSC_STATUS)
112 #define gscps2_writeb_control(x, y) writeb((x), (y)+GSC_CONTROL)
116 * wait_TBE() - wait for Transmit Buffer Empty
119 static int wait_TBE(char *addr)
121 int timeout = 25000; /* device is expected to react within 250 msec */
122 while (gscps2_readb_status(addr) & GSC_STAT_TBNE) {
123 if (!--timeout)
124 return 0; /* This should not happen */
125 udelay(10);
127 return 1;
132 * gscps2_flush() - flush the receive buffer
135 static void gscps2_flush(struct gscps2port *ps2port)
137 while (gscps2_readb_status(ps2port->addr) & GSC_STAT_RBNE)
138 gscps2_readb_input(ps2port->addr);
139 ps2port->act = ps2port->append = 0;
143 * gscps2_writeb_output() - write a byte to the port
145 * returns 1 on success, 0 on error
148 static inline int gscps2_writeb_output(struct gscps2port *ps2port, u8 data)
150 unsigned long flags;
151 char *addr = ps2port->addr;
153 if (!wait_TBE(addr)) {
154 printk(KERN_DEBUG PFX "timeout - could not write byte %#x\n", data);
155 return 0;
158 while (gscps2_readb_status(ps2port->addr) & GSC_STAT_RBNE)
159 /* wait */;
161 spin_lock_irqsave(&ps2port->lock, flags);
162 writeb(data, addr+GSC_XMTDATA);
163 spin_unlock_irqrestore(&ps2port->lock, flags);
165 /* this is ugly, but due to timing of the port it seems to be necessary. */
166 mdelay(6);
168 /* make sure any received data is returned as fast as possible */
169 /* this is important e.g. when we set the LEDs on the keyboard */
170 gscps2_interrupt(0, NULL);
172 return 1;
177 * gscps2_enable() - enables or disables the port
180 static void gscps2_enable(struct gscps2port *ps2port, int enable)
182 unsigned long flags;
183 u8 data;
185 /* now enable/disable the port */
186 spin_lock_irqsave(&ps2port->lock, flags);
187 gscps2_flush(ps2port);
188 data = gscps2_readb_control(ps2port->addr);
189 if (enable)
190 data |= GSC_CTRL_ENBL;
191 else
192 data &= ~GSC_CTRL_ENBL;
193 gscps2_writeb_control(data, ps2port->addr);
194 spin_unlock_irqrestore(&ps2port->lock, flags);
195 wait_TBE(ps2port->addr);
196 gscps2_flush(ps2port);
200 * gscps2_reset() - resets the PS/2 port
203 static void gscps2_reset(struct gscps2port *ps2port)
205 char *addr = ps2port->addr;
206 unsigned long flags;
208 /* reset the interface */
209 spin_lock_irqsave(&ps2port->lock, flags);
210 gscps2_flush(ps2port);
211 writeb(0xff, addr+GSC_RESET);
212 gscps2_flush(ps2port);
213 spin_unlock_irqrestore(&ps2port->lock, flags);
216 static LIST_HEAD(ps2port_list);
219 * gscps2_interrupt() - Interruption service routine
221 * This function reads received PS/2 bytes and processes them on
222 * all interfaces.
223 * The problematic part here is, that the keyboard and mouse PS/2 port
224 * share the same interrupt and it's not possible to send data if any
225 * one of them holds input data. To solve this problem we try to receive
226 * the data as fast as possible and handle the reporting to the upper layer
227 * later.
230 static irqreturn_t gscps2_interrupt(int irq, void *dev)
232 struct gscps2port *ps2port;
234 list_for_each_entry(ps2port, &ps2port_list, node) {
236 unsigned long flags;
237 spin_lock_irqsave(&ps2port->lock, flags);
239 while ( (ps2port->buffer[ps2port->append].str =
240 gscps2_readb_status(ps2port->addr)) & GSC_STAT_RBNE ) {
241 ps2port->buffer[ps2port->append].data =
242 gscps2_readb_input(ps2port->addr);
243 ps2port->append = ((ps2port->append+1) & BUFFER_SIZE);
246 spin_unlock_irqrestore(&ps2port->lock, flags);
248 } /* list_for_each_entry */
250 /* all data was read from the ports - now report the data to upper layer */
252 list_for_each_entry(ps2port, &ps2port_list, node) {
254 while (ps2port->act != ps2port->append) {
256 unsigned int rxflags;
257 u8 data, status;
259 /* Did new data arrived while we read existing data ?
260 If yes, exit now and let the new irq handler start over again */
261 if (gscps2_readb_status(ps2port->addr) & GSC_STAT_CMPINTR)
262 return IRQ_HANDLED;
264 status = ps2port->buffer[ps2port->act].str;
265 data = ps2port->buffer[ps2port->act].data;
267 ps2port->act = ((ps2port->act+1) & BUFFER_SIZE);
268 rxflags = ((status & GSC_STAT_TERR) ? SERIO_TIMEOUT : 0 ) |
269 ((status & GSC_STAT_PERR) ? SERIO_PARITY : 0 );
271 serio_interrupt(ps2port->port, data, rxflags);
273 } /* while() */
275 } /* list_for_each_entry */
277 return IRQ_HANDLED;
282 * gscps2_write() - send a byte out through the aux interface.
285 static int gscps2_write(struct serio *port, unsigned char data)
287 struct gscps2port *ps2port = port->port_data;
289 if (!gscps2_writeb_output(ps2port, data)) {
290 printk(KERN_DEBUG PFX "sending byte %#x failed.\n", data);
291 return -1;
293 return 0;
297 * gscps2_open() is called when a port is opened by the higher layer.
298 * It resets and enables the port.
301 static int gscps2_open(struct serio *port)
303 struct gscps2port *ps2port = port->port_data;
305 gscps2_reset(ps2port);
307 /* enable it */
308 gscps2_enable(ps2port, ENABLE);
310 gscps2_interrupt(0, NULL);
312 return 0;
316 * gscps2_close() disables the port
319 static void gscps2_close(struct serio *port)
321 struct gscps2port *ps2port = port->port_data;
322 gscps2_enable(ps2port, DISABLE);
326 * gscps2_probe() - Probes PS2 devices
327 * @return: success/error report
330 static int __devinit gscps2_probe(struct parisc_device *dev)
332 struct gscps2port *ps2port;
333 struct serio *serio;
334 unsigned long hpa = dev->hpa.start;
335 int ret;
337 if (!dev->irq)
338 return -ENODEV;
340 /* Offset for DINO PS/2. Works with LASI even */
341 if (dev->id.sversion == 0x96)
342 hpa += GSC_DINO_OFFSET;
344 ps2port = kzalloc(sizeof(struct gscps2port), GFP_KERNEL);
345 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
346 if (!ps2port || !serio) {
347 ret = -ENOMEM;
348 goto fail_nomem;
351 dev_set_drvdata(&dev->dev, ps2port);
353 ps2port->port = serio;
354 ps2port->padev = dev;
355 ps2port->addr = ioremap_nocache(hpa, GSC_STATUS + 4);
356 spin_lock_init(&ps2port->lock);
358 gscps2_reset(ps2port);
359 ps2port->id = readb(ps2port->addr + GSC_ID) & 0x0f;
361 snprintf(serio->name, sizeof(serio->name), "GSC PS/2 %s",
362 (ps2port->id == GSC_ID_KEYBOARD) ? "keyboard" : "mouse");
363 strlcpy(serio->phys, dev_name(&dev->dev), sizeof(serio->phys));
364 serio->id.type = SERIO_8042;
365 serio->write = gscps2_write;
366 serio->open = gscps2_open;
367 serio->close = gscps2_close;
368 serio->port_data = ps2port;
369 serio->dev.parent = &dev->dev;
371 ret = -EBUSY;
372 if (request_irq(dev->irq, gscps2_interrupt, IRQF_SHARED, ps2port->port->name, ps2port))
373 goto fail_miserably;
375 if (ps2port->id != GSC_ID_KEYBOARD && ps2port->id != GSC_ID_MOUSE) {
376 printk(KERN_WARNING PFX "Unsupported PS/2 port at 0x%08lx (id=%d) ignored\n",
377 hpa, ps2port->id);
378 ret = -ENODEV;
379 goto fail;
383 printk(KERN_INFO "serio: %s port at 0x%p irq %d @ %s\n",
384 ps2port->port->name,
385 ps2port->addr,
386 ps2port->padev->irq,
387 ps2port->port->phys);
389 serio_register_port(ps2port->port);
391 list_add_tail(&ps2port->node, &ps2port_list);
393 return 0;
395 fail:
396 free_irq(dev->irq, ps2port);
398 fail_miserably:
399 iounmap(ps2port->addr);
400 release_mem_region(dev->hpa.start, GSC_STATUS + 4);
402 fail_nomem:
403 kfree(ps2port);
404 kfree(serio);
405 return ret;
409 * gscps2_remove() - Removes PS2 devices
410 * @return: success/error report
413 static int __devexit gscps2_remove(struct parisc_device *dev)
415 struct gscps2port *ps2port = dev_get_drvdata(&dev->dev);
417 serio_unregister_port(ps2port->port);
418 free_irq(dev->irq, ps2port);
419 gscps2_flush(ps2port);
420 list_del(&ps2port->node);
421 iounmap(ps2port->addr);
422 dev_set_drvdata(&dev->dev, NULL);
423 kfree(ps2port);
424 return 0;
428 static struct parisc_device_id gscps2_device_tbl[] = {
429 { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00084 }, /* LASI PS/2 */
430 #ifdef DINO_TESTED
431 { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00096 }, /* DINO PS/2 */
432 #endif
433 { 0, } /* 0 terminated list */
436 static struct parisc_driver parisc_ps2_driver = {
437 .name = "gsc_ps2",
438 .id_table = gscps2_device_tbl,
439 .probe = gscps2_probe,
440 .remove = __devexit_p(gscps2_remove),
443 static int __init gscps2_init(void)
445 register_parisc_driver(&parisc_ps2_driver);
446 return 0;
449 static void __exit gscps2_exit(void)
451 unregister_parisc_driver(&parisc_ps2_driver);
455 module_init(gscps2_init);
456 module_exit(gscps2_exit);