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