xref: /freebsd/sys/contrib/device-tree/Bindings/reset/renesas,rst.yaml (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1c66ec88fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2c66ec88fSEmmanuel Vadot%YAML 1.2
3c66ec88fSEmmanuel Vadot---
4fac71e4eSEmmanuel Vadot$id: http://devicetree.org/schemas/reset/renesas,rst.yaml#
5fac71e4eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6c66ec88fSEmmanuel Vadot
7c66ec88fSEmmanuel Vadottitle: Renesas R-Car and RZ/G Reset Controller
8c66ec88fSEmmanuel Vadot
9c66ec88fSEmmanuel Vadotmaintainers:
10c66ec88fSEmmanuel Vadot  - Geert Uytterhoeven <geert+renesas@glider.be>
11c66ec88fSEmmanuel Vadot  - Magnus Damm <magnus.damm@gmail.com>
12c66ec88fSEmmanuel Vadot
13c66ec88fSEmmanuel Vadotdescription: |
14c66ec88fSEmmanuel Vadot  The R-Car and RZ/G Reset Controllers provide reset control, and implement the
15c66ec88fSEmmanuel Vadot  following functions:
16c66ec88fSEmmanuel Vadot    - Latching of the levels on mode pins when PRESET# is negated,
17c66ec88fSEmmanuel Vadot    - Mode monitoring register,
18c66ec88fSEmmanuel Vadot    - Reset control of peripheral devices (on R-Car Gen1),
19c66ec88fSEmmanuel Vadot    - Watchdog timer (on R-Car Gen1),
20c66ec88fSEmmanuel Vadot    - Register-based reset control and boot address registers for the various
21c66ec88fSEmmanuel Vadot      CPU cores (on R-Car Gen2 and Gen3, and on RZ/G).
22c66ec88fSEmmanuel Vadot
23c66ec88fSEmmanuel Vadotproperties:
24c66ec88fSEmmanuel Vadot  compatible:
25c66ec88fSEmmanuel Vadot    enum:
26c66ec88fSEmmanuel Vadot      - renesas,r8a7742-rst       # RZ/G1H
27c66ec88fSEmmanuel Vadot      - renesas,r8a7743-rst       # RZ/G1M
28c66ec88fSEmmanuel Vadot      - renesas,r8a7744-rst       # RZ/G1N
29c66ec88fSEmmanuel Vadot      - renesas,r8a7745-rst       # RZ/G1E
30c66ec88fSEmmanuel Vadot      - renesas,r8a77470-rst      # RZ/G1C
31c66ec88fSEmmanuel Vadot      - renesas,r8a774a1-rst      # RZ/G2M
32*b2d2a78aSEmmanuel Vadot      - renesas,r8a774a3-rst      # RZ/G2M v3.0
33c66ec88fSEmmanuel Vadot      - renesas,r8a774b1-rst      # RZ/G2N
34c66ec88fSEmmanuel Vadot      - renesas,r8a774c0-rst      # RZ/G2E
35c66ec88fSEmmanuel Vadot      - renesas,r8a774e1-rst      # RZ/G2H
36c66ec88fSEmmanuel Vadot      - renesas,r8a7778-reset-wdt # R-Car M1A
37c66ec88fSEmmanuel Vadot      - renesas,r8a7779-reset-wdt # R-Car H1
38c66ec88fSEmmanuel Vadot      - renesas,r8a7790-rst       # R-Car H2
39c66ec88fSEmmanuel Vadot      - renesas,r8a7791-rst       # R-Car M2-W
40c66ec88fSEmmanuel Vadot      - renesas,r8a7792-rst       # R-Car V2H
41c66ec88fSEmmanuel Vadot      - renesas,r8a7793-rst       # R-Car M2-N
42c66ec88fSEmmanuel Vadot      - renesas,r8a7794-rst       # R-Car E2
43c66ec88fSEmmanuel Vadot      - renesas,r8a7795-rst       # R-Car H3
44c66ec88fSEmmanuel Vadot      - renesas,r8a7796-rst       # R-Car M3-W
45c66ec88fSEmmanuel Vadot      - renesas,r8a77961-rst      # R-Car M3-W+
46c66ec88fSEmmanuel Vadot      - renesas,r8a77965-rst      # R-Car M3-N
47c66ec88fSEmmanuel Vadot      - renesas,r8a77970-rst      # R-Car V3M
48c66ec88fSEmmanuel Vadot      - renesas,r8a77980-rst      # R-Car V3H
49c66ec88fSEmmanuel Vadot      - renesas,r8a77990-rst      # R-Car E3
50c66ec88fSEmmanuel Vadot      - renesas,r8a77995-rst      # R-Car D3
516be33864SEmmanuel Vadot      - renesas,r8a779a0-rst      # R-Car V3U
52e67e8565SEmmanuel Vadot      - renesas,r8a779f0-rst      # R-Car S4-8
53d5b0e70fSEmmanuel Vadot      - renesas,r8a779g0-rst      # R-Car V4H
5401950c46SEmmanuel Vadot      - renesas,r8a779h0-rst      # R-Car V4M
55c66ec88fSEmmanuel Vadot
56c66ec88fSEmmanuel Vadot  reg:
57c66ec88fSEmmanuel Vadot    maxItems: 1
58c66ec88fSEmmanuel Vadot
59c66ec88fSEmmanuel Vadotrequired:
60c66ec88fSEmmanuel Vadot  - compatible
61c66ec88fSEmmanuel Vadot  - reg
62c66ec88fSEmmanuel Vadot
63c66ec88fSEmmanuel VadotadditionalProperties: false
64c66ec88fSEmmanuel Vadot
65c66ec88fSEmmanuel Vadotexamples:
66c66ec88fSEmmanuel Vadot  - |
67c66ec88fSEmmanuel Vadot    rst: reset-controller@e6160000 {
68c66ec88fSEmmanuel Vadot            compatible = "renesas,r8a7795-rst";
69c66ec88fSEmmanuel Vadot            reg = <0xe6160000 0x0200>;
70c66ec88fSEmmanuel Vadot    };
71