0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/reset/starfive,jh7100-reset.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: StarFive JH7100 SoC Reset Controller Device Tree Bindings
0008
0009 maintainers:
0010 - Emil Renner Berthing <kernel@esmil.dk>
0011
0012 properties:
0013 compatible:
0014 enum:
0015 - starfive,jh7100-reset
0016
0017 reg:
0018 maxItems: 1
0019
0020 "#reset-cells":
0021 const: 1
0022
0023 required:
0024 - compatible
0025 - reg
0026 - "#reset-cells"
0027
0028 additionalProperties: false
0029
0030 examples:
0031 - |
0032 reset-controller@11840000 {
0033 compatible = "starfive,jh7100-reset";
0034 reg = <0x11840000 0x10000>;
0035 #reset-cells = <1>;
0036 };
0037
0038 ...