drm/tests: hdmi: Fix memory leaks in drm_display_mode_from_cea_vic()
[drm/drm-misc.git] / drivers / input / serio / i8042.c
blob8ec4872b447145ba750bb6e6e3b6b5933c05f1ff
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * i8042 keyboard and mouse controller driver for Linux
5 * Copyright (c) 1999-2004 Vojtech Pavlik
6 */
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/types.h>
12 #include <linux/delay.h>
13 #include <linux/module.h>
14 #include <linux/interrupt.h>
15 #include <linux/ioport.h>
16 #include <linux/init.h>
17 #include <linux/serio.h>
18 #include <linux/err.h>
19 #include <linux/rcupdate.h>
20 #include <linux/platform_device.h>
21 #include <linux/i8042.h>
22 #include <linux/slab.h>
23 #include <linux/suspend.h>
24 #include <linux/property.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_probe_defer;
49 module_param_named(probe_defer, i8042_probe_defer, bool, 0);
50 MODULE_PARM_DESC(probe_defer, "Allow deferred probing.");
52 enum i8042_controller_reset_mode {
53 I8042_RESET_NEVER,
54 I8042_RESET_ALWAYS,
55 I8042_RESET_ON_S2RAM,
56 #define I8042_RESET_DEFAULT I8042_RESET_ON_S2RAM
58 static enum i8042_controller_reset_mode i8042_reset = I8042_RESET_DEFAULT;
59 static int i8042_set_reset(const char *val, const struct kernel_param *kp)
61 enum i8042_controller_reset_mode *arg = kp->arg;
62 int error;
63 bool reset;
65 if (val) {
66 error = kstrtobool(val, &reset);
67 if (error)
68 return error;
69 } else {
70 reset = true;
73 *arg = reset ? I8042_RESET_ALWAYS : I8042_RESET_NEVER;
74 return 0;
77 static const struct kernel_param_ops param_ops_reset_param = {
78 .flags = KERNEL_PARAM_OPS_FL_NOARG,
79 .set = i8042_set_reset,
81 #define param_check_reset_param(name, p) \
82 __param_check(name, p, enum i8042_controller_reset_mode)
83 module_param_named(reset, i8042_reset, reset_param, 0);
84 MODULE_PARM_DESC(reset, "Reset controller on resume, cleanup or both");
86 static bool i8042_direct;
87 module_param_named(direct, i8042_direct, bool, 0);
88 MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
90 static bool i8042_dumbkbd;
91 module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
92 MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
94 static bool i8042_noloop;
95 module_param_named(noloop, i8042_noloop, bool, 0);
96 MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
98 static bool i8042_notimeout;
99 module_param_named(notimeout, i8042_notimeout, bool, 0);
100 MODULE_PARM_DESC(notimeout, "Ignore timeouts signalled by i8042");
102 static bool i8042_kbdreset;
103 module_param_named(kbdreset, i8042_kbdreset, bool, 0);
104 MODULE_PARM_DESC(kbdreset, "Reset device connected to KBD port");
106 #ifdef CONFIG_X86
107 static bool i8042_dritek;
108 module_param_named(dritek, i8042_dritek, bool, 0);
109 MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
110 #endif
112 #ifdef CONFIG_PNP
113 static bool i8042_nopnp;
114 module_param_named(nopnp, i8042_nopnp, bool, 0);
115 MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
116 #endif
118 static bool i8042_forcenorestore;
119 module_param_named(forcenorestore, i8042_forcenorestore, bool, 0);
120 MODULE_PARM_DESC(forcenorestore, "Force no restore on s3 resume, copying s2idle behaviour");
122 #define DEBUG
123 #ifdef DEBUG
124 static bool i8042_debug;
125 module_param_named(debug, i8042_debug, bool, 0600);
126 MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
128 static bool i8042_unmask_kbd_data;
129 module_param_named(unmask_kbd_data, i8042_unmask_kbd_data, bool, 0600);
130 MODULE_PARM_DESC(unmask_kbd_data, "Unconditional enable (may reveal sensitive data) of normally sanitize-filtered kbd data traffic debug log [pre-condition: i8042.debug=1 enabled]");
131 #endif
133 static bool i8042_present;
134 static bool i8042_bypass_aux_irq_test;
135 static char i8042_kbd_firmware_id[128];
136 static char i8042_aux_firmware_id[128];
137 static struct fwnode_handle *i8042_kbd_fwnode;
139 #include "i8042.h"
142 * i8042_lock protects serialization between i8042_command and
143 * the interrupt handler.
145 static DEFINE_SPINLOCK(i8042_lock);
148 * Writers to AUX and KBD ports as well as users issuing i8042_command
149 * directly should acquire i8042_mutex (by means of calling
150 * i8042_lock_chip() and i8042_unlock_chip() helpers) to ensure that
151 * they do not disturb each other (unfortunately in many i8042
152 * implementations write to one of the ports will immediately abort
153 * command that is being processed by another port).
155 static DEFINE_MUTEX(i8042_mutex);
157 struct i8042_port {
158 struct serio *serio;
159 int irq;
160 bool exists;
161 bool driver_bound;
162 signed char mux;
165 #define I8042_KBD_PORT_NO 0
166 #define I8042_AUX_PORT_NO 1
167 #define I8042_MUX_PORT_NO 2
168 #define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
170 static struct i8042_port i8042_ports[I8042_NUM_PORTS];
172 static unsigned char i8042_initial_ctr;
173 static unsigned char i8042_ctr;
174 static bool i8042_mux_present;
175 static bool i8042_kbd_irq_registered;
176 static bool i8042_aux_irq_registered;
177 static unsigned char i8042_suppress_kbd_ack;
178 static struct platform_device *i8042_platform_device;
179 static struct notifier_block i8042_kbd_bind_notifier_block;
181 static irqreturn_t i8042_interrupt(int irq, void *dev_id);
182 static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
183 struct serio *serio);
185 void i8042_lock_chip(void)
187 mutex_lock(&i8042_mutex);
189 EXPORT_SYMBOL(i8042_lock_chip);
191 void i8042_unlock_chip(void)
193 mutex_unlock(&i8042_mutex);
195 EXPORT_SYMBOL(i8042_unlock_chip);
197 int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
198 struct serio *serio))
200 unsigned long flags;
201 int ret = 0;
203 spin_lock_irqsave(&i8042_lock, flags);
205 if (i8042_platform_filter) {
206 ret = -EBUSY;
207 goto out;
210 i8042_platform_filter = filter;
212 out:
213 spin_unlock_irqrestore(&i8042_lock, flags);
214 return ret;
216 EXPORT_SYMBOL(i8042_install_filter);
218 int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
219 struct serio *port))
221 unsigned long flags;
222 int ret = 0;
224 spin_lock_irqsave(&i8042_lock, flags);
226 if (i8042_platform_filter != filter) {
227 ret = -EINVAL;
228 goto out;
231 i8042_platform_filter = NULL;
233 out:
234 spin_unlock_irqrestore(&i8042_lock, flags);
235 return ret;
237 EXPORT_SYMBOL(i8042_remove_filter);
240 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
241 * be ready for reading values from it / writing values to it.
242 * Called always with i8042_lock held.
245 static int i8042_wait_read(void)
247 int i = 0;
249 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
250 udelay(50);
251 i++;
253 return -(i == I8042_CTL_TIMEOUT);
256 static int i8042_wait_write(void)
258 int i = 0;
260 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
261 udelay(50);
262 i++;
264 return -(i == I8042_CTL_TIMEOUT);
268 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
269 * of the i8042 down the toilet.
272 static int i8042_flush(void)
274 unsigned long flags;
275 unsigned char data, str;
276 int count = 0;
277 int retval = 0;
279 spin_lock_irqsave(&i8042_lock, flags);
281 while ((str = i8042_read_status()) & I8042_STR_OBF) {
282 if (count++ < I8042_BUFFER_SIZE) {
283 udelay(50);
284 data = i8042_read_data();
285 dbg("%02x <- i8042 (flush, %s)\n",
286 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
287 } else {
288 retval = -EIO;
289 break;
293 spin_unlock_irqrestore(&i8042_lock, flags);
295 return retval;
299 * i8042_command() executes a command on the i8042. It also sends the input
300 * parameter(s) of the commands to it, and receives the output value(s). The
301 * parameters are to be stored in the param array, and the output is placed
302 * into the same array. The number of the parameters and output values is
303 * encoded in bits 8-11 of the command number.
306 static int __i8042_command(unsigned char *param, int command)
308 int i, error;
310 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
311 return -1;
313 error = i8042_wait_write();
314 if (error)
315 return error;
317 dbg("%02x -> i8042 (command)\n", command & 0xff);
318 i8042_write_command(command & 0xff);
320 for (i = 0; i < ((command >> 12) & 0xf); i++) {
321 error = i8042_wait_write();
322 if (error) {
323 dbg(" -- i8042 (wait write timeout)\n");
324 return error;
326 dbg("%02x -> i8042 (parameter)\n", param[i]);
327 i8042_write_data(param[i]);
330 for (i = 0; i < ((command >> 8) & 0xf); i++) {
331 error = i8042_wait_read();
332 if (error) {
333 dbg(" -- i8042 (wait read timeout)\n");
334 return error;
337 if (command == I8042_CMD_AUX_LOOP &&
338 !(i8042_read_status() & I8042_STR_AUXDATA)) {
339 dbg(" -- i8042 (auxerr)\n");
340 return -1;
343 param[i] = i8042_read_data();
344 dbg("%02x <- i8042 (return)\n", param[i]);
347 return 0;
350 int i8042_command(unsigned char *param, int command)
352 unsigned long flags;
353 int retval;
355 if (!i8042_present)
356 return -1;
358 spin_lock_irqsave(&i8042_lock, flags);
359 retval = __i8042_command(param, command);
360 spin_unlock_irqrestore(&i8042_lock, flags);
362 return retval;
364 EXPORT_SYMBOL(i8042_command);
367 * i8042_kbd_write() sends a byte out through the keyboard interface.
370 static int i8042_kbd_write(struct serio *port, unsigned char c)
372 unsigned long flags;
373 int retval = 0;
375 spin_lock_irqsave(&i8042_lock, flags);
377 if (!(retval = i8042_wait_write())) {
378 dbg("%02x -> i8042 (kbd-data)\n", c);
379 i8042_write_data(c);
382 spin_unlock_irqrestore(&i8042_lock, flags);
384 return retval;
388 * i8042_aux_write() sends a byte out through the aux interface.
391 static int i8042_aux_write(struct serio *serio, unsigned char c)
393 struct i8042_port *port = serio->port_data;
395 return i8042_command(&c, port->mux == -1 ?
396 I8042_CMD_AUX_SEND :
397 I8042_CMD_MUX_SEND + port->mux);
402 * i8042_port_close attempts to clear AUX or KBD port state by disabling
403 * and then re-enabling it.
406 static void i8042_port_close(struct serio *serio)
408 int irq_bit;
409 int disable_bit;
410 const char *port_name;
412 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
413 irq_bit = I8042_CTR_AUXINT;
414 disable_bit = I8042_CTR_AUXDIS;
415 port_name = "AUX";
416 } else {
417 irq_bit = I8042_CTR_KBDINT;
418 disable_bit = I8042_CTR_KBDDIS;
419 port_name = "KBD";
422 i8042_ctr &= ~irq_bit;
423 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
424 pr_warn("Can't write CTR while closing %s port\n", port_name);
426 udelay(50);
428 i8042_ctr &= ~disable_bit;
429 i8042_ctr |= irq_bit;
430 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
431 pr_err("Can't reactivate %s port\n", port_name);
434 * See if there is any data appeared while we were messing with
435 * port state.
437 i8042_interrupt(0, NULL);
441 * i8042_start() is called by serio core when port is about to finish
442 * registering. It will mark port as existing so i8042_interrupt can
443 * start sending data through it.
445 static int i8042_start(struct serio *serio)
447 struct i8042_port *port = serio->port_data;
449 device_set_wakeup_capable(&serio->dev, true);
452 * On platforms using suspend-to-idle, allow the keyboard to
453 * wake up the system from sleep by enabling keyboard wakeups
454 * by default. This is consistent with keyboard wakeup
455 * behavior on many platforms using suspend-to-RAM (ACPI S3)
456 * by default.
458 if (pm_suspend_default_s2idle() &&
459 serio == i8042_ports[I8042_KBD_PORT_NO].serio) {
460 device_set_wakeup_enable(&serio->dev, true);
463 spin_lock_irq(&i8042_lock);
464 port->exists = true;
465 spin_unlock_irq(&i8042_lock);
467 return 0;
471 * i8042_stop() marks serio port as non-existing so i8042_interrupt
472 * will not try to send data to the port that is about to go away.
473 * The function is called by serio core as part of unregister procedure.
475 static void i8042_stop(struct serio *serio)
477 struct i8042_port *port = serio->port_data;
479 spin_lock_irq(&i8042_lock);
480 port->exists = false;
481 port->serio = NULL;
482 spin_unlock_irq(&i8042_lock);
485 * We need to make sure that interrupt handler finishes using
486 * our serio port before we return from this function.
487 * We synchronize with both AUX and KBD IRQs because there is
488 * a (very unlikely) chance that AUX IRQ is raised for KBD port
489 * and vice versa.
491 synchronize_irq(I8042_AUX_IRQ);
492 synchronize_irq(I8042_KBD_IRQ);
496 * i8042_filter() filters out unwanted bytes from the input data stream.
497 * It is called from i8042_interrupt and thus is running with interrupts
498 * off and i8042_lock held.
500 static bool i8042_filter(unsigned char data, unsigned char str,
501 struct serio *serio)
503 if (unlikely(i8042_suppress_kbd_ack)) {
504 if ((~str & I8042_STR_AUXDATA) &&
505 (data == 0xfa || data == 0xfe)) {
506 i8042_suppress_kbd_ack--;
507 dbg("Extra keyboard ACK - filtered out\n");
508 return true;
512 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
513 dbg("Filtered out by platform filter\n");
514 return true;
517 return false;
521 * i8042_interrupt() is the most important function in this driver -
522 * it handles the interrupts from the i8042, and sends incoming bytes
523 * to the upper layers.
526 static irqreturn_t i8042_interrupt(int irq, void *dev_id)
528 struct i8042_port *port;
529 struct serio *serio;
530 unsigned long flags;
531 unsigned char str, data;
532 unsigned int dfl;
533 unsigned int port_no;
534 bool filtered;
535 int ret = 1;
537 spin_lock_irqsave(&i8042_lock, flags);
539 str = i8042_read_status();
540 if (unlikely(~str & I8042_STR_OBF)) {
541 spin_unlock_irqrestore(&i8042_lock, flags);
542 if (irq)
543 dbg("Interrupt %d, without any data\n", irq);
544 ret = 0;
545 goto out;
548 data = i8042_read_data();
550 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
551 static unsigned long last_transmit;
552 static unsigned char last_str;
554 dfl = 0;
555 if (str & I8042_STR_MUXERR) {
556 dbg("MUX error, status is %02x, data is %02x\n",
557 str, data);
559 * When MUXERR condition is signalled the data register can only contain
560 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
561 * it is not always the case. Some KBCs also report 0xfc when there is
562 * nothing connected to the port while others sometimes get confused which
563 * port the data came from and signal error leaving the data intact. They
564 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
565 * to legacy mode yet, when we see one we'll add proper handling).
566 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
567 * rest assume that the data came from the same serio last byte
568 * was transmitted (if transmission happened not too long ago).
571 switch (data) {
572 default:
573 if (time_before(jiffies, last_transmit + HZ/10)) {
574 str = last_str;
575 break;
577 fallthrough; /* report timeout */
578 case 0xfc:
579 case 0xfd:
580 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
581 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
585 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
586 last_str = str;
587 last_transmit = jiffies;
588 } else {
590 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
591 ((str & I8042_STR_TIMEOUT && !i8042_notimeout) ? SERIO_TIMEOUT : 0);
593 port_no = (str & I8042_STR_AUXDATA) ?
594 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
597 port = &i8042_ports[port_no];
598 serio = port->exists ? port->serio : NULL;
600 filter_dbg(port->driver_bound, data, "<- i8042 (interrupt, %d, %d%s%s)\n",
601 port_no, irq,
602 dfl & SERIO_PARITY ? ", bad parity" : "",
603 dfl & SERIO_TIMEOUT ? ", timeout" : "");
605 filtered = i8042_filter(data, str, serio);
607 spin_unlock_irqrestore(&i8042_lock, flags);
609 if (likely(serio && !filtered))
610 serio_interrupt(serio, data, dfl);
612 out:
613 return IRQ_RETVAL(ret);
617 * i8042_enable_kbd_port enables keyboard port on chip
620 static int i8042_enable_kbd_port(void)
622 i8042_ctr &= ~I8042_CTR_KBDDIS;
623 i8042_ctr |= I8042_CTR_KBDINT;
625 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
626 i8042_ctr &= ~I8042_CTR_KBDINT;
627 i8042_ctr |= I8042_CTR_KBDDIS;
628 pr_err("Failed to enable KBD port\n");
629 return -EIO;
632 return 0;
636 * i8042_enable_aux_port enables AUX (mouse) port on chip
639 static int i8042_enable_aux_port(void)
641 i8042_ctr &= ~I8042_CTR_AUXDIS;
642 i8042_ctr |= I8042_CTR_AUXINT;
644 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
645 i8042_ctr &= ~I8042_CTR_AUXINT;
646 i8042_ctr |= I8042_CTR_AUXDIS;
647 pr_err("Failed to enable AUX port\n");
648 return -EIO;
651 return 0;
655 * i8042_enable_mux_ports enables 4 individual AUX ports after
656 * the controller has been switched into Multiplexed mode
659 static int i8042_enable_mux_ports(void)
661 unsigned char param;
662 int i;
664 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
665 i8042_command(&param, I8042_CMD_MUX_PFX + i);
666 i8042_command(&param, I8042_CMD_AUX_ENABLE);
669 return i8042_enable_aux_port();
673 * i8042_set_mux_mode checks whether the controller has an
674 * active multiplexor and puts the chip into Multiplexed (true)
675 * or Legacy (false) mode.
678 static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
681 unsigned char param, val;
683 * Get rid of bytes in the queue.
686 i8042_flush();
689 * Internal loopback test - send three bytes, they should come back from the
690 * mouse interface, the last should be version.
693 param = val = 0xf0;
694 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
695 return -1;
696 param = val = multiplex ? 0x56 : 0xf6;
697 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
698 return -1;
699 param = val = multiplex ? 0xa4 : 0xa5;
700 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
701 return -1;
704 * Workaround for interference with USB Legacy emulation
705 * that causes a v10.12 MUX to be found.
707 if (param == 0xac)
708 return -1;
710 if (mux_version)
711 *mux_version = param;
713 return 0;
717 * i8042_check_mux() checks whether the controller supports the PS/2 Active
718 * Multiplexing specification by Synaptics, Phoenix, Insyde and
719 * LCS/Telegraphics.
722 static int i8042_check_mux(void)
724 unsigned char mux_version;
726 if (i8042_set_mux_mode(true, &mux_version))
727 return -1;
729 pr_info("Detected active multiplexing controller, rev %d.%d\n",
730 (mux_version >> 4) & 0xf, mux_version & 0xf);
733 * Disable all muxed ports by disabling AUX.
735 i8042_ctr |= I8042_CTR_AUXDIS;
736 i8042_ctr &= ~I8042_CTR_AUXINT;
738 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
739 pr_err("Failed to disable AUX port, can't use MUX\n");
740 return -EIO;
743 i8042_mux_present = true;
745 return 0;
749 * The following is used to test AUX IRQ delivery.
751 static struct completion i8042_aux_irq_delivered;
752 static bool i8042_irq_being_tested;
754 static irqreturn_t i8042_aux_test_irq(int irq, void *dev_id)
756 unsigned long flags;
757 unsigned char str, data;
758 int ret = 0;
760 spin_lock_irqsave(&i8042_lock, flags);
761 str = i8042_read_status();
762 if (str & I8042_STR_OBF) {
763 data = i8042_read_data();
764 dbg("%02x <- i8042 (aux_test_irq, %s)\n",
765 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
766 if (i8042_irq_being_tested &&
767 data == 0xa5 && (str & I8042_STR_AUXDATA))
768 complete(&i8042_aux_irq_delivered);
769 ret = 1;
771 spin_unlock_irqrestore(&i8042_lock, flags);
773 return IRQ_RETVAL(ret);
777 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
778 * verifies success by readinng CTR. Used when testing for presence of AUX
779 * port.
781 static int i8042_toggle_aux(bool on)
783 unsigned char param;
784 int i;
786 if (i8042_command(&param,
787 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
788 return -1;
790 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
791 for (i = 0; i < 100; i++) {
792 udelay(50);
794 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
795 return -1;
797 if (!(param & I8042_CTR_AUXDIS) == on)
798 return 0;
801 return -1;
805 * i8042_check_aux() applies as much paranoia as it can at detecting
806 * the presence of an AUX interface.
809 static int i8042_check_aux(void)
811 int retval = -1;
812 bool irq_registered = false;
813 bool aux_loop_broken = false;
814 unsigned long flags;
815 unsigned char param;
818 * Get rid of bytes in the queue.
821 i8042_flush();
824 * Internal loopback test - filters out AT-type i8042's. Unfortunately
825 * SiS screwed up and their 5597 doesn't support the LOOP command even
826 * though it has an AUX port.
829 param = 0x5a;
830 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
831 if (retval || param != 0x5a) {
834 * External connection test - filters out AT-soldered PS/2 i8042's
835 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
836 * 0xfa - no error on some notebooks which ignore the spec
837 * Because it's common for chipsets to return error on perfectly functioning
838 * AUX ports, we test for this only when the LOOP command failed.
841 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
842 (param && param != 0xfa && param != 0xff))
843 return -1;
846 * If AUX_LOOP completed without error but returned unexpected data
847 * mark it as broken
849 if (!retval)
850 aux_loop_broken = true;
854 * Bit assignment test - filters out PS/2 i8042's in AT mode
857 if (i8042_toggle_aux(false)) {
858 pr_warn("Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
859 pr_warn("If AUX port is really absent please use the 'i8042.noaux' option\n");
862 if (i8042_toggle_aux(true))
863 return -1;
866 * Reset keyboard (needed on some laptops to successfully detect
867 * touchpad, e.g., some Gigabyte laptop models with Elantech
868 * touchpads).
870 if (i8042_kbdreset) {
871 pr_warn("Attempting to reset device connected to KBD port\n");
872 i8042_kbd_write(NULL, (unsigned char) 0xff);
876 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
877 * used it for a PCI card or somethig else.
880 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
882 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
883 * is working and hope we are right.
885 retval = 0;
886 goto out;
889 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
890 "i8042", i8042_platform_device))
891 goto out;
893 irq_registered = true;
895 if (i8042_enable_aux_port())
896 goto out;
898 spin_lock_irqsave(&i8042_lock, flags);
900 init_completion(&i8042_aux_irq_delivered);
901 i8042_irq_being_tested = true;
903 param = 0xa5;
904 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
906 spin_unlock_irqrestore(&i8042_lock, flags);
908 if (retval)
909 goto out;
911 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
912 msecs_to_jiffies(250)) == 0) {
914 * AUX IRQ was never delivered so we need to flush the controller to
915 * get rid of the byte we put there; otherwise keyboard may not work.
917 dbg(" -- i8042 (aux irq test timeout)\n");
918 i8042_flush();
919 retval = -1;
922 out:
925 * Disable the interface.
928 i8042_ctr |= I8042_CTR_AUXDIS;
929 i8042_ctr &= ~I8042_CTR_AUXINT;
931 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
932 retval = -1;
934 if (irq_registered)
935 free_irq(I8042_AUX_IRQ, i8042_platform_device);
937 return retval;
940 static int i8042_controller_check(void)
942 if (i8042_flush()) {
943 pr_info("No controller found\n");
944 return -ENODEV;
947 return 0;
950 static int i8042_controller_selftest(void)
952 unsigned char param;
953 int i = 0;
956 * We try this 5 times; on some really fragile systems this does not
957 * take the first time...
959 do {
961 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
962 pr_err("i8042 controller selftest timeout\n");
963 return -ENODEV;
966 if (param == I8042_RET_CTL_TEST)
967 return 0;
969 dbg("i8042 controller selftest: %#x != %#x\n",
970 param, I8042_RET_CTL_TEST);
971 msleep(50);
972 } while (i++ < 5);
974 #ifdef CONFIG_X86
976 * On x86, we don't fail entire i8042 initialization if controller
977 * reset fails in hopes that keyboard port will still be functional
978 * and user will still get a working keyboard. This is especially
979 * important on netbooks. On other arches we trust hardware more.
981 pr_info("giving up on controller selftest, continuing anyway...\n");
982 return 0;
983 #else
984 pr_err("i8042 controller selftest failed\n");
985 return -EIO;
986 #endif
990 * i8042_controller_init initializes the i8042 controller, and,
991 * most importantly, sets it into non-xlated mode if that's
992 * desired.
995 static int i8042_controller_init(void)
997 unsigned long flags;
998 int n = 0;
999 unsigned char ctr[2];
1002 * Save the CTR for restore on unload / reboot.
1005 do {
1006 if (n >= 10) {
1007 pr_err("Unable to get stable CTR read\n");
1008 return -EIO;
1011 if (n != 0)
1012 udelay(50);
1014 if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
1015 pr_err("Can't read CTR while initializing i8042\n");
1016 return i8042_probe_defer ? -EPROBE_DEFER : -EIO;
1019 } while (n < 2 || ctr[0] != ctr[1]);
1021 i8042_initial_ctr = i8042_ctr = ctr[0];
1024 * Disable the keyboard interface and interrupt.
1027 i8042_ctr |= I8042_CTR_KBDDIS;
1028 i8042_ctr &= ~I8042_CTR_KBDINT;
1031 * Handle keylock.
1034 spin_lock_irqsave(&i8042_lock, flags);
1035 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
1036 if (i8042_unlock)
1037 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
1038 else
1039 pr_warn("Warning: Keylock active\n");
1041 spin_unlock_irqrestore(&i8042_lock, flags);
1044 * If the chip is configured into nontranslated mode by the BIOS, don't
1045 * bother enabling translating and be happy.
1048 if (~i8042_ctr & I8042_CTR_XLATE)
1049 i8042_direct = true;
1052 * Set nontranslated mode for the kbd interface if requested by an option.
1053 * After this the kbd interface becomes a simple serial in/out, like the aux
1054 * interface is. We don't do this by default, since it can confuse notebook
1055 * BIOSes.
1058 if (i8042_direct)
1059 i8042_ctr &= ~I8042_CTR_XLATE;
1062 * Write CTR back.
1065 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1066 pr_err("Can't write CTR while initializing i8042\n");
1067 return -EIO;
1071 * Flush whatever accumulated while we were disabling keyboard port.
1074 i8042_flush();
1076 return 0;
1081 * Reset the controller and reset CRT to the original value set by BIOS.
1084 static void i8042_controller_reset(bool s2r_wants_reset)
1086 i8042_flush();
1089 * Disable both KBD and AUX interfaces so they don't get in the way
1092 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1093 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1095 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
1096 pr_warn("Can't write CTR while resetting\n");
1099 * Disable MUX mode if present.
1102 if (i8042_mux_present)
1103 i8042_set_mux_mode(false, NULL);
1106 * Reset the controller if requested.
1109 if (i8042_reset == I8042_RESET_ALWAYS ||
1110 (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) {
1111 i8042_controller_selftest();
1115 * Restore the original control register setting.
1118 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
1119 pr_warn("Can't restore CTR\n");
1124 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
1125 * when kernel panics. Flashing LEDs is useful for users running X who may
1126 * not see the console and will help distinguishing panics from "real"
1127 * lockups.
1129 * Note that DELAY has a limit of 10ms so we will not get stuck here
1130 * waiting for KBC to free up even if KBD interrupt is off
1133 #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1135 static long i8042_panic_blink(int state)
1137 long delay = 0;
1138 char led;
1140 led = (state) ? 0x01 | 0x04 : 0;
1141 while (i8042_read_status() & I8042_STR_IBF)
1142 DELAY;
1143 dbg("%02x -> i8042 (panic blink)\n", 0xed);
1144 i8042_suppress_kbd_ack = 2;
1145 i8042_write_data(0xed); /* set leds */
1146 DELAY;
1147 while (i8042_read_status() & I8042_STR_IBF)
1148 DELAY;
1149 DELAY;
1150 dbg("%02x -> i8042 (panic blink)\n", led);
1151 i8042_write_data(led);
1152 DELAY;
1153 return delay;
1156 #undef DELAY
1158 #ifdef CONFIG_X86
1159 static void i8042_dritek_enable(void)
1161 unsigned char param = 0x90;
1162 int error;
1164 error = i8042_command(&param, 0x1059);
1165 if (error)
1166 pr_warn("Failed to enable DRITEK extension: %d\n", error);
1168 #endif
1170 #ifdef CONFIG_PM
1173 * Here we try to reset everything back to a state we had
1174 * before suspending.
1177 static int i8042_controller_resume(bool s2r_wants_reset)
1179 int error;
1181 error = i8042_controller_check();
1182 if (error)
1183 return error;
1185 if (i8042_reset == I8042_RESET_ALWAYS ||
1186 (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) {
1187 error = i8042_controller_selftest();
1188 if (error)
1189 return error;
1193 * Restore original CTR value and disable all ports
1196 i8042_ctr = i8042_initial_ctr;
1197 if (i8042_direct)
1198 i8042_ctr &= ~I8042_CTR_XLATE;
1199 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1200 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
1201 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1202 pr_warn("Can't write CTR to resume, retrying...\n");
1203 msleep(50);
1204 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
1205 pr_err("CTR write retry failed\n");
1206 return -EIO;
1211 #ifdef CONFIG_X86
1212 if (i8042_dritek)
1213 i8042_dritek_enable();
1214 #endif
1216 if (i8042_mux_present) {
1217 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
1218 pr_warn("failed to resume active multiplexor, mouse won't work\n");
1219 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
1220 i8042_enable_aux_port();
1222 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1223 i8042_enable_kbd_port();
1225 i8042_interrupt(0, NULL);
1227 return 0;
1231 * Here we try to restore the original BIOS settings to avoid
1232 * upsetting it.
1235 static int i8042_pm_suspend(struct device *dev)
1237 int i;
1239 if (!i8042_forcenorestore && pm_suspend_via_firmware())
1240 i8042_controller_reset(true);
1242 /* Set up serio interrupts for system wakeup. */
1243 for (i = 0; i < I8042_NUM_PORTS; i++) {
1244 struct serio *serio = i8042_ports[i].serio;
1246 if (serio && device_may_wakeup(&serio->dev))
1247 enable_irq_wake(i8042_ports[i].irq);
1250 return 0;
1253 static int i8042_pm_resume_noirq(struct device *dev)
1255 if (i8042_forcenorestore || !pm_resume_via_firmware())
1256 i8042_interrupt(0, NULL);
1258 return 0;
1261 static int i8042_pm_resume(struct device *dev)
1263 bool want_reset;
1264 int i;
1266 for (i = 0; i < I8042_NUM_PORTS; i++) {
1267 struct serio *serio = i8042_ports[i].serio;
1269 if (serio && device_may_wakeup(&serio->dev))
1270 disable_irq_wake(i8042_ports[i].irq);
1274 * If platform firmware was not going to be involved in suspend, we did
1275 * not restore the controller state to whatever it had been at boot
1276 * time, so we do not need to do anything.
1278 if (i8042_forcenorestore || !pm_suspend_via_firmware())
1279 return 0;
1282 * We only need to reset the controller if we are resuming after handing
1283 * off control to the platform firmware, otherwise we can simply restore
1284 * the mode.
1286 want_reset = pm_resume_via_firmware();
1288 return i8042_controller_resume(want_reset);
1291 static int i8042_pm_thaw(struct device *dev)
1293 i8042_interrupt(0, NULL);
1295 return 0;
1298 static int i8042_pm_reset(struct device *dev)
1300 i8042_controller_reset(false);
1302 return 0;
1305 static int i8042_pm_restore(struct device *dev)
1307 return i8042_controller_resume(false);
1310 static const struct dev_pm_ops i8042_pm_ops = {
1311 .suspend = i8042_pm_suspend,
1312 .resume_noirq = i8042_pm_resume_noirq,
1313 .resume = i8042_pm_resume,
1314 .thaw = i8042_pm_thaw,
1315 .poweroff = i8042_pm_reset,
1316 .restore = i8042_pm_restore,
1319 #endif /* CONFIG_PM */
1322 * We need to reset the 8042 back to original mode on system shutdown,
1323 * because otherwise BIOSes will be confused.
1326 static void i8042_shutdown(struct platform_device *dev)
1328 i8042_controller_reset(false);
1331 static int i8042_create_kbd_port(void)
1333 struct serio *serio;
1334 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1336 serio = kzalloc(sizeof(*serio), GFP_KERNEL);
1337 if (!serio)
1338 return -ENOMEM;
1340 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1341 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
1342 serio->start = i8042_start;
1343 serio->stop = i8042_stop;
1344 serio->close = i8042_port_close;
1345 serio->ps2_cmd_mutex = &i8042_mutex;
1346 serio->port_data = port;
1347 serio->dev.parent = &i8042_platform_device->dev;
1348 strscpy(serio->name, "i8042 KBD port", sizeof(serio->name));
1349 strscpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
1350 strscpy(serio->firmware_id, i8042_kbd_firmware_id,
1351 sizeof(serio->firmware_id));
1352 set_primary_fwnode(&serio->dev, i8042_kbd_fwnode);
1354 port->serio = serio;
1355 port->irq = I8042_KBD_IRQ;
1357 return 0;
1360 static int i8042_create_aux_port(int idx)
1362 struct serio *serio;
1363 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1364 struct i8042_port *port = &i8042_ports[port_no];
1366 serio = kzalloc(sizeof(*serio), GFP_KERNEL);
1367 if (!serio)
1368 return -ENOMEM;
1370 serio->id.type = SERIO_8042;
1371 serio->write = i8042_aux_write;
1372 serio->start = i8042_start;
1373 serio->stop = i8042_stop;
1374 serio->ps2_cmd_mutex = &i8042_mutex;
1375 serio->port_data = port;
1376 serio->dev.parent = &i8042_platform_device->dev;
1377 if (idx < 0) {
1378 strscpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1379 strscpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
1380 strscpy(serio->firmware_id, i8042_aux_firmware_id,
1381 sizeof(serio->firmware_id));
1382 serio->close = i8042_port_close;
1383 } else {
1384 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1385 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
1386 strscpy(serio->firmware_id, i8042_aux_firmware_id,
1387 sizeof(serio->firmware_id));
1390 port->serio = serio;
1391 port->mux = idx;
1392 port->irq = I8042_AUX_IRQ;
1394 return 0;
1397 static void i8042_free_kbd_port(void)
1399 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1400 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1403 static void i8042_free_aux_ports(void)
1405 int i;
1407 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1408 kfree(i8042_ports[i].serio);
1409 i8042_ports[i].serio = NULL;
1413 static void i8042_register_ports(void)
1415 int i;
1417 for (i = 0; i < I8042_NUM_PORTS; i++) {
1418 struct serio *serio = i8042_ports[i].serio;
1420 if (!serio)
1421 continue;
1423 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1424 serio->name,
1425 (unsigned long) I8042_DATA_REG,
1426 (unsigned long) I8042_COMMAND_REG,
1427 i8042_ports[i].irq);
1428 serio_register_port(serio);
1432 static void i8042_unregister_ports(void)
1434 int i;
1436 for (i = 0; i < I8042_NUM_PORTS; i++) {
1437 if (i8042_ports[i].serio) {
1438 serio_unregister_port(i8042_ports[i].serio);
1439 i8042_ports[i].serio = NULL;
1444 static void i8042_free_irqs(void)
1446 if (i8042_aux_irq_registered)
1447 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1448 if (i8042_kbd_irq_registered)
1449 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1451 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
1454 static int i8042_setup_aux(void)
1456 int (*aux_enable)(void);
1457 int error;
1458 int i;
1460 if (i8042_check_aux())
1461 return -ENODEV;
1463 if (i8042_nomux || i8042_check_mux()) {
1464 error = i8042_create_aux_port(-1);
1465 if (error)
1466 goto err_free_ports;
1467 aux_enable = i8042_enable_aux_port;
1468 } else {
1469 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1470 error = i8042_create_aux_port(i);
1471 if (error)
1472 goto err_free_ports;
1474 aux_enable = i8042_enable_mux_ports;
1477 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1478 "i8042", i8042_platform_device);
1479 if (error)
1480 goto err_free_ports;
1482 error = aux_enable();
1483 if (error)
1484 goto err_free_irq;
1486 i8042_aux_irq_registered = true;
1487 return 0;
1489 err_free_irq:
1490 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1491 err_free_ports:
1492 i8042_free_aux_ports();
1493 return error;
1496 static int i8042_setup_kbd(void)
1498 int error;
1500 error = i8042_create_kbd_port();
1501 if (error)
1502 return error;
1504 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1505 "i8042", i8042_platform_device);
1506 if (error)
1507 goto err_free_port;
1509 error = i8042_enable_kbd_port();
1510 if (error)
1511 goto err_free_irq;
1513 i8042_kbd_irq_registered = true;
1514 return 0;
1516 err_free_irq:
1517 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1518 err_free_port:
1519 i8042_free_kbd_port();
1520 return error;
1523 static int i8042_kbd_bind_notifier(struct notifier_block *nb,
1524 unsigned long action, void *data)
1526 struct device *dev = data;
1527 struct serio *serio = to_serio_port(dev);
1528 struct i8042_port *port = serio->port_data;
1530 if (serio != i8042_ports[I8042_KBD_PORT_NO].serio)
1531 return 0;
1533 switch (action) {
1534 case BUS_NOTIFY_BOUND_DRIVER:
1535 port->driver_bound = true;
1536 break;
1538 case BUS_NOTIFY_UNBIND_DRIVER:
1539 port->driver_bound = false;
1540 break;
1543 return 0;
1546 static int i8042_probe(struct platform_device *dev)
1548 int error;
1550 if (i8042_reset == I8042_RESET_ALWAYS) {
1551 error = i8042_controller_selftest();
1552 if (error)
1553 return error;
1556 error = i8042_controller_init();
1557 if (error)
1558 return error;
1560 #ifdef CONFIG_X86
1561 if (i8042_dritek)
1562 i8042_dritek_enable();
1563 #endif
1565 if (!i8042_noaux) {
1566 error = i8042_setup_aux();
1567 if (error && error != -ENODEV && error != -EBUSY)
1568 goto out_fail;
1571 if (!i8042_nokbd) {
1572 error = i8042_setup_kbd();
1573 if (error)
1574 goto out_fail;
1577 * Ok, everything is ready, let's register all serio ports
1579 i8042_register_ports();
1581 return 0;
1583 out_fail:
1584 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1585 i8042_free_irqs();
1586 i8042_controller_reset(false);
1588 return error;
1591 static void i8042_remove(struct platform_device *dev)
1593 i8042_unregister_ports();
1594 i8042_free_irqs();
1595 i8042_controller_reset(false);
1598 static struct platform_driver i8042_driver = {
1599 .driver = {
1600 .name = "i8042",
1601 #ifdef CONFIG_PM
1602 .pm = &i8042_pm_ops,
1603 #endif
1605 .probe = i8042_probe,
1606 .remove_new = i8042_remove,
1607 .shutdown = i8042_shutdown,
1610 static struct notifier_block i8042_kbd_bind_notifier_block = {
1611 .notifier_call = i8042_kbd_bind_notifier,
1614 static int __init i8042_init(void)
1616 int err;
1618 dbg_init();
1620 err = i8042_platform_init();
1621 if (err)
1622 return (err == -ENODEV) ? 0 : err;
1624 err = i8042_controller_check();
1625 if (err)
1626 goto err_platform_exit;
1628 /* Set this before creating the dev to allow i8042_command to work right away */
1629 i8042_present = true;
1631 err = platform_driver_register(&i8042_driver);
1632 if (err)
1633 goto err_platform_exit;
1635 i8042_platform_device = platform_device_alloc("i8042", -1);
1636 if (!i8042_platform_device) {
1637 err = -ENOMEM;
1638 goto err_unregister_driver;
1641 err = platform_device_add(i8042_platform_device);
1642 if (err)
1643 goto err_free_device;
1645 bus_register_notifier(&serio_bus, &i8042_kbd_bind_notifier_block);
1646 panic_blink = i8042_panic_blink;
1648 return 0;
1650 err_free_device:
1651 platform_device_put(i8042_platform_device);
1652 err_unregister_driver:
1653 platform_driver_unregister(&i8042_driver);
1654 err_platform_exit:
1655 i8042_platform_exit();
1656 return err;
1659 static void __exit i8042_exit(void)
1661 if (!i8042_present)
1662 return;
1664 platform_device_unregister(i8042_platform_device);
1665 platform_driver_unregister(&i8042_driver);
1666 i8042_platform_exit();
1668 bus_unregister_notifier(&serio_bus, &i8042_kbd_bind_notifier_block);
1669 panic_blink = NULL;
1672 module_init(i8042_init);
1673 module_exit(i8042_exit);