1 #ifndef _I8042_X86IA64IO_H
2 #define _I8042_X86IA64IO_H
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.
11 #include <asm/x86_init.h>
18 #define I8042_KBD_PHYS_DESC "isa0060/serio0"
19 #define I8042_AUX_PHYS_DESC "isa0060/serio1"
20 #define I8042_MUX_PHYS_DESC "isa0060/serio%d"
27 # define I8042_MAP_IRQ(x) isa_irq_to_vector((x))
29 # define I8042_MAP_IRQ(x) (x)
32 #define I8042_KBD_IRQ i8042_kbd_irq
33 #define I8042_AUX_IRQ i8042_aux_irq
35 static int i8042_kbd_irq;
36 static int i8042_aux_irq;
42 #define I8042_COMMAND_REG i8042_command_reg
43 #define I8042_STATUS_REG i8042_command_reg
44 #define I8042_DATA_REG i8042_data_reg
46 static int i8042_command_reg = 0x64;
47 static int i8042_data_reg = 0x60;
50 static inline int i8042_read_data(void)
52 return inb(I8042_DATA_REG);
55 static inline int i8042_read_status(void)
57 return inb(I8042_STATUS_REG);
60 static inline void i8042_write_data(int val)
62 outb(val, I8042_DATA_REG);
65 static inline void i8042_write_command(int val)
67 outb(val, I8042_COMMAND_REG);
72 #include <linux/dmi.h>
74 static const struct dmi_system_id __initconst i8042_dmi_noloop_table[] = {
77 * Arima-Rioworks HDAMB -
78 * AUX LOOP command does not raise AUX IRQ
81 DMI_MATCH(DMI_BOARD_VENDOR, "RIOWORKS"),
82 DMI_MATCH(DMI_BOARD_NAME, "HDAMB"),
83 DMI_MATCH(DMI_BOARD_VERSION, "Rev E"),
89 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer Inc."),
90 DMI_MATCH(DMI_BOARD_NAME, "G1S"),
91 DMI_MATCH(DMI_BOARD_VERSION, "1.0"),
95 /* ASUS P65UP5 - AUX LOOP command does not raise AUX IRQ */
97 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
98 DMI_MATCH(DMI_BOARD_NAME, "P/I-P65UP5"),
99 DMI_MATCH(DMI_BOARD_VERSION, "REV 2.X"),
104 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
105 DMI_MATCH(DMI_PRODUCT_NAME, "X750LN"),
110 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
111 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
112 DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
117 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
118 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
119 DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
125 DMI_MATCH(DMI_SYS_VENDOR, "OQO"),
126 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"),
127 DMI_MATCH(DMI_PRODUCT_VERSION, "00"),
131 /* ULI EV4873 - AUX LOOP does not work properly */
133 DMI_MATCH(DMI_SYS_VENDOR, "ULI"),
134 DMI_MATCH(DMI_PRODUCT_NAME, "EV4873"),
135 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
139 /* Microsoft Virtual Machine */
141 DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
142 DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
143 DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
147 /* Medion MAM 2070 */
149 DMI_MATCH(DMI_SYS_VENDOR, "Notebook"),
150 DMI_MATCH(DMI_PRODUCT_NAME, "MAM 2070"),
151 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
157 DMI_MATCH(DMI_SYS_VENDOR, "blue"),
158 DMI_MATCH(DMI_PRODUCT_NAME, "FB5601"),
159 DMI_MATCH(DMI_PRODUCT_VERSION, "M606"),
165 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
166 DMI_MATCH(DMI_PRODUCT_NAME, "M912"),
167 DMI_MATCH(DMI_PRODUCT_VERSION, "01"),
171 /* Gigabyte M1022M netbook */
173 DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co.,Ltd."),
174 DMI_MATCH(DMI_BOARD_NAME, "M1022E"),
175 DMI_MATCH(DMI_BOARD_VERSION, "1.02"),
179 /* Gigabyte Spring Peak - defines wrong chassis type */
181 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
182 DMI_MATCH(DMI_PRODUCT_NAME, "Spring Peak"),
186 /* Gigabyte T1005 - defines wrong chassis type ("Other") */
188 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
189 DMI_MATCH(DMI_PRODUCT_NAME, "T1005"),
193 /* Gigabyte T1005M/P - defines wrong chassis type ("Other") */
195 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
196 DMI_MATCH(DMI_PRODUCT_NAME, "T1005M/P"),
201 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
202 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv9700"),
203 DMI_MATCH(DMI_PRODUCT_VERSION, "Rev 1"),
210 * Some Fujitsu notebooks are having trouble with touchpads if
211 * active multiplexing mode is activated. Luckily they don't have
212 * external PS/2 ports so we can safely disable it.
213 * ... apparently some Toshibas don't like MUX mode either and
214 * die horrible death on reboot.
216 static const struct dmi_system_id __initconst i8042_dmi_nomux_table[] = {
218 /* Fujitsu Lifebook P7010/P7010D */
220 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
221 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
225 /* Fujitsu Lifebook P7010 */
227 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
228 DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
232 /* Fujitsu Lifebook P5020D */
234 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
235 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
239 /* Fujitsu Lifebook S2000 */
241 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
242 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
246 /* Fujitsu Lifebook S6230 */
248 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
249 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
255 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
256 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
260 /* Fujitsu-Siemens Lifebook T3010 */
262 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
263 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
267 /* Fujitsu-Siemens Lifebook E4010 */
269 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
270 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
274 /* Fujitsu-Siemens Amilo Pro 2010 */
276 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
277 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
281 /* Fujitsu-Siemens Amilo Pro 2030 */
283 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
284 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
289 * No data is coming from the touchscreen unless KBC
292 /* Panasonic CF-29 */
294 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
295 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
300 * HP Pavilion DV4017EA -
301 * errors on MUX ports are reported without raising AUXDATA
302 * causing "spurious NAK" messages.
305 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
306 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
311 * HP Pavilion ZT1000 -
312 * like DV4017EA does not raise AUXERR for errors on MUX ports.
315 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
316 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
317 DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
322 * HP Pavilion DV4270ca -
323 * like DV4017EA does not raise AUXERR for errors on MUX ports.
326 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
327 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
332 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
333 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
338 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
339 DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
344 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
345 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE C850D"),
350 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
351 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
355 /* Sharp Actius MM20 */
357 DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
358 DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
362 /* Sony Vaio FS-115b */
364 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
365 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
370 * Sony Vaio FZ-240E -
371 * reset and GET ID commands issued via KBD port are
372 * sometimes being delivered to AUX3.
375 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
376 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ240E"),
381 * Most (all?) VAIOs do not have external PS/2 ports nor
382 * they implement active multiplexing properly, and
383 * MUX discovery usually messes up keyboard/touchpad.
386 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
387 DMI_MATCH(DMI_BOARD_NAME, "VAIO"),
393 DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
394 DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
398 /* Lenovo 3000 n100 */
400 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
401 DMI_MATCH(DMI_PRODUCT_NAME, "076804U"),
406 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
407 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
411 /* Gericom Bellagio */
413 DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
414 DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
420 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
421 DMI_MATCH(DMI_PRODUCT_NAME, "2656"),
427 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
428 DMI_MATCH(DMI_PRODUCT_NAME, "XPS M1530"),
434 DMI_MATCH(DMI_SYS_VENDOR, "COMPAL"),
435 DMI_MATCH(DMI_PRODUCT_NAME, "HEL80I"),
439 /* Dell Vostro 1510 */
441 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
442 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro1510"),
446 /* Acer Aspire 5536 */
448 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
449 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5536"),
450 DMI_MATCH(DMI_PRODUCT_VERSION, "0100"),
454 /* Dell Vostro V13 */
456 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
457 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V13"),
461 /* Newer HP Pavilion dv4 models */
463 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
464 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv4 Notebook PC"),
468 /* Avatar AVIU-145A6 */
470 DMI_MATCH(DMI_SYS_VENDOR, "Intel"),
471 DMI_MATCH(DMI_PRODUCT_NAME, "IC4I"),
477 static const struct dmi_system_id __initconst i8042_dmi_reset_table[] = {
481 DMI_MATCH(DMI_BOARD_NAME, "U-100"),
482 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
486 /* LG Electronics X110 */
488 DMI_MATCH(DMI_BOARD_NAME, "X110"),
489 DMI_MATCH(DMI_BOARD_VENDOR, "LG Electronics Inc."),
493 /* Acer Aspire One 150 */
495 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
496 DMI_MATCH(DMI_PRODUCT_NAME, "AOA150"),
502 DMI_MATCH(DMI_SYS_VENDOR, "DIXONSXP"),
503 DMI_MATCH(DMI_PRODUCT_NAME, "Advent 4211"),
507 /* Medion Akoya Mini E1210 */
509 DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
510 DMI_MATCH(DMI_PRODUCT_NAME, "E1210"),
514 /* Medion Akoya E1222 */
516 DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
517 DMI_MATCH(DMI_PRODUCT_NAME, "E122X"),
523 DMI_MATCH(DMI_SYS_VENDOR, "VIOOO"),
524 DMI_MATCH(DMI_PRODUCT_NAME, "N10"),
528 /* Dell Vostro 1320 */
530 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
531 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1320"),
535 /* Dell Vostro 1520 */
537 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
538 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1520"),
542 /* Dell Vostro 1720 */
544 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
545 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1720"),
552 static const struct dmi_system_id __initconst i8042_dmi_nopnp_table[] = {
554 /* Intel MBO Desktop D845PESV */
556 DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
557 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
563 DMI_MATCH(DMI_BOARD_NAME, "U-100"),
564 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
570 static const struct dmi_system_id __initconst i8042_dmi_laptop_table[] = {
573 DMI_MATCH(DMI_CHASSIS_TYPE, "8"), /* Portable */
578 DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /* Laptop */
583 DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /* Notebook */
588 DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */
595 static const struct dmi_system_id __initconst i8042_dmi_notimeout_table[] = {
597 /* Dell Vostro V13 */
599 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
600 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V13"),
604 /* Newer HP Pavilion dv4 models */
606 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
607 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv4 Notebook PC"),
611 /* Fujitsu A544 laptop */
612 /* https://bugzilla.redhat.com/show_bug.cgi?id=1111138 */
614 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
615 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK A544"),
619 /* Fujitsu AH544 laptop */
620 /* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */
622 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
623 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK AH544"),
627 /* Fujitsu U574 laptop */
628 /* https://bugzilla.kernel.org/show_bug.cgi?id=69731 */
630 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
631 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK U574"),
638 * Some Wistron based laptops need us to explicitly enable the 'Dritek
639 * keyboard extension' to make their extra keys start generating scancodes.
640 * Originally, this was just confined to older laptops, but a few Acer laptops
641 * have turned up in 2007 that also need this again.
643 static const struct dmi_system_id __initconst i8042_dmi_dritek_table[] = {
645 /* Acer Aspire 5100 */
647 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
648 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5100"),
652 /* Acer Aspire 5610 */
654 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
655 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"),
659 /* Acer Aspire 5630 */
661 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
662 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
666 /* Acer Aspire 5650 */
668 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
669 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
673 /* Acer Aspire 5680 */
675 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
676 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
680 /* Acer Aspire 5720 */
682 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
683 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
687 /* Acer Aspire 9110 */
689 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
690 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
694 /* Acer TravelMate 660 */
696 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
697 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
701 /* Acer TravelMate 2490 */
703 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
704 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
708 /* Acer TravelMate 4280 */
710 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
711 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4280"),
717 #endif /* CONFIG_X86 */
720 #include <linux/pnp.h>
722 static bool i8042_pnp_kbd_registered;
723 static unsigned int i8042_pnp_kbd_devices;
724 static bool i8042_pnp_aux_registered;
725 static unsigned int i8042_pnp_aux_devices;
727 static int i8042_pnp_command_reg;
728 static int i8042_pnp_data_reg;
729 static int i8042_pnp_kbd_irq;
730 static int i8042_pnp_aux_irq;
732 static char i8042_pnp_kbd_name[32];
733 static char i8042_pnp_aux_name[32];
735 static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
737 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
738 i8042_pnp_data_reg = pnp_port_start(dev,0);
740 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
741 i8042_pnp_command_reg = pnp_port_start(dev, 1);
743 if (pnp_irq_valid(dev,0))
744 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
746 strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
747 if (strlen(pnp_dev_name(dev))) {
748 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
749 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
752 /* Keyboard ports are always supposed to be wakeup-enabled */
753 device_set_wakeup_enable(&dev->dev, true);
755 i8042_pnp_kbd_devices++;
759 static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
761 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
762 i8042_pnp_data_reg = pnp_port_start(dev,0);
764 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
765 i8042_pnp_command_reg = pnp_port_start(dev, 1);
767 if (pnp_irq_valid(dev, 0))
768 i8042_pnp_aux_irq = pnp_irq(dev, 0);
770 strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
771 if (strlen(pnp_dev_name(dev))) {
772 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
773 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
776 i8042_pnp_aux_devices++;
780 static struct pnp_device_id pnp_kbd_devids[] = {
781 { .id = "PNP0300", .driver_data = 0 },
782 { .id = "PNP0301", .driver_data = 0 },
783 { .id = "PNP0302", .driver_data = 0 },
784 { .id = "PNP0303", .driver_data = 0 },
785 { .id = "PNP0304", .driver_data = 0 },
786 { .id = "PNP0305", .driver_data = 0 },
787 { .id = "PNP0306", .driver_data = 0 },
788 { .id = "PNP0309", .driver_data = 0 },
789 { .id = "PNP030a", .driver_data = 0 },
790 { .id = "PNP030b", .driver_data = 0 },
791 { .id = "PNP0320", .driver_data = 0 },
792 { .id = "PNP0343", .driver_data = 0 },
793 { .id = "PNP0344", .driver_data = 0 },
794 { .id = "PNP0345", .driver_data = 0 },
795 { .id = "CPQA0D7", .driver_data = 0 },
799 static struct pnp_driver i8042_pnp_kbd_driver = {
801 .id_table = pnp_kbd_devids,
802 .probe = i8042_pnp_kbd_probe,
805 static struct pnp_device_id pnp_aux_devids[] = {
806 { .id = "AUI0200", .driver_data = 0 },
807 { .id = "FJC6000", .driver_data = 0 },
808 { .id = "FJC6001", .driver_data = 0 },
809 { .id = "PNP0f03", .driver_data = 0 },
810 { .id = "PNP0f0b", .driver_data = 0 },
811 { .id = "PNP0f0e", .driver_data = 0 },
812 { .id = "PNP0f12", .driver_data = 0 },
813 { .id = "PNP0f13", .driver_data = 0 },
814 { .id = "PNP0f19", .driver_data = 0 },
815 { .id = "PNP0f1c", .driver_data = 0 },
816 { .id = "SYN0801", .driver_data = 0 },
820 static struct pnp_driver i8042_pnp_aux_driver = {
822 .id_table = pnp_aux_devids,
823 .probe = i8042_pnp_aux_probe,
826 static void i8042_pnp_exit(void)
828 if (i8042_pnp_kbd_registered) {
829 i8042_pnp_kbd_registered = false;
830 pnp_unregister_driver(&i8042_pnp_kbd_driver);
833 if (i8042_pnp_aux_registered) {
834 i8042_pnp_aux_registered = false;
835 pnp_unregister_driver(&i8042_pnp_aux_driver);
839 static int __init i8042_pnp_init(void)
841 char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
842 bool pnp_data_busted = false;
846 if (dmi_check_system(i8042_dmi_nopnp_table))
851 pr_info("PNP detection disabled\n");
855 err = pnp_register_driver(&i8042_pnp_kbd_driver);
857 i8042_pnp_kbd_registered = true;
859 err = pnp_register_driver(&i8042_pnp_aux_driver);
861 i8042_pnp_aux_registered = true;
863 if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
865 #if defined(__ia64__)
868 pr_info("PNP: No PS/2 controller found. Probing ports directly.\n");
873 if (i8042_pnp_kbd_devices)
874 snprintf(kbd_irq_str, sizeof(kbd_irq_str),
875 "%d", i8042_pnp_kbd_irq);
876 if (i8042_pnp_aux_devices)
877 snprintf(aux_irq_str, sizeof(aux_irq_str),
878 "%d", i8042_pnp_aux_irq);
880 pr_info("PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %s%s%s\n",
881 i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
883 i8042_pnp_data_reg, i8042_pnp_command_reg,
884 kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
887 #if defined(__ia64__)
888 if (!i8042_pnp_kbd_devices)
890 if (!i8042_pnp_aux_devices)
894 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
895 i8042_pnp_data_reg != i8042_data_reg) ||
896 !i8042_pnp_data_reg) {
897 pr_warn("PNP: PS/2 controller has invalid data port %#x; using default %#x\n",
898 i8042_pnp_data_reg, i8042_data_reg);
899 i8042_pnp_data_reg = i8042_data_reg;
900 pnp_data_busted = true;
903 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
904 i8042_pnp_command_reg != i8042_command_reg) ||
905 !i8042_pnp_command_reg) {
906 pr_warn("PNP: PS/2 controller has invalid command port %#x; using default %#x\n",
907 i8042_pnp_command_reg, i8042_command_reg);
908 i8042_pnp_command_reg = i8042_command_reg;
909 pnp_data_busted = true;
912 if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
913 pr_warn("PNP: PS/2 controller doesn't have KBD irq; using default %d\n",
915 i8042_pnp_kbd_irq = i8042_kbd_irq;
916 pnp_data_busted = true;
919 if (!i8042_noaux && !i8042_pnp_aux_irq) {
920 if (!pnp_data_busted && i8042_pnp_kbd_irq) {
921 pr_warn("PNP: PS/2 appears to have AUX port disabled, "
922 "if this is incorrect please boot with i8042.nopnp\n");
925 pr_warn("PNP: PS/2 controller doesn't have AUX irq; using default %d\n",
927 i8042_pnp_aux_irq = i8042_aux_irq;
931 i8042_data_reg = i8042_pnp_data_reg;
932 i8042_command_reg = i8042_pnp_command_reg;
933 i8042_kbd_irq = i8042_pnp_kbd_irq;
934 i8042_aux_irq = i8042_pnp_aux_irq;
937 i8042_bypass_aux_irq_test = !pnp_data_busted &&
938 dmi_check_system(i8042_dmi_laptop_table);
945 static inline int i8042_pnp_init(void) { return 0; }
946 static inline void i8042_pnp_exit(void) { }
949 static int __init i8042_platform_init(void)
955 /* Just return if pre-detection shows no i8042 controller exist */
956 if (!x86_platform.i8042_detect())
961 * On ix86 platforms touching the i8042 data register region can do really
962 * bad things. Because of this the region is always reserved on ix86 boxes.
964 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
968 i8042_kbd_irq = I8042_MAP_IRQ(1);
969 i8042_aux_irq = I8042_MAP_IRQ(12);
971 retval = i8042_pnp_init();
975 #if defined(__ia64__)
980 if (dmi_check_system(i8042_dmi_reset_table))
983 if (dmi_check_system(i8042_dmi_noloop_table))
986 if (dmi_check_system(i8042_dmi_nomux_table))
989 if (dmi_check_system(i8042_dmi_notimeout_table))
990 i8042_notimeout = true;
992 if (dmi_check_system(i8042_dmi_dritek_table))
996 * A20 was already enabled during early kernel init. But some buggy
997 * BIOSes (in MSI Laptops) require A20 to be enabled using 8042 to
998 * resume from S3. So we do it here and hope that nothing breaks.
1000 i8042_command(&a20_on, 0x10d1);
1001 i8042_command(NULL, 0x00ff); /* Null command for SMM firmware */
1002 #endif /* CONFIG_X86 */
1007 static inline void i8042_platform_exit(void)
1012 #endif /* _I8042_X86IA64IO_H */