1Ingenic Watchdog Timer (WDT) Controller for JZ4740 & JZ4780
2
3Required properties:
4compatible: "ingenic,jz4740-watchdog" or "ingenic,jz4780-watchdog"
5reg: Register address and length for watchdog registers
6clocks: phandle to the RTC clock
7clock-names: should be "rtc"
8
9Example:
10
11watchdog: jz4740-watchdog@10002000 {
12	compatible = "ingenic,jz4740-watchdog";
13	reg = <0x10002000 0x10>;
14
15	clocks = <&cgu JZ4740_CLK_RTC>;
16	clock-names = "rtc";
17};
18