mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 10:21:25 +01:00 
			
		
		
		
	SPL is using ps7_init.c/h files which are generated from design tools which have to be copied to boards/xilinx/zynq folder before compilation. BSS section is moved to SDRAM because fat support requires more space than SRAM size. Added: - MMC and QSPI support - Boot OS directly from SPL - Enable SPL command Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Tom Rini <trini@ti.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (C) Copyright 2014 Xilinx, Inc. Michal Simek
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:    GPL-2.0+
 | 
						|
 */
 | 
						|
#include <common.h>
 | 
						|
#include <asm/arch/spl.h>
 | 
						|
 | 
						|
__weak void ps7_init(void)
 | 
						|
{
 | 
						|
	puts("Please copy ps7_init.c/h from hw project\n");
 | 
						|
}
 |