xref: /linux/Documentation/devicetree/bindings/reset/snps,dw-reset.yaml (revision 0f46f50845ce75bfaba62df0421084d23bb6a72f)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/reset/snps,dw-reset.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Synopsys DesignWare Reset controller
8
9maintainers:
10  - Philipp Zabel <p.zabel@pengutronix.de>
11
12properties:
13  compatible:
14    enum:
15      - snps,dw-high-reset
16      - snps,dw-low-reset
17
18  reg:
19    maxItems: 1
20
21  '#reset-cells':
22    const: 1
23
24  reset-controller: true
25
26required:
27  - compatible
28  - reg
29  - '#reset-cells'
30
31additionalProperties: false
32
33examples:
34  - |
35    reset-controller@0 {
36        compatible = "snps,dw-high-reset";
37        reg = <0x0000 0x4>;
38        #reset-cells = <1>;
39    };
40