blob: 74b2f03c151553f5ce78fd89373f07b09549b2c8 [file] [log] [blame]
Wolfram Sangbd99b682016-04-01 13:56:23 +02001Renesas Watchdog Timer (WDT) Controller
2
3Required properties:
Geert Uytterhoevenc682b5c2016-07-19 13:46:54 +02004- compatible : Should be "renesas,<soctype>-wdt", and
Chris Brandt0ab13802017-03-04 17:37:36 -05005 "renesas,rcar-gen3-wdt" or "renesas,rza-wdt" as fallback.
Geert Uytterhoevenc682b5c2016-07-19 13:46:54 +02006 Examples with soctypes are:
Geert Uytterhoevenc94ad302017-10-30 16:43:19 +01007 - "renesas,r7s72100-wdt" (RZ/A1)
Geert Uytterhoevenc682b5c2016-07-19 13:46:54 +02008 - "renesas,r8a7795-wdt" (R-Car H3)
9 - "renesas,r8a7796-wdt" (R-Car M3-W)
Geert Uytterhoevenc94ad302017-10-30 16:43:19 +010010 - "renesas,r8a77970-wdt" (R-Car V3M)
Geert Uytterhoeven82f68172017-08-17 13:14:25 +020011 - "renesas,r8a77995-wdt" (R-Car D3)
Wolfram Sangbd99b682016-04-01 13:56:23 +020012
13 When compatible with the generic version, nodes must list the SoC-specific
14 version corresponding to the platform first, followed by the generic
15 version.
16
17- reg : Should contain WDT registers location and length
18- clocks : the clock feeding the watchdog timer.
19
20Optional properties:
21- timeout-sec : Contains the watchdog timeout in seconds
22- power-domains : the power domain the WDT belongs to
Chris Brandt0ab13802017-03-04 17:37:36 -050023- interrupts: Some WDTs have an interrupt when used in interval timer mode
Wolfram Sangbd99b682016-04-01 13:56:23 +020024
25Examples:
26
27 wdt0: watchdog@e6020000 {
28 compatible = "renesas,r8a7795-wdt", "renesas,rcar-gen3-wdt";
29 reg = <0 0xe6020000 0 0x0c>;
30 clocks = <&cpg CPG_MOD 402>;
31 power-domains = <&cpg>;
32 timeout-sec = <60>;
33 };