RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / pci / fixup-wrppmc.c
blob3d277549d5dfa1ccf620730e582868d34de8939d
1 /*
2 * fixup-wrppmc.c: PPMC board specific PCI fixup
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 2006, Wind River Inc. Rongkai.zhan (rongkai.zhan@windriver.com)
9 */
10 #include <linux/init.h>
11 #include <linux/pci.h>
12 #include <asm/gt64120.h>
14 /* PCI interrupt pins */
15 #define PCI_INTA 1
16 #define PCI_INTB 2
17 #define PCI_INTC 3
18 #define PCI_INTD 4
20 #define PCI_SLOT_MAXNR 32 /* Each PCI bus has 32 physical slots */
22 static char pci_irq_tab[PCI_SLOT_MAXNR][5] __initdata = {
23 /* 0 INTA INTB INTC INTD */
24 [0] = {0, 0, 0, 0, 0}, /* Slot 0: GT64120 PCI bridge */
25 [6] = {0, WRPPMC_PCI_INTA_IRQ, 0, 0, 0},
28 int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
30 return pci_irq_tab[slot][pin];
33 /* Do platform specific device initialization at pci_enable_device() time */
34 int pcibios_plat_dev_init(struct pci_dev *dev)
36 return 0;