fixup-malta.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #include <linux/init.h>
  2. #include <linux/pci.h>
  3. #include <asm/mips-boards/piix4.h>
  4. /* PCI interrupt pins */
  5. #define PCIA 1
  6. #define PCIB 2
  7. #define PCIC 3
  8. #define PCID 4
  9. /* This table is filled in by interrogating the PIIX4 chip */
  10. static char pci_irq[5] = {
  11. };
  12. static char irq_tab[][5] __initdata = {
  13. /* INTA INTB INTC INTD */
  14. {0, 0, 0, 0, 0 }, /* 0: GT64120 PCI bridge */
  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, PCID }, /* 10: PIIX4 USB */
  25. {0, PCIB, 0, 0, 0 }, /* 11: AMD 79C973 Ethernet */
  26. {0, PCIC, 0, 0, 0 }, /* 12: Crystal 4281 Sound */
  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, 0, 0, 0, 0 }, /* 16: Unused */
  31. {0, 0, 0, 0, 0 }, /* 17: Bonito/SOC-it PCI Bridge*/
  32. {0, PCIA, PCIB, PCIC, PCID }, /* 18: PCI Slot 1 */
  33. {0, PCIB, PCIC, PCID, PCIA }, /* 19: PCI Slot 2 */
  34. {0, PCIC, PCID, PCIA, PCIB }, /* 20: PCI Slot 3 */
  35. {0, PCID, PCIA, PCIB, PCIC } /* 21: PCI Slot 4 */
  36. };
  37. int __init pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  38. {
  39. int virq;
  40. virq = irq_tab[slot][pin];
  41. return pci_irq[virq];
  42. }
  43. /* Do platform specific device initialization at pci_enable_device() time */
  44. int pcibios_plat_dev_init(struct pci_dev *dev)
  45. {
  46. return 0;
  47. }
  48. static void malta_piix_func0_fixup(struct pci_dev *pdev)
  49. {
  50. unsigned char reg_val;
  51. /* PIIX PIRQC[A:D] irq mappings */
  52. static int piixirqmap[PIIX4_FUNC0_PIRQRC_IRQ_ROUTING_MAX] = {
  53. 0, 0, 0, 3,
  54. 4, 5, 6, 7,
  55. 0, 9, 10, 11,
  56. 12, 0, 14, 15
  57. };
  58. int i;
  59. /* Interrogate PIIX4 to get PCI IRQ mapping */
  60. for (i = 0; i <= 3; i++) {
  61. pci_read_config_byte(pdev, PIIX4_FUNC0_PIRQRC+i, &reg_val);
  62. if (reg_val & PIIX4_FUNC0_PIRQRC_IRQ_ROUTING_DISABLE)
  63. pci_irq[PCIA+i] = 0; /* Disabled */
  64. else
  65. pci_irq[PCIA+i] = piixirqmap[reg_val &
  66. PIIX4_FUNC0_PIRQRC_IRQ_ROUTING_MASK];
  67. }
  68. /* Done by YAMON 2.00 onwards */
  69. if (PCI_SLOT(pdev->devfn) == 10) {
  70. /*
  71. * Set top of main memory accessible by ISA or DMA
  72. * devices to 16 Mb.
  73. */
  74. pci_read_config_byte(pdev, PIIX4_FUNC0_TOM, &reg_val);
  75. pci_write_config_byte(pdev, PIIX4_FUNC0_TOM, reg_val |
  76. PIIX4_FUNC0_TOM_TOP_OF_MEMORY_MASK);
  77. }
  78. }
  79. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0,
  80. malta_piix_func0_fixup);
  81. static void malta_piix_func1_fixup(struct pci_dev *pdev)
  82. {
  83. unsigned char reg_val;
  84. /* Done by YAMON 2.02 onwards */
  85. if (PCI_SLOT(pdev->devfn) == 10) {
  86. /*
  87. * IDE Decode enable.
  88. */
  89. pci_read_config_byte(pdev, PIIX4_FUNC1_IDETIM_PRIMARY_HI,
  90. &reg_val);
  91. pci_write_config_byte(pdev, PIIX4_FUNC1_IDETIM_PRIMARY_HI,
  92. reg_val|PIIX4_FUNC1_IDETIM_PRIMARY_HI_IDE_DECODE_EN);
  93. pci_read_config_byte(pdev, PIIX4_FUNC1_IDETIM_SECONDARY_HI,
  94. &reg_val);
  95. pci_write_config_byte(pdev, PIIX4_FUNC1_IDETIM_SECONDARY_HI,
  96. reg_val|PIIX4_FUNC1_IDETIM_SECONDARY_HI_IDE_DECODE_EN);
  97. }
  98. }
  99. DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB,
  100. malta_piix_func1_fixup);
  101. /* Enable PCI 2.1 compatibility in PIIX4 */
  102. static void quirk_dlcsetup(struct pci_dev *dev)
  103. {
  104. u8 odlc, ndlc;
  105. (void) pci_read_config_byte(dev, PIIX4_FUNC0_DLC, &odlc);
  106. /* Enable passive releases and delayed transaction */
  107. ndlc = odlc | PIIX4_FUNC0_DLC_USBPR_EN |
  108. PIIX4_FUNC0_DLC_PASSIVE_RELEASE_EN |
  109. PIIX4_FUNC0_DLC_DELAYED_TRANSACTION_EN;
  110. (void) pci_write_config_byte(dev, PIIX4_FUNC0_DLC, ndlc);
  111. }
  112. DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0,
  113. quirk_dlcsetup);