[PATCH] arm: mvebu: Hang if ddr3_init() fails

Stefan Roese sr at denx.de
Wed Aug 11 08:37:32 CEST 2021


On 09.08.21 17:44, Pali Rohár wrote:
> If ddr3_init() fails then DDR was not initialized and we cannot load and
> execute U-Boot. We cannot continue, we cannot do anything in this case, so
> hang.
> 
> Signed-off-by: Pali Rohár <pali at kernel.org>

Reviewed-by: Stefan Roese <sr at denx.de>

Thanks,
Stefan

> ---
>   arch/arm/mach-mvebu/spl.c | 6 +++++-
>   1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-mvebu/spl.c b/arch/arm/mach-mvebu/spl.c
> index 3b6bc3897090..f0cf60bb1488 100644
> --- a/arch/arm/mach-mvebu/spl.c
> +++ b/arch/arm/mach-mvebu/spl.c
> @@ -345,7 +345,11 @@ void board_init_f(ulong dummy)
>   	serdes_phy_config();
>   
>   	/* Setup DDR */
> -	ddr3_init();
> +	ret = ddr3_init();
> +	if (ret) {
> +		debug("ddr3_init() failed: %d\n", ret);
> +		hang();
> +	}
>   #endif
>   
>   	/* Initialize Auto Voltage Scaling */
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr at denx.de


More information about the U-Boot mailing list