| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *	Generic watchdog defines. Derived from.. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Berkshire PC Watchdog Defines | 
					
						
							|  |  |  |  * by Ken Hollis <khollis@bitgate.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #ifndef _LINUX_WATCHDOG_H
 | 
					
						
							|  |  |  | #define _LINUX_WATCHDOG_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-27 11:43:58 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-29 16:24:16 +01:00
										 |  |  | #include <linux/bitops.h>
 | 
					
						
							| 
									
										
										
										
											2012-05-10 21:48:59 +02:00
										 |  |  | #include <linux/device.h>
 | 
					
						
							|  |  |  | #include <linux/cdev.h>
 | 
					
						
							| 
									
										
										
										
											2012-10-13 10:46:48 +01:00
										 |  |  | #include <uapi/linux/watchdog.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-27 11:43:58 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | struct watchdog_ops; | 
					
						
							|  |  |  | struct watchdog_device; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** struct watchdog_ops - The watchdog-devices operations
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @owner:	The module owner. | 
					
						
							|  |  |  |  * @start:	The routine for starting the watchdog device. | 
					
						
							|  |  |  |  * @stop:	The routine for stopping the watchdog device. | 
					
						
							|  |  |  |  * @ping:	The routine that sends a keepalive ping to the watchdog device. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:56:38 +00:00
										 |  |  |  * @status:	The routine that shows the status of the watchdog device. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:58:21 +00:00
										 |  |  |  * @set_timeout:The routine for setting the watchdog devices timeout value. | 
					
						
							| 
									
										
										
										
											2012-03-16 09:14:00 +01:00
										 |  |  |  * @get_timeleft:The routine that get's the time that's left before a reset. | 
					
						
							| 
									
										
										
										
											2012-05-22 11:40:26 +02:00
										 |  |  |  * @ref:	The ref operation for dyn. allocated watchdog_device structs | 
					
						
							|  |  |  |  * @unref:	The unref operation for dyn. allocated watchdog_device structs | 
					
						
							| 
									
										
										
										
											2011-07-22 18:59:49 +00:00
										 |  |  |  * @ioctl:	The routines that handles extra ioctl calls. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The watchdog_ops structure contains a list of low-level operations | 
					
						
							|  |  |  |  * that control a watchdog device. It also contains the module that owns | 
					
						
							|  |  |  |  * these operations. The start and stop function are mandatory, all other | 
					
						
							|  |  |  |  * functions are optonal. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct watchdog_ops { | 
					
						
							|  |  |  | 	struct module *owner; | 
					
						
							|  |  |  | 	/* mandatory operations */ | 
					
						
							|  |  |  | 	int (*start)(struct watchdog_device *); | 
					
						
							|  |  |  | 	int (*stop)(struct watchdog_device *); | 
					
						
							|  |  |  | 	/* optional operations */ | 
					
						
							|  |  |  | 	int (*ping)(struct watchdog_device *); | 
					
						
							| 
									
										
										
										
											2011-07-22 18:56:38 +00:00
										 |  |  | 	unsigned int (*status)(struct watchdog_device *); | 
					
						
							| 
									
										
										
										
											2011-07-22 18:58:21 +00:00
										 |  |  | 	int (*set_timeout)(struct watchdog_device *, unsigned int); | 
					
						
							| 
									
										
										
										
											2012-03-16 09:14:00 +01:00
										 |  |  | 	unsigned int (*get_timeleft)(struct watchdog_device *); | 
					
						
							| 
									
										
										
										
											2012-05-22 11:40:26 +02:00
										 |  |  | 	void (*ref)(struct watchdog_device *); | 
					
						
							|  |  |  | 	void (*unref)(struct watchdog_device *); | 
					
						
							| 
									
										
										
										
											2011-07-22 18:59:49 +00:00
										 |  |  | 	long (*ioctl)(struct watchdog_device *, unsigned int, unsigned long); | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** struct watchdog_device - The structure that defines a watchdog device
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-05-10 21:48:59 +02:00
										 |  |  |  * @id:		The watchdog's ID. (Allocated by watchdog_register_device) | 
					
						
							|  |  |  |  * @cdev:	The watchdog's Character device. | 
					
						
							| 
									
										
										
										
											2012-05-11 12:00:20 +02:00
										 |  |  |  * @dev:	The device for our watchdog | 
					
						
							|  |  |  |  * @parent:	The parent bus device | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  |  * @info:	Pointer to a watchdog_info structure. | 
					
						
							|  |  |  |  * @ops:	Pointer to the list of watchdog operations. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:56:38 +00:00
										 |  |  |  * @bootstatus:	Status of the watchdog device at boot. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:58:21 +00:00
										 |  |  |  * @timeout:	The watchdog devices timeout value. | 
					
						
							| 
									
										
										
										
											2011-07-22 19:00:16 +00:00
										 |  |  |  * @min_timeout:The watchdog devices minimum timeout value. | 
					
						
							|  |  |  |  * @max_timeout:The watchdog devices maximum timeout value. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  |  * @driver-data:Pointer to the drivers private data. | 
					
						
							| 
									
										
										
										
											2012-05-22 11:40:26 +02:00
										 |  |  |  * @lock:	Lock for watchdog core internal use only. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  |  * @status:	Field that contains the devices internal status bits. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The watchdog_device structure contains all information about a | 
					
						
							|  |  |  |  * watchdog timer device. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The driver-data field may not be accessed directly. It must be accessed | 
					
						
							|  |  |  |  * via the watchdog_set_drvdata and watchdog_get_drvdata helpers. | 
					
						
							| 
									
										
										
										
											2012-05-22 11:40:26 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The lock field is for watchdog core internal use only and should not be | 
					
						
							|  |  |  |  * touched. | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | struct watchdog_device { | 
					
						
							| 
									
										
										
										
											2012-05-10 21:48:59 +02:00
										 |  |  | 	int id; | 
					
						
							|  |  |  | 	struct cdev cdev; | 
					
						
							| 
									
										
										
										
											2012-05-11 12:00:20 +02:00
										 |  |  | 	struct device *dev; | 
					
						
							|  |  |  | 	struct device *parent; | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | 	const struct watchdog_info *info; | 
					
						
							|  |  |  | 	const struct watchdog_ops *ops; | 
					
						
							| 
									
										
										
										
											2011-07-22 18:56:38 +00:00
										 |  |  | 	unsigned int bootstatus; | 
					
						
							| 
									
										
										
										
											2011-07-22 18:58:21 +00:00
										 |  |  | 	unsigned int timeout; | 
					
						
							| 
									
										
										
										
											2011-07-22 19:00:16 +00:00
										 |  |  | 	unsigned int min_timeout; | 
					
						
							|  |  |  | 	unsigned int max_timeout; | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | 	void *driver_data; | 
					
						
							| 
									
										
										
										
											2012-05-22 11:40:26 +02:00
										 |  |  | 	struct mutex lock; | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | 	unsigned long status; | 
					
						
							|  |  |  | /* Bit numbers for status flags */ | 
					
						
							| 
									
										
										
										
											2011-07-22 18:57:55 +00:00
										 |  |  | #define WDOG_ACTIVE		0	/* Is the watchdog running/active */
 | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | #define WDOG_DEV_OPEN		1	/* Opened via /dev/watchdog ? */
 | 
					
						
							| 
									
										
										
										
											2011-07-22 18:58:54 +00:00
										 |  |  | #define WDOG_ALLOW_RELEASE	2	/* Did we receive the magic char ? */
 | 
					
						
							| 
									
										
										
										
											2011-07-22 18:59:17 +00:00
										 |  |  | #define WDOG_NO_WAY_OUT		3	/* Is 'nowayout' feature set ? */
 | 
					
						
							| 
									
										
										
										
											2012-05-22 11:40:26 +02:00
										 |  |  | #define WDOG_UNREGISTERED	4	/* Has the device been unregistered */
 | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-09 22:18:31 +02:00
										 |  |  | #define WATCHDOG_NOWAYOUT		IS_BUILTIN(CONFIG_WATCHDOG_NOWAYOUT)
 | 
					
						
							|  |  |  | #define WATCHDOG_NOWAYOUT_INIT_STATUS	(WATCHDOG_NOWAYOUT << WDOG_NO_WAY_OUT)
 | 
					
						
							| 
									
										
										
										
											2011-11-29 16:24:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-19 21:48:00 -04:00
										 |  |  | /* Use the following function to check whether or not the watchdog is active */ | 
					
						
							| 
									
										
										
										
											2012-03-12 09:51:56 +05:30
										 |  |  | static inline bool watchdog_active(struct watchdog_device *wdd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return test_bit(WDOG_ACTIVE, &wdd->status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-29 16:24:16 +01:00
										 |  |  | /* Use the following function to set the nowayout feature */ | 
					
						
							| 
									
										
										
										
											2012-03-05 16:51:11 +01:00
										 |  |  | static inline void watchdog_set_nowayout(struct watchdog_device *wdd, bool nowayout) | 
					
						
							| 
									
										
										
										
											2011-11-29 16:24:16 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (nowayout) | 
					
						
							|  |  |  | 		set_bit(WDOG_NO_WAY_OUT, &wdd->status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-08 11:04:10 +01:00
										 |  |  | /* Use the following function to check if a timeout value is invalid */ | 
					
						
							|  |  |  | static inline bool watchdog_timeout_invalid(struct watchdog_device *wdd, unsigned int t) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return ((wdd->max_timeout != 0) && | 
					
						
							|  |  |  | 		(t < wdd->min_timeout || t > wdd->max_timeout)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | /* Use the following functions to manipulate watchdog driver specific data */ | 
					
						
							|  |  |  | static inline void watchdog_set_drvdata(struct watchdog_device *wdd, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	wdd->driver_data = data; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void *watchdog_get_drvdata(struct watchdog_device *wdd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return wdd->driver_data; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-05 12:16:09 +02:00
										 |  |  | /* drivers/watchdog/watchdog_core.c */ | 
					
						
							| 
									
										
										
										
											2013-01-08 11:04:10 +01:00
										 |  |  | extern int watchdog_init_timeout(struct watchdog_device *wdd, | 
					
						
							|  |  |  | 				  unsigned int timeout_parm, struct device *dev); | 
					
						
							| 
									
										
										
										
											2011-07-22 18:55:18 +00:00
										 |  |  | extern int watchdog_register_device(struct watchdog_device *); | 
					
						
							|  |  |  | extern void watchdog_unregister_device(struct watchdog_device *); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif  /* ifndef _LINUX_WATCHDOG_H */
 |