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
19018562f3SNeil Armstrong
20018562f3SNeil Armstrong  reg:
21018562f3SNeil Armstrong    maxItems: 1
22018562f3SNeil Armstrong
23018562f3SNeil Armstrong  "#reset-cells":
24018562f3SNeil Armstrong    const: 1
25018562f3SNeil Armstrong
26018562f3SNeil Armstrongrequired:
27018562f3SNeil Armstrong  - compatible
28018562f3SNeil Armstrong  - reg
29018562f3SNeil Armstrong  - "#reset-cells"
30018562f3SNeil Armstrong
31018562f3SNeil Armstrongexamples:
32018562f3SNeil Armstrong  - |
33018562f3SNeil Armstrong    reset-controller@c884404 {
34018562f3SNeil Armstrong          compatible = "amlogic,meson-gxbb-reset";
35018562f3SNeil Armstrong          reg = <0xc884404 0x20>;
36018562f3SNeil Armstrong          #reset-cells = <1>;
37018562f3SNeil Armstrong    };
38