Input: drop redundant includes of moduleparam.h
[safe/jmp/linux-2.6] / drivers / input / serio / i8042.c
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
13 #include <linux/delay.h>
14 #include <linux/module.h>
15 #include <linux/interrupt.h>
16 #include <linux/ioport.h>
17 #include <linux/init.h>
18 #include <linux/serio.h>
19 #include <linux/err.h>
20 #include <linux/rcupdate.h>
21 #include <linux/platform_device.h>
22 #include <linux/i8042.h>
23
24 #include <asm/io.h>
25
26 MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
27 MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
28 MODULE_LICENSE("GPL");
29
30 static unsigned int i8042_nokbd;
31 module_param_named(nokbd, i8042_nokbd, bool, 0);
32 MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
33
34 static unsigned int i8042_noaux;
35 module_param_named(noaux, i8042_noaux, bool, 0);
36 MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
37
38 static unsigned int i8042_nomux;
39 module_param_named(nomux, i8042_nomux, bool, 0);
40 MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing conrtoller is present.");
41
42 static unsigned int i8042_unlock;
43 module_param_named(unlock, i8042_unlock, bool, 0);
44 MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
45
46 static unsigned int i8042_reset;
47 module_param_named(reset, i8042_reset, bool, 0);
48 MODULE_PARM_DESC(reset, "Reset controller during init and cleanup.");
49
50 static unsigned int i8042_direct;
51 module_param_named(direct, i8042_direct, bool, 0);
52 MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
53
54 static unsigned int i8042_dumbkbd;
55 module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
56 MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
57
58 static unsigned int i8042_noloop;
59 module_param_named(noloop, i8042_noloop, bool, 0);
60 MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
61
62 static unsigned int i8042_blink_frequency = 500;
63 module_param_named(panicblink, i8042_blink_frequency, uint, 0600);
64 MODULE_PARM_DESC(panicblink, "Frequency with which keyboard LEDs should blink when kernel panics");
65
66 #ifdef CONFIG_PNP
67 static int i8042_nopnp;
68 module_param_named(nopnp, i8042_nopnp, bool, 0);
69 MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
70 #endif
71
72 #define DEBUG
73 #ifdef DEBUG
74 static int i8042_debug;
75 module_param_named(debug, i8042_debug, bool, 0600);
76 MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
77 #endif
78
79 #include "i8042.h"
80
81 static DEFINE_SPINLOCK(i8042_lock);
82
83 struct i8042_port {
84         struct serio *serio;
85         int irq;
86         unsigned char exists;
87         signed char mux;
88 };
89
90 #define I8042_KBD_PORT_NO       0
91 #define I8042_AUX_PORT_NO       1
92 #define I8042_MUX_PORT_NO       2
93 #define I8042_NUM_PORTS         (I8042_NUM_MUX_PORTS + 2)
94
95 static struct i8042_port i8042_ports[I8042_NUM_PORTS];
96
97 static unsigned char i8042_initial_ctr;
98 static unsigned char i8042_ctr;
99 static unsigned char i8042_mux_present;
100 static unsigned char i8042_kbd_irq_registered;
101 static unsigned char i8042_aux_irq_registered;
102 static unsigned char i8042_suppress_kbd_ack;
103 static struct platform_device *i8042_platform_device;
104
105 static irqreturn_t i8042_interrupt(int irq, void *dev_id);
106
107 /*
108  * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
109  * be ready for reading values from it / writing values to it.
110  * Called always with i8042_lock held.
111  */
112
113 static int i8042_wait_read(void)
114 {
115         int i = 0;
116
117         while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
118                 udelay(50);
119                 i++;
120         }
121         return -(i == I8042_CTL_TIMEOUT);
122 }
123
124 static int i8042_wait_write(void)
125 {
126         int i = 0;
127
128         while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
129                 udelay(50);
130                 i++;
131         }
132         return -(i == I8042_CTL_TIMEOUT);
133 }
134
135 /*
136  * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
137  * of the i8042 down the toilet.
138  */
139
140 static int i8042_flush(void)
141 {
142         unsigned long flags;
143         unsigned char data, str;
144         int i = 0;
145
146         spin_lock_irqsave(&i8042_lock, flags);
147
148         while (((str = i8042_read_status()) & I8042_STR_OBF) && (i < I8042_BUFFER_SIZE)) {
149                 udelay(50);
150                 data = i8042_read_data();
151                 i++;
152                 dbg("%02x <- i8042 (flush, %s)", data,
153                         str & I8042_STR_AUXDATA ? "aux" : "kbd");
154         }
155
156         spin_unlock_irqrestore(&i8042_lock, flags);
157
158         return i;
159 }
160
161 /*
162  * i8042_command() executes a command on the i8042. It also sends the input
163  * parameter(s) of the commands to it, and receives the output value(s). The
164  * parameters are to be stored in the param array, and the output is placed
165  * into the same array. The number of the parameters and output values is
166  * encoded in bits 8-11 of the command number.
167  */
168
169 static int __i8042_command(unsigned char *param, int command)
170 {
171         int i, error;
172
173         if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
174                 return -1;
175
176         error = i8042_wait_write();
177         if (error)
178                 return error;
179
180         dbg("%02x -> i8042 (command)", command & 0xff);
181         i8042_write_command(command & 0xff);
182
183         for (i = 0; i < ((command >> 12) & 0xf); i++) {
184                 error = i8042_wait_write();
185                 if (error)
186                         return error;
187                 dbg("%02x -> i8042 (parameter)", param[i]);
188                 i8042_write_data(param[i]);
189         }
190
191         for (i = 0; i < ((command >> 8) & 0xf); i++) {
192                 error = i8042_wait_read();
193                 if (error) {
194                         dbg("     -- i8042 (timeout)");
195                         return error;
196                 }
197
198                 if (command == I8042_CMD_AUX_LOOP &&
199                     !(i8042_read_status() & I8042_STR_AUXDATA)) {
200                         dbg("     -- i8042 (auxerr)");
201                         return -1;
202                 }
203
204                 param[i] = i8042_read_data();
205                 dbg("%02x <- i8042 (return)", param[i]);
206         }
207
208         return 0;
209 }
210
211 int i8042_command(unsigned char *param, int command)
212 {
213         unsigned long flags;
214         int retval;
215
216         spin_lock_irqsave(&i8042_lock, flags);
217         retval = __i8042_command(param, command);
218         spin_unlock_irqrestore(&i8042_lock, flags);
219
220         return retval;
221 }
222 EXPORT_SYMBOL(i8042_command);
223
224 /*
225  * i8042_kbd_write() sends a byte out through the keyboard interface.
226  */
227
228 static int i8042_kbd_write(struct serio *port, unsigned char c)
229 {
230         unsigned long flags;
231         int retval = 0;
232
233         spin_lock_irqsave(&i8042_lock, flags);
234
235         if (!(retval = i8042_wait_write())) {
236                 dbg("%02x -> i8042 (kbd-data)", c);
237                 i8042_write_data(c);
238         }
239
240         spin_unlock_irqrestore(&i8042_lock, flags);
241
242         return retval;
243 }
244
245 /*
246  * i8042_aux_write() sends a byte out through the aux interface.
247  */
248
249 static int i8042_aux_write(struct serio *serio, unsigned char c)
250 {
251         struct i8042_port *port = serio->port_data;
252
253         return i8042_command(&c, port->mux == -1 ?
254                                         I8042_CMD_AUX_SEND :
255                                         I8042_CMD_MUX_SEND + port->mux);
256 }
257
258 /*
259  * i8042_start() is called by serio core when port is about to finish
260  * registering. It will mark port as existing so i8042_interrupt can
261  * start sending data through it.
262  */
263 static int i8042_start(struct serio *serio)
264 {
265         struct i8042_port *port = serio->port_data;
266
267         port->exists = 1;
268         mb();
269         return 0;
270 }
271
272 /*
273  * i8042_stop() marks serio port as non-existing so i8042_interrupt
274  * will not try to send data to the port that is about to go away.
275  * The function is called by serio core as part of unregister procedure.
276  */
277 static void i8042_stop(struct serio *serio)
278 {
279         struct i8042_port *port = serio->port_data;
280
281         port->exists = 0;
282
283         /*
284          * We synchronize with both AUX and KBD IRQs because there is
285          * a (very unlikely) chance that AUX IRQ is raised for KBD port
286          * and vice versa.
287          */
288         synchronize_irq(I8042_AUX_IRQ);
289         synchronize_irq(I8042_KBD_IRQ);
290         port->serio = NULL;
291 }
292
293 /*
294  * i8042_interrupt() is the most important function in this driver -
295  * it handles the interrupts from the i8042, and sends incoming bytes
296  * to the upper layers.
297  */
298
299 static irqreturn_t i8042_interrupt(int irq, void *dev_id)
300 {
301         struct i8042_port *port;
302         unsigned long flags;
303         unsigned char str, data;
304         unsigned int dfl;
305         unsigned int port_no;
306         int ret = 1;
307
308         spin_lock_irqsave(&i8042_lock, flags);
309         str = i8042_read_status();
310         if (unlikely(~str & I8042_STR_OBF)) {
311                 spin_unlock_irqrestore(&i8042_lock, flags);
312                 if (irq) dbg("Interrupt %d, without any data", irq);
313                 ret = 0;
314                 goto out;
315         }
316         data = i8042_read_data();
317         spin_unlock_irqrestore(&i8042_lock, flags);
318
319         if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
320                 static unsigned long last_transmit;
321                 static unsigned char last_str;
322
323                 dfl = 0;
324                 if (str & I8042_STR_MUXERR) {
325                         dbg("MUX error, status is %02x, data is %02x", str, data);
326 /*
327  * When MUXERR condition is signalled the data register can only contain
328  * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
329  * it is not always the case. Some KBCs also report 0xfc when there is
330  * nothing connected to the port while others sometimes get confused which
331  * port the data came from and signal error leaving the data intact. They
332  * _do not_ revert to legacy mode (actually I've never seen KBC reverting
333  * to legacy mode yet, when we see one we'll add proper handling).
334  * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
335  * rest assume that the data came from the same serio last byte
336  * was transmitted (if transmission happened not too long ago).
337  */
338
339                         switch (data) {
340                                 default:
341                                         if (time_before(jiffies, last_transmit + HZ/10)) {
342                                                 str = last_str;
343                                                 break;
344                                         }
345                                         /* fall through - report timeout */
346                                 case 0xfc:
347                                 case 0xfd:
348                                 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
349                                 case 0xff: dfl = SERIO_PARITY;  data = 0xfe; break;
350                         }
351                 }
352
353                 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
354                 last_str = str;
355                 last_transmit = jiffies;
356         } else {
357
358                 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
359                       ((str & I8042_STR_TIMEOUT) ? SERIO_TIMEOUT : 0);
360
361                 port_no = (str & I8042_STR_AUXDATA) ?
362                                 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
363         }
364
365         port = &i8042_ports[port_no];
366
367         dbg("%02x <- i8042 (interrupt, %d, %d%s%s)",
368             data, port_no, irq,
369             dfl & SERIO_PARITY ? ", bad parity" : "",
370             dfl & SERIO_TIMEOUT ? ", timeout" : "");
371
372         if (unlikely(i8042_suppress_kbd_ack))
373                 if (port_no == I8042_KBD_PORT_NO &&
374                     (data == 0xfa || data == 0xfe)) {
375                         i8042_suppress_kbd_ack--;
376                         goto out;
377                 }
378
379         if (likely(port->exists))
380                 serio_interrupt(port->serio, data, dfl);
381
382  out:
383         return IRQ_RETVAL(ret);
384 }
385
386 /*
387  * i8042_enable_kbd_port enables keybaord port on chip
388  */
389
390 static int i8042_enable_kbd_port(void)
391 {
392         i8042_ctr &= ~I8042_CTR_KBDDIS;
393         i8042_ctr |= I8042_CTR_KBDINT;
394
395         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
396                 i8042_ctr &= ~I8042_CTR_KBDINT;
397                 i8042_ctr |= I8042_CTR_KBDDIS;
398                 printk(KERN_ERR "i8042.c: Failed to enable KBD port.\n");
399                 return -EIO;
400         }
401
402         return 0;
403 }
404
405 /*
406  * i8042_enable_aux_port enables AUX (mouse) port on chip
407  */
408
409 static int i8042_enable_aux_port(void)
410 {
411         i8042_ctr &= ~I8042_CTR_AUXDIS;
412         i8042_ctr |= I8042_CTR_AUXINT;
413
414         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
415                 i8042_ctr &= ~I8042_CTR_AUXINT;
416                 i8042_ctr |= I8042_CTR_AUXDIS;
417                 printk(KERN_ERR "i8042.c: Failed to enable AUX port.\n");
418                 return -EIO;
419         }
420
421         return 0;
422 }
423
424 /*
425  * i8042_enable_mux_ports enables 4 individual AUX ports after
426  * the controller has been switched into Multiplexed mode
427  */
428
429 static int i8042_enable_mux_ports(void)
430 {
431         unsigned char param;
432         int i;
433
434         for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
435                 i8042_command(&param, I8042_CMD_MUX_PFX + i);
436                 i8042_command(&param, I8042_CMD_AUX_ENABLE);
437         }
438
439         return i8042_enable_aux_port();
440 }
441
442 /*
443  * i8042_set_mux_mode checks whether the controller has an active
444  * multiplexor and puts the chip into Multiplexed (1) or Legacy (0) mode.
445  */
446
447 static int i8042_set_mux_mode(unsigned int mode, unsigned char *mux_version)
448 {
449
450         unsigned char param;
451 /*
452  * Get rid of bytes in the queue.
453  */
454
455         i8042_flush();
456
457 /*
458  * Internal loopback test - send three bytes, they should come back from the
459  * mouse interface, the last should be version.
460  */
461
462         param = 0xf0;
463         if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != 0xf0)
464                 return -1;
465         param = mode ? 0x56 : 0xf6;
466         if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != (mode ? 0x56 : 0xf6))
467                 return -1;
468         param = mode ? 0xa4 : 0xa5;
469         if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == (mode ? 0xa4 : 0xa5))
470                 return -1;
471
472         if (mux_version)
473                 *mux_version = param;
474
475         return 0;
476 }
477
478 /*
479  * i8042_check_mux() checks whether the controller supports the PS/2 Active
480  * Multiplexing specification by Synaptics, Phoenix, Insyde and
481  * LCS/Telegraphics.
482  */
483
484 static int __devinit i8042_check_mux(void)
485 {
486         unsigned char mux_version;
487
488         if (i8042_set_mux_mode(1, &mux_version))
489                 return -1;
490
491 /*
492  * Workaround for interference with USB Legacy emulation
493  * that causes a v10.12 MUX to be found.
494  */
495         if (mux_version == 0xAC)
496                 return -1;
497
498         printk(KERN_INFO "i8042.c: Detected active multiplexing controller, rev %d.%d.\n",
499                 (mux_version >> 4) & 0xf, mux_version & 0xf);
500
501 /*
502  * Disable all muxed ports by disabling AUX.
503  */
504         i8042_ctr |= I8042_CTR_AUXDIS;
505         i8042_ctr &= ~I8042_CTR_AUXINT;
506
507         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
508                 printk(KERN_ERR "i8042.c: Failed to disable AUX port, can't use MUX.\n");
509                 return -EIO;
510         }
511
512         i8042_mux_present = 1;
513
514         return 0;
515 }
516
517 /*
518  * The following is used to test AUX IRQ delivery.
519  */
520 static struct completion i8042_aux_irq_delivered __devinitdata;
521 static int i8042_irq_being_tested __devinitdata;
522
523 static irqreturn_t __devinit i8042_aux_test_irq(int irq, void *dev_id)
524 {
525         unsigned long flags;
526         unsigned char str, data;
527         int ret = 0;
528
529         spin_lock_irqsave(&i8042_lock, flags);
530         str = i8042_read_status();
531         if (str & I8042_STR_OBF) {
532                 data = i8042_read_data();
533                 if (i8042_irq_being_tested &&
534                     data == 0xa5 && (str & I8042_STR_AUXDATA))
535                         complete(&i8042_aux_irq_delivered);
536                 ret = 1;
537         }
538         spin_unlock_irqrestore(&i8042_lock, flags);
539
540         return IRQ_RETVAL(ret);
541 }
542
543 /*
544  * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
545  * verifies success by readinng CTR. Used when testing for presence of AUX
546  * port.
547  */
548 static int __devinit i8042_toggle_aux(int on)
549 {
550         unsigned char param;
551         int i;
552
553         if (i8042_command(&param,
554                         on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
555                 return -1;
556
557         /* some chips need some time to set the I8042_CTR_AUXDIS bit */
558         for (i = 0; i < 100; i++) {
559                 udelay(50);
560
561                 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
562                         return -1;
563
564                 if (!(param & I8042_CTR_AUXDIS) == on)
565                         return 0;
566         }
567
568         return -1;
569 }
570
571 /*
572  * i8042_check_aux() applies as much paranoia as it can at detecting
573  * the presence of an AUX interface.
574  */
575
576 static int __devinit i8042_check_aux(void)
577 {
578         int retval = -1;
579         int irq_registered = 0;
580         int aux_loop_broken = 0;
581         unsigned long flags;
582         unsigned char param;
583
584 /*
585  * Get rid of bytes in the queue.
586  */
587
588         i8042_flush();
589
590 /*
591  * Internal loopback test - filters out AT-type i8042's. Unfortunately
592  * SiS screwed up and their 5597 doesn't support the LOOP command even
593  * though it has an AUX port.
594  */
595
596         param = 0x5a;
597         retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
598         if (retval || param != 0x5a) {
599
600 /*
601  * External connection test - filters out AT-soldered PS/2 i8042's
602  * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
603  * 0xfa - no error on some notebooks which ignore the spec
604  * Because it's common for chipsets to return error on perfectly functioning
605  * AUX ports, we test for this only when the LOOP command failed.
606  */
607
608                 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
609                     (param && param != 0xfa && param != 0xff))
610                         return -1;
611
612 /*
613  * If AUX_LOOP completed without error but returned unexpected data
614  * mark it as broken
615  */
616                 if (!retval)
617                         aux_loop_broken = 1;
618         }
619
620 /*
621  * Bit assignment test - filters out PS/2 i8042's in AT mode
622  */
623
624         if (i8042_toggle_aux(0)) {
625                 printk(KERN_WARNING "Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
626                 printk(KERN_WARNING "If AUX port is really absent please use the 'i8042.noaux' option.\n");
627         }
628
629         if (i8042_toggle_aux(1))
630                 return -1;
631
632 /*
633  * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
634  * used it for a PCI card or somethig else.
635  */
636
637         if (i8042_noloop || aux_loop_broken) {
638 /*
639  * Without LOOP command we can't test AUX IRQ delivery. Assume the port
640  * is working and hope we are right.
641  */
642                 retval = 0;
643                 goto out;
644         }
645
646         if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
647                         "i8042", i8042_platform_device))
648                 goto out;
649
650         irq_registered = 1;
651
652         if (i8042_enable_aux_port())
653                 goto out;
654
655         spin_lock_irqsave(&i8042_lock, flags);
656
657         init_completion(&i8042_aux_irq_delivered);
658         i8042_irq_being_tested = 1;
659
660         param = 0xa5;
661         retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
662
663         spin_unlock_irqrestore(&i8042_lock, flags);
664
665         if (retval)
666                 goto out;
667
668         if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
669                                         msecs_to_jiffies(250)) == 0) {
670 /*
671  * AUX IRQ was never delivered so we need to flush the controller to
672  * get rid of the byte we put there; otherwise keyboard may not work.
673  */
674                 i8042_flush();
675                 retval = -1;
676         }
677
678  out:
679
680 /*
681  * Disable the interface.
682  */
683
684         i8042_ctr |= I8042_CTR_AUXDIS;
685         i8042_ctr &= ~I8042_CTR_AUXINT;
686
687         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
688                 retval = -1;
689
690         if (irq_registered)
691                 free_irq(I8042_AUX_IRQ, i8042_platform_device);
692
693         return retval;
694 }
695
696 static int i8042_controller_check(void)
697 {
698         if (i8042_flush() == I8042_BUFFER_SIZE) {
699                 printk(KERN_ERR "i8042.c: No controller found.\n");
700                 return -ENODEV;
701         }
702
703         return 0;
704 }
705
706 static int i8042_controller_selftest(void)
707 {
708         unsigned char param;
709
710         if (!i8042_reset)
711                 return 0;
712
713         if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
714                 printk(KERN_ERR "i8042.c: i8042 controller self test timeout.\n");
715                 return -ENODEV;
716         }
717
718         if (param != I8042_RET_CTL_TEST) {
719                 printk(KERN_ERR "i8042.c: i8042 controller selftest failed. (%#x != %#x)\n",
720                          param, I8042_RET_CTL_TEST);
721                 return -EIO;
722         }
723
724         return 0;
725 }
726
727 /*
728  * i8042_controller init initializes the i8042 controller, and,
729  * most importantly, sets it into non-xlated mode if that's
730  * desired.
731  */
732
733 static int i8042_controller_init(void)
734 {
735         unsigned long flags;
736
737 /*
738  * Save the CTR for restoral on unload / reboot.
739  */
740
741         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_RCTR)) {
742                 printk(KERN_ERR "i8042.c: Can't read CTR while initializing i8042.\n");
743                 return -EIO;
744         }
745
746         i8042_initial_ctr = i8042_ctr;
747
748 /*
749  * Disable the keyboard interface and interrupt.
750  */
751
752         i8042_ctr |= I8042_CTR_KBDDIS;
753         i8042_ctr &= ~I8042_CTR_KBDINT;
754
755 /*
756  * Handle keylock.
757  */
758
759         spin_lock_irqsave(&i8042_lock, flags);
760         if (~i8042_read_status() & I8042_STR_KEYLOCK) {
761                 if (i8042_unlock)
762                         i8042_ctr |= I8042_CTR_IGNKEYLOCK;
763                 else
764                         printk(KERN_WARNING "i8042.c: Warning: Keylock active.\n");
765         }
766         spin_unlock_irqrestore(&i8042_lock, flags);
767
768 /*
769  * If the chip is configured into nontranslated mode by the BIOS, don't
770  * bother enabling translating and be happy.
771  */
772
773         if (~i8042_ctr & I8042_CTR_XLATE)
774                 i8042_direct = 1;
775
776 /*
777  * Set nontranslated mode for the kbd interface if requested by an option.
778  * After this the kbd interface becomes a simple serial in/out, like the aux
779  * interface is. We don't do this by default, since it can confuse notebook
780  * BIOSes.
781  */
782
783         if (i8042_direct)
784                 i8042_ctr &= ~I8042_CTR_XLATE;
785
786 /*
787  * Write CTR back.
788  */
789
790         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
791                 printk(KERN_ERR "i8042.c: Can't write CTR while initializing i8042.\n");
792                 return -EIO;
793         }
794
795         return 0;
796 }
797
798
799 /*
800  * Reset the controller and reset CRT to the original value set by BIOS.
801  */
802
803 static void i8042_controller_reset(void)
804 {
805         i8042_flush();
806
807 /*
808  * Disable both KBD and AUX interfaces so they don't get in the way
809  */
810
811         i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
812         i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
813
814 /*
815  * Disable MUX mode if present.
816  */
817
818         if (i8042_mux_present)
819                 i8042_set_mux_mode(0, NULL);
820
821 /*
822  * Reset the controller if requested.
823  */
824
825         i8042_controller_selftest();
826
827 /*
828  * Restore the original control register setting.
829  */
830
831         if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
832                 printk(KERN_WARNING "i8042.c: Can't restore CTR.\n");
833 }
834
835
836 /*
837  * i8042_panic_blink() will flash the keyboard LEDs and is called when
838  * kernel panics. Flashing LEDs is useful for users running X who may
839  * not see the console and will help distingushing panics from "real"
840  * lockups.
841  *
842  * Note that DELAY has a limit of 10ms so we will not get stuck here
843  * waiting for KBC to free up even if KBD interrupt is off
844  */
845
846 #define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
847
848 static long i8042_panic_blink(long count)
849 {
850         long delay = 0;
851         static long last_blink;
852         static char led;
853
854         /*
855          * We expect frequency to be about 1/2s. KDB uses about 1s.
856          * Make sure they are different.
857          */
858         if (!i8042_blink_frequency)
859                 return 0;
860         if (count - last_blink < i8042_blink_frequency)
861                 return 0;
862
863         led ^= 0x01 | 0x04;
864         while (i8042_read_status() & I8042_STR_IBF)
865                 DELAY;
866         dbg("%02x -> i8042 (panic blink)", 0xed);
867         i8042_suppress_kbd_ack = 2;
868         i8042_write_data(0xed); /* set leds */
869         DELAY;
870         while (i8042_read_status() & I8042_STR_IBF)
871                 DELAY;
872         DELAY;
873         dbg("%02x -> i8042 (panic blink)", led);
874         i8042_write_data(led);
875         DELAY;
876         last_blink = count;
877         return delay;
878 }
879
880 #undef DELAY
881
882 #ifdef CONFIG_PM
883 /*
884  * Here we try to restore the original BIOS settings. We only want to
885  * do that once, when we really suspend, not when we taking memory
886  * snapshot for swsusp (in this case we'll perform required cleanup
887  * as part of shutdown process).
888  */
889
890 static int i8042_suspend(struct platform_device *dev, pm_message_t state)
891 {
892         if (dev->dev.power.power_state.event != state.event) {
893                 if (state.event == PM_EVENT_SUSPEND)
894                         i8042_controller_reset();
895
896                 dev->dev.power.power_state = state;
897         }
898
899         return 0;
900 }
901
902
903 /*
904  * Here we try to reset everything back to a state in which suspended
905  */
906
907 static int i8042_resume(struct platform_device *dev)
908 {
909         int error;
910
911 /*
912  * Do not bother with restoring state if we haven't suspened yet
913  */
914         if (dev->dev.power.power_state.event == PM_EVENT_ON)
915                 return 0;
916
917         error = i8042_controller_check();
918         if (error)
919                 return error;
920
921         error = i8042_controller_selftest();
922         if (error)
923                 return error;
924
925 /*
926  * Restore original CTR value and disable all ports
927  */
928
929         i8042_ctr = i8042_initial_ctr;
930         if (i8042_direct)
931                 i8042_ctr &= ~I8042_CTR_XLATE;
932         i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
933         i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
934         if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
935                 printk(KERN_ERR "i8042: Can't write CTR to resume\n");
936                 return -EIO;
937         }
938
939         if (i8042_mux_present) {
940                 if (i8042_set_mux_mode(1, NULL) || i8042_enable_mux_ports())
941                         printk(KERN_WARNING
942                                 "i8042: failed to resume active multiplexor, "
943                                 "mouse won't work.\n");
944         } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
945                 i8042_enable_aux_port();
946
947         if (i8042_ports[I8042_KBD_PORT_NO].serio)
948                 i8042_enable_kbd_port();
949
950         i8042_interrupt(0, NULL);
951
952         dev->dev.power.power_state = PMSG_ON;
953
954         return 0;
955 }
956 #endif /* CONFIG_PM */
957
958 /*
959  * We need to reset the 8042 back to original mode on system shutdown,
960  * because otherwise BIOSes will be confused.
961  */
962
963 static void i8042_shutdown(struct platform_device *dev)
964 {
965         i8042_controller_reset();
966 }
967
968 static int __devinit i8042_create_kbd_port(void)
969 {
970         struct serio *serio;
971         struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
972
973         serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
974         if (!serio)
975                 return -ENOMEM;
976
977         serio->id.type          = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
978         serio->write            = i8042_dumbkbd ? NULL : i8042_kbd_write;
979         serio->start            = i8042_start;
980         serio->stop             = i8042_stop;
981         serio->port_data        = port;
982         serio->dev.parent       = &i8042_platform_device->dev;
983         strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
984         strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
985
986         port->serio = serio;
987         port->irq = I8042_KBD_IRQ;
988
989         return 0;
990 }
991
992 static int __devinit i8042_create_aux_port(int idx)
993 {
994         struct serio *serio;
995         int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
996         struct i8042_port *port = &i8042_ports[port_no];
997
998         serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
999         if (!serio)
1000                 return -ENOMEM;
1001
1002         serio->id.type          = SERIO_8042;
1003         serio->write            = i8042_aux_write;
1004         serio->start            = i8042_start;
1005         serio->stop             = i8042_stop;
1006         serio->port_data        = port;
1007         serio->dev.parent       = &i8042_platform_device->dev;
1008         if (idx < 0) {
1009                 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1010                 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
1011         } else {
1012                 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1013                 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
1014         }
1015
1016         port->serio = serio;
1017         port->mux = idx;
1018         port->irq = I8042_AUX_IRQ;
1019
1020         return 0;
1021 }
1022
1023 static void __devinit i8042_free_kbd_port(void)
1024 {
1025         kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1026         i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1027 }
1028
1029 static void __devinit i8042_free_aux_ports(void)
1030 {
1031         int i;
1032
1033         for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1034                 kfree(i8042_ports[i].serio);
1035                 i8042_ports[i].serio = NULL;
1036         }
1037 }
1038
1039 static void __devinit i8042_register_ports(void)
1040 {
1041         int i;
1042
1043         for (i = 0; i < I8042_NUM_PORTS; i++) {
1044                 if (i8042_ports[i].serio) {
1045                         printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1046                                 i8042_ports[i].serio->name,
1047                                 (unsigned long) I8042_DATA_REG,
1048                                 (unsigned long) I8042_COMMAND_REG,
1049                                 i8042_ports[i].irq);
1050                         serio_register_port(i8042_ports[i].serio);
1051                 }
1052         }
1053 }
1054
1055 static void __devexit i8042_unregister_ports(void)
1056 {
1057         int i;
1058
1059         for (i = 0; i < I8042_NUM_PORTS; i++) {
1060                 if (i8042_ports[i].serio) {
1061                         serio_unregister_port(i8042_ports[i].serio);
1062                         i8042_ports[i].serio = NULL;
1063                 }
1064         }
1065 }
1066
1067 static void i8042_free_irqs(void)
1068 {
1069         if (i8042_aux_irq_registered)
1070                 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1071         if (i8042_kbd_irq_registered)
1072                 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1073
1074         i8042_aux_irq_registered = i8042_kbd_irq_registered = 0;
1075 }
1076
1077 static int __devinit i8042_setup_aux(void)
1078 {
1079         int (*aux_enable)(void);
1080         int error;
1081         int i;
1082
1083         if (i8042_check_aux())
1084                 return -ENODEV;
1085
1086         if (i8042_nomux || i8042_check_mux()) {
1087                 error = i8042_create_aux_port(-1);
1088                 if (error)
1089                         goto err_free_ports;
1090                 aux_enable = i8042_enable_aux_port;
1091         } else {
1092                 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1093                         error = i8042_create_aux_port(i);
1094                         if (error)
1095                                 goto err_free_ports;
1096                 }
1097                 aux_enable = i8042_enable_mux_ports;
1098         }
1099
1100         error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1101                             "i8042", i8042_platform_device);
1102         if (error)
1103                 goto err_free_ports;
1104
1105         if (aux_enable())
1106                 goto err_free_irq;
1107
1108         i8042_aux_irq_registered = 1;
1109         return 0;
1110
1111  err_free_irq:
1112         free_irq(I8042_AUX_IRQ, i8042_platform_device);
1113  err_free_ports:
1114         i8042_free_aux_ports();
1115         return error;
1116 }
1117
1118 static int __devinit i8042_setup_kbd(void)
1119 {
1120         int error;
1121
1122         error = i8042_create_kbd_port();
1123         if (error)
1124                 return error;
1125
1126         error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1127                             "i8042", i8042_platform_device);
1128         if (error)
1129                 goto err_free_port;
1130
1131         error = i8042_enable_kbd_port();
1132         if (error)
1133                 goto err_free_irq;
1134
1135         i8042_kbd_irq_registered = 1;
1136         return 0;
1137
1138  err_free_irq:
1139         free_irq(I8042_KBD_IRQ, i8042_platform_device);
1140  err_free_port:
1141         i8042_free_kbd_port();
1142         return error;
1143 }
1144
1145 static int __devinit i8042_probe(struct platform_device *dev)
1146 {
1147         int error;
1148
1149         error = i8042_controller_selftest();
1150         if (error)
1151                 return error;
1152
1153         error = i8042_controller_init();
1154         if (error)
1155                 return error;
1156
1157         if (!i8042_noaux) {
1158                 error = i8042_setup_aux();
1159                 if (error && error != -ENODEV && error != -EBUSY)
1160                         goto out_fail;
1161         }
1162
1163         if (!i8042_nokbd) {
1164                 error = i8042_setup_kbd();
1165                 if (error)
1166                         goto out_fail;
1167         }
1168
1169 /*
1170  * Ok, everything is ready, let's register all serio ports
1171  */
1172         i8042_register_ports();
1173
1174         return 0;
1175
1176  out_fail:
1177         i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1178         i8042_free_irqs();
1179         i8042_controller_reset();
1180
1181         return error;
1182 }
1183
1184 static int __devexit i8042_remove(struct platform_device *dev)
1185 {
1186         i8042_unregister_ports();
1187         i8042_free_irqs();
1188         i8042_controller_reset();
1189
1190         return 0;
1191 }
1192
1193 static struct platform_driver i8042_driver = {
1194         .driver         = {
1195                 .name   = "i8042",
1196                 .owner  = THIS_MODULE,
1197         },
1198         .probe          = i8042_probe,
1199         .remove         = __devexit_p(i8042_remove),
1200         .shutdown       = i8042_shutdown,
1201 #ifdef CONFIG_PM
1202         .suspend        = i8042_suspend,
1203         .resume         = i8042_resume,
1204 #endif
1205 };
1206
1207 static int __init i8042_init(void)
1208 {
1209         int err;
1210
1211         dbg_init();
1212
1213         err = i8042_platform_init();
1214         if (err)
1215                 return err;
1216
1217         err = i8042_controller_check();
1218         if (err)
1219                 goto err_platform_exit;
1220
1221         err = platform_driver_register(&i8042_driver);
1222         if (err)
1223                 goto err_platform_exit;
1224
1225         i8042_platform_device = platform_device_alloc("i8042", -1);
1226         if (!i8042_platform_device) {
1227                 err = -ENOMEM;
1228                 goto err_unregister_driver;
1229         }
1230
1231         err = platform_device_add(i8042_platform_device);
1232         if (err)
1233                 goto err_free_device;
1234
1235         panic_blink = i8042_panic_blink;
1236
1237         return 0;
1238
1239  err_free_device:
1240         platform_device_put(i8042_platform_device);
1241  err_unregister_driver:
1242         platform_driver_unregister(&i8042_driver);
1243  err_platform_exit:
1244         i8042_platform_exit();
1245
1246         return err;
1247 }
1248
1249 static void __exit i8042_exit(void)
1250 {
1251         platform_device_unregister(i8042_platform_device);
1252         platform_driver_unregister(&i8042_driver);
1253         i8042_platform_exit();
1254
1255         panic_blink = NULL;
1256 }
1257
1258 module_init(i8042_init);
1259 module_exit(i8042_exit);