* [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog
@ 2014-04-24 13:49 gundberg
2014-04-24 15:15 ` Guenter Roeck
2014-05-07 20:19 ` Michael Brunner
0 siblings, 2 replies; 4+ messages in thread
From: gundberg @ 2014-04-24 13:49 UTC (permalink / raw)
To: wim, linux-watchdog, linux-kernel
Use the prescaler index, rather than its value, to configure the watchdog.
This will prevent a mismatch with the prescaler used to calculate the cycles.
Signed-off-by: Per Gundberg <per.gundberg@icomera.com>
---
drivers/watchdog/kempld_wdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- src/drivers/watchdog/kempld_wdt.c.orig 2014-04-24 07:32:08.463745055 +0000
+++ src/drivers/watchdog/kempld_wdt.c 2014-04-24 07:34:09.839739808 +0000
@@ -163,7 +163,7 @@ static int kempld_wdt_set_stage_timeout(
kempld_get_mutex(pld);
stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id));
stage_cfg &= ~STAGE_CFG_PRESCALER_MASK;
- stage_cfg |= STAGE_CFG_SET_PRESCALER(prescaler);
+ stage_cfg |= STAGE_CFG_SET_PRESCALER(PRESCALER_21);
kempld_write8(pld, KEMPLD_WDT_STAGE_CFG(stage->id), stage_cfg);
kempld_write32(pld, KEMPLD_WDT_STAGE_TIMEOUT(stage->id),
stage_timeout);
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog
2014-04-24 13:49 [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog gundberg
@ 2014-04-24 15:15 ` Guenter Roeck
2014-05-07 20:19 ` Michael Brunner
1 sibling, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2014-04-24 15:15 UTC (permalink / raw)
To: gundberg; +Cc: wim, linux-watchdog, linux-kernel, Michael Brunner
On Thu, Apr 24, 2014 at 03:49:19PM +0200, gundberg wrote:
> Use the prescaler index, rather than its value, to configure the watchdog.
> This will prevent a mismatch with the prescaler used to calculate the cycles.
>
> Signed-off-by: Per Gundberg <per.gundberg@icomera.com>
Good catch. Looks correct to me. Michael, any comments ?
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/watchdog/kempld_wdt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- src/drivers/watchdog/kempld_wdt.c.orig 2014-04-24 07:32:08.463745055 +0000
> +++ src/drivers/watchdog/kempld_wdt.c 2014-04-24 07:34:09.839739808 +0000
> @@ -163,7 +163,7 @@ static int kempld_wdt_set_stage_timeout(
> kempld_get_mutex(pld);
> stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id));
> stage_cfg &= ~STAGE_CFG_PRESCALER_MASK;
> - stage_cfg |= STAGE_CFG_SET_PRESCALER(prescaler);
> + stage_cfg |= STAGE_CFG_SET_PRESCALER(PRESCALER_21);
> kempld_write8(pld, KEMPLD_WDT_STAGE_CFG(stage->id), stage_cfg);
> kempld_write32(pld, KEMPLD_WDT_STAGE_TIMEOUT(stage->id),
> stage_timeout);
> --
> To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog
2014-04-24 13:49 [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog gundberg
2014-04-24 15:15 ` Guenter Roeck
@ 2014-05-07 20:19 ` Michael Brunner
1 sibling, 0 replies; 4+ messages in thread
From: Michael Brunner @ 2014-05-07 20:19 UTC (permalink / raw)
To: gundberg; +Cc: wim, linux-watchdog, linux-kernel
On Thu, 24 Apr 2014 08:15:40 -0700, Guenter Roeck <linux@roeck-us.net>
wrote:
> On Thu, Apr 24, 2014 at 03:49:19PM +0200, gundberg wrote:
> > Use the prescaler index, rather than its value, to configure the
> > watchdog. This will prevent a mismatch with the prescaler used to
> > calculate the cycles.
> >
> > Signed-off-by: Per Gundberg <per.gundberg@icomera.com>
>
> Good catch. Looks correct to me. Michael, any comments ?
>
> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Setting the prescaler incorrectly this way can cause the system to
reboot nearly immediately when activating the watchdog - not good.
This should also be applied to the stable revisions as this code is
included since 3.11.
Reviewed-by: Michael Brunner <michael.brunner@kontron.com>
Tested-by: Michael Brunner <michael.brunner@kontron.com>
Thanks,
Michael
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog
[not found] <CAKUdnSzO2ixCOvvxAwz3duXsPEpExVND7VA_DVPAYpwQGTwYdQ@mail.gmail.com>
@ 2014-05-26 18:59 ` Wim Van Sebroeck
0 siblings, 0 replies; 4+ messages in thread
From: Wim Van Sebroeck @ 2014-05-26 18:59 UTC (permalink / raw)
To: Per Gundberg; +Cc: linux-watchdog, linux-kernel
Hi Per,
> Use the prescaler index, rather than its value, to configure the watchdog.
> This will prevent a mismatch with the prescaler used to calculate the
> cycles.
>
> Signed-off-by: Per Gundberg <per.gundberg@icomera.com>
> ---
> drivers/watchdog/kempld_wdt.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- src/drivers/watchdog/kempld_wdt.c.orig 2014-04-24 07:32:08.463745055
> +0000
> +++ src/drivers/watchdog/kempld_wdt.c 2014-04-24 07:34:09.839739808 +0000
> @@ -163,7 +163,7 @@ static int kempld_wdt_set_stage_timeout(
> kempld_get_mutex(pld);
> stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id));
> stage_cfg &= ~STAGE_CFG_PRESCALER_MASK;
> - stage_cfg |= STAGE_CFG_SET_PRESCALER(prescaler);
> + stage_cfg |= STAGE_CFG_SET_PRESCALER(PRESCALER_21);
> kempld_write8(pld, KEMPLD_WDT_STAGE_CFG(stage->id), stage_cfg);
> kempld_write32(pld, KEMPLD_WDT_STAGE_TIMEOUT(stage->id),
> stage_timeout);
This patch has been added to linux-watchdog-next.
Kind regards,
Wim.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-05-26 19:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-24 13:49 [PATCH] watchdog: kempld-wdt: Use the correct value when configuring the prescaler with the watchdog gundberg
2014-04-24 15:15 ` Guenter Roeck
2014-05-07 20:19 ` Michael Brunner
[not found] <CAKUdnSzO2ixCOvvxAwz3duXsPEpExVND7VA_DVPAYpwQGTwYdQ@mail.gmail.com>
2014-05-26 18:59 ` Wim Van Sebroeck
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).