Input: i8042 - add some extra PNP keyboard types
[linux-2.6/cjktty.git] / drivers / input / serio / i8042-x86ia64io.h
blob871a74c722a047c1980a147a03e5d47e80b585f5
1 #ifndef _I8042_X86IA64IO_H
2 #define _I8042_X86IA64IO_H
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 */
11 * Names.
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"
19 * IRQs.
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
28 #define I8042_KBD_IRQ i8042_kbd_irq
29 #define I8042_AUX_IRQ i8042_aux_irq
31 static int i8042_kbd_irq;
32 static int i8042_aux_irq;
35 * Register numbers.
38 #define I8042_COMMAND_REG i8042_command_reg
39 #define I8042_STATUS_REG i8042_command_reg
40 #define I8042_DATA_REG i8042_data_reg
42 static int i8042_command_reg = 0x64;
43 static int i8042_data_reg = 0x60;
46 static inline int i8042_read_data(void)
48 return inb(I8042_DATA_REG);
51 static inline int i8042_read_status(void)
53 return inb(I8042_STATUS_REG);
56 static inline void i8042_write_data(int val)
58 outb(val, I8042_DATA_REG);
61 static inline void i8042_write_command(int val)
63 outb(val, I8042_COMMAND_REG);
66 #ifdef CONFIG_X86
68 #include <linux/dmi.h>
70 static const struct dmi_system_id __initconst i8042_dmi_noloop_table[] = {
73 * Arima-Rioworks HDAMB -
74 * AUX LOOP command does not raise AUX IRQ
76 .matches = {
77 DMI_MATCH(DMI_BOARD_VENDOR, "RIOWORKS"),
78 DMI_MATCH(DMI_BOARD_NAME, "HDAMB"),
79 DMI_MATCH(DMI_BOARD_VERSION, "Rev E"),
83 /* ASUS G1S */
84 .matches = {
85 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc."),
86 DMI_MATCH(DMI_BOARD_NAME, "G1S"),
87 DMI_MATCH(DMI_BOARD_VERSION, "1.0"),
91 /* ASUS P65UP5 - AUX LOOP command does not raise AUX IRQ */
92 .matches = {
93 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
94 DMI_MATCH(DMI_BOARD_NAME, "P/I-P65UP5"),
95 DMI_MATCH(DMI_BOARD_VERSION, "REV 2.X"),
99 .matches = {
100 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
101 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
102 DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
106 .matches = {
107 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
108 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
109 DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
113 /* OQO Model 01 */
114 .matches = {
115 DMI_MATCH(DMI_SYS_VENDOR, "OQO"),
116 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"),
117 DMI_MATCH(DMI_PRODUCT_VERSION, "00"),
121 /* ULI EV4873 - AUX LOOP does not work properly */
122 .matches = {
123 DMI_MATCH(DMI_SYS_VENDOR, "ULI"),
124 DMI_MATCH(DMI_PRODUCT_NAME, "EV4873"),
125 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
129 /* Microsoft Virtual Machine */
130 .matches = {
131 DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
132 DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
133 DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
137 /* Medion MAM 2070 */
138 .matches = {
139 DMI_MATCH(DMI_SYS_VENDOR, "Notebook"),
140 DMI_MATCH(DMI_PRODUCT_NAME, "MAM 2070"),
141 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
145 /* Blue FB5601 */
146 .matches = {
147 DMI_MATCH(DMI_SYS_VENDOR, "blue"),
148 DMI_MATCH(DMI_PRODUCT_NAME, "FB5601"),
149 DMI_MATCH(DMI_PRODUCT_VERSION, "M606"),
153 /* Gigabyte M912 */
154 .matches = {
155 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
156 DMI_MATCH(DMI_PRODUCT_NAME, "M912"),
157 DMI_MATCH(DMI_PRODUCT_VERSION, "01"),
161 /* Gigabyte M1022M netbook */
162 .matches = {
163 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co.,Ltd."),
164 DMI_MATCH(DMI_BOARD_NAME, "M1022E"),
165 DMI_MATCH(DMI_BOARD_VERSION, "1.02"),
169 .matches = {
170 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
171 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv9700"),
172 DMI_MATCH(DMI_PRODUCT_VERSION, "Rev 1"),
179 * Some Fujitsu notebooks are having trouble with touchpads if
180 * active multiplexing mode is activated. Luckily they don't have
181 * external PS/2 ports so we can safely disable it.
182 * ... apparently some Toshibas don't like MUX mode either and
183 * die horrible death on reboot.
185 static const struct dmi_system_id __initconst i8042_dmi_nomux_table[] = {
187 /* Fujitsu Lifebook P7010/P7010D */
188 .matches = {
189 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
190 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
194 /* Fujitsu Lifebook P7010 */
195 .matches = {
196 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
197 DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
201 /* Fujitsu Lifebook P5020D */
202 .matches = {
203 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
204 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
208 /* Fujitsu Lifebook S2000 */
209 .matches = {
210 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
211 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
215 /* Fujitsu Lifebook S6230 */
216 .matches = {
217 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
218 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
222 /* Fujitsu T70H */
223 .matches = {
224 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
225 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
229 /* Fujitsu-Siemens Lifebook T3010 */
230 .matches = {
231 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
232 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
236 /* Fujitsu-Siemens Lifebook E4010 */
237 .matches = {
238 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
239 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
243 /* Fujitsu-Siemens Amilo Pro 2010 */
244 .matches = {
245 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
246 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
250 /* Fujitsu-Siemens Amilo Pro 2030 */
251 .matches = {
252 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
253 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
258 * No data is coming from the touchscreen unless KBC
259 * is in legacy mode.
261 /* Panasonic CF-29 */
262 .matches = {
263 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
264 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
269 * HP Pavilion DV4017EA -
270 * errors on MUX ports are reported without raising AUXDATA
271 * causing "spurious NAK" messages.
273 .matches = {
274 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
275 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
280 * HP Pavilion ZT1000 -
281 * like DV4017EA does not raise AUXERR for errors on MUX ports.
283 .matches = {
284 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
285 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
286 DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
291 * HP Pavilion DV4270ca -
292 * like DV4017EA does not raise AUXERR for errors on MUX ports.
294 .matches = {
295 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
296 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
300 .matches = {
301 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
302 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
306 .matches = {
307 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
308 DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
312 .matches = {
313 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
314 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
318 /* Sharp Actius MM20 */
319 .matches = {
320 DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
321 DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
325 /* Sony Vaio FS-115b */
326 .matches = {
327 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
328 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
333 * Sony Vaio FZ-240E -
334 * reset and GET ID commands issued via KBD port are
335 * sometimes being delivered to AUX3.
337 .matches = {
338 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
339 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ240E"),
343 /* Amoi M636/A737 */
344 .matches = {
345 DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
346 DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
350 /* Lenovo 3000 n100 */
351 .matches = {
352 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
353 DMI_MATCH(DMI_PRODUCT_NAME, "076804U"),
357 .matches = {
358 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
359 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
363 /* Gericom Bellagio */
364 .matches = {
365 DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
366 DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
370 /* IBM 2656 */
371 .matches = {
372 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
373 DMI_MATCH(DMI_PRODUCT_NAME, "2656"),
377 /* Dell XPS M1530 */
378 .matches = {
379 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
380 DMI_MATCH(DMI_PRODUCT_NAME, "XPS M1530"),
384 /* Compal HEL80I */
385 .matches = {
386 DMI_MATCH(DMI_SYS_VENDOR, "COMPAL"),
387 DMI_MATCH(DMI_PRODUCT_NAME, "HEL80I"),
391 /* Dell Vostro 1510 */
392 .matches = {
393 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
394 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro1510"),
398 /* Acer Aspire 5536 */
399 .matches = {
400 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
401 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5536"),
402 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
408 static const struct dmi_system_id __initconst i8042_dmi_reset_table[] = {
410 /* MSI Wind U-100 */
411 .matches = {
412 DMI_MATCH(DMI_BOARD_NAME, "U-100"),
413 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
417 /* LG Electronics X110 */
418 .matches = {
419 DMI_MATCH(DMI_BOARD_NAME, "X110"),
420 DMI_MATCH(DMI_BOARD_VENDOR, "LG Electronics Inc."),
424 /* Acer Aspire One 150 */
425 .matches = {
426 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
427 DMI_MATCH(DMI_PRODUCT_NAME, "AOA150"),
431 /* Advent 4211 */
432 .matches = {
433 DMI_MATCH(DMI_SYS_VENDOR, "DIXONSXP"),
434 DMI_MATCH(DMI_PRODUCT_NAME, "Advent 4211"),
438 /* Medion Akoya Mini E1210 */
439 .matches = {
440 DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
441 DMI_MATCH(DMI_PRODUCT_NAME, "E1210"),
445 /* Medion Akoya E1222 */
446 .matches = {
447 DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
448 DMI_MATCH(DMI_PRODUCT_NAME, "E122X"),
452 /* Mivvy M310 */
453 .matches = {
454 DMI_MATCH(DMI_SYS_VENDOR, "VIOOO"),
455 DMI_MATCH(DMI_PRODUCT_NAME, "N10"),
459 /* Dell Vostro 1320 */
460 .matches = {
461 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
462 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1320"),
466 /* Dell Vostro 1520 */
467 .matches = {
468 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
469 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1520"),
473 /* Dell Vostro 1720 */
474 .matches = {
475 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
476 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1720"),
482 #ifdef CONFIG_PNP
483 static const struct dmi_system_id __initconst i8042_dmi_nopnp_table[] = {
485 /* Intel MBO Desktop D845PESV */
486 .matches = {
487 DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
488 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
492 /* MSI Wind U-100 */
493 .matches = {
494 DMI_MATCH(DMI_BOARD_NAME, "U-100"),
495 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
501 static const struct dmi_system_id __initconst i8042_dmi_laptop_table[] = {
503 .matches = {
504 DMI_MATCH(DMI_CHASSIS_TYPE, "8"), /* Portable */
508 .matches = {
509 DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /* Laptop */
513 .matches = {
514 DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /* Notebook */
518 .matches = {
519 DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */
524 #endif
527 * Some Wistron based laptops need us to explicitly enable the 'Dritek
528 * keyboard extension' to make their extra keys start generating scancodes.
529 * Originally, this was just confined to older laptops, but a few Acer laptops
530 * have turned up in 2007 that also need this again.
532 static const struct dmi_system_id __initconst i8042_dmi_dritek_table[] = {
534 /* Acer Aspire 5610 */
535 .matches = {
536 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
537 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"),
541 /* Acer Aspire 5630 */
542 .matches = {
543 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
544 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
548 /* Acer Aspire 5650 */
549 .matches = {
550 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
551 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
555 /* Acer Aspire 5680 */
556 .matches = {
557 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
558 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
562 /* Acer Aspire 5720 */
563 .matches = {
564 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
565 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
569 /* Acer Aspire 9110 */
570 .matches = {
571 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
572 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
576 /* Acer TravelMate 660 */
577 .matches = {
578 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
579 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
583 /* Acer TravelMate 2490 */
584 .matches = {
585 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
586 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
590 /* Acer TravelMate 4280 */
591 .matches = {
592 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
593 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4280"),
599 #endif /* CONFIG_X86 */
601 #ifdef CONFIG_PNP
602 #include <linux/pnp.h>
604 static bool i8042_pnp_kbd_registered;
605 static unsigned int i8042_pnp_kbd_devices;
606 static bool i8042_pnp_aux_registered;
607 static unsigned int i8042_pnp_aux_devices;
609 static int i8042_pnp_command_reg;
610 static int i8042_pnp_data_reg;
611 static int i8042_pnp_kbd_irq;
612 static int i8042_pnp_aux_irq;
614 static char i8042_pnp_kbd_name[32];
615 static char i8042_pnp_aux_name[32];
617 static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
619 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
620 i8042_pnp_data_reg = pnp_port_start(dev,0);
622 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
623 i8042_pnp_command_reg = pnp_port_start(dev, 1);
625 if (pnp_irq_valid(dev,0))
626 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
628 strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
629 if (strlen(pnp_dev_name(dev))) {
630 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
631 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
634 /* Keyboard ports are always supposed to be wakeup-enabled */
635 device_set_wakeup_enable(&dev->dev, true);
637 i8042_pnp_kbd_devices++;
638 return 0;
641 static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
643 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
644 i8042_pnp_data_reg = pnp_port_start(dev,0);
646 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
647 i8042_pnp_command_reg = pnp_port_start(dev, 1);
649 if (pnp_irq_valid(dev, 0))
650 i8042_pnp_aux_irq = pnp_irq(dev, 0);
652 strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
653 if (strlen(pnp_dev_name(dev))) {
654 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
655 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
658 i8042_pnp_aux_devices++;
659 return 0;
662 static struct pnp_device_id pnp_kbd_devids[] = {
663 { .id = "PNP0300", .driver_data = 0 },
664 { .id = "PNP0301", .driver_data = 0 },
665 { .id = "PNP0302", .driver_data = 0 },
666 { .id = "PNP0303", .driver_data = 0 },
667 { .id = "PNP0304", .driver_data = 0 },
668 { .id = "PNP0305", .driver_data = 0 },
669 { .id = "PNP0306", .driver_data = 0 },
670 { .id = "PNP0309", .driver_data = 0 },
671 { .id = "PNP030a", .driver_data = 0 },
672 { .id = "PNP030b", .driver_data = 0 },
673 { .id = "PNP0320", .driver_data = 0 },
674 { .id = "PNP0343", .driver_data = 0 },
675 { .id = "PNP0344", .driver_data = 0 },
676 { .id = "PNP0345", .driver_data = 0 },
677 { .id = "CPQA0D7", .driver_data = 0 },
678 { .id = "", },
681 static struct pnp_driver i8042_pnp_kbd_driver = {
682 .name = "i8042 kbd",
683 .id_table = pnp_kbd_devids,
684 .probe = i8042_pnp_kbd_probe,
687 static struct pnp_device_id pnp_aux_devids[] = {
688 { .id = "FJC6000", .driver_data = 0 },
689 { .id = "FJC6001", .driver_data = 0 },
690 { .id = "PNP0f03", .driver_data = 0 },
691 { .id = "PNP0f0b", .driver_data = 0 },
692 { .id = "PNP0f0e", .driver_data = 0 },
693 { .id = "PNP0f12", .driver_data = 0 },
694 { .id = "PNP0f13", .driver_data = 0 },
695 { .id = "PNP0f19", .driver_data = 0 },
696 { .id = "PNP0f1c", .driver_data = 0 },
697 { .id = "SYN0801", .driver_data = 0 },
698 { .id = "", },
701 static struct pnp_driver i8042_pnp_aux_driver = {
702 .name = "i8042 aux",
703 .id_table = pnp_aux_devids,
704 .probe = i8042_pnp_aux_probe,
707 static void i8042_pnp_exit(void)
709 if (i8042_pnp_kbd_registered) {
710 i8042_pnp_kbd_registered = false;
711 pnp_unregister_driver(&i8042_pnp_kbd_driver);
714 if (i8042_pnp_aux_registered) {
715 i8042_pnp_aux_registered = false;
716 pnp_unregister_driver(&i8042_pnp_aux_driver);
720 static int __init i8042_pnp_init(void)
722 char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
723 bool pnp_data_busted = false;
724 int err;
726 #ifdef CONFIG_X86
727 if (dmi_check_system(i8042_dmi_nopnp_table))
728 i8042_nopnp = true;
729 #endif
731 if (i8042_nopnp) {
732 printk(KERN_INFO "i8042: PNP detection disabled\n");
733 return 0;
736 err = pnp_register_driver(&i8042_pnp_kbd_driver);
737 if (!err)
738 i8042_pnp_kbd_registered = true;
740 err = pnp_register_driver(&i8042_pnp_aux_driver);
741 if (!err)
742 i8042_pnp_aux_registered = true;
744 if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
745 i8042_pnp_exit();
746 #if defined(__ia64__)
747 return -ENODEV;
748 #else
749 printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n");
750 return 0;
751 #endif
754 if (i8042_pnp_kbd_devices)
755 snprintf(kbd_irq_str, sizeof(kbd_irq_str),
756 "%d", i8042_pnp_kbd_irq);
757 if (i8042_pnp_aux_devices)
758 snprintf(aux_irq_str, sizeof(aux_irq_str),
759 "%d", i8042_pnp_aux_irq);
761 printk(KERN_INFO "PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %s%s%s\n",
762 i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
763 i8042_pnp_aux_name,
764 i8042_pnp_data_reg, i8042_pnp_command_reg,
765 kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
766 aux_irq_str);
768 #if defined(__ia64__)
769 if (!i8042_pnp_kbd_devices)
770 i8042_nokbd = true;
771 if (!i8042_pnp_aux_devices)
772 i8042_noaux = true;
773 #endif
775 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
776 i8042_pnp_data_reg != i8042_data_reg) ||
777 !i8042_pnp_data_reg) {
778 printk(KERN_WARNING
779 "PNP: PS/2 controller has invalid data port %#x; "
780 "using default %#x\n",
781 i8042_pnp_data_reg, i8042_data_reg);
782 i8042_pnp_data_reg = i8042_data_reg;
783 pnp_data_busted = true;
786 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
787 i8042_pnp_command_reg != i8042_command_reg) ||
788 !i8042_pnp_command_reg) {
789 printk(KERN_WARNING
790 "PNP: PS/2 controller has invalid command port %#x; "
791 "using default %#x\n",
792 i8042_pnp_command_reg, i8042_command_reg);
793 i8042_pnp_command_reg = i8042_command_reg;
794 pnp_data_busted = true;
797 if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
798 printk(KERN_WARNING
799 "PNP: PS/2 controller doesn't have KBD irq; "
800 "using default %d\n", i8042_kbd_irq);
801 i8042_pnp_kbd_irq = i8042_kbd_irq;
802 pnp_data_busted = true;
805 if (!i8042_noaux && !i8042_pnp_aux_irq) {
806 if (!pnp_data_busted && i8042_pnp_kbd_irq) {
807 printk(KERN_WARNING
808 "PNP: PS/2 appears to have AUX port disabled, "
809 "if this is incorrect please boot with "
810 "i8042.nopnp\n");
811 i8042_noaux = true;
812 } else {
813 printk(KERN_WARNING
814 "PNP: PS/2 controller doesn't have AUX irq; "
815 "using default %d\n", i8042_aux_irq);
816 i8042_pnp_aux_irq = i8042_aux_irq;
820 i8042_data_reg = i8042_pnp_data_reg;
821 i8042_command_reg = i8042_pnp_command_reg;
822 i8042_kbd_irq = i8042_pnp_kbd_irq;
823 i8042_aux_irq = i8042_pnp_aux_irq;
825 #ifdef CONFIG_X86
826 i8042_bypass_aux_irq_test = !pnp_data_busted &&
827 dmi_check_system(i8042_dmi_laptop_table);
828 #endif
830 return 0;
833 #else
834 static inline int i8042_pnp_init(void) { return 0; }
835 static inline void i8042_pnp_exit(void) { }
836 #endif
838 static int __init i8042_platform_init(void)
840 int retval;
843 * On ix86 platforms touching the i8042 data register region can do really
844 * bad things. Because of this the region is always reserved on ix86 boxes.
846 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
847 * return -EBUSY;
850 i8042_kbd_irq = I8042_MAP_IRQ(1);
851 i8042_aux_irq = I8042_MAP_IRQ(12);
853 retval = i8042_pnp_init();
854 if (retval)
855 return retval;
857 #if defined(__ia64__)
858 i8042_reset = true;
859 #endif
861 #ifdef CONFIG_X86
862 if (dmi_check_system(i8042_dmi_reset_table))
863 i8042_reset = true;
865 if (dmi_check_system(i8042_dmi_noloop_table))
866 i8042_noloop = true;
868 if (dmi_check_system(i8042_dmi_nomux_table))
869 i8042_nomux = true;
871 if (dmi_check_system(i8042_dmi_dritek_table))
872 i8042_dritek = true;
873 #endif /* CONFIG_X86 */
875 return retval;
878 static inline void i8042_platform_exit(void)
880 i8042_pnp_exit();
883 #endif /* _I8042_X86IA64IO_H */