mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	This patch adds support for programming of the StratixV FPGAs. Programming is done in this case (board theadorable) via SPI. The board may provide board specific code for bitstream programming. This StratixV support will be used by the theadorable board. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Tom Rini <trini@konsulko.com> Signed-off-by: Stefan Roese <sr@denx.de>
		
			
				
	
	
		
			23 lines
		
	
	
		
			642 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			642 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_STRATIX_V) += stratixv.o
 | |
| obj-$(CONFIG_FPGA_SOCFPGA) += socfpga.o
 | |
| endif
 |