fixup-atlas.c 2.0 KB

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