blob: 20ff2bed3917a7d9e35d009ec539e396ec8d7607 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * i8042 keyboard and mouse controller driver for Linux
4 *
5 * Copyright (c) 1999-2004 Vojtech Pavlik
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Joe Perches4eb3c302010-11-29 23:33:07 -08009#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
Dmitry Torokhov7e044e02009-05-09 16:08:05 -070011#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/delay.h>
13#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/interrupt.h>
15#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/serio.h>
18#include <linux/err.h>
19#include <linux/rcupdate.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010020#include <linux/platform_device.h>
Márton Németh553a05b2007-10-22 00:56:52 -040021#include <linux/i8042.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +020023#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/io.h>
26
27MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
28MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
29MODULE_LICENSE("GPL");
30
Dmitry Torokhov386b3842009-09-09 19:08:16 -070031static bool i8042_nokbd;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -050032module_param_named(nokbd, i8042_nokbd, bool, 0);
33MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
34
Dmitry Torokhov386b3842009-09-09 19:08:16 -070035static bool i8042_noaux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036module_param_named(noaux, i8042_noaux, bool, 0);
37MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
38
Dmitry Torokhove55a3362014-10-31 09:35:53 -070039static bool i8042_nomux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040module_param_named(nomux, i8042_nomux, bool, 0);
Dominik Brodowski2c860a12010-04-05 22:29:09 -070041MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Dmitry Torokhov386b3842009-09-09 19:08:16 -070043static bool i8042_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044module_param_named(unlock, i8042_unlock, bool, 0);
45MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
46
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -070047enum i8042_controller_reset_mode {
48 I8042_RESET_NEVER,
49 I8042_RESET_ALWAYS,
50 I8042_RESET_ON_S2RAM,
51#define I8042_RESET_DEFAULT I8042_RESET_ON_S2RAM
52};
53static enum i8042_controller_reset_mode i8042_reset = I8042_RESET_DEFAULT;
54static int i8042_set_reset(const char *val, const struct kernel_param *kp)
55{
56 enum i8042_controller_reset_mode *arg = kp->arg;
57 int error;
58 bool reset;
59
60 if (val) {
61 error = kstrtobool(val, &reset);
62 if (error)
63 return error;
64 } else {
65 reset = true;
66 }
67
68 *arg = reset ? I8042_RESET_ALWAYS : I8042_RESET_NEVER;
69 return 0;
70}
71
72static const struct kernel_param_ops param_ops_reset_param = {
73 .flags = KERNEL_PARAM_OPS_FL_NOARG,
74 .set = i8042_set_reset,
75};
76#define param_check_reset_param(name, p) \
77 __param_check(name, p, enum i8042_controller_reset_mode)
78module_param_named(reset, i8042_reset, reset_param, 0);
79MODULE_PARM_DESC(reset, "Reset controller on resume, cleanup or both");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Dmitry Torokhov386b3842009-09-09 19:08:16 -070081static bool i8042_direct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082module_param_named(direct, i8042_direct, bool, 0);
83MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
84
Dmitry Torokhov386b3842009-09-09 19:08:16 -070085static bool i8042_dumbkbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
87MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
88
Dmitry Torokhov386b3842009-09-09 19:08:16 -070089static bool i8042_noloop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090module_param_named(noloop, i8042_noloop, bool, 0);
91MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
92
Jiri Kosinaf8313ef2011-01-08 01:37:26 -080093static bool i8042_notimeout;
94module_param_named(notimeout, i8042_notimeout, bool, 0);
95MODULE_PARM_DESC(notimeout, "Ignore timeouts signalled by i8042");
96
Srihari Vijayaraghavan148e9a72015-01-07 16:25:53 -080097static bool i8042_kbdreset;
98module_param_named(kbdreset, i8042_kbdreset, bool, 0);
99MODULE_PARM_DESC(kbdreset, "Reset device connected to KBD port");
100
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500101#ifdef CONFIG_X86
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700102static bool i8042_dritek;
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500103module_param_named(dritek, i8042_dritek, bool, 0);
104MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
105#endif
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#ifdef CONFIG_PNP
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700108static bool i8042_nopnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109module_param_named(nopnp, i8042_nopnp, bool, 0);
110MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
111#endif
112
113#define DEBUG
114#ifdef DEBUG
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700115static bool i8042_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116module_param_named(debug, i8042_debug, bool, 0600);
117MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700118
119static bool i8042_unmask_kbd_data;
120module_param_named(unmask_kbd_data, i8042_unmask_kbd_data, bool, 0600);
121MODULE_PARM_DESC(unmask_kbd_data, "Unconditional enable (may reveal sensitive data) of normally sanitize-filtered kbd data traffic debug log [pre-condition: i8042.debug=1 enabled]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif
123
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700124static bool i8042_bypass_aux_irq_test;
Hans de Goedea7c58682014-04-19 20:47:35 -0700125static char i8042_kbd_firmware_id[128];
126static char i8042_aux_firmware_id[128];
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#include "i8042.h"
129
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700130/*
131 * i8042_lock protects serialization between i8042_command and
132 * the interrupt handler.
133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static DEFINE_SPINLOCK(i8042_lock);
135
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700136/*
137 * Writers to AUX and KBD ports as well as users issuing i8042_command
138 * directly should acquire i8042_mutex (by means of calling
139 * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
140 * they do not disturb each other (unfortunately in many i8042
141 * implementations write to one of the ports will immediately abort
142 * command that is being processed by another port).
143 */
144static DEFINE_MUTEX(i8042_mutex);
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146struct i8042_port {
147 struct serio *serio;
148 int irq;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700149 bool exists;
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700150 bool driver_bound;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 signed char mux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154#define I8042_KBD_PORT_NO 0
155#define I8042_AUX_PORT_NO 1
156#define I8042_MUX_PORT_NO 2
157#define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400158
159static struct i8042_port i8042_ports[I8042_NUM_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161static unsigned char i8042_initial_ctr;
162static unsigned char i8042_ctr;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700163static bool i8042_mux_present;
164static bool i8042_kbd_irq_registered;
165static bool i8042_aux_irq_registered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400166static unsigned char i8042_suppress_kbd_ack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static struct platform_device *i8042_platform_device;
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700168static struct notifier_block i8042_kbd_bind_notifier_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
David Howells7d12e782006-10-05 14:55:46 +0100170static irqreturn_t i8042_interrupt(int irq, void *dev_id);
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800171static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
172 struct serio *serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700174void i8042_lock_chip(void)
175{
176 mutex_lock(&i8042_mutex);
177}
178EXPORT_SYMBOL(i8042_lock_chip);
179
180void i8042_unlock_chip(void)
181{
182 mutex_unlock(&i8042_mutex);
183}
184EXPORT_SYMBOL(i8042_unlock_chip);
185
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800186int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
187 struct serio *serio))
188{
189 unsigned long flags;
190 int ret = 0;
191
192 spin_lock_irqsave(&i8042_lock, flags);
193
194 if (i8042_platform_filter) {
195 ret = -EBUSY;
196 goto out;
197 }
198
199 i8042_platform_filter = filter;
200
201out:
202 spin_unlock_irqrestore(&i8042_lock, flags);
203 return ret;
204}
205EXPORT_SYMBOL(i8042_install_filter);
206
207int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
208 struct serio *port))
209{
210 unsigned long flags;
211 int ret = 0;
212
213 spin_lock_irqsave(&i8042_lock, flags);
214
215 if (i8042_platform_filter != filter) {
216 ret = -EINVAL;
217 goto out;
218 }
219
220 i8042_platform_filter = NULL;
221
222out:
223 spin_unlock_irqrestore(&i8042_lock, flags);
224 return ret;
225}
226EXPORT_SYMBOL(i8042_remove_filter);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*
229 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
230 * be ready for reading values from it / writing values to it.
231 * Called always with i8042_lock held.
232 */
233
234static int i8042_wait_read(void)
235{
236 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
239 udelay(50);
240 i++;
241 }
242 return -(i == I8042_CTL_TIMEOUT);
243}
244
245static int i8042_wait_write(void)
246{
247 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
250 udelay(50);
251 i++;
252 }
253 return -(i == I8042_CTL_TIMEOUT);
254}
255
256/*
257 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
258 * of the i8042 down the toilet.
259 */
260
261static int i8042_flush(void)
262{
263 unsigned long flags;
264 unsigned char data, str;
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700265 int count = 0;
266 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 spin_lock_irqsave(&i8042_lock, flags);
269
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700270 while ((str = i8042_read_status()) & I8042_STR_OBF) {
271 if (count++ < I8042_BUFFER_SIZE) {
272 udelay(50);
273 data = i8042_read_data();
274 dbg("%02x <- i8042 (flush, %s)\n",
275 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
276 } else {
277 retval = -EIO;
278 break;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
282 spin_unlock_irqrestore(&i8042_lock, flags);
283
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700284 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287/*
288 * i8042_command() executes a command on the i8042. It also sends the input
289 * parameter(s) of the commands to it, and receives the output value(s). The
290 * parameters are to be stored in the param array, and the output is placed
291 * into the same array. The number of the parameters and output values is
292 * encoded in bits 8-11 of the command number.
293 */
294
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400295static int __i8042_command(unsigned char *param, int command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400297 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
300 return -1;
301
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400302 error = i8042_wait_write();
303 if (error)
304 return error;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500305
Joe Perches4eb3c302010-11-29 23:33:07 -0800306 dbg("%02x -> i8042 (command)\n", command & 0xff);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500307 i8042_write_command(command & 0xff);
308
309 for (i = 0; i < ((command >> 12) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400310 error = i8042_wait_write();
Marcos Paulo de Souza2ea9c232017-01-22 14:29:22 -0800311 if (error) {
312 dbg(" -- i8042 (wait write timeout)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400313 return error;
Marcos Paulo de Souza2ea9c232017-01-22 14:29:22 -0800314 }
Joe Perches4eb3c302010-11-29 23:33:07 -0800315 dbg("%02x -> i8042 (parameter)\n", param[i]);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500316 i8042_write_data(param[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500319 for (i = 0; i < ((command >> 8) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400320 error = i8042_wait_read();
321 if (error) {
Marcos Paulo de Souza2ea9c232017-01-22 14:29:22 -0800322 dbg(" -- i8042 (wait read timeout)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400323 return error;
324 }
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500325
326 if (command == I8042_CMD_AUX_LOOP &&
327 !(i8042_read_status() & I8042_STR_AUXDATA)) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800328 dbg(" -- i8042 (auxerr)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400329 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500332 param[i] = i8042_read_data();
Joe Perches4eb3c302010-11-29 23:33:07 -0800333 dbg("%02x <- i8042 (return)\n", param[i]);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400336 return 0;
337}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Márton Németh553a05b2007-10-22 00:56:52 -0400339int i8042_command(unsigned char *param, int command)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400340{
341 unsigned long flags;
342 int retval;
343
344 spin_lock_irqsave(&i8042_lock, flags);
345 retval = __i8042_command(param, command);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500346 spin_unlock_irqrestore(&i8042_lock, flags);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return retval;
349}
Márton Németh553a05b2007-10-22 00:56:52 -0400350EXPORT_SYMBOL(i8042_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352/*
353 * i8042_kbd_write() sends a byte out through the keyboard interface.
354 */
355
356static int i8042_kbd_write(struct serio *port, unsigned char c)
357{
358 unsigned long flags;
359 int retval = 0;
360
361 spin_lock_irqsave(&i8042_lock, flags);
362
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400363 if (!(retval = i8042_wait_write())) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800364 dbg("%02x -> i8042 (kbd-data)\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 i8042_write_data(c);
366 }
367
368 spin_unlock_irqrestore(&i8042_lock, flags);
369
370 return retval;
371}
372
373/*
374 * i8042_aux_write() sends a byte out through the aux interface.
375 */
376
377static int i8042_aux_write(struct serio *serio, unsigned char c)
378{
379 struct i8042_port *port = serio->port_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dmitry Torokhovf4e3c712006-11-02 23:27:49 -0500381 return i8042_command(&c, port->mux == -1 ?
382 I8042_CMD_AUX_SEND :
383 I8042_CMD_MUX_SEND + port->mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700386
387/*
Marcos Paulo de Souza0e2b4452016-11-22 18:03:35 -0800388 * i8042_port_close attempts to clear AUX or KBD port state by disabling
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700389 * and then re-enabling it.
390 */
391
392static void i8042_port_close(struct serio *serio)
393{
394 int irq_bit;
395 int disable_bit;
396 const char *port_name;
397
398 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
399 irq_bit = I8042_CTR_AUXINT;
400 disable_bit = I8042_CTR_AUXDIS;
401 port_name = "AUX";
402 } else {
403 irq_bit = I8042_CTR_KBDINT;
404 disable_bit = I8042_CTR_KBDDIS;
405 port_name = "KBD";
406 }
407
408 i8042_ctr &= ~irq_bit;
409 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -0800410 pr_warn("Can't write CTR while closing %s port\n", port_name);
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700411
412 udelay(50);
413
414 i8042_ctr &= ~disable_bit;
415 i8042_ctr |= irq_bit;
416 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -0800417 pr_err("Can't reactivate %s port\n", port_name);
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700418
419 /*
420 * See if there is any data appeared while we were messing with
421 * port state.
422 */
423 i8042_interrupt(0, NULL);
424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * i8042_start() is called by serio core when port is about to finish
428 * registering. It will mark port as existing so i8042_interrupt can
429 * start sending data through it.
430 */
431static int i8042_start(struct serio *serio)
432{
433 struct i8042_port *port = serio->port_data;
434
Stephen Boydc8a144b2019-08-29 14:31:05 -0700435 device_set_wakeup_capable(&serio->dev, true);
436
437 /*
438 * On platforms using suspend-to-idle, allow the keyboard to
439 * wake up the system from sleep by enabling keyboard wakeups
440 * by default. This is consistent with keyboard wakeup
441 * behavior on many platforms using suspend-to-RAM (ACPI S3)
442 * by default.
443 */
444 if (pm_suspend_default_s2idle() &&
445 serio == i8042_ports[I8042_KBD_PORT_NO].serio) {
446 device_set_wakeup_enable(&serio->dev, true);
447 }
448
Chen Hong340d3942017-07-02 15:11:10 -0700449 spin_lock_irq(&i8042_lock);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700450 port->exists = true;
Chen Hong340d3942017-07-02 15:11:10 -0700451 spin_unlock_irq(&i8042_lock);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
454}
455
456/*
457 * i8042_stop() marks serio port as non-existing so i8042_interrupt
458 * will not try to send data to the port that is about to go away.
459 * The function is called by serio core as part of unregister procedure.
460 */
461static void i8042_stop(struct serio *serio)
462{
463 struct i8042_port *port = serio->port_data;
464
Chen Hong340d3942017-07-02 15:11:10 -0700465 spin_lock_irq(&i8042_lock);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700466 port->exists = false;
Chen Hong340d3942017-07-02 15:11:10 -0700467 port->serio = NULL;
468 spin_unlock_irq(&i8042_lock);
Dmitry Torokhova8399c52007-11-04 00:44:31 -0400469
470 /*
Chen Hong340d3942017-07-02 15:11:10 -0700471 * We need to make sure that interrupt handler finishes using
472 * our serio port before we return from this function.
Dmitry Torokhova8399c52007-11-04 00:44:31 -0400473 * We synchronize with both AUX and KBD IRQs because there is
474 * a (very unlikely) chance that AUX IRQ is raised for KBD port
475 * and vice versa.
476 */
477 synchronize_irq(I8042_AUX_IRQ);
478 synchronize_irq(I8042_KBD_IRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481/*
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800482 * i8042_filter() filters out unwanted bytes from the input data stream.
483 * It is called from i8042_interrupt and thus is running with interrupts
484 * off and i8042_lock held.
485 */
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800486static bool i8042_filter(unsigned char data, unsigned char str,
487 struct serio *serio)
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800488{
489 if (unlikely(i8042_suppress_kbd_ack)) {
490 if ((~str & I8042_STR_AUXDATA) &&
491 (data == 0xfa || data == 0xfe)) {
492 i8042_suppress_kbd_ack--;
493 dbg("Extra keyboard ACK - filtered out\n");
494 return true;
495 }
496 }
497
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800498 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
Stefan Weil0747e3b2010-01-07 00:44:08 +0100499 dbg("Filtered out by platform filter\n");
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800500 return true;
501 }
502
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800503 return false;
504}
505
506/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * i8042_interrupt() is the most important function in this driver -
508 * it handles the interrupts from the i8042, and sends incoming bytes
509 * to the upper layers.
510 */
511
David Howells7d12e782006-10-05 14:55:46 +0100512static irqreturn_t i8042_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 struct i8042_port *port;
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800515 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 unsigned long flags;
517 unsigned char str, data;
518 unsigned int dfl;
519 unsigned int port_no;
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800520 bool filtered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400521 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 spin_lock_irqsave(&i8042_lock, flags);
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 str = i8042_read_status();
526 if (unlikely(~str & I8042_STR_OBF)) {
527 spin_unlock_irqrestore(&i8042_lock, flags);
Joe Perches4eb3c302010-11-29 23:33:07 -0800528 if (irq)
529 dbg("Interrupt %d, without any data\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 ret = 0;
531 goto out;
532 }
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 data = i8042_read_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
537 static unsigned long last_transmit;
538 static unsigned char last_str;
539
540 dfl = 0;
541 if (str & I8042_STR_MUXERR) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800542 dbg("MUX error, status is %02x, data is %02x\n",
543 str, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/*
545 * When MUXERR condition is signalled the data register can only contain
546 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500547 * it is not always the case. Some KBCs also report 0xfc when there is
548 * nothing connected to the port while others sometimes get confused which
549 * port the data came from and signal error leaving the data intact. They
550 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
551 * to legacy mode yet, when we see one we'll add proper handling).
552 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
553 * rest assume that the data came from the same serio last byte
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * was transmitted (if transmission happened not too long ago).
555 */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500556
557 switch (data) {
558 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (time_before(jiffies, last_transmit + HZ/10)) {
560 str = last_str;
561 break;
562 }
563 /* fall through - report timeout */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500564 case 0xfc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 case 0xfd:
566 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
567 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
568 }
569 }
570
571 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
572 last_str = str;
573 last_transmit = jiffies;
574 } else {
575
576 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
Jiri Kosinaf8313ef2011-01-08 01:37:26 -0800577 ((str & I8042_STR_TIMEOUT && !i8042_notimeout) ? SERIO_TIMEOUT : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 port_no = (str & I8042_STR_AUXDATA) ?
580 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
581 }
582
583 port = &i8042_ports[port_no];
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800584 serio = port->exists ? port->serio : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700586 filter_dbg(port->driver_bound, data, "<- i8042 (interrupt, %d, %d%s%s)\n",
587 port_no, irq,
588 dfl & SERIO_PARITY ? ", bad parity" : "",
589 dfl & SERIO_TIMEOUT ? ", timeout" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800591 filtered = i8042_filter(data, str, serio);
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400592
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800593 spin_unlock_irqrestore(&i8042_lock, flags);
594
Chen Hong340d3942017-07-02 15:11:10 -0700595 if (likely(serio && !filtered))
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800596 serio_interrupt(serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500598 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return IRQ_RETVAL(ret);
600}
601
602/*
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700603 * i8042_enable_kbd_port enables keyboard port on chip
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400604 */
605
606static int i8042_enable_kbd_port(void)
607{
608 i8042_ctr &= ~I8042_CTR_KBDDIS;
609 i8042_ctr |= I8042_CTR_KBDINT;
610
611 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400612 i8042_ctr &= ~I8042_CTR_KBDINT;
613 i8042_ctr |= I8042_CTR_KBDDIS;
Joe Perches4eb3c302010-11-29 23:33:07 -0800614 pr_err("Failed to enable KBD port\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400615 return -EIO;
616 }
617
618 return 0;
619}
620
621/*
622 * i8042_enable_aux_port enables AUX (mouse) port on chip
623 */
624
625static int i8042_enable_aux_port(void)
626{
627 i8042_ctr &= ~I8042_CTR_AUXDIS;
628 i8042_ctr |= I8042_CTR_AUXINT;
629
630 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400631 i8042_ctr &= ~I8042_CTR_AUXINT;
632 i8042_ctr |= I8042_CTR_AUXDIS;
Joe Perches4eb3c302010-11-29 23:33:07 -0800633 pr_err("Failed to enable AUX port\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400634 return -EIO;
635 }
636
637 return 0;
638}
639
640/*
641 * i8042_enable_mux_ports enables 4 individual AUX ports after
642 * the controller has been switched into Multiplexed mode
643 */
644
645static int i8042_enable_mux_ports(void)
646{
647 unsigned char param;
648 int i;
649
650 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
651 i8042_command(&param, I8042_CMD_MUX_PFX + i);
652 i8042_command(&param, I8042_CMD_AUX_ENABLE);
653 }
654
655 return i8042_enable_aux_port();
656}
657
658/*
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700659 * i8042_set_mux_mode checks whether the controller has an
660 * active multiplexor and puts the chip into Multiplexed (true)
661 * or Legacy (false) mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
663
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700664static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700667 unsigned char param, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
669 * Get rid of bytes in the queue.
670 */
671
672 i8042_flush();
673
674/*
675 * Internal loopback test - send three bytes, they should come back from the
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400676 * mouse interface, the last should be version.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
678
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700679 param = val = 0xf0;
680 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700682 param = val = multiplex ? 0x56 : 0xf6;
683 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700685 param = val = multiplex ? 0xa4 : 0xa5;
686 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
687 return -1;
688
689/*
690 * Workaround for interference with USB Legacy emulation
691 * that causes a v10.12 MUX to be found.
692 */
693 if (param == 0xac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return -1;
695
696 if (mux_version)
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500697 *mux_version = param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 return 0;
700}
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702/*
703 * i8042_check_mux() checks whether the controller supports the PS/2 Active
704 * Multiplexing specification by Synaptics, Phoenix, Insyde and
705 * LCS/Telegraphics.
706 */
707
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700708static int __init i8042_check_mux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 unsigned char mux_version;
711
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700712 if (i8042_set_mux_mode(true, &mux_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return -1;
714
Joe Perches4eb3c302010-11-29 23:33:07 -0800715 pr_info("Detected active multiplexing controller, rev %d.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 (mux_version >> 4) & 0xf, mux_version & 0xf);
717
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400718/*
719 * Disable all muxed ports by disabling AUX.
720 */
721 i8042_ctr |= I8042_CTR_AUXDIS;
722 i8042_ctr &= ~I8042_CTR_AUXINT;
723
724 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800725 pr_err("Failed to disable AUX port, can't use MUX\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400726 return -EIO;
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700729 i8042_mux_present = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 0;
732}
733
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400734/*
735 * The following is used to test AUX IRQ delivery.
736 */
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700737static struct completion i8042_aux_irq_delivered __initdata;
738static bool i8042_irq_being_tested __initdata;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400739
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700740static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400741{
742 unsigned long flags;
743 unsigned char str, data;
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400744 int ret = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400745
746 spin_lock_irqsave(&i8042_lock, flags);
747 str = i8042_read_status();
748 if (str & I8042_STR_OBF) {
749 data = i8042_read_data();
Joe Perches4eb3c302010-11-29 23:33:07 -0800750 dbg("%02x <- i8042 (aux_test_irq, %s)\n",
751 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400752 if (i8042_irq_being_tested &&
753 data == 0xa5 && (str & I8042_STR_AUXDATA))
754 complete(&i8042_aux_irq_delivered);
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400755 ret = 1;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400756 }
757 spin_unlock_irqrestore(&i8042_lock, flags);
758
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400759 return IRQ_RETVAL(ret);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400760}
761
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400762/*
763 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
764 * verifies success by readinng CTR. Used when testing for presence of AUX
765 * port.
766 */
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700767static int __init i8042_toggle_aux(bool on)
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400768{
769 unsigned char param;
770 int i;
771
772 if (i8042_command(&param,
773 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
774 return -1;
775
776 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
777 for (i = 0; i < 100; i++) {
778 udelay(50);
779
780 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
781 return -1;
782
783 if (!(param & I8042_CTR_AUXDIS) == on)
784 return 0;
785 }
786
787 return -1;
788}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790/*
791 * i8042_check_aux() applies as much paranoia as it can at detecting
792 * the presence of an AUX interface.
793 */
794
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700795static int __init i8042_check_aux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400797 int retval = -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700798 bool irq_registered = false;
799 bool aux_loop_broken = false;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400800 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 unsigned char param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803/*
804 * Get rid of bytes in the queue.
805 */
806
807 i8042_flush();
808
809/*
810 * Internal loopback test - filters out AT-type i8042's. Unfortunately
811 * SiS screwed up and their 5597 doesn't support the LOOP command even
812 * though it has an AUX port.
813 */
814
815 param = 0x5a;
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500816 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
817 if (retval || param != 0x5a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819/*
820 * External connection test - filters out AT-soldered PS/2 i8042's
821 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
822 * 0xfa - no error on some notebooks which ignore the spec
823 * Because it's common for chipsets to return error on perfectly functioning
824 * AUX ports, we test for this only when the LOOP command failed.
825 */
826
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400827 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
828 (param && param != 0xfa && param != 0xff))
829 return -1;
Dmitry Torokhov1e4865f2007-02-10 01:29:53 -0500830
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500831/*
832 * If AUX_LOOP completed without error but returned unexpected data
833 * mark it as broken
834 */
835 if (!retval)
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700836 aux_loop_broken = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
839/*
840 * Bit assignment test - filters out PS/2 i8042's in AT mode
841 */
842
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700843 if (i8042_toggle_aux(false)) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800844 pr_warn("Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
845 pr_warn("If AUX port is really absent please use the 'i8042.noaux' option\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700848 if (i8042_toggle_aux(true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -1;
850
851/*
Srihari Vijayaraghavan148e9a72015-01-07 16:25:53 -0800852 * Reset keyboard (needed on some laptops to successfully detect
853 * touchpad, e.g., some Gigabyte laptop models with Elantech
854 * touchpads).
855 */
856 if (i8042_kbdreset) {
857 pr_warn("Attempting to reset device connected to KBD port\n");
858 i8042_kbd_write(NULL, (unsigned char) 0xff);
859 }
860
861/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400862 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
863 * used it for a PCI card or somethig else.
864 */
865
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700866 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400867/*
868 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
869 * is working and hope we are right.
870 */
871 retval = 0;
872 goto out;
873 }
874
875 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
876 "i8042", i8042_platform_device))
877 goto out;
878
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700879 irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400880
881 if (i8042_enable_aux_port())
882 goto out;
883
884 spin_lock_irqsave(&i8042_lock, flags);
885
886 init_completion(&i8042_aux_irq_delivered);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700887 i8042_irq_being_tested = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400888
889 param = 0xa5;
890 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
891
892 spin_unlock_irqrestore(&i8042_lock, flags);
893
894 if (retval)
895 goto out;
896
897 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
898 msecs_to_jiffies(250)) == 0) {
899/*
900 * AUX IRQ was never delivered so we need to flush the controller to
901 * get rid of the byte we put there; otherwise keyboard may not work.
902 */
Joe Perches4eb3c302010-11-29 23:33:07 -0800903 dbg(" -- i8042 (aux irq test timeout)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400904 i8042_flush();
905 retval = -1;
906 }
907
908 out:
909
910/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 * Disable the interface.
912 */
913
914 i8042_ctr |= I8042_CTR_AUXDIS;
915 i8042_ctr &= ~I8042_CTR_AUXINT;
916
917 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400918 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400920 if (irq_registered)
921 free_irq(I8042_AUX_IRQ, i8042_platform_device);
922
923 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400926static int i8042_controller_check(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700928 if (i8042_flush()) {
Takashi Iwaif5d75342015-09-05 10:29:09 -0700929 pr_info("No controller found\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400930 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return 0;
934}
935
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400936static int i8042_controller_selftest(void)
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500937{
938 unsigned char param;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700939 int i = 0;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500940
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700941 /*
942 * We try this 5 times; on some really fragile systems this does not
943 * take the first time...
944 */
945 do {
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500946
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700947 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
Paul Bollea2a94e72011-03-31 00:11:48 -0700948 pr_err("i8042 controller selftest timeout\n");
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700949 return -ENODEV;
950 }
951
952 if (param == I8042_RET_CTL_TEST)
953 return 0;
954
Paul Bollea2a94e72011-03-31 00:11:48 -0700955 dbg("i8042 controller selftest: %#x != %#x\n",
956 param, I8042_RET_CTL_TEST);
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700957 msleep(50);
958 } while (i++ < 5);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500959
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700960#ifdef CONFIG_X86
961 /*
962 * On x86, we don't fail entire i8042 initialization if controller
963 * reset fails in hopes that keyboard port will still be functional
964 * and user will still get a working keyboard. This is especially
965 * important on netbooks. On other arches we trust hardware more.
966 */
Joe Perches4eb3c302010-11-29 23:33:07 -0800967 pr_info("giving up on controller selftest, continuing anyway...\n");
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500968 return 0;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700969#else
Paul Bollea2a94e72011-03-31 00:11:48 -0700970 pr_err("i8042 controller selftest failed\n");
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700971 return -EIO;
972#endif
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500973}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975/*
976 * i8042_controller init initializes the i8042 controller, and,
977 * most importantly, sets it into non-xlated mode if that's
978 * desired.
979 */
980
981static int i8042_controller_init(void)
982{
983 unsigned long flags;
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800984 int n = 0;
985 unsigned char ctr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987/*
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800988 * Save the CTR for restore on unload / reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
990
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800991 do {
992 if (n >= 10) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800993 pr_err("Unable to get stable CTR read\n");
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800994 return -EIO;
995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800997 if (n != 0)
998 udelay(50);
999
1000 if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001001 pr_err("Can't read CTR while initializing i8042\n");
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001002 return -EIO;
1003 }
1004
1005 } while (n < 2 || ctr[0] != ctr[1]);
1006
1007 i8042_initial_ctr = i8042_ctr = ctr[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009/*
1010 * Disable the keyboard interface and interrupt.
1011 */
1012
1013 i8042_ctr |= I8042_CTR_KBDDIS;
1014 i8042_ctr &= ~I8042_CTR_KBDINT;
1015
1016/*
1017 * Handle keylock.
1018 */
1019
1020 spin_lock_irqsave(&i8042_lock, flags);
1021 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
1022 if (i8042_unlock)
1023 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001024 else
Joe Perches4eb3c302010-11-29 23:33:07 -08001025 pr_warn("Warning: Keylock active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 spin_unlock_irqrestore(&i8042_lock, flags);
1028
1029/*
1030 * If the chip is configured into nontranslated mode by the BIOS, don't
1031 * bother enabling translating and be happy.
1032 */
1033
1034 if (~i8042_ctr & I8042_CTR_XLATE)
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001035 i8042_direct = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037/*
1038 * Set nontranslated mode for the kbd interface if requested by an option.
1039 * After this the kbd interface becomes a simple serial in/out, like the aux
1040 * interface is. We don't do this by default, since it can confuse notebook
1041 * BIOSes.
1042 */
1043
1044 if (i8042_direct)
1045 i8042_ctr &= ~I8042_CTR_XLATE;
1046
1047/*
1048 * Write CTR back.
1049 */
1050
1051 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001052 pr_err("Can't write CTR while initializing i8042\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001053 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001056/*
1057 * Flush whatever accumulated while we were disabling keyboard port.
1058 */
1059
1060 i8042_flush();
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return 0;
1063}
1064
1065
1066/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001067 * Reset the controller and reset CRT to the original value set by BIOS.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 */
1069
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001070static void i8042_controller_reset(bool s2r_wants_reset)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001071{
1072 i8042_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074/*
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -04001075 * Disable both KBD and AUX interfaces so they don't get in the way
1076 */
1077
1078 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1079 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1080
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001081 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -08001082 pr_warn("Can't write CTR while resetting\n");
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001083
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -04001084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 * Disable MUX mode if present.
1086 */
1087
1088 if (i8042_mux_present)
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001089 i8042_set_mux_mode(false, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001092 * Reset the controller if requested.
1093 */
1094
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001095 if (i8042_reset == I8042_RESET_ALWAYS ||
1096 (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) {
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001097 i8042_controller_selftest();
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001098 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001099
1100/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 * Restore the original control register setting.
1102 */
1103
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001104 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -08001105 pr_warn("Can't restore CTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
1108
1109/*
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001110 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
1111 * when kernel panics. Flashing LEDs is useful for users running X who may
Michael Opdenackeraa5e5dc2013-09-18 06:00:43 +02001112 * not see the console and will help distinguishing panics from "real"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * lockups.
1114 *
1115 * Note that DELAY has a limit of 10ms so we will not get stuck here
1116 * waiting for KBC to free up even if KBD interrupt is off
1117 */
1118
1119#define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1120
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001121static long i8042_panic_blink(int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
1123 long delay = 0;
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001124 char led;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001126 led = (state) ? 0x01 | 0x04 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 while (i8042_read_status() & I8042_STR_IBF)
1128 DELAY;
Joe Perches4eb3c302010-11-29 23:33:07 -08001129 dbg("%02x -> i8042 (panic blink)\n", 0xed);
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -05001130 i8042_suppress_kbd_ack = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 i8042_write_data(0xed); /* set leds */
1132 DELAY;
1133 while (i8042_read_status() & I8042_STR_IBF)
1134 DELAY;
1135 DELAY;
Joe Perches4eb3c302010-11-29 23:33:07 -08001136 dbg("%02x -> i8042 (panic blink)\n", led);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 i8042_write_data(led);
1138 DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return delay;
1140}
1141
1142#undef DELAY
1143
Bruno Prémontd35895d2008-05-27 01:36:04 -04001144#ifdef CONFIG_X86
1145static void i8042_dritek_enable(void)
1146{
Christoph Fritz594d6362010-09-29 18:04:21 -07001147 unsigned char param = 0x90;
Bruno Prémontd35895d2008-05-27 01:36:04 -04001148 int error;
1149
1150 error = i8042_command(&param, 0x1059);
1151 if (error)
Joe Perches4eb3c302010-11-29 23:33:07 -08001152 pr_warn("Failed to enable DRITEK extension: %d\n", error);
Bruno Prémontd35895d2008-05-27 01:36:04 -04001153}
1154#endif
1155
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001156#ifdef CONFIG_PM
Dmitry Torokhov7e044e02009-05-09 16:08:05 -07001157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158/*
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001159 * Here we try to reset everything back to a state we had
1160 * before suspending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 */
1162
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001163static int i8042_controller_resume(bool s2r_wants_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001165 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001167 error = i8042_controller_check();
1168 if (error)
1169 return error;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -05001170
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001171 if (i8042_reset == I8042_RESET_ALWAYS ||
1172 (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) {
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001173 error = i8042_controller_selftest();
1174 if (error)
1175 return error;
1176 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001177
1178/*
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001179 * Restore original CTR value and disable all ports
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001180 */
1181
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001182 i8042_ctr = i8042_initial_ctr;
1183 if (i8042_direct)
1184 i8042_ctr &= ~I8042_CTR_XLATE;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001185 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1186 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -05001187 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001188 pr_warn("Can't write CTR to resume, retrying...\n");
Jiri Kosina2f6a77d2008-06-17 11:47:27 -04001189 msleep(50);
1190 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001191 pr_err("CTR write retry failed\n");
Jiri Kosina2f6a77d2008-06-17 11:47:27 -04001192 return -EIO;
1193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
1195
Bruno Prémontd35895d2008-05-27 01:36:04 -04001196
1197#ifdef CONFIG_X86
1198 if (i8042_dritek)
1199 i8042_dritek_enable();
1200#endif
1201
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001202 if (i8042_mux_present) {
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001203 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
Joe Perches4eb3c302010-11-29 23:33:07 -08001204 pr_warn("failed to resume active multiplexor, mouse won't work\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001205 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
1206 i8042_enable_aux_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001208 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1209 i8042_enable_kbd_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
David Howells7d12e782006-10-05 14:55:46 +01001211 i8042_interrupt(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001215
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001216/*
1217 * Here we try to restore the original BIOS settings to avoid
1218 * upsetting it.
1219 */
1220
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001221static int i8042_pm_suspend(struct device *dev)
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001222{
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001223 int i;
1224
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001225 if (pm_suspend_via_firmware())
1226 i8042_controller_reset(true);
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001227
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001228 /* Set up serio interrupts for system wakeup. */
1229 for (i = 0; i < I8042_NUM_PORTS; i++) {
1230 struct serio *serio = i8042_ports[i].serio;
1231
1232 if (serio && device_may_wakeup(&serio->dev))
1233 enable_irq_wake(i8042_ports[i].irq);
1234 }
1235
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001236 return 0;
1237}
1238
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001239static int i8042_pm_resume_noirq(struct device *dev)
1240{
1241 if (!pm_resume_via_firmware())
1242 i8042_interrupt(0, NULL);
1243
1244 return 0;
1245}
1246
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001247static int i8042_pm_resume(struct device *dev)
1248{
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001249 bool want_reset;
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001250 int i;
1251
1252 for (i = 0; i < I8042_NUM_PORTS; i++) {
1253 struct serio *serio = i8042_ports[i].serio;
1254
1255 if (serio && device_may_wakeup(&serio->dev))
1256 disable_irq_wake(i8042_ports[i].irq);
1257 }
1258
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001259 /*
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001260 * If platform firmware was not going to be involved in suspend, we did
1261 * not restore the controller state to whatever it had been at boot
1262 * time, so we do not need to do anything.
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001263 */
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001264 if (!pm_suspend_via_firmware())
1265 return 0;
1266
1267 /*
1268 * We only need to reset the controller if we are resuming after handing
1269 * off control to the platform firmware, otherwise we can simply restore
1270 * the mode.
1271 */
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001272 want_reset = pm_resume_via_firmware();
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001273
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001274 return i8042_controller_resume(want_reset);
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001275}
1276
Alan Jenkinsc2d1a2a2010-02-17 12:17:33 -08001277static int i8042_pm_thaw(struct device *dev)
1278{
1279 i8042_interrupt(0, NULL);
1280
1281 return 0;
1282}
1283
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001284static int i8042_pm_reset(struct device *dev)
1285{
1286 i8042_controller_reset(false);
1287
1288 return 0;
1289}
1290
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001291static int i8042_pm_restore(struct device *dev)
1292{
1293 return i8042_controller_resume(false);
1294}
1295
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001296static const struct dev_pm_ops i8042_pm_ops = {
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001297 .suspend = i8042_pm_suspend,
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001298 .resume_noirq = i8042_pm_resume_noirq,
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001299 .resume = i8042_pm_resume,
Alan Jenkinsc2d1a2a2010-02-17 12:17:33 -08001300 .thaw = i8042_pm_thaw,
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001301 .poweroff = i8042_pm_reset,
1302 .restore = i8042_pm_restore,
1303};
1304
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001305#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307/*
1308 * We need to reset the 8042 back to original mode on system shutdown,
1309 * because otherwise BIOSes will be confused.
1310 */
1311
Russell King3ae5eae2005-11-09 22:32:44 +00001312static void i8042_shutdown(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001314 i8042_controller_reset(false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001317static int __init i8042_create_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 struct serio *serio;
1320 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1321
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001322 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001323 if (!serio)
1324 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001326 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1327 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001328 serio->start = i8042_start;
1329 serio->stop = i8042_stop;
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001330 serio->close = i8042_port_close;
Dmitry Torokhov40974612016-07-25 11:36:54 -07001331 serio->ps2_cmd_mutex = &i8042_mutex;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001332 serio->port_data = port;
1333 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001334 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001335 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
Hans de Goedea7c58682014-04-19 20:47:35 -07001336 strlcpy(serio->firmware_id, i8042_kbd_firmware_id,
1337 sizeof(serio->firmware_id));
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001338
1339 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001340 port->irq = I8042_KBD_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001341
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
1344
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001345static int __init i8042_create_aux_port(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 struct serio *serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001348 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1349 struct i8042_port *port = &i8042_ports[port_no];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001351 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001352 if (!serio)
1353 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001355 serio->id.type = SERIO_8042;
1356 serio->write = i8042_aux_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001357 serio->start = i8042_start;
1358 serio->stop = i8042_stop;
Dmitry Torokhov47af45d2016-08-16 17:38:54 -07001359 serio->ps2_cmd_mutex = &i8042_mutex;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001360 serio->port_data = port;
1361 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001362 if (idx < 0) {
1363 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1364 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
Hans de Goedea7c58682014-04-19 20:47:35 -07001365 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1366 sizeof(serio->firmware_id));
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001367 serio->close = i8042_port_close;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001368 } else {
1369 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1370 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
Hans de Goede266e43c2014-09-11 10:13:13 -07001371 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1372 sizeof(serio->firmware_id));
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001373 }
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001374
1375 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001376 port->mux = idx;
1377 port->irq = I8042_AUX_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001378
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001382static void __init i8042_free_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001384 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1385 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1386}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001388static void __init i8042_free_aux_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001389{
1390 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001392 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1393 kfree(i8042_ports[i].serio);
1394 i8042_ports[i].serio = NULL;
1395 }
1396}
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001397
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001398static void __init i8042_register_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001399{
1400 int i;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001401
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001402 for (i = 0; i < I8042_NUM_PORTS; i++) {
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001403 struct serio *serio = i8042_ports[i].serio;
1404
Daniel Drake684bec12018-10-01 15:55:22 -07001405 if (!serio)
1406 continue;
1407
1408 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1409 serio->name,
1410 (unsigned long) I8042_DATA_REG,
1411 (unsigned long) I8042_COMMAND_REG,
1412 i8042_ports[i].irq);
1413 serio_register_port(serio);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001414 }
1415}
1416
Bill Pembertone2619cf2012-11-23 21:50:47 -08001417static void i8042_unregister_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001418{
1419 int i;
1420
1421 for (i = 0; i < I8042_NUM_PORTS; i++) {
1422 if (i8042_ports[i].serio) {
1423 serio_unregister_port(i8042_ports[i].serio);
1424 i8042_ports[i].serio = NULL;
1425 }
1426 }
1427}
1428
1429static void i8042_free_irqs(void)
1430{
1431 if (i8042_aux_irq_registered)
1432 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1433 if (i8042_kbd_irq_registered)
1434 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1435
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001436 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001437}
1438
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001439static int __init i8042_setup_aux(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001440{
1441 int (*aux_enable)(void);
1442 int error;
1443 int i;
1444
1445 if (i8042_check_aux())
1446 return -ENODEV;
1447
1448 if (i8042_nomux || i8042_check_mux()) {
1449 error = i8042_create_aux_port(-1);
1450 if (error)
1451 goto err_free_ports;
1452 aux_enable = i8042_enable_aux_port;
1453 } else {
1454 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1455 error = i8042_create_aux_port(i);
1456 if (error)
1457 goto err_free_ports;
1458 }
1459 aux_enable = i8042_enable_mux_ports;
1460 }
1461
1462 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1463 "i8042", i8042_platform_device);
1464 if (error)
1465 goto err_free_ports;
1466
1467 if (aux_enable())
1468 goto err_free_irq;
1469
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001470 i8042_aux_irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001471 return 0;
1472
1473 err_free_irq:
1474 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1475 err_free_ports:
1476 i8042_free_aux_ports();
1477 return error;
1478}
1479
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001480static int __init i8042_setup_kbd(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001481{
1482 int error;
1483
1484 error = i8042_create_kbd_port();
1485 if (error)
1486 return error;
1487
1488 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1489 "i8042", i8042_platform_device);
1490 if (error)
1491 goto err_free_port;
1492
1493 error = i8042_enable_kbd_port();
1494 if (error)
1495 goto err_free_irq;
1496
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001497 i8042_kbd_irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001498 return 0;
1499
1500 err_free_irq:
1501 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1502 err_free_port:
1503 i8042_free_kbd_port();
1504 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505}
1506
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001507static int i8042_kbd_bind_notifier(struct notifier_block *nb,
1508 unsigned long action, void *data)
1509{
1510 struct device *dev = data;
1511 struct serio *serio = to_serio_port(dev);
1512 struct i8042_port *port = serio->port_data;
1513
1514 if (serio != i8042_ports[I8042_KBD_PORT_NO].serio)
1515 return 0;
1516
1517 switch (action) {
1518 case BUS_NOTIFY_BOUND_DRIVER:
1519 port->driver_bound = true;
1520 break;
1521
1522 case BUS_NOTIFY_UNBIND_DRIVER:
1523 port->driver_bound = false;
1524 break;
1525 }
1526
1527 return 0;
1528}
1529
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001530static int __init i8042_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001532 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001534 i8042_platform_device = dev;
1535
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001536 if (i8042_reset == I8042_RESET_ALWAYS) {
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001537 error = i8042_controller_selftest();
1538 if (error)
1539 return error;
1540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001542 error = i8042_controller_init();
1543 if (error)
1544 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Bruno Prémontd35895d2008-05-27 01:36:04 -04001546#ifdef CONFIG_X86
1547 if (i8042_dritek)
1548 i8042_dritek_enable();
1549#endif
1550
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001551 if (!i8042_noaux) {
1552 error = i8042_setup_aux();
1553 if (error && error != -ENODEV && error != -EBUSY)
1554 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001557 if (!i8042_nokbd) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001558 error = i8042_setup_kbd();
1559 if (error)
1560 goto out_fail;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001561 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001562/*
1563 * Ok, everything is ready, let's register all serio ports
1564 */
1565 i8042_register_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 return 0;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001568
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001569 out_fail:
1570 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1571 i8042_free_irqs();
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001572 i8042_controller_reset(false);
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001573 i8042_platform_device = NULL;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001574
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001575 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
Bill Pembertone2619cf2012-11-23 21:50:47 -08001578static int i8042_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001580 i8042_unregister_ports();
1581 i8042_free_irqs();
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001582 i8042_controller_reset(false);
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001583 i8042_platform_device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001585 return 0;
1586}
1587
1588static struct platform_driver i8042_driver = {
1589 .driver = {
1590 .name = "i8042",
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001591#ifdef CONFIG_PM
1592 .pm = &i8042_pm_ops,
1593#endif
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001594 },
Bill Pemberton1cb0aa82012-11-23 21:27:39 -08001595 .remove = i8042_remove,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001596 .shutdown = i8042_shutdown,
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001597};
1598
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001599static struct notifier_block i8042_kbd_bind_notifier_block = {
1600 .notifier_call = i8042_kbd_bind_notifier,
1601};
1602
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001603static int __init i8042_init(void)
1604{
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001605 struct platform_device *pdev;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001606 int err;
1607
1608 dbg_init();
1609
1610 err = i8042_platform_init();
1611 if (err)
1612 return err;
1613
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001614 err = i8042_controller_check();
1615 if (err)
1616 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001617
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001618 pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
1619 if (IS_ERR(pdev)) {
1620 err = PTR_ERR(pdev);
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001621 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001622 }
1623
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001624 bus_register_notifier(&serio_bus, &i8042_kbd_bind_notifier_block);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001625 panic_blink = i8042_panic_blink;
1626
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001627 return 0;
1628
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001629 err_platform_exit:
1630 i8042_platform_exit();
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001631 return err;
1632}
1633
1634static void __exit i8042_exit(void)
1635{
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001636 platform_device_unregister(i8042_platform_device);
Dmitry Torokhovaf045b82010-08-31 17:27:02 -07001637 platform_driver_unregister(&i8042_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 i8042_platform_exit();
1639
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001640 bus_unregister_notifier(&serio_bus, &i8042_kbd_bind_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 panic_blink = NULL;
1642}
1643
1644module_init(i8042_init);
1645module_exit(i8042_exit);