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