mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
230fe9b202
Add code necessary to program the FPGA part of SoCFPGA from U-Boot with an RBF blob. This patch also integrates the code into the FPGA driver framework in U-Boot so it can be used via the 'fpga' command. Signed-off-by: Pavel Machek <pavel@denx.de> Signed-off-by: Marek Vasut <marex@denx.de> Cc: Chin Liang See <clsee@altera.com> Cc: Dinh Nguyen <dinguyen@altera.com> Cc: Albert Aribaud <albert.u.boot@aribaud.net> Cc: Tom Rini <trini@ti.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Pavel Machek <pavel@denx.de> V2: Move the not-CPU specific stuff into drivers/fpga/ and base this on the cleaned up altera FPGA support.
21 lines
599 B
Makefile
21 lines
599 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_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_SOCFPGA) += socfpga.o
|
|
endif
|