All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] watchdog petting during autoboot delay
@ 2010-05-26 10:34 Nicolas Ferre
  2010-05-26 18:13 ` Mike Frysinger
  0 siblings, 1 reply; 7+ messages in thread
From: Nicolas Ferre @ 2010-05-26 10:34 UTC (permalink / raw)
  To: u-boot

Watchdog resets were experienced during autoboot delay. Petting the watchdog
during abortboot() function solve the issue.

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 common/main.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/common/main.c b/common/main.c
index f7e7c1c..ea040aa 100644
--- a/common/main.c
+++ b/common/main.c
@@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay)
 	 * when catch up.
 	 */
 	do {
+		WATCHDOG_RESET();	/* Trigger watchdog, if needed */
 		if (tstc()) {
 			if (presskey_len < presskey_max) {
 				presskey [presskey_len ++] = getc();
@@ -251,6 +252,7 @@ static __inline__ int abortboot(int bootdelay)
 # endif
 				break;
 			}
+			WATCHDOG_RESET();	/* Trigger watchdog, if needed */
 			udelay(10000);
 		}
 
-- 
1.5.6.5

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH] watchdog petting during autoboot delay
  2010-05-26 10:34 [U-Boot] [PATCH] watchdog petting during autoboot delay Nicolas Ferre
@ 2010-05-26 18:13 ` Mike Frysinger
  2010-06-03 17:27   ` Nicolas Ferre
  2010-06-03 17:39   ` Nicolas Ferre
  0 siblings, 2 replies; 7+ messages in thread
From: Mike Frysinger @ 2010-05-26 18:13 UTC (permalink / raw)
  To: u-boot

On Wednesday 26 May 2010 06:34:49 Nicolas Ferre wrote:
> --- a/common/main.c
> +++ b/common/main.c
> @@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay)
>  	 * when catch up.
>  	 */
>  	do {
> +		WATCHDOG_RESET();	/* Trigger watchdog, if needed */
>  		if (tstc()) {
>  			if (presskey_len < presskey_max) {
>  				presskey [presskey_len ++] = getc();
> @@ -251,6 +252,7 @@ static __inline__ int abortboot(int bootdelay)
>  # endif
>  				break;
>  			}
> +			WATCHDOG_RESET();	/* Trigger watchdog, if needed */
>  			udelay(10000);
>  		}

if your udelay() implementation isnt calling WATCHDOG_RESET(), it is broken.  
yes, this is undocumented, but search the mailing archives for examples.

i believe the same goes for serial devices and their tstc() function.
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20100526/b8888d0f/attachment.pgp 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH] watchdog petting during autoboot delay
  2010-05-26 18:13 ` Mike Frysinger
@ 2010-06-03 17:27   ` Nicolas Ferre
  2010-06-03 17:39   ` Nicolas Ferre
  1 sibling, 0 replies; 7+ messages in thread
From: Nicolas Ferre @ 2010-06-03 17:27 UTC (permalink / raw)
  To: u-boot

Le 26/05/2010 20:13, Mike Frysinger :
> On Wednesday 26 May 2010 06:34:49 Nicolas Ferre wrote:
>> --- a/common/main.c
>> +++ b/common/main.c
>> @@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay)
>>  	 * when catch up.
>>  	 */
>>  	do {
>> +		WATCHDOG_RESET();	/* Trigger watchdog, if needed */
>>  		if (tstc()) {
>>  			if (presskey_len < presskey_max) {
>>  				presskey [presskey_len ++] = getc();
>> @@ -251,6 +252,7 @@ static __inline__ int abortboot(int bootdelay)
>>  # endif
>>  				break;
>>  			}
>> +			WATCHDOG_RESET();	/* Trigger watchdog, if needed */
>>  			udelay(10000);
>>  		}
> 
> if your udelay() implementation isnt calling WATCHDOG_RESET(), it is broken.  
> yes, this is undocumented, but search the mailing archives for examples.

Yes, for sure, udelay() is calling WATCHDOG_RESET().


> i believe the same goes for serial devices and their tstc() function.

True, this is where the problem resides. I will try to modify the
atmel_serial tstc() function.

Best regards,
-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH] watchdog petting during autoboot delay
  2010-05-26 18:13 ` Mike Frysinger
  2010-06-03 17:27   ` Nicolas Ferre
@ 2010-06-03 17:39   ` Nicolas Ferre
  2010-06-03 18:24     ` Mike Frysinger
  1 sibling, 1 reply; 7+ messages in thread
From: Nicolas Ferre @ 2010-06-03 17:39 UTC (permalink / raw)
  To: u-boot

Le 26/05/2010 20:13, Mike Frysinger :
> On Wednesday 26 May 2010 06:34:49 Nicolas Ferre wrote:
>> --- a/common/main.c
>> +++ b/common/main.c
>> @@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay)
>>  	 * when catch up.
>>  	 */
>>  	do {
>> +		WATCHDOG_RESET();	/* Trigger watchdog, if needed */
>>  		if (tstc()) {
>>  			if (presskey_len < presskey_max) {
>>  				presskey [presskey_len ++] = getc();
>> @@ -251,6 +252,7 @@ static __inline__ int abortboot(int bootdelay)
>>  # endif
>>  				break;
>>  			}
>> +			WATCHDOG_RESET();	/* Trigger watchdog, if needed */
>>  			udelay(10000);
>>  		}
> 
> if your udelay() implementation isnt calling WATCHDOG_RESET(), it is broken.  
> yes, this is undocumented, but search the mailing archives for examples.
> 
> i believe the same goes for serial devices and their tstc() function.

Well, after more checking, it seems that resetting the watchdog in tstc
function is not so common: only serial_pl01x.c is doing it. So I guess
that my first addition may be needed for other chips...

Best regards,
-- 
Nicolas Ferre

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH] watchdog petting during autoboot delay
  2010-06-03 17:39   ` Nicolas Ferre
@ 2010-06-03 18:24     ` Mike Frysinger
  2010-06-10 14:57       ` [U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc() Nicolas Ferre
  0 siblings, 1 reply; 7+ messages in thread
From: Mike Frysinger @ 2010-06-03 18:24 UTC (permalink / raw)
  To: u-boot

On Thu, Jun 3, 2010 at 1:39 PM, Nicolas Ferre wrote:
> Le 26/05/2010 20:13, Mike Frysinger :
>> On Wednesday 26 May 2010 06:34:49 Nicolas Ferre wrote:
>>> --- a/common/main.c
>>> +++ b/common/main.c
>>> @@ -159,6 +159,7 @@ static __inline__ int abortboot(int bootdelay)
>>> ? ? ? * when catch up.
>>> ? ? ? */
>>> ? ? ?do {
>>> + ? ? ? ? ? ?WATCHDOG_RESET(); ? ? ? /* Trigger watchdog, if needed */
>>> ? ? ? ? ? ? ?if (tstc()) {
>>> ? ? ? ? ? ? ? ? ? ? ?if (presskey_len < presskey_max) {
>>> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?presskey [presskey_len ++] = getc();
>>> @@ -251,6 +252,7 @@ static __inline__ int abortboot(int bootdelay)
>>> ?# endif
>>> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?break;
>>> ? ? ? ? ? ? ? ? ? ? ?}
>>> + ? ? ? ? ? ? ? ? ? ?WATCHDOG_RESET(); ? ? ? /* Trigger watchdog, if needed */
>>> ? ? ? ? ? ? ? ? ? ? ?udelay(10000);
>>> ? ? ? ? ? ? ?}
>>
>> if your udelay() implementation isnt calling WATCHDOG_RESET(), it is broken.
>> yes, this is undocumented, but search the mailing archives for examples.
>>
>> i believe the same goes for serial devices and their tstc() function.
>
> Well, after more checking, it seems that resetting the watchdog in tstc
> function is not so common: only serial_pl01x.c is doing it. So I guess
> that my first addition may be needed for other chips...

i think you're looking at the multi-serial drivers and not the
cpu-serial drivers ?  i.e. cpu/*/serial.c and such vs drivers/serial/*
?

the former category tends to be more trend setting than the latter.
-mike

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc()
  2010-06-03 18:24     ` Mike Frysinger
@ 2010-06-10 14:57       ` Nicolas Ferre
  2010-06-13  2:27         ` Mike Frysinger
  0 siblings, 1 reply; 7+ messages in thread
From: Nicolas Ferre @ 2010-06-10 14:57 UTC (permalink / raw)
  To: u-boot

Watchdog resets were experienced during autoboot delay. Petting the watchdog
during putc() and tstc() functions solve the issue.

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
---
 drivers/serial/atmel_usart.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/serial/atmel_usart.c b/drivers/serial/atmel_usart.c
index cad3412..fcaee5d 100644
--- a/drivers/serial/atmel_usart.c
+++ b/drivers/serial/atmel_usart.c
@@ -80,7 +80,8 @@ void serial_putc(char c)
 	if (c == '\n')
 		serial_putc('\r');
 
-	while (!(usart3_readl(CSR) & USART3_BIT(TXRDY))) ;
+	while (!(usart3_readl(CSR) & USART3_BIT(TXRDY)))
+		 WATCHDOG_RESET();
 	usart3_writel(THR, c);
 }
 
@@ -99,5 +100,6 @@ int serial_getc(void)
 
 int serial_tstc(void)
 {
+	WATCHDOG_RESET();
 	return (usart3_readl(CSR) & USART3_BIT(RXRDY)) != 0;
 }
-- 
1.5.6.5

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc()
  2010-06-10 14:57       ` [U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc() Nicolas Ferre
@ 2010-06-13  2:27         ` Mike Frysinger
  0 siblings, 0 replies; 7+ messages in thread
From: Mike Frysinger @ 2010-06-13  2:27 UTC (permalink / raw)
  To: u-boot

On Thu, Jun 10, 2010 at 10:57 AM, Nicolas Ferre wrote:
> --- a/drivers/serial/atmel_usart.c
> +++ b/drivers/serial/atmel_usart.c
> @@ -80,7 +80,8 @@ void serial_putc(char c)
> ? ? ? ?if (c == '\n')
> ? ? ? ? ? ? ? ?serial_putc('\r');
>
> - ? ? ? while (!(usart3_readl(CSR) & USART3_BIT(TXRDY))) ;
> + ? ? ? while (!(usart3_readl(CSR) & USART3_BIT(TXRDY)))
> + ? ? ? ? ? ? ? ?WATCHDOG_RESET();
> ? ? ? ?usart3_writel(THR, c);
> ?}

i think you'd want to call it before the while() loop, but not in it ...
-mike

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-06-13  2:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-26 10:34 [U-Boot] [PATCH] watchdog petting during autoboot delay Nicolas Ferre
2010-05-26 18:13 ` Mike Frysinger
2010-06-03 17:27   ` Nicolas Ferre
2010-06-03 17:39   ` Nicolas Ferre
2010-06-03 18:24     ` Mike Frysinger
2010-06-10 14:57       ` [U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc() Nicolas Ferre
2010-06-13  2:27         ` Mike Frysinger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.