xref: /openbmc/u-boot/drivers/fpga/Kconfig (revision 76b00aca)
1menu "FPGA support"
2
3config FPGA
4	bool
5
6config FPGA_ALTERA
7	bool "Enable Altera FPGA drivers"
8	select FPGA
9	help
10	  Say Y here to enable the Altera FPGA driver
11
12	  This provides basic infrastructure to support Altera FPGA devices.
13	  Enable Altera FPGA specific functions which includes bitstream
14	  (in BIT format), fpga and device validation.
15
16config FPGA_CYCLON2
17	bool "Enable Altera FPGA driver for Cyclone II"
18	depends on FPGA_ALTERA
19	help
20	  Say Y here to enable the Altera Cyclone II FPGA specific driver
21
22	  This provides common functionality for Altera Cyclone II devices.
23	  Enable FPGA driver for loading bitstream in BIT and BIN format
24	  on Altera Cyclone II device.
25
26config 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
33config FPGA_ZYNQMPPL
34	bool "Enable Xilinx FPGA driver for ZynqMP"
35	depends on FPGA_XILINX
36	help
37	  Enable FPGA driver for loading bitstream in BIT and BIN format
38	  on Xilinx Zynq UltraScale+ (ZynqMP) device.
39
40endmenu
41