Kconfig 939 B

12345678910111213141516171819202122232425262728293031323334
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # PCI Endpoint Support
  4. #
  5. menu "PCI Endpoint"
  6. config PCI_ENDPOINT
  7. bool "PCI Endpoint Support"
  8. depends on DM
  9. help
  10. Enable this configuration option to support configurable PCI
  11. endpoints. This should be enabled if the platform has a PCI
  12. controllers that can operate in endpoint mode (as a device
  13. connected to PCI host or bridge).
  14. config PCIE_CADENCE_EP
  15. bool "Cadence PCIe endpoint controller"
  16. depends on PCI_ENDPOINT
  17. help
  18. Say Y here if you want to support the Cadence PCIe controller in
  19. endpoint mode. This PCIe controller may be embedded into many
  20. different vendors SoCs.
  21. config PCI_SANDBOX_EP
  22. bool "Sandbox PCIe endpoint controller"
  23. depends on PCI_ENDPOINT
  24. help
  25. Say Y here if you want to support the Sandbox PCIe controller in
  26. endpoint mode.
  27. The sandbox driver act as a dummy driver which stores and
  28. retrieves PCIe endpoint configuration as is.
  29. endmenu