Update to 3.4-final.
[linux-flexiantxendom0-3.2.10.git] / arch / x86 / pci / irq.c
1 /*
2  *      Low-Level PCI Support for PC -- Routing of Interrupts
3  *
4  *      (c) 1999--2000 Martin Mares <mj@ucw.cz>
5  */
6
7 #include <linux/types.h>
8 #include <linux/kernel.h>
9 #include <linux/pci.h>
10 #include <linux/init.h>
11 #include <linux/interrupt.h>
12 #include <linux/dmi.h>
13 #include <linux/io.h>
14 #include <linux/smp.h>
15 #include <asm/io_apic.h>
16 #include <linux/irq.h>
17 #include <linux/acpi.h>
18 #include <asm/pci_x86.h>
19
20 #define PIRQ_SIGNATURE  (('$' << 0) + ('P' << 8) + ('I' << 16) + ('R' << 24))
21 #define PIRQ_VERSION 0x0100
22
23 static int broken_hp_bios_irq9;
24 static int acer_tm360_irqrouting;
25
26 static struct irq_routing_table *pirq_table;
27
28 static int pirq_enable_irq(struct pci_dev *dev);
29
30 /*
31  * Never use: 0, 1, 2 (timer, keyboard, and cascade)
32  * Avoid using: 13, 14 and 15 (FP error and IDE).
33  * Penalize: 3, 4, 6, 7, 12 (known ISA uses: serial, floppy, parallel and mouse)
34  */
35 unsigned int pcibios_irq_mask = 0xfff8;
36
37 static int pirq_penalty[16] = {
38         1000000, 1000000, 1000000, 1000, 1000, 0, 1000, 1000,
39         0, 0, 0, 0, 1000, 100000, 100000, 100000
40 };
41
42 struct irq_router {
43         char *name;
44         u16 vendor, device;
45         int (*get)(struct pci_dev *router, struct pci_dev *dev, int pirq);
46         int (*set)(struct pci_dev *router, struct pci_dev *dev, int pirq,
47                 int new);
48 };
49
50 struct irq_router_handler {
51         u16 vendor;
52         int (*probe)(struct irq_router *r, struct pci_dev *router, u16 device);
53 };
54
55 int (*pcibios_enable_irq)(struct pci_dev *dev) = pirq_enable_irq;
56 void (*pcibios_disable_irq)(struct pci_dev *dev) = NULL;
57
58 /*
59  *  Check passed address for the PCI IRQ Routing Table signature
60  *  and perform checksum verification.
61  */
62
63 static inline struct irq_routing_table *pirq_check_routing_table(u8 *addr)
64 {
65         struct irq_routing_table *rt;
66         int i;
67         u8 sum;
68
69         rt = (struct irq_routing_table *) addr;
70         if (rt->signature != PIRQ_SIGNATURE ||
71             rt->version != PIRQ_VERSION ||
72             rt->size % 16 ||
73             rt->size < sizeof(struct irq_routing_table))
74                 return NULL;
75         sum = 0;
76         for (i = 0; i < rt->size; i++)
77                 sum += addr[i];
78         if (!sum) {
79                 DBG(KERN_DEBUG "PCI: Interrupt Routing Table found at 0x%p\n",
80                         rt);
81                 return rt;
82         }
83         return NULL;
84 }
85
86
87
88 /*
89  *  Search 0xf0000 -- 0xfffff for the PCI IRQ Routing Table.
90  */
91
92 static struct irq_routing_table * __init pirq_find_routing_table(void)
93 {
94         u8 *addr;
95         struct irq_routing_table *rt;
96
97 #ifdef CONFIG_XEN
98         if (!is_initial_xendomain())
99                 return NULL;
100 #endif
101         if (pirq_table_addr) {
102                 rt = pirq_check_routing_table((u8 *) isa_bus_to_virt(pirq_table_addr));
103                 if (rt)
104                         return rt;
105                 printk(KERN_WARNING "PCI: PIRQ table NOT found at pirqaddr\n");
106         }
107         for (addr = (u8 *) isa_bus_to_virt(0xf0000);
108              addr < (u8 *) isa_bus_to_virt(0x100000); addr += 16) {
109                 rt = pirq_check_routing_table(addr);
110                 if (rt)
111                         return rt;
112         }
113         return NULL;
114 }
115
116 /*
117  *  If we have a IRQ routing table, use it to search for peer host
118  *  bridges.  It's a gross hack, but since there are no other known
119  *  ways how to get a list of buses, we have to go this way.
120  */
121
122 static void __init pirq_peer_trick(void)
123 {
124         struct irq_routing_table *rt = pirq_table;
125         u8 busmap[256];
126         int i;
127         struct irq_info *e;
128
129         memset(busmap, 0, sizeof(busmap));
130         for (i = 0; i < (rt->size - sizeof(struct irq_routing_table)) / sizeof(struct irq_info); i++) {
131                 e = &rt->slots[i];
132 #ifdef DEBUG
133                 {
134                         int j;
135                         DBG(KERN_DEBUG "%02x:%02x slot=%02x", e->bus, e->devfn/8, e->slot);
136                         for (j = 0; j < 4; j++)
137                                 DBG(" %d:%02x/%04x", j, e->irq[j].link, e->irq[j].bitmap);
138                         DBG("\n");
139                 }
140 #endif
141                 busmap[e->bus] = 1;
142         }
143         for (i = 1; i < 256; i++) {
144                 int node;
145                 if (!busmap[i] || pci_find_bus(0, i))
146                         continue;
147                 node = get_mp_bus_to_node(i);
148                 if (pci_scan_bus_on_node(i, &pci_root_ops, node))
149                         printk(KERN_INFO "PCI: Discovered primary peer "
150                                "bus %02x [IRQ]\n", i);
151         }
152         pcibios_last_bus = -1;
153 }
154
155 /*
156  *  Code for querying and setting of IRQ routes on various interrupt routers.
157  */
158
159 void eisa_set_level_irq(unsigned int irq)
160 {
161         unsigned char mask = 1 << (irq & 7);
162         unsigned int port = 0x4d0 + (irq >> 3);
163         unsigned char val;
164         static u16 eisa_irq_mask;
165
166         if (irq >= 16 || (1 << irq) & eisa_irq_mask)
167                 return;
168
169         eisa_irq_mask |= (1 << irq);
170         printk(KERN_DEBUG "PCI: setting IRQ %u as level-triggered\n", irq);
171         val = inb(port);
172         if (!(val & mask)) {
173                 DBG(KERN_DEBUG " -> edge");
174                 outb(val | mask, port);
175         }
176 }
177
178 /*
179  * Common IRQ routing practice: nibbles in config space,
180  * offset by some magic constant.
181  */
182 static unsigned int read_config_nybble(struct pci_dev *router, unsigned offset, unsigned nr)
183 {
184         u8 x;
185         unsigned reg = offset + (nr >> 1);
186
187         pci_read_config_byte(router, reg, &x);
188         return (nr & 1) ? (x >> 4) : (x & 0xf);
189 }
190
191 static void write_config_nybble(struct pci_dev *router, unsigned offset,
192         unsigned nr, unsigned int val)
193 {
194         u8 x;
195         unsigned reg = offset + (nr >> 1);
196
197         pci_read_config_byte(router, reg, &x);
198         x = (nr & 1) ? ((x & 0x0f) | (val << 4)) : ((x & 0xf0) | val);
199         pci_write_config_byte(router, reg, x);
200 }
201
202 /*
203  * ALI pirq entries are damn ugly, and completely undocumented.
204  * This has been figured out from pirq tables, and it's not a pretty
205  * picture.
206  */
207 static int pirq_ali_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
208 {
209         static const unsigned char irqmap[16] = { 0, 9, 3, 10, 4, 5, 7, 6, 1, 11, 0, 12, 0, 14, 0, 15 };
210
211         WARN_ON_ONCE(pirq > 16);
212         return irqmap[read_config_nybble(router, 0x48, pirq-1)];
213 }
214
215 static int pirq_ali_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
216 {
217         static const unsigned char irqmap[16] = { 0, 8, 0, 2, 4, 5, 7, 6, 0, 1, 3, 9, 11, 0, 13, 15 };
218         unsigned int val = irqmap[irq];
219
220         WARN_ON_ONCE(pirq > 16);
221         if (val) {
222                 write_config_nybble(router, 0x48, pirq-1, val);
223                 return 1;
224         }
225         return 0;
226 }
227
228 /*
229  * The Intel PIIX4 pirq rules are fairly simple: "pirq" is
230  * just a pointer to the config space.
231  */
232 static int pirq_piix_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
233 {
234         u8 x;
235
236         pci_read_config_byte(router, pirq, &x);
237         return (x < 16) ? x : 0;
238 }
239
240 static int pirq_piix_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
241 {
242         pci_write_config_byte(router, pirq, irq);
243         return 1;
244 }
245
246 /*
247  * The VIA pirq rules are nibble-based, like ALI,
248  * but without the ugly irq number munging.
249  * However, PIRQD is in the upper instead of lower 4 bits.
250  */
251 static int pirq_via_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
252 {
253         return read_config_nybble(router, 0x55, pirq == 4 ? 5 : pirq);
254 }
255
256 static int pirq_via_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
257 {
258         write_config_nybble(router, 0x55, pirq == 4 ? 5 : pirq, irq);
259         return 1;
260 }
261
262 /*
263  * The VIA pirq rules are nibble-based, like ALI,
264  * but without the ugly irq number munging.
265  * However, for 82C586, nibble map is different .
266  */
267 static int pirq_via586_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
268 {
269         static const unsigned int pirqmap[5] = { 3, 2, 5, 1, 1 };
270
271         WARN_ON_ONCE(pirq > 5);
272         return read_config_nybble(router, 0x55, pirqmap[pirq-1]);
273 }
274
275 static int pirq_via586_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
276 {
277         static const unsigned int pirqmap[5] = { 3, 2, 5, 1, 1 };
278
279         WARN_ON_ONCE(pirq > 5);
280         write_config_nybble(router, 0x55, pirqmap[pirq-1], irq);
281         return 1;
282 }
283
284 /*
285  * ITE 8330G pirq rules are nibble-based
286  * FIXME: pirqmap may be { 1, 0, 3, 2 },
287  *        2+3 are both mapped to irq 9 on my system
288  */
289 static int pirq_ite_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
290 {
291         static const unsigned char pirqmap[4] = { 1, 0, 2, 3 };
292
293         WARN_ON_ONCE(pirq > 4);
294         return read_config_nybble(router, 0x43, pirqmap[pirq-1]);
295 }
296
297 static int pirq_ite_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
298 {
299         static const unsigned char pirqmap[4] = { 1, 0, 2, 3 };
300
301         WARN_ON_ONCE(pirq > 4);
302         write_config_nybble(router, 0x43, pirqmap[pirq-1], irq);
303         return 1;
304 }
305
306 /*
307  * OPTI: high four bits are nibble pointer..
308  * I wonder what the low bits do?
309  */
310 static int pirq_opti_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
311 {
312         return read_config_nybble(router, 0xb8, pirq >> 4);
313 }
314
315 static int pirq_opti_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
316 {
317         write_config_nybble(router, 0xb8, pirq >> 4, irq);
318         return 1;
319 }
320
321 /*
322  * Cyrix: nibble offset 0x5C
323  * 0x5C bits 7:4 is INTB bits 3:0 is INTA
324  * 0x5D bits 7:4 is INTD bits 3:0 is INTC
325  */
326 static int pirq_cyrix_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
327 {
328         return read_config_nybble(router, 0x5C, (pirq-1)^1);
329 }
330
331 static int pirq_cyrix_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
332 {
333         write_config_nybble(router, 0x5C, (pirq-1)^1, irq);
334         return 1;
335 }
336
337 /*
338  *      PIRQ routing for SiS 85C503 router used in several SiS chipsets.
339  *      We have to deal with the following issues here:
340  *      - vendors have different ideas about the meaning of link values
341  *      - some onboard devices (integrated in the chipset) have special
342  *        links and are thus routed differently (i.e. not via PCI INTA-INTD)
343  *      - different revision of the router have a different layout for
344  *        the routing registers, particularly for the onchip devices
345  *
346  *      For all routing registers the common thing is we have one byte
347  *      per routeable link which is defined as:
348  *               bit 7      IRQ mapping enabled (0) or disabled (1)
349  *               bits [6:4] reserved (sometimes used for onchip devices)
350  *               bits [3:0] IRQ to map to
351  *                   allowed: 3-7, 9-12, 14-15
352  *                   reserved: 0, 1, 2, 8, 13
353  *
354  *      The config-space registers located at 0x41/0x42/0x43/0x44 are
355  *      always used to route the normal PCI INT A/B/C/D respectively.
356  *      Apparently there are systems implementing PCI routing table using
357  *      link values 0x01-0x04 and others using 0x41-0x44 for PCI INTA..D.
358  *      We try our best to handle both link mappings.
359  *
360  *      Currently (2003-05-21) it appears most SiS chipsets follow the
361  *      definition of routing registers from the SiS-5595 southbridge.
362  *      According to the SiS 5595 datasheets the revision id's of the
363  *      router (ISA-bridge) should be 0x01 or 0xb0.
364  *
365  *      Furthermore we've also seen lspci dumps with revision 0x00 and 0xb1.
366  *      Looks like these are used in a number of SiS 5xx/6xx/7xx chipsets.
367  *      They seem to work with the current routing code. However there is
368  *      some concern because of the two USB-OHCI HCs (original SiS 5595
369  *      had only one). YMMV.
370  *
371  *      Onchip routing for router rev-id 0x01/0xb0 and probably 0x00/0xb1:
372  *
373  *      0x61:   IDEIRQ:
374  *              bits [6:5] must be written 01
375  *              bit 4 channel-select primary (0), secondary (1)
376  *
377  *      0x62:   USBIRQ:
378  *              bit 6 OHCI function disabled (0), enabled (1)
379  *
380  *      0x6a:   ACPI/SCI IRQ: bits 4-6 reserved
381  *
382  *      0x7e:   Data Acq. Module IRQ - bits 4-6 reserved
383  *
384  *      We support USBIRQ (in addition to INTA-INTD) and keep the
385  *      IDE, ACPI and DAQ routing untouched as set by the BIOS.
386  *
387  *      Currently the only reported exception is the new SiS 65x chipset
388  *      which includes the SiS 69x southbridge. Here we have the 85C503
389  *      router revision 0x04 and there are changes in the register layout
390  *      mostly related to the different USB HCs with USB 2.0 support.
391  *
392  *      Onchip routing for router rev-id 0x04 (try-and-error observation)
393  *
394  *      0x60/0x61/0x62/0x63:    1xEHCI and 3xOHCI (companion) USB-HCs
395  *                              bit 6-4 are probably unused, not like 5595
396  */
397
398 #define PIRQ_SIS_IRQ_MASK       0x0f
399 #define PIRQ_SIS_IRQ_DISABLE    0x80
400 #define PIRQ_SIS_USB_ENABLE     0x40
401
402 static int pirq_sis_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
403 {
404         u8 x;
405         int reg;
406
407         reg = pirq;
408         if (reg >= 0x01 && reg <= 0x04)
409                 reg += 0x40;
410         pci_read_config_byte(router, reg, &x);
411         return (x & PIRQ_SIS_IRQ_DISABLE) ? 0 : (x & PIRQ_SIS_IRQ_MASK);
412 }
413
414 static int pirq_sis_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
415 {
416         u8 x;
417         int reg;
418
419         reg = pirq;
420         if (reg >= 0x01 && reg <= 0x04)
421                 reg += 0x40;
422         pci_read_config_byte(router, reg, &x);
423         x &= ~(PIRQ_SIS_IRQ_MASK | PIRQ_SIS_IRQ_DISABLE);
424         x |= irq ? irq: PIRQ_SIS_IRQ_DISABLE;
425         pci_write_config_byte(router, reg, x);
426         return 1;
427 }
428
429
430 /*
431  * VLSI: nibble offset 0x74 - educated guess due to routing table and
432  *       config space of VLSI 82C534 PCI-bridge/router (1004:0102)
433  *       Tested on HP OmniBook 800 covering PIRQ 1, 2, 4, 8 for onboard
434  *       devices, PIRQ 3 for non-pci(!) soundchip and (untested) PIRQ 6
435  *       for the busbridge to the docking station.
436  */
437
438 static int pirq_vlsi_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
439 {
440         WARN_ON_ONCE(pirq >= 9);
441         if (pirq > 8) {
442                 dev_info(&dev->dev, "VLSI router PIRQ escape (%d)\n", pirq);
443                 return 0;
444         }
445         return read_config_nybble(router, 0x74, pirq-1);
446 }
447
448 static int pirq_vlsi_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
449 {
450         WARN_ON_ONCE(pirq >= 9);
451         if (pirq > 8) {
452                 dev_info(&dev->dev, "VLSI router PIRQ escape (%d)\n", pirq);
453                 return 0;
454         }
455         write_config_nybble(router, 0x74, pirq-1, irq);
456         return 1;
457 }
458
459 /*
460  * ServerWorks: PCI interrupts mapped to system IRQ lines through Index
461  * and Redirect I/O registers (0x0c00 and 0x0c01).  The Index register
462  * format is (PCIIRQ## | 0x10), e.g.: PCIIRQ10=0x1a.  The Redirect
463  * register is a straight binary coding of desired PIC IRQ (low nibble).
464  *
465  * The 'link' value in the PIRQ table is already in the correct format
466  * for the Index register.  There are some special index values:
467  * 0x00 for ACPI (SCI), 0x01 for USB, 0x02 for IDE0, 0x04 for IDE1,
468  * and 0x03 for SMBus.
469  */
470 static int pirq_serverworks_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
471 {
472         outb(pirq, 0xc00);
473         return inb(0xc01) & 0xf;
474 }
475
476 static int pirq_serverworks_set(struct pci_dev *router, struct pci_dev *dev,
477         int pirq, int irq)
478 {
479         outb(pirq, 0xc00);
480         outb(irq, 0xc01);
481         return 1;
482 }
483
484 /* Support for AMD756 PCI IRQ Routing
485  * Jhon H. Caicedo <jhcaiced@osso.org.co>
486  * Jun/21/2001 0.2.0 Release, fixed to use "nybble" functions... (jhcaiced)
487  * Jun/19/2001 Alpha Release 0.1.0 (jhcaiced)
488  * The AMD756 pirq rules are nibble-based
489  * offset 0x56 0-3 PIRQA  4-7  PIRQB
490  * offset 0x57 0-3 PIRQC  4-7  PIRQD
491  */
492 static int pirq_amd756_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
493 {
494         u8 irq;
495         irq = 0;
496         if (pirq <= 4)
497                 irq = read_config_nybble(router, 0x56, pirq - 1);
498         dev_info(&dev->dev,
499                  "AMD756: dev [%04x:%04x], router PIRQ %d get IRQ %d\n",
500                  dev->vendor, dev->device, pirq, irq);
501         return irq;
502 }
503
504 static int pirq_amd756_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
505 {
506         dev_info(&dev->dev,
507                  "AMD756: dev [%04x:%04x], router PIRQ %d set IRQ %d\n",
508                  dev->vendor, dev->device, pirq, irq);
509         if (pirq <= 4)
510                 write_config_nybble(router, 0x56, pirq - 1, irq);
511         return 1;
512 }
513
514 /*
515  * PicoPower PT86C523
516  */
517 static int pirq_pico_get(struct pci_dev *router, struct pci_dev *dev, int pirq)
518 {
519         outb(0x10 + ((pirq - 1) >> 1), 0x24);
520         return ((pirq - 1) & 1) ? (inb(0x26) >> 4) : (inb(0x26) & 0xf);
521 }
522
523 static int pirq_pico_set(struct pci_dev *router, struct pci_dev *dev, int pirq,
524                         int irq)
525 {
526         unsigned int x;
527         outb(0x10 + ((pirq - 1) >> 1), 0x24);
528         x = inb(0x26);
529         x = ((pirq - 1) & 1) ? ((x & 0x0f) | (irq << 4)) : ((x & 0xf0) | (irq));
530         outb(x, 0x26);
531         return 1;
532 }
533
534 #ifdef CONFIG_PCI_BIOS
535
536 static int pirq_bios_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq)
537 {
538         struct pci_dev *bridge;
539         int pin = pci_get_interrupt_pin(dev, &bridge);
540         return pcibios_set_irq_routing(bridge, pin - 1, irq);
541 }
542
543 #endif
544
545 static __init int intel_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
546 {
547         static struct pci_device_id __initdata pirq_440gx[] = {
548                 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443GX_0) },
549                 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443GX_2) },
550                 { },
551         };
552
553         /* 440GX has a proprietary PIRQ router -- don't use it */
554         if (pci_dev_present(pirq_440gx))
555                 return 0;
556
557         switch (device) {
558         case PCI_DEVICE_ID_INTEL_82371FB_0:
559         case PCI_DEVICE_ID_INTEL_82371SB_0:
560         case PCI_DEVICE_ID_INTEL_82371AB_0:
561         case PCI_DEVICE_ID_INTEL_82371MX:
562         case PCI_DEVICE_ID_INTEL_82443MX_0:
563         case PCI_DEVICE_ID_INTEL_82801AA_0:
564         case PCI_DEVICE_ID_INTEL_82801AB_0:
565         case PCI_DEVICE_ID_INTEL_82801BA_0:
566         case PCI_DEVICE_ID_INTEL_82801BA_10:
567         case PCI_DEVICE_ID_INTEL_82801CA_0:
568         case PCI_DEVICE_ID_INTEL_82801CA_12:
569         case PCI_DEVICE_ID_INTEL_82801DB_0:
570         case PCI_DEVICE_ID_INTEL_82801E_0:
571         case PCI_DEVICE_ID_INTEL_82801EB_0:
572         case PCI_DEVICE_ID_INTEL_ESB_1:
573         case PCI_DEVICE_ID_INTEL_ICH6_0:
574         case PCI_DEVICE_ID_INTEL_ICH6_1:
575         case PCI_DEVICE_ID_INTEL_ICH7_0:
576         case PCI_DEVICE_ID_INTEL_ICH7_1:
577         case PCI_DEVICE_ID_INTEL_ICH7_30:
578         case PCI_DEVICE_ID_INTEL_ICH7_31:
579         case PCI_DEVICE_ID_INTEL_TGP_LPC:
580         case PCI_DEVICE_ID_INTEL_ESB2_0:
581         case PCI_DEVICE_ID_INTEL_ICH8_0:
582         case PCI_DEVICE_ID_INTEL_ICH8_1:
583         case PCI_DEVICE_ID_INTEL_ICH8_2:
584         case PCI_DEVICE_ID_INTEL_ICH8_3:
585         case PCI_DEVICE_ID_INTEL_ICH8_4:
586         case PCI_DEVICE_ID_INTEL_ICH9_0:
587         case PCI_DEVICE_ID_INTEL_ICH9_1:
588         case PCI_DEVICE_ID_INTEL_ICH9_2:
589         case PCI_DEVICE_ID_INTEL_ICH9_3:
590         case PCI_DEVICE_ID_INTEL_ICH9_4:
591         case PCI_DEVICE_ID_INTEL_ICH9_5:
592         case PCI_DEVICE_ID_INTEL_EP80579_0:
593         case PCI_DEVICE_ID_INTEL_ICH10_0:
594         case PCI_DEVICE_ID_INTEL_ICH10_1:
595         case PCI_DEVICE_ID_INTEL_ICH10_2:
596         case PCI_DEVICE_ID_INTEL_ICH10_3:
597         case PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0:
598         case PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1:
599                 r->name = "PIIX/ICH";
600                 r->get = pirq_piix_get;
601                 r->set = pirq_piix_set;
602                 return 1;
603         }
604
605         if ((device >= PCI_DEVICE_ID_INTEL_5_3400_SERIES_LPC_MIN && 
606              device <= PCI_DEVICE_ID_INTEL_5_3400_SERIES_LPC_MAX) 
607         ||  (device >= PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MIN && 
608              device <= PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MAX)
609         ||  (device >= PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MIN &&
610              device <= PCI_DEVICE_ID_INTEL_DH89XXCC_LPC_MAX)
611         ||  (device >= PCI_DEVICE_ID_INTEL_PANTHERPOINT_LPC_MIN &&
612              device <= PCI_DEVICE_ID_INTEL_PANTHERPOINT_LPC_MAX)) {
613                 r->name = "PIIX/ICH";
614                 r->get = pirq_piix_get;
615                 r->set = pirq_piix_set;
616                 return 1;
617         }
618
619         return 0;
620 }
621
622 static __init int via_router_probe(struct irq_router *r,
623                                 struct pci_dev *router, u16 device)
624 {
625         /* FIXME: We should move some of the quirk fixup stuff here */
626
627         /*
628          * workarounds for some buggy BIOSes
629          */
630         if (device == PCI_DEVICE_ID_VIA_82C586_0) {
631                 switch (router->device) {
632                 case PCI_DEVICE_ID_VIA_82C686:
633                         /*
634                          * Asus k7m bios wrongly reports 82C686A
635                          * as 586-compatible
636                          */
637                         device = PCI_DEVICE_ID_VIA_82C686;
638                         break;
639                 case PCI_DEVICE_ID_VIA_8235:
640                         /**
641                          * Asus a7v-x bios wrongly reports 8235
642                          * as 586-compatible
643                          */
644                         device = PCI_DEVICE_ID_VIA_8235;
645                         break;
646                 case PCI_DEVICE_ID_VIA_8237:
647                         /**
648                          * Asus a7v600 bios wrongly reports 8237
649                          * as 586-compatible
650                          */
651                         device = PCI_DEVICE_ID_VIA_8237;
652                         break;
653                 }
654         }
655
656         switch (device) {
657         case PCI_DEVICE_ID_VIA_82C586_0:
658                 r->name = "VIA";
659                 r->get = pirq_via586_get;
660                 r->set = pirq_via586_set;
661                 return 1;
662         case PCI_DEVICE_ID_VIA_82C596:
663         case PCI_DEVICE_ID_VIA_82C686:
664         case PCI_DEVICE_ID_VIA_8231:
665         case PCI_DEVICE_ID_VIA_8233A:
666         case PCI_DEVICE_ID_VIA_8235:
667         case PCI_DEVICE_ID_VIA_8237:
668                 /* FIXME: add new ones for 8233/5 */
669                 r->name = "VIA";
670                 r->get = pirq_via_get;
671                 r->set = pirq_via_set;
672                 return 1;
673         }
674         return 0;
675 }
676
677 static __init int vlsi_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
678 {
679         switch (device) {
680         case PCI_DEVICE_ID_VLSI_82C534:
681                 r->name = "VLSI 82C534";
682                 r->get = pirq_vlsi_get;
683                 r->set = pirq_vlsi_set;
684                 return 1;
685         }
686         return 0;
687 }
688
689
690 static __init int serverworks_router_probe(struct irq_router *r,
691                 struct pci_dev *router, u16 device)
692 {
693         switch (device) {
694         case PCI_DEVICE_ID_SERVERWORKS_OSB4:
695         case PCI_DEVICE_ID_SERVERWORKS_CSB5:
696                 r->name = "ServerWorks";
697                 r->get = pirq_serverworks_get;
698                 r->set = pirq_serverworks_set;
699                 return 1;
700         }
701         return 0;
702 }
703
704 static __init int sis_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
705 {
706         if (device != PCI_DEVICE_ID_SI_503)
707                 return 0;
708
709         r->name = "SIS";
710         r->get = pirq_sis_get;
711         r->set = pirq_sis_set;
712         return 1;
713 }
714
715 static __init int cyrix_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
716 {
717         switch (device) {
718         case PCI_DEVICE_ID_CYRIX_5520:
719                 r->name = "NatSemi";
720                 r->get = pirq_cyrix_get;
721                 r->set = pirq_cyrix_set;
722                 return 1;
723         }
724         return 0;
725 }
726
727 static __init int opti_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
728 {
729         switch (device) {
730         case PCI_DEVICE_ID_OPTI_82C700:
731                 r->name = "OPTI";
732                 r->get = pirq_opti_get;
733                 r->set = pirq_opti_set;
734                 return 1;
735         }
736         return 0;
737 }
738
739 static __init int ite_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
740 {
741         switch (device) {
742         case PCI_DEVICE_ID_ITE_IT8330G_0:
743                 r->name = "ITE";
744                 r->get = pirq_ite_get;
745                 r->set = pirq_ite_set;
746                 return 1;
747         }
748         return 0;
749 }
750
751 static __init int ali_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
752 {
753         switch (device) {
754         case PCI_DEVICE_ID_AL_M1533:
755         case PCI_DEVICE_ID_AL_M1563:
756                 r->name = "ALI";
757                 r->get = pirq_ali_get;
758                 r->set = pirq_ali_set;
759                 return 1;
760         }
761         return 0;
762 }
763
764 static __init int amd_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
765 {
766         switch (device) {
767         case PCI_DEVICE_ID_AMD_VIPER_740B:
768                 r->name = "AMD756";
769                 break;
770         case PCI_DEVICE_ID_AMD_VIPER_7413:
771                 r->name = "AMD766";
772                 break;
773         case PCI_DEVICE_ID_AMD_VIPER_7443:
774                 r->name = "AMD768";
775                 break;
776         default:
777                 return 0;
778         }
779         r->get = pirq_amd756_get;
780         r->set = pirq_amd756_set;
781         return 1;
782 }
783
784 static __init int pico_router_probe(struct irq_router *r, struct pci_dev *router, u16 device)
785 {
786         switch (device) {
787         case PCI_DEVICE_ID_PICOPOWER_PT86C523:
788                 r->name = "PicoPower PT86C523";
789                 r->get = pirq_pico_get;
790                 r->set = pirq_pico_set;
791                 return 1;
792
793         case PCI_DEVICE_ID_PICOPOWER_PT86C523BBP:
794                 r->name = "PicoPower PT86C523 rev. BB+";
795                 r->get = pirq_pico_get;
796                 r->set = pirq_pico_set;
797                 return 1;
798         }
799         return 0;
800 }
801
802 static __initdata struct irq_router_handler pirq_routers[] = {
803         { PCI_VENDOR_ID_INTEL, intel_router_probe },
804         { PCI_VENDOR_ID_AL, ali_router_probe },
805         { PCI_VENDOR_ID_ITE, ite_router_probe },
806         { PCI_VENDOR_ID_VIA, via_router_probe },
807         { PCI_VENDOR_ID_OPTI, opti_router_probe },
808         { PCI_VENDOR_ID_SI, sis_router_probe },
809         { PCI_VENDOR_ID_CYRIX, cyrix_router_probe },
810         { PCI_VENDOR_ID_VLSI, vlsi_router_probe },
811         { PCI_VENDOR_ID_SERVERWORKS, serverworks_router_probe },
812         { PCI_VENDOR_ID_AMD, amd_router_probe },
813         { PCI_VENDOR_ID_PICOPOWER, pico_router_probe },
814         /* Someone with docs needs to add the ATI Radeon IGP */
815         { 0, NULL }
816 };
817 static struct irq_router pirq_router;
818 static struct pci_dev *pirq_router_dev;
819
820
821 /*
822  *      FIXME: should we have an option to say "generic for
823  *      chipset" ?
824  */
825
826 static void __init pirq_find_router(struct irq_router *r)
827 {
828         struct irq_routing_table *rt = pirq_table;
829         struct irq_router_handler *h;
830
831 #ifdef CONFIG_PCI_BIOS
832         if (!rt->signature) {
833                 printk(KERN_INFO "PCI: Using BIOS for IRQ routing\n");
834                 r->set = pirq_bios_set;
835                 r->name = "BIOS";
836                 return;
837         }
838 #endif
839
840         /* Default unless a driver reloads it */
841         r->name = "default";
842         r->get = NULL;
843         r->set = NULL;
844
845         DBG(KERN_DEBUG "PCI: Attempting to find IRQ router for [%04x:%04x]\n",
846             rt->rtr_vendor, rt->rtr_device);
847
848         pirq_router_dev = pci_get_bus_and_slot(rt->rtr_bus, rt->rtr_devfn);
849         if (!pirq_router_dev) {
850                 DBG(KERN_DEBUG "PCI: Interrupt router not found at "
851                         "%02x:%02x\n", rt->rtr_bus, rt->rtr_devfn);
852                 return;
853         }
854
855         for (h = pirq_routers; h->vendor; h++) {
856                 /* First look for a router match */
857                 if (rt->rtr_vendor == h->vendor &&
858                         h->probe(r, pirq_router_dev, rt->rtr_device))
859                         break;
860                 /* Fall back to a device match */
861                 if (pirq_router_dev->vendor == h->vendor &&
862                         h->probe(r, pirq_router_dev, pirq_router_dev->device))
863                         break;
864         }
865         dev_info(&pirq_router_dev->dev, "%s IRQ router [%04x:%04x]\n",
866                  pirq_router.name,
867                  pirq_router_dev->vendor, pirq_router_dev->device);
868
869         /* The device remains referenced for the kernel lifetime */
870 }
871
872 static struct irq_info *pirq_get_info(struct pci_dev *dev)
873 {
874         struct irq_routing_table *rt = pirq_table;
875         int entries = (rt->size - sizeof(struct irq_routing_table)) /
876                 sizeof(struct irq_info);
877         struct irq_info *info;
878
879         for (info = rt->slots; entries--; info++)
880                 if (info->bus == dev->bus->number &&
881                         PCI_SLOT(info->devfn) == PCI_SLOT(dev->devfn))
882                         return info;
883         return NULL;
884 }
885
886 static int pcibios_lookup_irq(struct pci_dev *dev, int assign)
887 {
888         u8 pin;
889         struct irq_info *info;
890         int i, pirq, newirq;
891         int irq = 0;
892         u32 mask;
893         struct irq_router *r = &pirq_router;
894         struct pci_dev *dev2 = NULL;
895         char *msg = NULL;
896
897         /* Find IRQ pin */
898         pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
899         if (!pin) {
900                 dev_dbg(&dev->dev, "no interrupt pin\n");
901                 return 0;
902         }
903
904         if (io_apic_assign_pci_irqs)
905                 return 0;
906
907         /* Find IRQ routing entry */
908
909         if (!pirq_table)
910                 return 0;
911
912         info = pirq_get_info(dev);
913         if (!info) {
914                 dev_dbg(&dev->dev, "PCI INT %c not found in routing table\n",
915                         'A' + pin - 1);
916                 return 0;
917         }
918         pirq = info->irq[pin - 1].link;
919         mask = info->irq[pin - 1].bitmap;
920         if (!pirq) {
921                 dev_dbg(&dev->dev, "PCI INT %c not routed\n", 'A' + pin - 1);
922                 return 0;
923         }
924         dev_dbg(&dev->dev, "PCI INT %c -> PIRQ %02x, mask %04x, excl %04x",
925                 'A' + pin - 1, pirq, mask, pirq_table->exclusive_irqs);
926         mask &= pcibios_irq_mask;
927
928         /* Work around broken HP Pavilion Notebooks which assign USB to
929            IRQ 9 even though it is actually wired to IRQ 11 */
930
931         if (broken_hp_bios_irq9 && pirq == 0x59 && dev->irq == 9) {
932                 dev->irq = 11;
933                 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 11);
934                 r->set(pirq_router_dev, dev, pirq, 11);
935         }
936
937         /* same for Acer Travelmate 360, but with CB and irq 11 -> 10 */
938         if (acer_tm360_irqrouting && dev->irq == 11 &&
939                 dev->vendor == PCI_VENDOR_ID_O2) {
940                 pirq = 0x68;
941                 mask = 0x400;
942                 dev->irq = r->get(pirq_router_dev, dev, pirq);
943                 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
944         }
945
946         /*
947          * Find the best IRQ to assign: use the one
948          * reported by the device if possible.
949          */
950         newirq = dev->irq;
951         if (newirq && !((1 << newirq) & mask)) {
952                 if (pci_probe & PCI_USE_PIRQ_MASK)
953                         newirq = 0;
954                 else
955                         dev_warn(&dev->dev, "IRQ %d doesn't match PIRQ mask "
956                                  "%#x; try pci=usepirqmask\n", newirq, mask);
957         }
958         if (!newirq && assign) {
959                 for (i = 0; i < 16; i++) {
960                         if (!(mask & (1 << i)))
961                                 continue;
962                         if (pirq_penalty[i] < pirq_penalty[newirq] &&
963                                 can_request_irq(i, IRQF_SHARED))
964                                 newirq = i;
965                 }
966         }
967         dev_dbg(&dev->dev, "PCI INT %c -> newirq %d", 'A' + pin - 1, newirq);
968
969         /* Check if it is hardcoded */
970         if ((pirq & 0xf0) == 0xf0) {
971                 irq = pirq & 0xf;
972                 msg = "hardcoded";
973         } else if (r->get && (irq = r->get(pirq_router_dev, dev, pirq)) && \
974         ((!(pci_probe & PCI_USE_PIRQ_MASK)) || ((1 << irq) & mask))) {
975                 msg = "found";
976                 eisa_set_level_irq(irq);
977         } else if (newirq && r->set &&
978                 (dev->class >> 8) != PCI_CLASS_DISPLAY_VGA) {
979                 if (r->set(pirq_router_dev, dev, pirq, newirq)) {
980                         eisa_set_level_irq(newirq);
981                         msg = "assigned";
982                         irq = newirq;
983                 }
984         }
985
986         if (!irq) {
987                 if (newirq && mask == (1 << newirq)) {
988                         msg = "guessed";
989                         irq = newirq;
990                 } else {
991                         dev_dbg(&dev->dev, "can't route interrupt\n");
992                         return 0;
993                 }
994         }
995         dev_info(&dev->dev, "%s PCI INT %c -> IRQ %d\n", msg, 'A' + pin - 1, irq);
996
997         /* Update IRQ for all devices with the same pirq value */
998         for_each_pci_dev(dev2) {
999                 pci_read_config_byte(dev2, PCI_INTERRUPT_PIN, &pin);
1000                 if (!pin)
1001                         continue;
1002
1003                 info = pirq_get_info(dev2);
1004                 if (!info)
1005                         continue;
1006                 if (info->irq[pin - 1].link == pirq) {
1007                         /*
1008                          * We refuse to override the dev->irq
1009                          * information. Give a warning!
1010                          */
1011                         if (dev2->irq && dev2->irq != irq && \
1012                         (!(pci_probe & PCI_USE_PIRQ_MASK) || \
1013                         ((1 << dev2->irq) & mask))) {
1014 #ifndef CONFIG_PCI_MSI
1015                                 dev_info(&dev2->dev, "IRQ routing conflict: "
1016                                          "have IRQ %d, want IRQ %d\n",
1017                                          dev2->irq, irq);
1018 #endif
1019                                 continue;
1020                         }
1021                         dev2->irq = irq;
1022                         pirq_penalty[irq]++;
1023                         if (dev != dev2)
1024                                 dev_info(&dev->dev, "sharing IRQ %d with %s\n",
1025                                          irq, pci_name(dev2));
1026                 }
1027         }
1028         return 1;
1029 }
1030
1031 void __init pcibios_fixup_irqs(void)
1032 {
1033         struct pci_dev *dev = NULL;
1034         u8 pin;
1035
1036         DBG(KERN_DEBUG "PCI: IRQ fixup\n");
1037         for_each_pci_dev(dev) {
1038                 /*
1039                  * If the BIOS has set an out of range IRQ number, just
1040                  * ignore it.  Also keep track of which IRQ's are
1041                  * already in use.
1042                  */
1043                 if (dev->irq >= 16) {
1044                         dev_dbg(&dev->dev, "ignoring bogus IRQ %d\n", dev->irq);
1045                         dev->irq = 0;
1046                 }
1047                 /*
1048                  * If the IRQ is already assigned to a PCI device,
1049                  * ignore its ISA use penalty
1050                  */
1051                 if (pirq_penalty[dev->irq] >= 100 &&
1052                                 pirq_penalty[dev->irq] < 100000)
1053                         pirq_penalty[dev->irq] = 0;
1054                 pirq_penalty[dev->irq]++;
1055         }
1056
1057         if (io_apic_assign_pci_irqs)
1058                 return;
1059
1060         dev = NULL;
1061         for_each_pci_dev(dev) {
1062                 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
1063                 if (!pin)
1064                         continue;
1065
1066                 /*
1067                  * Still no IRQ? Try to lookup one...
1068                  */
1069                 if (!dev->irq)
1070                         pcibios_lookup_irq(dev, 0);
1071         }
1072 }
1073
1074 /*
1075  * Work around broken HP Pavilion Notebooks which assign USB to
1076  * IRQ 9 even though it is actually wired to IRQ 11
1077  */
1078 static int __init fix_broken_hp_bios_irq9(const struct dmi_system_id *d)
1079 {
1080         if (!broken_hp_bios_irq9) {
1081                 broken_hp_bios_irq9 = 1;
1082                 printk(KERN_INFO "%s detected - fixing broken IRQ routing\n",
1083                         d->ident);
1084         }
1085         return 0;
1086 }
1087
1088 /*
1089  * Work around broken Acer TravelMate 360 Notebooks which assign
1090  * Cardbus to IRQ 11 even though it is actually wired to IRQ 10
1091  */
1092 static int __init fix_acer_tm360_irqrouting(const struct dmi_system_id *d)
1093 {
1094         if (!acer_tm360_irqrouting) {
1095                 acer_tm360_irqrouting = 1;
1096                 printk(KERN_INFO "%s detected - fixing broken IRQ routing\n",
1097                         d->ident);
1098         }
1099         return 0;
1100 }
1101
1102 static struct dmi_system_id __initdata pciirq_dmi_table[] = {
1103         {
1104                 .callback = fix_broken_hp_bios_irq9,
1105                 .ident = "HP Pavilion N5400 Series Laptop",
1106                 .matches = {
1107                         DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
1108                         DMI_MATCH(DMI_BIOS_VERSION, "GE.M1.03"),
1109                         DMI_MATCH(DMI_PRODUCT_VERSION,
1110                                 "HP Pavilion Notebook Model GE"),
1111                         DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
1112                 },
1113         },
1114         {
1115                 .callback = fix_acer_tm360_irqrouting,
1116                 .ident = "Acer TravelMate 36x Laptop",
1117                 .matches = {
1118                         DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1119                         DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 360"),
1120                 },
1121         },
1122         { }
1123 };
1124
1125 void __init pcibios_irq_init(void)
1126 {
1127         DBG(KERN_DEBUG "PCI: IRQ init\n");
1128
1129         if (raw_pci_ops == NULL)
1130                 return;
1131
1132         dmi_check_system(pciirq_dmi_table);
1133
1134         pirq_table = pirq_find_routing_table();
1135
1136 #ifdef CONFIG_PCI_BIOS
1137         if (!pirq_table && (pci_probe & PCI_BIOS_IRQ_SCAN))
1138                 pirq_table = pcibios_get_irq_routing_table();
1139 #endif
1140         if (pirq_table) {
1141                 pirq_peer_trick();
1142                 pirq_find_router(&pirq_router);
1143                 if (pirq_table->exclusive_irqs) {
1144                         int i;
1145                         for (i = 0; i < 16; i++)
1146                                 if (!(pirq_table->exclusive_irqs & (1 << i)))
1147                                         pirq_penalty[i] += 100;
1148                 }
1149                 /*
1150                  * If we're using the I/O APIC, avoid using the PCI IRQ
1151                  * routing table
1152                  */
1153                 if (io_apic_assign_pci_irqs)
1154                         pirq_table = NULL;
1155         }
1156
1157         x86_init.pci.fixup_irqs();
1158
1159         if (io_apic_assign_pci_irqs && pci_routeirq) {
1160                 struct pci_dev *dev = NULL;
1161                 /*
1162                  * PCI IRQ routing is set up by pci_enable_device(), but we
1163                  * also do it here in case there are still broken drivers that
1164                  * don't use pci_enable_device().
1165                  */
1166                 printk(KERN_INFO "PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
1167                 for_each_pci_dev(dev)
1168                         pirq_enable_irq(dev);
1169         }
1170 }
1171
1172 static void pirq_penalize_isa_irq(int irq, int active)
1173 {
1174         /*
1175          *  If any ISAPnP device reports an IRQ in its list of possible
1176          *  IRQ's, we try to avoid assigning it to PCI devices.
1177          */
1178         if (irq < 16) {
1179                 if (active)
1180                         pirq_penalty[irq] += 1000;
1181                 else
1182                         pirq_penalty[irq] += 100;
1183         }
1184 }
1185
1186 void pcibios_penalize_isa_irq(int irq, int active)
1187 {
1188 #ifdef CONFIG_ACPI
1189         if (!acpi_noirq)
1190                 acpi_penalize_isa_irq(irq, active);
1191         else
1192 #endif
1193                 pirq_penalize_isa_irq(irq, active);
1194 }
1195
1196 static int pirq_enable_irq(struct pci_dev *dev)
1197 {
1198         u8 pin;
1199
1200         pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
1201         if (pin && !pcibios_lookup_irq(dev, 1)) {
1202                 char *msg = "";
1203
1204                 if (!io_apic_assign_pci_irqs && dev->irq)
1205                         return 0;
1206
1207                 if (io_apic_assign_pci_irqs) {
1208 #ifdef CONFIG_X86_IO_APIC
1209                         struct pci_dev *temp_dev;
1210                         int irq;
1211                         struct io_apic_irq_attr irq_attr;
1212
1213                         irq = IO_APIC_get_PCI_irq_vector(dev->bus->number,
1214                                                 PCI_SLOT(dev->devfn),
1215                                                 pin - 1, &irq_attr);
1216                         /*
1217                          * Busses behind bridges are typically not listed in the MP-table.
1218                          * In this case we have to look up the IRQ based on the parent bus,
1219                          * parent slot, and pin number. The SMP code detects such bridged
1220                          * busses itself so we should get into this branch reliably.
1221                          */
1222                         temp_dev = dev;
1223                         while (irq < 0 && dev->bus->parent) { /* go back to the bridge */
1224                                 struct pci_dev *bridge = dev->bus->self;
1225
1226                                 pin = pci_swizzle_interrupt_pin(dev, pin);
1227                                 irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number,
1228                                                 PCI_SLOT(bridge->devfn),
1229                                                 pin - 1, &irq_attr);
1230                                 if (irq >= 0)
1231                                         dev_warn(&dev->dev, "using bridge %s "
1232                                                  "INT %c to get IRQ %d\n",
1233                                                  pci_name(bridge), 'A' + pin - 1,
1234                                                  irq);
1235                                 dev = bridge;
1236                         }
1237                         dev = temp_dev;
1238                         if (irq >= 0) {
1239                                 io_apic_set_pci_routing(&dev->dev, irq,
1240                                                          &irq_attr);
1241                                 dev->irq = irq;
1242                                 dev_info(&dev->dev, "PCI->APIC IRQ transform: "
1243                                          "INT %c -> IRQ %d\n", 'A' + pin - 1, irq);
1244                                 return 0;
1245                         } else
1246                                 msg = "; probably buggy MP table";
1247 #endif
1248                 } else if (pci_probe & PCI_BIOS_IRQ_SCAN)
1249                         msg = "";
1250                 else
1251                         msg = "; please try using pci=biosirq";
1252
1253                 /*
1254                  * With IDE legacy devices the IRQ lookup failure is not
1255                  * a problem..
1256                  */
1257                 if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE &&
1258                                 !(dev->class & 0x5))
1259                         return 0;
1260
1261                 dev_warn(&dev->dev, "can't find IRQ for PCI INT %c%s\n",
1262                          'A' + pin - 1, msg);
1263         }
1264         return 0;
1265 }