]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - Documentation/devicetree/bindings/watchdog/renesas-wdt.txt
Merge branch 'for-linus-4.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-bionic-kernel.git] / Documentation / devicetree / bindings / watchdog / renesas-wdt.txt
CommitLineData
bd99b68e
WS
1Renesas Watchdog Timer (WDT) Controller
2
3Required properties:
c682b5cb 4- compatible : Should be "renesas,<soctype>-wdt", and
0ab13808 5 "renesas,rcar-gen3-wdt" or "renesas,rza-wdt" as fallback.
c682b5cb
GU
6 Examples with soctypes are:
7 - "renesas,r8a7795-wdt" (R-Car H3)
8 - "renesas,r8a7796-wdt" (R-Car M3-W)
0ab13808 9 - "renesas,r7s72100-wdt" (RZ/A1)
bd99b68e
WS
10
11 When compatible with the generic version, nodes must list the SoC-specific
12 version corresponding to the platform first, followed by the generic
13 version.
14
15- reg : Should contain WDT registers location and length
16- clocks : the clock feeding the watchdog timer.
17
18Optional properties:
19- timeout-sec : Contains the watchdog timeout in seconds
20- power-domains : the power domain the WDT belongs to
0ab13808 21- interrupts: Some WDTs have an interrupt when used in interval timer mode
bd99b68e
WS
22
23Examples:
24
25 wdt0: watchdog@e6020000 {
26 compatible = "renesas,r8a7795-wdt", "renesas,rcar-gen3-wdt";
27 reg = <0 0xe6020000 0 0x0c>;
28 clocks = <&cpg CPG_MOD 402>;
29 power-domains = <&cpg>;
30 timeout-sec = <60>;
31 };