blob: f919bf57293c9fad56d625aa1e497655eda5a04a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/io.h>
26
27MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
28MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
29MODULE_LICENSE("GPL");
30
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -050031static unsigned int i8042_nokbd;
32module_param_named(nokbd, i8042_nokbd, bool, 0);
33MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static unsigned int i8042_noaux;
36module_param_named(noaux, i8042_noaux, bool, 0);
37MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
38
39static unsigned int i8042_nomux;
40module_param_named(nomux, i8042_nomux, bool, 0);
41MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing conrtoller is present.");
42
43static unsigned int i8042_unlock;
44module_param_named(unlock, i8042_unlock, bool, 0);
45MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
46
47static unsigned int i8042_reset;
48module_param_named(reset, i8042_reset, bool, 0);
49MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
50
51static unsigned int i8042_direct;
52module_param_named(direct, i8042_direct, bool, 0);
53MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
54
55static unsigned int i8042_dumbkbd;
56module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
57MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
58
59static unsigned int i8042_noloop;
60module_param_named(noloop, i8042_noloop, bool, 0);
61MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
62
63static unsigned int i8042_blink_frequency = 500;
64module_param_named(panicblink, i8042_blink_frequency, uint, 0600);
65MODULE_PARM_DESC(panicblink, "Frequency with which keyboard LEDs should blink when kernel panics");
66
Carlos Corbacho8987fec2008-01-21 01:04:40 -050067#ifdef CONFIG_X86
68static unsigned int i8042_dritek;
69module_param_named(dritek, i8042_dritek, bool, 0);
70MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
71#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#ifdef CONFIG_PNP
74static int i8042_nopnp;
75module_param_named(nopnp, i8042_nopnp, bool, 0);
76MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
77#endif
78
79#define DEBUG
80#ifdef DEBUG
81static int i8042_debug;
82module_param_named(debug, i8042_debug, bool, 0600);
83MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
84#endif
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#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
Márton Németh553a05b2007-10-22 00:56:52 -0400218int i8042_command(unsigned char *param, int command)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400219{
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}
Márton Németh553a05b2007-10-22 00:56:52 -0400229EXPORT_SYMBOL(i8042_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231/*
232 * i8042_kbd_write() sends a byte out through the keyboard interface.
233 */
234
235static int i8042_kbd_write(struct serio *port, unsigned char c)
236{
237 unsigned long flags;
238 int retval = 0;
239
240 spin_lock_irqsave(&i8042_lock, flags);
241
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400242 if (!(retval = i8042_wait_write())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 dbg("%02x -> i8042 (kbd-data)", c);
244 i8042_write_data(c);
245 }
246
247 spin_unlock_irqrestore(&i8042_lock, flags);
248
249 return retval;
250}
251
252/*
253 * i8042_aux_write() sends a byte out through the aux interface.
254 */
255
256static int i8042_aux_write(struct serio *serio, unsigned char c)
257{
258 struct i8042_port *port = serio->port_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Dmitry Torokhovf4e3c712006-11-02 23:27:49 -0500260 return i8042_command(&c, port->mux == -1 ?
261 I8042_CMD_AUX_SEND :
262 I8042_CMD_MUX_SEND + port->mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * i8042_start() is called by serio core when port is about to finish
267 * registering. It will mark port as existing so i8042_interrupt can
268 * start sending data through it.
269 */
270static int i8042_start(struct serio *serio)
271{
272 struct i8042_port *port = serio->port_data;
273
274 port->exists = 1;
275 mb();
276 return 0;
277}
278
279/*
280 * i8042_stop() marks serio port as non-existing so i8042_interrupt
281 * will not try to send data to the port that is about to go away.
282 * The function is called by serio core as part of unregister procedure.
283 */
284static void i8042_stop(struct serio *serio)
285{
286 struct i8042_port *port = serio->port_data;
287
288 port->exists = 0;
Dmitry Torokhova8399c52007-11-04 00:44:31 -0400289
290 /*
291 * We synchronize with both AUX and KBD IRQs because there is
292 * a (very unlikely) chance that AUX IRQ is raised for KBD port
293 * and vice versa.
294 */
295 synchronize_irq(I8042_AUX_IRQ);
296 synchronize_irq(I8042_KBD_IRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 port->serio = NULL;
298}
299
300/*
301 * i8042_interrupt() is the most important function in this driver -
302 * it handles the interrupts from the i8042, and sends incoming bytes
303 * to the upper layers.
304 */
305
David Howells7d12e782006-10-05 14:55:46 +0100306static irqreturn_t i8042_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 struct i8042_port *port;
309 unsigned long flags;
310 unsigned char str, data;
311 unsigned int dfl;
312 unsigned int port_no;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400313 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 spin_lock_irqsave(&i8042_lock, flags);
316 str = i8042_read_status();
317 if (unlikely(~str & I8042_STR_OBF)) {
318 spin_unlock_irqrestore(&i8042_lock, flags);
319 if (irq) dbg("Interrupt %d, without any data", irq);
320 ret = 0;
321 goto out;
322 }
323 data = i8042_read_data();
324 spin_unlock_irqrestore(&i8042_lock, flags);
325
326 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
327 static unsigned long last_transmit;
328 static unsigned char last_str;
329
330 dfl = 0;
331 if (str & I8042_STR_MUXERR) {
332 dbg("MUX error, status is %02x, data is %02x", str, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/*
334 * When MUXERR condition is signalled the data register can only contain
335 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500336 * it is not always the case. Some KBCs also report 0xfc when there is
337 * nothing connected to the port while others sometimes get confused which
338 * port the data came from and signal error leaving the data intact. They
339 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
340 * to legacy mode yet, when we see one we'll add proper handling).
341 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
342 * rest assume that the data came from the same serio last byte
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 * was transmitted (if transmission happened not too long ago).
344 */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500345
346 switch (data) {
347 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (time_before(jiffies, last_transmit + HZ/10)) {
349 str = last_str;
350 break;
351 }
352 /* fall through - report timeout */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500353 case 0xfc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 case 0xfd:
355 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
356 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
357 }
358 }
359
360 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
361 last_str = str;
362 last_transmit = jiffies;
363 } else {
364
365 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
366 ((str & I8042_STR_TIMEOUT) ? SERIO_TIMEOUT : 0);
367
368 port_no = (str & I8042_STR_AUXDATA) ?
369 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
370 }
371
372 port = &i8042_ports[port_no];
373
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400374 dbg("%02x <- i8042 (interrupt, %d, %d%s%s)",
375 data, port_no, irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 dfl & SERIO_PARITY ? ", bad parity" : "",
377 dfl & SERIO_TIMEOUT ? ", timeout" : "");
378
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400379 if (unlikely(i8042_suppress_kbd_ack))
380 if (port_no == I8042_KBD_PORT_NO &&
381 (data == 0xfa || data == 0xfe)) {
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -0500382 i8042_suppress_kbd_ack--;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400383 goto out;
384 }
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (likely(port->exists))
David Howells7d12e782006-10-05 14:55:46 +0100387 serio_interrupt(port->serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500389 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return IRQ_RETVAL(ret);
391}
392
393/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400394 * i8042_enable_kbd_port enables keybaord port on chip
395 */
396
397static int i8042_enable_kbd_port(void)
398{
399 i8042_ctr &= ~I8042_CTR_KBDDIS;
400 i8042_ctr |= I8042_CTR_KBDINT;
401
402 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400403 i8042_ctr &= ~I8042_CTR_KBDINT;
404 i8042_ctr |= I8042_CTR_KBDDIS;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400405 printk(KERN_ERR "i8042.c: Failed to enable KBD port.\n");
406 return -EIO;
407 }
408
409 return 0;
410}
411
412/*
413 * i8042_enable_aux_port enables AUX (mouse) port on chip
414 */
415
416static int i8042_enable_aux_port(void)
417{
418 i8042_ctr &= ~I8042_CTR_AUXDIS;
419 i8042_ctr |= I8042_CTR_AUXINT;
420
421 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400422 i8042_ctr &= ~I8042_CTR_AUXINT;
423 i8042_ctr |= I8042_CTR_AUXDIS;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400424 printk(KERN_ERR "i8042.c: Failed to enable AUX port.\n");
425 return -EIO;
426 }
427
428 return 0;
429}
430
431/*
432 * i8042_enable_mux_ports enables 4 individual AUX ports after
433 * the controller has been switched into Multiplexed mode
434 */
435
436static int i8042_enable_mux_ports(void)
437{
438 unsigned char param;
439 int i;
440
441 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
442 i8042_command(&param, I8042_CMD_MUX_PFX + i);
443 i8042_command(&param, I8042_CMD_AUX_ENABLE);
444 }
445
446 return i8042_enable_aux_port();
447}
448
449/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * i8042_set_mux_mode checks whether the controller has an active
451 * multiplexor and puts the chip into Multiplexed (1) or Legacy (0) mode.
452 */
453
454static int i8042_set_mux_mode(unsigned int mode, unsigned char *mux_version)
455{
456
457 unsigned char param;
458/*
459 * Get rid of bytes in the queue.
460 */
461
462 i8042_flush();
463
464/*
465 * Internal loopback test - send three bytes, they should come back from the
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400466 * mouse interface, the last should be version.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 */
468
469 param = 0xf0;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500470 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != 0xf0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return -1;
472 param = mode ? 0x56 : 0xf6;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500473 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != (mode ? 0x56 : 0xf6))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return -1;
475 param = mode ? 0xa4 : 0xa5;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500476 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == (mode ? 0xa4 : 0xa5))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return -1;
478
479 if (mux_version)
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500480 *mux_version = param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 return 0;
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
486 * i8042_check_mux() checks whether the controller supports the PS/2 Active
487 * Multiplexing specification by Synaptics, Phoenix, Insyde and
488 * LCS/Telegraphics.
489 */
490
Dmitry Torokhov87fd6312005-12-28 01:25:11 -0500491static int __devinit i8042_check_mux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 unsigned char mux_version;
494
495 if (i8042_set_mux_mode(1, &mux_version))
496 return -1;
497
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400498/*
499 * Workaround for interference with USB Legacy emulation
500 * that causes a v10.12 MUX to be found.
501 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (mux_version == 0xAC)
503 return -1;
504
505 printk(KERN_INFO "i8042.c: Detected active multiplexing controller, rev %d.%d.\n",
506 (mux_version >> 4) & 0xf, mux_version & 0xf);
507
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400508/*
509 * Disable all muxed ports by disabling AUX.
510 */
511 i8042_ctr |= I8042_CTR_AUXDIS;
512 i8042_ctr &= ~I8042_CTR_AUXINT;
513
514 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
515 printk(KERN_ERR "i8042.c: Failed to disable AUX port, can't use MUX.\n");
516 return -EIO;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 i8042_mux_present = 1;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
522}
523
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400524/*
525 * The following is used to test AUX IRQ delivery.
526 */
527static struct completion i8042_aux_irq_delivered __devinitdata;
528static int i8042_irq_being_tested __devinitdata;
529
David Howells7d12e782006-10-05 14:55:46 +0100530static irqreturn_t __devinit i8042_aux_test_irq(int irq, void *dev_id)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400531{
532 unsigned long flags;
533 unsigned char str, data;
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400534 int ret = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400535
536 spin_lock_irqsave(&i8042_lock, flags);
537 str = i8042_read_status();
538 if (str & I8042_STR_OBF) {
539 data = i8042_read_data();
540 if (i8042_irq_being_tested &&
541 data == 0xa5 && (str & I8042_STR_AUXDATA))
542 complete(&i8042_aux_irq_delivered);
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400543 ret = 1;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400544 }
545 spin_unlock_irqrestore(&i8042_lock, flags);
546
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400547 return IRQ_RETVAL(ret);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400548}
549
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400550/*
551 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
552 * verifies success by readinng CTR. Used when testing for presence of AUX
553 * port.
554 */
555static int __devinit i8042_toggle_aux(int on)
556{
557 unsigned char param;
558 int i;
559
560 if (i8042_command(&param,
561 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
562 return -1;
563
564 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
565 for (i = 0; i < 100; i++) {
566 udelay(50);
567
568 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
569 return -1;
570
571 if (!(param & I8042_CTR_AUXDIS) == on)
572 return 0;
573 }
574
575 return -1;
576}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578/*
579 * i8042_check_aux() applies as much paranoia as it can at detecting
580 * the presence of an AUX interface.
581 */
582
Dmitry Torokhov87fd6312005-12-28 01:25:11 -0500583static int __devinit i8042_check_aux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400585 int retval = -1;
586 int irq_registered = 0;
Dmitry Torokhov1e4865f2007-02-10 01:29:53 -0500587 int aux_loop_broken = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400588 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 unsigned char param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591/*
592 * Get rid of bytes in the queue.
593 */
594
595 i8042_flush();
596
597/*
598 * Internal loopback test - filters out AT-type i8042's. Unfortunately
599 * SiS screwed up and their 5597 doesn't support the LOOP command even
600 * though it has an AUX port.
601 */
602
603 param = 0x5a;
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500604 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
605 if (retval || param != 0x5a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607/*
608 * External connection test - filters out AT-soldered PS/2 i8042's
609 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
610 * 0xfa - no error on some notebooks which ignore the spec
611 * Because it's common for chipsets to return error on perfectly functioning
612 * AUX ports, we test for this only when the LOOP command failed.
613 */
614
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400615 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
616 (param && param != 0xfa && param != 0xff))
617 return -1;
Dmitry Torokhov1e4865f2007-02-10 01:29:53 -0500618
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500619/*
620 * If AUX_LOOP completed without error but returned unexpected data
621 * mark it as broken
622 */
623 if (!retval)
624 aux_loop_broken = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627/*
628 * Bit assignment test - filters out PS/2 i8042's in AT mode
629 */
630
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400631 if (i8042_toggle_aux(0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 printk(KERN_WARNING "Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
633 printk(KERN_WARNING "If AUX port is really absent please use the 'i8042.noaux' option.\n");
634 }
635
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400636 if (i8042_toggle_aux(1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return -1;
638
639/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400640 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
641 * used it for a PCI card or somethig else.
642 */
643
Dmitry Torokhov1e4865f2007-02-10 01:29:53 -0500644 if (i8042_noloop || aux_loop_broken) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400645/*
646 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
647 * is working and hope we are right.
648 */
649 retval = 0;
650 goto out;
651 }
652
653 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
654 "i8042", i8042_platform_device))
655 goto out;
656
657 irq_registered = 1;
658
659 if (i8042_enable_aux_port())
660 goto out;
661
662 spin_lock_irqsave(&i8042_lock, flags);
663
664 init_completion(&i8042_aux_irq_delivered);
665 i8042_irq_being_tested = 1;
666
667 param = 0xa5;
668 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
669
670 spin_unlock_irqrestore(&i8042_lock, flags);
671
672 if (retval)
673 goto out;
674
675 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
676 msecs_to_jiffies(250)) == 0) {
677/*
678 * AUX IRQ was never delivered so we need to flush the controller to
679 * get rid of the byte we put there; otherwise keyboard may not work.
680 */
681 i8042_flush();
682 retval = -1;
683 }
684
685 out:
686
687/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 * Disable the interface.
689 */
690
691 i8042_ctr |= I8042_CTR_AUXDIS;
692 i8042_ctr &= ~I8042_CTR_AUXINT;
693
694 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400695 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400697 if (irq_registered)
698 free_irq(I8042_AUX_IRQ, i8042_platform_device);
699
700 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400703static int i8042_controller_check(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400705 if (i8042_flush() == I8042_BUFFER_SIZE) {
706 printk(KERN_ERR "i8042.c: No controller found.\n");
707 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return 0;
711}
712
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400713static int i8042_controller_selftest(void)
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500714{
715 unsigned char param;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700716 int i = 0;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500717
718 if (!i8042_reset)
719 return 0;
720
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700721 /*
722 * We try this 5 times; on some really fragile systems this does not
723 * take the first time...
724 */
725 do {
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500726
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700727 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
728 printk(KERN_ERR "i8042.c: i8042 controller self test timeout.\n");
729 return -ENODEV;
730 }
731
732 if (param == I8042_RET_CTL_TEST)
733 return 0;
734
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500735 printk(KERN_ERR "i8042.c: i8042 controller selftest failed. (%#x != %#x)\n",
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700736 param, I8042_RET_CTL_TEST);
737 msleep(50);
738 } while (i++ < 5);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500739
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700740#ifdef CONFIG_X86
741 /*
742 * On x86, we don't fail entire i8042 initialization if controller
743 * reset fails in hopes that keyboard port will still be functional
744 * and user will still get a working keyboard. This is especially
745 * important on netbooks. On other arches we trust hardware more.
746 */
747 printk(KERN_INFO
748 "i8042: giving up on controller selftest, continuing anyway...\n");
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500749 return 0;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700750#else
751 return -EIO;
752#endif
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500753}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755/*
756 * i8042_controller init initializes the i8042 controller, and,
757 * most importantly, sets it into non-xlated mode if that's
758 * desired.
759 */
760
761static int i8042_controller_init(void)
762{
763 unsigned long flags;
764
765/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * Save the CTR for restoral on unload / reboot.
767 */
768
769 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_RCTR)) {
770 printk(KERN_ERR "i8042.c: Can't read CTR while initializing i8042.\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400771 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
774 i8042_initial_ctr = i8042_ctr;
775
776/*
777 * Disable the keyboard interface and interrupt.
778 */
779
780 i8042_ctr |= I8042_CTR_KBDDIS;
781 i8042_ctr &= ~I8042_CTR_KBDINT;
782
783/*
784 * Handle keylock.
785 */
786
787 spin_lock_irqsave(&i8042_lock, flags);
788 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
789 if (i8042_unlock)
790 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500791 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 printk(KERN_WARNING "i8042.c: Warning: Keylock active.\n");
793 }
794 spin_unlock_irqrestore(&i8042_lock, flags);
795
796/*
797 * If the chip is configured into nontranslated mode by the BIOS, don't
798 * bother enabling translating and be happy.
799 */
800
801 if (~i8042_ctr & I8042_CTR_XLATE)
802 i8042_direct = 1;
803
804/*
805 * Set nontranslated mode for the kbd interface if requested by an option.
806 * After this the kbd interface becomes a simple serial in/out, like the aux
807 * interface is. We don't do this by default, since it can confuse notebook
808 * BIOSes.
809 */
810
811 if (i8042_direct)
812 i8042_ctr &= ~I8042_CTR_XLATE;
813
814/*
815 * Write CTR back.
816 */
817
818 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
819 printk(KERN_ERR "i8042.c: Can't write CTR while initializing i8042.\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400820 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
823 return 0;
824}
825
826
827/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400828 * Reset the controller and reset CRT to the original value set by BIOS.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
830
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400831static void i8042_controller_reset(void)
832{
833 i8042_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835/*
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -0400836 * Disable both KBD and AUX interfaces so they don't get in the way
837 */
838
839 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
840 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
841
842/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 * Disable MUX mode if present.
844 */
845
846 if (i8042_mux_present)
847 i8042_set_mux_mode(0, NULL);
848
849/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400850 * Reset the controller if requested.
851 */
852
853 i8042_controller_selftest();
854
855/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 * Restore the original control register setting.
857 */
858
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400859 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 printk(KERN_WARNING "i8042.c: Can't restore CTR.\n");
861}
862
863
864/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * i8042_panic_blink() will flash the keyboard LEDs and is called when
866 * kernel panics. Flashing LEDs is useful for users running X who may
867 * not see the console and will help distingushing panics from "real"
868 * lockups.
869 *
870 * Note that DELAY has a limit of 10ms so we will not get stuck here
871 * waiting for KBC to free up even if KBD interrupt is off
872 */
873
874#define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
875
876static long i8042_panic_blink(long count)
877{
878 long delay = 0;
879 static long last_blink;
880 static char led;
881
882 /*
883 * We expect frequency to be about 1/2s. KDB uses about 1s.
884 * Make sure they are different.
885 */
886 if (!i8042_blink_frequency)
887 return 0;
888 if (count - last_blink < i8042_blink_frequency)
889 return 0;
890
891 led ^= 0x01 | 0x04;
892 while (i8042_read_status() & I8042_STR_IBF)
893 DELAY;
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -0500894 dbg("%02x -> i8042 (panic blink)", 0xed);
895 i8042_suppress_kbd_ack = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 i8042_write_data(0xed); /* set leds */
897 DELAY;
898 while (i8042_read_status() & I8042_STR_IBF)
899 DELAY;
900 DELAY;
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -0500901 dbg("%02x -> i8042 (panic blink)", led);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 i8042_write_data(led);
903 DELAY;
904 last_blink = count;
905 return delay;
906}
907
908#undef DELAY
909
Bruno Prémontd35895d2008-05-27 01:36:04 -0400910#ifdef CONFIG_X86
911static void i8042_dritek_enable(void)
912{
913 char param = 0x90;
914 int error;
915
916 error = i8042_command(&param, 0x1059);
917 if (error)
918 printk(KERN_WARNING
919 "Failed to enable DRITEK extension: %d\n",
920 error);
921}
922#endif
923
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500924#ifdef CONFIG_PM
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700925
926static bool i8042_suspended;
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928/*
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500929 * Here we try to restore the original BIOS settings. We only want to
930 * do that once, when we really suspend, not when we taking memory
931 * snapshot for swsusp (in this case we'll perform required cleanup
932 * as part of shutdown process).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 */
934
Russell King3ae5eae2005-11-09 22:32:44 +0000935static int i8042_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700937 if (!i8042_suspended && state.event == PM_EVENT_SUSPEND) {
938 i8042_controller_reset();
939 i8042_suspended = true;
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 return 0;
943}
944
945
946/*
947 * Here we try to reset everything back to a state in which suspended
948 */
949
Russell King3ae5eae2005-11-09 22:32:44 +0000950static int i8042_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400952 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500954/*
955 * Do not bother with restoring state if we haven't suspened yet
956 */
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700957 if (!i8042_suspended)
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500958 return 0;
959
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400960 error = i8042_controller_check();
961 if (error)
962 return error;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500963
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400964 error = i8042_controller_selftest();
965 if (error)
966 return error;
967
968/*
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500969 * Restore original CTR value and disable all ports
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400970 */
971
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500972 i8042_ctr = i8042_initial_ctr;
973 if (i8042_direct)
974 i8042_ctr &= ~I8042_CTR_XLATE;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400975 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
976 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500977 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Jiri Kosina2f6a77d2008-06-17 11:47:27 -0400978 printk(KERN_WARNING "i8042: Can't write CTR to resume, retrying...\n");
979 msleep(50);
980 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
981 printk(KERN_ERR "i8042: CTR write retry failed\n");
982 return -EIO;
983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985
Bruno Prémontd35895d2008-05-27 01:36:04 -0400986
987#ifdef CONFIG_X86
988 if (i8042_dritek)
989 i8042_dritek_enable();
990#endif
991
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400992 if (i8042_mux_present) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (i8042_set_mux_mode(1, NULL) || i8042_enable_mux_ports())
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400994 printk(KERN_WARNING
995 "i8042: failed to resume active multiplexor, "
996 "mouse won't work.\n");
997 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
998 i8042_enable_aux_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001000 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1001 i8042_enable_kbd_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Dmitry Torokhov7e044e02009-05-09 16:08:05 -07001003 i8042_suspended = false;
David Howells7d12e782006-10-05 14:55:46 +01001004 i8042_interrupt(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001008#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010/*
1011 * We need to reset the 8042 back to original mode on system shutdown,
1012 * because otherwise BIOSes will be confused.
1013 */
1014
Russell King3ae5eae2005-11-09 22:32:44 +00001015static void i8042_shutdown(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001017 i8042_controller_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018}
1019
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001020static int __devinit i8042_create_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct serio *serio;
1023 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1024
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001025 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001026 if (!serio)
1027 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001029 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1030 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001031 serio->start = i8042_start;
1032 serio->stop = i8042_stop;
1033 serio->port_data = port;
1034 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001035 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001036 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
1037
1038 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001039 port->irq = I8042_KBD_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001040
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001041 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001044static int __devinit i8042_create_aux_port(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 struct serio *serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001047 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1048 struct i8042_port *port = &i8042_ports[port_no];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001050 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001051 if (!serio)
1052 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001054 serio->id.type = SERIO_8042;
1055 serio->write = i8042_aux_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001056 serio->start = i8042_start;
1057 serio->stop = i8042_stop;
1058 serio->port_data = port;
1059 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001060 if (idx < 0) {
1061 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1062 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
1063 } else {
1064 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1065 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
1066 }
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001067
1068 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001069 port->mux = idx;
1070 port->irq = I8042_AUX_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001071
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001072 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001075static void __devinit i8042_free_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001077 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1078 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1079}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001081static void __devinit i8042_free_aux_ports(void)
1082{
1083 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001085 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1086 kfree(i8042_ports[i].serio);
1087 i8042_ports[i].serio = NULL;
1088 }
1089}
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001090
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001091static void __devinit i8042_register_ports(void)
1092{
1093 int i;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001094
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001095 for (i = 0; i < I8042_NUM_PORTS; i++) {
1096 if (i8042_ports[i].serio) {
1097 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1098 i8042_ports[i].serio->name,
1099 (unsigned long) I8042_DATA_REG,
1100 (unsigned long) I8042_COMMAND_REG,
1101 i8042_ports[i].irq);
1102 serio_register_port(i8042_ports[i].serio);
1103 }
1104 }
1105}
1106
Ralf Baechle7a1904c2007-09-04 23:16:31 -04001107static void __devexit i8042_unregister_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001108{
1109 int i;
1110
1111 for (i = 0; i < I8042_NUM_PORTS; i++) {
1112 if (i8042_ports[i].serio) {
1113 serio_unregister_port(i8042_ports[i].serio);
1114 i8042_ports[i].serio = NULL;
1115 }
1116 }
1117}
1118
1119static void i8042_free_irqs(void)
1120{
1121 if (i8042_aux_irq_registered)
1122 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1123 if (i8042_kbd_irq_registered)
1124 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1125
1126 i8042_aux_irq_registered = i8042_kbd_irq_registered = 0;
1127}
1128
1129static int __devinit i8042_setup_aux(void)
1130{
1131 int (*aux_enable)(void);
1132 int error;
1133 int i;
1134
1135 if (i8042_check_aux())
1136 return -ENODEV;
1137
1138 if (i8042_nomux || i8042_check_mux()) {
1139 error = i8042_create_aux_port(-1);
1140 if (error)
1141 goto err_free_ports;
1142 aux_enable = i8042_enable_aux_port;
1143 } else {
1144 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1145 error = i8042_create_aux_port(i);
1146 if (error)
1147 goto err_free_ports;
1148 }
1149 aux_enable = i8042_enable_mux_ports;
1150 }
1151
1152 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1153 "i8042", i8042_platform_device);
1154 if (error)
1155 goto err_free_ports;
1156
1157 if (aux_enable())
1158 goto err_free_irq;
1159
1160 i8042_aux_irq_registered = 1;
1161 return 0;
1162
1163 err_free_irq:
1164 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1165 err_free_ports:
1166 i8042_free_aux_ports();
1167 return error;
1168}
1169
1170static int __devinit i8042_setup_kbd(void)
1171{
1172 int error;
1173
1174 error = i8042_create_kbd_port();
1175 if (error)
1176 return error;
1177
1178 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1179 "i8042", i8042_platform_device);
1180 if (error)
1181 goto err_free_port;
1182
1183 error = i8042_enable_kbd_port();
1184 if (error)
1185 goto err_free_irq;
1186
1187 i8042_kbd_irq_registered = 1;
1188 return 0;
1189
1190 err_free_irq:
1191 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1192 err_free_port:
1193 i8042_free_kbd_port();
1194 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001197static int __devinit i8042_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001199 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001201 error = i8042_controller_selftest();
1202 if (error)
1203 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001205 error = i8042_controller_init();
1206 if (error)
1207 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Bruno Prémontd35895d2008-05-27 01:36:04 -04001209#ifdef CONFIG_X86
1210 if (i8042_dritek)
1211 i8042_dritek_enable();
1212#endif
1213
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001214 if (!i8042_noaux) {
1215 error = i8042_setup_aux();
1216 if (error && error != -ENODEV && error != -EBUSY)
1217 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001220 if (!i8042_nokbd) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001221 error = i8042_setup_kbd();
1222 if (error)
1223 goto out_fail;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001224 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001225/*
1226 * Ok, everything is ready, let's register all serio ports
1227 */
1228 i8042_register_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return 0;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001231
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001232 out_fail:
1233 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1234 i8042_free_irqs();
1235 i8042_controller_reset();
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001236
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001237 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001240static int __devexit i8042_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001242 i8042_unregister_ports();
1243 i8042_free_irqs();
1244 i8042_controller_reset();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001246 return 0;
1247}
1248
1249static struct platform_driver i8042_driver = {
1250 .driver = {
1251 .name = "i8042",
1252 .owner = THIS_MODULE,
1253 },
1254 .probe = i8042_probe,
1255 .remove = __devexit_p(i8042_remove),
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001256 .shutdown = i8042_shutdown,
1257#ifdef CONFIG_PM
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001258 .suspend = i8042_suspend,
1259 .resume = i8042_resume,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001260#endif
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001261};
1262
1263static int __init i8042_init(void)
1264{
1265 int err;
1266
1267 dbg_init();
1268
1269 err = i8042_platform_init();
1270 if (err)
1271 return err;
1272
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001273 err = i8042_controller_check();
1274 if (err)
1275 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001276
1277 err = platform_driver_register(&i8042_driver);
1278 if (err)
1279 goto err_platform_exit;
1280
1281 i8042_platform_device = platform_device_alloc("i8042", -1);
1282 if (!i8042_platform_device) {
1283 err = -ENOMEM;
1284 goto err_unregister_driver;
1285 }
1286
1287 err = platform_device_add(i8042_platform_device);
1288 if (err)
1289 goto err_free_device;
1290
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001291 panic_blink = i8042_panic_blink;
1292
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001293 return 0;
1294
1295 err_free_device:
1296 platform_device_put(i8042_platform_device);
1297 err_unregister_driver:
1298 platform_driver_unregister(&i8042_driver);
1299 err_platform_exit:
1300 i8042_platform_exit();
1301
1302 return err;
1303}
1304
1305static void __exit i8042_exit(void)
1306{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 platform_device_unregister(i8042_platform_device);
Russell King3ae5eae2005-11-09 22:32:44 +00001308 platform_driver_unregister(&i8042_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 i8042_platform_exit();
1310
1311 panic_blink = NULL;
1312}
1313
1314module_init(i8042_init);
1315module_exit(i8042_exit);