brintos

brintos / linux-shallow public Read only

0
0
Text · 2.3 KiB · aeb89bb Raw
63 lines · plain
1# SPDX-License-Identifier: GPL-2.02#3# Makefile for the fpga framework and fpga manager drivers.4#5 6# Core FPGA Manager Framework7obj-$(CONFIG_FPGA)			+= fpga-mgr.o8 9# FPGA Manager Drivers10obj-$(CONFIG_FPGA_MGR_ALTERA_CVP)	+= altera-cvp.o11obj-$(CONFIG_FPGA_MGR_ALTERA_PS_SPI)	+= altera-ps-spi.o12obj-$(CONFIG_FPGA_MGR_ICE40_SPI)	+= ice40-spi.o13obj-$(CONFIG_FPGA_MGR_MACHXO2_SPI)	+= machxo2-spi.o14obj-$(CONFIG_FPGA_MGR_SOCFPGA)		+= socfpga.o15obj-$(CONFIG_FPGA_MGR_SOCFPGA_A10)	+= socfpga-a10.o16obj-$(CONFIG_FPGA_MGR_STRATIX10_SOC)	+= stratix10-soc.o17obj-$(CONFIG_FPGA_MGR_TS73XX)		+= ts73xx-fpga.o18obj-$(CONFIG_FPGA_MGR_XILINX_CORE)	+= xilinx-core.o19obj-$(CONFIG_FPGA_MGR_XILINX_SELECTMAP)	+= xilinx-selectmap.o20obj-$(CONFIG_FPGA_MGR_XILINX_SPI)	+= xilinx-spi.o21obj-$(CONFIG_FPGA_MGR_ZYNQ_FPGA)	+= zynq-fpga.o22obj-$(CONFIG_FPGA_MGR_ZYNQMP_FPGA)	+= zynqmp-fpga.o23obj-$(CONFIG_FPGA_MGR_VERSAL_FPGA)	+= versal-fpga.o24obj-$(CONFIG_FPGA_MGR_MICROCHIP_SPI)	+= microchip-spi.o25obj-$(CONFIG_FPGA_MGR_LATTICE_SYSCONFIG)	+= lattice-sysconfig.o26obj-$(CONFIG_FPGA_MGR_LATTICE_SYSCONFIG_SPI)	+= lattice-sysconfig-spi.o27obj-$(CONFIG_ALTERA_PR_IP_CORE)		+= altera-pr-ip-core.o28obj-$(CONFIG_ALTERA_PR_IP_CORE_PLAT)	+= altera-pr-ip-core-plat.o29 30# FPGA Secure Update Drivers31obj-$(CONFIG_FPGA_M10_BMC_SEC_UPDATE)	+= intel-m10-bmc-sec-update.o32 33# FPGA Bridge Drivers34obj-$(CONFIG_FPGA_BRIDGE)		+= fpga-bridge.o35obj-$(CONFIG_SOCFPGA_FPGA_BRIDGE)	+= altera-hps2fpga.o altera-fpga2sdram.o36obj-$(CONFIG_ALTERA_FREEZE_BRIDGE)	+= altera-freeze-bridge.o37obj-$(CONFIG_XILINX_PR_DECOUPLER)	+= xilinx-pr-decoupler.o38 39# High Level Interfaces40obj-$(CONFIG_FPGA_REGION)		+= fpga-region.o41obj-$(CONFIG_OF_FPGA_REGION)		+= of-fpga-region.o42 43# FPGA Device Feature List Support44obj-$(CONFIG_FPGA_DFL)			+= dfl.o45obj-$(CONFIG_FPGA_DFL_FME)		+= dfl-fme.o46obj-$(CONFIG_FPGA_DFL_FME_MGR)		+= dfl-fme-mgr.o47obj-$(CONFIG_FPGA_DFL_FME_BRIDGE)	+= dfl-fme-br.o48obj-$(CONFIG_FPGA_DFL_FME_REGION)	+= dfl-fme-region.o49obj-$(CONFIG_FPGA_DFL_AFU)		+= dfl-afu.o50 51dfl-fme-objs := dfl-fme-main.o dfl-fme-pr.o dfl-fme-error.o52dfl-fme-objs += dfl-fme-perf.o53dfl-afu-objs := dfl-afu-main.o dfl-afu-region.o dfl-afu-dma-region.o54dfl-afu-objs += dfl-afu-error.o55 56obj-$(CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000)	+= dfl-n3000-nios.o57 58# Drivers for FPGAs which implement DFL59obj-$(CONFIG_FPGA_DFL_PCI)		+= dfl-pci.o60 61# KUnit tests62obj-$(CONFIG_FPGA_KUNIT_TESTS)		+= tests/63