ingenic,jz4740-wdt.txt 441 字节
Newer Older
1
Ingenic Watchdog Timer (WDT) Controller for JZ4740 & JZ4780
2 3

Required properties:
4
compatible: "ingenic,jz4740-watchdog" or "ingenic,jz4780-watchdog"
5
reg: Register address and length for watchdog registers
6 7
clocks: phandle to the RTC clock
clock-names: should be "rtc"
8 9 10

Example:

11
watchdog: jz4740-watchdog@10002000 {
12
	compatible = "ingenic,jz4740-watchdog";
13 14 15 16
	reg = <0x10002000 0x10>;

	clocks = <&cgu JZ4740_CLK_RTC>;
	clock-names = "rtc";
17
};