xref: /linux/Documentation/devicetree/bindings/reset/qcom,shikra-audiocore-csr.yaml (revision 502d45774af09f1c681c754c4b7cdfb5d7f72fd9)
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/reset/qcom,shikra-audiocore-csr.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Audio Core CSR for Qualcomm Shikra SoC
8
9maintainers:
10  - Imran Shaik <imran.shaik@oss.qualcomm.com>
11
12description: |
13  Audio Core CSR module provides the resets on Qualcomm Shikra SoC platform.
14
15  See also:
16  - include/dt-bindings/clock/qcom,shikra-audiocorecc.h
17
18properties:
19  compatible:
20    const: qcom,shikra-audiocore-csr
21
22  reg:
23    maxItems: 1
24
25  '#reset-cells':
26    const: 1
27
28required:
29  - compatible
30  - reg
31  - '#reset-cells'
32
33additionalProperties: false
34
35examples:
36  - |
37    reset-controller@a0b4000 {
38      compatible = "qcom,shikra-audiocore-csr";
39      reg = <0x0a0b4000 0x1000>;
40      #reset-cells = <1>;
41    };
42...
43