Linux-libre 5.7.6-gnu
[librecmc/linux-libre.git] / Documentation / devicetree / bindings / watchdog / renesas,wdt.txt
1 Renesas Watchdog Timer (WDT) Controller
2
3 Required properties:
4  - compatible : Must be "renesas,<soctype>-wdt", followed by a generic
5                 fallback compatible string when compatible with the generic
6                 version.
7                Examples with soctypes are:
8                  - "renesas,r8a7743-wdt" (RZ/G1M)
9                  - "renesas,r8a7744-wdt" (RZ/G1N)
10                  - "renesas,r8a7745-wdt" (RZ/G1E)
11                  - "renesas,r8a77470-wdt" (RZ/G1C)
12                  - "renesas,r8a774a1-wdt" (RZ/G2M)
13                  - "renesas,r8a774b1-wdt" (RZ/G2N)
14                  - "renesas,r8a774c0-wdt" (RZ/G2E)
15                  - "renesas,r8a7790-wdt" (R-Car H2)
16                  - "renesas,r8a7791-wdt" (R-Car M2-W)
17                  - "renesas,r8a7792-wdt" (R-Car V2H)
18                  - "renesas,r8a7793-wdt" (R-Car M2-N)
19                  - "renesas,r8a7794-wdt" (R-Car E2)
20                  - "renesas,r8a7795-wdt" (R-Car H3)
21                  - "renesas,r8a7796-wdt" (R-Car M3-W)
22                  - "renesas,r8a77961-wdt" (R-Car M3-W+)
23                  - "renesas,r8a77965-wdt" (R-Car M3-N)
24                  - "renesas,r8a77970-wdt" (R-Car V3M)
25                  - "renesas,r8a77990-wdt" (R-Car E3)
26                  - "renesas,r8a77995-wdt" (R-Car D3)
27                  - "renesas,r7s72100-wdt" (RZ/A1)
28                  - "renesas,r7s9210-wdt"  (RZ/A2)
29                 The generic compatible string must be:
30                  - "renesas,rza-wdt" for RZ/A
31                  - "renesas,rcar-gen2-wdt" for R-Car Gen2 and RZ/G1
32                  - "renesas,rcar-gen3-wdt" for R-Car Gen3 and RZ/G2
33
34 - reg : Should contain WDT registers location and length
35 - clocks : the clock feeding the watchdog timer.
36
37 Optional properties:
38 - timeout-sec : Contains the watchdog timeout in seconds
39 - power-domains : the power domain the WDT belongs to
40 - interrupts: Some WDTs have an interrupt when used in interval timer mode
41
42 Examples:
43
44         wdt0: watchdog@e6020000 {
45                 compatible = "renesas,r8a7795-wdt", "renesas,rcar-gen3-wdt";
46                 reg = <0 0xe6020000 0 0x0c>;
47                 clocks = <&cpg CPG_MOD 402>;
48                 power-domains = <&cpg>;
49                 timeout-sec = <60>;
50         };