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