qcom,lpass-va-macro.yaml 3.21 KB
Newer Older
1 2 3 4 5 6
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/qcom,lpass-va-macro.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

7
title: LPASS(Low Power Audio Subsystem) VA Macro audio codec
8 9 10 11 12 13

maintainers:
  - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

properties:
  compatible:
14 15 16 17 18 19 20 21
    oneOf:
      - enum:
          - qcom,sc7280-lpass-va-macro
          - qcom,sm8250-lpass-va-macro
          - qcom,sm8450-lpass-va-macro
          - qcom,sm8550-lpass-va-macro
          - qcom,sc8280xp-lpass-va-macro
      - items:
22 23 24
          - enum:
              - qcom,sm8650-lpass-va-macro
              - qcom,x1e80100-lpass-va-macro
25
          - const: qcom,sm8550-lpass-va-macro
26 27 28 29 30 31 32 33 34 35 36

  reg:
    maxItems: 1

  "#sound-dai-cells":
    const: 1

  '#clock-cells':
    const: 0

  clocks:
37 38
    minItems: 1
    maxItems: 4
39 40

  clock-names:
41 42
    minItems: 1
    maxItems: 4
43 44

  clock-output-names:
45
    maxItems: 1
46

47 48 49 50 51 52 53 54
  power-domains:
    maxItems: 2

  power-domain-names:
    items:
      - const: macro
      - const: dcodec

55 56 57 58 59 60 61 62 63 64 65
  qcom,dmic-sample-rate:
    description: dmic sample rate
    $ref: /schemas/types.yaml#/definitions/uint32

  vdd-micb-supply:
    description: phandle to voltage regulator of MIC Bias

required:
  - compatible
  - reg
  - "#sound-dai-cells"
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
  - clock-names
  - clocks

allOf:
  - $ref: dai-common.yaml#

  - if:
      properties:
        compatible:
          contains:
            const: qcom,sc7280-lpass-va-macro
    then:
      properties:
        clocks:
          maxItems: 1
        clock-names:
          items:
            - const: mclk

  - if:
      properties:
        compatible:
          contains:
            const: qcom,sm8250-lpass-va-macro
    then:
      properties:
        clocks:
          minItems: 3
          maxItems: 3
        clock-names:
          items:
            - const: mclk
            - const: macro
            - const: dcodec

  - if:
      properties:
        compatible:
          contains:
            enum:
              - qcom,sc8280xp-lpass-va-macro
              - qcom,sm8450-lpass-va-macro
    then:
      properties:
        clocks:
          minItems: 4
          maxItems: 4
        clock-names:
          items:
            - const: mclk
            - const: macro
            - const: dcodec
            - const: npl
119

120 121 122 123
  - if:
      properties:
        compatible:
          contains:
124 125
            enum:
              - qcom,sm8550-lpass-va-macro
126 127 128 129 130 131 132 133 134 135 136
    then:
      properties:
        clocks:
          minItems: 3
          maxItems: 3
        clock-names:
          items:
            - const: mclk
            - const: macro
            - const: dcodec

137
unevaluatedProperties: false
138 139 140 141 142 143 144 145 146 147 148 149

examples:
  - |
    #include <dt-bindings/sound/qcom,q6afe.h>
    codec@3370000 {
      compatible = "qcom,sm8250-lpass-va-macro";
      reg = <0x3370000 0x1000>;
      #sound-dai-cells = <1>;
      #clock-cells = <0>;
      clocks = <&aoncc 0>,
               <&q6afecc LPASS_HW_MACRO_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>,
               <&q6afecc LPASS_HW_DCODEC_VOTE LPASS_CLK_ATTRIBUTE_COUPLE_NO>;
150
      clock-names = "mclk", "macro", "dcodec";
151 152 153 154
      clock-output-names = "fsgen";
      qcom,dmic-sample-rate = <600000>;
      vdd-micb-supply = <&vreg_s4a_1p8>;
    };