Re: [PATCH] console: Use flush() before panic and reset

2023-03-22 Thread Tom Rini
On Tue, Mar 14, 2023 at 05:24:26PM -0700, Tony Dinh wrote: > To make sure the panic and the reset messages will go out, console flush() > should be used. > Sleep periods do not work in early u-boot phase when timer driver is not > initialized yet. > > Reference:

Re: [PATCH] console: Use flush() before panic and reset

2023-03-16 Thread Stefan Roese
On 3/15/23 20:43, Simon Glass wrote: On Tue, 14 Mar 2023 at 18:24, Tony Dinh wrote: To make sure the panic and the reset messages will go out, console flush() should be used. Sleep periods do not work in early u-boot phase when timer driver is not initialized yet. Reference:

Re: [PATCH] console: Use flush() before panic and reset

2023-03-16 Thread Stefan Roese
On 3/15/23 21:29, Tony Dinh wrote: Hi Simon, On Wed, Mar 15, 2023 at 12:43 PM Simon Glass wrote: On Tue, 14 Mar 2023 at 18:24, Tony Dinh wrote: To make sure the panic and the reset messages will go out, console flush() should be used. Sleep periods do not work in early u-boot phase when

Re: [PATCH] console: Use flush() before panic and reset

2023-03-15 Thread Tony Dinh
Hi Simon, On Wed, Mar 15, 2023 at 12:43 PM Simon Glass wrote: > > On Tue, 14 Mar 2023 at 18:24, Tony Dinh wrote: > > > > To make sure the panic and the reset messages will go out, console flush() > > should be used. > > Sleep periods do not work in early u-boot phase when timer driver is not

Re: [PATCH] console: Use flush() before panic and reset

2023-03-15 Thread Simon Glass
On Tue, 14 Mar 2023 at 18:24, Tony Dinh wrote: > > To make sure the panic and the reset messages will go out, console flush() > should be used. > Sleep periods do not work in early u-boot phase when timer driver is not > initialized yet. > > Reference:

[PATCH] console: Use flush() before panic and reset

2023-03-14 Thread Tony Dinh
To make sure the panic and the reset messages will go out, console flush() should be used. Sleep periods do not work in early u-boot phase when timer driver is not initialized yet. Reference: https://lists.denx.de/pipermail/u-boot/2023-March/512233.html Signed-off-by: Tony Dinh ---