Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 2 | #ifndef __WATCHDOG_PRETIMEOUT_H |
| 3 | #define __WATCHDOG_PRETIMEOUT_H |
| 4 | |
| 5 | #define WATCHDOG_GOV_NAME_MAXLEN 20 |
| 6 | |
| 7 | struct watchdog_device; |
| 8 | |
| 9 | struct watchdog_governor { |
| 10 | const char name[WATCHDOG_GOV_NAME_MAXLEN]; |
| 11 | void (*pretimeout)(struct watchdog_device *wdd); |
| 12 | }; |
| 13 | |
| 14 | #if IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_GOV) |
| 15 | /* Interfaces to watchdog pretimeout governors */ |
| 16 | int watchdog_register_governor(struct watchdog_governor *gov); |
| 17 | void watchdog_unregister_governor(struct watchdog_governor *gov); |
| 18 | |
| 19 | /* Interfaces to watchdog_dev.c */ |
| 20 | int watchdog_register_pretimeout(struct watchdog_device *wdd); |
| 21 | void watchdog_unregister_pretimeout(struct watchdog_device *wdd); |
Vladimir Zapolskiy | 89873a71 | 2016-10-07 15:39:57 +0300 | [diff] [blame] | 22 | int watchdog_pretimeout_available_governors_get(char *buf); |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 23 | int watchdog_pretimeout_governor_get(struct watchdog_device *wdd, char *buf); |
Vladimir Zapolskiy | 53f96ce | 2016-10-07 15:37:00 +0300 | [diff] [blame] | 24 | int watchdog_pretimeout_governor_set(struct watchdog_device *wdd, |
| 25 | const char *buf); |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 26 | |
Vladimir Zapolskiy | f77710c | 2016-10-07 15:39:55 +0300 | [diff] [blame] | 27 | #if IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP) |
| 28 | #define WATCHDOG_PRETIMEOUT_DEFAULT_GOV "noop" |
Vladimir Zapolskiy | da0d12f | 2016-10-07 15:39:56 +0300 | [diff] [blame] | 29 | #elif IS_ENABLED(CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC) |
| 30 | #define WATCHDOG_PRETIMEOUT_DEFAULT_GOV "panic" |
Vladimir Zapolskiy | f77710c | 2016-10-07 15:39:55 +0300 | [diff] [blame] | 31 | #endif |
| 32 | |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 33 | #else |
| 34 | static inline int watchdog_register_pretimeout(struct watchdog_device *wdd) |
| 35 | { |
| 36 | return 0; |
| 37 | } |
| 38 | |
| 39 | static inline void watchdog_unregister_pretimeout(struct watchdog_device *wdd) |
| 40 | { |
| 41 | } |
| 42 | |
Vladimir Zapolskiy | 89873a71 | 2016-10-07 15:39:57 +0300 | [diff] [blame] | 43 | static inline int watchdog_pretimeout_available_governors_get(char *buf) |
| 44 | { |
| 45 | return -EINVAL; |
| 46 | } |
| 47 | |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 48 | static inline int watchdog_pretimeout_governor_get(struct watchdog_device *wdd, |
| 49 | char *buf) |
| 50 | { |
| 51 | return -EINVAL; |
| 52 | } |
Vladimir Zapolskiy | 53f96ce | 2016-10-07 15:37:00 +0300 | [diff] [blame] | 53 | |
| 54 | static inline int watchdog_pretimeout_governor_set(struct watchdog_device *wdd, |
| 55 | const char *buf) |
| 56 | { |
| 57 | return -EINVAL; |
| 58 | } |
Vladimir Zapolskiy | ff84136 | 2016-10-07 15:39:54 +0300 | [diff] [blame] | 59 | #endif |
| 60 | |
| 61 | #endif |