2016-04-01 18:56:23 +07:00
|
|
|
Renesas Watchdog Timer (WDT) Controller
|
|
|
|
|
|
|
|
Required properties:
|
2018-02-13 00:44:20 +07:00
|
|
|
- compatible : Must be "renesas,<soctype>-wdt", followed by a generic
|
|
|
|
fallback compatible string when compatible with the generic
|
|
|
|
version.
|
2016-07-19 18:46:54 +07:00
|
|
|
Examples with soctypes are:
|
2018-02-13 00:44:20 +07:00
|
|
|
- "renesas,r8a7743-wdt" (RZ/G1M)
|
2018-09-26 00:07:21 +07:00
|
|
|
- "renesas,r8a7744-wdt" (RZ/G1N)
|
2018-02-13 00:44:20 +07:00
|
|
|
- "renesas,r8a7745-wdt" (RZ/G1E)
|
2018-10-26 15:55:53 +07:00
|
|
|
- "renesas,r8a77470-wdt" (RZ/G1C)
|
2018-08-14 19:33:48 +07:00
|
|
|
- "renesas,r8a774a1-wdt" (RZ/G2M)
|
2019-10-04 15:35:27 +07:00
|
|
|
- "renesas,r8a774b1-wdt" (RZ/G2N)
|
2018-12-14 03:18:53 +07:00
|
|
|
- "renesas,r8a774c0-wdt" (RZ/G2E)
|
2018-02-13 00:44:20 +07:00
|
|
|
- "renesas,r8a7790-wdt" (R-Car H2)
|
|
|
|
- "renesas,r8a7791-wdt" (R-Car M2-W)
|
|
|
|
- "renesas,r8a7792-wdt" (R-Car V2H)
|
|
|
|
- "renesas,r8a7793-wdt" (R-Car M2-N)
|
|
|
|
- "renesas,r8a7794-wdt" (R-Car E2)
|
2016-07-19 18:46:54 +07:00
|
|
|
- "renesas,r8a7795-wdt" (R-Car H3)
|
|
|
|
- "renesas,r8a7796-wdt" (R-Car M3-W)
|
2018-05-07 19:29:42 +07:00
|
|
|
- "renesas,r8a77965-wdt" (R-Car M3-N)
|
2017-10-30 22:43:19 +07:00
|
|
|
- "renesas,r8a77970-wdt" (R-Car V3M)
|
2018-07-06 15:55:08 +07:00
|
|
|
- "renesas,r8a77990-wdt" (R-Car E3)
|
2017-08-17 18:14:25 +07:00
|
|
|
- "renesas,r8a77995-wdt" (R-Car D3)
|
2018-02-13 00:44:20 +07:00
|
|
|
- "renesas,r7s72100-wdt" (RZ/A1)
|
2018-09-24 20:58:16 +07:00
|
|
|
- "renesas,r7s9210-wdt" (RZ/A2)
|
2018-02-13 00:44:20 +07:00
|
|
|
The generic compatible string must be:
|
|
|
|
- "renesas,rza-wdt" for RZ/A
|
2018-08-14 19:33:48 +07:00
|
|
|
- "renesas,rcar-gen2-wdt" for R-Car Gen2 and RZ/G1
|
|
|
|
- "renesas,rcar-gen3-wdt" for R-Car Gen3 and RZ/G2
|
2016-04-01 18:56:23 +07:00
|
|
|
|
|
|
|
- reg : Should contain WDT registers location and length
|
|
|
|
- clocks : the clock feeding the watchdog timer.
|
|
|
|
|
|
|
|
Optional properties:
|
|
|
|
- timeout-sec : Contains the watchdog timeout in seconds
|
|
|
|
- power-domains : the power domain the WDT belongs to
|
2017-03-05 05:37:36 +07:00
|
|
|
- interrupts: Some WDTs have an interrupt when used in interval timer mode
|
2016-04-01 18:56:23 +07:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
wdt0: watchdog@e6020000 {
|
|
|
|
compatible = "renesas,r8a7795-wdt", "renesas,rcar-gen3-wdt";
|
|
|
|
reg = <0 0xe6020000 0 0x0c>;
|
|
|
|
clocks = <&cpg CPG_MOD 402>;
|
|
|
|
power-domains = <&cpg>;
|
|
|
|
timeout-sec = <60>;
|
|
|
|
};
|