diff options
Diffstat (limited to 'arch/x86/pci/irq.c')
-rw-r--r-- | arch/x86/pci/irq.c | 386 |
1 files changed, 208 insertions, 178 deletions
diff --git a/arch/x86/pci/irq.c b/arch/x86/pci/irq.c index ca8df9c260bc..6a06a2eb0597 100644 --- a/arch/x86/pci/irq.c +++ b/arch/x86/pci/irq.c | |||
@@ -11,8 +11,8 @@ | |||
11 | #include <linux/slab.h> | 11 | #include <linux/slab.h> |
12 | #include <linux/interrupt.h> | 12 | #include <linux/interrupt.h> |
13 | #include <linux/dmi.h> | 13 | #include <linux/dmi.h> |
14 | #include <asm/io.h> | 14 | #include <linux/io.h> |
15 | #include <asm/smp.h> | 15 | #include <linux/smp.h> |
16 | #include <asm/io_apic.h> | 16 | #include <asm/io_apic.h> |
17 | #include <linux/irq.h> | 17 | #include <linux/irq.h> |
18 | #include <linux/acpi.h> | 18 | #include <linux/acpi.h> |
@@ -45,7 +45,8 @@ struct irq_router { | |||
45 | char *name; | 45 | char *name; |
46 | u16 vendor, device; | 46 | u16 vendor, device; |
47 | int (*get)(struct pci_dev *router, struct pci_dev *dev, int pirq); | 47 | int (*get)(struct pci_dev *router, struct pci_dev *dev, int pirq); |
48 | int (*set)(struct pci_dev *router, struct pci_dev *dev, int pirq, int new); | 48 | int (*set)(struct pci_dev *router, struct pci_dev *dev, int pirq, |
49 | int new); | ||
49 | }; | 50 | }; |
50 | 51 | ||
51 | struct irq_router_handler { | 52 | struct irq_router_handler { |
@@ -61,7 +62,7 @@ void (*pcibios_disable_irq)(struct pci_dev *dev) = NULL; | |||
61 | * and perform checksum verification. | 62 | * and perform checksum verification. |
62 | */ | 63 | */ |
63 | 64 | ||
64 | static inline struct irq_routing_table * pirq_check_routing_table(u8 *addr) | 65 | static inline struct irq_routing_table *pirq_check_routing_table(u8 *addr) |
65 | { | 66 | { |
66 | struct irq_routing_table *rt; | 67 | struct irq_routing_table *rt; |
67 | int i; | 68 | int i; |
@@ -74,10 +75,11 @@ static inline struct irq_routing_table * pirq_check_routing_table(u8 *addr) | |||
74 | rt->size < sizeof(struct irq_routing_table)) | 75 | rt->size < sizeof(struct irq_routing_table)) |
75 | return NULL; | 76 | return NULL; |
76 | sum = 0; | 77 | sum = 0; |
77 | for (i=0; i < rt->size; i++) | 78 | for (i = 0; i < rt->size; i++) |
78 | sum += addr[i]; | 79 | sum += addr[i]; |
79 | if (!sum) { | 80 | if (!sum) { |
80 | DBG(KERN_DEBUG "PCI: Interrupt Routing Table found at 0x%p\n", rt); | 81 | DBG(KERN_DEBUG "PCI: Interrupt Routing Table found at 0x%p\n", |
82 | rt); | ||
81 | return rt; | 83 | return rt; |
82 | } | 84 | } |
83 | return NULL; | 85 | return NULL; |
@@ -100,7 +102,7 @@ static struct irq_routing_table * __init pirq_find_routing_table(void) | |||
100 | return rt; | 102 | return rt; |
101 | printk(KERN_WARNING "PCI: PIRQ table NOT found at pirqaddr\n"); | 103 | printk(KERN_WARNING "PCI: PIRQ table NOT found at pirqaddr\n"); |
102 | } | 104 | } |
103 | for(addr = (u8 *) __va(0xf0000); addr < (u8 *) __va(0x100000); addr += 16) { | 105 | for (addr = (u8 *) __va(0xf0000); addr < (u8 *) __va(0x100000); addr += 16) { |
104 | rt = pirq_check_routing_table(addr); | 106 | rt = pirq_check_routing_table(addr); |
105 | if (rt) | 107 | if (rt) |
106 | return rt; | 108 | return rt; |
@@ -122,20 +124,20 @@ static void __init pirq_peer_trick(void) | |||
122 | struct irq_info *e; | 124 | struct irq_info *e; |
123 | 125 | ||
124 | memset(busmap, 0, sizeof(busmap)); | 126 | memset(busmap, 0, sizeof(busmap)); |
125 | for(i=0; i < (rt->size - sizeof(struct irq_routing_table)) / sizeof(struct irq_info); i++) { | 127 | for (i = 0; i < (rt->size - sizeof(struct irq_routing_table)) / sizeof(struct irq_info); i++) { |
126 | e = &rt->slots[i]; | 128 | e = &rt->slots[i]; |
127 | #ifdef DEBUG | 129 | #ifdef DEBUG |
128 | { | 130 | { |
129 | int j; | 131 | int j; |
130 | DBG(KERN_DEBUG "%02x:%02x slot=%02x", e->bus, e->devfn/8, e->slot); | 132 | DBG(KERN_DEBUG "%02x:%02x slot=%02x", e->bus, e->devfn/8, e->slot); |
131 | for(j=0; j<4; j++) | 133 | for (j = 0; j < 4; j++) |
132 | DBG(" %d:%02x/%04x", j, e->irq[j].link, e->irq[j].bitmap); | 134 | DBG(" %d:%02x/%04x", j, e->irq[j].link, e->irq[j].bitmap); |
133 | DBG("\n"); | 135 | DBG("\n"); |
134 | } | 136 | } |
135 | #endif | 137 | #endif |
136 | busmap[e->bus] = 1; | 138 | busmap[e->bus] = 1; |
137 | } | 139 | } |
138 | for(i = 1; i < 256; i++) { | 140 | for (i = 1; i < 256; i++) { |
139 | int node; | 141 | int node; |
140 | if (!busmap[i] || pci_find_bus(0, i)) | 142 | if (!busmap[i] || pci_find_bus(0, i)) |
141 | continue; | 143 | continue; |
@@ -183,7 +185,8 @@ static unsigned int read_config_nybble(struct pci_dev *router, unsigned offset, | |||
183 | return (nr & 1) ? (x >> 4) : (x & 0xf); | 185 | return (nr & 1) ? (x >> 4) : (x & 0xf); |
184 | } | 186 | } |
185 | 187 | ||
186 | static void write_config_nybble(struct pci_dev *router, unsigned offset, unsigned nr, unsigned int val) | 188 | static void write_config_nybble(struct pci_dev *router, unsigned offset, |
189 | unsigned nr, unsigned int val) | ||
187 | { | 190 | { |
188 | u8 x; | 191 | u8 x; |
189 | unsigned reg = offset + (nr >> 1); | 192 | unsigned reg = offset + (nr >> 1); |
@@ -285,7 +288,7 @@ static int pirq_ite_get(struct pci_dev *router, struct pci_dev *dev, int pirq) | |||
285 | static const unsigned char pirqmap[4] = { 1, 0, 2, 3 }; | 288 | static const unsigned char pirqmap[4] = { 1, 0, 2, 3 }; |
286 | 289 | ||
287 | WARN_ON_ONCE(pirq > 4); | 290 | WARN_ON_ONCE(pirq > 4); |
288 | return read_config_nybble(router,0x43, pirqmap[pirq-1]); | 291 | return read_config_nybble(router, 0x43, pirqmap[pirq-1]); |
289 | } | 292 | } |
290 | 293 | ||
291 | static int pirq_ite_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) | 294 | static int pirq_ite_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) |
@@ -314,7 +317,7 @@ static int pirq_opti_set(struct pci_dev *router, struct pci_dev *dev, int pirq, | |||
314 | 317 | ||
315 | /* | 318 | /* |
316 | * Cyrix: nibble offset 0x5C | 319 | * Cyrix: nibble offset 0x5C |
317 | * 0x5C bits 7:4 is INTB bits 3:0 is INTA | 320 | * 0x5C bits 7:4 is INTB bits 3:0 is INTA |
318 | * 0x5D bits 7:4 is INTD bits 3:0 is INTC | 321 | * 0x5D bits 7:4 is INTD bits 3:0 is INTC |
319 | */ | 322 | */ |
320 | static int pirq_cyrix_get(struct pci_dev *router, struct pci_dev *dev, int pirq) | 323 | static int pirq_cyrix_get(struct pci_dev *router, struct pci_dev *dev, int pirq) |
@@ -350,7 +353,7 @@ static int pirq_cyrix_set(struct pci_dev *router, struct pci_dev *dev, int pirq, | |||
350 | * Apparently there are systems implementing PCI routing table using | 353 | * Apparently there are systems implementing PCI routing table using |
351 | * link values 0x01-0x04 and others using 0x41-0x44 for PCI INTA..D. | 354 | * link values 0x01-0x04 and others using 0x41-0x44 for PCI INTA..D. |
352 | * We try our best to handle both link mappings. | 355 | * We try our best to handle both link mappings. |
353 | * | 356 | * |
354 | * Currently (2003-05-21) it appears most SiS chipsets follow the | 357 | * Currently (2003-05-21) it appears most SiS chipsets follow the |
355 | * definition of routing registers from the SiS-5595 southbridge. | 358 | * definition of routing registers from the SiS-5595 southbridge. |
356 | * According to the SiS 5595 datasheets the revision id's of the | 359 | * According to the SiS 5595 datasheets the revision id's of the |
@@ -370,7 +373,7 @@ static int pirq_cyrix_set(struct pci_dev *router, struct pci_dev *dev, int pirq, | |||
370 | * | 373 | * |
371 | * 0x62: USBIRQ: | 374 | * 0x62: USBIRQ: |
372 | * bit 6 OHCI function disabled (0), enabled (1) | 375 | * bit 6 OHCI function disabled (0), enabled (1) |
373 | * | 376 | * |
374 | * 0x6a: ACPI/SCI IRQ: bits 4-6 reserved | 377 | * 0x6a: ACPI/SCI IRQ: bits 4-6 reserved |
375 | * | 378 | * |
376 | * 0x7e: Data Acq. Module IRQ - bits 4-6 reserved | 379 | * 0x7e: Data Acq. Module IRQ - bits 4-6 reserved |
@@ -467,7 +470,8 @@ static int pirq_serverworks_get(struct pci_dev *router, struct pci_dev *dev, int | |||
467 | return inb(0xc01) & 0xf; | 470 | return inb(0xc01) & 0xf; |
468 | } | 471 | } |
469 | 472 | ||
470 | static int pirq_serverworks_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) | 473 | static int pirq_serverworks_set(struct pci_dev *router, struct pci_dev *dev, |
474 | int pirq, int irq) | ||
471 | { | 475 | { |
472 | outb(pirq, 0xc00); | 476 | outb(pirq, 0xc00); |
473 | outb(irq, 0xc01); | 477 | outb(irq, 0xc01); |
@@ -487,9 +491,7 @@ static int pirq_amd756_get(struct pci_dev *router, struct pci_dev *dev, int pirq | |||
487 | u8 irq; | 491 | u8 irq; |
488 | irq = 0; | 492 | irq = 0; |
489 | if (pirq <= 4) | 493 | if (pirq <= 4) |
490 | { | ||
491 | irq = read_config_nybble(router, 0x56, pirq - 1); | 494 | irq = read_config_nybble(router, 0x56, pirq - 1); |
492 | } | ||
493 | printk(KERN_INFO "AMD756: dev %04x:%04x, router pirq : %d get irq : %2d\n", | 495 | printk(KERN_INFO "AMD756: dev %04x:%04x, router pirq : %d get irq : %2d\n", |
494 | dev->vendor, dev->device, pirq, irq); | 496 | dev->vendor, dev->device, pirq, irq); |
495 | return irq; | 497 | return irq; |
@@ -497,12 +499,10 @@ static int pirq_amd756_get(struct pci_dev *router, struct pci_dev *dev, int pirq | |||
497 | 499 | ||
498 | static int pirq_amd756_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) | 500 | static int pirq_amd756_set(struct pci_dev *router, struct pci_dev *dev, int pirq, int irq) |
499 | { | 501 | { |
500 | printk(KERN_INFO "AMD756: dev %04x:%04x, router pirq : %d SET irq : %2d\n", | 502 | printk(KERN_INFO "AMD756: dev %04x:%04x, router pirq : %d SET irq : %2d\n", |
501 | dev->vendor, dev->device, pirq, irq); | 503 | dev->vendor, dev->device, pirq, irq); |
502 | if (pirq <= 4) | 504 | if (pirq <= 4) |
503 | { | ||
504 | write_config_nybble(router, 0x56, pirq - 1, irq); | 505 | write_config_nybble(router, 0x56, pirq - 1, irq); |
505 | } | ||
506 | return 1; | 506 | return 1; |
507 | } | 507 | } |
508 | 508 | ||
@@ -549,50 +549,49 @@ static __init int intel_router_probe(struct irq_router *r, struct pci_dev *route | |||
549 | if (pci_dev_present(pirq_440gx)) | 549 | if (pci_dev_present(pirq_440gx)) |
550 | return 0; | 550 | return 0; |
551 | 551 | ||
552 | switch(device) | 552 | switch (device) { |
553 | { | 553 | case PCI_DEVICE_ID_INTEL_82371FB_0: |
554 | case PCI_DEVICE_ID_INTEL_82371FB_0: | 554 | case PCI_DEVICE_ID_INTEL_82371SB_0: |
555 | case PCI_DEVICE_ID_INTEL_82371SB_0: | 555 | case PCI_DEVICE_ID_INTEL_82371AB_0: |
556 | case PCI_DEVICE_ID_INTEL_82371AB_0: | 556 | case PCI_DEVICE_ID_INTEL_82371MX: |
557 | case PCI_DEVICE_ID_INTEL_82371MX: | 557 | case PCI_DEVICE_ID_INTEL_82443MX_0: |
558 | case PCI_DEVICE_ID_INTEL_82443MX_0: | 558 | case PCI_DEVICE_ID_INTEL_82801AA_0: |
559 | case PCI_DEVICE_ID_INTEL_82801AA_0: | 559 | case PCI_DEVICE_ID_INTEL_82801AB_0: |
560 | case PCI_DEVICE_ID_INTEL_82801AB_0: | 560 | case PCI_DEVICE_ID_INTEL_82801BA_0: |
561 | case PCI_DEVICE_ID_INTEL_82801BA_0: | 561 | case PCI_DEVICE_ID_INTEL_82801BA_10: |
562 | case PCI_DEVICE_ID_INTEL_82801BA_10: | 562 | case PCI_DEVICE_ID_INTEL_82801CA_0: |
563 | case PCI_DEVICE_ID_INTEL_82801CA_0: | 563 | case PCI_DEVICE_ID_INTEL_82801CA_12: |
564 | case PCI_DEVICE_ID_INTEL_82801CA_12: | 564 | case PCI_DEVICE_ID_INTEL_82801DB_0: |
565 | case PCI_DEVICE_ID_INTEL_82801DB_0: | 565 | case PCI_DEVICE_ID_INTEL_82801E_0: |
566 | case PCI_DEVICE_ID_INTEL_82801E_0: | 566 | case PCI_DEVICE_ID_INTEL_82801EB_0: |
567 | case PCI_DEVICE_ID_INTEL_82801EB_0: | 567 | case PCI_DEVICE_ID_INTEL_ESB_1: |
568 | case PCI_DEVICE_ID_INTEL_ESB_1: | 568 | case PCI_DEVICE_ID_INTEL_ICH6_0: |
569 | case PCI_DEVICE_ID_INTEL_ICH6_0: | 569 | case PCI_DEVICE_ID_INTEL_ICH6_1: |
570 | case PCI_DEVICE_ID_INTEL_ICH6_1: | 570 | case PCI_DEVICE_ID_INTEL_ICH7_0: |
571 | case PCI_DEVICE_ID_INTEL_ICH7_0: | 571 | case PCI_DEVICE_ID_INTEL_ICH7_1: |
572 | case PCI_DEVICE_ID_INTEL_ICH7_1: | 572 | case PCI_DEVICE_ID_INTEL_ICH7_30: |
573 | case PCI_DEVICE_ID_INTEL_ICH7_30: | 573 | case PCI_DEVICE_ID_INTEL_ICH7_31: |
574 | case PCI_DEVICE_ID_INTEL_ICH7_31: | 574 | case PCI_DEVICE_ID_INTEL_ESB2_0: |
575 | case PCI_DEVICE_ID_INTEL_ESB2_0: | 575 | case PCI_DEVICE_ID_INTEL_ICH8_0: |
576 | case PCI_DEVICE_ID_INTEL_ICH8_0: | 576 | case PCI_DEVICE_ID_INTEL_ICH8_1: |
577 | case PCI_DEVICE_ID_INTEL_ICH8_1: | 577 | case PCI_DEVICE_ID_INTEL_ICH8_2: |
578 | case PCI_DEVICE_ID_INTEL_ICH8_2: | 578 | case PCI_DEVICE_ID_INTEL_ICH8_3: |
579 | case PCI_DEVICE_ID_INTEL_ICH8_3: | 579 | case PCI_DEVICE_ID_INTEL_ICH8_4: |
580 | case PCI_DEVICE_ID_INTEL_ICH8_4: | 580 | case PCI_DEVICE_ID_INTEL_ICH9_0: |
581 | case PCI_DEVICE_ID_INTEL_ICH9_0: | 581 | case PCI_DEVICE_ID_INTEL_ICH9_1: |
582 | case PCI_DEVICE_ID_INTEL_ICH9_1: | 582 | case PCI_DEVICE_ID_INTEL_ICH9_2: |
583 | case PCI_DEVICE_ID_INTEL_ICH9_2: | 583 | case PCI_DEVICE_ID_INTEL_ICH9_3: |
584 | case PCI_DEVICE_ID_INTEL_ICH9_3: | 584 | case PCI_DEVICE_ID_INTEL_ICH9_4: |
585 | case PCI_DEVICE_ID_INTEL_ICH9_4: | 585 | case PCI_DEVICE_ID_INTEL_ICH9_5: |
586 | case PCI_DEVICE_ID_INTEL_ICH9_5: | 586 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: |
587 | case PCI_DEVICE_ID_INTEL_TOLAPAI_0: | 587 | case PCI_DEVICE_ID_INTEL_ICH10_0: |
588 | case PCI_DEVICE_ID_INTEL_ICH10_0: | 588 | case PCI_DEVICE_ID_INTEL_ICH10_1: |
589 | case PCI_DEVICE_ID_INTEL_ICH10_1: | 589 | case PCI_DEVICE_ID_INTEL_ICH10_2: |
590 | case PCI_DEVICE_ID_INTEL_ICH10_2: | 590 | case PCI_DEVICE_ID_INTEL_ICH10_3: |
591 | case PCI_DEVICE_ID_INTEL_ICH10_3: | 591 | r->name = "PIIX/ICH"; |
592 | r->name = "PIIX/ICH"; | 592 | r->get = pirq_piix_get; |
593 | r->get = pirq_piix_get; | 593 | r->set = pirq_piix_set; |
594 | r->set = pirq_piix_set; | 594 | return 1; |
595 | return 1; | ||
596 | } | 595 | } |
597 | return 0; | 596 | return 0; |
598 | } | 597 | } |
@@ -606,7 +605,7 @@ static __init int via_router_probe(struct irq_router *r, | |||
606 | * workarounds for some buggy BIOSes | 605 | * workarounds for some buggy BIOSes |
607 | */ | 606 | */ |
608 | if (device == PCI_DEVICE_ID_VIA_82C586_0) { | 607 | if (device == PCI_DEVICE_ID_VIA_82C586_0) { |
609 | switch(router->device) { | 608 | switch (router->device) { |
610 | case PCI_DEVICE_ID_VIA_82C686: | 609 | case PCI_DEVICE_ID_VIA_82C686: |
611 | /* | 610 | /* |
612 | * Asus k7m bios wrongly reports 82C686A | 611 | * Asus k7m bios wrongly reports 82C686A |
@@ -631,7 +630,7 @@ static __init int via_router_probe(struct irq_router *r, | |||
631 | } | 630 | } |
632 | } | 631 | } |
633 | 632 | ||
634 | switch(device) { | 633 | switch (device) { |
635 | case PCI_DEVICE_ID_VIA_82C586_0: | 634 | case PCI_DEVICE_ID_VIA_82C586_0: |
636 | r->name = "VIA"; | 635 | r->name = "VIA"; |
637 | r->get = pirq_via586_get; | 636 | r->get = pirq_via586_get; |
@@ -654,28 +653,27 @@ static __init int via_router_probe(struct irq_router *r, | |||
654 | 653 | ||
655 | static __init int vlsi_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 654 | static __init int vlsi_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
656 | { | 655 | { |
657 | switch(device) | 656 | switch (device) { |
658 | { | 657 | case PCI_DEVICE_ID_VLSI_82C534: |
659 | case PCI_DEVICE_ID_VLSI_82C534: | 658 | r->name = "VLSI 82C534"; |
660 | r->name = "VLSI 82C534"; | 659 | r->get = pirq_vlsi_get; |
661 | r->get = pirq_vlsi_get; | 660 | r->set = pirq_vlsi_set; |
662 | r->set = pirq_vlsi_set; | 661 | return 1; |
663 | return 1; | ||
664 | } | 662 | } |
665 | return 0; | 663 | return 0; |
666 | } | 664 | } |
667 | 665 | ||
668 | 666 | ||
669 | static __init int serverworks_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 667 | static __init int serverworks_router_probe(struct irq_router *r, |
668 | struct pci_dev *router, u16 device) | ||
670 | { | 669 | { |
671 | switch(device) | 670 | switch (device) { |
672 | { | 671 | case PCI_DEVICE_ID_SERVERWORKS_OSB4: |
673 | case PCI_DEVICE_ID_SERVERWORKS_OSB4: | 672 | case PCI_DEVICE_ID_SERVERWORKS_CSB5: |
674 | case PCI_DEVICE_ID_SERVERWORKS_CSB5: | 673 | r->name = "ServerWorks"; |
675 | r->name = "ServerWorks"; | 674 | r->get = pirq_serverworks_get; |
676 | r->get = pirq_serverworks_get; | 675 | r->set = pirq_serverworks_set; |
677 | r->set = pirq_serverworks_set; | 676 | return 1; |
678 | return 1; | ||
679 | } | 677 | } |
680 | return 0; | 678 | return 0; |
681 | } | 679 | } |
@@ -684,7 +682,7 @@ static __init int sis_router_probe(struct irq_router *r, struct pci_dev *router, | |||
684 | { | 682 | { |
685 | if (device != PCI_DEVICE_ID_SI_503) | 683 | if (device != PCI_DEVICE_ID_SI_503) |
686 | return 0; | 684 | return 0; |
687 | 685 | ||
688 | r->name = "SIS"; | 686 | r->name = "SIS"; |
689 | r->get = pirq_sis_get; | 687 | r->get = pirq_sis_get; |
690 | r->set = pirq_sis_set; | 688 | r->set = pirq_sis_set; |
@@ -693,47 +691,43 @@ static __init int sis_router_probe(struct irq_router *r, struct pci_dev *router, | |||
693 | 691 | ||
694 | static __init int cyrix_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 692 | static __init int cyrix_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
695 | { | 693 | { |
696 | switch(device) | 694 | switch (device) { |
697 | { | 695 | case PCI_DEVICE_ID_CYRIX_5520: |
698 | case PCI_DEVICE_ID_CYRIX_5520: | 696 | r->name = "NatSemi"; |
699 | r->name = "NatSemi"; | 697 | r->get = pirq_cyrix_get; |
700 | r->get = pirq_cyrix_get; | 698 | r->set = pirq_cyrix_set; |
701 | r->set = pirq_cyrix_set; | 699 | return 1; |
702 | return 1; | ||
703 | } | 700 | } |
704 | return 0; | 701 | return 0; |
705 | } | 702 | } |
706 | 703 | ||
707 | static __init int opti_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 704 | static __init int opti_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
708 | { | 705 | { |
709 | switch(device) | 706 | switch (device) { |
710 | { | 707 | case PCI_DEVICE_ID_OPTI_82C700: |
711 | case PCI_DEVICE_ID_OPTI_82C700: | 708 | r->name = "OPTI"; |
712 | r->name = "OPTI"; | 709 | r->get = pirq_opti_get; |
713 | r->get = pirq_opti_get; | 710 | r->set = pirq_opti_set; |
714 | r->set = pirq_opti_set; | 711 | return 1; |
715 | return 1; | ||
716 | } | 712 | } |
717 | return 0; | 713 | return 0; |
718 | } | 714 | } |
719 | 715 | ||
720 | static __init int ite_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 716 | static __init int ite_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
721 | { | 717 | { |
722 | switch(device) | 718 | switch (device) { |
723 | { | 719 | case PCI_DEVICE_ID_ITE_IT8330G_0: |
724 | case PCI_DEVICE_ID_ITE_IT8330G_0: | 720 | r->name = "ITE"; |
725 | r->name = "ITE"; | 721 | r->get = pirq_ite_get; |
726 | r->get = pirq_ite_get; | 722 | r->set = pirq_ite_set; |
727 | r->set = pirq_ite_set; | 723 | return 1; |
728 | return 1; | ||
729 | } | 724 | } |
730 | return 0; | 725 | return 0; |
731 | } | 726 | } |
732 | 727 | ||
733 | static __init int ali_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 728 | static __init int ali_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
734 | { | 729 | { |
735 | switch(device) | 730 | switch (device) { |
736 | { | ||
737 | case PCI_DEVICE_ID_AL_M1533: | 731 | case PCI_DEVICE_ID_AL_M1533: |
738 | case PCI_DEVICE_ID_AL_M1563: | 732 | case PCI_DEVICE_ID_AL_M1563: |
739 | printk(KERN_DEBUG "PCI: Using ALI IRQ Router\n"); | 733 | printk(KERN_DEBUG "PCI: Using ALI IRQ Router\n"); |
@@ -747,25 +741,24 @@ static __init int ali_router_probe(struct irq_router *r, struct pci_dev *router, | |||
747 | 741 | ||
748 | static __init int amd_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 742 | static __init int amd_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
749 | { | 743 | { |
750 | switch(device) | 744 | switch (device) { |
751 | { | 745 | case PCI_DEVICE_ID_AMD_VIPER_740B: |
752 | case PCI_DEVICE_ID_AMD_VIPER_740B: | 746 | r->name = "AMD756"; |
753 | r->name = "AMD756"; | 747 | break; |
754 | break; | 748 | case PCI_DEVICE_ID_AMD_VIPER_7413: |
755 | case PCI_DEVICE_ID_AMD_VIPER_7413: | 749 | r->name = "AMD766"; |
756 | r->name = "AMD766"; | 750 | break; |
757 | break; | 751 | case PCI_DEVICE_ID_AMD_VIPER_7443: |
758 | case PCI_DEVICE_ID_AMD_VIPER_7443: | 752 | r->name = "AMD768"; |
759 | r->name = "AMD768"; | 753 | break; |
760 | break; | 754 | default: |
761 | default: | 755 | return 0; |
762 | return 0; | ||
763 | } | 756 | } |
764 | r->get = pirq_amd756_get; | 757 | r->get = pirq_amd756_get; |
765 | r->set = pirq_amd756_set; | 758 | r->set = pirq_amd756_set; |
766 | return 1; | 759 | return 1; |
767 | } | 760 | } |
768 | 761 | ||
769 | static __init int pico_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) | 762 | static __init int pico_router_probe(struct irq_router *r, struct pci_dev *router, u16 device) |
770 | { | 763 | { |
771 | switch (device) { | 764 | switch (device) { |
@@ -807,7 +800,7 @@ static struct pci_dev *pirq_router_dev; | |||
807 | * FIXME: should we have an option to say "generic for | 800 | * FIXME: should we have an option to say "generic for |
808 | * chipset" ? | 801 | * chipset" ? |
809 | */ | 802 | */ |
810 | 803 | ||
811 | static void __init pirq_find_router(struct irq_router *r) | 804 | static void __init pirq_find_router(struct irq_router *r) |
812 | { | 805 | { |
813 | struct irq_routing_table *rt = pirq_table; | 806 | struct irq_routing_table *rt = pirq_table; |
@@ -826,7 +819,7 @@ static void __init pirq_find_router(struct irq_router *r) | |||
826 | r->name = "default"; | 819 | r->name = "default"; |
827 | r->get = NULL; | 820 | r->get = NULL; |
828 | r->set = NULL; | 821 | r->set = NULL; |
829 | 822 | ||
830 | DBG(KERN_DEBUG "PCI: Attempting to find IRQ router for %04x:%04x\n", | 823 | DBG(KERN_DEBUG "PCI: Attempting to find IRQ router for %04x:%04x\n", |
831 | rt->rtr_vendor, rt->rtr_device); | 824 | rt->rtr_vendor, rt->rtr_device); |
832 | 825 | ||
@@ -837,12 +830,14 @@ static void __init pirq_find_router(struct irq_router *r) | |||
837 | return; | 830 | return; |
838 | } | 831 | } |
839 | 832 | ||
840 | for( h = pirq_routers; h->vendor; h++) { | 833 | for (h = pirq_routers; h->vendor; h++) { |
841 | /* First look for a router match */ | 834 | /* First look for a router match */ |
842 | if (rt->rtr_vendor == h->vendor && h->probe(r, pirq_router_dev, rt->rtr_device)) | 835 | if (rt->rtr_vendor == h->vendor && |
836 | h->probe(r, pirq_router_dev, rt->rtr_device)) | ||
843 | break; | 837 | break; |
844 | /* Fall back to a device match */ | 838 | /* Fall back to a device match */ |
845 | if (pirq_router_dev->vendor == h->vendor && h->probe(r, pirq_router_dev, pirq_router_dev->device)) | 839 | if (pirq_router_dev->vendor == h->vendor && |
840 | h->probe(r, pirq_router_dev, pirq_router_dev->device)) | ||
846 | break; | 841 | break; |
847 | } | 842 | } |
848 | printk(KERN_INFO "PCI: Using IRQ router %s [%04x/%04x] at %s\n", | 843 | printk(KERN_INFO "PCI: Using IRQ router %s [%04x/%04x] at %s\n", |
@@ -857,11 +852,13 @@ static void __init pirq_find_router(struct irq_router *r) | |||
857 | static struct irq_info *pirq_get_info(struct pci_dev *dev) | 852 | static struct irq_info *pirq_get_info(struct pci_dev *dev) |
858 | { | 853 | { |
859 | struct irq_routing_table *rt = pirq_table; | 854 | struct irq_routing_table *rt = pirq_table; |
860 | int entries = (rt->size - sizeof(struct irq_routing_table)) / sizeof(struct irq_info); | 855 | int entries = (rt->size - sizeof(struct irq_routing_table)) / |
856 | sizeof(struct irq_info); | ||
861 | struct irq_info *info; | 857 | struct irq_info *info; |
862 | 858 | ||
863 | for (info = rt->slots; entries--; info++) | 859 | for (info = rt->slots; entries--; info++) |
864 | if (info->bus == dev->bus->number && PCI_SLOT(info->devfn) == PCI_SLOT(dev->devfn)) | 860 | if (info->bus == dev->bus->number && |
861 | PCI_SLOT(info->devfn) == PCI_SLOT(dev->devfn)) | ||
865 | return info; | 862 | return info; |
866 | return NULL; | 863 | return NULL; |
867 | } | 864 | } |
@@ -889,7 +886,7 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
889 | 886 | ||
890 | if (!pirq_table) | 887 | if (!pirq_table) |
891 | return 0; | 888 | return 0; |
892 | 889 | ||
893 | DBG(KERN_DEBUG "IRQ for %s[%c]", pci_name(dev), 'A' + pin); | 890 | DBG(KERN_DEBUG "IRQ for %s[%c]", pci_name(dev), 'A' + pin); |
894 | info = pirq_get_info(dev); | 891 | info = pirq_get_info(dev); |
895 | if (!info) { | 892 | if (!info) { |
@@ -902,7 +899,8 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
902 | DBG(" -> not routed\n" KERN_DEBUG); | 899 | DBG(" -> not routed\n" KERN_DEBUG); |
903 | return 0; | 900 | return 0; |
904 | } | 901 | } |
905 | DBG(" -> PIRQ %02x, mask %04x, excl %04x", pirq, mask, pirq_table->exclusive_irqs); | 902 | DBG(" -> PIRQ %02x, mask %04x, excl %04x", pirq, mask, |
903 | pirq_table->exclusive_irqs); | ||
906 | mask &= pcibios_irq_mask; | 904 | mask &= pcibios_irq_mask; |
907 | 905 | ||
908 | /* Work around broken HP Pavilion Notebooks which assign USB to | 906 | /* Work around broken HP Pavilion Notebooks which assign USB to |
@@ -915,7 +913,8 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
915 | } | 913 | } |
916 | 914 | ||
917 | /* same for Acer Travelmate 360, but with CB and irq 11 -> 10 */ | 915 | /* same for Acer Travelmate 360, but with CB and irq 11 -> 10 */ |
918 | if (acer_tm360_irqrouting && dev->irq == 11 && dev->vendor == PCI_VENDOR_ID_O2) { | 916 | if (acer_tm360_irqrouting && dev->irq == 11 && |
917 | dev->vendor == PCI_VENDOR_ID_O2) { | ||
919 | pirq = 0x68; | 918 | pirq = 0x68; |
920 | mask = 0x400; | 919 | mask = 0x400; |
921 | dev->irq = r->get(pirq_router_dev, dev, pirq); | 920 | dev->irq = r->get(pirq_router_dev, dev, pirq); |
@@ -928,17 +927,20 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
928 | */ | 927 | */ |
929 | newirq = dev->irq; | 928 | newirq = dev->irq; |
930 | if (newirq && !((1 << newirq) & mask)) { | 929 | if (newirq && !((1 << newirq) & mask)) { |
931 | if ( pci_probe & PCI_USE_PIRQ_MASK) newirq = 0; | 930 | if (pci_probe & PCI_USE_PIRQ_MASK) |
932 | else printk("\n" KERN_WARNING | 931 | newirq = 0; |
933 | "PCI: IRQ %i for device %s doesn't match PIRQ mask " | 932 | else |
934 | "- try pci=usepirqmask\n" KERN_DEBUG, newirq, | 933 | printk("\n" KERN_WARNING |
935 | pci_name(dev)); | 934 | "PCI: IRQ %i for device %s doesn't match PIRQ mask - try pci=usepirqmask\n" |
935 | KERN_DEBUG, newirq, | ||
936 | pci_name(dev)); | ||
936 | } | 937 | } |
937 | if (!newirq && assign) { | 938 | if (!newirq && assign) { |
938 | for (i = 0; i < 16; i++) { | 939 | for (i = 0; i < 16; i++) { |
939 | if (!(mask & (1 << i))) | 940 | if (!(mask & (1 << i))) |
940 | continue; | 941 | continue; |
941 | if (pirq_penalty[i] < pirq_penalty[newirq] && can_request_irq(i, IRQF_SHARED)) | 942 | if (pirq_penalty[i] < pirq_penalty[newirq] && |
943 | can_request_irq(i, IRQF_SHARED)) | ||
942 | newirq = i; | 944 | newirq = i; |
943 | } | 945 | } |
944 | } | 946 | } |
@@ -949,12 +951,13 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
949 | irq = pirq & 0xf; | 951 | irq = pirq & 0xf; |
950 | DBG(" -> hardcoded IRQ %d\n", irq); | 952 | DBG(" -> hardcoded IRQ %d\n", irq); |
951 | msg = "Hardcoded"; | 953 | msg = "Hardcoded"; |
952 | } else if ( r->get && (irq = r->get(pirq_router_dev, dev, pirq)) && \ | 954 | } else if (r->get && (irq = r->get(pirq_router_dev, dev, pirq)) && \ |
953 | ((!(pci_probe & PCI_USE_PIRQ_MASK)) || ((1 << irq) & mask)) ) { | 955 | ((!(pci_probe & PCI_USE_PIRQ_MASK)) || ((1 << irq) & mask))) { |
954 | DBG(" -> got IRQ %d\n", irq); | 956 | DBG(" -> got IRQ %d\n", irq); |
955 | msg = "Found"; | 957 | msg = "Found"; |
956 | eisa_set_level_irq(irq); | 958 | eisa_set_level_irq(irq); |
957 | } else if (newirq && r->set && (dev->class >> 8) != PCI_CLASS_DISPLAY_VGA) { | 959 | } else if (newirq && r->set && |
960 | (dev->class >> 8) != PCI_CLASS_DISPLAY_VGA) { | ||
958 | DBG(" -> assigning IRQ %d", newirq); | 961 | DBG(" -> assigning IRQ %d", newirq); |
959 | if (r->set(pirq_router_dev, dev, pirq, newirq)) { | 962 | if (r->set(pirq_router_dev, dev, pirq, newirq)) { |
960 | eisa_set_level_irq(newirq); | 963 | eisa_set_level_irq(newirq); |
@@ -972,7 +975,8 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
972 | } else | 975 | } else |
973 | return 0; | 976 | return 0; |
974 | } | 977 | } |
975 | printk(KERN_INFO "PCI: %s IRQ %d for device %s\n", msg, irq, pci_name(dev)); | 978 | printk(KERN_INFO "PCI: %s IRQ %d for device %s\n", msg, irq, |
979 | pci_name(dev)); | ||
976 | 980 | ||
977 | /* Update IRQ for all devices with the same pirq value */ | 981 | /* Update IRQ for all devices with the same pirq value */ |
978 | while ((dev2 = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev2)) != NULL) { | 982 | while ((dev2 = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev2)) != NULL) { |
@@ -984,20 +988,25 @@ static int pcibios_lookup_irq(struct pci_dev *dev, int assign) | |||
984 | if (!info) | 988 | if (!info) |
985 | continue; | 989 | continue; |
986 | if (info->irq[pin].link == pirq) { | 990 | if (info->irq[pin].link == pirq) { |
987 | /* We refuse to override the dev->irq information. Give a warning! */ | 991 | /* |
988 | if ( dev2->irq && dev2->irq != irq && \ | 992 | * We refuse to override the dev->irq |
993 | * information. Give a warning! | ||
994 | */ | ||
995 | if (dev2->irq && dev2->irq != irq && \ | ||
989 | (!(pci_probe & PCI_USE_PIRQ_MASK) || \ | 996 | (!(pci_probe & PCI_USE_PIRQ_MASK) || \ |
990 | ((1 << dev2->irq) & mask)) ) { | 997 | ((1 << dev2->irq) & mask))) { |
991 | #ifndef CONFIG_PCI_MSI | 998 | #ifndef CONFIG_PCI_MSI |
992 | printk(KERN_INFO "IRQ routing conflict for %s, have irq %d, want irq %d\n", | 999 | printk(KERN_INFO "IRQ routing conflict for %s, have irq %d, want irq %d\n", |
993 | pci_name(dev2), dev2->irq, irq); | 1000 | pci_name(dev2), dev2->irq, irq); |
994 | #endif | 1001 | #endif |
995 | continue; | 1002 | continue; |
996 | } | 1003 | } |
997 | dev2->irq = irq; | 1004 | dev2->irq = irq; |
998 | pirq_penalty[irq]++; | 1005 | pirq_penalty[irq]++; |
999 | if (dev != dev2) | 1006 | if (dev != dev2) |
1000 | printk(KERN_INFO "PCI: Sharing IRQ %d with %s\n", irq, pci_name(dev2)); | 1007 | printk(KERN_INFO |
1008 | "PCI: Sharing IRQ %d with %s\n", | ||
1009 | irq, pci_name(dev2)); | ||
1001 | } | 1010 | } |
1002 | } | 1011 | } |
1003 | return 1; | 1012 | return 1; |
@@ -1011,15 +1020,21 @@ static void __init pcibios_fixup_irqs(void) | |||
1011 | DBG(KERN_DEBUG "PCI: IRQ fixup\n"); | 1020 | DBG(KERN_DEBUG "PCI: IRQ fixup\n"); |
1012 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { | 1021 | while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { |
1013 | /* | 1022 | /* |
1014 | * If the BIOS has set an out of range IRQ number, just ignore it. | 1023 | * If the BIOS has set an out of range IRQ number, just |
1015 | * Also keep track of which IRQ's are already in use. | 1024 | * ignore it. Also keep track of which IRQ's are |
1025 | * already in use. | ||
1016 | */ | 1026 | */ |
1017 | if (dev->irq >= 16) { | 1027 | if (dev->irq >= 16) { |
1018 | DBG(KERN_DEBUG "%s: ignoring bogus IRQ %d\n", pci_name(dev), dev->irq); | 1028 | DBG(KERN_DEBUG "%s: ignoring bogus IRQ %d\n", |
1029 | pci_name(dev), dev->irq); | ||
1019 | dev->irq = 0; | 1030 | dev->irq = 0; |
1020 | } | 1031 | } |
1021 | /* If the IRQ is already assigned to a PCI device, ignore its ISA use penalty */ | 1032 | /* |
1022 | if (pirq_penalty[dev->irq] >= 100 && pirq_penalty[dev->irq] < 100000) | 1033 | * If the IRQ is already assigned to a PCI device, |
1034 | * ignore its ISA use penalty | ||
1035 | */ | ||
1036 | if (pirq_penalty[dev->irq] >= 100 && | ||
1037 | pirq_penalty[dev->irq] < 100000) | ||
1023 | pirq_penalty[dev->irq] = 0; | 1038 | pirq_penalty[dev->irq] = 0; |
1024 | pirq_penalty[dev->irq]++; | 1039 | pirq_penalty[dev->irq]++; |
1025 | } | 1040 | } |
@@ -1031,13 +1046,17 @@ static void __init pcibios_fixup_irqs(void) | |||
1031 | /* | 1046 | /* |
1032 | * Recalculate IRQ numbers if we use the I/O APIC. | 1047 | * Recalculate IRQ numbers if we use the I/O APIC. |
1033 | */ | 1048 | */ |
1034 | if (io_apic_assign_pci_irqs) | 1049 | if (io_apic_assign_pci_irqs) { |
1035 | { | ||
1036 | int irq; | 1050 | int irq; |
1037 | 1051 | ||
1038 | if (pin) { | 1052 | if (pin) { |
1039 | pin--; /* interrupt pins are numbered starting from 1 */ | 1053 | /* |
1040 | irq = IO_APIC_get_PCI_irq_vector(dev->bus->number, PCI_SLOT(dev->devfn), pin); | 1054 | * interrupt pins are numbered starting |
1055 | * from 1 | ||
1056 | */ | ||
1057 | pin--; | ||
1058 | irq = IO_APIC_get_PCI_irq_vector(dev->bus->number, | ||
1059 | PCI_SLOT(dev->devfn), pin); | ||
1041 | /* | 1060 | /* |
1042 | * Busses behind bridges are typically not listed in the MP-table. | 1061 | * Busses behind bridges are typically not listed in the MP-table. |
1043 | * In this case we have to look up the IRQ based on the parent bus, | 1062 | * In this case we have to look up the IRQ based on the parent bus, |
@@ -1045,10 +1064,10 @@ static void __init pcibios_fixup_irqs(void) | |||
1045 | * busses itself so we should get into this branch reliably. | 1064 | * busses itself so we should get into this branch reliably. |
1046 | */ | 1065 | */ |
1047 | if (irq < 0 && dev->bus->parent) { /* go back to the bridge */ | 1066 | if (irq < 0 && dev->bus->parent) { /* go back to the bridge */ |
1048 | struct pci_dev * bridge = dev->bus->self; | 1067 | struct pci_dev *bridge = dev->bus->self; |
1049 | 1068 | ||
1050 | pin = (pin + PCI_SLOT(dev->devfn)) % 4; | 1069 | pin = (pin + PCI_SLOT(dev->devfn)) % 4; |
1051 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, | 1070 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, |
1052 | PCI_SLOT(bridge->devfn), pin); | 1071 | PCI_SLOT(bridge->devfn), pin); |
1053 | if (irq >= 0) | 1072 | if (irq >= 0) |
1054 | printk(KERN_WARNING "PCI: using PPB %s[%c] to get irq %d\n", | 1073 | printk(KERN_WARNING "PCI: using PPB %s[%c] to get irq %d\n", |
@@ -1078,7 +1097,8 @@ static int __init fix_broken_hp_bios_irq9(const struct dmi_system_id *d) | |||
1078 | { | 1097 | { |
1079 | if (!broken_hp_bios_irq9) { | 1098 | if (!broken_hp_bios_irq9) { |
1080 | broken_hp_bios_irq9 = 1; | 1099 | broken_hp_bios_irq9 = 1; |
1081 | printk(KERN_INFO "%s detected - fixing broken IRQ routing\n", d->ident); | 1100 | printk(KERN_INFO "%s detected - fixing broken IRQ routing\n", |
1101 | d->ident); | ||
1082 | } | 1102 | } |
1083 | return 0; | 1103 | return 0; |
1084 | } | 1104 | } |
@@ -1091,7 +1111,8 @@ static int __init fix_acer_tm360_irqrouting(const struct dmi_system_id *d) | |||
1091 | { | 1111 | { |
1092 | if (!acer_tm360_irqrouting) { | 1112 | if (!acer_tm360_irqrouting) { |
1093 | acer_tm360_irqrouting = 1; | 1113 | acer_tm360_irqrouting = 1; |
1094 | printk(KERN_INFO "%s detected - fixing broken IRQ routing\n", d->ident); | 1114 | printk(KERN_INFO "%s detected - fixing broken IRQ routing\n", |
1115 | d->ident); | ||
1095 | } | 1116 | } |
1096 | return 0; | 1117 | return 0; |
1097 | } | 1118 | } |
@@ -1103,7 +1124,8 @@ static struct dmi_system_id __initdata pciirq_dmi_table[] = { | |||
1103 | .matches = { | 1124 | .matches = { |
1104 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | 1125 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
1105 | DMI_MATCH(DMI_BIOS_VERSION, "GE.M1.03"), | 1126 | DMI_MATCH(DMI_BIOS_VERSION, "GE.M1.03"), |
1106 | DMI_MATCH(DMI_PRODUCT_VERSION, "HP Pavilion Notebook Model GE"), | 1127 | DMI_MATCH(DMI_PRODUCT_VERSION, |
1128 | "HP Pavilion Notebook Model GE"), | ||
1107 | DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"), | 1129 | DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"), |
1108 | }, | 1130 | }, |
1109 | }, | 1131 | }, |
@@ -1118,7 +1140,7 @@ static struct dmi_system_id __initdata pciirq_dmi_table[] = { | |||
1118 | { } | 1140 | { } |
1119 | }; | 1141 | }; |
1120 | 1142 | ||
1121 | static int __init pcibios_irq_init(void) | 1143 | int __init pcibios_irq_init(void) |
1122 | { | 1144 | { |
1123 | DBG(KERN_DEBUG "PCI: IRQ init\n"); | 1145 | DBG(KERN_DEBUG "PCI: IRQ init\n"); |
1124 | 1146 | ||
@@ -1138,11 +1160,14 @@ static int __init pcibios_irq_init(void) | |||
1138 | pirq_find_router(&pirq_router); | 1160 | pirq_find_router(&pirq_router); |
1139 | if (pirq_table->exclusive_irqs) { | 1161 | if (pirq_table->exclusive_irqs) { |
1140 | int i; | 1162 | int i; |
1141 | for (i=0; i<16; i++) | 1163 | for (i = 0; i < 16; i++) |
1142 | if (!(pirq_table->exclusive_irqs & (1 << i))) | 1164 | if (!(pirq_table->exclusive_irqs & (1 << i))) |
1143 | pirq_penalty[i] += 100; | 1165 | pirq_penalty[i] += 100; |
1144 | } | 1166 | } |
1145 | /* If we're using the I/O APIC, avoid using the PCI IRQ routing table */ | 1167 | /* |
1168 | * If we're using the I/O APIC, avoid using the PCI IRQ | ||
1169 | * routing table | ||
1170 | */ | ||
1146 | if (io_apic_assign_pci_irqs) | 1171 | if (io_apic_assign_pci_irqs) |
1147 | pirq_table = NULL; | 1172 | pirq_table = NULL; |
1148 | } | 1173 | } |
@@ -1153,9 +1178,6 @@ static int __init pcibios_irq_init(void) | |||
1153 | return 0; | 1178 | return 0; |
1154 | } | 1179 | } |
1155 | 1180 | ||
1156 | subsys_initcall(pcibios_irq_init); | ||
1157 | |||
1158 | |||
1159 | static void pirq_penalize_isa_irq(int irq, int active) | 1181 | static void pirq_penalize_isa_irq(int irq, int active) |
1160 | { | 1182 | { |
1161 | /* | 1183 | /* |
@@ -1189,7 +1211,7 @@ static int pirq_enable_irq(struct pci_dev *dev) | |||
1189 | if (pin && !pcibios_lookup_irq(dev, 1) && !dev->irq) { | 1211 | if (pin && !pcibios_lookup_irq(dev, 1) && !dev->irq) { |
1190 | char *msg = ""; | 1212 | char *msg = ""; |
1191 | 1213 | ||
1192 | pin--; /* interrupt pins are numbered starting from 1 */ | 1214 | pin--; /* interrupt pins are numbered starting from 1 */ |
1193 | 1215 | ||
1194 | if (io_apic_assign_pci_irqs) { | 1216 | if (io_apic_assign_pci_irqs) { |
1195 | int irq; | 1217 | int irq; |
@@ -1203,19 +1225,22 @@ static int pirq_enable_irq(struct pci_dev *dev) | |||
1203 | */ | 1225 | */ |
1204 | temp_dev = dev; | 1226 | temp_dev = dev; |
1205 | while (irq < 0 && dev->bus->parent) { /* go back to the bridge */ | 1227 | while (irq < 0 && dev->bus->parent) { /* go back to the bridge */ |
1206 | struct pci_dev * bridge = dev->bus->self; | 1228 | struct pci_dev *bridge = dev->bus->self; |
1207 | 1229 | ||
1208 | pin = (pin + PCI_SLOT(dev->devfn)) % 4; | 1230 | pin = (pin + PCI_SLOT(dev->devfn)) % 4; |
1209 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, | 1231 | irq = IO_APIC_get_PCI_irq_vector(bridge->bus->number, |
1210 | PCI_SLOT(bridge->devfn), pin); | 1232 | PCI_SLOT(bridge->devfn), pin); |
1211 | if (irq >= 0) | 1233 | if (irq >= 0) |
1212 | printk(KERN_WARNING "PCI: using PPB %s[%c] to get irq %d\n", | 1234 | printk(KERN_WARNING |
1213 | pci_name(bridge), 'A' + pin, irq); | 1235 | "PCI: using PPB %s[%c] to get irq %d\n", |
1236 | pci_name(bridge), | ||
1237 | 'A' + pin, irq); | ||
1214 | dev = bridge; | 1238 | dev = bridge; |
1215 | } | 1239 | } |
1216 | dev = temp_dev; | 1240 | dev = temp_dev; |
1217 | if (irq >= 0) { | 1241 | if (irq >= 0) { |
1218 | printk(KERN_INFO "PCI->APIC IRQ transform: %s[%c] -> IRQ %d\n", | 1242 | printk(KERN_INFO |
1243 | "PCI->APIC IRQ transform: %s[%c] -> IRQ %d\n", | ||
1219 | pci_name(dev), 'A' + pin, irq); | 1244 | pci_name(dev), 'A' + pin, irq); |
1220 | dev->irq = irq; | 1245 | dev->irq = irq; |
1221 | return 0; | 1246 | return 0; |
@@ -1226,12 +1251,17 @@ static int pirq_enable_irq(struct pci_dev *dev) | |||
1226 | else | 1251 | else |
1227 | msg = " Please try using pci=biosirq."; | 1252 | msg = " Please try using pci=biosirq."; |
1228 | 1253 | ||
1229 | /* With IDE legacy devices the IRQ lookup failure is not a problem.. */ | 1254 | /* |
1230 | if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE && !(dev->class & 0x5)) | 1255 | * With IDE legacy devices the IRQ lookup failure is not |
1256 | * a problem.. | ||
1257 | */ | ||
1258 | if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE && | ||
1259 | !(dev->class & 0x5)) | ||
1231 | return 0; | 1260 | return 0; |
1232 | 1261 | ||
1233 | printk(KERN_WARNING "PCI: No IRQ known for interrupt pin %c of device %s.%s\n", | 1262 | printk(KERN_WARNING |
1234 | 'A' + pin, pci_name(dev), msg); | 1263 | "PCI: No IRQ known for interrupt pin %c of device %s.%s\n", |
1264 | 'A' + pin, pci_name(dev), msg); | ||
1235 | } | 1265 | } |
1236 | return 0; | 1266 | return 0; |
1237 | } | 1267 | } |