blob: eea45c0e8606cf8147a371c7ec4bc3e6df2c63c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _I8042_X86IA64IO_H
2#define _I8042_X86IA64IO_H
3
4/*
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 */
9
10/*
11 * Names.
12 */
13
14#define I8042_KBD_PHYS_DESC "isa0060/serio0"
15#define I8042_AUX_PHYS_DESC "isa0060/serio1"
16#define I8042_MUX_PHYS_DESC "isa0060/serio%d"
17
18/*
19 * IRQs.
20 */
21
22#if defined(__ia64__)
23# define I8042_MAP_IRQ(x) isa_irq_to_vector((x))
24#else
25# define I8042_MAP_IRQ(x) (x)
26#endif
27
28#define I8042_KBD_IRQ i8042_kbd_irq
29#define I8042_AUX_IRQ i8042_aux_irq
30
31static int i8042_kbd_irq;
32static int i8042_aux_irq;
33
34/*
35 * Register numbers.
36 */
37
38#define I8042_COMMAND_REG i8042_command_reg
39#define I8042_STATUS_REG i8042_command_reg
40#define I8042_DATA_REG i8042_data_reg
41
42static int i8042_command_reg = 0x64;
43static int i8042_data_reg = 0x60;
44
45
46static inline int i8042_read_data(void)
47{
48 return inb(I8042_DATA_REG);
49}
50
51static inline int i8042_read_status(void)
52{
53 return inb(I8042_STATUS_REG);
54}
55
56static inline void i8042_write_data(int val)
57{
58 outb(val, I8042_DATA_REG);
59}
60
61static inline void i8042_write_command(int val)
62{
63 outb(val, I8042_COMMAND_REG);
64}
65
Jiri Kosinac3a34f42008-05-28 01:10:52 -040066#ifdef CONFIG_X86
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#include <linux/dmi.h>
69
70static struct dmi_system_id __initdata i8042_dmi_noloop_table[] = {
71 {
Dmitry Torokhov90245c12007-06-12 00:33:27 -040072 /* AUX LOOP command does not raise AUX IRQ */
73 .ident = "ASUS P65UP5",
74 .matches = {
75 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
76 DMI_MATCH(DMI_BOARD_NAME, "P/I-P65UP5"),
77 DMI_MATCH(DMI_BOARD_VERSION, "REV 2.X"),
78 },
79 },
80 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 .ident = "Compaq Proliant 8500",
82 .matches = {
83 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
84 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
85 DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
86 },
87 },
88 {
89 .ident = "Compaq Proliant DL760",
90 .matches = {
91 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
92 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
93 DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
94 },
95 },
Ben Collins6020baf2006-01-05 23:00:38 -050096 {
97 .ident = "OQO Model 01",
98 .matches = {
99 DMI_MATCH(DMI_SYS_VENDOR, "OQO"),
100 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"),
101 DMI_MATCH(DMI_PRODUCT_VERSION, "00"),
102 },
103 },
Dmitry Torokhov8c4df742007-06-12 00:33:32 -0400104 {
105 /* AUX LOOP does not work properly */
106 .ident = "ULI EV4873",
107 .matches = {
108 DMI_MATCH(DMI_SYS_VENDOR, "ULI"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "EV4873"),
110 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
111 },
112 },
Jiri Kosina8bf42152007-11-21 14:17:38 -0500113 {
114 .ident = "Microsoft Virtual Machine",
115 .matches = {
116 DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
117 DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
118 DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
119 },
120 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 { }
122};
123
124/*
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500125 * Some Fujitsu notebooks are having trouble with touchpads if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * active multiplexing mode is activated. Luckily they don't have
127 * external PS/2 ports so we can safely disable it.
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500128 * ... apparently some Toshibas don't like MUX mode either and
129 * die horrible death on reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 */
131static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = {
132 {
133 .ident = "Fujitsu Lifebook P7010/P7010D",
134 .matches = {
135 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
136 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
137 },
138 },
139 {
Dmitry Torokhovbb06ec32006-12-08 01:36:32 -0500140 .ident = "Fujitsu Lifebook P7010",
141 .matches = {
142 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
143 DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
144 },
145 },
146 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .ident = "Fujitsu Lifebook P5020D",
148 .matches = {
149 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
150 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
151 },
152 },
153 {
154 .ident = "Fujitsu Lifebook S2000",
155 .matches = {
156 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
157 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
158 },
159 },
160 {
Dmitry Torokhovb4ff99b2005-05-28 02:12:10 -0500161 .ident = "Fujitsu Lifebook S6230",
162 .matches = {
163 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
164 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
165 },
166 },
167 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 .ident = "Fujitsu T70H",
169 .matches = {
170 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
171 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
172 },
173 },
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500174 {
Vojtech Pavlik20f07942005-07-11 01:06:28 -0500175 .ident = "Fujitsu-Siemens Lifebook T3010",
176 .matches = {
177 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
178 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
179 },
180 },
181 {
Dmitry Torokhov7545c242005-09-04 01:42:10 -0500182 .ident = "Fujitsu-Siemens Lifebook E4010",
183 .matches = {
184 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
185 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
186 },
187 },
188 {
Jiri Kosina3f79b1e2008-01-30 16:34:52 -0500189 .ident = "Fujitsu-Siemens Amilo Pro 2010",
190 .matches = {
191 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
192 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
193 },
194 },
195 {
Jiri Kosinaefd51842008-06-06 00:56:43 -0400196 .ident = "Fujitsu-Siemens Amilo Pro 2030",
197 .matches = {
198 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
199 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
200 },
201 },
202 {
Dmitry Torokhov6e782582007-03-16 00:59:42 -0400203 /*
Dmitry Torokhovcc8310e2007-04-25 00:40:32 -0400204 * No data is coming from the touchscreen unless KBC
205 * is in legacy mode.
206 */
207 .ident = "Panasonic CF-29",
208 .matches = {
209 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
210 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
211 },
212 },
213 {
214 /*
Dmitry Torokhov6e782582007-03-16 00:59:42 -0400215 * Errors on MUX ports are reported without raising AUXDATA
216 * causing "spurious NAK" messages.
217 */
218 .ident = "HP Pavilion DV4017EA",
219 .matches = {
220 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
221 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
222 },
223 },
224 {
Dmitry Torokhov9d9d50b2007-06-28 00:44:27 -0400225 /*
226 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
227 */
228 .ident = "HP Pavilion ZT1000",
229 .matches = {
230 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
231 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
232 DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
233 },
234 },
235 {
Elvis Pranskevichus749aea72007-09-04 23:18:21 -0400236 /*
237 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
238 */
239 .ident = "HP Pavilion DV4270ca",
240 .matches = {
241 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
242 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
243 },
244 },
245 {
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500246 .ident = "Toshiba P10",
247 .matches = {
248 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
249 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
250 },
251 },
Dmitry Torokhov865190c2005-07-11 01:06:06 -0500252 {
Dmitry Torokhova91eaa12006-09-14 01:31:06 -0400253 .ident = "Toshiba Equium A110",
254 .matches = {
255 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
256 DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
257 },
258 },
259 {
Dmitry Torokhov865190c2005-07-11 01:06:06 -0500260 .ident = "Alienware Sentia",
261 .matches = {
262 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
263 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
264 },
265 },
Dmitry Torokhov4eb38ac2005-12-21 00:51:51 -0500266 {
267 .ident = "Sharp Actius MM20",
268 .matches = {
269 DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
270 DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
271 },
272 },
Vojtech Pavlik3dd01a82006-01-14 00:24:06 -0500273 {
274 .ident = "Sony Vaio FS-115b",
275 .matches = {
276 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
277 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
278 },
279 },
Cjacker Huange2df4522006-08-08 23:38:22 -0400280 {
281 .ident = "Amoi M636/A737",
282 .matches = {
283 DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
284 DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
285 },
286 },
Jiri Kosina2a2dcd62008-03-10 03:08:54 -0700287 {
288 .ident = "Lenovo 3000 n100",
289 .matches = {
290 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
291 DMI_MATCH(DMI_PRODUCT_VERSION, "3000 N100"),
292 },
293 },
Jiri Kosina0376bce2008-07-03 10:45:38 -0400294 {
295 .ident = "Acer Aspire 1360",
296 .matches = {
297 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
298 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
299 },
300 },
Jiri Kosina5b5b43d2008-07-03 11:00:28 -0400301 {
302 .ident = "Gericom Bellagio",
303 .matches = {
304 DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
305 DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
306 },
307 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 { }
309};
310
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400311#ifdef CONFIG_PNP
312static struct dmi_system_id __initdata i8042_dmi_nopnp_table[] = {
313 {
314 .ident = "Intel MBO Desktop D845PESV",
315 .matches = {
316 DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
317 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
318 },
319 },
320 { }
321};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#endif
323
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500324/*
325 * Some Wistron based laptops need us to explicitly enable the 'Dritek
326 * keyboard extension' to make their extra keys start generating scancodes.
327 * Originally, this was just confined to older laptops, but a few Acer laptops
328 * have turned up in 2007 that also need this again.
329 */
330static struct dmi_system_id __initdata i8042_dmi_dritek_table[] = {
331 {
332 .ident = "Acer Aspire 5630",
333 .matches = {
334 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
335 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
336 },
337 },
338 {
339 .ident = "Acer Aspire 5650",
340 .matches = {
341 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
342 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
343 },
344 },
345 {
346 .ident = "Acer Aspire 5680",
347 .matches = {
348 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
349 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
350 },
351 },
352 {
Carlos Corbacho5799ddb2008-01-30 16:34:12 -0500353 .ident = "Acer Aspire 9110",
354 .matches = {
355 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
356 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
357 },
358 },
359 {
Bruno Prémont65e660a2008-05-20 13:47:28 -0400360 .ident = "Acer TravelMate 660",
361 .matches = {
362 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
363 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
364 },
365 },
366 {
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500367 .ident = "Acer TravelMate 2490",
368 .matches = {
369 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
370 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
371 },
372 },
373 { }
374};
375
376#endif /* CONFIG_X86 */
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#ifdef CONFIG_PNP
379#include <linux/pnp.h>
380
381static int i8042_pnp_kbd_registered;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500382static unsigned int i8042_pnp_kbd_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static int i8042_pnp_aux_registered;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500384static unsigned int i8042_pnp_aux_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386static int i8042_pnp_command_reg;
387static int i8042_pnp_data_reg;
388static int i8042_pnp_kbd_irq;
389static int i8042_pnp_aux_irq;
390
391static char i8042_pnp_kbd_name[32];
392static char i8042_pnp_aux_name[32];
393
394static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
395{
396 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
397 i8042_pnp_data_reg = pnp_port_start(dev,0);
398
399 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
400 i8042_pnp_command_reg = pnp_port_start(dev, 1);
401
402 if (pnp_irq_valid(dev,0))
403 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
404
Roel Kluin8c6deb92008-04-18 00:25:18 -0400405 strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (strlen(pnp_dev_name(dev))) {
Roel Kluin8c6deb92008-04-18 00:25:18 -0400407 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
408 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500411 i8042_pnp_kbd_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return 0;
413}
414
415static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
416{
417 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
418 i8042_pnp_data_reg = pnp_port_start(dev,0);
419
420 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
421 i8042_pnp_command_reg = pnp_port_start(dev, 1);
422
423 if (pnp_irq_valid(dev, 0))
424 i8042_pnp_aux_irq = pnp_irq(dev, 0);
425
Roel Kluin8c6deb92008-04-18 00:25:18 -0400426 strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (strlen(pnp_dev_name(dev))) {
Roel Kluin8c6deb92008-04-18 00:25:18 -0400428 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
429 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500432 i8042_pnp_aux_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
436static struct pnp_device_id pnp_kbd_devids[] = {
437 { .id = "PNP0303", .driver_data = 0 },
438 { .id = "PNP030b", .driver_data = 0 },
439 { .id = "", },
440};
441
442static struct pnp_driver i8042_pnp_kbd_driver = {
443 .name = "i8042 kbd",
444 .id_table = pnp_kbd_devids,
445 .probe = i8042_pnp_kbd_probe,
446};
447
448static struct pnp_device_id pnp_aux_devids[] = {
Dmitry Torokhovb9973952007-04-25 00:40:53 -0400449 { .id = "FJC6000", .driver_data = 0 },
450 { .id = "FJC6001", .driver_data = 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 { .id = "PNP0f03", .driver_data = 0 },
452 { .id = "PNP0f0b", .driver_data = 0 },
453 { .id = "PNP0f0e", .driver_data = 0 },
454 { .id = "PNP0f12", .driver_data = 0 },
455 { .id = "PNP0f13", .driver_data = 0 },
456 { .id = "PNP0f19", .driver_data = 0 },
457 { .id = "PNP0f1c", .driver_data = 0 },
458 { .id = "SYN0801", .driver_data = 0 },
459 { .id = "", },
460};
461
462static struct pnp_driver i8042_pnp_aux_driver = {
463 .name = "i8042 aux",
464 .id_table = pnp_aux_devids,
465 .probe = i8042_pnp_aux_probe,
466};
467
468static void i8042_pnp_exit(void)
469{
Kurt Garloff74af42b2005-05-28 02:11:38 -0500470 if (i8042_pnp_kbd_registered) {
471 i8042_pnp_kbd_registered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 pnp_unregister_driver(&i8042_pnp_kbd_driver);
Kurt Garloff74af42b2005-05-28 02:11:38 -0500473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Kurt Garloff74af42b2005-05-28 02:11:38 -0500475 if (i8042_pnp_aux_registered) {
476 i8042_pnp_aux_registered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 pnp_unregister_driver(&i8042_pnp_aux_driver);
Kurt Garloff74af42b2005-05-28 02:11:38 -0500478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500481static int __init i8042_pnp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500483 char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400484 int pnp_data_busted = 0;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500485 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400487#ifdef CONFIG_X86
488 if (dmi_check_system(i8042_dmi_nopnp_table))
489 i8042_nopnp = 1;
490#endif
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (i8042_nopnp) {
Vojtech Pavlik39fa5802005-05-28 02:11:16 -0500493 printk(KERN_INFO "i8042: PNP detection disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return 0;
495 }
496
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500497 err = pnp_register_driver(&i8042_pnp_kbd_driver);
498 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 i8042_pnp_kbd_registered = 1;
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500500
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500501 err = pnp_register_driver(&i8042_pnp_aux_driver);
502 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 i8042_pnp_aux_registered = 1;
504
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500505 if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 i8042_pnp_exit();
507#if defined(__ia64__)
508 return -ENODEV;
509#else
Dmitry Torokhov5a72afc2005-05-28 02:11:32 -0500510 printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return 0;
512#endif
513 }
514
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500515 if (i8042_pnp_kbd_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500516 snprintf(kbd_irq_str, sizeof(kbd_irq_str),
517 "%d", i8042_pnp_kbd_irq);
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500518 if (i8042_pnp_aux_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500519 snprintf(aux_irq_str, sizeof(aux_irq_str),
520 "%d", i8042_pnp_aux_irq);
521
522 printk(KERN_INFO "PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %s%s%s\n",
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500523 i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500524 i8042_pnp_aux_name,
525 i8042_pnp_data_reg, i8042_pnp_command_reg,
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500526 kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500527 aux_irq_str);
528
529#if defined(__ia64__)
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500530 if (!i8042_pnp_kbd_devices)
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -0500531 i8042_nokbd = 1;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500532 if (!i8042_pnp_aux_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500533 i8042_noaux = 1;
534#endif
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400537 i8042_pnp_data_reg != i8042_data_reg) ||
538 !i8042_pnp_data_reg) {
539 printk(KERN_WARNING
540 "PNP: PS/2 controller has invalid data port %#x; "
541 "using default %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 i8042_pnp_data_reg, i8042_data_reg);
543 i8042_pnp_data_reg = i8042_data_reg;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400544 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546
547 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400548 i8042_pnp_command_reg != i8042_command_reg) ||
549 !i8042_pnp_command_reg) {
550 printk(KERN_WARNING
551 "PNP: PS/2 controller has invalid command port %#x; "
552 "using default %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 i8042_pnp_command_reg, i8042_command_reg);
554 i8042_pnp_command_reg = i8042_command_reg;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400555 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -0500558 if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400559 printk(KERN_WARNING
560 "PNP: PS/2 controller doesn't have KBD irq; "
561 "using default %d\n", i8042_kbd_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 i8042_pnp_kbd_irq = i8042_kbd_irq;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400563 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500566 if (!i8042_noaux && !i8042_pnp_aux_irq) {
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400567 if (!pnp_data_busted && i8042_pnp_kbd_irq) {
568 printk(KERN_WARNING
569 "PNP: PS/2 appears to have AUX port disabled, "
570 "if this is incorrect please boot with "
571 "i8042.nopnp\n");
572 i8042_noaux = 1;
573 } else {
574 printk(KERN_WARNING
575 "PNP: PS/2 controller doesn't have AUX irq; "
576 "using default %d\n", i8042_aux_irq);
577 i8042_pnp_aux_irq = i8042_aux_irq;
578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 i8042_data_reg = i8042_pnp_data_reg;
582 i8042_command_reg = i8042_pnp_command_reg;
583 i8042_kbd_irq = i8042_pnp_kbd_irq;
584 i8042_aux_irq = i8042_pnp_aux_irq;
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
587}
588
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500589#else
590static inline int i8042_pnp_init(void) { return 0; }
591static inline void i8042_pnp_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592#endif
593
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500594static int __init i8042_platform_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500596 int retval;
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598/*
599 * On ix86 platforms touching the i8042 data register region can do really
600 * bad things. Because of this the region is always reserved on ix86 boxes.
601 *
602 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500603 * return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605
606 i8042_kbd_irq = I8042_MAP_IRQ(1);
607 i8042_aux_irq = I8042_MAP_IRQ(12);
608
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500609 retval = i8042_pnp_init();
610 if (retval)
611 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613#if defined(__ia64__)
614 i8042_reset = 1;
615#endif
616
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400617#ifdef CONFIG_X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (dmi_check_system(i8042_dmi_noloop_table))
619 i8042_noloop = 1;
620
621 if (dmi_check_system(i8042_dmi_nomux_table))
622 i8042_nomux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500624 if (dmi_check_system(i8042_dmi_dritek_table))
625 i8042_dritek = 1;
626#endif /* CONFIG_X86 */
627
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500628 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631static inline void i8042_platform_exit(void)
632{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 i8042_pnp_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636#endif /* _I8042_X86IA64IO_H */