xref: /freebsd/sys/contrib/device-tree/Bindings/watchdog/ziirave-wdt.txt (revision 59c8e88e72633afbc47a4ace0d2170d00d51f7dc)
1Zodiac RAVE Watchdog Timer
2
3Required properties:
4- compatible: must be "zii,rave-wdt"
5- reg: i2c slave address of device, usually 0x38
6
7Optional Properties:
8- timeout-sec: Watchdog timeout value in seconds.
9- reset-duration-ms: Duration of the pulse generated when the watchdog times
10  out. Value in milliseconds.
11
12Example:
13
14	watchdog@38 {
15		compatible = "zii,rave-wdt";
16		reg = <0x38>;
17		timeout-sec = <30>;
18		reset-duration-ms = <30>;
19	};
20