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 / i8042.c
blob474dda2c6ed31195dcb53b37f1447c79fc06e347
1 /*
2 * i8042 keyboard and mouse controller driver for Linux
4 * Copyright (c) 1999-2004 Vojtech Pavlik
5 */
7 /*
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
13 #include <linux/types.h>
14 #include <linux/delay.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/ioport.h>
18 #include <linux/init.h>
19 #include <linux/serio.h>
20 #include <linux/err.h>
21 #include <linux/rcupdate.h>
22 #include <linux/platform_device.h>
23 #include <linux/i8042.h>
24 #include <linux/slab.h>
26 #include <asm/io.h>
28 MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
29 MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
30 MODULE_LICENSE("GPL");
32 static bool i8042_nokbd;
33 module_param_named(nokbd, i8042_nokbd, bool, 0);
34 MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
36 static bool i8042_noaux;
37 module_param_named(noaux, i8042_noaux, bool, 0);
38 MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
40 static bool i8042_nomux;
41 module_param_named(nomux, i8042_nomux, bool, 0);
42 MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
44 static bool i8042_unlock;
45 module_param_named(unlock, i8042_unlock, bool, 0);
46 MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
48 static bool i8042_reset;
49 module_param_named(reset, i8042_reset, bool, 0);
50 MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
52 static bool i8042_direct;
53 module_param_named(direct, i8042_direct, bool, 0);
54 MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
56 static bool i8042_dumbkbd;
57 module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
58 MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
60 static bool i8042_noloop;
61 module_param_named(noloop, i8042_noloop, bool, 0);
62 MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
64 static bool i8042_notimeout;
65 module_param_named(notimeout, i8042_notimeout, bool, 0);
66 MODULE_PARM_DESC(notimeout, "Ignore timeouts signalled by i8042");
68 #ifdef CONFIG_X86
69 static bool i8042_dritek;
70 module_param_named(dritek, i8042_dritek, bool, 0);
71 MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
72 #endif
74 #ifdef CONFIG_PNP
75 static bool i8042_nopnp;
76 module_param_named(nopnp, i8042_nopnp, bool, 0);
77 MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
78 #endif
80 #define DEBUG
81 #ifdef DEBUG
82 static bool i8042_debug;
83 module_param_named(debug, i8042_debug, bool, 0600);
84 MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
85 #endif
87 static bool i8042_bypass_aux_irq_test;
89 #include "i8042.h"
92 * i8042_lock protects serialization between i8042_command and
93 * the interrupt handler.
95 static DEFINE_SPINLOCK(i8042_lock);
98 * Writers to AUX and KBD ports as well as users issuing i8042_command
99 * directly should acquire i8042_mutex (by means of calling
100 * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
101 * they do not disturb each other (unfortunately in many i8042
102 * implementations write to one of the ports will immediately abort
103 * command that is being processed by another port).
105 static DEFINE_MUTEX(i8042_mutex);
107 struct i8042_port {
108 struct serio *serio;
109 int irq;
110 bool exists;
111 signed char mux;
114 #define I8042_KBD_PORT_NO 0
115 #define I8042_AUX_PORT_NO 1
116 #define I8042_MUX_PORT_NO 2
117 #define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
119 static struct i8042_port i8042_ports[I8042_NUM_PORTS];
121 static unsigned char i8042_initial_ctr;
122 static unsigned char i8042_ctr;
123 static bool i8042_mux_present;
124 static bool i8042_kbd_irq_registered;
125 static bool i8042_aux_irq_registered;
126 static unsigned char i8042_suppress_kbd_ack;
127 static struct platform_device *i8042_platform_device;
129 static irqreturn_t i8042_interrupt(int irq, void *dev_id);
130 static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
131 struct serio *serio);
133 void i8042_lock_chip(void)
135 mutex_lock(&i8042_mutex);
137 EXPORT_SYMBOL(i8042_lock_chip);
139 void i8042_unlock_chip(void)
141 mutex_unlock(&i8042_mutex);
143 EXPORT_SYMBOL(i8042_unlock_chip);
145 int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
146 struct serio *serio))
148 unsigned long flags;
149 int ret = 0;
151 spin_lock_irqsave(&i8042_lock, flags);
153 if (i8042_platform_filter) {
154 ret = -EBUSY;
155 goto out;
158 i8042_platform_filter = filter;
160 out:
161 spin_unlock_irqrestore(&i8042_lock, flags);
162 return ret;
164 EXPORT_SYMBOL(i8042_install_filter);
166 int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
167 struct serio *port))
169 unsigned long flags;
170 int ret = 0;
172 spin_lock_irqsave(&i8042_lock, flags);
174 if (i8042_platform_filter != filter) {
175 ret = -EINVAL;
176 goto out;
179 i8042_platform_filter = NULL;
181 out:
182 spin_unlock_irqrestore(&i8042_lock, flags);
183 return ret;
185 EXPORT_SYMBOL(i8042_remove_filter);
188 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
189 * be ready for reading values from it / writing values to it.
190 * Called always with i8042_lock held.
193 static int i8042_wait_read(void)
195 int i = 0;
197 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
198 udelay(50);
199 i++;
201 return -(i == I8042_CTL_TIMEOUT);
204 static int i8042_wait_write(void)
206 int i = 0;
208 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
209 udelay(50);
210 i++;
212 return -(i == I8042_CTL_TIMEOUT);
216 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
217 * of the i8042 down the toilet.
220 static int i8042_flush(void)
222 unsigned long flags;
223 unsigned char data, str;
224 int i = 0;
226 spin_lock_irqsave(&i8042_lock, flags);
228 while (((str = i8042_read_status()) & I8042_STR_OBF) && (i < I8042_BUFFER_SIZE)) {
229 udelay(50);
230 data = i8042_read_data();
231 i++;
232 dbg("%02x <- i8042 (flush, %s)", data,
233 str & I8042_STR_AUXDATA ? "aux" : "kbd");
236 spin_unlock_irqrestore(&i8042_lock, flags);
238 return i;
242 * i8042_command() executes a command on the i8042. It also sends the input
243 * parameter(s) of the commands to it, and receives the output value(s). The
244 * parameters are to be stored in the param array, and the output is placed
245 * into the same array. The number of the parameters and output values is
246 * encoded in bits 8-11 of the command number.
249 static int __i8042_command(unsigned char *param, int command)
251 int i, error;
253 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
254 return -1;
256 error = i8042_wait_write();
257 if (error)
258 return error;
260 dbg("%02x -> i8042 (command)", command & 0xff);
261 i8042_write_command(command & 0xff);
263 for (i = 0; i < ((command >> 12) & 0xf); i++) {
264 error = i8042_wait_write();
265 if (error)
266 return error;
267 dbg("%02x -> i8042 (parameter)", param[i]);
268 i8042_write_data(param[i]);
271 for (i = 0; i < ((command >> 8) & 0xf); i++) {
272 error = i8042_wait_read();
273 if (error) {
274 dbg(" -- i8042 (timeout)");
275 return error;
278 if (command == I8042_CMD_AUX_LOOP &&
279 !(i8042_read_status() & I8042_STR_AUXDATA)) {
280 dbg(" -- i8042 (auxerr)");
281 return -1;
284 param[i] = i8042_read_data();
285 dbg("%02x <- i8042 (return)", param[i]);
288 return 0;
291 int i8042_command(unsigned char *param, int command)
293 unsigned long flags;
294 int retval;
296 spin_lock_irqsave(&i8042_lock, flags);
297 retval = __i8042_command(param, command);
298 spin_unlock_irqrestore(&i8042_lock, flags);
300 return retval;
302 EXPORT_SYMBOL(i8042_command);
305 * i8042_kbd_write() sends a byte out through the keyboard interface.
308 static int i8042_kbd_write(struct serio *port, unsigned char c)
310 unsigned long flags;
311 int retval = 0;
313 spin_lock_irqsave(&i8042_lock, flags);
315 if (!(retval = i8042_wait_write())) {
316 dbg("%02x -> i8042 (kbd-data)", c);
317 i8042_write_data(c);
320 spin_unlock_irqrestore(&i8042_lock, flags);
322 return retval;
326 * i8042_aux_write() sends a byte out through the aux interface.
329 static int i8042_aux_write(struct serio *serio, unsigned char c)
331 struct i8042_port *port = serio->port_data;
333 return i8042_command(&c, port->mux == -1 ?
334 I8042_CMD_AUX_SEND :
335 I8042_CMD_MUX_SEND + port->mux);
340 * i8042_aux_close attempts to clear AUX or KBD port state by disabling
341 * and then re-enabling it.
344 static void i8042_port_close(struct serio *serio)
346 int irq_bit;
347 int disable_bit;
348 const char *port_name;
350 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
351 irq_bit = I8042_CTR_AUXINT;
352 disable_bit = I8042_CTR_AUXDIS;
353 port_name = "AUX";
354 } else {
355 irq_bit = I8042_CTR_KBDINT;
356 disable_bit = I8042_CTR_KBDDIS;
357 port_name = "KBD";
360 i8042_ctr &= ~irq_bit;
361 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
362 printk(KERN_WARNING
363 "i8042.c: Can't write CTR while closing %s port.\n",
364 port_name);
366 udelay(50);
368 i8042_ctr &= ~disable_bit;
369 i8042_ctr |= irq_bit;
370 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
371 printk(KERN_ERR "i8042.c: Can't reactivate %s port.\n",
372 port_name);
375 * See if there is any data appeared while we were messing with
376 * port state.
378 i8042_interrupt(0, NULL);
382 * i8042_start() is called by serio core when port is about to finish
383 * registering. It will mark port as existing so i8042_interrupt can
384 * start sending data through it.
386 static int i8042_start(struct serio *serio)
388 struct i8042_port *port = serio->port_data;
390 port->exists = true;
391 mb();
392 return 0;
396 * i8042_stop() marks serio port as non-existing so i8042_interrupt
397 * will not try to send data to the port that is about to go away.
398 * The function is called by serio core as part of unregister procedure.
400 static void i8042_stop(struct serio *serio)
402 struct i8042_port *port = serio->port_data;
404 port->exists = false;
407 * We synchronize with both AUX and KBD IRQs because there is
408 * a (very unlikely) chance that AUX IRQ is raised for KBD port
409 * and vice versa.
411 synchronize_irq(I8042_AUX_IRQ);
412 synchronize_irq(I8042_KBD_IRQ);
413 port->serio = NULL;
417 * i8042_filter() filters out unwanted bytes from the input data stream.
418 * It is called from i8042_interrupt and thus is running with interrupts
419 * off and i8042_lock held.
421 static bool i8042_filter(unsigned char data, unsigned char str,
422 struct serio *serio)
424 if (unlikely(i8042_suppress_kbd_ack)) {
425 if ((~str & I8042_STR_AUXDATA) &&
426 (data == 0xfa || data == 0xfe)) {
427 i8042_suppress_kbd_ack--;
428 dbg("Extra keyboard ACK - filtered out\n");
429 return true;
433 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
434 dbg("Filtered out by platform filter\n");
435 return true;
438 return false;
442 * i8042_interrupt() is the most important function in this driver -
443 * it handles the interrupts from the i8042, and sends incoming bytes
444 * to the upper layers.
447 static irqreturn_t i8042_interrupt(int irq, void *dev_id)
449 struct i8042_port *port;
450 struct serio *serio;
451 unsigned long flags;
452 unsigned char str, data;
453 unsigned int dfl;
454 unsigned int port_no;
455 bool filtered;
456 int ret = 1;
458 spin_lock_irqsave(&i8042_lock, flags);
460 str = i8042_read_status();
461 if (unlikely(~str & I8042_STR_OBF)) {
462 spin_unlock_irqrestore(&i8042_lock, flags);
463 if (irq) dbg("Interrupt %d, without any data", irq);
464 ret = 0;
465 goto out;
468 data = i8042_read_data();
470 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
471 static unsigned long last_transmit;
472 static unsigned char last_str;
474 dfl = 0;
475 if (str & I8042_STR_MUXERR) {
476 dbg("MUX error, status is %02x, data is %02x", str, data);
478 * When MUXERR condition is signalled the data register can only contain
479 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
480 * it is not always the case. Some KBCs also report 0xfc when there is
481 * nothing connected to the port while others sometimes get confused which
482 * port the data came from and signal error leaving the data intact. They
483 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
484 * to legacy mode yet, when we see one we'll add proper handling).
485 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
486 * rest assume that the data came from the same serio last byte
487 * was transmitted (if transmission happened not too long ago).
490 switch (data) {
491 default:
492 if (time_before(jiffies, last_transmit + HZ/10)) {
493 str = last_str;
494 break;
496 /* fall through - report timeout */
497 case 0xfc:
498 case 0xfd:
499 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
500 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
504 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
505 last_str = str;
506 last_transmit = jiffies;
507 } else {
509 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
510 ((str & I8042_STR_TIMEOUT && !i8042_notimeout) ? SERIO_TIMEOUT : 0);
512 port_no = (str & I8042_STR_AUXDATA) ?
513 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
516 port = &i8042_ports[port_no];
517 serio = port->exists ? port->serio : NULL;
519 dbg("%02x <- i8042 (interrupt, %d, %d%s%s)",
520 data, port_no, irq,
521 dfl & SERIO_PARITY ? ", bad parity" : "",
522 dfl & SERIO_TIMEOUT ? ", timeout" : "");
524 filtered = i8042_filter(data, str, serio);
526 spin_unlock_irqrestore(&i8042_lock, flags);
528 if (likely(port->exists && !filtered))
529 serio_interrupt(serio, data, dfl);
531 out:
532 return IRQ_RETVAL(ret);
536 * i8042_enable_kbd_port enables keyboard port on chip
539 static int i8042_enable_kbd_port(void)
541 i8042_ctr &= ~I8042_CTR_KBDDIS;
542 i8042_ctr |= I8042_CTR_KBDINT;
544 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
545 i8042_ctr &= ~I8042_CTR_KBDINT;
546 i8042_ctr |= I8042_CTR_KBDDIS;
547 printk(KERN_ERR "i8042.c: Failed to enable KBD port.\n");
548 return -EIO;
551 return 0;
555 * i8042_enable_aux_port enables AUX (mouse) port on chip
558 static int i8042_enable_aux_port(void)
560 i8042_ctr &= ~I8042_CTR_AUXDIS;
561 i8042_ctr |= I8042_CTR_AUXINT;
563 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
564 i8042_ctr &= ~I8042_CTR_AUXINT;
565 i8042_ctr |= I8042_CTR_AUXDIS;
566 printk(KERN_ERR "i8042.c: Failed to enable AUX port.\n");
567 return -EIO;
570 return 0;
574 * i8042_enable_mux_ports enables 4 individual AUX ports after
575 * the controller has been switched into Multiplexed mode
578 static int i8042_enable_mux_ports(void)
580 unsigned char param;
581 int i;
583 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
584 i8042_command(&param, I8042_CMD_MUX_PFX + i);
585 i8042_command(&param, I8042_CMD_AUX_ENABLE);
588 return i8042_enable_aux_port();
592 * i8042_set_mux_mode checks whether the controller has an
593 * active multiplexor and puts the chip into Multiplexed (true)
594 * or Legacy (false) mode.
597 static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
600 unsigned char param, val;
602 * Get rid of bytes in the queue.
605 i8042_flush();
608 * Internal loopback test - send three bytes, they should come back from the
609 * mouse interface, the last should be version.
612 param = val = 0xf0;
613 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
614 return -1;
615 param = val = multiplex ? 0x56 : 0xf6;
616 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
617 return -1;
618 param = val = multiplex ? 0xa4 : 0xa5;
619 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
620 return -1;
622 if (param == 0xac)
623 return -1;
625 if (mux_version)
626 *mux_version = param;
628 return 0;
632 * i8042_check_mux() checks whether the controller supports the PS/2 Active
633 * Multiplexing specification by Synaptics, Phoenix, Insyde and
634 * LCS/Telegraphics.
637 static int __init i8042_check_mux(void)
639 unsigned char mux_version;
641 if (i8042_set_mux_mode(true, &mux_version))
642 return -1;
644 printk(KERN_INFO "i8042.c: Detected active multiplexing controller, rev %d.%d.\n",
645 (mux_version >> 4) & 0xf, mux_version & 0xf);
648 * Disable all muxed ports by disabling AUX.
650 i8042_ctr |= I8042_CTR_AUXDIS;
651 i8042_ctr &= ~I8042_CTR_AUXINT;
653 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
654 printk(KERN_ERR "i8042.c: Failed to disable AUX port, can't use MUX.\n");
655 return -EIO;
658 i8042_mux_present = true;
660 return 0;
664 * The following is used to test AUX IRQ delivery.
666 static struct completion i8042_aux_irq_delivered __initdata;
667 static bool i8042_irq_being_tested __initdata;
669 static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
671 unsigned long flags;
672 unsigned char str, data;
673 int ret = 0;
675 spin_lock_irqsave(&i8042_lock, flags);
676 str = i8042_read_status();
677 if (str & I8042_STR_OBF) {
678 data = i8042_read_data();
679 dbg("%02x <- i8042 (aux_test_irq, %s)",
680 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
681 if (i8042_irq_being_tested &&
682 data == 0xa5 && (str & I8042_STR_AUXDATA))
683 complete(&i8042_aux_irq_delivered);
684 ret = 1;
686 spin_unlock_irqrestore(&i8042_lock, flags);
688 return IRQ_RETVAL(ret);
692 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
693 * verifies success by readinng CTR. Used when testing for presence of AUX
694 * port.
696 static int __init i8042_toggle_aux(bool on)
698 unsigned char param;
699 int i;
701 if (i8042_command(&param,
702 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
703 return -1;
705 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
706 for (i = 0; i < 100; i++) {
707 udelay(50);
709 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
710 return -1;
712 if (!(param & I8042_CTR_AUXDIS) == on)
713 return 0;
716 return -1;
720 * i8042_check_aux() applies as much paranoia as it can at detecting
721 * the presence of an AUX interface.
724 static int __init i8042_check_aux(void)
726 int retval = -1;
727 bool irq_registered = false;
728 bool aux_loop_broken = false;
729 unsigned long flags;
730 unsigned char param;
733 * Get rid of bytes in the queue.
736 i8042_flush();
739 * Internal loopback test - filters out AT-type i8042's. Unfortunately
740 * SiS screwed up and their 5597 doesn't support the LOOP command even
741 * though it has an AUX port.
744 param = 0x5a;
745 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
746 if (retval || param != 0x5a) {
749 * External connection test - filters out AT-soldered PS/2 i8042's
750 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
751 * 0xfa - no error on some notebooks which ignore the spec
752 * Because it's common for chipsets to return error on perfectly functioning
753 * AUX ports, we test for this only when the LOOP command failed.
756 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
757 (param && param != 0xfa && param != 0xff))
758 return -1;
761 * If AUX_LOOP completed without error but returned unexpected data
762 * mark it as broken
764 if (!retval)
765 aux_loop_broken = true;
769 * Bit assignment test - filters out PS/2 i8042's in AT mode
772 if (i8042_toggle_aux(false)) {
773 printk(KERN_WARNING "Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
774 printk(KERN_WARNING "If AUX port is really absent please use the 'i8042.noaux' option.\n");
777 if (i8042_toggle_aux(true))
778 return -1;
781 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
782 * used it for a PCI card or somethig else.
785 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
787 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
788 * is working and hope we are right.
790 retval = 0;
791 goto out;
794 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
795 "i8042", i8042_platform_device))
796 goto out;
798 irq_registered = true;
800 if (i8042_enable_aux_port())
801 goto out;
803 spin_lock_irqsave(&i8042_lock, flags);
805 init_completion(&i8042_aux_irq_delivered);
806 i8042_irq_being_tested = true;
808 param = 0xa5;
809 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
811 spin_unlock_irqrestore(&i8042_lock, flags);
813 if (retval)
814 goto out;
816 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
817 msecs_to_jiffies(250)) == 0) {
819 * AUX IRQ was never delivered so we need to flush the controller to
820 * get rid of the byte we put there; otherwise keyboard may not work.
822 dbg(" -- i8042 (aux irq test timeout)");
823 i8042_flush();
824 retval = -1;
827 out:
830 * Disable the interface.
833 i8042_ctr |= I8042_CTR_AUXDIS;
834 i8042_ctr &= ~I8042_CTR_AUXINT;
836 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
837 retval = -1;
839 if (irq_registered)
840 free_irq(I8042_AUX_IRQ, i8042_platform_device);
842 return retval;
845 static int i8042_controller_check(void)
847 if (i8042_flush() == I8042_BUFFER_SIZE) {
848 printk(KERN_ERR "i8042.c: No controller found.\n");
849 return -ENODEV;
852 return 0;
855 static int i8042_controller_selftest(void)
857 unsigned char param;
858 int i = 0;
861 * We try this 5 times; on some really fragile systems this does not
862 * take the first time...
864 do {
866 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
867 printk(KERN_ERR "i8042.c: i8042 controller self test timeout.\n");
868 return -ENODEV;
871 if (param == I8042_RET_CTL_TEST)
872 return 0;
874 printk(KERN_ERR "i8042.c: i8042 controller selftest failed. (%#x != %#x)\n",
875 param, I8042_RET_CTL_TEST);
876 msleep(50);
877 } while (i++ < 5);
879 #ifdef CONFIG_X86
881 * On x86, we don't fail entire i8042 initialization if controller
882 * reset fails in hopes that keyboard port will still be functional
883 * and user will still get a working keyboard. This is especially
884 * important on netbooks. On other arches we trust hardware more.
886 printk(KERN_INFO
887 "i8042: giving up on controller selftest, continuing anyway...\n");
888 return 0;
889 #else
890 return -EIO;
891 #endif
895 * i8042_controller init initializes the i8042 controller, and,
896 * most importantly, sets it into non-xlated mode if that's
897 * desired.
900 static int i8042_controller_init(void)
902 unsigned long flags;
903 int n = 0;
904 unsigned char ctr[2];
907 * Save the CTR for restore on unload / reboot.
910 do {
911 if (n >= 10) {
912 printk(KERN_ERR
913 "i8042.c: Unable to get stable CTR read.\n");
914 return -EIO;
917 if (n != 0)
918 udelay(50);
920 if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
921 printk(KERN_ERR
922 "i8042.c: Can't read CTR while initializing i8042.\n");
923 return -EIO;
926 } while (n < 2 || ctr[0] != ctr[1]);
928 i8042_initial_ctr = i8042_ctr = ctr[0];
931 * Disable the keyboard interface and interrupt.
934 i8042_ctr |= I8042_CTR_KBDDIS;
935 i8042_ctr &= ~I8042_CTR_KBDINT;
938 * Handle keylock.
941 spin_lock_irqsave(&i8042_lock, flags);
942 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
943 if (i8042_unlock)
944 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
945 else
946 printk(KERN_WARNING "i8042.c: Warning: Keylock active.\n");
948 spin_unlock_irqrestore(&i8042_lock, flags);
951 * If the chip is configured into nontranslated mode by the BIOS, don't
952 * bother enabling translating and be happy.
955 if (~i8042_ctr & I8042_CTR_XLATE)
956 i8042_direct = true;
959 * Set nontranslated mode for the kbd interface if requested by an option.
960 * After this the kbd interface becomes a simple serial in/out, like the aux
961 * interface is. We don't do this by default, since it can confuse notebook
962 * BIOSes.
965 if (i8042_direct)
966 i8042_ctr &= ~I8042_CTR_XLATE;
969 * Write CTR back.
972 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
973 printk(KERN_ERR "i8042.c: Can't write CTR while initializing i8042.\n");
974 return -EIO;
978 * Flush whatever accumulated while we were disabling keyboard port.
981 i8042_flush();
983 return 0;
988 * Reset the controller and reset CRT to the original value set by BIOS.
991 static void i8042_controller_reset(void)
993 i8042_flush();
996 * Disable both KBD and AUX interfaces so they don't get in the way
999 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1000 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1002 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
1003 printk(KERN_WARNING "i8042.c: Can't write CTR while resetting.\n");
1006 * Disable MUX mode if present.
1009 if (i8042_mux_present)
1010 i8042_set_mux_mode(false, NULL);
1013 * Reset the controller if requested.
1016 if (i8042_reset)
1017 i8042_controller_selftest();
1020 * Restore the original control register setting.
1023 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
1024 printk(KERN_WARNING "i8042.c: Can't restore CTR.\n");
1029 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
1030 * when kernel panics. Flashing LEDs is useful for users running X who may
1031 * not see the console and will help distingushing panics from "real"
1032 * lockups.
1034 * Note that DELAY has a limit of 10ms so we will not get stuck here
1035 * waiting for KBC to free up even if KBD interrupt is off
1038 #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1040 static long i8042_panic_blink(int state)
1042 long delay = 0;
1043 char led;
1045 led = (state) ? 0x01 | 0x04 : 0;
1046 while (i8042_read_status() & I8042_STR_IBF)
1047 DELAY;
1048 dbg("%02x -> i8042 (panic blink)", 0xed);
1049 i8042_suppress_kbd_ack = 2;
1050 i8042_write_data(0xed); /* set leds */
1051 DELAY;
1052 while (i8042_read_status() & I8042_STR_IBF)
1053 DELAY;
1054 DELAY;
1055 dbg("%02x -> i8042 (panic blink)", led);
1056 i8042_write_data(led);
1057 DELAY;
1058 return delay;
1061 #undef DELAY
1063 #ifdef CONFIG_X86
1064 static void i8042_dritek_enable(void)
1066 char param = 0x90;
1067 int error;
1069 error = i8042_command(&param, 0x1059);
1070 if (error)
1071 printk(KERN_WARNING
1072 "Failed to enable DRITEK extension: %d\n",
1073 error);
1075 #endif
1077 #ifdef CONFIG_PM
1080 * Here we try to reset everything back to a state we had
1081 * before suspending.
1084 static int i8042_controller_resume(bool force_reset)
1086 int error;
1088 error = i8042_controller_check();
1089 if (error)
1090 return error;
1092 if (i8042_reset || force_reset) {
1093 error = i8042_controller_selftest();
1094 if (error)
1095 return error;
1099 * Restore original CTR value and disable all ports
1102 i8042_ctr = i8042_initial_ctr;
1103 if (i8042_direct)
1104 i8042_ctr &= ~I8042_CTR_XLATE;
1105 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1106 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
1107 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1108 printk(KERN_WARNING "i8042: Can't write CTR to resume, retrying...\n");
1109 msleep(50);
1110 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1111 printk(KERN_ERR "i8042: CTR write retry failed\n");
1112 return -EIO;
1117 #ifdef CONFIG_X86
1118 if (i8042_dritek)
1119 i8042_dritek_enable();
1120 #endif
1122 if (i8042_mux_present) {
1123 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
1124 printk(KERN_WARNING
1125 "i8042: failed to resume active multiplexor, "
1126 "mouse won't work.\n");
1127 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
1128 i8042_enable_aux_port();
1130 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1131 i8042_enable_kbd_port();
1133 i8042_interrupt(0, NULL);
1135 return 0;
1139 * Here we try to restore the original BIOS settings to avoid
1140 * upsetting it.
1143 static int i8042_pm_reset(struct device *dev)
1145 i8042_controller_reset();
1147 return 0;
1150 static int i8042_pm_resume(struct device *dev)
1153 * On resume from S2R we always try to reset the controller
1154 * to bring it in a sane state. (In case of S2D we expect
1155 * BIOS to reset the controller for us.)
1157 return i8042_controller_resume(true);
1160 static int i8042_pm_thaw(struct device *dev)
1162 i8042_interrupt(0, NULL);
1164 return 0;
1167 static int i8042_pm_restore(struct device *dev)
1169 return i8042_controller_resume(false);
1172 static const struct dev_pm_ops i8042_pm_ops = {
1173 .suspend = i8042_pm_reset,
1174 .resume = i8042_pm_resume,
1175 .thaw = i8042_pm_thaw,
1176 .poweroff = i8042_pm_reset,
1177 .restore = i8042_pm_restore,
1180 #endif /* CONFIG_PM */
1183 * We need to reset the 8042 back to original mode on system shutdown,
1184 * because otherwise BIOSes will be confused.
1187 static void i8042_shutdown(struct platform_device *dev)
1189 i8042_controller_reset();
1192 static int __init i8042_create_kbd_port(void)
1194 struct serio *serio;
1195 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1197 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
1198 if (!serio)
1199 return -ENOMEM;
1201 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1202 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
1203 serio->start = i8042_start;
1204 serio->stop = i8042_stop;
1205 serio->close = i8042_port_close;
1206 serio->port_data = port;
1207 serio->dev.parent = &i8042_platform_device->dev;
1208 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
1209 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
1211 port->serio = serio;
1212 port->irq = I8042_KBD_IRQ;
1214 return 0;
1217 static int __init i8042_create_aux_port(int idx)
1219 struct serio *serio;
1220 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1221 struct i8042_port *port = &i8042_ports[port_no];
1223 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
1224 if (!serio)
1225 return -ENOMEM;
1227 serio->id.type = SERIO_8042;
1228 serio->write = i8042_aux_write;
1229 serio->start = i8042_start;
1230 serio->stop = i8042_stop;
1231 serio->port_data = port;
1232 serio->dev.parent = &i8042_platform_device->dev;
1233 if (idx < 0) {
1234 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1235 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
1236 serio->close = i8042_port_close;
1237 } else {
1238 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1239 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
1242 port->serio = serio;
1243 port->mux = idx;
1244 port->irq = I8042_AUX_IRQ;
1246 return 0;
1249 static void __init i8042_free_kbd_port(void)
1251 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1252 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1255 static void __init i8042_free_aux_ports(void)
1257 int i;
1259 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1260 kfree(i8042_ports[i].serio);
1261 i8042_ports[i].serio = NULL;
1265 static void __init i8042_register_ports(void)
1267 int i;
1269 for (i = 0; i < I8042_NUM_PORTS; i++) {
1270 if (i8042_ports[i].serio) {
1271 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1272 i8042_ports[i].serio->name,
1273 (unsigned long) I8042_DATA_REG,
1274 (unsigned long) I8042_COMMAND_REG,
1275 i8042_ports[i].irq);
1276 serio_register_port(i8042_ports[i].serio);
1281 static void __devexit i8042_unregister_ports(void)
1283 int i;
1285 for (i = 0; i < I8042_NUM_PORTS; i++) {
1286 if (i8042_ports[i].serio) {
1287 serio_unregister_port(i8042_ports[i].serio);
1288 i8042_ports[i].serio = NULL;
1294 * Checks whether port belongs to i8042 controller.
1296 bool i8042_check_port_owner(const struct serio *port)
1298 int i;
1300 for (i = 0; i < I8042_NUM_PORTS; i++)
1301 if (i8042_ports[i].serio == port)
1302 return true;
1304 return false;
1306 EXPORT_SYMBOL(i8042_check_port_owner);
1308 static void i8042_free_irqs(void)
1310 if (i8042_aux_irq_registered)
1311 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1312 if (i8042_kbd_irq_registered)
1313 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1315 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
1318 static int __init i8042_setup_aux(void)
1320 int (*aux_enable)(void);
1321 int error;
1322 int i;
1324 if (i8042_check_aux())
1325 return -ENODEV;
1327 if (i8042_nomux || i8042_check_mux()) {
1328 error = i8042_create_aux_port(-1);
1329 if (error)
1330 goto err_free_ports;
1331 aux_enable = i8042_enable_aux_port;
1332 } else {
1333 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1334 error = i8042_create_aux_port(i);
1335 if (error)
1336 goto err_free_ports;
1338 aux_enable = i8042_enable_mux_ports;
1341 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1342 "i8042", i8042_platform_device);
1343 if (error)
1344 goto err_free_ports;
1346 if (aux_enable())
1347 goto err_free_irq;
1349 i8042_aux_irq_registered = true;
1350 return 0;
1352 err_free_irq:
1353 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1354 err_free_ports:
1355 i8042_free_aux_ports();
1356 return error;
1359 static int __init i8042_setup_kbd(void)
1361 int error;
1363 error = i8042_create_kbd_port();
1364 if (error)
1365 return error;
1367 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1368 "i8042", i8042_platform_device);
1369 if (error)
1370 goto err_free_port;
1372 error = i8042_enable_kbd_port();
1373 if (error)
1374 goto err_free_irq;
1376 i8042_kbd_irq_registered = true;
1377 return 0;
1379 err_free_irq:
1380 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1381 err_free_port:
1382 i8042_free_kbd_port();
1383 return error;
1386 static int __init i8042_probe(struct platform_device *dev)
1388 int error;
1390 i8042_platform_device = dev;
1392 if (i8042_reset) {
1393 error = i8042_controller_selftest();
1394 if (error)
1395 return error;
1398 error = i8042_controller_init();
1399 if (error)
1400 return error;
1402 #ifdef CONFIG_X86
1403 if (i8042_dritek)
1404 i8042_dritek_enable();
1405 #endif
1407 if (!i8042_noaux) {
1408 error = i8042_setup_aux();
1409 if (error && error != -ENODEV && error != -EBUSY)
1410 goto out_fail;
1413 if (!i8042_nokbd) {
1414 error = i8042_setup_kbd();
1415 if (error)
1416 goto out_fail;
1419 * Ok, everything is ready, let's register all serio ports
1421 i8042_register_ports();
1423 return 0;
1425 out_fail:
1426 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1427 i8042_free_irqs();
1428 i8042_controller_reset();
1429 i8042_platform_device = NULL;
1431 return error;
1434 static int __devexit i8042_remove(struct platform_device *dev)
1436 i8042_unregister_ports();
1437 i8042_free_irqs();
1438 i8042_controller_reset();
1439 i8042_platform_device = NULL;
1441 return 0;
1444 static struct platform_driver i8042_driver = {
1445 .driver = {
1446 .name = "i8042",
1447 .owner = THIS_MODULE,
1448 #ifdef CONFIG_PM
1449 .pm = &i8042_pm_ops,
1450 #endif
1452 .remove = __devexit_p(i8042_remove),
1453 .shutdown = i8042_shutdown,
1456 static int __init i8042_init(void)
1458 struct platform_device *pdev;
1459 int err;
1461 dbg_init();
1463 err = i8042_platform_init();
1464 if (err)
1465 return err;
1467 err = i8042_controller_check();
1468 if (err)
1469 goto err_platform_exit;
1471 pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
1472 if (IS_ERR(pdev)) {
1473 err = PTR_ERR(pdev);
1474 goto err_platform_exit;
1477 panic_blink = i8042_panic_blink;
1479 return 0;
1481 err_platform_exit:
1482 i8042_platform_exit();
1483 return err;
1486 static void __exit i8042_exit(void)
1488 platform_device_unregister(i8042_platform_device);
1489 platform_driver_unregister(&i8042_driver);
1490 i8042_platform_exit();
1492 panic_blink = NULL;
1495 module_init(i8042_init);
1496 module_exit(i8042_exit);