Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. menu "FPGA support"
  2. config FPGA
  3. bool
  4. config FPGA_ALTERA
  5. bool "Enable Altera FPGA drivers"
  6. select FPGA
  7. help
  8. Say Y here to enable the Altera FPGA driver
  9. This provides basic infrastructure to support Altera FPGA devices.
  10. Enable Altera FPGA specific functions which includes bitstream
  11. (in BIT format), fpga and device validation.
  12. config FPGA_SOCFPGA
  13. bool "Enable Gen5 and Arria10 common FPGA drivers"
  14. select FPGA_ALTERA
  15. help
  16. Say Y here to enable the Gen5 and Arria10 common FPGA driver
  17. This provides common functionality for Gen5 and Arria10 devices.
  18. config FPGA_CYCLON2
  19. bool "Enable Altera FPGA driver for Cyclone II"
  20. depends on FPGA_ALTERA
  21. help
  22. Say Y here to enable the Altera Cyclone II FPGA specific driver
  23. This provides common functionality for Altera Cyclone II devices.
  24. Enable FPGA driver for loading bitstream in BIT and BIN format
  25. on Altera Cyclone II device.
  26. config FPGA_XILINX
  27. bool "Enable Xilinx FPGA drivers"
  28. select FPGA
  29. help
  30. Enable Xilinx FPGA specific functions which includes bitstream
  31. (in BIT format), fpga and device validation.
  32. config FPGA_ZYNQMPPL
  33. bool "Enable Xilinx FPGA driver for ZynqMP"
  34. depends on FPGA_XILINX
  35. help
  36. Enable FPGA driver for loading bitstream in BIT and BIN format
  37. on Xilinx Zynq UltraScale+ (ZynqMP) device.
  38. config FPGA_SPARTAN3
  39. bool "Enable Spartan3 FPGA driver"
  40. help
  41. Enable Spartan3 FPGA driver for loading in BIT format.
  42. config FPGA_ZYNQPL
  43. bool "Enable Xilinx FPGA for Zynq"
  44. depends on ARCH_ZYNQ
  45. help
  46. Enable FPGA driver for loading bitstream in BIT and BIN format
  47. on Xilinx Zynq devices.
  48. endmenu