RE: [PATCH 06/16] arm: stm32mp: spl: display error in board_init_f

2020-04-24 Thread Patrick DELAUNAY
Dear Wolfgang, > From: Wolfgang Denk > Sent: jeudi 23 avril 2020 22:40 > > Dear Patrick, > > In message <8970fb86c1374d1999ff656c2a327...@sfhdag6node3.st.com> > you wrote: > > [...] > > > > /* enable console uart printing */ > > > > preloader_console_init(); > > > > > > > > +

Re: [PATCH 06/16] arm: stm32mp: spl: display error in board_init_f

2020-04-23 Thread Wolfgang Denk
Dear Patrick, In message <8970fb86c1374d1999ff656c2a327...@sfhdag6node3.st.com> you wrote: > > > > - ret = uclass_get_device(UCLASS_CLK, 0, &dev); > > > - if (ret) { > > > - debug("Clock init failed: %d\n", ret); > > > - return; > > > - } > > > + clk = uclass_get_device(UCLASS_CLK

RE: [PATCH 06/16] arm: stm32mp: spl: display error in board_init_f

2020-04-21 Thread Patrick DELAUNAY
Dear Wolfgang, > From: Wolfgang Denk > Sent: mercredi 1 avril 2020 13:30 > > Dear Patrick Delaunay, > > In message > <20200331180330.6.I41a641a07fd12da45b392920fc3407e608926396@changeid> > you wrote: > > Update board_init_f and try to display error message when console is > > available. > > > >

Re: [PATCH 06/16] arm: stm32mp: spl: display error in board_init_f

2020-04-01 Thread Wolfgang Denk
Dear Patrick Delaunay, In message <20200331180330.6.I41a641a07fd12da45b392920fc3407e608926396@changeid> you wrote: > Update board_init_f and try to display error message > when console is available. > > This patch adds trace to debug a spl boot issue when DEBUG > and DEBUG_UART is not activated,

Re: [PATCH 06/16] arm: stm32mp: spl: display error in board_init_f

2020-04-01 Thread Patrice CHOTARD
Hi Patrick On 3/31/20 6:04 PM, Patrick Delaunay wrote: > Update board_init_f and try to display error message > when console is available. > > This patch adds trace to debug a spl boot issue when DEBUG > and DEBUG_UART is not activated, after uart probe. > > Signed-off-by: Patrick Delaunay > ---

[PATCH 06/16] arm: stm32mp: spl: display error in board_init_f

2020-03-31 Thread Patrick Delaunay
Update board_init_f and try to display error message when console is available. This patch adds trace to debug a spl boot issue when DEBUG and DEBUG_UART is not activated, after uart probe. Signed-off-by: Patrick Delaunay --- arch/arm/mach-stm32mp/spl.c | 33 -