1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/power/qcom,kpss-acc-v2.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Krait Processor Sub-system (KPSS) Application Clock Controller (ACC) v2
8
9maintainers:
10  - Christian Marangi <ansuelsmth@gmail.com>
11
12description:
13  The KPSS ACC provides clock, power manager, and reset control to a Krait CPU.
14  There is one ACC register region per CPU within the KPSS remapped region as
15  well as an alias register region that remaps accesses to the ACC associated
16  with the CPU accessing the region. ACC v2 is currently used as a
17  power-manager for enabling the cpu.
18
19properties:
20  compatible:
21    enum:
22      - qcom,kpss-acc-v2
23      - qcom,msm8916-acc
24
25  reg:
26    items:
27      - description: Base address and size of the register region
28      - description: Optional base address and size of the alias register region
29    minItems: 1
30
31required:
32  - compatible
33  - reg
34
35additionalProperties: false
36
37examples:
38  - |
39    power-manager@f9088000 {
40      compatible = "qcom,kpss-acc-v2";
41      reg = <0xf9088000 0x1000>,
42            <0xf9008000 0x1000>;
43    };
44...
45