Kconfig 3.0 KB

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