[IA64, X86_64] fix swiotlb sizing
[linux/fpc-iii.git] / drivers / input / serio / i8042-x86ia64io.h
blob03877c84e6ff97487b6585a5efa8c953619cd39d
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 #if defined(__i386__)
68 #include <linux/dmi.h>
70 static struct dmi_system_id __initdata i8042_dmi_noloop_table[] = {
72 .ident = "Compaq Proliant 8500",
73 .matches = {
74 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
75 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
76 DMI_MATCH(DMI_PRODUCT_VERSION, "8500"),
80 .ident = "Compaq Proliant DL760",
81 .matches = {
82 DMI_MATCH(DMI_SYS_VENDOR, "Compaq"),
83 DMI_MATCH(DMI_PRODUCT_NAME , "ProLiant"),
84 DMI_MATCH(DMI_PRODUCT_VERSION, "DL760"),
87 { }
91 * Some Fujitsu notebooks are having trouble with touchpads if
92 * active multiplexing mode is activated. Luckily they don't have
93 * external PS/2 ports so we can safely disable it.
94 * ... apparently some Toshibas don't like MUX mode either and
95 * die horrible death on reboot.
97 static struct dmi_system_id __initdata i8042_dmi_nomux_table[] = {
99 .ident = "Fujitsu Lifebook P7010/P7010D",
100 .matches = {
101 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
102 DMI_MATCH(DMI_PRODUCT_NAME, "P7010"),
106 .ident = "Fujitsu Lifebook P5020D",
107 .matches = {
108 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P Series"),
113 .ident = "Fujitsu Lifebook S2000",
114 .matches = {
115 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
116 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S Series"),
120 .ident = "Fujitsu Lifebook S6230",
121 .matches = {
122 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
123 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook S6230"),
127 .ident = "Fujitsu T70H",
128 .matches = {
129 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
130 DMI_MATCH(DMI_PRODUCT_NAME, "FMVLT70H"),
134 .ident = "Fujitsu-Siemens Lifebook T3010",
135 .matches = {
136 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
137 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK T3010"),
141 .ident = "Toshiba P10",
142 .matches = {
143 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
144 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite P10"),
148 .ident = "Alienware Sentia",
149 .matches = {
150 DMI_MATCH(DMI_SYS_VENDOR, "ALIENWARE"),
151 DMI_MATCH(DMI_PRODUCT_NAME, "Sentia"),
159 #endif
162 #ifdef CONFIG_PNP
163 #include <linux/pnp.h>
165 static int i8042_pnp_kbd_registered;
166 static int i8042_pnp_aux_registered;
168 static int i8042_pnp_command_reg;
169 static int i8042_pnp_data_reg;
170 static int i8042_pnp_kbd_irq;
171 static int i8042_pnp_aux_irq;
173 static char i8042_pnp_kbd_name[32];
174 static char i8042_pnp_aux_name[32];
176 static int i8042_pnp_kbd_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
178 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
179 i8042_pnp_data_reg = pnp_port_start(dev,0);
181 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
182 i8042_pnp_command_reg = pnp_port_start(dev, 1);
184 if (pnp_irq_valid(dev,0))
185 i8042_pnp_kbd_irq = pnp_irq(dev, 0);
187 strncpy(i8042_pnp_kbd_name, did->id, sizeof(i8042_pnp_kbd_name));
188 if (strlen(pnp_dev_name(dev))) {
189 strncat(i8042_pnp_kbd_name, ":", sizeof(i8042_pnp_kbd_name));
190 strncat(i8042_pnp_kbd_name, pnp_dev_name(dev), sizeof(i8042_pnp_kbd_name));
193 return 0;
196 static int i8042_pnp_aux_probe(struct pnp_dev *dev, const struct pnp_device_id *did)
198 if (pnp_port_valid(dev, 0) && pnp_port_len(dev, 0) == 1)
199 i8042_pnp_data_reg = pnp_port_start(dev,0);
201 if (pnp_port_valid(dev, 1) && pnp_port_len(dev, 1) == 1)
202 i8042_pnp_command_reg = pnp_port_start(dev, 1);
204 if (pnp_irq_valid(dev, 0))
205 i8042_pnp_aux_irq = pnp_irq(dev, 0);
207 strncpy(i8042_pnp_aux_name, did->id, sizeof(i8042_pnp_aux_name));
208 if (strlen(pnp_dev_name(dev))) {
209 strncat(i8042_pnp_aux_name, ":", sizeof(i8042_pnp_aux_name));
210 strncat(i8042_pnp_aux_name, pnp_dev_name(dev), sizeof(i8042_pnp_aux_name));
213 return 0;
216 static struct pnp_device_id pnp_kbd_devids[] = {
217 { .id = "PNP0303", .driver_data = 0 },
218 { .id = "PNP030b", .driver_data = 0 },
219 { .id = "", },
222 static struct pnp_driver i8042_pnp_kbd_driver = {
223 .name = "i8042 kbd",
224 .id_table = pnp_kbd_devids,
225 .probe = i8042_pnp_kbd_probe,
228 static struct pnp_device_id pnp_aux_devids[] = {
229 { .id = "PNP0f03", .driver_data = 0 },
230 { .id = "PNP0f0b", .driver_data = 0 },
231 { .id = "PNP0f0e", .driver_data = 0 },
232 { .id = "PNP0f12", .driver_data = 0 },
233 { .id = "PNP0f13", .driver_data = 0 },
234 { .id = "PNP0f19", .driver_data = 0 },
235 { .id = "PNP0f1c", .driver_data = 0 },
236 { .id = "SYN0801", .driver_data = 0 },
237 { .id = "", },
240 static struct pnp_driver i8042_pnp_aux_driver = {
241 .name = "i8042 aux",
242 .id_table = pnp_aux_devids,
243 .probe = i8042_pnp_aux_probe,
246 static void i8042_pnp_exit(void)
248 if (i8042_pnp_kbd_registered) {
249 i8042_pnp_kbd_registered = 0;
250 pnp_unregister_driver(&i8042_pnp_kbd_driver);
253 if (i8042_pnp_aux_registered) {
254 i8042_pnp_aux_registered = 0;
255 pnp_unregister_driver(&i8042_pnp_aux_driver);
259 static int i8042_pnp_init(void)
261 int result_kbd, result_aux;
263 if (i8042_nopnp) {
264 printk(KERN_INFO "i8042: PNP detection disabled\n");
265 return 0;
268 if ((result_kbd = pnp_register_driver(&i8042_pnp_kbd_driver)) >= 0)
269 i8042_pnp_kbd_registered = 1;
270 if ((result_aux = pnp_register_driver(&i8042_pnp_aux_driver)) >= 0)
271 i8042_pnp_aux_registered = 1;
273 if (result_kbd <= 0 && result_aux <= 0) {
274 i8042_pnp_exit();
275 #if defined(__ia64__)
276 return -ENODEV;
277 #else
278 printk(KERN_INFO "PNP: No PS/2 controller found. Probing ports directly.\n");
279 return 0;
280 #endif
283 if (((i8042_pnp_data_reg & ~0xf) == (i8042_data_reg & ~0xf) &&
284 i8042_pnp_data_reg != i8042_data_reg) || !i8042_pnp_data_reg) {
285 printk(KERN_WARNING "PNP: PS/2 controller has invalid data port %#x; using default %#x\n",
286 i8042_pnp_data_reg, i8042_data_reg);
287 i8042_pnp_data_reg = i8042_data_reg;
290 if (((i8042_pnp_command_reg & ~0xf) == (i8042_command_reg & ~0xf) &&
291 i8042_pnp_command_reg != i8042_command_reg) || !i8042_pnp_command_reg) {
292 printk(KERN_WARNING "PNP: PS/2 controller has invalid command port %#x; using default %#x\n",
293 i8042_pnp_command_reg, i8042_command_reg);
294 i8042_pnp_command_reg = i8042_command_reg;
297 if (!i8042_pnp_kbd_irq) {
298 printk(KERN_WARNING "PNP: PS/2 controller doesn't have KBD irq; using default %#x\n", i8042_kbd_irq);
299 i8042_pnp_kbd_irq = i8042_kbd_irq;
302 if (!i8042_pnp_aux_irq) {
303 printk(KERN_WARNING "PNP: PS/2 controller doesn't have AUX irq; using default %#x\n", i8042_aux_irq);
304 i8042_pnp_aux_irq = i8042_aux_irq;
307 #if defined(__ia64__)
308 if (result_aux <= 0)
309 i8042_noaux = 1;
310 #endif
312 i8042_data_reg = i8042_pnp_data_reg;
313 i8042_command_reg = i8042_pnp_command_reg;
314 i8042_kbd_irq = i8042_pnp_kbd_irq;
315 i8042_aux_irq = i8042_pnp_aux_irq;
317 printk(KERN_INFO "PNP: PS/2 Controller [%s%s%s] at %#x,%#x irq %d%s%d\n",
318 i8042_pnp_kbd_name, (result_kbd > 0 && result_aux > 0) ? "," : "", i8042_pnp_aux_name,
319 i8042_data_reg, i8042_command_reg, i8042_kbd_irq,
320 (result_aux > 0) ? "," : "", i8042_aux_irq);
322 return 0;
325 #endif
327 static inline int i8042_platform_init(void)
330 * On ix86 platforms touching the i8042 data register region can do really
331 * bad things. Because of this the region is always reserved on ix86 boxes.
333 * if (!request_region(I8042_DATA_REG, 16, "i8042"))
334 * return -1;
337 i8042_kbd_irq = I8042_MAP_IRQ(1);
338 i8042_aux_irq = I8042_MAP_IRQ(12);
340 #ifdef CONFIG_PNP
341 if (i8042_pnp_init())
342 return -1;
343 #endif
345 #if defined(__ia64__)
346 i8042_reset = 1;
347 #endif
349 #if defined(__i386__)
350 if (dmi_check_system(i8042_dmi_noloop_table))
351 i8042_noloop = 1;
353 if (dmi_check_system(i8042_dmi_nomux_table))
354 i8042_nomux = 1;
355 #endif
357 return 0;
360 static inline void i8042_platform_exit(void)
362 #ifdef CONFIG_PNP
363 i8042_pnp_exit();
364 #endif
367 #endif /* _I8042_X86IA64IO_H */