* [PATCH] ppc: Fix booke watchdog initialization
@ 2007-02-07 8:45 Stefan Roese
2007-02-08 6:07 ` Kumar Gala
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Roese @ 2007-02-07 8:45 UTC (permalink / raw)
To: linuxppc-dev; +Cc: linuxppc-embedded
[PATCH] ppc: Fix booke watchdog initialization
Fix two problems in the book-e watchdog driver.
a) The 4xx default period was defined wrong
b) Clear status before enabling the watchdog exception
Signed-off-by: Stefan Roese <sr@denx.de>
---
commit 39f3c85aaf1b18075dcdad200ebe49016451f375
tree cb00cd890052571f5a7b9dad12f156a3a9ce22b4
parent 62d0cfcb27cf755cebdc93ca95dabc83608007cd
author Stefan Roese <sr@denx.de> Wed, 07 Feb 2007 09:41:40 +0100
committer Stefan Roese <sr@denx.de> Wed, 07 Feb 2007 09:41:40 +0100
drivers/char/watchdog/booke_wdt.c | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/drivers/char/watchdog/booke_wdt.c b/drivers/char/watchdog/booke_wdt.c
index 4889022..0e23f29 100644
--- a/drivers/char/watchdog/booke_wdt.c
+++ b/drivers/char/watchdog/booke_wdt.c
@@ -35,7 +35,7 @@
#ifdef CONFIG_FSL_BOOKE
#define WDT_PERIOD_DEFAULT 63 /* Ex. wdt_period=28 bus=333Mhz , reset=~40sec */
#else
-#define WDT_PERIOD_DEFAULT 4 /* Refer to the PPC40x and PPC4xx manuals */
+#define WDT_PERIOD_DEFAULT 3 /* Refer to the PPC40x and PPC4xx manuals */
#endif /* for timing information */
u32 booke_wdt_enabled = 0;
@@ -48,12 +48,22 @@ u32 booke_wdt_period = WDT_PERIOD_DEFAULT;
#endif
/*
+ * booke_wdt_ping:
+ */
+static __inline__ void booke_wdt_ping(void)
+{
+ mtspr(SPRN_TSR, TSR_ENW|TSR_WIS);
+}
+
+/*
* booke_wdt_enable:
*/
static __inline__ void booke_wdt_enable(void)
{
u32 val;
+ /* clear status before enabling watchdog */
+ booke_wdt_ping();
val = mfspr(SPRN_TCR);
val |= (TCR_WIE|TCR_WRC(WRC_CHIP)|WDTP(booke_wdt_period));
@@ -61,14 +71,6 @@ static __inline__ void booke_wdt_enable(void)
}
/*
- * booke_wdt_ping:
- */
-static __inline__ void booke_wdt_ping(void)
-{
- mtspr(SPRN_TSR, TSR_ENW|TSR_WIS);
-}
-
-/*
* booke_wdt_write:
*/
static ssize_t booke_wdt_write (struct file *file, const char __user *buf,
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ppc: Fix booke watchdog initialization
2007-02-07 8:45 [PATCH] ppc: Fix booke watchdog initialization Stefan Roese
@ 2007-02-08 6:07 ` Kumar Gala
0 siblings, 0 replies; 2+ messages in thread
From: Kumar Gala @ 2007-02-08 6:07 UTC (permalink / raw)
To: Stefan Roese; +Cc: linuxppc-dev, linuxppc-embedded
On Feb 7, 2007, at 2:45 AM, Stefan Roese wrote:
> [PATCH] ppc: Fix booke watchdog initialization
>
> Fix two problems in the book-e watchdog driver.
>
> a) The 4xx default period was defined wrong
> b) Clear status before enabling the watchdog exception
>
> Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
(Looks like Paul grabbed this before I did :)
- k
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-02-08 6:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-07 8:45 [PATCH] ppc: Fix booke watchdog initialization Stefan Roese
2007-02-08 6:07 ` Kumar Gala
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).