diff options
Diffstat (limited to 'nand_spl/nand_boot_fsl_elbc.c')
| -rw-r--r-- | nand_spl/nand_boot_fsl_elbc.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/nand_spl/nand_boot_fsl_elbc.c b/nand_spl/nand_boot_fsl_elbc.c index 4a961ea7b..0d0c44e1e 100644 --- a/nand_spl/nand_boot_fsl_elbc.c +++ b/nand_spl/nand_boot_fsl_elbc.c @@ -143,6 +143,11 @@ void nand_boot(void)  	 * Jump to U-Boot image  	 */  	puts("transfering control\n"); +	/* +	 * Clean d-cache and invalidate i-cache, to +	 * make sure that no stale data is executed. +	 */ +	flush_cache(CONFIG_SYS_NAND_U_BOOT_DST, CONFIG_SYS_NAND_U_BOOT_SIZE);  	uboot = (void *)CONFIG_SYS_NAND_U_BOOT_START;  	uboot();  } |