1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/qcom,krait-cc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Krait Clock Controller 8 9maintainers: 10 - Stephen Boyd <sboyd@kernel.org> 11 12properties: 13 compatible: 14 enum: 15 - qcom,krait-cc-v1 16 - qcom,krait-cc-v2 17 18 '#clock-cells': 19 const: 1 20 21 clocks: 22 items: 23 - description: Parent clock phandle for hfpll0 24 - description: Parent clock phandle for hfpll1 25 - description: Parent clock phandle for acpu0_aux 26 - description: Parent clock phandle for acpu1_aux 27 - description: Parent clock phandle for qsb 28 29 clock-names: 30 items: 31 - const: hfpll0 32 - const: hfpll1 33 - const: acpu0_aux 34 - const: acpu1_aux 35 - const: qsb 36 37required: 38 - compatible 39 - '#clock-cells' 40 - clocks 41 - clock-names 42 43additionalProperties: false 44