1018562f3SNeil Armstrong# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2018562f3SNeil Armstrong# Copyright 2019 BayLibre, SAS
3018562f3SNeil Armstrong%YAML 1.2
4018562f3SNeil Armstrong---
5018562f3SNeil Armstrong$id: "http://devicetree.org/schemas/reset/amlogic,meson-reset.yaml#"
6018562f3SNeil Armstrong$schema: "http://devicetree.org/meta-schemas/core.yaml#"
7018562f3SNeil Armstrong
8018562f3SNeil Armstrongtitle: Amlogic Meson SoC Reset Controller
9018562f3SNeil Armstrong
10018562f3SNeil Armstrongmaintainers:
11018562f3SNeil Armstrong  - Neil Armstrong <narmstrong@baylibre.com>
12018562f3SNeil Armstrong
13018562f3SNeil Armstrongproperties:
14018562f3SNeil Armstrong  compatible:
15018562f3SNeil Armstrong    enum:
16018562f3SNeil Armstrong      - amlogic,meson8b-reset # Reset Controller on Meson8b and compatible SoCs
17018562f3SNeil Armstrong      - amlogic,meson-gxbb-reset # Reset Controller on GXBB and compatible SoCs
18018562f3SNeil Armstrong      - amlogic,meson-axg-reset # Reset Controller on AXG and compatible SoCs
195d9730b9SXingyu Chen      - amlogic,meson-a1-reset # Reset Controller on A1 and compatible SoCs
20018562f3SNeil Armstrong
21018562f3SNeil Armstrong  reg:
22018562f3SNeil Armstrong    maxItems: 1
23018562f3SNeil Armstrong
24018562f3SNeil Armstrong  "#reset-cells":
25018562f3SNeil Armstrong    const: 1
26018562f3SNeil Armstrong
27018562f3SNeil Armstrongrequired:
28018562f3SNeil Armstrong  - compatible
29018562f3SNeil Armstrong  - reg
30018562f3SNeil Armstrong  - "#reset-cells"
31018562f3SNeil Armstrong
327f464532SRob HerringadditionalProperties: false
337f464532SRob Herring
34018562f3SNeil Armstrongexamples:
35018562f3SNeil Armstrong  - |
36018562f3SNeil Armstrong    reset-controller@c884404 {
37018562f3SNeil Armstrong          compatible = "amlogic,meson-gxbb-reset";
38018562f3SNeil Armstrong          reg = <0xc884404 0x20>;
39018562f3SNeil Armstrong          #reset-cells = <1>;
40018562f3SNeil Armstrong    };
41