8f4cf30903 ("watchdog: Allow multiple watchdogs") introduced the ability
to set a per-watchdog priority from within drivers, which is usually
populated with of_get_watchdog_priority.

For debugging, it can be useful to query and override this priority on
the fly.  Provide a device parameter to do so.
As watchdog_get_default only considers priorities > 0, it makes sense
to have a newly set priority of 0 disable the watchdog.

Signed-off-by: Ahmad Fatoum <a.fat...@pengutronix.de>
---
 drivers/watchdog/wd_core.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/drivers/watchdog/wd_core.c b/drivers/watchdog/wd_core.c
index e6e5ddecd2f8..ae29a76064aa 100644
--- a/drivers/watchdog/wd_core.c
+++ b/drivers/watchdog/wd_core.c
@@ -41,6 +41,16 @@ static int _watchdog_set_timeout(struct watchdog *wd, 
unsigned timeout)
        return wd->set_timeout(wd, timeout);
 }
 
+static int watchdog_set_priority(struct param_d *param, void *priv)
+{
+       struct watchdog *wd = priv;
+
+       if (wd->priority == 0)
+               return _watchdog_set_timeout(wd, 0);
+
+       return 0;
+}
+
 static int watchdog_set_cur(struct param_d *param, void *priv)
 {
        struct watchdog *wd = priv;
@@ -130,6 +140,12 @@ int watchdog_register(struct watchdog *wd)
        if (!wd->priority)
                wd->priority = WATCHDOG_DEFAULT_PRIORITY;
 
+       p = dev_add_param_uint32(&wd->dev, "priority",
+                                watchdog_set_priority, NULL,
+                                &wd->priority, "%u", wd);
+       if (IS_ERR(p))
+               return PTR_ERR(p);
+
        /* set some default sane value */
        if (!wd->timeout_max)
                wd->timeout_max = 60 * 60 * 24;
-- 
2.23.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to