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
);
66 #if defined(__i386__) || defined(__x86_64__)
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
= "ASUS P65UP5",
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"),
81 .ident
= "Compaq Proliant 8500",
83 DMI_MATCH(DMI_SYS_VENDOR
, "Compaq"),
84 DMI_MATCH(DMI_PRODUCT_NAME
, "ProLiant"),
85 DMI_MATCH(DMI_PRODUCT_VERSION
, "8500"),
89 .ident
= "Compaq Proliant DL760",
91 DMI_MATCH(DMI_SYS_VENDOR
, "Compaq"),
92 DMI_MATCH(DMI_PRODUCT_NAME
, "ProLiant"),
93 DMI_MATCH(DMI_PRODUCT_VERSION
, "DL760"),
97 .ident
= "OQO Model 01",
99 DMI_MATCH(DMI_SYS_VENDOR
, "OQO"),
100 DMI_MATCH(DMI_PRODUCT_NAME
, "ZEPTO"),
101 DMI_MATCH(DMI_PRODUCT_VERSION
, "00"),
105 /* AUX LOOP does not work properly */
106 .ident
= "ULI EV4873",
108 DMI_MATCH(DMI_SYS_VENDOR
, "ULI"),
109 DMI_MATCH(DMI_PRODUCT_NAME
, "EV4873"),
110 DMI_MATCH(DMI_PRODUCT_VERSION
, "5a"),
114 .ident
= "Microsoft Virtual Machine",
116 DMI_MATCH(DMI_SYS_VENDOR
, "Microsoft Corporation"),
117 DMI_MATCH(DMI_PRODUCT_NAME
, "Virtual Machine"),
118 DMI_MATCH(DMI_PRODUCT_VERSION
, "VS2005R2"),
125 * Some Fujitsu notebooks are having trouble with touchpads if
126 * active multiplexing mode is activated. Luckily they don't have
127 * external PS/2 ports so we can safely disable it.
128 * ... apparently some Toshibas don't like MUX mode either and
129 * die horrible death on reboot.
131 static struct dmi_system_id __initdata i8042_dmi_nomux_table
[] = {
133 .ident
= "Fujitsu Lifebook P7010/P7010D",
135 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
136 DMI_MATCH(DMI_PRODUCT_NAME
, "P7010"),
140 .ident
= "Fujitsu Lifebook P7010",
142 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
143 DMI_MATCH(DMI_PRODUCT_NAME
, "0000000000"),
147 .ident
= "Fujitsu Lifebook P5020D",
149 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
150 DMI_MATCH(DMI_PRODUCT_NAME
, "LifeBook P Series"),
154 .ident
= "Fujitsu Lifebook S2000",
156 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
157 DMI_MATCH(DMI_PRODUCT_NAME
, "LifeBook S Series"),
161 .ident
= "Fujitsu Lifebook S6230",
163 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
164 DMI_MATCH(DMI_PRODUCT_NAME
, "LifeBook S6230"),
168 .ident
= "Fujitsu T70H",
170 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
171 DMI_MATCH(DMI_PRODUCT_NAME
, "FMVLT70H"),
175 .ident
= "Fujitsu-Siemens Lifebook T3010",
177 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
178 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK T3010"),
182 .ident
= "Fujitsu-Siemens Lifebook E4010",
184 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
185 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK E4010"),
189 .ident
= "Fujitsu-Siemens Amilo Pro 2010",
191 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
192 DMI_MATCH(DMI_PRODUCT_NAME
, "AMILO Pro V2010"),
197 * No data is coming from the touchscreen unless KBC
200 .ident
= "Panasonic CF-29",
202 DMI_MATCH(DMI_SYS_VENDOR
, "Matsushita"),
203 DMI_MATCH(DMI_PRODUCT_NAME
, "CF-29"),
208 * Errors on MUX ports are reported without raising AUXDATA
209 * causing "spurious NAK" messages.
211 .ident
= "HP Pavilion DV4017EA",
213 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
214 DMI_MATCH(DMI_PRODUCT_NAME
, "Pavilion dv4000 (EA032EA#ABF)"),
219 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
221 .ident
= "HP Pavilion ZT1000",
223 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
224 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Pavilion Notebook PC"),
225 DMI_MATCH(DMI_PRODUCT_VERSION
, "HP Pavilion Notebook ZT1000"),
230 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
232 .ident
= "HP Pavilion DV4270ca",
234 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
235 DMI_MATCH(DMI_PRODUCT_NAME
, "Pavilion dv4000 (EH476UA#ABL)"),
239 .ident
= "Toshiba P10",
241 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
242 DMI_MATCH(DMI_PRODUCT_NAME
, "Satellite P10"),
246 .ident
= "Toshiba Equium A110",
248 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
249 DMI_MATCH(DMI_PRODUCT_NAME
, "EQUIUM A110"),
253 .ident
= "Alienware Sentia",
255 DMI_MATCH(DMI_SYS_VENDOR
, "ALIENWARE"),
256 DMI_MATCH(DMI_PRODUCT_NAME
, "Sentia"),
260 .ident
= "Sharp Actius MM20",
262 DMI_MATCH(DMI_SYS_VENDOR
, "SHARP"),
263 DMI_MATCH(DMI_PRODUCT_NAME
, "PC-MM20 Series"),
267 .ident
= "Sony Vaio FS-115b",
269 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
270 DMI_MATCH(DMI_PRODUCT_NAME
, "VGN-FS115B"),
274 .ident
= "Amoi M636/A737",
276 DMI_MATCH(DMI_SYS_VENDOR
, "Amoi Electronics CO.,LTD."),
277 DMI_MATCH(DMI_PRODUCT_NAME
, "M636/A737 platform"),
280 <<<<<<< HEAD
:drivers
/input
/serio
/i8042
-x86ia64io
.h
283 .ident
= "Lenovo 3000 n100",
285 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
286 DMI_MATCH(DMI_PRODUCT_VERSION
, "3000 N100"),
289 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:drivers
/input
/serio
/i8042
-x86ia64io
.h
299 #include <linux/dmi.h>
302 * Some Wistron based laptops need us to explicitly enable the 'Dritek
303 * keyboard extension' to make their extra keys start generating scancodes.
304 * Originally, this was just confined to older laptops, but a few Acer laptops
305 * have turned up in 2007 that also need this again.
307 static struct dmi_system_id __initdata i8042_dmi_dritek_table
[] = {
309 .ident
= "Acer Aspire 5630",
311 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
312 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5630"),
316 .ident
= "Acer Aspire 5650",
318 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
319 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5650"),
323 .ident
= "Acer Aspire 5680",
325 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
326 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5680"),
330 .ident
= "Acer Aspire 9110",
332 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
333 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 9110"),
337 .ident
= "Acer TravelMate 2490",
339 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
340 DMI_MATCH(DMI_PRODUCT_NAME
, "TravelMate 2490"),
346 #endif /* CONFIG_X86 */
350 #include <linux/pnp.h>
352 static int i8042_pnp_kbd_registered
;
353 static unsigned int i8042_pnp_kbd_devices
;
354 static int i8042_pnp_aux_registered
;
355 static unsigned int i8042_pnp_aux_devices
;
357 static int i8042_pnp_command_reg
;
358 static int i8042_pnp_data_reg
;
359 static int i8042_pnp_kbd_irq
;
360 static int i8042_pnp_aux_irq
;
362 static char i8042_pnp_kbd_name
[32];
363 static char i8042_pnp_aux_name
[32];
365 static int i8042_pnp_kbd_probe(struct pnp_dev
*dev
, const struct pnp_device_id
*did
)
367 if (pnp_port_valid(dev
, 0) && pnp_port_len(dev
, 0) == 1)
368 i8042_pnp_data_reg
= pnp_port_start(dev
,0);
370 if (pnp_port_valid(dev
, 1) && pnp_port_len(dev
, 1) == 1)
371 i8042_pnp_command_reg
= pnp_port_start(dev
, 1);
373 if (pnp_irq_valid(dev
,0))
374 i8042_pnp_kbd_irq
= pnp_irq(dev
, 0);
376 strncpy(i8042_pnp_kbd_name
, did
->id
, sizeof(i8042_pnp_kbd_name
));
377 if (strlen(pnp_dev_name(dev
))) {
378 strncat(i8042_pnp_kbd_name
, ":", sizeof(i8042_pnp_kbd_name
));
379 strncat(i8042_pnp_kbd_name
, pnp_dev_name(dev
), sizeof(i8042_pnp_kbd_name
));
382 i8042_pnp_kbd_devices
++;
386 static int i8042_pnp_aux_probe(struct pnp_dev
*dev
, const struct pnp_device_id
*did
)
388 if (pnp_port_valid(dev
, 0) && pnp_port_len(dev
, 0) == 1)
389 i8042_pnp_data_reg
= pnp_port_start(dev
,0);
391 if (pnp_port_valid(dev
, 1) && pnp_port_len(dev
, 1) == 1)
392 i8042_pnp_command_reg
= pnp_port_start(dev
, 1);
394 if (pnp_irq_valid(dev
, 0))
395 i8042_pnp_aux_irq
= pnp_irq(dev
, 0);
397 strncpy(i8042_pnp_aux_name
, did
->id
, sizeof(i8042_pnp_aux_name
));
398 if (strlen(pnp_dev_name(dev
))) {
399 strncat(i8042_pnp_aux_name
, ":", sizeof(i8042_pnp_aux_name
));
400 strncat(i8042_pnp_aux_name
, pnp_dev_name(dev
), sizeof(i8042_pnp_aux_name
));
403 i8042_pnp_aux_devices
++;
407 static struct pnp_device_id pnp_kbd_devids
[] = {
408 { .id
= "PNP0303", .driver_data
= 0 },
409 { .id
= "PNP030b", .driver_data
= 0 },
413 static struct pnp_driver i8042_pnp_kbd_driver
= {
415 .id_table
= pnp_kbd_devids
,
416 .probe
= i8042_pnp_kbd_probe
,
419 static struct pnp_device_id pnp_aux_devids
[] = {
420 { .id
= "FJC6000", .driver_data
= 0 },
421 { .id
= "FJC6001", .driver_data
= 0 },
422 { .id
= "PNP0f03", .driver_data
= 0 },
423 { .id
= "PNP0f0b", .driver_data
= 0 },
424 { .id
= "PNP0f0e", .driver_data
= 0 },
425 { .id
= "PNP0f12", .driver_data
= 0 },
426 { .id
= "PNP0f13", .driver_data
= 0 },
427 { .id
= "PNP0f19", .driver_data
= 0 },
428 { .id
= "PNP0f1c", .driver_data
= 0 },
429 { .id
= "SYN0801", .driver_data
= 0 },
433 static struct pnp_driver i8042_pnp_aux_driver
= {
435 .id_table
= pnp_aux_devids
,
436 .probe
= i8042_pnp_aux_probe
,
439 static void i8042_pnp_exit(void)
441 if (i8042_pnp_kbd_registered
) {
442 i8042_pnp_kbd_registered
= 0;
443 pnp_unregister_driver(&i8042_pnp_kbd_driver
);
446 if (i8042_pnp_aux_registered
) {
447 i8042_pnp_aux_registered
= 0;
448 pnp_unregister_driver(&i8042_pnp_aux_driver
);
452 static int __init
i8042_pnp_init(void)
454 char kbd_irq_str
[4] = { 0 }, aux_irq_str
[4] = { 0 };
455 int pnp_data_busted
= 0;
459 printk(KERN_INFO
"i8042: PNP detection disabled\n");
463 err
= pnp_register_driver(&i8042_pnp_kbd_driver
);
465 i8042_pnp_kbd_registered
= 1;
467 err
= pnp_register_driver(&i8042_pnp_aux_driver
);
469 i8042_pnp_aux_registered
= 1;
471 if (!i8042_pnp_kbd_devices
&& !i8042_pnp_aux_devices
) {
473 #if defined(__ia64__)
476 printk(KERN_INFO
"PNP: No PS/2 controller found. Probing ports directly.\n");
481 if (i8042_pnp_kbd_devices
)
482 snprintf(kbd_irq_str
, sizeof(kbd_irq_str
),
483 "%d", i8042_pnp_kbd_irq
);
484 if (i8042_pnp_aux_devices
)
485 snprintf(aux_irq_str
, sizeof(aux_irq_str
),
486 "%d", i8042_pnp_aux_irq
);
488 printk(KERN_INFO
"PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %s%s%s\n",
489 i8042_pnp_kbd_name
, (i8042_pnp_kbd_devices
&& i8042_pnp_aux_devices
) ? "," : "",
491 i8042_pnp_data_reg
, i8042_pnp_command_reg
,
492 kbd_irq_str
, (i8042_pnp_kbd_devices
&& i8042_pnp_aux_devices
) ? "," : "",
495 #if defined(__ia64__)
496 if (!i8042_pnp_kbd_devices
)
498 if (!i8042_pnp_aux_devices
)
502 if (((i8042_pnp_data_reg
& ~0xf) == (i8042_data_reg
& ~0xf) &&
503 i8042_pnp_data_reg
!= i8042_data_reg
) ||
504 !i8042_pnp_data_reg
) {
506 "PNP: PS/2 controller has invalid data port %#x; "
507 "using default %#x\n",
508 i8042_pnp_data_reg
, i8042_data_reg
);
509 i8042_pnp_data_reg
= i8042_data_reg
;
513 if (((i8042_pnp_command_reg
& ~0xf) == (i8042_command_reg
& ~0xf) &&
514 i8042_pnp_command_reg
!= i8042_command_reg
) ||
515 !i8042_pnp_command_reg
) {
517 "PNP: PS/2 controller has invalid command port %#x; "
518 "using default %#x\n",
519 i8042_pnp_command_reg
, i8042_command_reg
);
520 i8042_pnp_command_reg
= i8042_command_reg
;
524 if (!i8042_nokbd
&& !i8042_pnp_kbd_irq
) {
526 "PNP: PS/2 controller doesn't have KBD irq; "
527 "using default %d\n", i8042_kbd_irq
);
528 i8042_pnp_kbd_irq
= i8042_kbd_irq
;
532 if (!i8042_noaux
&& !i8042_pnp_aux_irq
) {
533 if (!pnp_data_busted
&& i8042_pnp_kbd_irq
) {
535 "PNP: PS/2 appears to have AUX port disabled, "
536 "if this is incorrect please boot with "
541 "PNP: PS/2 controller doesn't have AUX irq; "
542 "using default %d\n", i8042_aux_irq
);
543 i8042_pnp_aux_irq
= i8042_aux_irq
;
547 i8042_data_reg
= i8042_pnp_data_reg
;
548 i8042_command_reg
= i8042_pnp_command_reg
;
549 i8042_kbd_irq
= i8042_pnp_kbd_irq
;
550 i8042_aux_irq
= i8042_pnp_aux_irq
;
556 static inline int i8042_pnp_init(void) { return 0; }
557 static inline void i8042_pnp_exit(void) { }
560 static int __init
i8042_platform_init(void)
565 * On ix86 platforms touching the i8042 data register region can do really
566 * bad things. Because of this the region is always reserved on ix86 boxes.
568 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
572 i8042_kbd_irq
= I8042_MAP_IRQ(1);
573 i8042_aux_irq
= I8042_MAP_IRQ(12);
575 retval
= i8042_pnp_init();
579 #if defined(__ia64__)
583 #if defined(__i386__) || defined(__x86_64__)
584 if (dmi_check_system(i8042_dmi_noloop_table
))
587 if (dmi_check_system(i8042_dmi_nomux_table
))
592 if (dmi_check_system(i8042_dmi_dritek_table
))
594 #endif /* CONFIG_X86 */
599 static inline void i8042_platform_exit(void)
604 #endif /* _I8042_X86IA64IO_H */