1* Marvell Orion Watchdog Time
2
3Required Properties:
4
5- Compatibility : "marvell,orion-wdt"
6		  "marvell,armada-370-wdt"
7		  "marvell,armada-xp-wdt"
8
9- reg		: Should contain two entries: first one with the
10		  timer control address, second one with the
11		  rstout enable address.
12
13Optional properties:
14
15- interrupts	: Contains the IRQ for watchdog expiration
16- timeout-sec	: Contains the watchdog timeout in seconds
17
18Example:
19
20	wdt@20300 {
21		compatible = "marvell,orion-wdt";
22		reg = <0x20300 0x28>, <0x20108 0x4>;
23		interrupts = <3>;
24		timeout-sec = <10>;
25		status = "okay";
26	};
27