mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 02:11:25 +01:00 
			
		
		
		
	The goal of this patch is to clean up the code related to choosing SPL MMC boot mode. The spl_boot_mode() now is called only in spl_mmc_load_image() function, which is only compiled in if CONFIG_SPL_MMC_SUPPORT is enabled. To achieve the goal, all per mach/arch implementations eligible for unification has been replaced with one __weak implementation. Signed-off-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Marek Vasut <marex@denx.de> Reviewed-by: Stefano Babic <sbabic@denx.de> Acked-by: Michal Simek <michal.simek@xilinx.com> (For ZynqMP) Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
		
			
				
	
	
		
			95 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (C) Copyright 2014 - 2017 Xilinx, Inc. Michal Simek
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
#include <common.h>
 | 
						|
#include <debug_uart.h>
 | 
						|
#include <spl.h>
 | 
						|
 | 
						|
#include <asm/io.h>
 | 
						|
#include <asm/spl.h>
 | 
						|
#include <asm/arch/hardware.h>
 | 
						|
#include <asm/arch/sys_proto.h>
 | 
						|
#include <asm/arch/ps7_init_gpl.h>
 | 
						|
 | 
						|
DECLARE_GLOBAL_DATA_PTR;
 | 
						|
 | 
						|
void board_init_f(ulong dummy)
 | 
						|
{
 | 
						|
	ps7_init();
 | 
						|
 | 
						|
	arch_cpu_init();
 | 
						|
	/*
 | 
						|
	 * The debug UART can be used from this point:
 | 
						|
	 * debug_uart_init();
 | 
						|
	 * printch('x');
 | 
						|
	 */
 | 
						|
}
 | 
						|
 | 
						|
#ifdef CONFIG_SPL_BOARD_INIT
 | 
						|
void spl_board_init(void)
 | 
						|
{
 | 
						|
	preloader_console_init();
 | 
						|
	board_init();
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
u32 spl_boot_device(void)
 | 
						|
{
 | 
						|
	u32 mode;
 | 
						|
 | 
						|
	switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) {
 | 
						|
#ifdef CONFIG_SPL_SPI_SUPPORT
 | 
						|
	case ZYNQ_BM_QSPI:
 | 
						|
		puts("qspi boot\n");
 | 
						|
		mode = BOOT_DEVICE_SPI;
 | 
						|
		break;
 | 
						|
#endif
 | 
						|
	case ZYNQ_BM_NAND:
 | 
						|
		mode = BOOT_DEVICE_NAND;
 | 
						|
		break;
 | 
						|
	case ZYNQ_BM_NOR:
 | 
						|
		mode = BOOT_DEVICE_NOR;
 | 
						|
		break;
 | 
						|
#ifdef CONFIG_SPL_MMC_SUPPORT
 | 
						|
	case ZYNQ_BM_SD:
 | 
						|
		puts("mmc boot\n");
 | 
						|
		mode = BOOT_DEVICE_MMC1;
 | 
						|
		break;
 | 
						|
#endif
 | 
						|
	case ZYNQ_BM_JTAG:
 | 
						|
		mode = BOOT_DEVICE_RAM;
 | 
						|
		break;
 | 
						|
	default:
 | 
						|
		puts("Unsupported boot mode selected\n");
 | 
						|
		hang();
 | 
						|
	}
 | 
						|
 | 
						|
	return mode;
 | 
						|
}
 | 
						|
 | 
						|
#ifdef CONFIG_SPL_OS_BOOT
 | 
						|
int spl_start_uboot(void)
 | 
						|
{
 | 
						|
	/* boot linux */
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
void spl_board_prepare_for_boot(void)
 | 
						|
{
 | 
						|
	ps7_post_config();
 | 
						|
	debug("SPL bye\n");
 | 
						|
}
 | 
						|
 | 
						|
#ifdef CONFIG_SPL_LOAD_FIT
 | 
						|
int board_fit_config_name_match(const char *name)
 | 
						|
{
 | 
						|
	/* Just empty function now - can't decide what to choose */
 | 
						|
	debug("%s: %s\n", __func__, name);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
#endif
 |