mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
6867e19a43
Move FPGA driver which is Gen5 specific code into Gen5 driver file and keeping common FPGA driver intact. All the changes are still keeping in driver/fpga/ and no functional change. Subsequent patch would move FPGA manager driver from arch/arm into driver/fpga/. Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com> Reviewed-by: Ley Foon Tan <ley.foon.tan@intel.com> Reviewed-by: Dinh Nguyen <dinguyen@kernel.org>
24 lines
736 B
Makefile
24 lines
736 B
Makefile
#
|
|
# (C) Copyright 2008
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += fpga.o
|
|
obj-$(CONFIG_FPGA_SPARTAN2) += spartan2.o
|
|
obj-$(CONFIG_FPGA_SPARTAN3) += spartan3.o
|
|
obj-$(CONFIG_FPGA_VIRTEX2) += virtex2.o
|
|
obj-$(CONFIG_FPGA_ZYNQPL) += zynqpl.o
|
|
obj-$(CONFIG_FPGA_ZYNQMPPL) += zynqmppl.o
|
|
obj-$(CONFIG_FPGA_XILINX) += xilinx.o
|
|
obj-$(CONFIG_FPGA_LATTICE) += ivm_core.o lattice.o
|
|
ifdef CONFIG_FPGA_ALTERA
|
|
obj-y += altera.o
|
|
obj-$(CONFIG_FPGA_ACEX1K) += ACEX1K.o
|
|
obj-$(CONFIG_FPGA_CYCLON2) += cyclon2.o
|
|
obj-$(CONFIG_FPGA_STRATIX_II) += stratixII.o
|
|
obj-$(CONFIG_FPGA_STRATIX_V) += stratixv.o
|
|
obj-$(CONFIG_FPGA_SOCFPGA) += socfpga.o
|
|
obj-$(CONFIG_TARGET_SOCFPGA_GEN5) += socfpga_gen5.o
|
|
endif
|