blob: 29e686388a2c9a85732a028ede45d16e188087c8 [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 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 { }
147};
148
149/*
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500150 * Some Fujitsu notebooks are having trouble with touchpads if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 * active multiplexing mode is activated. Luckily they don't have
152 * external PS/2 ports so we can safely disable it.
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500153 * ... apparently some Toshibas don't like MUX mode either and
154 * die horrible death on reboot.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
156static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = {
157 {
158 .ident = "Fujitsu Lifebook P7010/P7010D",
159 .matches = {
160 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
161 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
162 },
163 },
164 {
Dmitry Torokhovbb06ec3c2006-12-08 01:36:32 -0500165 .ident = "Fujitsu Lifebook P7010",
166 .matches = {
167 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
168 DMI_MATCH(DMI_PRODUCT_NAME, "0000000000"),
169 },
170 },
171 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .ident = "Fujitsu Lifebook P5020D",
173 .matches = {
174 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
175 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
176 },
177 },
178 {
179 .ident = "Fujitsu Lifebook S2000",
180 .matches = {
181 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
182 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
183 },
184 },
185 {
Dmitry Torokhovb4ff99b2005-05-28 02:12:10 -0500186 .ident = "Fujitsu Lifebook S6230",
187 .matches = {
188 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
189 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
190 },
191 },
192 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .ident = "Fujitsu T70H",
194 .matches = {
195 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
196 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
197 },
198 },
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500199 {
Vojtech Pavlik20f07942005-07-11 01:06:28 -0500200 .ident = "Fujitsu-Siemens Lifebook T3010",
201 .matches = {
202 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
203 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
204 },
205 },
206 {
Dmitry Torokhov7545c242005-09-04 01:42:10 -0500207 .ident = "Fujitsu-Siemens Lifebook E4010",
208 .matches = {
209 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
210 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E4010"),
211 },
212 },
213 {
Jiri Kosina3f79b1e2008-01-30 16:34:52 -0500214 .ident = "Fujitsu-Siemens Amilo Pro 2010",
215 .matches = {
216 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
217 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pro V2010"),
218 },
219 },
220 {
Jiri Kosinaefd51842008-06-06 00:56:43 -0400221 .ident = "Fujitsu-Siemens Amilo Pro 2030",
222 .matches = {
223 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
224 DMI_MATCH(DMI_PRODUCT_NAME, "AMILO PRO V2030"),
225 },
226 },
227 {
Dmitry Torokhov6e782582007-03-16 00:59:42 -0400228 /*
Dmitry Torokhovcc8310e2007-04-25 00:40:32 -0400229 * No data is coming from the touchscreen unless KBC
230 * is in legacy mode.
231 */
232 .ident = "Panasonic CF-29",
233 .matches = {
234 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
235 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
236 },
237 },
238 {
239 /*
Dmitry Torokhov6e782582007-03-16 00:59:42 -0400240 * Errors on MUX ports are reported without raising AUXDATA
241 * causing "spurious NAK" messages.
242 */
243 .ident = "HP Pavilion DV4017EA",
244 .matches = {
245 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
246 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EA032EA#ABF)"),
247 },
248 },
249 {
Dmitry Torokhov9d9d50b2007-06-28 00:44:27 -0400250 /*
251 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
252 */
253 .ident = "HP Pavilion ZT1000",
254 .matches = {
255 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
256 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Notebook PC"),
257 DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook ZT1000"),
258 },
259 },
260 {
Elvis Pranskevichus749aea72007-09-04 23:18:21 -0400261 /*
262 * Like DV4017EA does not raise AUXERR for errors on MUX ports.
263 */
264 .ident = "HP Pavilion DV4270ca",
265 .matches = {
266 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
267 DMI_MATCH(DMI_PRODUCT_NAME, "Pavilion dv4000 (EH476UA#ABL)"),
268 },
269 },
270 {
Dmitry Torokhov59311de2005-05-28 02:12:05 -0500271 .ident = "Toshiba P10",
272 .matches = {
273 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
274 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
275 },
276 },
Dmitry Torokhov865190c2005-07-11 01:06:06 -0500277 {
Dmitry Torokhova91eaa12006-09-14 01:31:06 -0400278 .ident = "Toshiba Equium A110",
279 .matches = {
280 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
281 DMI_MATCH(DMI_PRODUCT_NAME, "EQUIUM A110"),
282 },
283 },
284 {
Dmitry Torokhov865190c2005-07-11 01:06:06 -0500285 .ident = "Alienware Sentia",
286 .matches = {
287 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
288 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
289 },
290 },
Dmitry Torokhov4eb38ac2005-12-21 00:51:51 -0500291 {
292 .ident = "Sharp Actius MM20",
293 .matches = {
294 DMI_MATCH(DMI_SYS_VENDOR, "SHARP"),
295 DMI_MATCH(DMI_PRODUCT_NAME, "PC-MM20 Series"),
296 },
297 },
Vojtech Pavlik3dd01a82006-01-14 00:24:06 -0500298 {
299 .ident = "Sony Vaio FS-115b",
300 .matches = {
301 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
302 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FS115B"),
303 },
304 },
Cjacker Huange2df4522006-08-08 23:38:22 -0400305 {
306 .ident = "Amoi M636/A737",
307 .matches = {
308 DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."),
309 DMI_MATCH(DMI_PRODUCT_NAME, "M636/A737 platform"),
310 },
311 },
Jiri Kosina2a2dcd62008-03-10 03:08:54 -0700312 {
313 .ident = "Lenovo 3000 n100",
314 .matches = {
315 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
Jiri Kosina9ce1ca22008-09-04 22:28:48 -0400316 DMI_MATCH(DMI_PRODUCT_NAME, "076804U"),
Jiri Kosina2a2dcd62008-03-10 03:08:54 -0700317 },
318 },
Jiri Kosina0376bce2008-07-03 10:45:38 -0400319 {
320 .ident = "Acer Aspire 1360",
321 .matches = {
322 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
323 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1360"),
324 },
325 },
Jiri Kosina5b5b43d2008-07-03 11:00:28 -0400326 {
327 .ident = "Gericom Bellagio",
328 .matches = {
329 DMI_MATCH(DMI_SYS_VENDOR, "Gericom"),
330 DMI_MATCH(DMI_PRODUCT_NAME, "N34AS6"),
331 },
332 },
Colin B Macdonald5bd8a052008-10-11 18:16:38 -0400333 {
334 .ident = "IBM 2656",
335 .matches = {
336 DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
337 DMI_MATCH(DMI_PRODUCT_NAME, "2656"),
338 },
339 },
Herton Ronaldo Krzesinski786b11c2008-11-11 09:37:14 -0500340 {
341 .ident = "Dell XPS M1530",
342 .matches = {
343 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
344 DMI_MATCH(DMI_PRODUCT_NAME, "XPS M1530"),
345 },
346 },
Dmitry Torokhov5f4ba042008-11-14 13:32:42 -0500347 {
348 .ident = "Compal HEL80I",
349 .matches = {
350 DMI_MATCH(DMI_SYS_VENDOR, "COMPAL"),
351 DMI_MATCH(DMI_PRODUCT_NAME, "HEL80I"),
352 },
353 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 { }
355};
356
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400357#ifdef CONFIG_PNP
358static struct dmi_system_id __initdata i8042_dmi_nopnp_table[] = {
359 {
360 .ident = "Intel MBO Desktop D845PESV",
361 .matches = {
362 DMI_MATCH(DMI_BOARD_NAME, "D845PESV"),
363 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
364 },
365 },
366 { }
367};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368#endif
369
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500370/*
371 * Some Wistron based laptops need us to explicitly enable the 'Dritek
372 * keyboard extension' to make their extra keys start generating scancodes.
373 * Originally, this was just confined to older laptops, but a few Acer laptops
374 * have turned up in 2007 that also need this again.
375 */
376static struct dmi_system_id __initdata i8042_dmi_dritek_table[] = {
377 {
378 .ident = "Acer Aspire 5630",
379 .matches = {
380 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
381 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5630"),
382 },
383 },
384 {
385 .ident = "Acer Aspire 5650",
386 .matches = {
387 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
388 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5650"),
389 },
390 },
391 {
392 .ident = "Acer Aspire 5680",
393 .matches = {
394 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
395 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5680"),
396 },
397 },
398 {
Carlos Corbacho0e7e92f2008-07-07 08:55:31 -0400399 .ident = "Acer Aspire 5720",
400 .matches = {
401 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
402 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
403 },
404 },
405 {
Carlos Corbacho5799ddb2008-01-30 16:34:12 -0500406 .ident = "Acer Aspire 9110",
407 .matches = {
408 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
409 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 9110"),
410 },
411 },
412 {
Bruno Prémont65e660a2008-05-20 13:47:28 -0400413 .ident = "Acer TravelMate 660",
414 .matches = {
415 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
416 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"),
417 },
418 },
419 {
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500420 .ident = "Acer TravelMate 2490",
421 .matches = {
422 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
423 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 2490"),
424 },
425 },
Carlos Corbacho8e4ae102008-08-06 14:28:43 -0400426 {
427 .ident = "Acer TravelMate 4280",
428 .matches = {
429 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
430 DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 4280"),
431 },
432 },
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500433 { }
434};
435
436#endif /* CONFIG_X86 */
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#ifdef CONFIG_PNP
439#include <linux/pnp.h>
440
441static int i8042_pnp_kbd_registered;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500442static unsigned int i8042_pnp_kbd_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443static int i8042_pnp_aux_registered;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500444static unsigned int i8042_pnp_aux_devices;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446static int i8042_pnp_command_reg;
447static int i8042_pnp_data_reg;
448static int i8042_pnp_kbd_irq;
449static int i8042_pnp_aux_irq;
450
451static char i8042_pnp_kbd_name[32];
452static char i8042_pnp_aux_name[32];
453
454static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
455{
456 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
457 i8042_pnp_data_reg = pnp_port_start(dev,0);
458
459 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
460 i8042_pnp_command_reg = pnp_port_start(dev, 1);
461
462 if (pnp_irq_valid(dev,0))
463 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
464
Roel Kluin8c6deb92008-04-18 00:25:18 -0400465 strlcpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (strlen(pnp_dev_name(dev))) {
Roel Kluin8c6deb92008-04-18 00:25:18 -0400467 strlcat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
468 strlcat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500471 i8042_pnp_kbd_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 0;
473}
474
475static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
476{
477 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
478 i8042_pnp_data_reg = pnp_port_start(dev,0);
479
480 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
481 i8042_pnp_command_reg = pnp_port_start(dev, 1);
482
483 if (pnp_irq_valid(dev, 0))
484 i8042_pnp_aux_irq = pnp_irq(dev, 0);
485
Roel Kluin8c6deb92008-04-18 00:25:18 -0400486 strlcpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (strlen(pnp_dev_name(dev))) {
Roel Kluin8c6deb92008-04-18 00:25:18 -0400488 strlcat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
489 strlcat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500492 i8042_pnp_aux_devices++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return 0;
494}
495
496static struct pnp_device_id pnp_kbd_devids[] = {
497 { .id = "PNP0303", .driver_data = 0 },
498 { .id = "PNP030b", .driver_data = 0 },
499 { .id = "", },
500};
501
502static struct pnp_driver i8042_pnp_kbd_driver = {
503 .name = "i8042 kbd",
504 .id_table = pnp_kbd_devids,
505 .probe = i8042_pnp_kbd_probe,
506};
507
508static struct pnp_device_id pnp_aux_devids[] = {
Dmitry Torokhovb9973952007-04-25 00:40:53 -0400509 { .id = "FJC6000", .driver_data = 0 },
510 { .id = "FJC6001", .driver_data = 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 { .id = "PNP0f03", .driver_data = 0 },
512 { .id = "PNP0f0b", .driver_data = 0 },
513 { .id = "PNP0f0e", .driver_data = 0 },
514 { .id = "PNP0f12", .driver_data = 0 },
515 { .id = "PNP0f13", .driver_data = 0 },
516 { .id = "PNP0f19", .driver_data = 0 },
517 { .id = "PNP0f1c", .driver_data = 0 },
518 { .id = "SYN0801", .driver_data = 0 },
519 { .id = "", },
520};
521
522static struct pnp_driver i8042_pnp_aux_driver = {
523 .name = "i8042 aux",
524 .id_table = pnp_aux_devids,
525 .probe = i8042_pnp_aux_probe,
526};
527
528static void i8042_pnp_exit(void)
529{
Kurt Garloff74af42b2005-05-28 02:11:38 -0500530 if (i8042_pnp_kbd_registered) {
531 i8042_pnp_kbd_registered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 pnp_unregister_driver(&i8042_pnp_kbd_driver);
Kurt Garloff74af42b2005-05-28 02:11:38 -0500533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Kurt Garloff74af42b2005-05-28 02:11:38 -0500535 if (i8042_pnp_aux_registered) {
536 i8042_pnp_aux_registered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 pnp_unregister_driver(&i8042_pnp_aux_driver);
Kurt Garloff74af42b2005-05-28 02:11:38 -0500538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500541static int __init i8042_pnp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500543 char kbd_irq_str[4] = { 0 }, aux_irq_str[4] = { 0 };
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400544 int pnp_data_busted = 0;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500545 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400547#ifdef CONFIG_X86
548 if (dmi_check_system(i8042_dmi_nopnp_table))
549 i8042_nopnp = 1;
550#endif
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (i8042_nopnp) {
Vojtech Pavlik39fa5802005-05-28 02:11:16 -0500553 printk(KERN_INFO "i8042: PNP detection disabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return 0;
555 }
556
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500557 err = pnp_register_driver(&i8042_pnp_kbd_driver);
558 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 i8042_pnp_kbd_registered = 1;
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500560
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500561 err = pnp_register_driver(&i8042_pnp_aux_driver);
562 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 i8042_pnp_aux_registered = 1;
564
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500565 if (!i8042_pnp_kbd_devices && !i8042_pnp_aux_devices) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 i8042_pnp_exit();
567#if defined(__ia64__)
568 return -ENODEV;
569#else
Dmitry Torokhov5a72afc2005-05-28 02:11:32 -0500570 printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return 0;
572#endif
573 }
574
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500575 if (i8042_pnp_kbd_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500576 snprintf(kbd_irq_str, sizeof(kbd_irq_str),
577 "%d", i8042_pnp_kbd_irq);
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500578 if (i8042_pnp_aux_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500579 snprintf(aux_irq_str, sizeof(aux_irq_str),
580 "%d", i8042_pnp_aux_irq);
581
582 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 -0500583 i8042_pnp_kbd_name, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500584 i8042_pnp_aux_name,
585 i8042_pnp_data_reg, i8042_pnp_command_reg,
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500586 kbd_irq_str, (i8042_pnp_kbd_devices && i8042_pnp_aux_devices) ? "," : "",
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500587 aux_irq_str);
588
589#if defined(__ia64__)
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500590 if (!i8042_pnp_kbd_devices)
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -0500591 i8042_nokbd = 1;
Bjorn Helgaas2bfc3c62006-03-14 00:12:24 -0500592 if (!i8042_pnp_aux_devices)
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500593 i8042_noaux = 1;
594#endif
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400597 i8042_pnp_data_reg != i8042_data_reg) ||
598 !i8042_pnp_data_reg) {
599 printk(KERN_WARNING
600 "PNP: PS/2 controller has invalid data port %#x; "
601 "using default %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 i8042_pnp_data_reg, i8042_data_reg);
603 i8042_pnp_data_reg = i8042_data_reg;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400604 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
607 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400608 i8042_pnp_command_reg != i8042_command_reg) ||
609 !i8042_pnp_command_reg) {
610 printk(KERN_WARNING
611 "PNP: PS/2 controller has invalid command port %#x; "
612 "using default %#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 i8042_pnp_command_reg, i8042_command_reg);
614 i8042_pnp_command_reg = i8042_command_reg;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400615 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
Dmitry Torokhov945ef0d2005-09-04 01:42:00 -0500618 if (!i8042_nokbd && !i8042_pnp_kbd_irq) {
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400619 printk(KERN_WARNING
620 "PNP: PS/2 controller doesn't have KBD irq; "
621 "using default %d\n", i8042_kbd_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 i8042_pnp_kbd_irq = i8042_kbd_irq;
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400623 pnp_data_busted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
625
Dmitry Torokhovc3d31e72005-09-04 01:41:51 -0500626 if (!i8042_noaux && !i8042_pnp_aux_irq) {
Dmitry Torokhov080c6522007-07-18 00:38:01 -0400627 if (!pnp_data_busted && i8042_pnp_kbd_irq) {
628 printk(KERN_WARNING
629 "PNP: PS/2 appears to have AUX port disabled, "
630 "if this is incorrect please boot with "
631 "i8042.nopnp\n");
632 i8042_noaux = 1;
633 } else {
634 printk(KERN_WARNING
635 "PNP: PS/2 controller doesn't have AUX irq; "
636 "using default %d\n", i8042_aux_irq);
637 i8042_pnp_aux_irq = i8042_aux_irq;
638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 i8042_data_reg = i8042_pnp_data_reg;
642 i8042_command_reg = i8042_pnp_command_reg;
643 i8042_kbd_irq = i8042_pnp_kbd_irq;
644 i8042_aux_irq = i8042_pnp_aux_irq;
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return 0;
647}
648
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500649#else
650static inline int i8042_pnp_init(void) { return 0; }
651static inline void i8042_pnp_exit(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652#endif
653
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500654static int __init i8042_platform_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500656 int retval;
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/*
659 * On ix86 platforms touching the i8042 data register region can do really
660 * bad things. Because of this the region is always reserved on ix86 boxes.
661 *
662 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500663 * return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665
666 i8042_kbd_irq = I8042_MAP_IRQ(1);
667 i8042_aux_irq = I8042_MAP_IRQ(12);
668
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500669 retval = i8042_pnp_init();
670 if (retval)
671 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673#if defined(__ia64__)
674 i8042_reset = 1;
675#endif
676
Jiri Kosinac3a34f42008-05-28 01:10:52 -0400677#ifdef CONFIG_X86
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (dmi_check_system(i8042_dmi_noloop_table))
679 i8042_noloop = 1;
680
681 if (dmi_check_system(i8042_dmi_nomux_table))
682 i8042_nomux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Carlos Corbacho8987fec2008-01-21 01:04:40 -0500684 if (dmi_check_system(i8042_dmi_dritek_table))
685 i8042_dritek = 1;
686#endif /* CONFIG_X86 */
687
Dmitry Torokhov8d5987a2005-09-04 01:41:38 -0500688 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
691static inline void i8042_platform_exit(void)
692{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 i8042_pnp_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696#endif /* _I8042_X86IA64IO_H */