diff options
Diffstat (limited to 'arch/sh/drivers/pci/ops-r7780rp.c')
-rw-r--r-- | arch/sh/drivers/pci/ops-r7780rp.c | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/arch/sh/drivers/pci/ops-r7780rp.c b/arch/sh/drivers/pci/ops-r7780rp.c index eeea1577e112..f2216081ab85 100644 --- a/arch/sh/drivers/pci/ops-r7780rp.c +++ b/arch/sh/drivers/pci/ops-r7780rp.c | |||
@@ -17,18 +17,25 @@ | |||
17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
18 | #include "pci-sh4.h" | 18 | #include "pci-sh4.h" |
19 | 19 | ||
20 | static char r7780rp_irq_tab[] __initdata = { | ||
21 | 0, 1, 2, 3, | ||
22 | }; | ||
23 | |||
24 | static char r7780mp_irq_tab[] __initdata = { | ||
25 | 65, 66, 67, 68, | ||
26 | }; | ||
27 | |||
20 | int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) | 28 | int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) |
21 | { | 29 | { |
22 | switch (slot) { | 30 | if (mach_is_r7780rp()) |
23 | case 0: return IRQ_PCISLOT1; /* PCI Interrupt #1 */ | 31 | return r7780rp_irq_tab[slot]; |
24 | case 1: return IRQ_PCISLOT2; /* PCI Interrupt #2 */ | 32 | if (mach_is_r7780mp() || mach_is_r7785rp()) |
25 | case 2: return IRQ_PCISLOT3; /* PCI Interrupt #3 */ | 33 | return r7780mp_irq_tab[slot]; |
26 | case 3: return IRQ_PCISLOT4; /* PCI Interrupt E4 */ | 34 | |
27 | default: | 35 | printk(KERN_ERR "PCI: Bad IRQ mapping " |
28 | printk(KERN_ERR "PCI: Bad IRQ mapping " | 36 | "request for slot %d, func %d\n", slot, pin-1); |
29 | "request for slot %d, func %d\n", slot, pin-1); | 37 | |
30 | return -1; | 38 | return -1; |
31 | } | ||
32 | } | 39 | } |
33 | 40 | ||
34 | static struct resource sh7780_io_resource = { | 41 | static struct resource sh7780_io_resource = { |