dt-bindings: reset: Add starfive,jh7100-audrst bindings
[platform/kernel/linux-starfive.git] / Documentation / devicetree / bindings / reset / starfive,jh7100-audrst.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-audrst.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: StarFive JH7100 SoC Audio Reset Controller Device Tree Bindings
8
9 maintainers:
10   - Emil Renner Berthing <kernel@esmil.dk>
11
12 properties:
13   compatible:
14     enum:
15       - starfive,jh7100-audrst
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@10490000 {
33         compatible = "starfive,jh7100-audrst";
34         reg = <0x10490000 0x10000>;
35         #reset-cells = <1>;
36     };
37
38 ...