blob: 5605ad6a4e97e5363668b9a99a3745c2895fd1e3 [file] [log] [blame]
Alan Tull6a8c3be2015-10-07 16:36:28 +01001#
2# FPGA framework configuration
3#
4
5menu "FPGA Configuration Support"
6
7config FPGA
8 tristate "FPGA Configuration Framework"
9 help
10 Say Y here if you want support for configuring FPGAs from the
11 kernel. The FPGA framework adds a FPGA manager class and FPGA
12 manager drivers.
13
Alan Tullfab62662015-10-07 16:36:29 +010014if FPGA
15
Alan Tull0fa20cd2016-11-01 14:14:29 -050016config FPGA_REGION
17 tristate "FPGA Region"
18 depends on OF && FPGA_BRIDGE
19 help
20 FPGA Regions allow loading FPGA images under control of
21 the Device Tree.
22
Alan Tullfab62662015-10-07 16:36:29 +010023config FPGA_MGR_SOCFPGA
24 tristate "Altera SOCFPGA FPGA Manager"
25 depends on ARCH_SOCFPGA
26 help
27 FPGA manager driver support for Altera SOCFPGA.
28
Moritz Fischer37784702015-10-16 15:42:30 -070029config FPGA_MGR_ZYNQ_FPGA
30 tristate "Xilinx Zynq FPGA"
Jean Delvare54e9b092016-09-08 09:38:05 -050031 depends on ARCH_ZYNQ || COMPILE_TEST
Sudip Mukherjee1c8cb402016-08-03 13:45:46 -070032 depends on HAS_DMA
Moritz Fischer37784702015-10-16 15:42:30 -070033 help
34 FPGA manager driver support for Xilinx Zynq FPGAs.
35
Alan Tull21aeda92016-11-01 14:14:28 -050036config FPGA_BRIDGE
37 tristate "FPGA Bridge Framework"
38 depends on OF
39 help
40 Say Y here if you want to support bridges connected between host
41 processors and FPGAs or between FPGAs.
42
Alan Tulle5f8efa2016-11-01 14:14:30 -050043config SOCFPGA_FPGA_BRIDGE
44 tristate "Altera SoCFPGA FPGA Bridges"
45 depends on ARCH_SOCFPGA && FPGA_BRIDGE
46 help
47 Say Y to enable drivers for FPGA bridges for Altera SOCFPGA
48 devices.
49
Alan Tullfab62662015-10-07 16:36:29 +010050endif # FPGA
51
Alan Tull6a8c3be2015-10-07 16:36:28 +010052endmenu