mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / drivers / input / serio / i8042.c
blob09da61eb07faa7cd27f54898c18e8aecebff3dbb
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/types.h>
16 #include <linux/delay.h>
17 #include <linux/module.h>
18 #include <linux/interrupt.h>
19 #include <linux/ioport.h>
20 #include <linux/init.h>
21 #include <linux/serio.h>
22 #include <linux/err.h>
23 #include <linux/rcupdate.h>
24 #include <linux/platform_device.h>
25 #include <linux/i8042.h>
26 #include <linux/slab.h>
28 #include <asm/io.h>
30 MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
31 MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
32 MODULE_LICENSE("GPL");
34 static bool i8042_nokbd;
35 module_param_named(nokbd, i8042_nokbd, bool, 0);
36 MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
38 static bool i8042_noaux;
39 module_param_named(noaux, i8042_noaux, bool, 0);
40 MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
42 static bool i8042_nomux;
43 module_param_named(nomux, i8042_nomux, bool, 0);
44 MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
46 static bool i8042_unlock;
47 module_param_named(unlock, i8042_unlock, bool, 0);
48 MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
50 static bool i8042_reset;
51 module_param_named(reset, i8042_reset, bool, 0);
52 MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
54 static bool i8042_direct;
55 module_param_named(direct, i8042_direct, bool, 0);
56 MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
58 static bool i8042_dumbkbd;
59 module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
60 MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
62 static bool i8042_noloop;
63 module_param_named(noloop, i8042_noloop, bool, 0);
64 MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
66 static bool i8042_notimeout;
67 module_param_named(notimeout, i8042_notimeout, bool, 0);
68 MODULE_PARM_DESC(notimeout, "Ignore timeouts signalled by i8042");
70 static bool i8042_kbdreset;
71 module_param_named(kbdreset, i8042_kbdreset, bool, 0);
72 MODULE_PARM_DESC(kbdreset, "Reset device connected to KBD port");
74 #ifdef CONFIG_X86
75 static bool i8042_dritek;
76 module_param_named(dritek, i8042_dritek, bool, 0);
77 MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
78 #endif
80 #ifdef CONFIG_PNP
81 static bool i8042_nopnp;
82 module_param_named(nopnp, i8042_nopnp, bool, 0);
83 MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
84 #endif
86 #define DEBUG
87 #ifdef DEBUG
88 static bool i8042_debug;
89 module_param_named(debug, i8042_debug, bool, 0600);
90 MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
91 #endif
93 static bool i8042_bypass_aux_irq_test;
94 static char i8042_kbd_firmware_id[128];
95 static char i8042_aux_firmware_id[128];
97 #include "i8042.h"
100 * i8042_lock protects serialization between i8042_command and
101 * the interrupt handler.
103 static DEFINE_SPINLOCK(i8042_lock);
106 * Writers to AUX and KBD ports as well as users issuing i8042_command
107 * directly should acquire i8042_mutex (by means of calling
108 * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
109 * they do not disturb each other (unfortunately in many i8042
110 * implementations write to one of the ports will immediately abort
111 * command that is being processed by another port).
113 static DEFINE_MUTEX(i8042_mutex);
115 struct i8042_port {
116 struct serio *serio;
117 int irq;
118 bool exists;
119 signed char mux;
122 #define I8042_KBD_PORT_NO 0
123 #define I8042_AUX_PORT_NO 1
124 #define I8042_MUX_PORT_NO 2
125 #define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
127 static struct i8042_port i8042_ports[I8042_NUM_PORTS];
129 static unsigned char i8042_initial_ctr;
130 static unsigned char i8042_ctr;
131 static bool i8042_mux_present;
132 static bool i8042_kbd_irq_registered;
133 static bool i8042_aux_irq_registered;
134 static unsigned char i8042_suppress_kbd_ack;
135 static struct platform_device *i8042_platform_device;
137 static irqreturn_t i8042_interrupt(int irq, void *dev_id);
138 static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
139 struct serio *serio);
141 void i8042_lock_chip(void)
143 mutex_lock(&i8042_mutex);
145 EXPORT_SYMBOL(i8042_lock_chip);
147 void i8042_unlock_chip(void)
149 mutex_unlock(&i8042_mutex);
151 EXPORT_SYMBOL(i8042_unlock_chip);
153 int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
154 struct serio *serio))
156 unsigned long flags;
157 int ret = 0;
159 spin_lock_irqsave(&i8042_lock, flags);
161 if (i8042_platform_filter) {
162 ret = -EBUSY;
163 goto out;
166 i8042_platform_filter = filter;
168 out:
169 spin_unlock_irqrestore(&i8042_lock, flags);
170 return ret;
172 EXPORT_SYMBOL(i8042_install_filter);
174 int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
175 struct serio *port))
177 unsigned long flags;
178 int ret = 0;
180 spin_lock_irqsave(&i8042_lock, flags);
182 if (i8042_platform_filter != filter) {
183 ret = -EINVAL;
184 goto out;
187 i8042_platform_filter = NULL;
189 out:
190 spin_unlock_irqrestore(&i8042_lock, flags);
191 return ret;
193 EXPORT_SYMBOL(i8042_remove_filter);
196 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
197 * be ready for reading values from it / writing values to it.
198 * Called always with i8042_lock held.
201 static int i8042_wait_read(void)
203 int i = 0;
205 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
206 udelay(50);
207 i++;
209 return -(i == I8042_CTL_TIMEOUT);
212 static int i8042_wait_write(void)
214 int i = 0;
216 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
217 udelay(50);
218 i++;
220 return -(i == I8042_CTL_TIMEOUT);
224 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
225 * of the i8042 down the toilet.
228 static int i8042_flush(void)
230 unsigned long flags;
231 unsigned char data, str;
232 int count = 0;
233 int retval = 0;
235 spin_lock_irqsave(&i8042_lock, flags);
237 while ((str = i8042_read_status()) & I8042_STR_OBF) {
238 if (count++ < I8042_BUFFER_SIZE) {
239 udelay(50);
240 data = i8042_read_data();
241 dbg("%02x <- i8042 (flush, %s)\n",
242 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
243 } else {
244 retval = -EIO;
245 break;
249 spin_unlock_irqrestore(&i8042_lock, flags);
251 return retval;
255 * i8042_command() executes a command on the i8042. It also sends the input
256 * parameter(s) of the commands to it, and receives the output value(s). The
257 * parameters are to be stored in the param array, and the output is placed
258 * into the same array. The number of the parameters and output values is
259 * encoded in bits 8-11 of the command number.
262 static int __i8042_command(unsigned char *param, int command)
264 int i, error;
266 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
267 return -1;
269 error = i8042_wait_write();
270 if (error)
271 return error;
273 dbg("%02x -> i8042 (command)\n", command & 0xff);
274 i8042_write_command(command & 0xff);
276 for (i = 0; i < ((command >> 12) & 0xf); i++) {
277 error = i8042_wait_write();
278 if (error)
279 return error;
280 dbg("%02x -> i8042 (parameter)\n", param[i]);
281 i8042_write_data(param[i]);
284 for (i = 0; i < ((command >> 8) & 0xf); i++) {
285 error = i8042_wait_read();
286 if (error) {
287 dbg(" -- i8042 (timeout)\n");
288 return error;
291 if (command == I8042_CMD_AUX_LOOP &&
292 !(i8042_read_status() & I8042_STR_AUXDATA)) {
293 dbg(" -- i8042 (auxerr)\n");
294 return -1;
297 param[i] = i8042_read_data();
298 dbg("%02x <- i8042 (return)\n", param[i]);
301 return 0;
304 int i8042_command(unsigned char *param, int command)
306 unsigned long flags;
307 int retval;
309 spin_lock_irqsave(&i8042_lock, flags);
310 retval = __i8042_command(param, command);
311 spin_unlock_irqrestore(&i8042_lock, flags);
313 return retval;
315 EXPORT_SYMBOL(i8042_command);
318 * i8042_kbd_write() sends a byte out through the keyboard interface.
321 static int i8042_kbd_write(struct serio *port, unsigned char c)
323 unsigned long flags;
324 int retval = 0;
326 spin_lock_irqsave(&i8042_lock, flags);
328 if (!(retval = i8042_wait_write())) {
329 dbg("%02x -> i8042 (kbd-data)\n", c);
330 i8042_write_data(c);
333 spin_unlock_irqrestore(&i8042_lock, flags);
335 return retval;
339 * i8042_aux_write() sends a byte out through the aux interface.
342 static int i8042_aux_write(struct serio *serio, unsigned char c)
344 struct i8042_port *port = serio->port_data;
346 return i8042_command(&c, port->mux == -1 ?
347 I8042_CMD_AUX_SEND :
348 I8042_CMD_MUX_SEND + port->mux);
353 * i8042_aux_close attempts to clear AUX or KBD port state by disabling
354 * and then re-enabling it.
357 static void i8042_port_close(struct serio *serio)
359 int irq_bit;
360 int disable_bit;
361 const char *port_name;
363 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
364 irq_bit = I8042_CTR_AUXINT;
365 disable_bit = I8042_CTR_AUXDIS;
366 port_name = "AUX";
367 } else {
368 irq_bit = I8042_CTR_KBDINT;
369 disable_bit = I8042_CTR_KBDDIS;
370 port_name = "KBD";
373 i8042_ctr &= ~irq_bit;
374 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
375 pr_warn("Can't write CTR while closing %s port\n", port_name);
377 udelay(50);
379 i8042_ctr &= ~disable_bit;
380 i8042_ctr |= irq_bit;
381 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
382 pr_err("Can't reactivate %s port\n", port_name);
385 * See if there is any data appeared while we were messing with
386 * port state.
388 i8042_interrupt(0, NULL);
392 * i8042_start() is called by serio core when port is about to finish
393 * registering. It will mark port as existing so i8042_interrupt can
394 * start sending data through it.
396 static int i8042_start(struct serio *serio)
398 struct i8042_port *port = serio->port_data;
400 port->exists = true;
401 mb();
402 return 0;
406 * i8042_stop() marks serio port as non-existing so i8042_interrupt
407 * will not try to send data to the port that is about to go away.
408 * The function is called by serio core as part of unregister procedure.
410 static void i8042_stop(struct serio *serio)
412 struct i8042_port *port = serio->port_data;
414 port->exists = false;
417 * We synchronize with both AUX and KBD IRQs because there is
418 * a (very unlikely) chance that AUX IRQ is raised for KBD port
419 * and vice versa.
421 synchronize_irq(I8042_AUX_IRQ);
422 synchronize_irq(I8042_KBD_IRQ);
423 port->serio = NULL;
427 * i8042_filter() filters out unwanted bytes from the input data stream.
428 * It is called from i8042_interrupt and thus is running with interrupts
429 * off and i8042_lock held.
431 static bool i8042_filter(unsigned char data, unsigned char str,
432 struct serio *serio)
434 if (unlikely(i8042_suppress_kbd_ack)) {
435 if ((~str & I8042_STR_AUXDATA) &&
436 (data == 0xfa || data == 0xfe)) {
437 i8042_suppress_kbd_ack--;
438 dbg("Extra keyboard ACK - filtered out\n");
439 return true;
443 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
444 dbg("Filtered out by platform filter\n");
445 return true;
448 return false;
452 * i8042_interrupt() is the most important function in this driver -
453 * it handles the interrupts from the i8042, and sends incoming bytes
454 * to the upper layers.
457 static irqreturn_t i8042_interrupt(int irq, void *dev_id)
459 struct i8042_port *port;
460 struct serio *serio;
461 unsigned long flags;
462 unsigned char str, data;
463 unsigned int dfl;
464 unsigned int port_no;
465 bool filtered;
466 int ret = 1;
468 spin_lock_irqsave(&i8042_lock, flags);
470 str = i8042_read_status();
471 if (unlikely(~str & I8042_STR_OBF)) {
472 spin_unlock_irqrestore(&i8042_lock, flags);
473 if (irq)
474 dbg("Interrupt %d, without any data\n", irq);
475 ret = 0;
476 goto out;
479 data = i8042_read_data();
481 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
482 static unsigned long last_transmit;
483 static unsigned char last_str;
485 dfl = 0;
486 if (str & I8042_STR_MUXERR) {
487 dbg("MUX error, status is %02x, data is %02x\n",
488 str, data);
490 * When MUXERR condition is signalled the data register can only contain
491 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
492 * it is not always the case. Some KBCs also report 0xfc when there is
493 * nothing connected to the port while others sometimes get confused which
494 * port the data came from and signal error leaving the data intact. They
495 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
496 * to legacy mode yet, when we see one we'll add proper handling).
497 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
498 * rest assume that the data came from the same serio last byte
499 * was transmitted (if transmission happened not too long ago).
502 switch (data) {
503 default:
504 if (time_before(jiffies, last_transmit + HZ/10)) {
505 str = last_str;
506 break;
508 /* fall through - report timeout */
509 case 0xfc:
510 case 0xfd:
511 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
512 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
516 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
517 last_str = str;
518 last_transmit = jiffies;
519 } else {
521 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
522 ((str & I8042_STR_TIMEOUT && !i8042_notimeout) ? SERIO_TIMEOUT : 0);
524 port_no = (str & I8042_STR_AUXDATA) ?
525 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
528 port = &i8042_ports[port_no];
529 serio = port->exists ? port->serio : NULL;
531 dbg("%02x <- i8042 (interrupt, %d, %d%s%s)\n",
532 data, port_no, irq,
533 dfl & SERIO_PARITY ? ", bad parity" : "",
534 dfl & SERIO_TIMEOUT ? ", timeout" : "");
536 filtered = i8042_filter(data, str, serio);
538 spin_unlock_irqrestore(&i8042_lock, flags);
540 if (likely(port->exists && !filtered))
541 serio_interrupt(serio, data, dfl);
543 out:
544 return IRQ_RETVAL(ret);
548 * i8042_enable_kbd_port enables keyboard port on chip
551 static int i8042_enable_kbd_port(void)
553 i8042_ctr &= ~I8042_CTR_KBDDIS;
554 i8042_ctr |= I8042_CTR_KBDINT;
556 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
557 i8042_ctr &= ~I8042_CTR_KBDINT;
558 i8042_ctr |= I8042_CTR_KBDDIS;
559 pr_err("Failed to enable KBD port\n");
560 return -EIO;
563 return 0;
567 * i8042_enable_aux_port enables AUX (mouse) port on chip
570 static int i8042_enable_aux_port(void)
572 i8042_ctr &= ~I8042_CTR_AUXDIS;
573 i8042_ctr |= I8042_CTR_AUXINT;
575 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
576 i8042_ctr &= ~I8042_CTR_AUXINT;
577 i8042_ctr |= I8042_CTR_AUXDIS;
578 pr_err("Failed to enable AUX port\n");
579 return -EIO;
582 return 0;
586 * i8042_enable_mux_ports enables 4 individual AUX ports after
587 * the controller has been switched into Multiplexed mode
590 static int i8042_enable_mux_ports(void)
592 unsigned char param;
593 int i;
595 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
596 i8042_command(&param, I8042_CMD_MUX_PFX + i);
597 i8042_command(&param, I8042_CMD_AUX_ENABLE);
600 return i8042_enable_aux_port();
604 * i8042_set_mux_mode checks whether the controller has an
605 * active multiplexor and puts the chip into Multiplexed (true)
606 * or Legacy (false) mode.
609 static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
612 unsigned char param, val;
614 * Get rid of bytes in the queue.
617 i8042_flush();
620 * Internal loopback test - send three bytes, they should come back from the
621 * mouse interface, the last should be version.
624 param = val = 0xf0;
625 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
626 return -1;
627 param = val = multiplex ? 0x56 : 0xf6;
628 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
629 return -1;
630 param = val = multiplex ? 0xa4 : 0xa5;
631 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
632 return -1;
635 * Workaround for interference with USB Legacy emulation
636 * that causes a v10.12 MUX to be found.
638 if (param == 0xac)
639 return -1;
641 if (mux_version)
642 *mux_version = param;
644 return 0;
648 * i8042_check_mux() checks whether the controller supports the PS/2 Active
649 * Multiplexing specification by Synaptics, Phoenix, Insyde and
650 * LCS/Telegraphics.
653 static int __init i8042_check_mux(void)
655 unsigned char mux_version;
657 if (i8042_set_mux_mode(true, &mux_version))
658 return -1;
660 pr_info("Detected active multiplexing controller, rev %d.%d\n",
661 (mux_version >> 4) & 0xf, mux_version & 0xf);
664 * Disable all muxed ports by disabling AUX.
666 i8042_ctr |= I8042_CTR_AUXDIS;
667 i8042_ctr &= ~I8042_CTR_AUXINT;
669 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
670 pr_err("Failed to disable AUX port, can't use MUX\n");
671 return -EIO;
674 i8042_mux_present = true;
676 return 0;
680 * The following is used to test AUX IRQ delivery.
682 static struct completion i8042_aux_irq_delivered __initdata;
683 static bool i8042_irq_being_tested __initdata;
685 static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
687 unsigned long flags;
688 unsigned char str, data;
689 int ret = 0;
691 spin_lock_irqsave(&i8042_lock, flags);
692 str = i8042_read_status();
693 if (str & I8042_STR_OBF) {
694 data = i8042_read_data();
695 dbg("%02x <- i8042 (aux_test_irq, %s)\n",
696 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
697 if (i8042_irq_being_tested &&
698 data == 0xa5 && (str & I8042_STR_AUXDATA))
699 complete(&i8042_aux_irq_delivered);
700 ret = 1;
702 spin_unlock_irqrestore(&i8042_lock, flags);
704 return IRQ_RETVAL(ret);
708 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
709 * verifies success by readinng CTR. Used when testing for presence of AUX
710 * port.
712 static int __init i8042_toggle_aux(bool on)
714 unsigned char param;
715 int i;
717 if (i8042_command(&param,
718 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
719 return -1;
721 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
722 for (i = 0; i < 100; i++) {
723 udelay(50);
725 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
726 return -1;
728 if (!(param & I8042_CTR_AUXDIS) == on)
729 return 0;
732 return -1;
736 * i8042_check_aux() applies as much paranoia as it can at detecting
737 * the presence of an AUX interface.
740 static int __init i8042_check_aux(void)
742 int retval = -1;
743 bool irq_registered = false;
744 bool aux_loop_broken = false;
745 unsigned long flags;
746 unsigned char param;
749 * Get rid of bytes in the queue.
752 i8042_flush();
755 * Internal loopback test - filters out AT-type i8042's. Unfortunately
756 * SiS screwed up and their 5597 doesn't support the LOOP command even
757 * though it has an AUX port.
760 param = 0x5a;
761 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
762 if (retval || param != 0x5a) {
765 * External connection test - filters out AT-soldered PS/2 i8042's
766 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
767 * 0xfa - no error on some notebooks which ignore the spec
768 * Because it's common for chipsets to return error on perfectly functioning
769 * AUX ports, we test for this only when the LOOP command failed.
772 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
773 (param && param != 0xfa && param != 0xff))
774 return -1;
777 * If AUX_LOOP completed without error but returned unexpected data
778 * mark it as broken
780 if (!retval)
781 aux_loop_broken = true;
785 * Bit assignment test - filters out PS/2 i8042's in AT mode
788 if (i8042_toggle_aux(false)) {
789 pr_warn("Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
790 pr_warn("If AUX port is really absent please use the 'i8042.noaux' option\n");
793 if (i8042_toggle_aux(true))
794 return -1;
797 * Reset keyboard (needed on some laptops to successfully detect
798 * touchpad, e.g., some Gigabyte laptop models with Elantech
799 * touchpads).
801 if (i8042_kbdreset) {
802 pr_warn("Attempting to reset device connected to KBD port\n");
803 i8042_kbd_write(NULL, (unsigned char) 0xff);
807 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
808 * used it for a PCI card or somethig else.
811 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
813 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
814 * is working and hope we are right.
816 retval = 0;
817 goto out;
820 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
821 "i8042", i8042_platform_device))
822 goto out;
824 irq_registered = true;
826 if (i8042_enable_aux_port())
827 goto out;
829 spin_lock_irqsave(&i8042_lock, flags);
831 init_completion(&i8042_aux_irq_delivered);
832 i8042_irq_being_tested = true;
834 param = 0xa5;
835 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
837 spin_unlock_irqrestore(&i8042_lock, flags);
839 if (retval)
840 goto out;
842 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
843 msecs_to_jiffies(250)) == 0) {
845 * AUX IRQ was never delivered so we need to flush the controller to
846 * get rid of the byte we put there; otherwise keyboard may not work.
848 dbg(" -- i8042 (aux irq test timeout)\n");
849 i8042_flush();
850 retval = -1;
853 out:
856 * Disable the interface.
859 i8042_ctr |= I8042_CTR_AUXDIS;
860 i8042_ctr &= ~I8042_CTR_AUXINT;
862 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
863 retval = -1;
865 if (irq_registered)
866 free_irq(I8042_AUX_IRQ, i8042_platform_device);
868 return retval;
871 static int i8042_controller_check(void)
873 if (i8042_flush()) {
874 pr_info("No controller found\n");
875 return -ENODEV;
878 return 0;
881 static int i8042_controller_selftest(void)
883 unsigned char param;
884 int i = 0;
887 * We try this 5 times; on some really fragile systems this does not
888 * take the first time...
890 do {
892 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
893 pr_err("i8042 controller selftest timeout\n");
894 return -ENODEV;
897 if (param == I8042_RET_CTL_TEST)
898 return 0;
900 dbg("i8042 controller selftest: %#x != %#x\n",
901 param, I8042_RET_CTL_TEST);
902 msleep(50);
903 } while (i++ < 5);
905 #ifdef CONFIG_X86
907 * On x86, we don't fail entire i8042 initialization if controller
908 * reset fails in hopes that keyboard port will still be functional
909 * and user will still get a working keyboard. This is especially
910 * important on netbooks. On other arches we trust hardware more.
912 pr_info("giving up on controller selftest, continuing anyway...\n");
913 return 0;
914 #else
915 pr_err("i8042 controller selftest failed\n");
916 return -EIO;
917 #endif
921 * i8042_controller init initializes the i8042 controller, and,
922 * most importantly, sets it into non-xlated mode if that's
923 * desired.
926 static int i8042_controller_init(void)
928 unsigned long flags;
929 int n = 0;
930 unsigned char ctr[2];
933 * Save the CTR for restore on unload / reboot.
936 do {
937 if (n >= 10) {
938 pr_err("Unable to get stable CTR read\n");
939 return -EIO;
942 if (n != 0)
943 udelay(50);
945 if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
946 pr_err("Can't read CTR while initializing i8042\n");
947 return -EIO;
950 } while (n < 2 || ctr[0] != ctr[1]);
952 i8042_initial_ctr = i8042_ctr = ctr[0];
955 * Disable the keyboard interface and interrupt.
958 i8042_ctr |= I8042_CTR_KBDDIS;
959 i8042_ctr &= ~I8042_CTR_KBDINT;
962 * Handle keylock.
965 spin_lock_irqsave(&i8042_lock, flags);
966 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
967 if (i8042_unlock)
968 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
969 else
970 pr_warn("Warning: Keylock active\n");
972 spin_unlock_irqrestore(&i8042_lock, flags);
975 * If the chip is configured into nontranslated mode by the BIOS, don't
976 * bother enabling translating and be happy.
979 if (~i8042_ctr & I8042_CTR_XLATE)
980 i8042_direct = true;
983 * Set nontranslated mode for the kbd interface if requested by an option.
984 * After this the kbd interface becomes a simple serial in/out, like the aux
985 * interface is. We don't do this by default, since it can confuse notebook
986 * BIOSes.
989 if (i8042_direct)
990 i8042_ctr &= ~I8042_CTR_XLATE;
993 * Write CTR back.
996 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
997 pr_err("Can't write CTR while initializing i8042\n");
998 return -EIO;
1002 * Flush whatever accumulated while we were disabling keyboard port.
1005 i8042_flush();
1007 return 0;
1012 * Reset the controller and reset CRT to the original value set by BIOS.
1015 static void i8042_controller_reset(bool force_reset)
1017 i8042_flush();
1020 * Disable both KBD and AUX interfaces so they don't get in the way
1023 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1024 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1026 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
1027 pr_warn("Can't write CTR while resetting\n");
1030 * Disable MUX mode if present.
1033 if (i8042_mux_present)
1034 i8042_set_mux_mode(false, NULL);
1037 * Reset the controller if requested.
1040 if (i8042_reset || force_reset)
1041 i8042_controller_selftest();
1044 * Restore the original control register setting.
1047 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
1048 pr_warn("Can't restore CTR\n");
1053 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
1054 * when kernel panics. Flashing LEDs is useful for users running X who may
1055 * not see the console and will help distingushing panics from "real"
1056 * lockups.
1058 * Note that DELAY has a limit of 10ms so we will not get stuck here
1059 * waiting for KBC to free up even if KBD interrupt is off
1062 #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1064 static long i8042_panic_blink(int state)
1066 long delay = 0;
1067 char led;
1069 led = (state) ? 0x01 | 0x04 : 0;
1070 while (i8042_read_status() & I8042_STR_IBF)
1071 DELAY;
1072 dbg("%02x -> i8042 (panic blink)\n", 0xed);
1073 i8042_suppress_kbd_ack = 2;
1074 i8042_write_data(0xed); /* set leds */
1075 DELAY;
1076 while (i8042_read_status() & I8042_STR_IBF)
1077 DELAY;
1078 DELAY;
1079 dbg("%02x -> i8042 (panic blink)\n", led);
1080 i8042_write_data(led);
1081 DELAY;
1082 return delay;
1085 #undef DELAY
1087 #ifdef CONFIG_X86
1088 static void i8042_dritek_enable(void)
1090 unsigned char param = 0x90;
1091 int error;
1093 error = i8042_command(&param, 0x1059);
1094 if (error)
1095 pr_warn("Failed to enable DRITEK extension: %d\n", error);
1097 #endif
1099 #ifdef CONFIG_PM
1102 * Here we try to reset everything back to a state we had
1103 * before suspending.
1106 static int i8042_controller_resume(bool force_reset)
1108 int error;
1110 error = i8042_controller_check();
1111 if (error)
1112 return error;
1114 if (i8042_reset || force_reset) {
1115 error = i8042_controller_selftest();
1116 if (error)
1117 return error;
1121 * Restore original CTR value and disable all ports
1124 i8042_ctr = i8042_initial_ctr;
1125 if (i8042_direct)
1126 i8042_ctr &= ~I8042_CTR_XLATE;
1127 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1128 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
1129 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1130 pr_warn("Can't write CTR to resume, retrying...\n");
1131 msleep(50);
1132 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1133 pr_err("CTR write retry failed\n");
1134 return -EIO;
1139 #ifdef CONFIG_X86
1140 if (i8042_dritek)
1141 i8042_dritek_enable();
1142 #endif
1144 if (i8042_mux_present) {
1145 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
1146 pr_warn("failed to resume active multiplexor, mouse won't work\n");
1147 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
1148 i8042_enable_aux_port();
1150 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1151 i8042_enable_kbd_port();
1153 i8042_interrupt(0, NULL);
1155 return 0;
1159 * Here we try to restore the original BIOS settings to avoid
1160 * upsetting it.
1163 static int i8042_pm_suspend(struct device *dev)
1165 i8042_controller_reset(true);
1167 return 0;
1170 static int i8042_pm_resume(struct device *dev)
1173 * On resume from S2R we always try to reset the controller
1174 * to bring it in a sane state. (In case of S2D we expect
1175 * BIOS to reset the controller for us.)
1177 return i8042_controller_resume(true);
1180 static int i8042_pm_thaw(struct device *dev)
1182 i8042_interrupt(0, NULL);
1184 return 0;
1187 static int i8042_pm_reset(struct device *dev)
1189 i8042_controller_reset(false);
1191 return 0;
1194 static int i8042_pm_restore(struct device *dev)
1196 return i8042_controller_resume(false);
1199 static const struct dev_pm_ops i8042_pm_ops = {
1200 .suspend = i8042_pm_suspend,
1201 .resume = i8042_pm_resume,
1202 .thaw = i8042_pm_thaw,
1203 .poweroff = i8042_pm_reset,
1204 .restore = i8042_pm_restore,
1207 #endif /* CONFIG_PM */
1210 * We need to reset the 8042 back to original mode on system shutdown,
1211 * because otherwise BIOSes will be confused.
1214 static void i8042_shutdown(struct platform_device *dev)
1216 i8042_controller_reset(false);
1219 static int __init i8042_create_kbd_port(void)
1221 struct serio *serio;
1222 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1224 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
1225 if (!serio)
1226 return -ENOMEM;
1228 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1229 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
1230 serio->start = i8042_start;
1231 serio->stop = i8042_stop;
1232 serio->close = i8042_port_close;
1233 serio->ps2_cmd_mutex = &i8042_mutex;
1234 serio->port_data = port;
1235 serio->dev.parent = &i8042_platform_device->dev;
1236 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
1237 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
1238 strlcpy(serio->firmware_id, i8042_kbd_firmware_id,
1239 sizeof(serio->firmware_id));
1241 port->serio = serio;
1242 port->irq = I8042_KBD_IRQ;
1244 return 0;
1247 static int __init i8042_create_aux_port(int idx)
1249 struct serio *serio;
1250 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1251 struct i8042_port *port = &i8042_ports[port_no];
1253 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
1254 if (!serio)
1255 return -ENOMEM;
1257 serio->id.type = SERIO_8042;
1258 serio->write = i8042_aux_write;
1259 serio->start = i8042_start;
1260 serio->stop = i8042_stop;
1261 serio->ps2_cmd_mutex = &i8042_mutex;
1262 serio->port_data = port;
1263 serio->dev.parent = &i8042_platform_device->dev;
1264 if (idx < 0) {
1265 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1266 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
1267 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1268 sizeof(serio->firmware_id));
1269 serio->close = i8042_port_close;
1270 } else {
1271 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1272 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
1275 port->serio = serio;
1276 port->mux = idx;
1277 port->irq = I8042_AUX_IRQ;
1279 return 0;
1282 static void __init i8042_free_kbd_port(void)
1284 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1285 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1288 static void __init i8042_free_aux_ports(void)
1290 int i;
1292 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1293 kfree(i8042_ports[i].serio);
1294 i8042_ports[i].serio = NULL;
1298 static void __init i8042_register_ports(void)
1300 int i;
1302 for (i = 0; i < I8042_NUM_PORTS; i++) {
1303 if (i8042_ports[i].serio) {
1304 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1305 i8042_ports[i].serio->name,
1306 (unsigned long) I8042_DATA_REG,
1307 (unsigned long) I8042_COMMAND_REG,
1308 i8042_ports[i].irq);
1309 serio_register_port(i8042_ports[i].serio);
1314 static void i8042_unregister_ports(void)
1316 int i;
1318 for (i = 0; i < I8042_NUM_PORTS; i++) {
1319 if (i8042_ports[i].serio) {
1320 serio_unregister_port(i8042_ports[i].serio);
1321 i8042_ports[i].serio = NULL;
1326 static void i8042_free_irqs(void)
1328 if (i8042_aux_irq_registered)
1329 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1330 if (i8042_kbd_irq_registered)
1331 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1333 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
1336 static int __init i8042_setup_aux(void)
1338 int (*aux_enable)(void);
1339 int error;
1340 int i;
1342 if (i8042_check_aux())
1343 return -ENODEV;
1345 if (i8042_nomux || i8042_check_mux()) {
1346 error = i8042_create_aux_port(-1);
1347 if (error)
1348 goto err_free_ports;
1349 aux_enable = i8042_enable_aux_port;
1350 } else {
1351 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1352 error = i8042_create_aux_port(i);
1353 if (error)
1354 goto err_free_ports;
1356 aux_enable = i8042_enable_mux_ports;
1359 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1360 "i8042", i8042_platform_device);
1361 if (error)
1362 goto err_free_ports;
1364 if (aux_enable())
1365 goto err_free_irq;
1367 i8042_aux_irq_registered = true;
1368 return 0;
1370 err_free_irq:
1371 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1372 err_free_ports:
1373 i8042_free_aux_ports();
1374 return error;
1377 static int __init i8042_setup_kbd(void)
1379 int error;
1381 error = i8042_create_kbd_port();
1382 if (error)
1383 return error;
1385 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1386 "i8042", i8042_platform_device);
1387 if (error)
1388 goto err_free_port;
1390 error = i8042_enable_kbd_port();
1391 if (error)
1392 goto err_free_irq;
1394 i8042_kbd_irq_registered = true;
1395 return 0;
1397 err_free_irq:
1398 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1399 err_free_port:
1400 i8042_free_kbd_port();
1401 return error;
1404 static int __init i8042_probe(struct platform_device *dev)
1406 int error;
1408 i8042_platform_device = dev;
1410 if (i8042_reset) {
1411 error = i8042_controller_selftest();
1412 if (error)
1413 return error;
1416 error = i8042_controller_init();
1417 if (error)
1418 return error;
1420 #ifdef CONFIG_X86
1421 if (i8042_dritek)
1422 i8042_dritek_enable();
1423 #endif
1425 if (!i8042_noaux) {
1426 error = i8042_setup_aux();
1427 if (error && error != -ENODEV && error != -EBUSY)
1428 goto out_fail;
1431 if (!i8042_nokbd) {
1432 error = i8042_setup_kbd();
1433 if (error)
1434 goto out_fail;
1437 * Ok, everything is ready, let's register all serio ports
1439 i8042_register_ports();
1441 return 0;
1443 out_fail:
1444 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1445 i8042_free_irqs();
1446 i8042_controller_reset(false);
1447 i8042_platform_device = NULL;
1449 return error;
1452 static int i8042_remove(struct platform_device *dev)
1454 i8042_unregister_ports();
1455 i8042_free_irqs();
1456 i8042_controller_reset(false);
1457 i8042_platform_device = NULL;
1459 return 0;
1462 static struct platform_driver i8042_driver = {
1463 .driver = {
1464 .name = "i8042",
1465 .owner = THIS_MODULE,
1466 #ifdef CONFIG_PM
1467 .pm = &i8042_pm_ops,
1468 #endif
1470 .remove = i8042_remove,
1471 .shutdown = i8042_shutdown,
1474 static int __init i8042_init(void)
1476 struct platform_device *pdev;
1477 int err;
1479 dbg_init();
1481 err = i8042_platform_init();
1482 if (err)
1483 return err;
1485 err = i8042_controller_check();
1486 if (err)
1487 goto err_platform_exit;
1489 pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
1490 if (IS_ERR(pdev)) {
1491 err = PTR_ERR(pdev);
1492 goto err_platform_exit;
1495 panic_blink = i8042_panic_blink;
1497 return 0;
1499 err_platform_exit:
1500 i8042_platform_exit();
1501 return err;
1504 static void __exit i8042_exit(void)
1506 platform_device_unregister(i8042_platform_device);
1507 platform_driver_unregister(&i8042_driver);
1508 i8042_platform_exit();
1510 panic_blink = NULL;
1513 module_init(i8042_init);
1514 module_exit(i8042_exit);