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.
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"
23 # define I8042_MAP_IRQ(x) isa_irq_to_vector((x))
25 # define I8042_MAP_IRQ(x) (x)
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;
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);
68 #include <linux/dmi.h>
70 static struct dmi_system_id __initdata i8042_dmi_noloop_table[] = {
72 /* AUX LOOP command does not raise AUX IRQ */
73 .ident = "Arima-Rioworks HDAMB",
75 DMI_MATCH(DMI_BOARD_VENDOR, "RIOWORKS"),
76 DMI_MATCH(DMI_BOARD_NAME, "HDAMB"),
77 DMI_MATCH(DMI_BOARD_VERSION, "Rev E"),
81 /* AUX LOOP command does not raise AUX IRQ */
82 .ident = "ASUS P65UP5",
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"),
90 .ident = "Compaq Proliant 8500",
92 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
93 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
94 DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
98 .ident = "Compaq Proliant DL760",
100 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
101 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
102 DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
106 .ident = "OQO Model 01",
108 DMI_MATCH(DMI_SYS_VENDOR, "OQO"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPTO"),
110 DMI_MATCH(DMI_PRODUCT_VERSION, "00"),
114 /* AUX LOOP does not work properly */
115 .ident = "ULI EV4873",
117 DMI_MATCH(DMI_SYS_VENDOR, "ULI"),
118 DMI_MATCH(DMI_PRODUCT_NAME, "EV4873"),
119 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
123 .ident = "Microsoft Virtual Machine",
125 DMI_MATCH(DMI_SYS_VENDOR, "Microsoft Corporation"),
126 DMI_MATCH(DMI_PRODUCT_NAME, "Virtual Machine"),
127 DMI_MATCH(DMI_PRODUCT_VERSION, "VS2005R2"),
131 .ident = "Medion MAM 2070",
133 DMI_MATCH(DMI_SYS_VENDOR, "Notebook"),
134 DMI_MATCH(DMI_PRODUCT_NAME, "MAM 2070"),
135 DMI_MATCH(DMI_PRODUCT_VERSION, "5a"),
139 .ident = "Blue FB5601",
141 DMI_MATCH(DMI_SYS_VENDOR, "blue"),
142 DMI_MATCH(DMI_PRODUCT_NAME, "FB5601"),
143 DMI_MATCH(DMI_PRODUCT_VERSION, "M606"),
147 .ident = "Gigabyte M912",
149 DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"),
150 DMI_MATCH(DMI_PRODUCT_NAME, "M912"),
151 DMI_MATCH(DMI_PRODUCT_VERSION, "01"),
155 .ident = "HP DV9700",
157 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
158 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv9700"),
159 DMI_MATCH(DMI_PRODUCT_VERSION, "Rev 1"),
166 * Some Fujitsu notebooks are having trouble with touchpads if
167 * active multiplexing mode is activated. Luckily they don't have
168 * external PS/2 ports so we can safely disable it.
169 * ... apparently some Toshibas don't like MUX mode either and
170 * die horrible death on reboot.
172 static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = {
174 .ident = "Fujitsu Lifebook P7010/P7010D",
176 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
177 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
181 .ident = "Fujitsu Lifebook P7010",
183 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
184 DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
188 .ident = "Fujitsu Lifebook P5020D",
190 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
191 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
195 .ident = "Fujitsu Lifebook S2000",
197 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
198 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
202 .ident = "Fujitsu Lifebook S6230",
204 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
205 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
209 .ident = "Fujitsu T70H",
211 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
212 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
216 .ident = "Fujitsu-Siemens Lifebook T3010",
218 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
219 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
223 .ident = "Fujitsu-Siemens Lifebook E4010",
225 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
226 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
230 .ident = "Fujitsu-Siemens Amilo Pro 2010",
232 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
233 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
237 .ident = "Fujitsu-Siemens Amilo Pro 2030",
239 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
240 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
245 * No data is coming from the touchscreen unless KBC
248 .ident = "Panasonic CF-29",
250 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
251 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
256 * Errors on MUX ports are reported without raising AUXDATA
257 * causing "spurious NAK" messages.
259 .ident = "HP Pavilion DV4017EA",
261 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
262 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
267 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
269 .ident = "HP Pavilion ZT1000",
271 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
272 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
273 DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
278 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
280 .ident = "HP Pavilion DV4270ca",
282 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
283 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
287 .ident = "Toshiba P10",
289 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
290 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
294 .ident = "Toshiba Equium A110",
296 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
297 DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
301 .ident = "Alienware Sentia",
303 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
304 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
308 .ident = "Sharp Actius MM20",
310 DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
311 DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
315 .ident = "Sony Vaio FS-115b",
317 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
318 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
322 .ident = "Amoi M636/A737",
324 DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
325 DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
329 .ident = "Lenovo 3000 n100",
331 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
332 DMI_MATCH(DMI_PRODUCT_NAME, "076804U"),
336 .ident = "Acer Aspire 1360",
338 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
339 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
343 .ident = "Gericom Bellagio",
345 DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
346 DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
352 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
353 DMI_MATCH(DMI_PRODUCT_NAME, "2656"),
357 .ident = "Dell XPS M1530",
359 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
360 DMI_MATCH(DMI_PRODUCT_NAME, "XPS M1530"),
364 .ident = "Compal HEL80I",
366 DMI_MATCH(DMI_SYS_VENDOR, "COMPAL"),
367 DMI_MATCH(DMI_PRODUCT_NAME, "HEL80I"),
371 .ident = "Dell Vostro 1510",
373 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
374 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro1510"),
380 static struct dmi_system_id __initdata i8042_dmi_reset_table[] = {
382 .ident = "MSI Wind U-100",
384 DMI_MATCH(DMI_BOARD_NAME, "U-100"),
385 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
389 .ident = "LG Electronics X110",
391 DMI_MATCH(DMI_BOARD_NAME, "X110"),
392 DMI_MATCH(DMI_BOARD_VENDOR, "LG Electronics Inc."),
399 static struct dmi_system_id __initdata i8042_dmi_nopnp_table[] = {
401 .ident = "Intel MBO Desktop D845PESV",
403 DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
404 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
408 .ident = "MSI Wind U-100",
410 DMI_MATCH(DMI_BOARD_NAME, "U-100"),
411 DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
419 * Some Wistron based laptops need us to explicitly enable the 'Dritek
420 * keyboard extension' to make their extra keys start generating scancodes.
421 * Originally, this was just confined to older laptops, but a few Acer laptops
422 * have turned up in 2007 that also need this again.
424 static struct dmi_system_id __initdata i8042_dmi_dritek_table[] = {
426 .ident = "Acer Aspire 5630",
428 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
429 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
433 .ident = "Acer Aspire 5650",
435 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
436 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
440 .ident = "Acer Aspire 5680",
442 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
443 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
447 .ident = "Acer Aspire 5720",
449 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
450 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
454 .ident = "Acer Aspire 9110",
456 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
457 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
461 .ident = "Acer TravelMate 660",
463 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
464 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
468 .ident = "Acer TravelMate 2490",
470 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
471 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
475 .ident = "Acer TravelMate 4280",
477 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
478 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4280"),
484 #endif /* CONFIG_X86 */
487 #include <linux/pnp.h>
489 static int i8042_pnp_kbd_registered;
490 static unsigned int i8042_pnp_kbd_devices;
491 static int i8042_pnp_aux_registered;
492 static unsigned int i8042_pnp_aux_devices;
494 static int i8042_pnp_command_reg;
495 static int i8042_pnp_data_reg;
496 static int i8042_pnp_kbd_irq;
497 static int i8042_pnp_aux_irq;
499 static char i8042_pnp_kbd_name[32];
500 static char i8042_pnp_aux_name[32];
502 static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
504 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
505 i8042_pnp_data_reg = pnp_port_start(dev,0);
507 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
508 i8042_pnp_command_reg = pnp_port_start(dev, 1);
510 if (pnp_irq_valid(dev,0))
511 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
513 strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
514 if (strlen(pnp_dev_name(dev))) {
515 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
516 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
519 i8042_pnp_kbd_devices++;
523 static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
525 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
526 i8042_pnp_data_reg = pnp_port_start(dev,0);
528 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
529 i8042_pnp_command_reg = pnp_port_start(dev, 1);
531 if (pnp_irq_valid(dev, 0))
532 i8042_pnp_aux_irq = pnp_irq(dev, 0);
534 strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
535 if (strlen(pnp_dev_name(dev))) {
536 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
537 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
540 i8042_pnp_aux_devices++;
544 static struct pnp_device_id pnp_kbd_devids[] = {
545 { .id = "PNP0303", .driver_data = 0 },
546 { .id = "PNP030b", .driver_data = 0 },
550 static struct pnp_driver i8042_pnp_kbd_driver = {
552 .id_table = pnp_kbd_devids,
553 .probe = i8042_pnp_kbd_probe,
556 static struct pnp_device_id pnp_aux_devids[] = {
557 { .id = "FJC6000", .driver_data = 0 },
558 { .id = "FJC6001", .driver_data = 0 },
559 { .id = "PNP0f03", .driver_data = 0 },
560 { .id = "PNP0f0b", .driver_data = 0 },
561 { .id = "PNP0f0e", .driver_data = 0 },
562 { .id = "PNP0f12", .driver_data = 0 },
563 { .id = "PNP0f13", .driver_data = 0 },
564 { .id = "PNP0f19", .driver_data = 0 },
565 { .id = "PNP0f1c", .driver_data = 0 },
566 { .id = "SYN0801", .driver_data = 0 },
570 static struct pnp_driver i8042_pnp_aux_driver = {
572 .id_table = pnp_aux_devids,
573 .probe = i8042_pnp_aux_probe,
576 static void i8042_pnp_exit(void)
578 if (i8042_pnp_kbd_registered) {
579 i8042_pnp_kbd_registered = 0;
580 pnp_unregister_driver(&i8042_pnp_kbd_driver);
583 if (i8042_pnp_aux_registered) {
584 i8042_pnp_aux_registered = 0;
585 pnp_unregister_driver(&i8042_pnp_aux_driver);
589 static int __init i8042_pnp_init(void)
591 char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
592 int pnp_data_busted = 0;
596 if (dmi_check_system(i8042_dmi_nopnp_table))
601 printk(KERN_INFO "i8042: PNP detection disabled\n");
605 err = pnp_register_driver(&i8042_pnp_kbd_driver);
607 i8042_pnp_kbd_registered = 1;
609 err = pnp_register_driver(&i8042_pnp_aux_driver);
611 i8042_pnp_aux_registered = 1;
613 if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
615 #if defined(__ia64__)
618 printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n");
623 if (i8042_pnp_kbd_devices)
624 snprintf(kbd_irq_str, sizeof(kbd_irq_str),
625 "%d", i8042_pnp_kbd_irq);
626 if (i8042_pnp_aux_devices)
627 snprintf(aux_irq_str, sizeof(aux_irq_str),
628 "%d", i8042_pnp_aux_irq);
630 printk(KERN_INFO "PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %s%s%s\n",
631 i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
633 i8042_pnp_data_reg, i8042_pnp_command_reg,
634 kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
637 #if defined(__ia64__)
638 if (!i8042_pnp_kbd_devices)
640 if (!i8042_pnp_aux_devices)
644 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
645 i8042_pnp_data_reg != i8042_data_reg) ||
646 !i8042_pnp_data_reg) {
648 "PNP: PS/2 controller has invalid data port %#x; "
649 "using default %#x\n",
650 i8042_pnp_data_reg, i8042_data_reg);
651 i8042_pnp_data_reg = i8042_data_reg;
655 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
656 i8042_pnp_command_reg != i8042_command_reg) ||
657 !i8042_pnp_command_reg) {
659 "PNP: PS/2 controller has invalid command port %#x; "
660 "using default %#x\n",
661 i8042_pnp_command_reg, i8042_command_reg);
662 i8042_pnp_command_reg = i8042_command_reg;
666 if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
668 "PNP: PS/2 controller doesn't have KBD irq; "
669 "using default %d\n", i8042_kbd_irq);
670 i8042_pnp_kbd_irq = i8042_kbd_irq;
674 if (!i8042_noaux && !i8042_pnp_aux_irq) {
675 if (!pnp_data_busted && i8042_pnp_kbd_irq) {
677 "PNP: PS/2 appears to have AUX port disabled, "
678 "if this is incorrect please boot with "
683 "PNP: PS/2 controller doesn't have AUX irq; "
684 "using default %d\n", i8042_aux_irq);
685 i8042_pnp_aux_irq = i8042_aux_irq;
689 i8042_data_reg = i8042_pnp_data_reg;
690 i8042_command_reg = i8042_pnp_command_reg;
691 i8042_kbd_irq = i8042_pnp_kbd_irq;
692 i8042_aux_irq = i8042_pnp_aux_irq;
698 static inline int i8042_pnp_init(void) { return 0; }
699 static inline void i8042_pnp_exit(void) { }
702 static int __init i8042_platform_init(void)
707 * On ix86 platforms touching the i8042 data register region can do really
708 * bad things. Because of this the region is always reserved on ix86 boxes.
710 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
714 i8042_kbd_irq = I8042_MAP_IRQ(1);
715 i8042_aux_irq = I8042_MAP_IRQ(12);
717 retval = i8042_pnp_init();
721 #if defined(__ia64__)
726 if (dmi_check_system(i8042_dmi_reset_table))
729 if (dmi_check_system(i8042_dmi_noloop_table))
732 if (dmi_check_system(i8042_dmi_nomux_table))
735 if (dmi_check_system(i8042_dmi_dritek_table))
737 #endif /* CONFIG_X86 */
742 static inline void i8042_platform_exit(void)
747 #endif /* _I8042_X86IA64IO_H */