Merge tag 'tegra-for-4.8-i2c' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra...
[cascardo/linux.git] / Documentation / devicetree / bindings / watchdog / renesas-wdt.txt
1 Renesas Watchdog Timer (WDT) Controller
2
3 Required properties:
4 - compatible : Should be "renesas,<soctype>-wdt", and
5                "renesas,rcar-gen3-wdt" as fallback.
6                Examples with soctypes are:
7                  - "renesas,r8a7795-wdt" (R-Car H3)
8                  - "renesas,r8a7796-wdt" (R-Car M3-W)
9
10   When compatible with the generic version, nodes must list the SoC-specific
11   version corresponding to the platform first, followed by the generic
12   version.
13
14 - reg : Should contain WDT registers location and length
15 - clocks : the clock feeding the watchdog timer.
16
17 Optional properties:
18 - timeout-sec : Contains the watchdog timeout in seconds
19 - power-domains : the power domain the WDT belongs to
20
21 Examples:
22
23         wdt0: watchdog@e6020000 {
24                 compatible = "renesas,r8a7795-wdt", "renesas,rcar-gen3-wdt";
25                 reg = <0 0xe6020000 0 0x0c>;
26                 clocks = <&cpg CPG_MOD 402>;
27                 power-domains = <&cpg>;
28                 timeout-sec = <60>;
29         };