2016-09-19 08:41:55 +00:00
|
|
|
menu "FPGA support"
|
|
|
|
|
2016-01-13 10:55:37 +00:00
|
|
|
config FPGA
|
|
|
|
bool
|
|
|
|
|
2016-11-04 10:57:02 +00:00
|
|
|
config FPGA_ALTERA
|
|
|
|
bool "Enable Altera FPGA drivers"
|
|
|
|
select FPGA
|
|
|
|
help
|
|
|
|
Say Y here to enable the Altera FPGA driver
|
|
|
|
|
|
|
|
This provides basic infrastructure to support Altera FPGA devices.
|
|
|
|
Enable Altera FPGA specific functions which includes bitstream
|
|
|
|
(in BIT format), fpga and device validation.
|
|
|
|
|
2017-07-26 05:05:40 +00:00
|
|
|
config FPGA_SOCFPGA
|
|
|
|
bool "Enable Gen5 and Arria10 common FPGA drivers"
|
|
|
|
select FPGA_ALTERA
|
|
|
|
help
|
|
|
|
Say Y here to enable the Gen5 and Arria10 common FPGA driver
|
|
|
|
|
|
|
|
This provides common functionality for Gen5 and Arria10 devices.
|
|
|
|
|
2016-11-04 10:57:02 +00:00
|
|
|
config FPGA_CYCLON2
|
|
|
|
bool "Enable Altera FPGA driver for Cyclone II"
|
|
|
|
depends on FPGA_ALTERA
|
|
|
|
help
|
|
|
|
Say Y here to enable the Altera Cyclone II FPGA specific driver
|
|
|
|
|
|
|
|
This provides common functionality for Altera Cyclone II devices.
|
|
|
|
Enable FPGA driver for loading bitstream in BIT and BIN format
|
|
|
|
on Altera Cyclone II device.
|
|
|
|
|
2020-08-07 03:50:03 +00:00
|
|
|
config FPGA_INTEL_SDM_MAILBOX
|
|
|
|
bool "Enable Intel FPGA Full Reconfiguration SDM Mailbox driver"
|
2021-03-01 12:04:10 +00:00
|
|
|
depends on TARGET_SOCFPGA_SOC64
|
2018-12-20 02:35:14 +00:00
|
|
|
select FPGA_ALTERA
|
|
|
|
help
|
2020-08-07 03:50:03 +00:00
|
|
|
Say Y here to enable the Intel FPGA Full Reconfig SDM Mailbox driver
|
2018-12-20 02:35:14 +00:00
|
|
|
|
2020-08-07 03:50:03 +00:00
|
|
|
This provides common functionality for Intel FPGA devices.
|
|
|
|
Enable FPGA driver for writing full bitstream into Intel FPGA
|
|
|
|
devices through SDM (Secure Device Manager) Mailbox.
|
2018-12-20 02:35:14 +00:00
|
|
|
|
2016-01-13 10:55:37 +00:00
|
|
|
config FPGA_XILINX
|
|
|
|
bool "Enable Xilinx FPGA drivers"
|
|
|
|
select FPGA
|
|
|
|
help
|
|
|
|
Enable Xilinx FPGA specific functions which includes bitstream
|
|
|
|
(in BIT format), fpga and device validation.
|
|
|
|
|
|
|
|
config FPGA_ZYNQMPPL
|
|
|
|
bool "Enable Xilinx FPGA driver for ZynqMP"
|
|
|
|
depends on FPGA_XILINX
|
|
|
|
help
|
|
|
|
Enable FPGA driver for loading bitstream in BIT and BIN format
|
|
|
|
on Xilinx Zynq UltraScale+ (ZynqMP) device.
|
|
|
|
|
2019-08-05 10:24:59 +00:00
|
|
|
config FPGA_VERSALPL
|
|
|
|
bool "Enable Xilinx FPGA driver for Versal"
|
|
|
|
depends on FPGA_XILINX
|
|
|
|
help
|
|
|
|
Enable FPGA driver for loading bitstream in PDI format on Xilinx
|
|
|
|
Versal device. PDI is a new programmable device image format for
|
|
|
|
Versal. The bitstream will only be generated as PDI for Versal
|
|
|
|
platform.
|
|
|
|
|
2018-02-16 12:32:49 +00:00
|
|
|
config FPGA_SPARTAN3
|
2018-07-23 13:59:55 +00:00
|
|
|
bool "Enable Spartan3 FPGA driver"
|
2019-06-18 15:47:13 +00:00
|
|
|
depends on FPGA_XILINX
|
2018-07-23 13:59:55 +00:00
|
|
|
help
|
|
|
|
Enable Spartan3 FPGA driver for loading in BIT format.
|
2018-02-16 12:32:49 +00:00
|
|
|
|
2019-06-18 15:47:13 +00:00
|
|
|
config FPGA_VIRTEX2
|
|
|
|
bool "Enable Xilinx Virtex-II and later FPGA driver"
|
|
|
|
depends on FPGA_XILINX
|
|
|
|
help
|
|
|
|
Enable Virtex-II FPGA driver for loading in BIT format. This driver
|
|
|
|
also supports many newer Xilinx FPGA families.
|
|
|
|
|
2018-02-16 12:32:51 +00:00
|
|
|
config FPGA_ZYNQPL
|
2018-07-23 13:59:55 +00:00
|
|
|
bool "Enable Xilinx FPGA for Zynq"
|
|
|
|
depends on ARCH_ZYNQ
|
|
|
|
help
|
|
|
|
Enable FPGA driver for loading bitstream in BIT and BIN format
|
|
|
|
on Xilinx Zynq devices.
|
2018-02-16 12:32:51 +00:00
|
|
|
|
2016-09-19 08:41:55 +00:00
|
|
|
endmenu
|