# BRCM_VERSION=3
[bcm963xx.git] / kernel / linux / arch / mips / pci / fixup-atlas.c
1 #include <linux/init.h>
2 #include <linux/pci.h>
3 #include <asm/mips-boards/atlasint.h>
4
5 #define INTD            ATLASINT_INTD
6 #define INTC            ATLASINT_INTC
7 #define INTB            ATLASINT_INTB
8 #define INTA            ATLASINT_INTA
9 #define SCSI            ATLASINT_SCSI
10 #define ETH             ATLASINT_ETH
11
12 static char irq_tab[][5] __initdata = {
13         /*      INTA    INTB    INTC    INTD */
14         {0,     0,      0,      0,      0 },    /*  0: Unused */
15         {0,     0,      0,      0,      0 },    /*  1: Unused */
16         {0,     0,      0,      0,      0 },    /*  2: Unused */
17         {0,     0,      0,      0,      0 },    /*  3: Unused */
18         {0,     0,      0,      0,      0 },    /*  4: Unused */
19         {0,     0,      0,      0,      0 },    /*  5: Unused */
20         {0,     0,      0,      0,      0 },    /*  6: Unused */
21         {0,     0,      0,      0,      0 },    /*  7: Unused */
22         {0,     0,      0,      0,      0 },    /*  8: Unused */
23         {0,     0,      0,      0,      0 },    /*  9: Unused */
24         {0,     0,      0,      0,      0 },    /* 10: Unused */
25         {0,     0,      0,      0,      0 },    /* 11: Unused */
26         {0,     0,      0,      0,      0 },    /* 12: Unused */
27         {0,     0,      0,      0,      0 },    /* 13: Unused */
28         {0,     0,      0,      0,      0 },    /* 14: Unused */
29         {0,     0,      0,      0,      0 },    /* 15: Unused */
30         {0,     SCSI,   0,      0,      0 },    /* 16: SYM53C810A SCSI */
31         {0,     0,      0,      0,      0 },    /* 17: Core */
32         {0,     INTA,   INTB,   INTC,   INTD }, /* 18: PCI Slot 1 */
33         {0,     ETH,    0,      0,      0 },    /* 19: SAA9730 Ethernet */
34         {0,     0,      0,      0,      0 },    /* 20: PCI Slot 3 */
35         {0,     0,      0,      0,      0 }     /* 21: PCI Slot 4 */
36 };
37
38 int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
39 {
40         return irq_tab[slot][pin];
41 }
42
43 #if CONFIG_KGDB
44 /*
45  * The PCI scan may have moved the saa9730 I/O address, so reread
46  * the address here.
47  * This does mean that it's not possible to debug the PCI bus configuration
48  * code, but it is better than nothing...
49  */
50
51 static void atlas_saa9730_base_fixup (struct pci_dev *pdev)
52 {
53         extern void *saa9730_base;
54         if (pdev->bus == 0 && PCI_SLOT(pdev->devfn) == 19)
55                 (void) pci_read_config_dword (pdev, 0x14, (u32 *)&saa9730_base);
56         printk ("saa9730_base = %x\n", saa9730_base);
57 }
58
59 #endif
60
61
62 struct pci_fixup pcibios_fixups[] = {
63 #ifdef CONFIG_KGDB
64         {PCI_FIXUP_HEADER, PCI_VENDOR_ID_PHILIPS, PCI_DEVICE_ID_PHILIPS_SAA9730,
65          atlas_saa9730_base_fixup},
66 #endif
67         { 0 }
68 };