]> git.ipfire.org Git - thirdparty/u-boot.git/blob - Bindings/reset/starfive,jh7100-reset.yaml
Squashed 'dts/upstream/' content from commit aaba2d45dc2a
[thirdparty/u-boot.git] / Bindings / reset / starfive,jh7100-reset.yaml
1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/reset/starfive,jh7100-reset.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: StarFive JH7100 SoC Reset Controller
8
9 maintainers:
10 - Emil Renner Berthing <kernel@esmil.dk>
11
12 properties:
13 compatible:
14 enum:
15 - starfive,jh7100-reset
16
17 reg:
18 maxItems: 1
19
20 "#reset-cells":
21 const: 1
22
23 required:
24 - compatible
25 - reg
26 - "#reset-cells"
27
28 additionalProperties: false
29
30 examples:
31 - |
32 reset-controller@11840000 {
33 compatible = "starfive,jh7100-reset";
34 reg = <0x11840000 0x10000>;
35 #reset-cells = <1>;
36 };
37
38 ...