43 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---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) v28 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 as15 well as an alias register region that remaps accesses to the ACC associated16 with the CPU accessing the region. ACC v2 is currently used as a17 power-manager for enabling the cpu.18 19properties:20 compatible:21 const: qcom,kpss-acc-v222 23 reg:24 items:25 - description: Base address and size of the register region26 - description: Optional base address and size of the alias register region27 minItems: 128 29required:30 - compatible31 - reg32 33additionalProperties: false34 35examples:36 - |37 power-manager@f9088000 {38 compatible = "qcom,kpss-acc-v2";39 reg = <0xf9088000 0x1000>,40 <0xf9008000 0x1000>;41 };42...43