Kconfig 446 B

1234567891011121314151617181920
  1. menu "FPGA support"
  2. config FPGA
  3. bool
  4. config FPGA_XILINX
  5. bool "Enable Xilinx FPGA drivers"
  6. select FPGA
  7. help
  8. Enable Xilinx FPGA specific functions which includes bitstream
  9. (in BIT format), fpga and device validation.
  10. config FPGA_ZYNQMPPL
  11. bool "Enable Xilinx FPGA driver for ZynqMP"
  12. depends on FPGA_XILINX
  13. help
  14. Enable FPGA driver for loading bitstream in BIT and BIN format
  15. on Xilinx Zynq UltraScale+ (ZynqMP) device.
  16. endmenu