pci.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <pci.h>
  8. #include <asm/pci.h>
  9. #include <asm/arch/device.h>
  10. #include <asm/arch/qemu.h>
  11. DECLARE_GLOBAL_DATA_PTR;
  12. static bool i440fx;
  13. void board_pci_setup_hose(struct pci_controller *hose)
  14. {
  15. hose->first_busno = 0;
  16. hose->last_busno = 0;
  17. /* PCI memory space */
  18. pci_set_region(hose->regions + 0,
  19. CONFIG_PCI_MEM_BUS,
  20. CONFIG_PCI_MEM_PHYS,
  21. CONFIG_PCI_MEM_SIZE,
  22. PCI_REGION_MEM);
  23. /* PCI IO space */
  24. pci_set_region(hose->regions + 1,
  25. CONFIG_PCI_IO_BUS,
  26. CONFIG_PCI_IO_PHYS,
  27. CONFIG_PCI_IO_SIZE,
  28. PCI_REGION_IO);
  29. pci_set_region(hose->regions + 2,
  30. CONFIG_PCI_PREF_BUS,
  31. CONFIG_PCI_PREF_PHYS,
  32. CONFIG_PCI_PREF_SIZE,
  33. PCI_REGION_PREFETCH);
  34. pci_set_region(hose->regions + 3,
  35. 0,
  36. 0,
  37. gd->ram_size,
  38. PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
  39. hose->region_count = 4;
  40. }
  41. int board_pci_post_scan(struct pci_controller *hose)
  42. {
  43. u16 device, xbcs;
  44. int pam, i;
  45. /*
  46. * i440FX and Q35 chipset have different PAM register offset, but with
  47. * the same bitfield layout. Here we determine the offset based on its
  48. * PCI device ID.
  49. */
  50. device = x86_pci_read_config16(PCI_BDF(0, 0, 0), PCI_DEVICE_ID);
  51. i440fx = (device == PCI_DEVICE_ID_INTEL_82441);
  52. pam = i440fx ? I440FX_PAM : Q35_PAM;
  53. /*
  54. * Initialize Programmable Attribute Map (PAM) Registers
  55. *
  56. * Configure legacy segments C/D/E/F to system RAM
  57. */
  58. for (i = 0; i < PAM_NUM; i++)
  59. x86_pci_write_config8(PCI_BDF(0, 0, 0), pam + i, PAM_RW);
  60. if (i440fx) {
  61. /*
  62. * Enable legacy IDE I/O ports decode
  63. *
  64. * Note: QEMU always decode legacy IDE I/O port on PIIX chipset.
  65. * However Linux ata_piix driver does sanity check on these two
  66. * registers to see whether legacy ports decode is turned on.
  67. * This is to make Linux ata_piix driver happy.
  68. */
  69. x86_pci_write_config16(PIIX_IDE, IDE0_TIM, IDE_DECODE_EN);
  70. x86_pci_write_config16(PIIX_IDE, IDE1_TIM, IDE_DECODE_EN);
  71. /* Enable I/O APIC */
  72. xbcs = x86_pci_read_config16(PIIX_ISA, XBCS);
  73. xbcs |= APIC_EN;
  74. x86_pci_write_config16(PIIX_ISA, XBCS, xbcs);
  75. } else {
  76. /* Configure PCIe ECAM base address */
  77. x86_pci_write_config32(PCI_BDF(0, 0, 0), PCIEX_BAR,
  78. CONFIG_PCIE_ECAM_BASE | BAR_EN);
  79. }
  80. return 0;
  81. }
  82. #ifdef CONFIG_GENERATE_MP_TABLE
  83. int mp_determine_pci_dstirq(int bus, int dev, int func, int pirq)
  84. {
  85. u8 irq;
  86. if (i440fx) {
  87. /*
  88. * Not like most x86 platforms, the PIRQ[A-D] on PIIX3 are not
  89. * connected to I/O APIC INTPIN#16-19. Instead they are routed
  90. * to an irq number controled by the PIRQ routing register.
  91. */
  92. irq = x86_pci_read_config8(PCI_BDF(bus, dev, func),
  93. PCI_INTERRUPT_LINE);
  94. } else {
  95. /*
  96. * ICH9's PIRQ[A-H] are not consecutive numbers from 0 to 7.
  97. * PIRQ[A-D] still maps to [0-3] but PIRQ[E-H] maps to [8-11].
  98. */
  99. irq = pirq < 8 ? pirq + 16 : pirq + 12;
  100. }
  101. return irq;
  102. }
  103. #endif