blob: 18db5a8c747830516ded46abd66bb822edca2ab5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * i8042 keyboard and mouse controller driver for Linux
3 *
4 * Copyright (c) 1999-2004 Vojtech Pavlik
5 */
6
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.
11 */
12
Dmitry Torokhov7e044e02009-05-09 16:08:05 -070013#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/delay.h>
15#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/interrupt.h>
17#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
19#include <linux/serio.h>
20#include <linux/err.h>
21#include <linux/rcupdate.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Márton Németh553a05b2007-10-22 00:56:52 -040023#include <linux/i8042.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/io.h>
27
28MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
29MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
30MODULE_LICENSE("GPL");
31
Dmitry Torokhov386b3842009-09-09 19:08:16 -070032static bool i8042_nokbd;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -050033module_param_named(nokbd, i8042_nokbd, bool, 0);
34MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
35
Dmitry Torokhov386b3842009-09-09 19:08:16 -070036static bool i8042_noaux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037module_param_named(noaux, i8042_noaux, bool, 0);
38MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
39
Dmitry Torokhov386b3842009-09-09 19:08:16 -070040static bool i8042_nomux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041module_param_named(nomux, i8042_nomux, bool, 0);
Dominik Brodowski2c860a12010-04-05 22:29:09 -070042MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Dmitry Torokhov386b3842009-09-09 19:08:16 -070044static bool i8042_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045module_param_named(unlock, i8042_unlock, bool, 0);
46MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
47
Dmitry Torokhov386b3842009-09-09 19:08:16 -070048static bool i8042_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049module_param_named(reset, i8042_reset, bool, 0);
50MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
51
Dmitry Torokhov386b3842009-09-09 19:08:16 -070052static bool i8042_direct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053module_param_named(direct, i8042_direct, bool, 0);
54MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
55
Dmitry Torokhov386b3842009-09-09 19:08:16 -070056static bool i8042_dumbkbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
58MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
59
Dmitry Torokhov386b3842009-09-09 19:08:16 -070060static bool i8042_noloop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061module_param_named(noloop, i8042_noloop, bool, 0);
62MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
63
Carlos Corbacho8987fec2008-01-21 01:04:40 -050064#ifdef CONFIG_X86
Dmitry Torokhov386b3842009-09-09 19:08:16 -070065static bool i8042_dritek;
Carlos Corbacho8987fec2008-01-21 01:04:40 -050066module_param_named(dritek, i8042_dritek, bool, 0);
67MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
68#endif
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#ifdef CONFIG_PNP
Dmitry Torokhov386b3842009-09-09 19:08:16 -070071static bool i8042_nopnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072module_param_named(nopnp, i8042_nopnp, bool, 0);
73MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
74#endif
75
76#define DEBUG
77#ifdef DEBUG
Dmitry Torokhov386b3842009-09-09 19:08:16 -070078static bool i8042_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079module_param_named(debug, i8042_debug, bool, 0600);
80MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
81#endif
82
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -070083static bool i8042_bypass_aux_irq_test;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include "i8042.h"
86
Dmitry Torokhov181d6832009-09-16 01:06:43 -070087/*
88 * i8042_lock protects serialization between i8042_command and
89 * the interrupt handler.
90 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static DEFINE_SPINLOCK(i8042_lock);
92
Dmitry Torokhov181d6832009-09-16 01:06:43 -070093/*
94 * Writers to AUX and KBD ports as well as users issuing i8042_command
95 * directly should acquire i8042_mutex (by means of calling
96 * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
97 * they do not disturb each other (unfortunately in many i8042
98 * implementations write to one of the ports will immediately abort
99 * command that is being processed by another port).
100 */
101static DEFINE_MUTEX(i8042_mutex);
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103struct i8042_port {
104 struct serio *serio;
105 int irq;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700106 bool exists;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 signed char mux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110#define I8042_KBD_PORT_NO 0
111#define I8042_AUX_PORT_NO 1
112#define I8042_MUX_PORT_NO 2
113#define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400114
115static struct i8042_port i8042_ports[I8042_NUM_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117static unsigned char i8042_initial_ctr;
118static unsigned char i8042_ctr;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700119static bool i8042_mux_present;
120static bool i8042_kbd_irq_registered;
121static bool i8042_aux_irq_registered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400122static unsigned char i8042_suppress_kbd_ack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static struct platform_device *i8042_platform_device;
124
David Howells7d12e782006-10-05 14:55:46 +0100125static irqreturn_t i8042_interrupt(int irq, void *dev_id);
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800126static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
127 struct serio *serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700129void i8042_lock_chip(void)
130{
131 mutex_lock(&i8042_mutex);
132}
133EXPORT_SYMBOL(i8042_lock_chip);
134
135void i8042_unlock_chip(void)
136{
137 mutex_unlock(&i8042_mutex);
138}
139EXPORT_SYMBOL(i8042_unlock_chip);
140
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800141int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
142 struct serio *serio))
143{
144 unsigned long flags;
145 int ret = 0;
146
147 spin_lock_irqsave(&i8042_lock, flags);
148
149 if (i8042_platform_filter) {
150 ret = -EBUSY;
151 goto out;
152 }
153
154 i8042_platform_filter = filter;
155
156out:
157 spin_unlock_irqrestore(&i8042_lock, flags);
158 return ret;
159}
160EXPORT_SYMBOL(i8042_install_filter);
161
162int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
163 struct serio *port))
164{
165 unsigned long flags;
166 int ret = 0;
167
168 spin_lock_irqsave(&i8042_lock, flags);
169
170 if (i8042_platform_filter != filter) {
171 ret = -EINVAL;
172 goto out;
173 }
174
175 i8042_platform_filter = NULL;
176
177out:
178 spin_unlock_irqrestore(&i8042_lock, flags);
179 return ret;
180}
181EXPORT_SYMBOL(i8042_remove_filter);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
184 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
185 * be ready for reading values from it / writing values to it.
186 * Called always with i8042_lock held.
187 */
188
189static int i8042_wait_read(void)
190{
191 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
194 udelay(50);
195 i++;
196 }
197 return -(i == I8042_CTL_TIMEOUT);
198}
199
200static int i8042_wait_write(void)
201{
202 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
205 udelay(50);
206 i++;
207 }
208 return -(i == I8042_CTL_TIMEOUT);
209}
210
211/*
212 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
213 * of the i8042 down the toilet.
214 */
215
216static int i8042_flush(void)
217{
218 unsigned long flags;
219 unsigned char data, str;
220 int i = 0;
221
222 spin_lock_irqsave(&i8042_lock, flags);
223
224 while (((str = i8042_read_status()) & I8042_STR_OBF) && (i < I8042_BUFFER_SIZE)) {
225 udelay(50);
226 data = i8042_read_data();
227 i++;
228 dbg("%02x <- i8042 (flush, %s)", data,
229 str & I8042_STR_AUXDATA ? "aux" : "kbd");
230 }
231
232 spin_unlock_irqrestore(&i8042_lock, flags);
233
234 return i;
235}
236
237/*
238 * i8042_command() executes a command on the i8042. It also sends the input
239 * parameter(s) of the commands to it, and receives the output value(s). The
240 * parameters are to be stored in the param array, and the output is placed
241 * into the same array. The number of the parameters and output values is
242 * encoded in bits 8-11 of the command number.
243 */
244
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400245static int __i8042_command(unsigned char *param, int command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400247 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
250 return -1;
251
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400252 error = i8042_wait_write();
253 if (error)
254 return error;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500255
256 dbg("%02x -> i8042 (command)", command & 0xff);
257 i8042_write_command(command & 0xff);
258
259 for (i = 0; i < ((command >> 12) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400260 error = i8042_wait_write();
261 if (error)
262 return error;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500263 dbg("%02x -> i8042 (parameter)", param[i]);
264 i8042_write_data(param[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500267 for (i = 0; i < ((command >> 8) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400268 error = i8042_wait_read();
269 if (error) {
270 dbg(" -- i8042 (timeout)");
271 return error;
272 }
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500273
274 if (command == I8042_CMD_AUX_LOOP &&
275 !(i8042_read_status() & I8042_STR_AUXDATA)) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400276 dbg(" -- i8042 (auxerr)");
277 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500280 param[i] = i8042_read_data();
281 dbg("%02x <- i8042 (return)", param[i]);
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400284 return 0;
285}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Márton Németh553a05b2007-10-22 00:56:52 -0400287int i8042_command(unsigned char *param, int command)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400288{
289 unsigned long flags;
290 int retval;
291
292 spin_lock_irqsave(&i8042_lock, flags);
293 retval = __i8042_command(param, command);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500294 spin_unlock_irqrestore(&i8042_lock, flags);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return retval;
297}
Márton Németh553a05b2007-10-22 00:56:52 -0400298EXPORT_SYMBOL(i8042_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300/*
301 * i8042_kbd_write() sends a byte out through the keyboard interface.
302 */
303
304static int i8042_kbd_write(struct serio *port, unsigned char c)
305{
306 unsigned long flags;
307 int retval = 0;
308
309 spin_lock_irqsave(&i8042_lock, flags);
310
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400311 if (!(retval = i8042_wait_write())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 dbg("%02x -> i8042 (kbd-data)", c);
313 i8042_write_data(c);
314 }
315
316 spin_unlock_irqrestore(&i8042_lock, flags);
317
318 return retval;
319}
320
321/*
322 * i8042_aux_write() sends a byte out through the aux interface.
323 */
324
325static int i8042_aux_write(struct serio *serio, unsigned char c)
326{
327 struct i8042_port *port = serio->port_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Dmitry Torokhovf4e3c712006-11-02 23:27:49 -0500329 return i8042_command(&c, port->mux == -1 ?
330 I8042_CMD_AUX_SEND :
331 I8042_CMD_MUX_SEND + port->mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700334
335/*
336 * i8042_aux_close attempts to clear AUX or KBD port state by disabling
337 * and then re-enabling it.
338 */
339
340static void i8042_port_close(struct serio *serio)
341{
342 int irq_bit;
343 int disable_bit;
344 const char *port_name;
345
346 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
347 irq_bit = I8042_CTR_AUXINT;
348 disable_bit = I8042_CTR_AUXDIS;
349 port_name = "AUX";
350 } else {
351 irq_bit = I8042_CTR_KBDINT;
352 disable_bit = I8042_CTR_KBDDIS;
353 port_name = "KBD";
354 }
355
356 i8042_ctr &= ~irq_bit;
357 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
358 printk(KERN_WARNING
359 "i8042.c: Can't write CTR while closing %s port.\n",
360 port_name);
361
362 udelay(50);
363
364 i8042_ctr &= ~disable_bit;
365 i8042_ctr |= irq_bit;
366 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
367 printk(KERN_ERR "i8042.c: Can't reactivate %s port.\n",
368 port_name);
369
370 /*
371 * See if there is any data appeared while we were messing with
372 * port state.
373 */
374 i8042_interrupt(0, NULL);
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * i8042_start() is called by serio core when port is about to finish
379 * registering. It will mark port as existing so i8042_interrupt can
380 * start sending data through it.
381 */
382static int i8042_start(struct serio *serio)
383{
384 struct i8042_port *port = serio->port_data;
385
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700386 port->exists = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 mb();
388 return 0;
389}
390
391/*
392 * i8042_stop() marks serio port as non-existing so i8042_interrupt
393 * will not try to send data to the port that is about to go away.
394 * The function is called by serio core as part of unregister procedure.
395 */
396static void i8042_stop(struct serio *serio)
397{
398 struct i8042_port *port = serio->port_data;
399
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700400 port->exists = false;
Dmitry Torokhova8399c52007-11-04 00:44:31 -0400401
402 /*
403 * We synchronize with both AUX and KBD IRQs because there is
404 * a (very unlikely) chance that AUX IRQ is raised for KBD port
405 * and vice versa.
406 */
407 synchronize_irq(I8042_AUX_IRQ);
408 synchronize_irq(I8042_KBD_IRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 port->serio = NULL;
410}
411
412/*
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800413 * i8042_filter() filters out unwanted bytes from the input data stream.
414 * It is called from i8042_interrupt and thus is running with interrupts
415 * off and i8042_lock held.
416 */
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800417static bool i8042_filter(unsigned char data, unsigned char str,
418 struct serio *serio)
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800419{
420 if (unlikely(i8042_suppress_kbd_ack)) {
421 if ((~str & I8042_STR_AUXDATA) &&
422 (data == 0xfa || data == 0xfe)) {
423 i8042_suppress_kbd_ack--;
424 dbg("Extra keyboard ACK - filtered out\n");
425 return true;
426 }
427 }
428
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800429 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
Stefan Weil0747e3b2010-01-07 00:44:08 +0100430 dbg("Filtered out by platform filter\n");
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800431 return true;
432 }
433
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800434 return false;
435}
436
437/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * i8042_interrupt() is the most important function in this driver -
439 * it handles the interrupts from the i8042, and sends incoming bytes
440 * to the upper layers.
441 */
442
David Howells7d12e782006-10-05 14:55:46 +0100443static irqreturn_t i8042_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct i8042_port *port;
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800446 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 unsigned long flags;
448 unsigned char str, data;
449 unsigned int dfl;
450 unsigned int port_no;
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800451 bool filtered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400452 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 spin_lock_irqsave(&i8042_lock, flags);
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 str = i8042_read_status();
457 if (unlikely(~str & I8042_STR_OBF)) {
458 spin_unlock_irqrestore(&i8042_lock, flags);
459 if (irq) dbg("Interrupt %d, without any data", irq);
460 ret = 0;
461 goto out;
462 }
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 data = i8042_read_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
467 static unsigned long last_transmit;
468 static unsigned char last_str;
469
470 dfl = 0;
471 if (str & I8042_STR_MUXERR) {
472 dbg("MUX error, status is %02x, data is %02x", str, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
474 * When MUXERR condition is signalled the data register can only contain
475 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500476 * it is not always the case. Some KBCs also report 0xfc when there is
477 * nothing connected to the port while others sometimes get confused which
478 * port the data came from and signal error leaving the data intact. They
479 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
480 * to legacy mode yet, when we see one we'll add proper handling).
481 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
482 * rest assume that the data came from the same serio last byte
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 * was transmitted (if transmission happened not too long ago).
484 */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500485
486 switch (data) {
487 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (time_before(jiffies, last_transmit + HZ/10)) {
489 str = last_str;
490 break;
491 }
492 /* fall through - report timeout */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500493 case 0xfc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 case 0xfd:
495 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
496 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
497 }
498 }
499
500 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
501 last_str = str;
502 last_transmit = jiffies;
503 } else {
504
505 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
506 ((str & I8042_STR_TIMEOUT) ? SERIO_TIMEOUT : 0);
507
508 port_no = (str & I8042_STR_AUXDATA) ?
509 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
510 }
511
512 port = &i8042_ports[port_no];
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800513 serio = port->exists ? port->serio : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400515 dbg("%02x <- i8042 (interrupt, %d, %d%s%s)",
516 data, port_no, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 dfl & SERIO_PARITY ? ", bad parity" : "",
518 dfl & SERIO_TIMEOUT ? ", timeout" : "");
519
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800520 filtered = i8042_filter(data, str, serio);
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400521
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800522 spin_unlock_irqrestore(&i8042_lock, flags);
523
524 if (likely(port->exists && !filtered))
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800525 serio_interrupt(serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500527 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return IRQ_RETVAL(ret);
529}
530
531/*
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700532 * i8042_enable_kbd_port enables keyboard port on chip
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400533 */
534
535static int i8042_enable_kbd_port(void)
536{
537 i8042_ctr &= ~I8042_CTR_KBDDIS;
538 i8042_ctr |= I8042_CTR_KBDINT;
539
540 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400541 i8042_ctr &= ~I8042_CTR_KBDINT;
542 i8042_ctr |= I8042_CTR_KBDDIS;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400543 printk(KERN_ERR "i8042.c: Failed to enable KBD port.\n");
544 return -EIO;
545 }
546
547 return 0;
548}
549
550/*
551 * i8042_enable_aux_port enables AUX (mouse) port on chip
552 */
553
554static int i8042_enable_aux_port(void)
555{
556 i8042_ctr &= ~I8042_CTR_AUXDIS;
557 i8042_ctr |= I8042_CTR_AUXINT;
558
559 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400560 i8042_ctr &= ~I8042_CTR_AUXINT;
561 i8042_ctr |= I8042_CTR_AUXDIS;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400562 printk(KERN_ERR "i8042.c: Failed to enable AUX port.\n");
563 return -EIO;
564 }
565
566 return 0;
567}
568
569/*
570 * i8042_enable_mux_ports enables 4 individual AUX ports after
571 * the controller has been switched into Multiplexed mode
572 */
573
574static int i8042_enable_mux_ports(void)
575{
576 unsigned char param;
577 int i;
578
579 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
580 i8042_command(&param, I8042_CMD_MUX_PFX + i);
581 i8042_command(&param, I8042_CMD_AUX_ENABLE);
582 }
583
584 return i8042_enable_aux_port();
585}
586
587/*
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700588 * i8042_set_mux_mode checks whether the controller has an
589 * active multiplexor and puts the chip into Multiplexed (true)
590 * or Legacy (false) mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
592
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700593static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700596 unsigned char param, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/*
598 * Get rid of bytes in the queue.
599 */
600
601 i8042_flush();
602
603/*
604 * Internal loopback test - send three bytes, they should come back from the
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400605 * mouse interface, the last should be version.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
607
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700608 param = val = 0xf0;
609 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700611 param = val = multiplex ? 0x56 : 0xf6;
612 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700614 param = val = multiplex ? 0xa4 : 0xa5;
615 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
616 return -1;
617
618/*
619 * Workaround for interference with USB Legacy emulation
620 * that causes a v10.12 MUX to be found.
621 */
622 if (param == 0xac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return -1;
624
625 if (mux_version)
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500626 *mux_version = param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 return 0;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/*
632 * i8042_check_mux() checks whether the controller supports the PS/2 Active
633 * Multiplexing specification by Synaptics, Phoenix, Insyde and
634 * LCS/Telegraphics.
635 */
636
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700637static int __init i8042_check_mux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 unsigned char mux_version;
640
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700641 if (i8042_set_mux_mode(true, &mux_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return -1;
643
644 printk(KERN_INFO "i8042.c: Detected active multiplexing controller, rev %d.%d.\n",
645 (mux_version >> 4) & 0xf, mux_version & 0xf);
646
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400647/*
648 * Disable all muxed ports by disabling AUX.
649 */
650 i8042_ctr |= I8042_CTR_AUXDIS;
651 i8042_ctr &= ~I8042_CTR_AUXINT;
652
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;
656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700658 i8042_mux_present = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
661}
662
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400663/*
664 * The following is used to test AUX IRQ delivery.
665 */
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700666static struct completion i8042_aux_irq_delivered __initdata;
667static bool i8042_irq_being_tested __initdata;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400668
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700669static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400670{
671 unsigned long flags;
672 unsigned char str, data;
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400673 int ret = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400674
675 spin_lock_irqsave(&i8042_lock, flags);
676 str = i8042_read_status();
677 if (str & I8042_STR_OBF) {
678 data = i8042_read_data();
Dmitry Torokhovd3d2dfe2009-10-08 20:58:13 -0700679 dbg("%02x <- i8042 (aux_test_irq, %s)",
680 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400681 if (i8042_irq_being_tested &&
682 data == 0xa5 && (str & I8042_STR_AUXDATA))
683 complete(&i8042_aux_irq_delivered);
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400684 ret = 1;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400685 }
686 spin_unlock_irqrestore(&i8042_lock, flags);
687
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400688 return IRQ_RETVAL(ret);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400689}
690
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400691/*
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.
695 */
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700696static int __init i8042_toggle_aux(bool on)
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400697{
698 unsigned char param;
699 int i;
700
701 if (i8042_command(&param,
702 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
703 return -1;
704
705 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
706 for (i = 0; i < 100; i++) {
707 udelay(50);
708
709 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
710 return -1;
711
712 if (!(param & I8042_CTR_AUXDIS) == on)
713 return 0;
714 }
715
716 return -1;
717}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719/*
720 * i8042_check_aux() applies as much paranoia as it can at detecting
721 * the presence of an AUX interface.
722 */
723
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700724static int __init i8042_check_aux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400726 int retval = -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700727 bool irq_registered = false;
728 bool aux_loop_broken = false;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400729 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 unsigned char param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732/*
733 * Get rid of bytes in the queue.
734 */
735
736 i8042_flush();
737
738/*
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.
742 */
743
744 param = 0x5a;
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500745 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
746 if (retval || param != 0x5a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748/*
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.
754 */
755
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400756 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
757 (param && param != 0xfa && param != 0xff))
758 return -1;
Dmitry Torokhov1e4865f2007-02-10 01:29:53 -0500759
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500760/*
761 * If AUX_LOOP completed without error but returned unexpected data
762 * mark it as broken
763 */
764 if (!retval)
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700765 aux_loop_broken = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
768/*
769 * Bit assignment test - filters out PS/2 i8042's in AT mode
770 */
771
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700772 if (i8042_toggle_aux(false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 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");
775 }
776
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700777 if (i8042_toggle_aux(true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return -1;
779
780/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400781 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
782 * used it for a PCI card or somethig else.
783 */
784
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700785 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400786/*
787 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
788 * is working and hope we are right.
789 */
790 retval = 0;
791 goto out;
792 }
793
794 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
795 "i8042", i8042_platform_device))
796 goto out;
797
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700798 irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400799
800 if (i8042_enable_aux_port())
801 goto out;
802
803 spin_lock_irqsave(&i8042_lock, flags);
804
805 init_completion(&i8042_aux_irq_delivered);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700806 i8042_irq_being_tested = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400807
808 param = 0xa5;
809 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
810
811 spin_unlock_irqrestore(&i8042_lock, flags);
812
813 if (retval)
814 goto out;
815
816 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
817 msecs_to_jiffies(250)) == 0) {
818/*
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.
821 */
Dmitry Torokhovd3d2dfe2009-10-08 20:58:13 -0700822 dbg(" -- i8042 (aux irq test timeout)");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400823 i8042_flush();
824 retval = -1;
825 }
826
827 out:
828
829/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 * Disable the interface.
831 */
832
833 i8042_ctr |= I8042_CTR_AUXDIS;
834 i8042_ctr &= ~I8042_CTR_AUXINT;
835
836 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400837 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400839 if (irq_registered)
840 free_irq(I8042_AUX_IRQ, i8042_platform_device);
841
842 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400845static int i8042_controller_check(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400847 if (i8042_flush() == I8042_BUFFER_SIZE) {
848 printk(KERN_ERR "i8042.c: No controller found.\n");
849 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return 0;
853}
854
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400855static int i8042_controller_selftest(void)
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500856{
857 unsigned char param;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700858 int i = 0;
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500859
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700860 /*
861 * We try this 5 times; on some really fragile systems this does not
862 * take the first time...
863 */
864 do {
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500865
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700866 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
867 printk(KERN_ERR "i8042.c: i8042 controller self test timeout.\n");
868 return -ENODEV;
869 }
870
871 if (param == I8042_RET_CTL_TEST)
872 return 0;
873
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500874 printk(KERN_ERR "i8042.c: i8042 controller selftest failed. (%#x != %#x)\n",
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700875 param, I8042_RET_CTL_TEST);
876 msleep(50);
877 } while (i++ < 5);
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500878
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700879#ifdef CONFIG_X86
880 /*
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.
885 */
886 printk(KERN_INFO
887 "i8042: giving up on controller selftest, continuing anyway...\n");
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500888 return 0;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700889#else
890 return -EIO;
891#endif
Vojtech Pavlik2673c832005-05-28 02:11:27 -0500892}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894/*
895 * i8042_controller init initializes the i8042 controller, and,
896 * most importantly, sets it into non-xlated mode if that's
897 * desired.
898 */
899
900static int i8042_controller_init(void)
901{
902 unsigned long flags;
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800903 int n = 0;
904 unsigned char ctr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906/*
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800907 * Save the CTR for restore on unload / reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 */
909
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800910 do {
911 if (n >= 10) {
912 printk(KERN_ERR
913 "i8042.c: Unable to get stable CTR read.\n");
914 return -EIO;
915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800917 if (n != 0)
918 udelay(50);
919
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;
924 }
925
926 } while (n < 2 || ctr[0] != ctr[1]);
927
928 i8042_initial_ctr = i8042_ctr = ctr[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930/*
931 * Disable the keyboard interface and interrupt.
932 */
933
934 i8042_ctr |= I8042_CTR_KBDDIS;
935 i8042_ctr &= ~I8042_CTR_KBDINT;
936
937/*
938 * Handle keylock.
939 */
940
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;
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500945 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 printk(KERN_WARNING "i8042.c: Warning: Keylock active.\n");
947 }
948 spin_unlock_irqrestore(&i8042_lock, flags);
949
950/*
951 * If the chip is configured into nontranslated mode by the BIOS, don't
952 * bother enabling translating and be happy.
953 */
954
955 if (~i8042_ctr & I8042_CTR_XLATE)
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700956 i8042_direct = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958/*
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.
963 */
964
965 if (i8042_direct)
966 i8042_ctr &= ~I8042_CTR_XLATE;
967
968/*
969 * Write CTR back.
970 */
971
972 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
973 printk(KERN_ERR "i8042.c: Can't write CTR while initializing i8042.\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400974 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800977/*
978 * Flush whatever accumulated while we were disabling keyboard port.
979 */
980
981 i8042_flush();
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return 0;
984}
985
986
987/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400988 * Reset the controller and reset CRT to the original value set by BIOS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
990
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400991static void i8042_controller_reset(void)
992{
993 i8042_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995/*
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -0400996 * Disable both KBD and AUX interfaces so they don't get in the way
997 */
998
999 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1000 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1001
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001002 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001003 printk(KERN_WARNING "i8042.c: Can't write CTR while resetting.\n");
1004
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -04001005/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 * Disable MUX mode if present.
1007 */
1008
1009 if (i8042_mux_present)
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001010 i8042_set_mux_mode(false, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001013 * Reset the controller if requested.
1014 */
1015
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001016 if (i8042_reset)
1017 i8042_controller_selftest();
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001018
1019/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 * Restore the original control register setting.
1021 */
1022
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001023 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 printk(KERN_WARNING "i8042.c: Can't restore CTR.\n");
1025}
1026
1027
1028/*
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001029 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 * not see the console and will help distingushing panics from "real"
1032 * lockups.
1033 *
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
1036 */
1037
1038#define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1039
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001040static long i8042_panic_blink(int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 long delay = 0;
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001043 char led;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001045 led = (state) ? 0x01 | 0x04 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 while (i8042_read_status() & I8042_STR_IBF)
1047 DELAY;
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -05001048 dbg("%02x -> i8042 (panic blink)", 0xed);
1049 i8042_suppress_kbd_ack = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 i8042_write_data(0xed); /* set leds */
1051 DELAY;
1052 while (i8042_read_status() & I8042_STR_IBF)
1053 DELAY;
1054 DELAY;
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -05001055 dbg("%02x -> i8042 (panic blink)", led);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 i8042_write_data(led);
1057 DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 return delay;
1059}
1060
1061#undef DELAY
1062
Bruno Prémontd35895d2008-05-27 01:36:04 -04001063#ifdef CONFIG_X86
1064static void i8042_dritek_enable(void)
1065{
Christoph Fritz594d6362010-09-29 18:04:21 -07001066 unsigned char param = 0x90;
Bruno Prémontd35895d2008-05-27 01:36:04 -04001067 int error;
1068
1069 error = i8042_command(&param, 0x1059);
1070 if (error)
1071 printk(KERN_WARNING
1072 "Failed to enable DRITEK extension: %d\n",
1073 error);
1074}
1075#endif
1076
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001077#ifdef CONFIG_PM
Dmitry Torokhov7e044e02009-05-09 16:08:05 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079/*
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001080 * Here we try to reset everything back to a state we had
1081 * before suspending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 */
1083
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001084static int i8042_controller_resume(bool force_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001086 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001088 error = i8042_controller_check();
1089 if (error)
1090 return error;
Vojtech Pavlik2673c832005-05-28 02:11:27 -05001091
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001092 if (i8042_reset || force_reset) {
1093 error = i8042_controller_selftest();
1094 if (error)
1095 return error;
1096 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001097
1098/*
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001099 * Restore original CTR value and disable all ports
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001100 */
1101
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001102 i8042_ctr = i8042_initial_ctr;
1103 if (i8042_direct)
1104 i8042_ctr &= ~I8042_CTR_XLATE;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001105 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1106 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
Vojtech Pavlik2673c832005-05-28 02:11:27 -05001107 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Jiri Kosina2f6a77d2008-06-17 11:47:27 -04001108 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;
1113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 }
1115
Bruno Prémontd35895d2008-05-27 01:36:04 -04001116
1117#ifdef CONFIG_X86
1118 if (i8042_dritek)
1119 i8042_dritek_enable();
1120#endif
1121
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001122 if (i8042_mux_present) {
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001123 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001124 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();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001130 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1131 i8042_enable_kbd_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
David Howells7d12e782006-10-05 14:55:46 +01001133 i8042_interrupt(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001137
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001138/*
1139 * Here we try to restore the original BIOS settings to avoid
1140 * upsetting it.
1141 */
1142
1143static int i8042_pm_reset(struct device *dev)
1144{
1145 i8042_controller_reset();
1146
1147 return 0;
1148}
1149
1150static int i8042_pm_resume(struct device *dev)
1151{
1152 /*
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.)
1156 */
1157 return i8042_controller_resume(true);
1158}
1159
Alan Jenkinsc2d1a2a2010-02-17 12:17:33 -08001160static int i8042_pm_thaw(struct device *dev)
1161{
1162 i8042_interrupt(0, NULL);
1163
1164 return 0;
1165}
1166
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001167static int i8042_pm_restore(struct device *dev)
1168{
1169 return i8042_controller_resume(false);
1170}
1171
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001172static const struct dev_pm_ops i8042_pm_ops = {
1173 .suspend = i8042_pm_reset,
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001174 .resume = i8042_pm_resume,
Alan Jenkinsc2d1a2a2010-02-17 12:17:33 -08001175 .thaw = i8042_pm_thaw,
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001176 .poweroff = i8042_pm_reset,
1177 .restore = i8042_pm_restore,
1178};
1179
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001180#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182/*
1183 * We need to reset the 8042 back to original mode on system shutdown,
1184 * because otherwise BIOSes will be confused.
1185 */
1186
Russell King3ae5eae2005-11-09 22:32:44 +00001187static void i8042_shutdown(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001189 i8042_controller_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001192static int __init i8042_create_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 struct serio *serio;
1195 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1196
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001197 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001198 if (!serio)
1199 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001201 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1202 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001203 serio->start = i8042_start;
1204 serio->stop = i8042_stop;
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001205 serio->close = i8042_port_close;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001206 serio->port_data = port;
1207 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001208 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001209 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
1210
1211 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001212 port->irq = I8042_KBD_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001213
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001217static int __init i8042_create_aux_port(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 struct serio *serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001220 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1221 struct i8042_port *port = &i8042_ports[port_no];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001223 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001224 if (!serio)
1225 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001227 serio->id.type = SERIO_8042;
1228 serio->write = i8042_aux_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001229 serio->start = i8042_start;
1230 serio->stop = i8042_stop;
1231 serio->port_data = port;
1232 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001233 if (idx < 0) {
1234 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1235 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001236 serio->close = i8042_port_close;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001237 } 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);
1240 }
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001241
1242 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001243 port->mux = idx;
1244 port->irq = I8042_AUX_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001245
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001249static void __init i8042_free_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001251 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1252 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1253}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001255static void __init i8042_free_aux_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001256{
1257 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001259 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1260 kfree(i8042_ports[i].serio);
1261 i8042_ports[i].serio = NULL;
1262 }
1263}
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001264
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001265static void __init i8042_register_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001266{
1267 int i;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001268
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001269 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);
1277 }
1278 }
1279}
1280
Ralf Baechle7a1904c2007-09-04 23:16:31 -04001281static void __devexit i8042_unregister_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001282{
1283 int i;
1284
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;
1289 }
1290 }
1291}
1292
Dmitry Torokhov181d6832009-09-16 01:06:43 -07001293/*
1294 * Checks whether port belongs to i8042 controller.
1295 */
1296bool i8042_check_port_owner(const struct serio *port)
1297{
1298 int i;
1299
1300 for (i = 0; i < I8042_NUM_PORTS; i++)
1301 if (i8042_ports[i].serio == port)
1302 return true;
1303
1304 return false;
1305}
1306EXPORT_SYMBOL(i8042_check_port_owner);
1307
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001308static void i8042_free_irqs(void)
1309{
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);
1314
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001315 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001316}
1317
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001318static int __init i8042_setup_aux(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001319{
1320 int (*aux_enable)(void);
1321 int error;
1322 int i;
1323
1324 if (i8042_check_aux())
1325 return -ENODEV;
1326
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;
1337 }
1338 aux_enable = i8042_enable_mux_ports;
1339 }
1340
1341 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1342 "i8042", i8042_platform_device);
1343 if (error)
1344 goto err_free_ports;
1345
1346 if (aux_enable())
1347 goto err_free_irq;
1348
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001349 i8042_aux_irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001350 return 0;
1351
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;
1357}
1358
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001359static int __init i8042_setup_kbd(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001360{
1361 int error;
1362
1363 error = i8042_create_kbd_port();
1364 if (error)
1365 return error;
1366
1367 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1368 "i8042", i8042_platform_device);
1369 if (error)
1370 goto err_free_port;
1371
1372 error = i8042_enable_kbd_port();
1373 if (error)
1374 goto err_free_irq;
1375
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001376 i8042_kbd_irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001377 return 0;
1378
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001386static int __init i8042_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001388 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001390 i8042_platform_device = dev;
1391
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001392 if (i8042_reset) {
1393 error = i8042_controller_selftest();
1394 if (error)
1395 return error;
1396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001398 error = i8042_controller_init();
1399 if (error)
1400 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Bruno Prémontd35895d2008-05-27 01:36:04 -04001402#ifdef CONFIG_X86
1403 if (i8042_dritek)
1404 i8042_dritek_enable();
1405#endif
1406
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001407 if (!i8042_noaux) {
1408 error = i8042_setup_aux();
1409 if (error && error != -ENODEV && error != -EBUSY)
1410 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
1412
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001413 if (!i8042_nokbd) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001414 error = i8042_setup_kbd();
1415 if (error)
1416 goto out_fail;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001417 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001418/*
1419 * Ok, everything is ready, let's register all serio ports
1420 */
1421 i8042_register_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return 0;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001424
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001425 out_fail:
1426 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1427 i8042_free_irqs();
1428 i8042_controller_reset();
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001429 i8042_platform_device = NULL;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001430
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001431 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432}
1433
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001434static int __devexit i8042_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001436 i8042_unregister_ports();
1437 i8042_free_irqs();
1438 i8042_controller_reset();
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001439 i8042_platform_device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001441 return 0;
1442}
1443
1444static struct platform_driver i8042_driver = {
1445 .driver = {
1446 .name = "i8042",
1447 .owner = THIS_MODULE,
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001448#ifdef CONFIG_PM
1449 .pm = &i8042_pm_ops,
1450#endif
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001451 },
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001452 .remove = __devexit_p(i8042_remove),
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001453 .shutdown = i8042_shutdown,
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001454};
1455
1456static int __init i8042_init(void)
1457{
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001458 struct platform_device *pdev;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001459 int err;
1460
1461 dbg_init();
1462
1463 err = i8042_platform_init();
1464 if (err)
1465 return err;
1466
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001467 err = i8042_controller_check();
1468 if (err)
1469 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001470
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001471 pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
1472 if (IS_ERR(pdev)) {
1473 err = PTR_ERR(pdev);
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001474 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001475 }
1476
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001477 panic_blink = i8042_panic_blink;
1478
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001479 return 0;
1480
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001481 err_platform_exit:
1482 i8042_platform_exit();
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001483 return err;
1484}
1485
1486static void __exit i8042_exit(void)
1487{
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001488 platform_device_unregister(i8042_platform_device);
Dmitry Torokhovaf045b82010-08-31 17:27:02 -07001489 platform_driver_unregister(&i8042_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 i8042_platform_exit();
1491
1492 panic_blink = NULL;
1493}
1494
1495module_init(i8042_init);
1496module_exit(i8042_exit);