Kconfig 655 B

123456789101112131415161718192021
  1. config RT_PCI_HOST_COMMON
  2. bool "Common PCI host controller"
  3. depends on RT_PCI_ECAM
  4. default y
  5. help
  6. Include shared helper code for PCI host controllers that follow the ECAM
  7. (Enhanced Configuration Access Mechanism) layout. Required by most PCIe
  8. root complexes.
  9. config RT_PCI_HOST_GENERIC
  10. bool "Generic PCI host controller"
  11. depends on RT_PCI_ECAM
  12. select RT_PCI_HOST_COMMON
  13. default y
  14. help
  15. Build the minimal ECAM-based PCI host driver that can enumerate devices at
  16. a fixed base address. Useful for QEMU/virt platforms or simple SoCs.
  17. rsource "dw/Kconfig"
  18. osource "$(SOC_DM_PCI_DIR)/Kconfig"