diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-04-22 14:29:10 +0200 |
---|---|---|
committer | Patrick Delaunay <patrick.delaunay@st.com> | 2020-05-14 09:02:12 +0200 |
commit | eaec1f9e90241e9fde5540f6da28063df730102f (patch) | |
tree | a2e2fb77bbf801f149577d6180c6a39cbb375d1b /arch/arm/mach-stm32mp | |
parent | 586117ce804ee38d0ad8643f9be440c15636ea82 (diff) | |
download | u-boot-eaec1f9e90241e9fde5540f6da28063df730102f.zip u-boot-eaec1f9e90241e9fde5540f6da28063df730102f.tar.gz u-boot-eaec1f9e90241e9fde5540f6da28063df730102f.tar.bz2 |
arm: stm32mp: spl: update error management in board_init_f
Call hang when an error is detected for probe of any driver
needed for console or DDR init: clk, reset and pincontrol
NB: previous behavior with a return in board_init_f() was not correct;
DDR is not initialized and SPL execution can't continue
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'arch/arm/mach-stm32mp')
-rw-r--r-- | arch/arm/mach-stm32mp/spl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-stm32mp/spl.c b/arch/arm/mach-stm32mp/spl.c index 760fe45..6368db4 100644 --- a/arch/arm/mach-stm32mp/spl.c +++ b/arch/arm/mach-stm32mp/spl.c @@ -99,19 +99,19 @@ void board_init_f(ulong dummy) ret = uclass_get_device(UCLASS_CLK, 0, &dev); if (ret) { debug("Clock init failed: %d\n", ret); - return; + hang(); } ret = uclass_get_device(UCLASS_RESET, 0, &dev); if (ret) { debug("Reset init failed: %d\n", ret); - return; + hang(); } ret = uclass_get_device(UCLASS_PINCTRL, 0, &dev); if (ret) { debug("%s: Cannot find pinctrl device\n", __func__); - return; + hang(); } /* enable console uart printing */ |