[U-Boot] [PATCH AT91] Add watchdog reset to the at91samx SOC family

This patch add the watchdog reset function to the atmel atsam9x architectures.
Signed-off-by: Michael Trimarchi michael@amarulasolutions.com Cc: Reinhard Meyer u-boot@emk-elektronik.de
--- diff --git a/arch/arm/cpu/arm926ejs/at91/timer.c b/arch/arm/cpu/arm926ejs/at91/timer.c index 82b8d7e..2e4ff02 100644 --- a/arch/arm/cpu/arm926ejs/at91/timer.c +++ b/arch/arm/cpu/arm926ejs/at91/timer.c @@ -26,6 +26,7 @@ #include <asm/arch/hardware.h> #include <asm/arch/at91_pit.h> #include <asm/arch/at91_pmc.h> +#include <asm/arch/at91_wdt.h> #include <asm/arch/clk.h> #include <asm/arch/io.h> #include <div64.h> @@ -139,3 +140,18 @@ ulong get_tbclk(void) { return gd->timer_rate_hz; } + +#if defined(CONFIG_WATCHDOG) + +void watchdog_reset(void) +{ + at91_wdt_t *wdt = (at91_wdt_t *) AT91_WDT_BASE; + int re_enable = disable_interrupts(); + + writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, &wdt->cr); + + if (re_enable) + enable_interrupts(); +} + +#endif

Dear Michael Trimarchi,
This patch add the watchdog reset function to the atmel atsam9x architectures.
NAK.
Watchdog already exists at drivers/watchdog/at91sam9_wdt.c :)
Maybe its a bit of an obscure location... But it is already invented ;)
- int re_enable = disable_interrupts();
- writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, &wdt->cr);
- if (re_enable)
enable_interrupts();
Besides... why would we need to disable IRQs here, writel() is using one instruction to write to the address?
Best Regards,
Reinhard

HI
On 03/15/2011 01:01 PM, Reinhard Meyer wrote:
Dear Michael Trimarchi,
This patch add the watchdog reset function to the atmel atsam9x architectures.
NAK.
Watchdog already exists at drivers/watchdog/at91sam9_wdt.c :)
Maybe its a bit of an obscure location... But it is already invented ;)
- int re_enable = disable_interrupts();
- writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, &wdt->cr);
- if (re_enable)
enable_interrupts();
Yes was obscured, and it is the only one :) there
Michael
Besides... why would we need to disable IRQs here, writel() is using one instruction to write to the address?
Best Regards,
Reinhard

Hi
On 03/15/2011 01:01 PM, Reinhard Meyer wrote:
Dear Michael Trimarchi,
This patch add the watchdog reset function to the atmel atsam9x architectures.
NAK.
Watchdog already exists at drivers/watchdog/at91sam9_wdt.c :)
I'm getting confused because I have seen other implementation of the watchdog reset function and I was thinking that was the correct location of the function. Some board initialize it in the sturtup.
Maybe its a bit of an obscure location... But it is already invented ;)
- int re_enable = disable_interrupts();
- writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, &wdt->cr);
- if (re_enable)
enable_interrupts();
Besides... why would we need to disable IRQs here, writel() is using one instruction to write to the address?
:(, Ok, I'm porting a new board and I have done it too fase without checking to much the code but the final result. Anyway I have seen the driver but I don't understand how the HW_WATCHDOG interface match the hw_watchdog_init.
Michael Trimarchi
Best Regards,
Reinhard
participants (2)
-
Michael Trimarchi
-
Reinhard Meyer