blob: 10531350c3362788d1943100808ff9cf7d7036cc [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/qcom,wcd938x.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm WCD9380/WCD9385 Audio Codec
8
9maintainers:
10 - Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
11
12description: |
13 Qualcomm WCD9380/WCD9385 Codec is a standalone Hi-Fi audio codec IC.
14 It has RX and TX Soundwire slave devices.
15
16allOf:
17 - $ref: dai-common.yaml#
Tom Rini6bb92fc2024-05-20 09:54:58 -060018 - $ref: qcom,wcd93xx-common.yaml#
Tom Rini53633a82024-02-29 12:33:36 -050019
20properties:
21 compatible:
22 enum:
23 - qcom,wcd9380-codec
24 - qcom,wcd9385-codec
25
Tom Rini53633a82024-02-29 12:33:36 -050026 us-euro-gpios:
27 description: GPIO spec for swapping gnd and mic segments
28 maxItems: 1
29
Tom Rini53633a82024-02-29 12:33:36 -050030required:
31 - compatible
Tom Rini53633a82024-02-29 12:33:36 -050032
33unevaluatedProperties: false
34
35examples:
36 - |
Tom Rini6b642ac2024-10-01 12:20:28 -060037 #include <dt-bindings/gpio/gpio.h>
Tom Rini53633a82024-02-29 12:33:36 -050038 codec {
39 compatible = "qcom,wcd9380-codec";
Tom Rini6b642ac2024-10-01 12:20:28 -060040 reset-gpios = <&tlmm 32 GPIO_ACTIVE_LOW>;
Tom Rini53633a82024-02-29 12:33:36 -050041 #sound-dai-cells = <1>;
42 qcom,tx-device = <&wcd938x_tx>;
43 qcom,rx-device = <&wcd938x_rx>;
44 qcom,micbias1-microvolt = <1800000>;
45 qcom,micbias2-microvolt = <1800000>;
46 qcom,micbias3-microvolt = <1800000>;
47 qcom,micbias4-microvolt = <1800000>;
48 qcom,hphl-jack-type-normally-closed;
49 qcom,ground-jack-type-normally-closed;
50 qcom,mbhc-buttons-vthreshold-microvolt = <75000 150000 237000 500000 500000 500000 500000 500000>;
51 qcom,mbhc-headphone-vthreshold-microvolt = <50000>;
52 };
53
54 /* ... */
55
56 soundwire@3210000 {
57 #address-cells = <2>;
58 #size-cells = <0>;
59 reg = <0x03210000 0x2000>;
60 wcd938x_rx: codec@0,4 {
61 compatible = "sdw20217010d00";
Tom Rini93743d22024-04-01 09:08:13 -040062 reg = <0 4>;
Tom Rini53633a82024-02-29 12:33:36 -050063 qcom,rx-port-mapping = <1 2 3 4 5>;
64 };
65 };
66
67 soundwire@3230000 {
68 #address-cells = <2>;
69 #size-cells = <0>;
70 reg = <0x03230000 0x2000>;
71 wcd938x_tx: codec@0,3 {
72 compatible = "sdw20217010d00";
Tom Rini93743d22024-04-01 09:08:13 -040073 reg = <0 3>;
Tom Rini53633a82024-02-29 12:33:36 -050074 qcom,tx-port-mapping = <2 3 4 5>;
75 };
76 };
77
78...