Kconfig 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #
  2. # FPGA framework configuration
  3. #
  4. menuconfig FPGA
  5. tristate "FPGA Configuration Framework"
  6. help
  7. Say Y here if you want support for configuring FPGAs from the
  8. kernel. The FPGA framework adds a FPGA manager class and FPGA
  9. manager drivers.
  10. if FPGA
  11. config FPGA_MGR_SOCFPGA
  12. tristate "Altera SOCFPGA FPGA Manager"
  13. depends on ARCH_SOCFPGA || COMPILE_TEST
  14. help
  15. FPGA manager driver support for Altera SOCFPGA.
  16. config FPGA_MGR_SOCFPGA_A10
  17. tristate "Altera SoCFPGA Arria10"
  18. depends on ARCH_SOCFPGA || COMPILE_TEST
  19. select REGMAP_MMIO
  20. help
  21. FPGA manager driver support for Altera Arria10 SoCFPGA.
  22. config ALTERA_PR_IP_CORE
  23. tristate "Altera Partial Reconfiguration IP Core"
  24. help
  25. Core driver support for Altera Partial Reconfiguration IP component
  26. config ALTERA_PR_IP_CORE_PLAT
  27. tristate "Platform support of Altera Partial Reconfiguration IP Core"
  28. depends on ALTERA_PR_IP_CORE && OF && HAS_IOMEM
  29. help
  30. Platform driver support for Altera Partial Reconfiguration IP
  31. component
  32. config FPGA_MGR_ALTERA_PS_SPI
  33. tristate "Altera FPGA Passive Serial over SPI"
  34. depends on SPI
  35. help
  36. FPGA manager driver support for Altera Arria/Cyclone/Stratix
  37. using the passive serial interface over SPI.
  38. config FPGA_MGR_ALTERA_CVP
  39. tristate "Altera Arria-V/Cyclone-V/Stratix-V CvP FPGA Manager"
  40. depends on PCI
  41. help
  42. FPGA manager driver support for Arria-V, Cyclone-V, Stratix-V
  43. and Arria 10 Altera FPGAs using the CvP interface over PCIe.
  44. config FPGA_MGR_ZYNQ_FPGA
  45. tristate "Xilinx Zynq FPGA"
  46. depends on ARCH_ZYNQ || COMPILE_TEST
  47. depends on HAS_DMA
  48. help
  49. FPGA manager driver support for Xilinx Zynq FPGAs.
  50. config FPGA_MGR_XILINX_SPI
  51. tristate "Xilinx Configuration over Slave Serial (SPI)"
  52. depends on SPI
  53. help
  54. FPGA manager driver support for Xilinx FPGA configuration
  55. over slave serial interface.
  56. config FPGA_MGR_ICE40_SPI
  57. tristate "Lattice iCE40 SPI"
  58. depends on OF && SPI
  59. help
  60. FPGA manager driver support for Lattice iCE40 FPGAs over SPI.
  61. config FPGA_MGR_TS73XX
  62. tristate "Technologic Systems TS-73xx SBC FPGA Manager"
  63. depends on ARCH_EP93XX && MACH_TS72XX
  64. help
  65. FPGA manager driver support for the Altera Cyclone II FPGA
  66. present on the TS-73xx SBC boards.
  67. config FPGA_BRIDGE
  68. tristate "FPGA Bridge Framework"
  69. help
  70. Say Y here if you want to support bridges connected between host
  71. processors and FPGAs or between FPGAs.
  72. config SOCFPGA_FPGA_BRIDGE
  73. tristate "Altera SoCFPGA FPGA Bridges"
  74. depends on ARCH_SOCFPGA && FPGA_BRIDGE
  75. help
  76. Say Y to enable drivers for FPGA bridges for Altera SOCFPGA
  77. devices.
  78. config ALTERA_FREEZE_BRIDGE
  79. tristate "Altera FPGA Freeze Bridge"
  80. depends on ARCH_SOCFPGA && FPGA_BRIDGE
  81. help
  82. Say Y to enable drivers for Altera FPGA Freeze bridges. A
  83. freeze bridge is a bridge that exists in the FPGA fabric to
  84. isolate one region of the FPGA from the busses while that
  85. region is being reprogrammed.
  86. config XILINX_PR_DECOUPLER
  87. tristate "Xilinx LogiCORE PR Decoupler"
  88. depends on FPGA_BRIDGE
  89. depends on HAS_IOMEM
  90. help
  91. Say Y to enable drivers for Xilinx LogiCORE PR Decoupler.
  92. The PR Decoupler exists in the FPGA fabric to isolate one
  93. region of the FPGA from the busses while that region is
  94. being reprogrammed during partial reconfig.
  95. config FPGA_REGION
  96. tristate "FPGA Region"
  97. depends on FPGA_BRIDGE
  98. help
  99. FPGA Region common code. A FPGA Region controls a FPGA Manager
  100. and the FPGA Bridges associated with either a reconfigurable
  101. region of an FPGA or a whole FPGA.
  102. config OF_FPGA_REGION
  103. tristate "FPGA Region Device Tree Overlay Support"
  104. depends on OF && FPGA_REGION
  105. help
  106. Support for loading FPGA images by applying a Device Tree
  107. overlay.
  108. endif # FPGA