diff mbox series

[v2] watchdog: sp5100_tco: Immediately trigger upon starting.

Message ID 20230316201312.17538-1-gregory.oakes@amd.com
State New
Headers show
Series [v2] watchdog: sp5100_tco: Immediately trigger upon starting. | expand

Commit Message

Gregory Oakes March 16, 2023, 8:13 p.m. UTC
The watchdog countdown is supposed to begin when the device file is
opened. Instead, it would begin countdown upon the first write to or
close of the device file. Now, the ping operation is called within the
start operation which ensures the countdown begins. From experimenation,
it does not appear possible to do this with a single write including
both the start bit and the trigger bit. So, it is done as two distinct
writes.

Signed-off-by: Gregory Oakes <gregory.oakes@amd.com>
---
 drivers/watchdog/sp5100_tco.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Guenter Roeck March 16, 2023, 11:08 p.m. UTC | #1
On Thu, Mar 16, 2023 at 03:13:12PM -0500, Gregory Oakes wrote:
> The watchdog countdown is supposed to begin when the device file is
> opened. Instead, it would begin countdown upon the first write to or
> close of the device file. Now, the ping operation is called within the
> start operation which ensures the countdown begins. From experimenation,
> it does not appear possible to do this with a single write including
> both the start bit and the trigger bit. So, it is done as two distinct
> writes.
> 
> Signed-off-by: Gregory Oakes <gregory.oakes@amd.com>

In the future, please remember to provide change logs.
Fortunately I still remember v1, so

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

Guenter

> ---
>  drivers/watchdog/sp5100_tco.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/watchdog/sp5100_tco.c b/drivers/watchdog/sp5100_tco.c
> index fb426b7d81da..14f8d8d90920 100644
> --- a/drivers/watchdog/sp5100_tco.c
> +++ b/drivers/watchdog/sp5100_tco.c
> @@ -115,6 +115,10 @@ static int tco_timer_start(struct watchdog_device *wdd)
>  	val |= SP5100_WDT_START_STOP_BIT;
>  	writel(val, SP5100_WDT_CONTROL(tco->tcobase));
>  
> +	/* This must be a distinct write. */
> +	val |= SP5100_WDT_TRIGGER_BIT;
> +	writel(val, SP5100_WDT_CONTROL(tco->tcobase));
> +
>  	return 0;
>  }
>  
> -- 
> 2.39.1
>
diff mbox series

Patch

diff --git a/drivers/watchdog/sp5100_tco.c b/drivers/watchdog/sp5100_tco.c
index fb426b7d81da..14f8d8d90920 100644
--- a/drivers/watchdog/sp5100_tco.c
+++ b/drivers/watchdog/sp5100_tco.c
@@ -115,6 +115,10 @@  static int tco_timer_start(struct watchdog_device *wdd)
 	val |= SP5100_WDT_START_STOP_BIT;
 	writel(val, SP5100_WDT_CONTROL(tco->tcobase));
 
+	/* This must be a distinct write. */
+	val |= SP5100_WDT_TRIGGER_BIT;
+	writel(val, SP5100_WDT_CONTROL(tco->tcobase));
+
 	return 0;
 }