blob: 1364c7964db47283221d6ea7b539af7b91126c52 [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
13#include <linux/delay.h>
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <asm/io.h>
25
26MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
27MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
28MODULE_LICENSE("GPL");
29
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -050030static unsigned int i8042_nokbd;
31module_param_named(nokbd, i8042_nokbd, bool, 0);
32MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static unsigned int i8042_noaux;
35module_param_named(noaux, i8042_noaux, bool, 0);
36MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
37
38static unsigned int i8042_nomux;
39module_param_named(nomux, i8042_nomux, bool, 0);
40MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing conrtoller is present.");
41
42static unsigned int i8042_unlock;
43module_param_named(unlock, i8042_unlock, bool, 0);
44MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
45
46static unsigned int i8042_reset;
47module_param_named(reset, i8042_reset, bool, 0);
48MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
49
50static unsigned int i8042_direct;
51module_param_named(direct, i8042_direct, bool, 0);
52MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
53
54static unsigned int i8042_dumbkbd;
55module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
56MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
57
58static unsigned int i8042_noloop;
59module_param_named(noloop, i8042_noloop, bool, 0);
60MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
61
62static unsigned int i8042_blink_frequency = 500;
63module_param_named(panicblink, i8042_blink_frequency, uint, 0600);
64MODULE_PARM_DESC(panicblink, "Frequency with which keyboard LEDs should blink when kernel panics");
65
66#ifdef CONFIG_PNP
67static int i8042_nopnp;
68module_param_named(nopnp, i8042_nopnp, bool, 0);
69MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
70#endif
71
72#define DEBUG
73#ifdef DEBUG
74static int i8042_debug;
75module_param_named(debug, i8042_debug, bool, 0600);
76MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
77#endif
78
79__obsolete_setup("i8042_noaux");
80__obsolete_setup("i8042_nomux");
81__obsolete_setup("i8042_unlock");
82__obsolete_setup("i8042_reset");
83__obsolete_setup("i8042_direct");
84__obsolete_setup("i8042_dumbkbd");
85
86#include "i8042.h"
87
88static DEFINE_SPINLOCK(i8042_lock);
89
90struct i8042_port {
91 struct serio *serio;
92 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unsigned char exists;
94 signed char mux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
97#define I8042_KBD_PORT_NO 0
98#define I8042_AUX_PORT_NO 1
99#define I8042_MUX_PORT_NO 2
100#define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400101
102static struct i8042_port i8042_ports[I8042_NUM_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104static unsigned char i8042_initial_ctr;
105static unsigned char i8042_ctr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static unsigned char i8042_mux_present;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400107static unsigned char i8042_kbd_irq_registered;
108static unsigned char i8042_aux_irq_registered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400109static unsigned char i8042_suppress_kbd_ack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static struct platform_device *i8042_platform_device;
111
David Howells7d12e782006-10-05 14:55:46 +0100112static irqreturn_t i8042_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114/*
115 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
116 * be ready for reading values from it / writing values to it.
117 * Called always with i8042_lock held.
118 */
119
120static int i8042_wait_read(void)
121{
122 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
125 udelay(50);
126 i++;
127 }
128 return -(i == I8042_CTL_TIMEOUT);
129}
130
131static int i8042_wait_write(void)
132{
133 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
136 udelay(50);
137 i++;
138 }
139 return -(i == I8042_CTL_TIMEOUT);
140}
141
142/*
143 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
144 * of the i8042 down the toilet.
145 */
146
147static int i8042_flush(void)
148{
149 unsigned long flags;
150 unsigned char data, str;
151 int i = 0;
152
153 spin_lock_irqsave(&i8042_lock, flags);
154
155 while (((str = i8042_read_status()) & I8042_STR_OBF) && (i < I8042_BUFFER_SIZE)) {
156 udelay(50);
157 data = i8042_read_data();
158 i++;
159 dbg("%02x <- i8042 (flush, %s)", data,
160 str & I8042_STR_AUXDATA ? "aux" : "kbd");
161 }
162
163 spin_unlock_irqrestore(&i8042_lock, flags);
164
165 return i;
166}
167
168/*
169 * i8042_command() executes a command on the i8042. It also sends the input
170 * parameter(s) of the commands to it, and receives the output value(s). The
171 * parameters are to be stored in the param array, and the output is placed
172 * into the same array. The number of the parameters and output values is
173 * encoded in bits 8-11 of the command number.
174 */
175
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400176static int __i8042_command(unsigned char *param, int command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400178 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
181 return -1;
182
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400183 error = i8042_wait_write();
184 if (error)
185 return error;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500186
187 dbg("%02x -> i8042 (command)", command & 0xff);
188 i8042_write_command(command & 0xff);
189
190 for (i = 0; i < ((command >> 12) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400191 error = i8042_wait_write();
192 if (error)
193 return error;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500194 dbg("%02x -> i8042 (parameter)", param[i]);
195 i8042_write_data(param[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500198 for (i = 0; i < ((command >> 8) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400199 error = i8042_wait_read();
200 if (error) {
201 dbg(" -- i8042 (timeout)");
202 return error;
203 }
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500204
205 if (command == I8042_CMD_AUX_LOOP &&
206 !(i8042_read_status() & I8042_STR_AUXDATA)) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400207 dbg(" -- i8042 (auxerr)");
208 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500211 param[i] = i8042_read_data();
212 dbg("%02x <- i8042 (return)", param[i]);
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400215 return 0;
216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400218static int i8042_command(unsigned char *param, int command)
219{
220 unsigned long flags;
221 int retval;
222
223 spin_lock_irqsave(&i8042_lock, flags);
224 retval = __i8042_command(param, command);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500225 spin_unlock_irqrestore(&i8042_lock, flags);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return retval;
228}
229
230/*
231 * i8042_kbd_write() sends a byte out through the keyboard interface.
232 */
233
234static int i8042_kbd_write(struct serio *port, unsigned char c)
235{
236 unsigned long flags;
237 int retval = 0;
238
239 spin_lock_irqsave(&i8042_lock, flags);
240
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400241 if (!(retval = i8042_wait_write())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 dbg("%02x -> i8042 (kbd-data)", c);
243 i8042_write_data(c);
244 }
245
246 spin_unlock_irqrestore(&i8042_lock, flags);
247
248 return retval;
249}
250
251/*
252 * i8042_aux_write() sends a byte out through the aux interface.
253 */
254
255static int i8042_aux_write(struct serio *serio, unsigned char c)
256{
257 struct i8042_port *port = serio->port_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Dmitry Torokhovf4e3c712006-11-02 23:27:49 -0500259 return i8042_command(&c, port->mux == -1 ?
260 I8042_CMD_AUX_SEND :
261 I8042_CMD_MUX_SEND + port->mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * i8042_start() is called by serio core when port is about to finish
266 * registering. It will mark port as existing so i8042_interrupt can
267 * start sending data through it.
268 */
269static int i8042_start(struct serio *serio)
270{
271 struct i8042_port *port = serio->port_data;
272
273 port->exists = 1;
274 mb();
275 return 0;
276}
277
278/*
279 * i8042_stop() marks serio port as non-existing so i8042_interrupt
280 * will not try to send data to the port that is about to go away.
281 * The function is called by serio core as part of unregister procedure.
282 */
283static void i8042_stop(struct serio *serio)
284{
285 struct i8042_port *port = serio->port_data;
286
287 port->exists = 0;
Paul E. McKenneyb2b18662005-06-25 14:55:38 -0700288 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 port->serio = NULL;
290}
291
292/*
293 * i8042_interrupt() is the most important function in this driver -
294 * it handles the interrupts from the i8042, and sends incoming bytes
295 * to the upper layers.
296 */
297
David Howells7d12e782006-10-05 14:55:46 +0100298static irqreturn_t i8042_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 struct i8042_port *port;
301 unsigned long flags;
302 unsigned char str, data;
303 unsigned int dfl;
304 unsigned int port_no;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400305 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 spin_lock_irqsave(&i8042_lock, flags);
308 str = i8042_read_status();
309 if (unlikely(~str & I8042_STR_OBF)) {
310 spin_unlock_irqrestore(&i8042_lock, flags);
311 if (irq) dbg("Interrupt %d, without any data", irq);
312 ret = 0;
313 goto out;
314 }
315 data = i8042_read_data();
316 spin_unlock_irqrestore(&i8042_lock, flags);
317
318 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
319 static unsigned long last_transmit;
320 static unsigned char last_str;
321
322 dfl = 0;
323 if (str & I8042_STR_MUXERR) {
324 dbg("MUX error, status is %02x, data is %02x", str, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*
326 * When MUXERR condition is signalled the data register can only contain
327 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500328 * it is not always the case. Some KBCs also report 0xfc when there is
329 * nothing connected to the port while others sometimes get confused which
330 * port the data came from and signal error leaving the data intact. They
331 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
332 * to legacy mode yet, when we see one we'll add proper handling).
333 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
334 * rest assume that the data came from the same serio last byte
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * was transmitted (if transmission happened not too long ago).
336 */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500337
338 switch (data) {
339 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (time_before(jiffies, last_transmit + HZ/10)) {
341 str = last_str;
342 break;
343 }
344 /* fall through - report timeout */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500345 case 0xfc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 case 0xfd:
347 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
348 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
349 }
350 }
351
352 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
353 last_str = str;
354 last_transmit = jiffies;
355 } else {
356
357 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
358 ((str & I8042_STR_TIMEOUT) ? SERIO_TIMEOUT : 0);
359
360 port_no = (str & I8042_STR_AUXDATA) ?
361 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
362 }
363
364 port = &i8042_ports[port_no];
365
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400366 dbg("%02x <- i8042 (interrupt, %d, %d%s%s)",
367 data, port_no, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 dfl & SERIO_PARITY ? ", bad parity" : "",
369 dfl & SERIO_TIMEOUT ? ", timeout" : "");
370
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400371 if (unlikely(i8042_suppress_kbd_ack))
372 if (port_no == I8042_KBD_PORT_NO &&
373 (data == 0xfa || data == 0xfe)) {
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -0500374 i8042_suppress_kbd_ack--;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400375 goto out;
376 }
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (likely(port->exists))
David Howells7d12e782006-10-05 14:55:46 +0100379 serio_interrupt(port->serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500381 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return IRQ_RETVAL(ret);
383}
384
385/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400386 * i8042_enable_kbd_port enables keybaord port on chip
387 */
388
389static int i8042_enable_kbd_port(void)
390{
391 i8042_ctr &= ~I8042_CTR_KBDDIS;
392 i8042_ctr |= I8042_CTR_KBDINT;
393
394 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
395 printk(KERN_ERR "i8042.c: Failed to enable KBD port.\n");
396 return -EIO;
397 }
398
399 return 0;
400}
401
402/*
403 * i8042_enable_aux_port enables AUX (mouse) port on chip
404 */
405
406static int i8042_enable_aux_port(void)
407{
408 i8042_ctr &= ~I8042_CTR_AUXDIS;
409 i8042_ctr |= I8042_CTR_AUXINT;
410
411 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
412 printk(KERN_ERR "i8042.c: Failed to enable AUX port.\n");
413 return -EIO;
414 }
415
416 return 0;
417}
418
419/*
420 * i8042_enable_mux_ports enables 4 individual AUX ports after
421 * the controller has been switched into Multiplexed mode
422 */
423
424static int i8042_enable_mux_ports(void)
425{
426 unsigned char param;
427 int i;
428
429 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
430 i8042_command(&param, I8042_CMD_MUX_PFX + i);
431 i8042_command(&param, I8042_CMD_AUX_ENABLE);
432 }
433
434 return i8042_enable_aux_port();
435}
436
437/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * i8042_set_mux_mode checks whether the controller has an active
439 * multiplexor and puts the chip into Multiplexed (1) or Legacy (0) mode.
440 */
441
442static int i8042_set_mux_mode(unsigned int mode, unsigned char *mux_version)
443{
444
445 unsigned char param;
446/*
447 * Get rid of bytes in the queue.
448 */
449
450 i8042_flush();
451
452/*
453 * Internal loopback test - send three bytes, they should come back from the
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400454 * mouse interface, the last should be version.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 */
456
457 param = 0xf0;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500458 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != 0xf0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return -1;
460 param = mode ? 0x56 : 0xf6;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500461 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != (mode ? 0x56 : 0xf6))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return -1;
463 param = mode ? 0xa4 : 0xa5;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500464 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == (mode ? 0xa4 : 0xa5))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -1;
466
467 if (mux_version)
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500468 *mux_version = param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 return 0;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
474 * i8042_check_mux() checks whether the controller supports the PS/2 Active
475 * Multiplexing specification by Synaptics, Phoenix, Insyde and
476 * LCS/Telegraphics.
477 */
478
Dmitry Torokhov87fd6312005-12-28 01:25:11 -0500479static int __devinit i8042_check_mux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 unsigned char mux_version;
482
483 if (i8042_set_mux_mode(1, &mux_version))
484 return -1;
485
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400486/*
487 * Workaround for interference with USB Legacy emulation
488 * that causes a v10.12 MUX to be found.
489 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (mux_version == 0xAC)
491 return -1;
492
493 printk(KERN_INFO "i8042.c: Detected active multiplexing controller, rev %d.%d.\n",
494 (mux_version >> 4) & 0xf, mux_version & 0xf);
495
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400496/*
497 * Disable all muxed ports by disabling AUX.
498 */
499 i8042_ctr |= I8042_CTR_AUXDIS;
500 i8042_ctr &= ~I8042_CTR_AUXINT;
501
502 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
503 printk(KERN_ERR "i8042.c: Failed to disable AUX port, can't use MUX.\n");
504 return -EIO;
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 i8042_mux_present = 1;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 0;
510}
511
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400512/*
513 * The following is used to test AUX IRQ delivery.
514 */
515static struct completion i8042_aux_irq_delivered __devinitdata;
516static int i8042_irq_being_tested __devinitdata;
517
David Howells7d12e782006-10-05 14:55:46 +0100518static irqreturn_t __devinit i8042_aux_test_irq(int irq, void *dev_id)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400519{
520 unsigned long flags;
521 unsigned char str, data;
522
523 spin_lock_irqsave(&i8042_lock, flags);
524 str = i8042_read_status();
525 if (str & I8042_STR_OBF) {
526 data = i8042_read_data();
527 if (i8042_irq_being_tested &&
528 data == 0xa5 && (str & I8042_STR_AUXDATA))
529 complete(&i8042_aux_irq_delivered);
530 }
531 spin_unlock_irqrestore(&i8042_lock, flags);
532
533 return IRQ_HANDLED;
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537/*
538 * i8042_check_aux() applies as much paranoia as it can at detecting
539 * the presence of an AUX interface.
540 */
541
Dmitry Torokhov87fd6312005-12-28 01:25:11 -0500542static int __devinit i8042_check_aux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400544 int retval = -1;
545 int irq_registered = 0;
546 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 unsigned char param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549/*
550 * Get rid of bytes in the queue.
551 */
552
553 i8042_flush();
554
555/*
556 * Internal loopback test - filters out AT-type i8042's. Unfortunately
557 * SiS screwed up and their 5597 doesn't support the LOOP command even
558 * though it has an AUX port.
559 */
560
561 param = 0x5a;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500562 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != 0x5a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564/*
565 * External connection test - filters out AT-soldered PS/2 i8042's
566 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
567 * 0xfa - no error on some notebooks which ignore the spec
568 * Because it's common for chipsets to return error on perfectly functioning
569 * AUX ports, we test for this only when the LOOP command failed.
570 */
571
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400572 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
573 (param && param != 0xfa && param != 0xff))
574 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576
577/*
578 * Bit assignment test - filters out PS/2 i8042's in AT mode
579 */
580
581 if (i8042_command(&param, I8042_CMD_AUX_DISABLE))
582 return -1;
583 if (i8042_command(&param, I8042_CMD_CTL_RCTR) || (~param & I8042_CTR_AUXDIS)) {
584 printk(KERN_WARNING "Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
585 printk(KERN_WARNING "If AUX port is really absent please use the 'i8042.noaux' option.\n");
586 }
587
588 if (i8042_command(&param, I8042_CMD_AUX_ENABLE))
589 return -1;
590 if (i8042_command(&param, I8042_CMD_CTL_RCTR) || (param & I8042_CTR_AUXDIS))
591 return -1;
592
593/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400594 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
595 * used it for a PCI card or somethig else.
596 */
597
598 if (i8042_noloop) {
599/*
600 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
601 * is working and hope we are right.
602 */
603 retval = 0;
604 goto out;
605 }
606
607 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
608 "i8042", i8042_platform_device))
609 goto out;
610
611 irq_registered = 1;
612
613 if (i8042_enable_aux_port())
614 goto out;
615
616 spin_lock_irqsave(&i8042_lock, flags);
617
618 init_completion(&i8042_aux_irq_delivered);
619 i8042_irq_being_tested = 1;
620
621 param = 0xa5;
622 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
623
624 spin_unlock_irqrestore(&i8042_lock, flags);
625
626 if (retval)
627 goto out;
628
629 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
630 msecs_to_jiffies(250)) == 0) {
631/*
632 * AUX IRQ was never delivered so we need to flush the controller to
633 * get rid of the byte we put there; otherwise keyboard may not work.
634 */
635 i8042_flush();
636 retval = -1;
637 }
638
639 out:
640
641/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 * Disable the interface.
643 */
644
645 i8042_ctr |= I8042_CTR_AUXDIS;
646 i8042_ctr &= ~I8042_CTR_AUXINT;
647
648 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400649 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400651 if (irq_registered)
652 free_irq(I8042_AUX_IRQ, i8042_platform_device);
653
654 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400657static int i8042_controller_check(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400659 if (i8042_flush() == I8042_BUFFER_SIZE) {
660 printk(KERN_ERR "i8042.c: No controller found.\n");
661 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
665}
666
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400667static int i8042_controller_selftest(void)
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500668{
669 unsigned char param;
670
671 if (!i8042_reset)
672 return 0;
673
674 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
675 printk(KERN_ERR "i8042.c: i8042 controller self test timeout.\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400676 return -ENODEV;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500677 }
678
679 if (param != I8042_RET_CTL_TEST) {
680 printk(KERN_ERR "i8042.c: i8042 controller selftest failed. (%#x != %#x)\n",
681 param, I8042_RET_CTL_TEST);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400682 return -EIO;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500683 }
684
685 return 0;
686}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688/*
689 * i8042_controller init initializes the i8042 controller, and,
690 * most importantly, sets it into non-xlated mode if that's
691 * desired.
692 */
693
694static int i8042_controller_init(void)
695{
696 unsigned long flags;
697
698/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 * Save the CTR for restoral on unload / reboot.
700 */
701
702 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_RCTR)) {
703 printk(KERN_ERR "i8042.c: Can't read CTR while initializing i8042.\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400704 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706
707 i8042_initial_ctr = i8042_ctr;
708
709/*
710 * Disable the keyboard interface and interrupt.
711 */
712
713 i8042_ctr |= I8042_CTR_KBDDIS;
714 i8042_ctr &= ~I8042_CTR_KBDINT;
715
716/*
717 * Handle keylock.
718 */
719
720 spin_lock_irqsave(&i8042_lock, flags);
721 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
722 if (i8042_unlock)
723 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
724 else
725 printk(KERN_WARNING "i8042.c: Warning: Keylock active.\n");
726 }
727 spin_unlock_irqrestore(&i8042_lock, flags);
728
729/*
730 * If the chip is configured into nontranslated mode by the BIOS, don't
731 * bother enabling translating and be happy.
732 */
733
734 if (~i8042_ctr & I8042_CTR_XLATE)
735 i8042_direct = 1;
736
737/*
738 * Set nontranslated mode for the kbd interface if requested by an option.
739 * After this the kbd interface becomes a simple serial in/out, like the aux
740 * interface is. We don't do this by default, since it can confuse notebook
741 * BIOSes.
742 */
743
744 if (i8042_direct)
745 i8042_ctr &= ~I8042_CTR_XLATE;
746
747/*
748 * Write CTR back.
749 */
750
751 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
752 printk(KERN_ERR "i8042.c: Can't write CTR while initializing i8042.\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400753 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755
756 return 0;
757}
758
759
760/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400761 * Reset the controller and reset CRT to the original value set by BIOS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 */
763
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400764static void i8042_controller_reset(void)
765{
766 i8042_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768/*
769 * Disable MUX mode if present.
770 */
771
772 if (i8042_mux_present)
773 i8042_set_mux_mode(0, NULL);
774
775/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400776 * Reset the controller if requested.
777 */
778
779 i8042_controller_selftest();
780
781/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * Restore the original control register setting.
783 */
784
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400785 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 printk(KERN_WARNING "i8042.c: Can't restore CTR.\n");
787}
788
789
790/*
791 * Here we try to reset everything back to a state in which the BIOS will be
792 * able to talk to the hardware when rebooting.
793 */
794
795static void i8042_controller_cleanup(void)
796{
797 int i;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799/*
800 * Reset anything that is connected to the ports.
801 */
802
803 for (i = 0; i < I8042_NUM_PORTS; i++)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400804 if (i8042_ports[i].serio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 serio_cleanup(i8042_ports[i].serio);
806
807 i8042_controller_reset();
808}
809
810
811/*
812 * i8042_panic_blink() will flash the keyboard LEDs and is called when
813 * kernel panics. Flashing LEDs is useful for users running X who may
814 * not see the console and will help distingushing panics from "real"
815 * lockups.
816 *
817 * Note that DELAY has a limit of 10ms so we will not get stuck here
818 * waiting for KBC to free up even if KBD interrupt is off
819 */
820
821#define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
822
823static long i8042_panic_blink(long count)
824{
825 long delay = 0;
826 static long last_blink;
827 static char led;
828
829 /*
830 * We expect frequency to be about 1/2s. KDB uses about 1s.
831 * Make sure they are different.
832 */
833 if (!i8042_blink_frequency)
834 return 0;
835 if (count - last_blink < i8042_blink_frequency)
836 return 0;
837
838 led ^= 0x01 | 0x04;
839 while (i8042_read_status() & I8042_STR_IBF)
840 DELAY;
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -0500841 dbg("%02x -> i8042 (panic blink)", 0xed);
842 i8042_suppress_kbd_ack = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 i8042_write_data(0xed); /* set leds */
844 DELAY;
845 while (i8042_read_status() & I8042_STR_IBF)
846 DELAY;
847 DELAY;
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -0500848 dbg("%02x -> i8042 (panic blink)", led);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 i8042_write_data(led);
850 DELAY;
851 last_blink = count;
852 return delay;
853}
854
855#undef DELAY
856
857/*
858 * Here we try to restore the original BIOS settings
859 */
860
Russell King3ae5eae2005-11-09 22:32:44 +0000861static int i8042_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400863 i8042_controller_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 return 0;
866}
867
868
869/*
870 * Here we try to reset everything back to a state in which suspended
871 */
872
Russell King3ae5eae2005-11-09 22:32:44 +0000873static int i8042_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400875 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400877 error = i8042_controller_check();
878 if (error)
879 return error;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500880
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400881 error = i8042_controller_selftest();
882 if (error)
883 return error;
884
885/*
886 * Restore pre-resume CTR value and disable all ports
887 */
888
889 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
890 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500891 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400892 printk(KERN_ERR "i8042: Can't write CTR to resume\n");
893 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400896 if (i8042_mux_present) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (i8042_set_mux_mode(1, NULL) || i8042_enable_mux_ports())
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400898 printk(KERN_WARNING
899 "i8042: failed to resume active multiplexor, "
900 "mouse won't work.\n");
901 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
902 i8042_enable_aux_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400904 if (i8042_ports[I8042_KBD_PORT_NO].serio)
905 i8042_enable_kbd_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
David Howells7d12e782006-10-05 14:55:46 +0100907 i8042_interrupt(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912/*
913 * We need to reset the 8042 back to original mode on system shutdown,
914 * because otherwise BIOSes will be confused.
915 */
916
Russell King3ae5eae2005-11-09 22:32:44 +0000917static void i8042_shutdown(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 i8042_controller_cleanup();
920}
921
Dmitry Torokhov87fd6312005-12-28 01:25:11 -0500922static int __devinit i8042_create_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 struct serio *serio;
925 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
926
Dmitry Torokhovd39969d2005-09-10 12:04:42 -0500927 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500928 if (!serio)
929 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500931 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
932 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500933 serio->start = i8042_start;
934 serio->stop = i8042_stop;
935 serio->port_data = port;
936 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400937 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500938 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
939
940 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400941 port->irq = I8042_KBD_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500942
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400943 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400946static int __devinit i8042_create_aux_port(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 struct serio *serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400949 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
950 struct i8042_port *port = &i8042_ports[port_no];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Dmitry Torokhovd39969d2005-09-10 12:04:42 -0500952 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500953 if (!serio)
954 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500956 serio->id.type = SERIO_8042;
957 serio->write = i8042_aux_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500958 serio->start = i8042_start;
959 serio->stop = i8042_stop;
960 serio->port_data = port;
961 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400962 if (idx < 0) {
963 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
964 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
965 } else {
966 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
967 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
968 }
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500969
970 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400971 port->mux = idx;
972 port->irq = I8042_AUX_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500973
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400977static void __devinit i8042_free_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400979 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
980 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
981}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400983static void __devinit i8042_free_aux_ports(void)
984{
985 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400987 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
988 kfree(i8042_ports[i].serio);
989 i8042_ports[i].serio = NULL;
990 }
991}
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500992
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400993static void __devinit i8042_register_ports(void)
994{
995 int i;
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500996
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400997 for (i = 0; i < I8042_NUM_PORTS; i++) {
998 if (i8042_ports[i].serio) {
999 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1000 i8042_ports[i].serio->name,
1001 (unsigned long) I8042_DATA_REG,
1002 (unsigned long) I8042_COMMAND_REG,
1003 i8042_ports[i].irq);
1004 serio_register_port(i8042_ports[i].serio);
1005 }
1006 }
1007}
1008
1009static void __devinit i8042_unregister_ports(void)
1010{
1011 int i;
1012
1013 for (i = 0; i < I8042_NUM_PORTS; i++) {
1014 if (i8042_ports[i].serio) {
1015 serio_unregister_port(i8042_ports[i].serio);
1016 i8042_ports[i].serio = NULL;
1017 }
1018 }
1019}
1020
1021static void i8042_free_irqs(void)
1022{
1023 if (i8042_aux_irq_registered)
1024 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1025 if (i8042_kbd_irq_registered)
1026 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1027
1028 i8042_aux_irq_registered = i8042_kbd_irq_registered = 0;
1029}
1030
1031static int __devinit i8042_setup_aux(void)
1032{
1033 int (*aux_enable)(void);
1034 int error;
1035 int i;
1036
1037 if (i8042_check_aux())
1038 return -ENODEV;
1039
1040 if (i8042_nomux || i8042_check_mux()) {
1041 error = i8042_create_aux_port(-1);
1042 if (error)
1043 goto err_free_ports;
1044 aux_enable = i8042_enable_aux_port;
1045 } else {
1046 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1047 error = i8042_create_aux_port(i);
1048 if (error)
1049 goto err_free_ports;
1050 }
1051 aux_enable = i8042_enable_mux_ports;
1052 }
1053
1054 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1055 "i8042", i8042_platform_device);
1056 if (error)
1057 goto err_free_ports;
1058
1059 if (aux_enable())
1060 goto err_free_irq;
1061
1062 i8042_aux_irq_registered = 1;
1063 return 0;
1064
1065 err_free_irq:
1066 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1067 err_free_ports:
1068 i8042_free_aux_ports();
1069 return error;
1070}
1071
1072static int __devinit i8042_setup_kbd(void)
1073{
1074 int error;
1075
1076 error = i8042_create_kbd_port();
1077 if (error)
1078 return error;
1079
1080 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1081 "i8042", i8042_platform_device);
1082 if (error)
1083 goto err_free_port;
1084
1085 error = i8042_enable_kbd_port();
1086 if (error)
1087 goto err_free_irq;
1088
1089 i8042_kbd_irq_registered = 1;
1090 return 0;
1091
1092 err_free_irq:
1093 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1094 err_free_port:
1095 i8042_free_kbd_port();
1096 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001099static int __devinit i8042_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001101 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001103 error = i8042_controller_selftest();
1104 if (error)
1105 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001107 error = i8042_controller_init();
1108 if (error)
1109 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001111 if (!i8042_noaux) {
1112 error = i8042_setup_aux();
1113 if (error && error != -ENODEV && error != -EBUSY)
1114 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001117 if (!i8042_nokbd) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001118 error = i8042_setup_kbd();
1119 if (error)
1120 goto out_fail;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001121 }
1122
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001123/*
1124 * Ok, everything is ready, let's register all serio ports
1125 */
1126 i8042_register_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return 0;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001129
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001130 out_fail:
1131 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1132 i8042_free_irqs();
1133 i8042_controller_reset();
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001134
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001135 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001138static int __devexit i8042_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001140 i8042_unregister_ports();
1141 i8042_free_irqs();
1142 i8042_controller_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001144 return 0;
1145}
1146
1147static struct platform_driver i8042_driver = {
1148 .driver = {
1149 .name = "i8042",
1150 .owner = THIS_MODULE,
1151 },
1152 .probe = i8042_probe,
1153 .remove = __devexit_p(i8042_remove),
1154 .suspend = i8042_suspend,
1155 .resume = i8042_resume,
1156 .shutdown = i8042_shutdown,
1157};
1158
1159static int __init i8042_init(void)
1160{
1161 int err;
1162
1163 dbg_init();
1164
1165 err = i8042_platform_init();
1166 if (err)
1167 return err;
1168
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001169 err = i8042_controller_check();
1170 if (err)
1171 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001172
1173 err = platform_driver_register(&i8042_driver);
1174 if (err)
1175 goto err_platform_exit;
1176
1177 i8042_platform_device = platform_device_alloc("i8042", -1);
1178 if (!i8042_platform_device) {
1179 err = -ENOMEM;
1180 goto err_unregister_driver;
1181 }
1182
1183 err = platform_device_add(i8042_platform_device);
1184 if (err)
1185 goto err_free_device;
1186
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001187 panic_blink = i8042_panic_blink;
1188
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001189 return 0;
1190
1191 err_free_device:
1192 platform_device_put(i8042_platform_device);
1193 err_unregister_driver:
1194 platform_driver_unregister(&i8042_driver);
1195 err_platform_exit:
1196 i8042_platform_exit();
1197
1198 return err;
1199}
1200
1201static void __exit i8042_exit(void)
1202{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 platform_device_unregister(i8042_platform_device);
Russell King3ae5eae2005-11-09 22:32:44 +00001204 platform_driver_unregister(&i8042_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 i8042_platform_exit();
1206
1207 panic_blink = NULL;
1208}
1209
1210module_init(i8042_init);
1211module_exit(i8042_exit);