Kconfig 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. help
  48. FPGA manager driver support for Xilinx Zynq FPGAs.
  49. config FPGA_MGR_XILINX_SPI
  50. tristate "Xilinx Configuration over Slave Serial (SPI)"
  51. depends on SPI
  52. help
  53. FPGA manager driver support for Xilinx FPGA configuration
  54. over slave serial interface.
  55. config FPGA_MGR_ICE40_SPI
  56. tristate "Lattice iCE40 SPI"
  57. depends on OF && SPI
  58. help
  59. FPGA manager driver support for Lattice iCE40 FPGAs over SPI.
  60. config FPGA_MGR_MACHXO2_SPI
  61. tristate "Lattice MachXO2 SPI"
  62. depends on SPI
  63. help
  64. FPGA manager driver support for Lattice MachXO2 configuration
  65. over slave SPI interface.
  66. config FPGA_MGR_TS73XX
  67. tristate "Technologic Systems TS-73xx SBC FPGA Manager"
  68. depends on ARCH_EP93XX && MACH_TS72XX
  69. help
  70. FPGA manager driver support for the Altera Cyclone II FPGA
  71. present on the TS-73xx SBC boards.
  72. config FPGA_BRIDGE
  73. tristate "FPGA Bridge Framework"
  74. help
  75. Say Y here if you want to support bridges connected between host
  76. processors and FPGAs or between FPGAs.
  77. config SOCFPGA_FPGA_BRIDGE
  78. tristate "Altera SoCFPGA FPGA Bridges"
  79. depends on ARCH_SOCFPGA && FPGA_BRIDGE
  80. help
  81. Say Y to enable drivers for FPGA bridges for Altera SOCFPGA
  82. devices.
  83. config ALTERA_FREEZE_BRIDGE
  84. tristate "Altera FPGA Freeze Bridge"
  85. depends on ARCH_SOCFPGA && FPGA_BRIDGE
  86. help
  87. Say Y to enable drivers for Altera FPGA Freeze bridges. A
  88. freeze bridge is a bridge that exists in the FPGA fabric to
  89. isolate one region of the FPGA from the busses while that
  90. region is being reprogrammed.
  91. config XILINX_PR_DECOUPLER
  92. tristate "Xilinx LogiCORE PR Decoupler"
  93. depends on FPGA_BRIDGE
  94. depends on HAS_IOMEM
  95. help
  96. Say Y to enable drivers for Xilinx LogiCORE PR Decoupler.
  97. The PR Decoupler exists in the FPGA fabric to isolate one
  98. region of the FPGA from the busses while that region is
  99. being reprogrammed during partial reconfig.
  100. config FPGA_REGION
  101. tristate "FPGA Region"
  102. depends on FPGA_BRIDGE
  103. help
  104. FPGA Region common code. A FPGA Region controls a FPGA Manager
  105. and the FPGA Bridges associated with either a reconfigurable
  106. region of an FPGA or a whole FPGA.
  107. config OF_FPGA_REGION
  108. tristate "FPGA Region Device Tree Overlay Support"
  109. depends on OF && FPGA_REGION
  110. help
  111. Support for loading FPGA images by applying a Device Tree
  112. overlay.
  113. endif # FPGA