Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/qcom,msm8996-apcc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Qualcomm clock controller for MSM8996 CPUs
0008 
0009 maintainers:
0010   - Loic Poulain <loic.poulain@linaro.org>
0011 
0012 description: |
0013   Qualcomm CPU clock controller for MSM8996 CPUs, clock 0 is for Power cluster
0014   and clock 1 is for Perf cluster.
0015 
0016 properties:
0017   compatible:
0018     enum:
0019       - qcom,msm8996-apcc
0020 
0021   reg:
0022     maxItems: 1
0023 
0024   '#clock-cells':
0025     const: 1
0026 
0027   clocks:
0028     items:
0029       - description: Primary PLL clock for power cluster (little)
0030       - description: Primary PLL clock for perf cluster (big)
0031       - description: Alternate PLL clock for power cluster (little)
0032       - description: Alternate PLL clock for perf cluster (big)
0033 
0034   clock-names:
0035     items:
0036       - const: pwrcl_pll
0037       - const: perfcl_pll
0038       - const: pwrcl_alt_pll
0039       - const: perfcl_alt_pll
0040 
0041 required:
0042   - compatible
0043   - reg
0044   - '#clock-cells'
0045 
0046 additionalProperties: false
0047 
0048 examples:
0049   - |
0050     kryocc: clock-controller@6400000 {
0051         compatible = "qcom,msm8996-apcc";
0052         reg = <0x6400000 0x90000>;
0053         #clock-cells = <1>;
0054     };