blob: 6fa2deff744663574fcd31f3f28a0950f083a1b6 [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 */
Dmitry Torokhov87d91732008-07-19 00:35:43 -040073 .ident = "Arima-Rioworks HDAMB",
74 .matches = {
75 DMI_MATCH(DMI_BOARD_VENDOR, "RIOWORKS"),
76 DMI_MATCH(DMI_BOARD_NAME, "HDAMB"),
77 DMI_MATCH(DMI_BOARD_VERSION, "Rev E"),
78 },
79 },
80 {
81 /* AUX LOOP command does not raise AUX IRQ */
Dmitry Torokhov90245c12007-06-12 00:33:27 -040082 .ident = "ASUS P65UP5",
83 .matches = {
84 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
85 DMI_MATCH(DMI_BOARD_NAME, "P/I-P65UP5"),
86 DMI_MATCH(DMI_BOARD_VERSION, "REV 2.X"),
87 },
88 },
89 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .ident = "Compaq Proliant 8500",
91 .matches = {
92 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
93 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
94 DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
95 },
96 },
97 {
98 .ident = "Compaq Proliant DL760",
99 .matches = {
100 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
101 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
102 DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
103 },
104 },
Ben Collins6020baf2006-01-05 23:00:38 -0500105 {
106 .ident = "OQO Model 01",
107 .matches = {
108 DMI_MATCH(DMI_SYS_VENDOR, "OQO"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"),
110 DMI_MATCH(DMI_PRODUCT_VERSION, "00"),
111 },
112 },
Dmitry Torokhov8c4df742007-06-12 00:33:32 -0400113 {
114 /* AUX LOOP does not work properly */
115 .ident = "ULI EV4873",
116 .matches = {
117 DMI_MATCH(DMI_SYS_VENDOR, "ULI"),
118 DMI_MATCH(DMI_PRODUCT_NAME, "EV4873"),
119 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
120 },
121 },
Jiri Kosina8bf42152007-11-21 14:17:38 -0500122 {
123 .ident = "Microsoft Virtual Machine",
124 .matches = {
125 DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
126 DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
127 DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
128 },
129 },
Dmitry Torokhov89cdb8c2008-07-03 11:00:28 -0400130 {
131 .ident = "Medion MAM 2070",
132 .matches = {
133 DMI_MATCH(DMI_SYS_VENDOR, "Notebook"),
134 DMI_MATCH(DMI_PRODUCT_NAME, "MAM 2070"),
135 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
136 },
137 },
Stefan Bader2c6f2cb2008-10-16 22:00:56 -0400138 {
139 .ident = "Blue FB5601",
140 .matches = {
141 DMI_MATCH(DMI_SYS_VENDOR, "blue"),
142 DMI_MATCH(DMI_PRODUCT_NAME, "FB5601"),
143 DMI_MATCH(DMI_PRODUCT_VERSION, "M606"),
144 },
145 },
Ozan Çağlayana6f66dd2008-12-20 04:04:51 -0500146 {
147 .ident = "Gigabyte M912",
148 .matches = {
149 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
150 DMI_MATCH(DMI_PRODUCT_NAME, "M912"),
151 DMI_MATCH(DMI_PRODUCT_VERSION, "01"),
152 },
153 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 { }
155};
156
157/*
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500158 * Some Fujitsu notebooks are having trouble with touchpads if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * active multiplexing mode is activated. Luckily they don't have
160 * external PS/2 ports so we can safely disable it.
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500161 * ... apparently some Toshibas don't like MUX mode either and
162 * die horrible death on reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
164static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = {
165 {
166 .ident = "Fujitsu Lifebook P7010/P7010D",
167 .matches = {
168 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
169 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
170 },
171 },
172 {
Dmitry Torokhovbb06ec32006-12-08 01:36:32 -0500173 .ident = "Fujitsu Lifebook P7010",
174 .matches = {
175 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
176 DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
177 },
178 },
179 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .ident = "Fujitsu Lifebook P5020D",
181 .matches = {
182 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
183 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
184 },
185 },
186 {
187 .ident = "Fujitsu Lifebook S2000",
188 .matches = {
189 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
190 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
191 },
192 },
193 {
Dmitry Torokhovb4ff99b2005-05-28 02:12:10 -0500194 .ident = "Fujitsu Lifebook S6230",
195 .matches = {
196 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
197 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
198 },
199 },
200 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .ident = "Fujitsu T70H",
202 .matches = {
203 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
204 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
205 },
206 },
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500207 {
Vojtech Pavlik20f07942005-07-11 01:06:28 -0500208 .ident = "Fujitsu-Siemens Lifebook T3010",
209 .matches = {
210 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
211 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
212 },
213 },
214 {
Dmitry Torokhov7545c242005-09-04 01:42:10 -0500215 .ident = "Fujitsu-Siemens Lifebook E4010",
216 .matches = {
217 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
218 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
219 },
220 },
221 {
Jiri Kosina3f79b1e2008-01-30 16:34:52 -0500222 .ident = "Fujitsu-Siemens Amilo Pro 2010",
223 .matches = {
224 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
225 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
226 },
227 },
228 {
Jiri Kosinaefd51842008-06-06 00:56:43 -0400229 .ident = "Fujitsu-Siemens Amilo Pro 2030",
230 .matches = {
231 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
232 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
233 },
234 },
235 {
Dmitry Torokhov6e782582007-03-16 00:59:42 -0400236 /*
Dmitry Torokhovcc8310e2007-04-25 00:40:32 -0400237 * No data is coming from the touchscreen unless KBC
238 * is in legacy mode.
239 */
240 .ident = "Panasonic CF-29",
241 .matches = {
242 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
243 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
244 },
245 },
246 {
247 /*
Dmitry Torokhov6e782582007-03-16 00:59:42 -0400248 * Errors on MUX ports are reported without raising AUXDATA
249 * causing "spurious NAK" messages.
250 */
251 .ident = "HP Pavilion DV4017EA",
252 .matches = {
253 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
254 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
255 },
256 },
257 {
Dmitry Torokhov9d9d50b2007-06-28 00:44:27 -0400258 /*
259 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
260 */
261 .ident = "HP Pavilion ZT1000",
262 .matches = {
263 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
264 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
265 DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
266 },
267 },
268 {
Elvis Pranskevichus749aea72007-09-04 23:18:21 -0400269 /*
270 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
271 */
272 .ident = "HP Pavilion DV4270ca",
273 .matches = {
274 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
275 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
276 },
277 },
278 {
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500279 .ident = "Toshiba P10",
280 .matches = {
281 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
282 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
283 },
284 },
Dmitry Torokhov865190c2005-07-11 01:06:06 -0500285 {
Dmitry Torokhova91eaa12006-09-14 01:31:06 -0400286 .ident = "Toshiba Equium A110",
287 .matches = {
288 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
289 DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
290 },
291 },
292 {
Dmitry Torokhov865190c2005-07-11 01:06:06 -0500293 .ident = "Alienware Sentia",
294 .matches = {
295 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
296 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
297 },
298 },
Dmitry Torokhov4eb38ac2005-12-21 00:51:51 -0500299 {
300 .ident = "Sharp Actius MM20",
301 .matches = {
302 DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
303 DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
304 },
305 },
Vojtech Pavlik3dd01a82006-01-14 00:24:06 -0500306 {
307 .ident = "Sony Vaio FS-115b",
308 .matches = {
309 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
310 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
311 },
312 },
Cjacker Huange2df4522006-08-08 23:38:22 -0400313 {
314 .ident = "Amoi M636/A737",
315 .matches = {
316 DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
317 DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
318 },
319 },
Jiri Kosina2a2dcd62008-03-10 03:08:54 -0700320 {
321 .ident = "Lenovo 3000 n100",
322 .matches = {
323 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
Jiri Kosina9ce1ca22008-09-04 22:28:48 -0400324 DMI_MATCH(DMI_PRODUCT_NAME, "076804U"),
Jiri Kosina2a2dcd62008-03-10 03:08:54 -0700325 },
326 },
Jiri Kosina0376bce2008-07-03 10:45:38 -0400327 {
328 .ident = "Acer Aspire 1360",
329 .matches = {
330 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
331 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
332 },
333 },
Jiri Kosina5b5b43d2008-07-03 11:00:28 -0400334 {
335 .ident = "Gericom Bellagio",
336 .matches = {
337 DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
338 DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
339 },
340 },
Colin B Macdonald5bd8a052008-10-11 18:16:38 -0400341 {
342 .ident = "IBM 2656",
343 .matches = {
344 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
345 DMI_MATCH(DMI_PRODUCT_NAME, "2656"),
346 },
347 },
Herton Ronaldo Krzesinski786b11c2008-11-11 09:37:14 -0500348 {
349 .ident = "Dell XPS M1530",
350 .matches = {
351 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
352 DMI_MATCH(DMI_PRODUCT_NAME, "XPS M1530"),
353 },
354 },
Dmitry Torokhov5f4ba042008-11-14 13:32:42 -0500355 {
356 .ident = "Compal HEL80I",
357 .matches = {
358 DMI_MATCH(DMI_SYS_VENDOR, "COMPAL"),
359 DMI_MATCH(DMI_PRODUCT_NAME, "HEL80I"),
360 },
361 },
Jiri Kosina9334e902009-01-06 01:35:45 -0800362 {
363 .ident = "Dell Vostro 1510",
364 .matches = {
365 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
366 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro1510"),
367 },
368 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 { }
370};
371
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400372#ifdef CONFIG_PNP
373static struct dmi_system_id __initdata i8042_dmi_nopnp_table[] = {
374 {
375 .ident = "Intel MBO Desktop D845PESV",
376 .matches = {
377 DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
378 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
379 },
380 },
381 { }
382};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#endif
384
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500385/*
386 * Some Wistron based laptops need us to explicitly enable the 'Dritek
387 * keyboard extension' to make their extra keys start generating scancodes.
388 * Originally, this was just confined to older laptops, but a few Acer laptops
389 * have turned up in 2007 that also need this again.
390 */
391static struct dmi_system_id __initdata i8042_dmi_dritek_table[] = {
392 {
393 .ident = "Acer Aspire 5630",
394 .matches = {
395 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
396 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
397 },
398 },
399 {
400 .ident = "Acer Aspire 5650",
401 .matches = {
402 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
403 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
404 },
405 },
406 {
407 .ident = "Acer Aspire 5680",
408 .matches = {
409 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
410 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
411 },
412 },
413 {
Carlos Corbacho0e7e92f2008-07-07 08:55:31 -0400414 .ident = "Acer Aspire 5720",
415 .matches = {
416 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
417 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
418 },
419 },
420 {
Carlos Corbacho5799ddb2008-01-30 16:34:12 -0500421 .ident = "Acer Aspire 9110",
422 .matches = {
423 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
424 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
425 },
426 },
427 {
Bruno Prémont65e660a2008-05-20 13:47:28 -0400428 .ident = "Acer TravelMate 660",
429 .matches = {
430 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
431 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
432 },
433 },
434 {
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500435 .ident = "Acer TravelMate 2490",
436 .matches = {
437 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
438 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
439 },
440 },
Carlos Corbacho8e4ae102008-08-06 14:28:43 -0400441 {
442 .ident = "Acer TravelMate 4280",
443 .matches = {
444 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
445 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4280"),
446 },
447 },
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500448 { }
449};
450
451#endif /* CONFIG_X86 */
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453#ifdef CONFIG_PNP
454#include <linux/pnp.h>
455
456static int i8042_pnp_kbd_registered;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500457static unsigned int i8042_pnp_kbd_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458static int i8042_pnp_aux_registered;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500459static unsigned int i8042_pnp_aux_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461static int i8042_pnp_command_reg;
462static int i8042_pnp_data_reg;
463static int i8042_pnp_kbd_irq;
464static int i8042_pnp_aux_irq;
465
466static char i8042_pnp_kbd_name[32];
467static char i8042_pnp_aux_name[32];
468
469static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
470{
471 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
472 i8042_pnp_data_reg = pnp_port_start(dev,0);
473
474 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
475 i8042_pnp_command_reg = pnp_port_start(dev, 1);
476
477 if (pnp_irq_valid(dev,0))
478 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
479
Roel Kluin8c6deb92008-04-18 00:25:18 -0400480 strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (strlen(pnp_dev_name(dev))) {
Roel Kluin8c6deb92008-04-18 00:25:18 -0400482 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
483 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500486 i8042_pnp_kbd_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return 0;
488}
489
490static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
491{
492 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
493 i8042_pnp_data_reg = pnp_port_start(dev,0);
494
495 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
496 i8042_pnp_command_reg = pnp_port_start(dev, 1);
497
498 if (pnp_irq_valid(dev, 0))
499 i8042_pnp_aux_irq = pnp_irq(dev, 0);
500
Roel Kluin8c6deb92008-04-18 00:25:18 -0400501 strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (strlen(pnp_dev_name(dev))) {
Roel Kluin8c6deb92008-04-18 00:25:18 -0400503 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
504 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500507 i8042_pnp_aux_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return 0;
509}
510
511static struct pnp_device_id pnp_kbd_devids[] = {
512 { .id = "PNP0303", .driver_data = 0 },
513 { .id = "PNP030b", .driver_data = 0 },
514 { .id = "", },
515};
516
517static struct pnp_driver i8042_pnp_kbd_driver = {
518 .name = "i8042 kbd",
519 .id_table = pnp_kbd_devids,
520 .probe = i8042_pnp_kbd_probe,
521};
522
523static struct pnp_device_id pnp_aux_devids[] = {
Dmitry Torokhovb9973952007-04-25 00:40:53 -0400524 { .id = "FJC6000", .driver_data = 0 },
525 { .id = "FJC6001", .driver_data = 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 { .id = "PNP0f03", .driver_data = 0 },
527 { .id = "PNP0f0b", .driver_data = 0 },
528 { .id = "PNP0f0e", .driver_data = 0 },
529 { .id = "PNP0f12", .driver_data = 0 },
530 { .id = "PNP0f13", .driver_data = 0 },
531 { .id = "PNP0f19", .driver_data = 0 },
532 { .id = "PNP0f1c", .driver_data = 0 },
533 { .id = "SYN0801", .driver_data = 0 },
534 { .id = "", },
535};
536
537static struct pnp_driver i8042_pnp_aux_driver = {
538 .name = "i8042 aux",
539 .id_table = pnp_aux_devids,
540 .probe = i8042_pnp_aux_probe,
541};
542
543static void i8042_pnp_exit(void)
544{
Kurt Garloff74af42b2005-05-28 02:11:38 -0500545 if (i8042_pnp_kbd_registered) {
546 i8042_pnp_kbd_registered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 pnp_unregister_driver(&i8042_pnp_kbd_driver);
Kurt Garloff74af42b2005-05-28 02:11:38 -0500548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Kurt Garloff74af42b2005-05-28 02:11:38 -0500550 if (i8042_pnp_aux_registered) {
551 i8042_pnp_aux_registered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 pnp_unregister_driver(&i8042_pnp_aux_driver);
Kurt Garloff74af42b2005-05-28 02:11:38 -0500553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500556static int __init i8042_pnp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500558 char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400559 int pnp_data_busted = 0;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500560 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400562#ifdef CONFIG_X86
563 if (dmi_check_system(i8042_dmi_nopnp_table))
564 i8042_nopnp = 1;
565#endif
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (i8042_nopnp) {
Vojtech Pavlik39fa5802005-05-28 02:11:16 -0500568 printk(KERN_INFO "i8042: PNP detection disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return 0;
570 }
571
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500572 err = pnp_register_driver(&i8042_pnp_kbd_driver);
573 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 i8042_pnp_kbd_registered = 1;
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500575
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500576 err = pnp_register_driver(&i8042_pnp_aux_driver);
577 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 i8042_pnp_aux_registered = 1;
579
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500580 if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 i8042_pnp_exit();
582#if defined(__ia64__)
583 return -ENODEV;
584#else
Dmitry Torokhov5a72afc2005-05-28 02:11:32 -0500585 printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return 0;
587#endif
588 }
589
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500590 if (i8042_pnp_kbd_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500591 snprintf(kbd_irq_str, sizeof(kbd_irq_str),
592 "%d", i8042_pnp_kbd_irq);
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500593 if (i8042_pnp_aux_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500594 snprintf(aux_irq_str, sizeof(aux_irq_str),
595 "%d", i8042_pnp_aux_irq);
596
597 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 -0500598 i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500599 i8042_pnp_aux_name,
600 i8042_pnp_data_reg, i8042_pnp_command_reg,
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500601 kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500602 aux_irq_str);
603
604#if defined(__ia64__)
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500605 if (!i8042_pnp_kbd_devices)
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -0500606 i8042_nokbd = 1;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500607 if (!i8042_pnp_aux_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500608 i8042_noaux = 1;
609#endif
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400612 i8042_pnp_data_reg != i8042_data_reg) ||
613 !i8042_pnp_data_reg) {
614 printk(KERN_WARNING
615 "PNP: PS/2 controller has invalid data port %#x; "
616 "using default %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 i8042_pnp_data_reg, i8042_data_reg);
618 i8042_pnp_data_reg = i8042_data_reg;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400619 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
622 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400623 i8042_pnp_command_reg != i8042_command_reg) ||
624 !i8042_pnp_command_reg) {
625 printk(KERN_WARNING
626 "PNP: PS/2 controller has invalid command port %#x; "
627 "using default %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 i8042_pnp_command_reg, i8042_command_reg);
629 i8042_pnp_command_reg = i8042_command_reg;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400630 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -0500633 if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400634 printk(KERN_WARNING
635 "PNP: PS/2 controller doesn't have KBD irq; "
636 "using default %d\n", i8042_kbd_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 i8042_pnp_kbd_irq = i8042_kbd_irq;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400638 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500641 if (!i8042_noaux && !i8042_pnp_aux_irq) {
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400642 if (!pnp_data_busted && i8042_pnp_kbd_irq) {
643 printk(KERN_WARNING
644 "PNP: PS/2 appears to have AUX port disabled, "
645 "if this is incorrect please boot with "
646 "i8042.nopnp\n");
647 i8042_noaux = 1;
648 } else {
649 printk(KERN_WARNING
650 "PNP: PS/2 controller doesn't have AUX irq; "
651 "using default %d\n", i8042_aux_irq);
652 i8042_pnp_aux_irq = i8042_aux_irq;
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 i8042_data_reg = i8042_pnp_data_reg;
657 i8042_command_reg = i8042_pnp_command_reg;
658 i8042_kbd_irq = i8042_pnp_kbd_irq;
659 i8042_aux_irq = i8042_pnp_aux_irq;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return 0;
662}
663
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500664#else
665static inline int i8042_pnp_init(void) { return 0; }
666static inline void i8042_pnp_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#endif
668
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500669static int __init i8042_platform_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500671 int retval;
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/*
674 * On ix86 platforms touching the i8042 data register region can do really
675 * bad things. Because of this the region is always reserved on ix86 boxes.
676 *
677 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500678 * return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 */
680
681 i8042_kbd_irq = I8042_MAP_IRQ(1);
682 i8042_aux_irq = I8042_MAP_IRQ(12);
683
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500684 retval = i8042_pnp_init();
685 if (retval)
686 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688#if defined(__ia64__)
689 i8042_reset = 1;
690#endif
691
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400692#ifdef CONFIG_X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (dmi_check_system(i8042_dmi_noloop_table))
694 i8042_noloop = 1;
695
696 if (dmi_check_system(i8042_dmi_nomux_table))
697 i8042_nomux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500699 if (dmi_check_system(i8042_dmi_dritek_table))
700 i8042_dritek = 1;
701#endif /* CONFIG_X86 */
702
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500703 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706static inline void i8042_platform_exit(void)
707{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 i8042_pnp_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711#endif /* _I8042_X86IA64IO_H */