1
2
3
4
5
6
7
8
9
10#include <linux/init.h>
11#include <linux/pci.h>
12#include <asm/gt64120.h>
13
14
15#define PCI_INTA 1
16#define PCI_INTB 2
17#define PCI_INTC 3
18#define PCI_INTD 4
19
20#define PCI_SLOT_MAXNR 32
21
22static char pci_irq_tab[PCI_SLOT_MAXNR][5] __initdata = {
23
24 [0] = {0, 0, 0, 0, 0},
25 [6] = {0, WRPPMC_PCI_INTA_IRQ, 0, 0, 0},
26};
27
28int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
29{
30 return pci_irq_tab[slot][pin];
31}
32
33
34int pcibios_plat_dev_init(struct pci_dev *dev)
35{
36 return 0;
37}
38