diff options
| author | Tero Kristo <[email protected]> | 2020-07-17 16:29:56 +0300 |
|---|---|---|
| committer | Wim Van Sebroeck <[email protected]> | 2020-08-05 18:43:02 +0200 |
| commit | cef9572e9af373cefd1adc9e771e89670da5da3c (patch) | |
| tree | f80b4b40eea485aa70c4d6cf400be986dafa92af /include/linux | |
| parent | fbbe35dfcf949f4d6cf987648e52a85fc0c2a23a (diff) | |
watchdog: add support for adjusting last known HW keepalive time
Certain watchdogs require the watchdog only to be pinged within a
specific time window, pinging too early or too late cause the watchdog
to fire. In cases where this sort of watchdog has been started before
kernel comes up, we must adjust the watchdog keepalive window to match
the actually running timer, so add a new driver API for this purpose.
Signed-off-by: Tero Kristo <[email protected]>
Reviewed-by: Guenter Roeck <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Guenter Roeck <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/watchdog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/watchdog.h b/include/linux/watchdog.h index 1464ce6ffa31..9b19e6bb68b5 100644 --- a/include/linux/watchdog.h +++ b/include/linux/watchdog.h @@ -210,6 +210,8 @@ extern int watchdog_init_timeout(struct watchdog_device *wdd, extern int watchdog_register_device(struct watchdog_device *); extern void watchdog_unregister_device(struct watchdog_device *); +int watchdog_set_last_hw_keepalive(struct watchdog_device *, unsigned int); + /* devres register variant */ int devm_watchdog_register_device(struct device *dev, struct watchdog_device *); |