Merge remote-tracking branches 'spi/topic/img-spfi', 'spi/topic/imx', 'spi/topic...
[deliverable/linux.git] / drivers / input / serio / i8042.c
CommitLineData
1da177e4
LT
1/*
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
4eb3c30b
JP
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
7e044e05 15#include <linux/types.h>
1da177e4
LT
16#include <linux/delay.h>
17#include <linux/module.h>
1da177e4
LT
18#include <linux/interrupt.h>
19#include <linux/ioport.h>
1da177e4
LT
20#include <linux/init.h>
21#include <linux/serio.h>
22#include <linux/err.h>
23#include <linux/rcupdate.h>
d052d1be 24#include <linux/platform_device.h>
553a05b8 25#include <linux/i8042.h>
5a0e3ad6 26#include <linux/slab.h>
1da177e4
LT
27
28#include <asm/io.h>
29
30MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
31MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
32MODULE_LICENSE("GPL");
33
386b3849 34static bool i8042_nokbd;
945ef0d4
DT
35module_param_named(nokbd, i8042_nokbd, bool, 0);
36MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
37
386b3849 38static bool i8042_noaux;
1da177e4
LT
39module_param_named(noaux, i8042_noaux, bool, 0);
40MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
41
e55a3366 42static bool i8042_nomux;
1da177e4 43module_param_named(nomux, i8042_nomux, bool, 0);
2c860a11 44MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
1da177e4 45
386b3849 46static bool i8042_unlock;
1da177e4
LT
47module_param_named(unlock, i8042_unlock, bool, 0);
48MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
49
386b3849 50static bool i8042_reset;
1da177e4
LT
51module_param_named(reset, i8042_reset, bool, 0);
52MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
53
386b3849 54static bool i8042_direct;
1da177e4
LT
55module_param_named(direct, i8042_direct, bool, 0);
56MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
57
386b3849 58static bool i8042_dumbkbd;
1da177e4
LT
59module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
60MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
61
386b3849 62static bool i8042_noloop;
1da177e4
LT
63module_param_named(noloop, i8042_noloop, bool, 0);
64MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
65
f8313ef1
JK
66static bool i8042_notimeout;
67module_param_named(notimeout, i8042_notimeout, bool, 0);
68MODULE_PARM_DESC(notimeout, "Ignore timeouts signalled by i8042");
69
148e9a71
SV
70static bool i8042_kbdreset;
71module_param_named(kbdreset, i8042_kbdreset, bool, 0);
72MODULE_PARM_DESC(kbdreset, "Reset device connected to KBD port");
73
8987fec0 74#ifdef CONFIG_X86
386b3849 75static bool i8042_dritek;
8987fec0
CC
76module_param_named(dritek, i8042_dritek, bool, 0);
77MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
78#endif
79
1da177e4 80#ifdef CONFIG_PNP
386b3849 81static bool i8042_nopnp;
1da177e4
LT
82module_param_named(nopnp, i8042_nopnp, bool, 0);
83MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
84#endif
85
86#define DEBUG
87#ifdef DEBUG
386b3849 88static bool i8042_debug;
1da177e4
LT
89module_param_named(debug, i8042_debug, bool, 0600);
90MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
91#endif
92
1c7827ae 93static bool i8042_bypass_aux_irq_test;
a7c5868c
HG
94static char i8042_kbd_firmware_id[128];
95static char i8042_aux_firmware_id[128];
1c7827ae 96
1da177e4
LT
97#include "i8042.h"
98
181d683d
DT
99/*
100 * i8042_lock protects serialization between i8042_command and
101 * the interrupt handler.
102 */
1da177e4
LT
103static DEFINE_SPINLOCK(i8042_lock);
104
181d683d
DT
105/*
106 * Writers to AUX and KBD ports as well as users issuing i8042_command
107 * directly should acquire i8042_mutex (by means of calling
108 * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
109 * they do not disturb each other (unfortunately in many i8042
110 * implementations write to one of the ports will immediately abort
111 * command that is being processed by another port).
112 */
113static DEFINE_MUTEX(i8042_mutex);
114
1da177e4
LT
115struct i8042_port {
116 struct serio *serio;
117 int irq;
386b3849 118 bool exists;
1da177e4 119 signed char mux;
1da177e4
LT
120};
121
122#define I8042_KBD_PORT_NO 0
123#define I8042_AUX_PORT_NO 1
124#define I8042_MUX_PORT_NO 2
125#define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
de9ce703
DT
126
127static struct i8042_port i8042_ports[I8042_NUM_PORTS];
1da177e4
LT
128
129static unsigned char i8042_initial_ctr;
130static unsigned char i8042_ctr;
386b3849
DT
131static bool i8042_mux_present;
132static bool i8042_kbd_irq_registered;
133static bool i8042_aux_irq_registered;
817e6ba3 134static unsigned char i8042_suppress_kbd_ack;
1da177e4
LT
135static struct platform_device *i8042_platform_device;
136
7d12e780 137static irqreturn_t i8042_interrupt(int irq, void *dev_id);
967c9ef9
MG
138static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
139 struct serio *serio);
1da177e4 140
181d683d
DT
141void i8042_lock_chip(void)
142{
143 mutex_lock(&i8042_mutex);
144}
145EXPORT_SYMBOL(i8042_lock_chip);
146
147void i8042_unlock_chip(void)
148{
149 mutex_unlock(&i8042_mutex);
150}
151EXPORT_SYMBOL(i8042_unlock_chip);
152
967c9ef9
MG
153int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
154 struct serio *serio))
155{
156 unsigned long flags;
157 int ret = 0;
158
159 spin_lock_irqsave(&i8042_lock, flags);
160
161 if (i8042_platform_filter) {
162 ret = -EBUSY;
163 goto out;
164 }
165
166 i8042_platform_filter = filter;
167
168out:
169 spin_unlock_irqrestore(&i8042_lock, flags);
170 return ret;
171}
172EXPORT_SYMBOL(i8042_install_filter);
173
174int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
175 struct serio *port))
176{
177 unsigned long flags;
178 int ret = 0;
179
180 spin_lock_irqsave(&i8042_lock, flags);
181
182 if (i8042_platform_filter != filter) {
183 ret = -EINVAL;
184 goto out;
185 }
186
187 i8042_platform_filter = NULL;
188
189out:
190 spin_unlock_irqrestore(&i8042_lock, flags);
191 return ret;
192}
193EXPORT_SYMBOL(i8042_remove_filter);
194
1da177e4
LT
195/*
196 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
197 * be ready for reading values from it / writing values to it.
198 * Called always with i8042_lock held.
199 */
200
201static int i8042_wait_read(void)
202{
203 int i = 0;
de9ce703 204
1da177e4
LT
205 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
206 udelay(50);
207 i++;
208 }
209 return -(i == I8042_CTL_TIMEOUT);
210}
211
212static int i8042_wait_write(void)
213{
214 int i = 0;
de9ce703 215
1da177e4
LT
216 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
217 udelay(50);
218 i++;
219 }
220 return -(i == I8042_CTL_TIMEOUT);
221}
222
223/*
224 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
225 * of the i8042 down the toilet.
226 */
227
228static int i8042_flush(void)
229{
230 unsigned long flags;
231 unsigned char data, str;
2f0d2604
AM
232 int count = 0;
233 int retval = 0;
1da177e4
LT
234
235 spin_lock_irqsave(&i8042_lock, flags);
236
2f0d2604
AM
237 while ((str = i8042_read_status()) & I8042_STR_OBF) {
238 if (count++ < I8042_BUFFER_SIZE) {
239 udelay(50);
240 data = i8042_read_data();
241 dbg("%02x <- i8042 (flush, %s)\n",
242 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
243 } else {
244 retval = -EIO;
245 break;
246 }
1da177e4
LT
247 }
248
249 spin_unlock_irqrestore(&i8042_lock, flags);
250
2f0d2604 251 return retval;
1da177e4
LT
252}
253
254/*
255 * i8042_command() executes a command on the i8042. It also sends the input
256 * parameter(s) of the commands to it, and receives the output value(s). The
257 * parameters are to be stored in the param array, and the output is placed
258 * into the same array. The number of the parameters and output values is
259 * encoded in bits 8-11 of the command number.
260 */
261
de9ce703 262static int __i8042_command(unsigned char *param, int command)
1da177e4 263{
de9ce703 264 int i, error;
1da177e4
LT
265
266 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
267 return -1;
268
de9ce703
DT
269 error = i8042_wait_write();
270 if (error)
271 return error;
463a4f76 272
4eb3c30b 273 dbg("%02x -> i8042 (command)\n", command & 0xff);
463a4f76
DT
274 i8042_write_command(command & 0xff);
275
276 for (i = 0; i < ((command >> 12) & 0xf); i++) {
de9ce703
DT
277 error = i8042_wait_write();
278 if (error)
279 return error;
4eb3c30b 280 dbg("%02x -> i8042 (parameter)\n", param[i]);
463a4f76 281 i8042_write_data(param[i]);
1da177e4
LT
282 }
283
463a4f76 284 for (i = 0; i < ((command >> 8) & 0xf); i++) {
de9ce703
DT
285 error = i8042_wait_read();
286 if (error) {
4eb3c30b 287 dbg(" -- i8042 (timeout)\n");
de9ce703
DT
288 return error;
289 }
1da177e4 290
463a4f76
DT
291 if (command == I8042_CMD_AUX_LOOP &&
292 !(i8042_read_status() & I8042_STR_AUXDATA)) {
4eb3c30b 293 dbg(" -- i8042 (auxerr)\n");
de9ce703 294 return -1;
1da177e4
LT
295 }
296
463a4f76 297 param[i] = i8042_read_data();
4eb3c30b 298 dbg("%02x <- i8042 (return)\n", param[i]);
463a4f76 299 }
1da177e4 300
de9ce703
DT
301 return 0;
302}
1da177e4 303
553a05b8 304int i8042_command(unsigned char *param, int command)
de9ce703
DT
305{
306 unsigned long flags;
307 int retval;
308
309 spin_lock_irqsave(&i8042_lock, flags);
310 retval = __i8042_command(param, command);
463a4f76 311 spin_unlock_irqrestore(&i8042_lock, flags);
de9ce703 312
1da177e4
LT
313 return retval;
314}
553a05b8 315EXPORT_SYMBOL(i8042_command);
1da177e4
LT
316
317/*
318 * i8042_kbd_write() sends a byte out through the keyboard interface.
319 */
320
321static int i8042_kbd_write(struct serio *port, unsigned char c)
322{
323 unsigned long flags;
324 int retval = 0;
325
326 spin_lock_irqsave(&i8042_lock, flags);
327
de9ce703 328 if (!(retval = i8042_wait_write())) {
4eb3c30b 329 dbg("%02x -> i8042 (kbd-data)\n", c);
1da177e4
LT
330 i8042_write_data(c);
331 }
332
333 spin_unlock_irqrestore(&i8042_lock, flags);
334
335 return retval;
336}
337
338/*
339 * i8042_aux_write() sends a byte out through the aux interface.
340 */
341
342static int i8042_aux_write(struct serio *serio, unsigned char c)
343{
344 struct i8042_port *port = serio->port_data;
1da177e4 345
f4e3c711
DT
346 return i8042_command(&c, port->mux == -1 ?
347 I8042_CMD_AUX_SEND :
348 I8042_CMD_MUX_SEND + port->mux);
1da177e4
LT
349}
350
5ddbc77c
DT
351
352/*
353 * i8042_aux_close attempts to clear AUX or KBD port state by disabling
354 * and then re-enabling it.
355 */
356
357static void i8042_port_close(struct serio *serio)
358{
359 int irq_bit;
360 int disable_bit;
361 const char *port_name;
362
363 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
364 irq_bit = I8042_CTR_AUXINT;
365 disable_bit = I8042_CTR_AUXDIS;
366 port_name = "AUX";
367 } else {
368 irq_bit = I8042_CTR_KBDINT;
369 disable_bit = I8042_CTR_KBDDIS;
370 port_name = "KBD";
371 }
372
373 i8042_ctr &= ~irq_bit;
374 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
4eb3c30b 375 pr_warn("Can't write CTR while closing %s port\n", port_name);
5ddbc77c
DT
376
377 udelay(50);
378
379 i8042_ctr &= ~disable_bit;
380 i8042_ctr |= irq_bit;
381 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
4eb3c30b 382 pr_err("Can't reactivate %s port\n", port_name);
5ddbc77c
DT
383
384 /*
385 * See if there is any data appeared while we were messing with
386 * port state.
387 */
388 i8042_interrupt(0, NULL);
389}
390
1da177e4
LT
391/*
392 * i8042_start() is called by serio core when port is about to finish
393 * registering. It will mark port as existing so i8042_interrupt can
394 * start sending data through it.
395 */
396static int i8042_start(struct serio *serio)
397{
398 struct i8042_port *port = serio->port_data;
399
386b3849 400 port->exists = true;
1da177e4
LT
401 mb();
402 return 0;
403}
404
405/*
406 * i8042_stop() marks serio port as non-existing so i8042_interrupt
407 * will not try to send data to the port that is about to go away.
408 * The function is called by serio core as part of unregister procedure.
409 */
410static void i8042_stop(struct serio *serio)
411{
412 struct i8042_port *port = serio->port_data;
413
386b3849 414 port->exists = false;
a8399c51
DT
415
416 /*
417 * We synchronize with both AUX and KBD IRQs because there is
418 * a (very unlikely) chance that AUX IRQ is raised for KBD port
419 * and vice versa.
420 */
421 synchronize_irq(I8042_AUX_IRQ);
422 synchronize_irq(I8042_KBD_IRQ);
1da177e4
LT
423 port->serio = NULL;
424}
425
4e8d340d
DT
426/*
427 * i8042_filter() filters out unwanted bytes from the input data stream.
428 * It is called from i8042_interrupt and thus is running with interrupts
429 * off and i8042_lock held.
430 */
967c9ef9
MG
431static bool i8042_filter(unsigned char data, unsigned char str,
432 struct serio *serio)
4e8d340d
DT
433{
434 if (unlikely(i8042_suppress_kbd_ack)) {
435 if ((~str & I8042_STR_AUXDATA) &&
436 (data == 0xfa || data == 0xfe)) {
437 i8042_suppress_kbd_ack--;
438 dbg("Extra keyboard ACK - filtered out\n");
439 return true;
440 }
441 }
442
967c9ef9 443 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
0747e3bc 444 dbg("Filtered out by platform filter\n");
967c9ef9
MG
445 return true;
446 }
447
4e8d340d
DT
448 return false;
449}
450
1da177e4
LT
451/*
452 * i8042_interrupt() is the most important function in this driver -
453 * it handles the interrupts from the i8042, and sends incoming bytes
454 * to the upper layers.
455 */
456
7d12e780 457static irqreturn_t i8042_interrupt(int irq, void *dev_id)
1da177e4
LT
458{
459 struct i8042_port *port;
967c9ef9 460 struct serio *serio;
1da177e4
LT
461 unsigned long flags;
462 unsigned char str, data;
463 unsigned int dfl;
464 unsigned int port_no;
4e8d340d 465 bool filtered;
817e6ba3 466 int ret = 1;
1da177e4 467
1da177e4 468 spin_lock_irqsave(&i8042_lock, flags);
4e8d340d 469
1da177e4
LT
470 str = i8042_read_status();
471 if (unlikely(~str & I8042_STR_OBF)) {
472 spin_unlock_irqrestore(&i8042_lock, flags);
4eb3c30b
JP
473 if (irq)
474 dbg("Interrupt %d, without any data\n", irq);
1da177e4
LT
475 ret = 0;
476 goto out;
477 }
4e8d340d 478
1da177e4 479 data = i8042_read_data();
1da177e4
LT
480
481 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
482 static unsigned long last_transmit;
483 static unsigned char last_str;
484
485 dfl = 0;
486 if (str & I8042_STR_MUXERR) {
4eb3c30b
JP
487 dbg("MUX error, status is %02x, data is %02x\n",
488 str, data);
1da177e4
LT
489/*
490 * When MUXERR condition is signalled the data register can only contain
491 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
a216a4b6
DT
492 * it is not always the case. Some KBCs also report 0xfc when there is
493 * nothing connected to the port while others sometimes get confused which
494 * port the data came from and signal error leaving the data intact. They
495 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
496 * to legacy mode yet, when we see one we'll add proper handling).
497 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
498 * rest assume that the data came from the same serio last byte
1da177e4
LT
499 * was transmitted (if transmission happened not too long ago).
500 */
a216a4b6
DT
501
502 switch (data) {
503 default:
1da177e4
LT
504 if (time_before(jiffies, last_transmit + HZ/10)) {
505 str = last_str;
506 break;
507 }
508 /* fall through - report timeout */
a216a4b6 509 case 0xfc:
1da177e4
LT
510 case 0xfd:
511 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
512 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
513 }
514 }
515
516 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
517 last_str = str;
518 last_transmit = jiffies;
519 } else {
520
521 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
f8313ef1 522 ((str & I8042_STR_TIMEOUT && !i8042_notimeout) ? SERIO_TIMEOUT : 0);
1da177e4
LT
523
524 port_no = (str & I8042_STR_AUXDATA) ?
525 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
526 }
527
528 port = &i8042_ports[port_no];
967c9ef9 529 serio = port->exists ? port->serio : NULL;
1da177e4 530
4eb3c30b 531 dbg("%02x <- i8042 (interrupt, %d, %d%s%s)\n",
de9ce703 532 data, port_no, irq,
1da177e4
LT
533 dfl & SERIO_PARITY ? ", bad parity" : "",
534 dfl & SERIO_TIMEOUT ? ", timeout" : "");
535
967c9ef9 536 filtered = i8042_filter(data, str, serio);
4e8d340d
DT
537
538 spin_unlock_irqrestore(&i8042_lock, flags);
817e6ba3 539
4e8d340d 540 if (likely(port->exists && !filtered))
967c9ef9 541 serio_interrupt(serio, data, dfl);
1da177e4 542
0854e52d 543 out:
1da177e4
LT
544 return IRQ_RETVAL(ret);
545}
546
de9ce703 547/*
5ddbc77c 548 * i8042_enable_kbd_port enables keyboard port on chip
de9ce703
DT
549 */
550
551static int i8042_enable_kbd_port(void)
552{
553 i8042_ctr &= ~I8042_CTR_KBDDIS;
554 i8042_ctr |= I8042_CTR_KBDINT;
555
556 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
018db6bb
MA
557 i8042_ctr &= ~I8042_CTR_KBDINT;
558 i8042_ctr |= I8042_CTR_KBDDIS;
4eb3c30b 559 pr_err("Failed to enable KBD port\n");
de9ce703
DT
560 return -EIO;
561 }
562
563 return 0;
564}
565
566/*
567 * i8042_enable_aux_port enables AUX (mouse) port on chip
568 */
569
570static int i8042_enable_aux_port(void)
571{
572 i8042_ctr &= ~I8042_CTR_AUXDIS;
573 i8042_ctr |= I8042_CTR_AUXINT;
574
575 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
018db6bb
MA
576 i8042_ctr &= ~I8042_CTR_AUXINT;
577 i8042_ctr |= I8042_CTR_AUXDIS;
4eb3c30b 578 pr_err("Failed to enable AUX port\n");
de9ce703
DT
579 return -EIO;
580 }
581
582 return 0;
583}
584
585/*
586 * i8042_enable_mux_ports enables 4 individual AUX ports after
587 * the controller has been switched into Multiplexed mode
588 */
589
590static int i8042_enable_mux_ports(void)
591{
592 unsigned char param;
593 int i;
594
595 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
596 i8042_command(&param, I8042_CMD_MUX_PFX + i);
597 i8042_command(&param, I8042_CMD_AUX_ENABLE);
598 }
599
600 return i8042_enable_aux_port();
601}
602
1da177e4 603/*
386b3849
DT
604 * i8042_set_mux_mode checks whether the controller has an
605 * active multiplexor and puts the chip into Multiplexed (true)
606 * or Legacy (false) mode.
1da177e4
LT
607 */
608
386b3849 609static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
1da177e4
LT
610{
611
386b3849 612 unsigned char param, val;
1da177e4
LT
613/*
614 * Get rid of bytes in the queue.
615 */
616
617 i8042_flush();
618
619/*
620 * Internal loopback test - send three bytes, they should come back from the
de9ce703 621 * mouse interface, the last should be version.
1da177e4
LT
622 */
623
386b3849
DT
624 param = val = 0xf0;
625 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
626 return -1;
627 param = val = multiplex ? 0x56 : 0xf6;
628 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
1da177e4 629 return -1;
386b3849
DT
630 param = val = multiplex ? 0xa4 : 0xa5;
631 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
1da177e4 632 return -1;
386b3849
DT
633
634/*
635 * Workaround for interference with USB Legacy emulation
636 * that causes a v10.12 MUX to be found.
637 */
638 if (param == 0xac)
1da177e4
LT
639 return -1;
640
641 if (mux_version)
463a4f76 642 *mux_version = param;
1da177e4
LT
643
644 return 0;
645}
646
1da177e4 647/*
de9ce703
DT
648 * i8042_check_mux() checks whether the controller supports the PS/2 Active
649 * Multiplexing specification by Synaptics, Phoenix, Insyde and
650 * LCS/Telegraphics.
1da177e4
LT
651 */
652
f8113416 653static int __init i8042_check_mux(void)
1da177e4 654{
de9ce703
DT
655 unsigned char mux_version;
656
386b3849 657 if (i8042_set_mux_mode(true, &mux_version))
de9ce703
DT
658 return -1;
659
4eb3c30b 660 pr_info("Detected active multiplexing controller, rev %d.%d\n",
de9ce703 661 (mux_version >> 4) & 0xf, mux_version & 0xf);
1da177e4 662
de9ce703
DT
663/*
664 * Disable all muxed ports by disabling AUX.
665 */
1da177e4
LT
666 i8042_ctr |= I8042_CTR_AUXDIS;
667 i8042_ctr &= ~I8042_CTR_AUXINT;
668
669 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
4eb3c30b 670 pr_err("Failed to disable AUX port, can't use MUX\n");
de9ce703 671 return -EIO;
1da177e4
LT
672 }
673
386b3849 674 i8042_mux_present = true;
1da177e4
LT
675
676 return 0;
677}
678
1da177e4 679/*
de9ce703 680 * The following is used to test AUX IRQ delivery.
1da177e4 681 */
f8113416
DT
682static struct completion i8042_aux_irq_delivered __initdata;
683static bool i8042_irq_being_tested __initdata;
1da177e4 684
f8113416 685static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
1da177e4 686{
de9ce703
DT
687 unsigned long flags;
688 unsigned char str, data;
e3758b2a 689 int ret = 0;
1da177e4 690
de9ce703
DT
691 spin_lock_irqsave(&i8042_lock, flags);
692 str = i8042_read_status();
693 if (str & I8042_STR_OBF) {
694 data = i8042_read_data();
4eb3c30b
JP
695 dbg("%02x <- i8042 (aux_test_irq, %s)\n",
696 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
de9ce703
DT
697 if (i8042_irq_being_tested &&
698 data == 0xa5 && (str & I8042_STR_AUXDATA))
699 complete(&i8042_aux_irq_delivered);
e3758b2a 700 ret = 1;
de9ce703
DT
701 }
702 spin_unlock_irqrestore(&i8042_lock, flags);
1da177e4 703
e3758b2a 704 return IRQ_RETVAL(ret);
1da177e4
LT
705}
706
d2ada559
RS
707/*
708 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
709 * verifies success by readinng CTR. Used when testing for presence of AUX
710 * port.
711 */
f8113416 712static int __init i8042_toggle_aux(bool on)
d2ada559
RS
713{
714 unsigned char param;
715 int i;
716
717 if (i8042_command(&param,
718 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
719 return -1;
720
721 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
722 for (i = 0; i < 100; i++) {
723 udelay(50);
724
725 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
726 return -1;
727
728 if (!(param & I8042_CTR_AUXDIS) == on)
729 return 0;
730 }
731
732 return -1;
733}
1da177e4
LT
734
735/*
736 * i8042_check_aux() applies as much paranoia as it can at detecting
737 * the presence of an AUX interface.
738 */
739
f8113416 740static int __init i8042_check_aux(void)
1da177e4 741{
de9ce703 742 int retval = -1;
386b3849
DT
743 bool irq_registered = false;
744 bool aux_loop_broken = false;
de9ce703 745 unsigned long flags;
1da177e4 746 unsigned char param;
1da177e4
LT
747
748/*
749 * Get rid of bytes in the queue.
750 */
751
752 i8042_flush();
753
754/*
755 * Internal loopback test - filters out AT-type i8042's. Unfortunately
756 * SiS screwed up and their 5597 doesn't support the LOOP command even
757 * though it has an AUX port.
758 */
759
760 param = 0x5a;
3ca5de6d
DT
761 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
762 if (retval || param != 0x5a) {
1da177e4
LT
763
764/*
765 * External connection test - filters out AT-soldered PS/2 i8042's
766 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
767 * 0xfa - no error on some notebooks which ignore the spec
768 * Because it's common for chipsets to return error on perfectly functioning
769 * AUX ports, we test for this only when the LOOP command failed.
770 */
771
de9ce703
DT
772 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
773 (param && param != 0xfa && param != 0xff))
774 return -1;
1e4865f8 775
3ca5de6d
DT
776/*
777 * If AUX_LOOP completed without error but returned unexpected data
778 * mark it as broken
779 */
780 if (!retval)
386b3849 781 aux_loop_broken = true;
1da177e4
LT
782 }
783
784/*
785 * Bit assignment test - filters out PS/2 i8042's in AT mode
786 */
787
386b3849 788 if (i8042_toggle_aux(false)) {
4eb3c30b
JP
789 pr_warn("Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
790 pr_warn("If AUX port is really absent please use the 'i8042.noaux' option\n");
1da177e4
LT
791 }
792
386b3849 793 if (i8042_toggle_aux(true))
1da177e4
LT
794 return -1;
795
148e9a71
SV
796/*
797 * Reset keyboard (needed on some laptops to successfully detect
798 * touchpad, e.g., some Gigabyte laptop models with Elantech
799 * touchpads).
800 */
801 if (i8042_kbdreset) {
802 pr_warn("Attempting to reset device connected to KBD port\n");
803 i8042_kbd_write(NULL, (unsigned char) 0xff);
804 }
805
1da177e4 806/*
de9ce703
DT
807 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
808 * used it for a PCI card or somethig else.
1da177e4
LT
809 */
810
1c7827ae 811 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
de9ce703
DT
812/*
813 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
814 * is working and hope we are right.
815 */
816 retval = 0;
817 goto out;
818 }
1da177e4 819
de9ce703
DT
820 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
821 "i8042", i8042_platform_device))
822 goto out;
1da177e4 823
386b3849 824 irq_registered = true;
de9ce703
DT
825
826 if (i8042_enable_aux_port())
827 goto out;
828
829 spin_lock_irqsave(&i8042_lock, flags);
1da177e4 830
de9ce703 831 init_completion(&i8042_aux_irq_delivered);
386b3849 832 i8042_irq_being_tested = true;
de9ce703
DT
833
834 param = 0xa5;
835 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
836
837 spin_unlock_irqrestore(&i8042_lock, flags);
838
839 if (retval)
840 goto out;
1da177e4 841
de9ce703
DT
842 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
843 msecs_to_jiffies(250)) == 0) {
1da177e4 844/*
de9ce703
DT
845 * AUX IRQ was never delivered so we need to flush the controller to
846 * get rid of the byte we put there; otherwise keyboard may not work.
1da177e4 847 */
4eb3c30b 848 dbg(" -- i8042 (aux irq test timeout)\n");
de9ce703
DT
849 i8042_flush();
850 retval = -1;
851 }
1da177e4 852
de9ce703 853 out:
1da177e4 854
de9ce703
DT
855/*
856 * Disable the interface.
857 */
1da177e4 858
de9ce703
DT
859 i8042_ctr |= I8042_CTR_AUXDIS;
860 i8042_ctr &= ~I8042_CTR_AUXINT;
1da177e4 861
de9ce703
DT
862 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
863 retval = -1;
1da177e4 864
de9ce703
DT
865 if (irq_registered)
866 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1da177e4 867
de9ce703
DT
868 return retval;
869}
1da177e4 870
de9ce703 871static int i8042_controller_check(void)
1da177e4 872{
2f0d2604 873 if (i8042_flush()) {
4eb3c30b 874 pr_err("No controller found\n");
de9ce703
DT
875 return -ENODEV;
876 }
877
878 return 0;
1da177e4
LT
879}
880
de9ce703 881static int i8042_controller_selftest(void)
2673c836
VP
882{
883 unsigned char param;
5ea2fc64 884 int i = 0;
2673c836 885
5ea2fc64
AV
886 /*
887 * We try this 5 times; on some really fragile systems this does not
888 * take the first time...
889 */
890 do {
891
892 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
a2a94e73 893 pr_err("i8042 controller selftest timeout\n");
5ea2fc64
AV
894 return -ENODEV;
895 }
896
897 if (param == I8042_RET_CTL_TEST)
898 return 0;
2673c836 899
a2a94e73
PB
900 dbg("i8042 controller selftest: %#x != %#x\n",
901 param, I8042_RET_CTL_TEST);
5ea2fc64
AV
902 msleep(50);
903 } while (i++ < 5);
2673c836 904
5ea2fc64
AV
905#ifdef CONFIG_X86
906 /*
907 * On x86, we don't fail entire i8042 initialization if controller
908 * reset fails in hopes that keyboard port will still be functional
909 * and user will still get a working keyboard. This is especially
910 * important on netbooks. On other arches we trust hardware more.
911 */
4eb3c30b 912 pr_info("giving up on controller selftest, continuing anyway...\n");
2673c836 913 return 0;
5ea2fc64 914#else
a2a94e73 915 pr_err("i8042 controller selftest failed\n");
5ea2fc64
AV
916 return -EIO;
917#endif
2673c836 918}
1da177e4
LT
919
920/*
921 * i8042_controller init initializes the i8042 controller, and,
922 * most importantly, sets it into non-xlated mode if that's
923 * desired.
924 */
925
926static int i8042_controller_init(void)
927{
928 unsigned long flags;
ee1e82ce
DT
929 int n = 0;
930 unsigned char ctr[2];
1da177e4 931
1da177e4 932/*
ee1e82ce 933 * Save the CTR for restore on unload / reboot.
1da177e4
LT
934 */
935
ee1e82ce
DT
936 do {
937 if (n >= 10) {
4eb3c30b 938 pr_err("Unable to get stable CTR read\n");
ee1e82ce
DT
939 return -EIO;
940 }
941
942 if (n != 0)
943 udelay(50);
944
945 if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
4eb3c30b 946 pr_err("Can't read CTR while initializing i8042\n");
ee1e82ce
DT
947 return -EIO;
948 }
949
950 } while (n < 2 || ctr[0] != ctr[1]);
1da177e4 951
ee1e82ce 952 i8042_initial_ctr = i8042_ctr = ctr[0];
1da177e4
LT
953
954/*
955 * Disable the keyboard interface and interrupt.
956 */
957
958 i8042_ctr |= I8042_CTR_KBDDIS;
959 i8042_ctr &= ~I8042_CTR_KBDINT;
960
961/*
962 * Handle keylock.
963 */
964
965 spin_lock_irqsave(&i8042_lock, flags);
966 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
967 if (i8042_unlock)
968 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
82dd9eff 969 else
4eb3c30b 970 pr_warn("Warning: Keylock active\n");
1da177e4
LT
971 }
972 spin_unlock_irqrestore(&i8042_lock, flags);
973
974/*
975 * If the chip is configured into nontranslated mode by the BIOS, don't
976 * bother enabling translating and be happy.
977 */
978
979 if (~i8042_ctr & I8042_CTR_XLATE)
386b3849 980 i8042_direct = true;
1da177e4
LT
981
982/*
983 * Set nontranslated mode for the kbd interface if requested by an option.
984 * After this the kbd interface becomes a simple serial in/out, like the aux
985 * interface is. We don't do this by default, since it can confuse notebook
986 * BIOSes.
987 */
988
989 if (i8042_direct)
990 i8042_ctr &= ~I8042_CTR_XLATE;
991
992/*
993 * Write CTR back.
994 */
995
996 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
4eb3c30b 997 pr_err("Can't write CTR while initializing i8042\n");
de9ce703 998 return -EIO;
1da177e4
LT
999 }
1000
ee1e82ce
DT
1001/*
1002 * Flush whatever accumulated while we were disabling keyboard port.
1003 */
1004
1005 i8042_flush();
1006
1da177e4
LT
1007 return 0;
1008}
1009
1010
1011/*
de9ce703 1012 * Reset the controller and reset CRT to the original value set by BIOS.
1da177e4 1013 */
de9ce703 1014
1729ad1f 1015static void i8042_controller_reset(bool force_reset)
1da177e4 1016{
de9ce703 1017 i8042_flush();
1da177e4 1018
8d04ddb6
DT
1019/*
1020 * Disable both KBD and AUX interfaces so they don't get in the way
1021 */
1022
1023 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1024 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1025
ee1e82ce 1026 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
4eb3c30b 1027 pr_warn("Can't write CTR while resetting\n");
5ddbc77c 1028
1da177e4
LT
1029/*
1030 * Disable MUX mode if present.
1031 */
1032
1033 if (i8042_mux_present)
386b3849 1034 i8042_set_mux_mode(false, NULL);
1da177e4
LT
1035
1036/*
de9ce703 1037 * Reset the controller if requested.
1da177e4
LT
1038 */
1039
1729ad1f 1040 if (i8042_reset || force_reset)
1ca56e51 1041 i8042_controller_selftest();
1da177e4 1042
de9ce703
DT
1043/*
1044 * Restore the original control register setting.
1045 */
1046
1047 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
4eb3c30b 1048 pr_warn("Can't restore CTR\n");
1da177e4
LT
1049}
1050
1051
1da177e4 1052/*
c7ff0d9c
TS
1053 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
1054 * when kernel panics. Flashing LEDs is useful for users running X who may
aa5e5dc2 1055 * not see the console and will help distinguishing panics from "real"
1da177e4
LT
1056 * lockups.
1057 *
1058 * Note that DELAY has a limit of 10ms so we will not get stuck here
1059 * waiting for KBC to free up even if KBD interrupt is off
1060 */
1061
1062#define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1063
c7ff0d9c 1064static long i8042_panic_blink(int state)
1da177e4
LT
1065{
1066 long delay = 0;
c7ff0d9c 1067 char led;
1da177e4 1068
c7ff0d9c 1069 led = (state) ? 0x01 | 0x04 : 0;
1da177e4
LT
1070 while (i8042_read_status() & I8042_STR_IBF)
1071 DELAY;
4eb3c30b 1072 dbg("%02x -> i8042 (panic blink)\n", 0xed);
19f3c3e3 1073 i8042_suppress_kbd_ack = 2;
1da177e4
LT
1074 i8042_write_data(0xed); /* set leds */
1075 DELAY;
1076 while (i8042_read_status() & I8042_STR_IBF)
1077 DELAY;
1078 DELAY;
4eb3c30b 1079 dbg("%02x -> i8042 (panic blink)\n", led);
1da177e4
LT
1080 i8042_write_data(led);
1081 DELAY;
1da177e4
LT
1082 return delay;
1083}
1084
1085#undef DELAY
1086
d35895db
BP
1087#ifdef CONFIG_X86
1088static void i8042_dritek_enable(void)
1089{
594d6363 1090 unsigned char param = 0x90;
d35895db
BP
1091 int error;
1092
1093 error = i8042_command(&param, 0x1059);
1094 if (error)
4eb3c30b 1095 pr_warn("Failed to enable DRITEK extension: %d\n", error);
d35895db
BP
1096}
1097#endif
1098
82dd9eff 1099#ifdef CONFIG_PM
7e044e05 1100
1da177e4 1101/*
ebd7768d
DT
1102 * Here we try to reset everything back to a state we had
1103 * before suspending.
1da177e4
LT
1104 */
1105
1ca56e51 1106static int i8042_controller_resume(bool force_reset)
1da177e4 1107{
de9ce703 1108 int error;
1da177e4 1109
de9ce703
DT
1110 error = i8042_controller_check();
1111 if (error)
1112 return error;
2673c836 1113
1ca56e51
DT
1114 if (i8042_reset || force_reset) {
1115 error = i8042_controller_selftest();
1116 if (error)
1117 return error;
1118 }
1da177e4
LT
1119
1120/*
82dd9eff 1121 * Restore original CTR value and disable all ports
1da177e4
LT
1122 */
1123
82dd9eff
DT
1124 i8042_ctr = i8042_initial_ctr;
1125 if (i8042_direct)
1126 i8042_ctr &= ~I8042_CTR_XLATE;
de9ce703
DT
1127 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1128 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
1129 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
4eb3c30b 1130 pr_warn("Can't write CTR to resume, retrying...\n");
2f6a77d5
JK
1131 msleep(50);
1132 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
4eb3c30b 1133 pr_err("CTR write retry failed\n");
2f6a77d5
JK
1134 return -EIO;
1135 }
de9ce703 1136 }
1da177e4 1137
d35895db
BP
1138
1139#ifdef CONFIG_X86
1140 if (i8042_dritek)
1141 i8042_dritek_enable();
1142#endif
1143
de9ce703 1144 if (i8042_mux_present) {
386b3849 1145 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
4eb3c30b 1146 pr_warn("failed to resume active multiplexor, mouse won't work\n");
de9ce703
DT
1147 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
1148 i8042_enable_aux_port();
1da177e4 1149
de9ce703
DT
1150 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1151 i8042_enable_kbd_port();
1152
7d12e780 1153 i8042_interrupt(0, NULL);
1da177e4
LT
1154
1155 return 0;
1da177e4 1156}
ebd7768d 1157
1ca56e51
DT
1158/*
1159 * Here we try to restore the original BIOS settings to avoid
1160 * upsetting it.
1161 */
1162
1729ad1f 1163static int i8042_pm_suspend(struct device *dev)
1ca56e51 1164{
1729ad1f 1165 i8042_controller_reset(true);
1ca56e51
DT
1166
1167 return 0;
1168}
1169
1170static int i8042_pm_resume(struct device *dev)
1171{
1172 /*
1173 * On resume from S2R we always try to reset the controller
1174 * to bring it in a sane state. (In case of S2D we expect
1175 * BIOS to reset the controller for us.)
1176 */
1177 return i8042_controller_resume(true);
1178}
1179
c2d1a2a1
AJ
1180static int i8042_pm_thaw(struct device *dev)
1181{
1182 i8042_interrupt(0, NULL);
1183
1184 return 0;
1185}
1186
1729ad1f
DT
1187static int i8042_pm_reset(struct device *dev)
1188{
1189 i8042_controller_reset(false);
1190
1191 return 0;
1192}
1193
1ca56e51
DT
1194static int i8042_pm_restore(struct device *dev)
1195{
1196 return i8042_controller_resume(false);
1197}
1198
ebd7768d 1199static const struct dev_pm_ops i8042_pm_ops = {
1729ad1f 1200 .suspend = i8042_pm_suspend,
1ca56e51 1201 .resume = i8042_pm_resume,
c2d1a2a1 1202 .thaw = i8042_pm_thaw,
ebd7768d
DT
1203 .poweroff = i8042_pm_reset,
1204 .restore = i8042_pm_restore,
1205};
1206
82dd9eff 1207#endif /* CONFIG_PM */
1da177e4
LT
1208
1209/*
1210 * We need to reset the 8042 back to original mode on system shutdown,
1211 * because otherwise BIOSes will be confused.
1212 */
1213
3ae5eaec 1214static void i8042_shutdown(struct platform_device *dev)
1da177e4 1215{
1729ad1f 1216 i8042_controller_reset(false);
1da177e4
LT
1217}
1218
f8113416 1219static int __init i8042_create_kbd_port(void)
1da177e4
LT
1220{
1221 struct serio *serio;
1222 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1223
d39969de 1224 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
0854e52d
DT
1225 if (!serio)
1226 return -ENOMEM;
1227
1228 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1229 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
0854e52d
DT
1230 serio->start = i8042_start;
1231 serio->stop = i8042_stop;
5ddbc77c 1232 serio->close = i8042_port_close;
0854e52d
DT
1233 serio->port_data = port;
1234 serio->dev.parent = &i8042_platform_device->dev;
de9ce703 1235 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
0854e52d 1236 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
a7c5868c
HG
1237 strlcpy(serio->firmware_id, i8042_kbd_firmware_id,
1238 sizeof(serio->firmware_id));
0854e52d
DT
1239
1240 port->serio = serio;
de9ce703 1241 port->irq = I8042_KBD_IRQ;
0854e52d 1242
de9ce703 1243 return 0;
1da177e4
LT
1244}
1245
f8113416 1246static int __init i8042_create_aux_port(int idx)
1da177e4
LT
1247{
1248 struct serio *serio;
de9ce703
DT
1249 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1250 struct i8042_port *port = &i8042_ports[port_no];
1da177e4 1251
d39969de 1252 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
0854e52d
DT
1253 if (!serio)
1254 return -ENOMEM;
1255
1256 serio->id.type = SERIO_8042;
1257 serio->write = i8042_aux_write;
0854e52d
DT
1258 serio->start = i8042_start;
1259 serio->stop = i8042_stop;
1260 serio->port_data = port;
1261 serio->dev.parent = &i8042_platform_device->dev;
de9ce703
DT
1262 if (idx < 0) {
1263 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1264 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
a7c5868c
HG
1265 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1266 sizeof(serio->firmware_id));
5ddbc77c 1267 serio->close = i8042_port_close;
de9ce703
DT
1268 } else {
1269 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1270 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
266e43c4
HG
1271 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1272 sizeof(serio->firmware_id));
de9ce703 1273 }
0854e52d
DT
1274
1275 port->serio = serio;
de9ce703
DT
1276 port->mux = idx;
1277 port->irq = I8042_AUX_IRQ;
0854e52d 1278
de9ce703 1279 return 0;
1da177e4
LT
1280}
1281
f8113416 1282static void __init i8042_free_kbd_port(void)
1da177e4 1283{
de9ce703
DT
1284 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1285 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1286}
1da177e4 1287
f8113416 1288static void __init i8042_free_aux_ports(void)
de9ce703
DT
1289{
1290 int i;
0854e52d 1291
de9ce703
DT
1292 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1293 kfree(i8042_ports[i].serio);
1294 i8042_ports[i].serio = NULL;
1295 }
1296}
0854e52d 1297
f8113416 1298static void __init i8042_register_ports(void)
de9ce703
DT
1299{
1300 int i;
0854e52d 1301
de9ce703
DT
1302 for (i = 0; i < I8042_NUM_PORTS; i++) {
1303 if (i8042_ports[i].serio) {
1304 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1305 i8042_ports[i].serio->name,
1306 (unsigned long) I8042_DATA_REG,
1307 (unsigned long) I8042_COMMAND_REG,
1308 i8042_ports[i].irq);
1309 serio_register_port(i8042_ports[i].serio);
1310 }
1311 }
1da177e4
LT
1312}
1313
e2619cf7 1314static void i8042_unregister_ports(void)
1da177e4 1315{
de9ce703 1316 int i;
1da177e4 1317
de9ce703
DT
1318 for (i = 0; i < I8042_NUM_PORTS; i++) {
1319 if (i8042_ports[i].serio) {
1320 serio_unregister_port(i8042_ports[i].serio);
1321 i8042_ports[i].serio = NULL;
1322 }
1323 }
1324}
1325
181d683d
DT
1326/*
1327 * Checks whether port belongs to i8042 controller.
1328 */
1329bool i8042_check_port_owner(const struct serio *port)
1330{
1331 int i;
1332
1333 for (i = 0; i < I8042_NUM_PORTS; i++)
1334 if (i8042_ports[i].serio == port)
1335 return true;
1336
1337 return false;
1338}
1339EXPORT_SYMBOL(i8042_check_port_owner);
1340
de9ce703
DT
1341static void i8042_free_irqs(void)
1342{
1343 if (i8042_aux_irq_registered)
1344 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1345 if (i8042_kbd_irq_registered)
1346 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1347
386b3849 1348 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
de9ce703
DT
1349}
1350
f8113416 1351static int __init i8042_setup_aux(void)
de9ce703
DT
1352{
1353 int (*aux_enable)(void);
1354 int error;
1355 int i;
1da177e4 1356
de9ce703 1357 if (i8042_check_aux())
87fd6318 1358 return -ENODEV;
1da177e4 1359
de9ce703
DT
1360 if (i8042_nomux || i8042_check_mux()) {
1361 error = i8042_create_aux_port(-1);
1362 if (error)
1363 goto err_free_ports;
1364 aux_enable = i8042_enable_aux_port;
1365 } else {
1366 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1367 error = i8042_create_aux_port(i);
1368 if (error)
1369 goto err_free_ports;
0854e52d 1370 }
de9ce703 1371 aux_enable = i8042_enable_mux_ports;
1da177e4
LT
1372 }
1373
de9ce703
DT
1374 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1375 "i8042", i8042_platform_device);
1376 if (error)
1377 goto err_free_ports;
945ef0d4 1378
de9ce703
DT
1379 if (aux_enable())
1380 goto err_free_irq;
1da177e4 1381
386b3849 1382 i8042_aux_irq_registered = true;
1da177e4 1383 return 0;
0854e52d 1384
de9ce703
DT
1385 err_free_irq:
1386 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1387 err_free_ports:
1388 i8042_free_aux_ports();
1389 return error;
1390}
0854e52d 1391
f8113416 1392static int __init i8042_setup_kbd(void)
de9ce703
DT
1393{
1394 int error;
1395
1396 error = i8042_create_kbd_port();
1397 if (error)
1398 return error;
1399
1400 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1401 "i8042", i8042_platform_device);
1402 if (error)
1403 goto err_free_port;
1404
1405 error = i8042_enable_kbd_port();
1406 if (error)
1407 goto err_free_irq;
1408
386b3849 1409 i8042_kbd_irq_registered = true;
de9ce703
DT
1410 return 0;
1411
1412 err_free_irq:
1413 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1414 err_free_port:
1415 i8042_free_kbd_port();
1416 return error;
1da177e4
LT
1417}
1418
f8113416 1419static int __init i8042_probe(struct platform_device *dev)
1da177e4 1420{
de9ce703 1421 int error;
1da177e4 1422
ec62e1c8
DT
1423 i8042_platform_device = dev;
1424
1ca56e51
DT
1425 if (i8042_reset) {
1426 error = i8042_controller_selftest();
1427 if (error)
1428 return error;
1429 }
1da177e4 1430
de9ce703
DT
1431 error = i8042_controller_init();
1432 if (error)
1433 return error;
1434
d35895db
BP
1435#ifdef CONFIG_X86
1436 if (i8042_dritek)
1437 i8042_dritek_enable();
1438#endif
1439
de9ce703
DT
1440 if (!i8042_noaux) {
1441 error = i8042_setup_aux();
1442 if (error && error != -ENODEV && error != -EBUSY)
1443 goto out_fail;
1444 }
1445
1446 if (!i8042_nokbd) {
1447 error = i8042_setup_kbd();
1448 if (error)
1449 goto out_fail;
1450 }
de9ce703
DT
1451/*
1452 * Ok, everything is ready, let's register all serio ports
1453 */
1454 i8042_register_ports();
1455
1456 return 0;
1457
1458 out_fail:
1459 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1460 i8042_free_irqs();
1729ad1f 1461 i8042_controller_reset(false);
ec62e1c8 1462 i8042_platform_device = NULL;
de9ce703
DT
1463
1464 return error;
1465}
1466
e2619cf7 1467static int i8042_remove(struct platform_device *dev)
de9ce703
DT
1468{
1469 i8042_unregister_ports();
1470 i8042_free_irqs();
1729ad1f 1471 i8042_controller_reset(false);
ec62e1c8 1472 i8042_platform_device = NULL;
1da177e4 1473
87fd6318
DT
1474 return 0;
1475}
1476
1477static struct platform_driver i8042_driver = {
1478 .driver = {
1479 .name = "i8042",
ebd7768d
DT
1480#ifdef CONFIG_PM
1481 .pm = &i8042_pm_ops,
1482#endif
87fd6318 1483 },
1cb0aa88 1484 .remove = i8042_remove,
82dd9eff 1485 .shutdown = i8042_shutdown,
87fd6318
DT
1486};
1487
1488static int __init i8042_init(void)
1489{
ec62e1c8 1490 struct platform_device *pdev;
87fd6318
DT
1491 int err;
1492
1493 dbg_init();
1494
1495 err = i8042_platform_init();
1496 if (err)
1497 return err;
1498
de9ce703
DT
1499 err = i8042_controller_check();
1500 if (err)
1501 goto err_platform_exit;
87fd6318 1502
ec62e1c8
DT
1503 pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
1504 if (IS_ERR(pdev)) {
1505 err = PTR_ERR(pdev);
f8113416 1506 goto err_platform_exit;
87fd6318
DT
1507 }
1508
de9ce703
DT
1509 panic_blink = i8042_panic_blink;
1510
87fd6318
DT
1511 return 0;
1512
87fd6318
DT
1513 err_platform_exit:
1514 i8042_platform_exit();
87fd6318
DT
1515 return err;
1516}
1517
1518static void __exit i8042_exit(void)
1519{
f8113416 1520 platform_device_unregister(i8042_platform_device);
af045b86 1521 platform_driver_unregister(&i8042_driver);
1da177e4
LT
1522 i8042_platform_exit();
1523
1524 panic_blink = NULL;
1525}
1526
1527module_init(i8042_init);
1528module_exit(i8042_exit);
This page took 0.478803 seconds and 5 git commands to generate.