blob: 0dddf273afd94b6b85557ae0a201e5d9a2961586 [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>
Rajat Jain6052abf2020-04-27 17:50:45 -070024#include <linux/property.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/io.h>
27
28MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
29MODULE_DESCRIPTION("i8042 keyboard and mouse controller driver");
30MODULE_LICENSE("GPL");
31
Dmitry Torokhov386b3842009-09-09 19:08:16 -070032static bool i8042_nokbd;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -050033module_param_named(nokbd, i8042_nokbd, bool, 0);
34MODULE_PARM_DESC(nokbd, "Do not probe or use KBD port.");
35
Dmitry Torokhov386b3842009-09-09 19:08:16 -070036static bool i8042_noaux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037module_param_named(noaux, i8042_noaux, bool, 0);
38MODULE_PARM_DESC(noaux, "Do not probe or use AUX (mouse) port.");
39
Dmitry Torokhove55a3362014-10-31 09:35:53 -070040static bool i8042_nomux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041module_param_named(nomux, i8042_nomux, bool, 0);
Dominik Brodowski2c860a12010-04-05 22:29:09 -070042MODULE_PARM_DESC(nomux, "Do not check whether an active multiplexing controller is present.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Dmitry Torokhov386b3842009-09-09 19:08:16 -070044static bool i8042_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045module_param_named(unlock, i8042_unlock, bool, 0);
46MODULE_PARM_DESC(unlock, "Ignore keyboard lock.");
47
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -070048enum i8042_controller_reset_mode {
49 I8042_RESET_NEVER,
50 I8042_RESET_ALWAYS,
51 I8042_RESET_ON_S2RAM,
52#define I8042_RESET_DEFAULT I8042_RESET_ON_S2RAM
53};
54static enum i8042_controller_reset_mode i8042_reset = I8042_RESET_DEFAULT;
55static int i8042_set_reset(const char *val, const struct kernel_param *kp)
56{
57 enum i8042_controller_reset_mode *arg = kp->arg;
58 int error;
59 bool reset;
60
61 if (val) {
62 error = kstrtobool(val, &reset);
63 if (error)
64 return error;
65 } else {
66 reset = true;
67 }
68
69 *arg = reset ? I8042_RESET_ALWAYS : I8042_RESET_NEVER;
70 return 0;
71}
72
73static const struct kernel_param_ops param_ops_reset_param = {
74 .flags = KERNEL_PARAM_OPS_FL_NOARG,
75 .set = i8042_set_reset,
76};
77#define param_check_reset_param(name, p) \
78 __param_check(name, p, enum i8042_controller_reset_mode)
79module_param_named(reset, i8042_reset, reset_param, 0);
80MODULE_PARM_DESC(reset, "Reset controller on resume, cleanup or both");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Dmitry Torokhov386b3842009-09-09 19:08:16 -070082static bool i8042_direct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083module_param_named(direct, i8042_direct, bool, 0);
84MODULE_PARM_DESC(direct, "Put keyboard port into non-translated mode.");
85
Dmitry Torokhov386b3842009-09-09 19:08:16 -070086static bool i8042_dumbkbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087module_param_named(dumbkbd, i8042_dumbkbd, bool, 0);
88MODULE_PARM_DESC(dumbkbd, "Pretend that controller can only read data from keyboard");
89
Dmitry Torokhov386b3842009-09-09 19:08:16 -070090static bool i8042_noloop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091module_param_named(noloop, i8042_noloop, bool, 0);
92MODULE_PARM_DESC(noloop, "Disable the AUX Loopback command while probing for the AUX port");
93
Jiri Kosinaf8313ef2011-01-08 01:37:26 -080094static bool i8042_notimeout;
95module_param_named(notimeout, i8042_notimeout, bool, 0);
96MODULE_PARM_DESC(notimeout, "Ignore timeouts signalled by i8042");
97
Srihari Vijayaraghavan148e9a72015-01-07 16:25:53 -080098static bool i8042_kbdreset;
99module_param_named(kbdreset, i8042_kbdreset, bool, 0);
100MODULE_PARM_DESC(kbdreset, "Reset device connected to KBD port");
101
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500102#ifdef CONFIG_X86
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700103static bool i8042_dritek;
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500104module_param_named(dritek, i8042_dritek, bool, 0);
105MODULE_PARM_DESC(dritek, "Force enable the Dritek keyboard extension");
106#endif
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#ifdef CONFIG_PNP
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700109static bool i8042_nopnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110module_param_named(nopnp, i8042_nopnp, bool, 0);
111MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings");
112#endif
113
114#define DEBUG
115#ifdef DEBUG
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700116static bool i8042_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117module_param_named(debug, i8042_debug, bool, 0600);
118MODULE_PARM_DESC(debug, "Turn i8042 debugging mode on and off");
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700119
120static bool i8042_unmask_kbd_data;
121module_param_named(unmask_kbd_data, i8042_unmask_kbd_data, bool, 0600);
122MODULE_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 -0700123#endif
124
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700125static bool i8042_bypass_aux_irq_test;
Hans de Goedea7c58682014-04-19 20:47:35 -0700126static char i8042_kbd_firmware_id[128];
127static char i8042_aux_firmware_id[128];
Rajat Jain6052abf2020-04-27 17:50:45 -0700128static struct fwnode_handle *i8042_kbd_fwnode;
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#include "i8042.h"
131
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700132/*
133 * i8042_lock protects serialization between i8042_command and
134 * the interrupt handler.
135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static DEFINE_SPINLOCK(i8042_lock);
137
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700138/*
139 * Writers to AUX and KBD ports as well as users issuing i8042_command
140 * directly should acquire i8042_mutex (by means of calling
141 * i8042_lock_chip() and i8042_unlock_ship() helpers) to ensure that
142 * they do not disturb each other (unfortunately in many i8042
143 * implementations write to one of the ports will immediately abort
144 * command that is being processed by another port).
145 */
146static DEFINE_MUTEX(i8042_mutex);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148struct i8042_port {
149 struct serio *serio;
150 int irq;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700151 bool exists;
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700152 bool driver_bound;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 signed char mux;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
156#define I8042_KBD_PORT_NO 0
157#define I8042_AUX_PORT_NO 1
158#define I8042_MUX_PORT_NO 2
159#define I8042_NUM_PORTS (I8042_NUM_MUX_PORTS + 2)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400160
161static struct i8042_port i8042_ports[I8042_NUM_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163static unsigned char i8042_initial_ctr;
164static unsigned char i8042_ctr;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700165static bool i8042_mux_present;
166static bool i8042_kbd_irq_registered;
167static bool i8042_aux_irq_registered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400168static unsigned char i8042_suppress_kbd_ack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static struct platform_device *i8042_platform_device;
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700170static struct notifier_block i8042_kbd_bind_notifier_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
David Howells7d12e782006-10-05 14:55:46 +0100172static irqreturn_t i8042_interrupt(int irq, void *dev_id);
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800173static bool (*i8042_platform_filter)(unsigned char data, unsigned char str,
174 struct serio *serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Dmitry Torokhov181d6832009-09-16 01:06:43 -0700176void i8042_lock_chip(void)
177{
178 mutex_lock(&i8042_mutex);
179}
180EXPORT_SYMBOL(i8042_lock_chip);
181
182void i8042_unlock_chip(void)
183{
184 mutex_unlock(&i8042_mutex);
185}
186EXPORT_SYMBOL(i8042_unlock_chip);
187
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800188int i8042_install_filter(bool (*filter)(unsigned char data, unsigned char str,
189 struct serio *serio))
190{
191 unsigned long flags;
192 int ret = 0;
193
194 spin_lock_irqsave(&i8042_lock, flags);
195
196 if (i8042_platform_filter) {
197 ret = -EBUSY;
198 goto out;
199 }
200
201 i8042_platform_filter = filter;
202
203out:
204 spin_unlock_irqrestore(&i8042_lock, flags);
205 return ret;
206}
207EXPORT_SYMBOL(i8042_install_filter);
208
209int i8042_remove_filter(bool (*filter)(unsigned char data, unsigned char str,
210 struct serio *port))
211{
212 unsigned long flags;
213 int ret = 0;
214
215 spin_lock_irqsave(&i8042_lock, flags);
216
217 if (i8042_platform_filter != filter) {
218 ret = -EINVAL;
219 goto out;
220 }
221
222 i8042_platform_filter = NULL;
223
224out:
225 spin_unlock_irqrestore(&i8042_lock, flags);
226 return ret;
227}
228EXPORT_SYMBOL(i8042_remove_filter);
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/*
231 * The i8042_wait_read() and i8042_wait_write functions wait for the i8042 to
232 * be ready for reading values from it / writing values to it.
233 * Called always with i8042_lock held.
234 */
235
236static int i8042_wait_read(void)
237{
238 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 while ((~i8042_read_status() & I8042_STR_OBF) && (i < I8042_CTL_TIMEOUT)) {
241 udelay(50);
242 i++;
243 }
244 return -(i == I8042_CTL_TIMEOUT);
245}
246
247static int i8042_wait_write(void)
248{
249 int i = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 while ((i8042_read_status() & I8042_STR_IBF) && (i < I8042_CTL_TIMEOUT)) {
252 udelay(50);
253 i++;
254 }
255 return -(i == I8042_CTL_TIMEOUT);
256}
257
258/*
259 * i8042_flush() flushes all data that may be in the keyboard and mouse buffers
260 * of the i8042 down the toilet.
261 */
262
263static int i8042_flush(void)
264{
265 unsigned long flags;
266 unsigned char data, str;
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700267 int count = 0;
268 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 spin_lock_irqsave(&i8042_lock, flags);
271
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700272 while ((str = i8042_read_status()) & I8042_STR_OBF) {
273 if (count++ < I8042_BUFFER_SIZE) {
274 udelay(50);
275 data = i8042_read_data();
276 dbg("%02x <- i8042 (flush, %s)\n",
277 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
278 } else {
279 retval = -EIO;
280 break;
281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
284 spin_unlock_irqrestore(&i8042_lock, flags);
285
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700286 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/*
290 * i8042_command() executes a command on the i8042. It also sends the input
291 * parameter(s) of the commands to it, and receives the output value(s). The
292 * parameters are to be stored in the param array, and the output is placed
293 * into the same array. The number of the parameters and output values is
294 * encoded in bits 8-11 of the command number.
295 */
296
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400297static int __i8042_command(unsigned char *param, int command)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400299 int i, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (i8042_noloop && command == I8042_CMD_AUX_LOOP)
302 return -1;
303
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400304 error = i8042_wait_write();
305 if (error)
306 return error;
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500307
Joe Perches4eb3c302010-11-29 23:33:07 -0800308 dbg("%02x -> i8042 (command)\n", command & 0xff);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500309 i8042_write_command(command & 0xff);
310
311 for (i = 0; i < ((command >> 12) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400312 error = i8042_wait_write();
Marcos Paulo de Souza2ea9c232017-01-22 14:29:22 -0800313 if (error) {
314 dbg(" -- i8042 (wait write timeout)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400315 return error;
Marcos Paulo de Souza2ea9c232017-01-22 14:29:22 -0800316 }
Joe Perches4eb3c302010-11-29 23:33:07 -0800317 dbg("%02x -> i8042 (parameter)\n", param[i]);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500318 i8042_write_data(param[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500321 for (i = 0; i < ((command >> 8) & 0xf); i++) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400322 error = i8042_wait_read();
323 if (error) {
Marcos Paulo de Souza2ea9c232017-01-22 14:29:22 -0800324 dbg(" -- i8042 (wait read timeout)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400325 return error;
326 }
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500327
328 if (command == I8042_CMD_AUX_LOOP &&
329 !(i8042_read_status() & I8042_STR_AUXDATA)) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800330 dbg(" -- i8042 (auxerr)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400331 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500334 param[i] = i8042_read_data();
Joe Perches4eb3c302010-11-29 23:33:07 -0800335 dbg("%02x <- i8042 (return)\n", param[i]);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400338 return 0;
339}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Márton Németh553a05b2007-10-22 00:56:52 -0400341int i8042_command(unsigned char *param, int command)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400342{
343 unsigned long flags;
344 int retval;
345
346 spin_lock_irqsave(&i8042_lock, flags);
347 retval = __i8042_command(param, command);
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500348 spin_unlock_irqrestore(&i8042_lock, flags);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return retval;
351}
Márton Németh553a05b2007-10-22 00:56:52 -0400352EXPORT_SYMBOL(i8042_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354/*
355 * i8042_kbd_write() sends a byte out through the keyboard interface.
356 */
357
358static int i8042_kbd_write(struct serio *port, unsigned char c)
359{
360 unsigned long flags;
361 int retval = 0;
362
363 spin_lock_irqsave(&i8042_lock, flags);
364
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400365 if (!(retval = i8042_wait_write())) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800366 dbg("%02x -> i8042 (kbd-data)\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 i8042_write_data(c);
368 }
369
370 spin_unlock_irqrestore(&i8042_lock, flags);
371
372 return retval;
373}
374
375/*
376 * i8042_aux_write() sends a byte out through the aux interface.
377 */
378
379static int i8042_aux_write(struct serio *serio, unsigned char c)
380{
381 struct i8042_port *port = serio->port_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Dmitry Torokhovf4e3c712006-11-02 23:27:49 -0500383 return i8042_command(&c, port->mux == -1 ?
384 I8042_CMD_AUX_SEND :
385 I8042_CMD_MUX_SEND + port->mux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700388
389/*
Marcos Paulo de Souza0e2b4452016-11-22 18:03:35 -0800390 * i8042_port_close attempts to clear AUX or KBD port state by disabling
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700391 * and then re-enabling it.
392 */
393
394static void i8042_port_close(struct serio *serio)
395{
396 int irq_bit;
397 int disable_bit;
398 const char *port_name;
399
400 if (serio == i8042_ports[I8042_AUX_PORT_NO].serio) {
401 irq_bit = I8042_CTR_AUXINT;
402 disable_bit = I8042_CTR_AUXDIS;
403 port_name = "AUX";
404 } else {
405 irq_bit = I8042_CTR_KBDINT;
406 disable_bit = I8042_CTR_KBDDIS;
407 port_name = "KBD";
408 }
409
410 i8042_ctr &= ~irq_bit;
411 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -0800412 pr_warn("Can't write CTR while closing %s port\n", port_name);
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700413
414 udelay(50);
415
416 i8042_ctr &= ~disable_bit;
417 i8042_ctr |= irq_bit;
418 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -0800419 pr_err("Can't reactivate %s port\n", port_name);
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700420
421 /*
422 * See if there is any data appeared while we were messing with
423 * port state.
424 */
425 i8042_interrupt(0, NULL);
426}
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * i8042_start() is called by serio core when port is about to finish
430 * registering. It will mark port as existing so i8042_interrupt can
431 * start sending data through it.
432 */
433static int i8042_start(struct serio *serio)
434{
435 struct i8042_port *port = serio->port_data;
436
Stephen Boydc8a144b2019-08-29 14:31:05 -0700437 device_set_wakeup_capable(&serio->dev, true);
438
439 /*
440 * On platforms using suspend-to-idle, allow the keyboard to
441 * wake up the system from sleep by enabling keyboard wakeups
442 * by default. This is consistent with keyboard wakeup
443 * behavior on many platforms using suspend-to-RAM (ACPI S3)
444 * by default.
445 */
446 if (pm_suspend_default_s2idle() &&
447 serio == i8042_ports[I8042_KBD_PORT_NO].serio) {
448 device_set_wakeup_enable(&serio->dev, true);
449 }
450
Chen Hong340d3942017-07-02 15:11:10 -0700451 spin_lock_irq(&i8042_lock);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700452 port->exists = true;
Chen Hong340d3942017-07-02 15:11:10 -0700453 spin_unlock_irq(&i8042_lock);
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
456}
457
458/*
459 * i8042_stop() marks serio port as non-existing so i8042_interrupt
460 * will not try to send data to the port that is about to go away.
461 * The function is called by serio core as part of unregister procedure.
462 */
463static void i8042_stop(struct serio *serio)
464{
465 struct i8042_port *port = serio->port_data;
466
Chen Hong340d3942017-07-02 15:11:10 -0700467 spin_lock_irq(&i8042_lock);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700468 port->exists = false;
Chen Hong340d3942017-07-02 15:11:10 -0700469 port->serio = NULL;
470 spin_unlock_irq(&i8042_lock);
Dmitry Torokhova8399c52007-11-04 00:44:31 -0400471
472 /*
Chen Hong340d3942017-07-02 15:11:10 -0700473 * We need to make sure that interrupt handler finishes using
474 * our serio port before we return from this function.
Dmitry Torokhova8399c52007-11-04 00:44:31 -0400475 * We synchronize with both AUX and KBD IRQs because there is
476 * a (very unlikely) chance that AUX IRQ is raised for KBD port
477 * and vice versa.
478 */
479 synchronize_irq(I8042_AUX_IRQ);
480 synchronize_irq(I8042_KBD_IRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483/*
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800484 * i8042_filter() filters out unwanted bytes from the input data stream.
485 * It is called from i8042_interrupt and thus is running with interrupts
486 * off and i8042_lock held.
487 */
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800488static bool i8042_filter(unsigned char data, unsigned char str,
489 struct serio *serio)
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800490{
491 if (unlikely(i8042_suppress_kbd_ack)) {
492 if ((~str & I8042_STR_AUXDATA) &&
493 (data == 0xfa || data == 0xfe)) {
494 i8042_suppress_kbd_ack--;
495 dbg("Extra keyboard ACK - filtered out\n");
496 return true;
497 }
498 }
499
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800500 if (i8042_platform_filter && i8042_platform_filter(data, str, serio)) {
Stefan Weil0747e3b2010-01-07 00:44:08 +0100501 dbg("Filtered out by platform filter\n");
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800502 return true;
503 }
504
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800505 return false;
506}
507
508/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * i8042_interrupt() is the most important function in this driver -
510 * it handles the interrupts from the i8042, and sends incoming bytes
511 * to the upper layers.
512 */
513
David Howells7d12e782006-10-05 14:55:46 +0100514static irqreturn_t i8042_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 struct i8042_port *port;
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800517 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 unsigned long flags;
519 unsigned char str, data;
520 unsigned int dfl;
521 unsigned int port_no;
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800522 bool filtered;
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400523 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 spin_lock_irqsave(&i8042_lock, flags);
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 str = i8042_read_status();
528 if (unlikely(~str & I8042_STR_OBF)) {
529 spin_unlock_irqrestore(&i8042_lock, flags);
Joe Perches4eb3c302010-11-29 23:33:07 -0800530 if (irq)
531 dbg("Interrupt %d, without any data\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 ret = 0;
533 goto out;
534 }
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 data = i8042_read_data();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 if (i8042_mux_present && (str & I8042_STR_AUXDATA)) {
539 static unsigned long last_transmit;
540 static unsigned char last_str;
541
542 dfl = 0;
543 if (str & I8042_STR_MUXERR) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800544 dbg("MUX error, status is %02x, data is %02x\n",
545 str, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
547 * When MUXERR condition is signalled the data register can only contain
548 * 0xfd, 0xfe or 0xff if implementation follows the spec. Unfortunately
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500549 * it is not always the case. Some KBCs also report 0xfc when there is
550 * nothing connected to the port while others sometimes get confused which
551 * port the data came from and signal error leaving the data intact. They
552 * _do not_ revert to legacy mode (actually I've never seen KBC reverting
553 * to legacy mode yet, when we see one we'll add proper handling).
554 * Anyway, we process 0xfc, 0xfd, 0xfe and 0xff as timeouts, and for the
555 * rest assume that the data came from the same serio last byte
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * was transmitted (if transmission happened not too long ago).
557 */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500558
559 switch (data) {
560 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (time_before(jiffies, last_transmit + HZ/10)) {
562 str = last_str;
563 break;
564 }
565 /* fall through - report timeout */
Dmitry Torokhova216a4b2006-11-17 01:07:06 -0500566 case 0xfc:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 case 0xfd:
568 case 0xfe: dfl = SERIO_TIMEOUT; data = 0xfe; break;
569 case 0xff: dfl = SERIO_PARITY; data = 0xfe; break;
570 }
571 }
572
573 port_no = I8042_MUX_PORT_NO + ((str >> 6) & 3);
574 last_str = str;
575 last_transmit = jiffies;
576 } else {
577
578 dfl = ((str & I8042_STR_PARITY) ? SERIO_PARITY : 0) |
Jiri Kosinaf8313ef2011-01-08 01:37:26 -0800579 ((str & I8042_STR_TIMEOUT && !i8042_notimeout) ? SERIO_TIMEOUT : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 port_no = (str & I8042_STR_AUXDATA) ?
582 I8042_AUX_PORT_NO : I8042_KBD_PORT_NO;
583 }
584
585 port = &i8042_ports[port_no];
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800586 serio = port->exists ? port->serio : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Stephen Chandler Paule1443d22015-07-15 10:20:17 -0700588 filter_dbg(port->driver_bound, data, "<- i8042 (interrupt, %d, %d%s%s)\n",
589 port_no, irq,
590 dfl & SERIO_PARITY ? ", bad parity" : "",
591 dfl & SERIO_TIMEOUT ? ", timeout" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800593 filtered = i8042_filter(data, str, serio);
Dmitry Torokhov817e6ba2006-10-11 01:44:28 -0400594
Dmitry Torokhov4e8d3402009-12-11 22:00:57 -0800595 spin_unlock_irqrestore(&i8042_lock, flags);
596
Chen Hong340d3942017-07-02 15:11:10 -0700597 if (likely(serio && !filtered))
Matthew Garrett967c9ef2009-12-11 22:00:57 -0800598 serio_interrupt(serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Dmitry Torokhov0854e522005-09-04 01:41:27 -0500600 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return IRQ_RETVAL(ret);
602}
603
604/*
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -0700605 * i8042_enable_kbd_port enables keyboard port on chip
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400606 */
607
608static int i8042_enable_kbd_port(void)
609{
610 i8042_ctr &= ~I8042_CTR_KBDDIS;
611 i8042_ctr |= I8042_CTR_KBDINT;
612
613 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400614 i8042_ctr &= ~I8042_CTR_KBDINT;
615 i8042_ctr |= I8042_CTR_KBDDIS;
Joe Perches4eb3c302010-11-29 23:33:07 -0800616 pr_err("Failed to enable KBD port\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400617 return -EIO;
618 }
619
620 return 0;
621}
622
623/*
624 * i8042_enable_aux_port enables AUX (mouse) port on chip
625 */
626
627static int i8042_enable_aux_port(void)
628{
629 i8042_ctr &= ~I8042_CTR_AUXDIS;
630 i8042_ctr |= I8042_CTR_AUXINT;
631
632 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Markus Armbruster018db6b2007-07-18 01:20:41 -0400633 i8042_ctr &= ~I8042_CTR_AUXINT;
634 i8042_ctr |= I8042_CTR_AUXDIS;
Joe Perches4eb3c302010-11-29 23:33:07 -0800635 pr_err("Failed to enable AUX port\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400636 return -EIO;
637 }
638
639 return 0;
640}
641
642/*
643 * i8042_enable_mux_ports enables 4 individual AUX ports after
644 * the controller has been switched into Multiplexed mode
645 */
646
647static int i8042_enable_mux_ports(void)
648{
649 unsigned char param;
650 int i;
651
652 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
653 i8042_command(&param, I8042_CMD_MUX_PFX + i);
654 i8042_command(&param, I8042_CMD_AUX_ENABLE);
655 }
656
657 return i8042_enable_aux_port();
658}
659
660/*
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700661 * i8042_set_mux_mode checks whether the controller has an
662 * active multiplexor and puts the chip into Multiplexed (true)
663 * or Legacy (false) mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700666static int i8042_set_mux_mode(bool multiplex, unsigned char *mux_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700669 unsigned char param, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/*
671 * Get rid of bytes in the queue.
672 */
673
674 i8042_flush();
675
676/*
677 * Internal loopback test - send three bytes, they should come back from the
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400678 * mouse interface, the last should be version.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 */
680
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700681 param = val = 0xf0;
682 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700684 param = val = multiplex ? 0x56 : 0xf6;
685 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700687 param = val = multiplex ? 0xa4 : 0xa5;
688 if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == val)
689 return -1;
690
691/*
692 * Workaround for interference with USB Legacy emulation
693 * that causes a v10.12 MUX to be found.
694 */
695 if (param == 0xac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return -1;
697
698 if (mux_version)
Dmitry Torokhov463a4f72005-07-15 01:51:56 -0500699 *mux_version = param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 return 0;
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/*
705 * i8042_check_mux() checks whether the controller supports the PS/2 Active
706 * Multiplexing specification by Synaptics, Phoenix, Insyde and
707 * LCS/Telegraphics.
708 */
709
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700710static int __init i8042_check_mux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 unsigned char mux_version;
713
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700714 if (i8042_set_mux_mode(true, &mux_version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -1;
716
Joe Perches4eb3c302010-11-29 23:33:07 -0800717 pr_info("Detected active multiplexing controller, rev %d.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 (mux_version >> 4) & 0xf, mux_version & 0xf);
719
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400720/*
721 * Disable all muxed ports by disabling AUX.
722 */
723 i8042_ctr |= I8042_CTR_AUXDIS;
724 i8042_ctr &= ~I8042_CTR_AUXINT;
725
726 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800727 pr_err("Failed to disable AUX port, can't use MUX\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400728 return -EIO;
729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700731 i8042_mux_present = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400732
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 0;
734}
735
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400736/*
737 * The following is used to test AUX IRQ delivery.
738 */
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700739static struct completion i8042_aux_irq_delivered __initdata;
740static bool i8042_irq_being_tested __initdata;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400741
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700742static irqreturn_t __init i8042_aux_test_irq(int irq, void *dev_id)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400743{
744 unsigned long flags;
745 unsigned char str, data;
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400746 int ret = 0;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400747
748 spin_lock_irqsave(&i8042_lock, flags);
749 str = i8042_read_status();
750 if (str & I8042_STR_OBF) {
751 data = i8042_read_data();
Joe Perches4eb3c302010-11-29 23:33:07 -0800752 dbg("%02x <- i8042 (aux_test_irq, %s)\n",
753 data, str & I8042_STR_AUXDATA ? "aux" : "kbd");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400754 if (i8042_irq_being_tested &&
755 data == 0xa5 && (str & I8042_STR_AUXDATA))
756 complete(&i8042_aux_irq_delivered);
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400757 ret = 1;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400758 }
759 spin_unlock_irqrestore(&i8042_lock, flags);
760
Fernando Luis Vázquez Caoe3758b22007-08-30 00:04:15 -0400761 return IRQ_RETVAL(ret);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400762}
763
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400764/*
765 * i8042_toggle_aux - enables or disables AUX port on i8042 via command and
766 * verifies success by readinng CTR. Used when testing for presence of AUX
767 * port.
768 */
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700769static int __init i8042_toggle_aux(bool on)
Roland Scheideggerd2ada552007-05-08 01:31:40 -0400770{
771 unsigned char param;
772 int i;
773
774 if (i8042_command(&param,
775 on ? I8042_CMD_AUX_ENABLE : I8042_CMD_AUX_DISABLE))
776 return -1;
777
778 /* some chips need some time to set the I8042_CTR_AUXDIS bit */
779 for (i = 0; i < 100; i++) {
780 udelay(50);
781
782 if (i8042_command(&param, I8042_CMD_CTL_RCTR))
783 return -1;
784
785 if (!(param & I8042_CTR_AUXDIS) == on)
786 return 0;
787 }
788
789 return -1;
790}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792/*
793 * i8042_check_aux() applies as much paranoia as it can at detecting
794 * the presence of an AUX interface.
795 */
796
Dmitry Torokhovf8113412009-09-09 19:08:17 -0700797static int __init i8042_check_aux(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400799 int retval = -1;
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700800 bool irq_registered = false;
801 bool aux_loop_broken = false;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400802 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 unsigned char param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805/*
806 * Get rid of bytes in the queue.
807 */
808
809 i8042_flush();
810
811/*
812 * Internal loopback test - filters out AT-type i8042's. Unfortunately
813 * SiS screwed up and their 5597 doesn't support the LOOP command even
814 * though it has an AUX port.
815 */
816
817 param = 0x5a;
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500818 retval = i8042_command(&param, I8042_CMD_AUX_LOOP);
819 if (retval || param != 0x5a) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821/*
822 * External connection test - filters out AT-soldered PS/2 i8042's
823 * 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
824 * 0xfa - no error on some notebooks which ignore the spec
825 * Because it's common for chipsets to return error on perfectly functioning
826 * AUX ports, we test for this only when the LOOP command failed.
827 */
828
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400829 if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
830 (param && param != 0xfa && param != 0xff))
831 return -1;
Dmitry Torokhov1e4865f2007-02-10 01:29:53 -0500832
Dmitry Torokhov3ca5de62007-03-07 23:20:55 -0500833/*
834 * If AUX_LOOP completed without error but returned unexpected data
835 * mark it as broken
836 */
837 if (!retval)
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700838 aux_loop_broken = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
841/*
842 * Bit assignment test - filters out PS/2 i8042's in AT mode
843 */
844
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700845 if (i8042_toggle_aux(false)) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800846 pr_warn("Failed to disable AUX port, but continuing anyway... Is this a SiS?\n");
847 pr_warn("If AUX port is really absent please use the 'i8042.noaux' option\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700850 if (i8042_toggle_aux(true))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return -1;
852
853/*
Srihari Vijayaraghavan148e9a72015-01-07 16:25:53 -0800854 * Reset keyboard (needed on some laptops to successfully detect
855 * touchpad, e.g., some Gigabyte laptop models with Elantech
856 * touchpads).
857 */
858 if (i8042_kbdreset) {
859 pr_warn("Attempting to reset device connected to KBD port\n");
860 i8042_kbd_write(NULL, (unsigned char) 0xff);
861 }
862
863/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400864 * Test AUX IRQ delivery to make sure BIOS did not grab the IRQ and
865 * used it for a PCI card or somethig else.
866 */
867
Dmitry Torokhov1c7827a2009-09-03 21:45:34 -0700868 if (i8042_noloop || i8042_bypass_aux_irq_test || aux_loop_broken) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400869/*
870 * Without LOOP command we can't test AUX IRQ delivery. Assume the port
871 * is working and hope we are right.
872 */
873 retval = 0;
874 goto out;
875 }
876
877 if (request_irq(I8042_AUX_IRQ, i8042_aux_test_irq, IRQF_SHARED,
878 "i8042", i8042_platform_device))
879 goto out;
880
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700881 irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400882
883 if (i8042_enable_aux_port())
884 goto out;
885
886 spin_lock_irqsave(&i8042_lock, flags);
887
888 init_completion(&i8042_aux_irq_delivered);
Dmitry Torokhov386b3842009-09-09 19:08:16 -0700889 i8042_irq_being_tested = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400890
891 param = 0xa5;
892 retval = __i8042_command(&param, I8042_CMD_AUX_LOOP & 0xf0ff);
893
894 spin_unlock_irqrestore(&i8042_lock, flags);
895
896 if (retval)
897 goto out;
898
899 if (wait_for_completion_timeout(&i8042_aux_irq_delivered,
900 msecs_to_jiffies(250)) == 0) {
901/*
902 * AUX IRQ was never delivered so we need to flush the controller to
903 * get rid of the byte we put there; otherwise keyboard may not work.
904 */
Joe Perches4eb3c302010-11-29 23:33:07 -0800905 dbg(" -- i8042 (aux irq test timeout)\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400906 i8042_flush();
907 retval = -1;
908 }
909
910 out:
911
912/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 * Disable the interface.
914 */
915
916 i8042_ctr |= I8042_CTR_AUXDIS;
917 i8042_ctr &= ~I8042_CTR_AUXINT;
918
919 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400920 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400922 if (irq_registered)
923 free_irq(I8042_AUX_IRQ, i8042_platform_device);
924
925 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400928static int i8042_controller_check(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Andrey Moiseev2f0d2602013-09-16 15:17:31 -0700930 if (i8042_flush()) {
Takashi Iwaif5d75342015-09-05 10:29:09 -0700931 pr_info("No controller found\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400932 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936}
937
Dmitry Torokhovde9ce702006-09-10 21:57:21 -0400938static int i8042_controller_selftest(void)
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500939{
940 unsigned char param;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700941 int i = 0;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500942
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700943 /*
944 * We try this 5 times; on some really fragile systems this does not
945 * take the first time...
946 */
947 do {
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500948
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700949 if (i8042_command(&param, I8042_CMD_CTL_TEST)) {
Paul Bollea2a94e72011-03-31 00:11:48 -0700950 pr_err("i8042 controller selftest timeout\n");
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700951 return -ENODEV;
952 }
953
954 if (param == I8042_RET_CTL_TEST)
955 return 0;
956
Paul Bollea2a94e72011-03-31 00:11:48 -0700957 dbg("i8042 controller selftest: %#x != %#x\n",
958 param, I8042_RET_CTL_TEST);
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700959 msleep(50);
960 } while (i++ < 5);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500961
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700962#ifdef CONFIG_X86
963 /*
964 * On x86, we don't fail entire i8042 initialization if controller
965 * reset fails in hopes that keyboard port will still be functional
966 * and user will still get a working keyboard. This is especially
967 * important on netbooks. On other arches we trust hardware more.
968 */
Joe Perches4eb3c302010-11-29 23:33:07 -0800969 pr_info("giving up on controller selftest, continuing anyway...\n");
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500970 return 0;
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700971#else
Paul Bollea2a94e72011-03-31 00:11:48 -0700972 pr_err("i8042 controller selftest failed\n");
Arjan van de Ven5ea2fc62009-04-09 11:36:50 -0700973 return -EIO;
974#endif
Vojtech Pavlik2673c8362005-05-28 02:11:27 -0500975}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977/*
978 * i8042_controller init initializes the i8042 controller, and,
979 * most importantly, sets it into non-xlated mode if that's
980 * desired.
981 */
982
983static int i8042_controller_init(void)
984{
985 unsigned long flags;
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800986 int n = 0;
987 unsigned char ctr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989/*
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800990 * Save the CTR for restore on unload / reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
992
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800993 do {
994 if (n >= 10) {
Joe Perches4eb3c302010-11-29 23:33:07 -0800995 pr_err("Unable to get stable CTR read\n");
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800996 return -EIO;
997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -0800999 if (n != 0)
1000 udelay(50);
1001
1002 if (i8042_command(&ctr[n++ % 2], I8042_CMD_CTL_RCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001003 pr_err("Can't read CTR while initializing i8042\n");
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001004 return -EIO;
1005 }
1006
1007 } while (n < 2 || ctr[0] != ctr[1]);
1008
1009 i8042_initial_ctr = i8042_ctr = ctr[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011/*
1012 * Disable the keyboard interface and interrupt.
1013 */
1014
1015 i8042_ctr |= I8042_CTR_KBDDIS;
1016 i8042_ctr &= ~I8042_CTR_KBDINT;
1017
1018/*
1019 * Handle keylock.
1020 */
1021
1022 spin_lock_irqsave(&i8042_lock, flags);
1023 if (~i8042_read_status() & I8042_STR_KEYLOCK) {
1024 if (i8042_unlock)
1025 i8042_ctr |= I8042_CTR_IGNKEYLOCK;
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001026 else
Joe Perches4eb3c302010-11-29 23:33:07 -08001027 pr_warn("Warning: Keylock active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 spin_unlock_irqrestore(&i8042_lock, flags);
1030
1031/*
1032 * If the chip is configured into nontranslated mode by the BIOS, don't
1033 * bother enabling translating and be happy.
1034 */
1035
1036 if (~i8042_ctr & I8042_CTR_XLATE)
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001037 i8042_direct = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039/*
1040 * Set nontranslated mode for the kbd interface if requested by an option.
1041 * After this the kbd interface becomes a simple serial in/out, like the aux
1042 * interface is. We don't do this by default, since it can confuse notebook
1043 * BIOSes.
1044 */
1045
1046 if (i8042_direct)
1047 i8042_ctr &= ~I8042_CTR_XLATE;
1048
1049/*
1050 * Write CTR back.
1051 */
1052
1053 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001054 pr_err("Can't write CTR while initializing i8042\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001055 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001058/*
1059 * Flush whatever accumulated while we were disabling keyboard port.
1060 */
1061
1062 i8042_flush();
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return 0;
1065}
1066
1067
1068/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001069 * Reset the controller and reset CRT to the original value set by BIOS.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 */
1071
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001072static void i8042_controller_reset(bool s2r_wants_reset)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001073{
1074 i8042_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076/*
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -04001077 * Disable both KBD and AUX interfaces so they don't get in the way
1078 */
1079
1080 i8042_ctr |= I8042_CTR_KBDDIS | I8042_CTR_AUXDIS;
1081 i8042_ctr &= ~(I8042_CTR_KBDINT | I8042_CTR_AUXINT);
1082
Dmitry Torokhovee1e82c2009-11-02 21:57:40 -08001083 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -08001084 pr_warn("Can't write CTR while resetting\n");
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001085
Dmitry Torokhov8d04ddb2007-04-12 01:32:09 -04001086/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 * Disable MUX mode if present.
1088 */
1089
1090 if (i8042_mux_present)
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001091 i8042_set_mux_mode(false, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093/*
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001094 * Reset the controller if requested.
1095 */
1096
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001097 if (i8042_reset == I8042_RESET_ALWAYS ||
1098 (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) {
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001099 i8042_controller_selftest();
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001100 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001101
1102/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * Restore the original control register setting.
1104 */
1105
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001106 if (i8042_command(&i8042_initial_ctr, I8042_CMD_CTL_WCTR))
Joe Perches4eb3c302010-11-29 23:33:07 -08001107 pr_warn("Can't restore CTR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
1110
1111/*
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001112 * i8042_panic_blink() will turn the keyboard LEDs on or off and is called
1113 * when kernel panics. Flashing LEDs is useful for users running X who may
Michael Opdenackeraa5e5dc2013-09-18 06:00:43 +02001114 * not see the console and will help distinguishing panics from "real"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 * lockups.
1116 *
1117 * Note that DELAY has a limit of 10ms so we will not get stuck here
1118 * waiting for KBC to free up even if KBD interrupt is off
1119 */
1120
1121#define DELAY do { mdelay(1); if (++delay > 10) return delay; } while(0)
1122
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001123static long i8042_panic_blink(int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
1125 long delay = 0;
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001126 char led;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
TAMUKI Shoichic7ff0d92010-08-10 18:03:28 -07001128 led = (state) ? 0x01 | 0x04 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 while (i8042_read_status() & I8042_STR_IBF)
1130 DELAY;
Joe Perches4eb3c302010-11-29 23:33:07 -08001131 dbg("%02x -> i8042 (panic blink)\n", 0xed);
Dmitry Torokhov19f3c3e2007-01-18 00:42:31 -05001132 i8042_suppress_kbd_ack = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 i8042_write_data(0xed); /* set leds */
1134 DELAY;
1135 while (i8042_read_status() & I8042_STR_IBF)
1136 DELAY;
1137 DELAY;
Joe Perches4eb3c302010-11-29 23:33:07 -08001138 dbg("%02x -> i8042 (panic blink)\n", led);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 i8042_write_data(led);
1140 DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return delay;
1142}
1143
1144#undef DELAY
1145
Bruno Prémontd35895d2008-05-27 01:36:04 -04001146#ifdef CONFIG_X86
1147static void i8042_dritek_enable(void)
1148{
Christoph Fritz594d6362010-09-29 18:04:21 -07001149 unsigned char param = 0x90;
Bruno Prémontd35895d2008-05-27 01:36:04 -04001150 int error;
1151
1152 error = i8042_command(&param, 0x1059);
1153 if (error)
Joe Perches4eb3c302010-11-29 23:33:07 -08001154 pr_warn("Failed to enable DRITEK extension: %d\n", error);
Bruno Prémontd35895d2008-05-27 01:36:04 -04001155}
1156#endif
1157
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001158#ifdef CONFIG_PM
Dmitry Torokhov7e044e02009-05-09 16:08:05 -07001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/*
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001161 * Here we try to reset everything back to a state we had
1162 * before suspending.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 */
1164
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001165static int i8042_controller_resume(bool s2r_wants_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001167 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001169 error = i8042_controller_check();
1170 if (error)
1171 return error;
Vojtech Pavlik2673c8362005-05-28 02:11:27 -05001172
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001173 if (i8042_reset == I8042_RESET_ALWAYS ||
1174 (i8042_reset == I8042_RESET_ON_S2RAM && s2r_wants_reset)) {
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001175 error = i8042_controller_selftest();
1176 if (error)
1177 return error;
1178 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001179
1180/*
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001181 * Restore original CTR value and disable all ports
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001182 */
1183
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001184 i8042_ctr = i8042_initial_ctr;
1185 if (i8042_direct)
1186 i8042_ctr &= ~I8042_CTR_XLATE;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001187 i8042_ctr |= I8042_CTR_AUXDIS | I8042_CTR_KBDDIS;
1188 i8042_ctr &= ~(I8042_CTR_AUXINT | I8042_CTR_KBDINT);
Vojtech Pavlik2673c8362005-05-28 02:11:27 -05001189 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001190 pr_warn("Can't write CTR to resume, retrying...\n");
Jiri Kosina2f6a77d2008-06-17 11:47:27 -04001191 msleep(50);
1192 if (i8042_command(&i8042_ctr, I8042_CMD_CTL_WCTR)) {
Joe Perches4eb3c302010-11-29 23:33:07 -08001193 pr_err("CTR write retry failed\n");
Jiri Kosina2f6a77d2008-06-17 11:47:27 -04001194 return -EIO;
1195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
1197
Bruno Prémontd35895d2008-05-27 01:36:04 -04001198
1199#ifdef CONFIG_X86
1200 if (i8042_dritek)
1201 i8042_dritek_enable();
1202#endif
1203
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001204 if (i8042_mux_present) {
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001205 if (i8042_set_mux_mode(true, NULL) || i8042_enable_mux_ports())
Joe Perches4eb3c302010-11-29 23:33:07 -08001206 pr_warn("failed to resume active multiplexor, mouse won't work\n");
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001207 } else if (i8042_ports[I8042_AUX_PORT_NO].serio)
1208 i8042_enable_aux_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001210 if (i8042_ports[I8042_KBD_PORT_NO].serio)
1211 i8042_enable_kbd_port();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
David Howells7d12e782006-10-05 14:55:46 +01001213 i8042_interrupt(0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001217
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001218/*
1219 * Here we try to restore the original BIOS settings to avoid
1220 * upsetting it.
1221 */
1222
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001223static int i8042_pm_suspend(struct device *dev)
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001224{
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001225 int i;
1226
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001227 if (pm_suspend_via_firmware())
1228 i8042_controller_reset(true);
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001229
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001230 /* Set up serio interrupts for system wakeup. */
1231 for (i = 0; i < I8042_NUM_PORTS; i++) {
1232 struct serio *serio = i8042_ports[i].serio;
1233
1234 if (serio && device_may_wakeup(&serio->dev))
1235 enable_irq_wake(i8042_ports[i].irq);
1236 }
1237
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001238 return 0;
1239}
1240
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001241static int i8042_pm_resume_noirq(struct device *dev)
1242{
1243 if (!pm_resume_via_firmware())
1244 i8042_interrupt(0, NULL);
1245
1246 return 0;
1247}
1248
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001249static int i8042_pm_resume(struct device *dev)
1250{
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001251 bool want_reset;
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001252 int i;
1253
1254 for (i = 0; i < I8042_NUM_PORTS; i++) {
1255 struct serio *serio = i8042_ports[i].serio;
1256
1257 if (serio && device_may_wakeup(&serio->dev))
1258 disable_irq_wake(i8042_ports[i].irq);
1259 }
1260
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001261 /*
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001262 * If platform firmware was not going to be involved in suspend, we did
1263 * not restore the controller state to whatever it had been at boot
1264 * time, so we do not need to do anything.
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001265 */
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001266 if (!pm_suspend_via_firmware())
1267 return 0;
1268
1269 /*
1270 * We only need to reset the controller if we are resuming after handing
1271 * off control to the platform firmware, otherwise we can simply restore
1272 * the mode.
1273 */
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001274 want_reset = pm_resume_via_firmware();
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001275
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001276 return i8042_controller_resume(want_reset);
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001277}
1278
Alan Jenkinsc2d1a2a2010-02-17 12:17:33 -08001279static int i8042_pm_thaw(struct device *dev)
1280{
1281 i8042_interrupt(0, NULL);
1282
1283 return 0;
1284}
1285
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001286static int i8042_pm_reset(struct device *dev)
1287{
1288 i8042_controller_reset(false);
1289
1290 return 0;
1291}
1292
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001293static int i8042_pm_restore(struct device *dev)
1294{
1295 return i8042_controller_resume(false);
1296}
1297
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001298static const struct dev_pm_ops i8042_pm_ops = {
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001299 .suspend = i8042_pm_suspend,
Rafael J. Wysocki1c5dd132015-10-07 03:03:57 +02001300 .resume_noirq = i8042_pm_resume_noirq,
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001301 .resume = i8042_pm_resume,
Alan Jenkinsc2d1a2a2010-02-17 12:17:33 -08001302 .thaw = i8042_pm_thaw,
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001303 .poweroff = i8042_pm_reset,
1304 .restore = i8042_pm_restore,
1305};
1306
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001307#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309/*
1310 * We need to reset the 8042 back to original mode on system shutdown,
1311 * because otherwise BIOSes will be confused.
1312 */
1313
Russell King3ae5eae2005-11-09 22:32:44 +00001314static void i8042_shutdown(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001316 i8042_controller_reset(false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001319static int __init i8042_create_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct serio *serio;
1322 struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
1323
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001324 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001325 if (!serio)
1326 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001328 serio->id.type = i8042_direct ? SERIO_8042 : SERIO_8042_XL;
1329 serio->write = i8042_dumbkbd ? NULL : i8042_kbd_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001330 serio->start = i8042_start;
1331 serio->stop = i8042_stop;
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001332 serio->close = i8042_port_close;
Dmitry Torokhov40974612016-07-25 11:36:54 -07001333 serio->ps2_cmd_mutex = &i8042_mutex;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001334 serio->port_data = port;
1335 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001336 strlcpy(serio->name, "i8042 KBD port", sizeof(serio->name));
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001337 strlcpy(serio->phys, I8042_KBD_PHYS_DESC, sizeof(serio->phys));
Hans de Goedea7c58682014-04-19 20:47:35 -07001338 strlcpy(serio->firmware_id, i8042_kbd_firmware_id,
1339 sizeof(serio->firmware_id));
Rajat Jain6052abf2020-04-27 17:50:45 -07001340 set_primary_fwnode(&serio->dev, i8042_kbd_fwnode);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001341
1342 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001343 port->irq = I8042_KBD_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001344
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001345 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001348static int __init i8042_create_aux_port(int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 struct serio *serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001351 int port_no = idx < 0 ? I8042_AUX_PORT_NO : I8042_MUX_PORT_NO + idx;
1352 struct i8042_port *port = &i8042_ports[port_no];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Dmitry Torokhovd39969d2005-09-10 12:04:42 -05001354 serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001355 if (!serio)
1356 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001358 serio->id.type = SERIO_8042;
1359 serio->write = i8042_aux_write;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001360 serio->start = i8042_start;
1361 serio->stop = i8042_stop;
Dmitry Torokhov47af45d2016-08-16 17:38:54 -07001362 serio->ps2_cmd_mutex = &i8042_mutex;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001363 serio->port_data = port;
1364 serio->dev.parent = &i8042_platform_device->dev;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001365 if (idx < 0) {
1366 strlcpy(serio->name, "i8042 AUX port", sizeof(serio->name));
1367 strlcpy(serio->phys, I8042_AUX_PHYS_DESC, sizeof(serio->phys));
Hans de Goedea7c58682014-04-19 20:47:35 -07001368 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1369 sizeof(serio->firmware_id));
Dmitry Torokhov5ddbc772009-09-09 19:08:15 -07001370 serio->close = i8042_port_close;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001371 } else {
1372 snprintf(serio->name, sizeof(serio->name), "i8042 AUX%d port", idx);
1373 snprintf(serio->phys, sizeof(serio->phys), I8042_MUX_PHYS_DESC, idx + 1);
Hans de Goede266e43c2014-09-11 10:13:13 -07001374 strlcpy(serio->firmware_id, i8042_aux_firmware_id,
1375 sizeof(serio->firmware_id));
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001376 }
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001377
1378 port->serio = serio;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001379 port->mux = idx;
1380 port->irq = I8042_AUX_IRQ;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001381
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001385static void __init i8042_free_kbd_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001387 kfree(i8042_ports[I8042_KBD_PORT_NO].serio);
1388 i8042_ports[I8042_KBD_PORT_NO].serio = NULL;
1389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001391static void __init i8042_free_aux_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001392{
1393 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001395 for (i = I8042_AUX_PORT_NO; i < I8042_NUM_PORTS; i++) {
1396 kfree(i8042_ports[i].serio);
1397 i8042_ports[i].serio = NULL;
1398 }
1399}
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001400
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001401static void __init i8042_register_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001402{
1403 int i;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001404
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001405 for (i = 0; i < I8042_NUM_PORTS; i++) {
Rafael J. Wysockif13b2062015-03-09 17:03:07 -07001406 struct serio *serio = i8042_ports[i].serio;
1407
Daniel Drake684bec12018-10-01 15:55:22 -07001408 if (!serio)
1409 continue;
1410
1411 printk(KERN_INFO "serio: %s at %#lx,%#lx irq %d\n",
1412 serio->name,
1413 (unsigned long) I8042_DATA_REG,
1414 (unsigned long) I8042_COMMAND_REG,
1415 i8042_ports[i].irq);
1416 serio_register_port(serio);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001417 }
1418}
1419
Bill Pembertone2619cf2012-11-23 21:50:47 -08001420static void i8042_unregister_ports(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001421{
1422 int i;
1423
1424 for (i = 0; i < I8042_NUM_PORTS; i++) {
1425 if (i8042_ports[i].serio) {
1426 serio_unregister_port(i8042_ports[i].serio);
1427 i8042_ports[i].serio = NULL;
1428 }
1429 }
1430}
1431
1432static void i8042_free_irqs(void)
1433{
1434 if (i8042_aux_irq_registered)
1435 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1436 if (i8042_kbd_irq_registered)
1437 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1438
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001439 i8042_aux_irq_registered = i8042_kbd_irq_registered = false;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001440}
1441
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001442static int __init i8042_setup_aux(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001443{
1444 int (*aux_enable)(void);
1445 int error;
1446 int i;
1447
1448 if (i8042_check_aux())
1449 return -ENODEV;
1450
1451 if (i8042_nomux || i8042_check_mux()) {
1452 error = i8042_create_aux_port(-1);
1453 if (error)
1454 goto err_free_ports;
1455 aux_enable = i8042_enable_aux_port;
1456 } else {
1457 for (i = 0; i < I8042_NUM_MUX_PORTS; i++) {
1458 error = i8042_create_aux_port(i);
1459 if (error)
1460 goto err_free_ports;
1461 }
1462 aux_enable = i8042_enable_mux_ports;
1463 }
1464
1465 error = request_irq(I8042_AUX_IRQ, i8042_interrupt, IRQF_SHARED,
1466 "i8042", i8042_platform_device);
1467 if (error)
1468 goto err_free_ports;
1469
1470 if (aux_enable())
1471 goto err_free_irq;
1472
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001473 i8042_aux_irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001474 return 0;
1475
1476 err_free_irq:
1477 free_irq(I8042_AUX_IRQ, i8042_platform_device);
1478 err_free_ports:
1479 i8042_free_aux_ports();
1480 return error;
1481}
1482
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001483static int __init i8042_setup_kbd(void)
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001484{
1485 int error;
1486
1487 error = i8042_create_kbd_port();
1488 if (error)
1489 return error;
1490
1491 error = request_irq(I8042_KBD_IRQ, i8042_interrupt, IRQF_SHARED,
1492 "i8042", i8042_platform_device);
1493 if (error)
1494 goto err_free_port;
1495
1496 error = i8042_enable_kbd_port();
1497 if (error)
1498 goto err_free_irq;
1499
Dmitry Torokhov386b3842009-09-09 19:08:16 -07001500 i8042_kbd_irq_registered = true;
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001501 return 0;
1502
1503 err_free_irq:
1504 free_irq(I8042_KBD_IRQ, i8042_platform_device);
1505 err_free_port:
1506 i8042_free_kbd_port();
1507 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001510static int i8042_kbd_bind_notifier(struct notifier_block *nb,
1511 unsigned long action, void *data)
1512{
1513 struct device *dev = data;
1514 struct serio *serio = to_serio_port(dev);
1515 struct i8042_port *port = serio->port_data;
1516
1517 if (serio != i8042_ports[I8042_KBD_PORT_NO].serio)
1518 return 0;
1519
1520 switch (action) {
1521 case BUS_NOTIFY_BOUND_DRIVER:
1522 port->driver_bound = true;
1523 break;
1524
1525 case BUS_NOTIFY_UNBIND_DRIVER:
1526 port->driver_bound = false;
1527 break;
1528 }
1529
1530 return 0;
1531}
1532
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001533static int __init i8042_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001535 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001537 i8042_platform_device = dev;
1538
Marcos Paulo de Souza930e19242016-10-01 12:07:35 -07001539 if (i8042_reset == I8042_RESET_ALWAYS) {
Dmitry Torokhov1ca56e52010-07-20 20:25:34 -07001540 error = i8042_controller_selftest();
1541 if (error)
1542 return error;
1543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001545 error = i8042_controller_init();
1546 if (error)
1547 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Bruno Prémontd35895d2008-05-27 01:36:04 -04001549#ifdef CONFIG_X86
1550 if (i8042_dritek)
1551 i8042_dritek_enable();
1552#endif
1553
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001554 if (!i8042_noaux) {
1555 error = i8042_setup_aux();
1556 if (error && error != -ENODEV && error != -EBUSY)
1557 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001560 if (!i8042_nokbd) {
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001561 error = i8042_setup_kbd();
1562 if (error)
1563 goto out_fail;
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -05001564 }
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001565/*
1566 * Ok, everything is ready, let's register all serio ports
1567 */
1568 i8042_register_ports();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return 0;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001571
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001572 out_fail:
1573 i8042_free_aux_ports(); /* in case KBD failed but AUX not */
1574 i8042_free_irqs();
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001575 i8042_controller_reset(false);
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001576 i8042_platform_device = NULL;
Dmitry Torokhov0854e522005-09-04 01:41:27 -05001577
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001578 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Bill Pembertone2619cf2012-11-23 21:50:47 -08001581static int i8042_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001583 i8042_unregister_ports();
1584 i8042_free_irqs();
Dmitry Torokhov1729ad12011-10-29 12:37:06 -07001585 i8042_controller_reset(false);
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001586 i8042_platform_device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001588 return 0;
1589}
1590
1591static struct platform_driver i8042_driver = {
1592 .driver = {
1593 .name = "i8042",
Dmitry Torokhovebd77682009-07-22 21:51:32 -07001594#ifdef CONFIG_PM
1595 .pm = &i8042_pm_ops,
1596#endif
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001597 },
Bill Pemberton1cb0aa82012-11-23 21:27:39 -08001598 .remove = i8042_remove,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001599 .shutdown = i8042_shutdown,
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001600};
1601
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001602static struct notifier_block i8042_kbd_bind_notifier_block = {
1603 .notifier_call = i8042_kbd_bind_notifier,
1604};
1605
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001606static int __init i8042_init(void)
1607{
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001608 struct platform_device *pdev;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001609 int err;
1610
1611 dbg_init();
1612
1613 err = i8042_platform_init();
1614 if (err)
1615 return err;
1616
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001617 err = i8042_controller_check();
1618 if (err)
1619 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001620
Dmitry Torokhovec62e1c2010-03-08 22:37:09 -08001621 pdev = platform_create_bundle(&i8042_driver, i8042_probe, NULL, 0, NULL, 0);
1622 if (IS_ERR(pdev)) {
1623 err = PTR_ERR(pdev);
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001624 goto err_platform_exit;
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001625 }
1626
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001627 bus_register_notifier(&serio_bus, &i8042_kbd_bind_notifier_block);
Dmitry Torokhovde9ce702006-09-10 21:57:21 -04001628 panic_blink = i8042_panic_blink;
1629
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001630 return 0;
1631
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001632 err_platform_exit:
1633 i8042_platform_exit();
Dmitry Torokhov87fd6312005-12-28 01:25:11 -05001634 return err;
1635}
1636
1637static void __exit i8042_exit(void)
1638{
Dmitry Torokhovf8113412009-09-09 19:08:17 -07001639 platform_device_unregister(i8042_platform_device);
Dmitry Torokhovaf045b82010-08-31 17:27:02 -07001640 platform_driver_unregister(&i8042_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 i8042_platform_exit();
1642
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001643 bus_unregister_notifier(&serio_bus, &i8042_kbd_bind_notifier_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 panic_blink = NULL;
1645}
1646
1647module_init(i8042_init);
1648module_exit(i8042_exit);