blob: dee470f9113f5384bccaa313a882be4cb74a755a [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
Joel Holdsworth21f8ba22017-02-27 16:14:26 -060023config FPGA_MGR_ICE40_SPI
24 tristate "Lattice iCE40 SPI"
25 depends on OF && SPI
26 help
27 FPGA manager driver support for Lattice iCE40 FPGAs over SPI.
28
Alan Tullfab62662015-10-07 16:36:29 +010029config FPGA_MGR_SOCFPGA
30 tristate "Altera SOCFPGA FPGA Manager"
Jason Gunthorpea0e1b612016-11-21 22:26:42 +000031 depends on ARCH_SOCFPGA || COMPILE_TEST
Alan Tullfab62662015-10-07 16:36:29 +010032 help
33 FPGA manager driver support for Altera SOCFPGA.
34
Alan Tullacbb910a2016-11-01 14:14:32 -050035config FPGA_MGR_SOCFPGA_A10
36 tristate "Altera SoCFPGA Arria10"
Jason Gunthorpea0e1b612016-11-21 22:26:42 +000037 depends on ARCH_SOCFPGA || COMPILE_TEST
38 select REGMAP_MMIO
Alan Tullacbb910a2016-11-01 14:14:32 -050039 help
40 FPGA manager driver support for Altera Arria10 SoCFPGA.
41
Florian Fainelli4348f7e2017-02-27 16:14:22 -060042config FPGA_MGR_TS73XX
43 tristate "Technologic Systems TS-73xx SBC FPGA Manager"
44 depends on ARCH_EP93XX && MACH_TS72XX
45 help
46 FPGA manager driver support for the Altera Cyclone II FPGA
47 present on the TS-73xx SBC boards.
48
Moritz Fischer37784702015-10-16 15:42:30 -070049config FPGA_MGR_ZYNQ_FPGA
50 tristate "Xilinx Zynq FPGA"
Jean Delvare54e9b092016-09-08 09:38:05 -050051 depends on ARCH_ZYNQ || COMPILE_TEST
Sudip Mukherjee1c8cb402016-08-03 13:45:46 -070052 depends on HAS_DMA
Moritz Fischer37784702015-10-16 15:42:30 -070053 help
54 FPGA manager driver support for Xilinx Zynq FPGAs.
55
Alan Tull21aeda92016-11-01 14:14:28 -050056config FPGA_BRIDGE
57 tristate "FPGA Bridge Framework"
58 depends on OF
59 help
60 Say Y here if you want to support bridges connected between host
61 processors and FPGAs or between FPGAs.
62
Alan Tulle5f8efa2016-11-01 14:14:30 -050063config SOCFPGA_FPGA_BRIDGE
64 tristate "Altera SoCFPGA FPGA Bridges"
65 depends on ARCH_SOCFPGA && FPGA_BRIDGE
66 help
67 Say Y to enable drivers for FPGA bridges for Altera SOCFPGA
68 devices.
69
Alan Tullca24a642016-11-01 14:14:31 -050070config ALTERA_FREEZE_BRIDGE
71 tristate "Altera FPGA Freeze Bridge"
72 depends on ARCH_SOCFPGA && FPGA_BRIDGE
73 help
74 Say Y to enable drivers for Altera FPGA Freeze bridges. A
75 freeze bridge is a bridge that exists in the FPGA fabric to
76 isolate one region of the FPGA from the busses while that
77 region is being reprogrammed.
78
Alan Tullfab62662015-10-07 16:36:29 +010079endif # FPGA
80
Alan Tull6a8c3be2015-10-07 16:36:28 +010081endmenu