Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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_CYCLON2
  13. bool "Enable Altera FPGA driver for Cyclone II"
  14. depends on FPGA_ALTERA
  15. help
  16. Say Y here to enable the Altera Cyclone II FPGA specific driver
  17. This provides common functionality for Altera Cyclone II devices.
  18. Enable FPGA driver for loading bitstream in BIT and BIN format
  19. on Altera Cyclone II device.
  20. config FPGA_XILINX
  21. bool "Enable Xilinx FPGA drivers"
  22. select FPGA
  23. help
  24. Enable Xilinx FPGA specific functions which includes bitstream
  25. (in BIT format), fpga and device validation.
  26. config FPGA_ZYNQMPPL
  27. bool "Enable Xilinx FPGA driver for ZynqMP"
  28. depends on FPGA_XILINX
  29. help
  30. Enable FPGA driver for loading bitstream in BIT and BIN format
  31. on Xilinx Zynq UltraScale+ (ZynqMP) device.
  32. endmenu