Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. menu "PCI host controller drivers"
  2. depends on PCI
  3. config PCI_DRA7XX
  4. bool "TI DRA7xx PCIe controller"
  5. select PCIE_DW
  6. depends on OF && HAS_IOMEM && TI_PIPE3
  7. help
  8. Enables support for the PCIe controller in the DRA7xx SoC. There
  9. are two instances of PCIe controller in DRA7xx. This controller can
  10. act both as EP and RC. This reuses the Designware core.
  11. config PCI_MVEBU
  12. bool "Marvell EBU PCIe controller"
  13. depends on ARCH_MVEBU || ARCH_DOVE
  14. depends on OF
  15. config PCIE_DW
  16. bool
  17. config PCI_EXYNOS
  18. bool "Samsung Exynos PCIe controller"
  19. depends on SOC_EXYNOS5440
  20. select PCIEPORTBUS
  21. select PCIE_DW
  22. config PCI_IMX6
  23. bool "Freescale i.MX6 PCIe controller"
  24. depends on SOC_IMX6Q
  25. select PCIEPORTBUS
  26. select PCIE_DW
  27. config PCI_TEGRA
  28. bool "NVIDIA Tegra PCIe controller"
  29. depends on ARCH_TEGRA && !ARM64
  30. help
  31. Say Y here if you want support for the PCIe host controller found
  32. on NVIDIA Tegra SoCs.
  33. config PCI_RCAR_GEN2
  34. bool "Renesas R-Car Gen2 Internal PCI controller"
  35. depends on ARCH_SHMOBILE || (ARM && COMPILE_TEST)
  36. help
  37. Say Y here if you want internal PCI support on R-Car Gen2 SoC.
  38. There are 3 internal PCI controllers available with a single
  39. built-in EHCI/OHCI host controller present on each one.
  40. config PCI_RCAR_GEN2_PCIE
  41. bool "Renesas R-Car PCIe controller"
  42. depends on ARCH_SHMOBILE || (ARM && COMPILE_TEST)
  43. help
  44. Say Y here if you want PCIe controller support on R-Car Gen2 SoCs.
  45. config PCI_HOST_GENERIC
  46. bool "Generic PCI host controller"
  47. depends on (ARM || ARM64) && OF
  48. help
  49. Say Y here if you want to support a simple generic PCI host
  50. controller, such as the one emulated by kvmtool.
  51. config PCIE_SPEAR13XX
  52. bool "STMicroelectronics SPEAr PCIe controller"
  53. depends on ARCH_SPEAR13XX
  54. select PCIEPORTBUS
  55. select PCIE_DW
  56. help
  57. Say Y here if you want PCIe support on SPEAr13XX SoCs.
  58. config PCI_KEYSTONE
  59. bool "TI Keystone PCIe controller"
  60. depends on ARCH_KEYSTONE
  61. select PCIE_DW
  62. select PCIEPORTBUS
  63. help
  64. Say Y here if you want to enable PCI controller support on Keystone
  65. SoCs. The PCI controller on Keystone is based on Designware hardware
  66. and therefore the driver re-uses the Designware core functions to
  67. implement the driver.
  68. config PCIE_XILINX
  69. bool "Xilinx AXI PCIe host bridge support"
  70. depends on ARCH_ZYNQ
  71. help
  72. Say 'Y' here if you want kernel to support the Xilinx AXI PCIe
  73. Host Bridge driver.
  74. config PCI_XGENE
  75. bool "X-Gene PCIe controller"
  76. depends on ARCH_XGENE
  77. depends on OF
  78. select PCIEPORTBUS
  79. select PCI_MSI_IRQ_DOMAIN if PCI_MSI
  80. help
  81. Say Y here if you want internal PCI support on APM X-Gene SoC.
  82. There are 5 internal PCIe ports available. Each port is GEN3 capable
  83. and have varied lanes from x1 to x8.
  84. config PCI_XGENE_MSI
  85. bool "X-Gene v1 PCIe MSI feature"
  86. depends on PCI_XGENE && PCI_MSI
  87. default y
  88. help
  89. Say Y here if you want PCIe MSI support for the APM X-Gene v1 SoC.
  90. This MSI driver supports 5 PCIe ports on the APM X-Gene v1 SoC.
  91. config PCI_LAYERSCAPE
  92. bool "Freescale Layerscape PCIe controller"
  93. depends on OF && ARM
  94. select PCIE_DW
  95. select MFD_SYSCON
  96. help
  97. Say Y here if you want PCIe controller support on Layerscape SoCs.
  98. config PCI_VERSATILE
  99. bool "ARM Versatile PB PCI controller"
  100. depends on ARCH_VERSATILE
  101. config PCIE_IPROC
  102. tristate "Broadcom iProc PCIe controller"
  103. depends on OF && (ARM || ARM64)
  104. default n
  105. help
  106. This enables the iProc PCIe core controller support for Broadcom's
  107. iProc family of SoCs. An appropriate bus interface driver also needs
  108. to be enabled
  109. config PCIE_IPROC_PLATFORM
  110. tristate "Broadcom iProc PCIe platform bus driver"
  111. depends on ARCH_BCM_IPROC || (ARM && COMPILE_TEST)
  112. depends on OF
  113. select PCIE_IPROC
  114. default ARCH_BCM_IPROC
  115. help
  116. Say Y here if you want to use the Broadcom iProc PCIe controller
  117. through the generic platform bus interface
  118. config PCIE_IPROC_BCMA
  119. tristate "Broadcom iProc PCIe BCMA bus driver"
  120. depends on ARM && (ARCH_BCM_IPROC || COMPILE_TEST)
  121. select PCIE_IPROC
  122. select BCMA
  123. select PCI_DOMAINS
  124. default ARCH_BCM_5301X
  125. help
  126. Say Y here if you want to use the Broadcom iProc PCIe controller
  127. through the BCMA bus interface
  128. endmenu