arm64: dts: mediatek: mt8195-cherry: Use correct audio codec DAI
authorFei Shao <fshao@chromium.org>
Mon, 21 Oct 2024 11:39:33 +0000 (19:39 +0800)
committerAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Mon, 21 Oct 2024 14:12:58 +0000 (16:12 +0200)
The RT5682i and RT5682s drivers describe two DAIs: AIF1 supports both
playback and capture, while AIF2 supports capture only.

Cherry doesn't specify which DAI to use. Although this doesn't cause
real issues because AIF1 happens to be the first DAI, it should be
corrected:
    codec@1a: #sound-dai-cells: 1 was expected

Update #sound-dai-cells to 1 and adjust DAI link usages accordingly.

Fixes: 87728e3ccf35 ("arm64: dts: mediatek: mt8195-cherry: Specify sound DAI links and routing")
Signed-off-by: Fei Shao <fshao@chromium.org>
Link: https://lore.kernel.org/r/20241021114318.1358681-1-fshao@chromium.org
Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
arch/arm64/boot/dts/mediatek/mt8195-cherry.dtsi

index 75d56b2d5a3d346734012062db8cb0ac885b88da..2c7b2223ee76b13d76ab3886f4b35ad0d63bfc20 100644 (file)
                /* Realtek RT5682i or RT5682s, sharing the same configuration */
                reg = <0x1a>;
                interrupts-extended = <&pio 89 IRQ_TYPE_EDGE_BOTH>;
-               #sound-dai-cells = <0>;
+               #sound-dai-cells = <1>;
                realtek,jd-src = <1>;
 
                AVDD-supply = <&mt6359_vio18_ldo_reg>;
                link-name = "ETDM1_OUT_BE";
                mediatek,clk-provider = "cpu";
                codec {
-                       sound-dai = <&audio_codec>;
+                       sound-dai = <&audio_codec 0>;
                };
        };
 
                link-name = "ETDM2_IN_BE";
                mediatek,clk-provider = "cpu";
                codec {
-                       sound-dai = <&audio_codec>;
+                       sound-dai = <&audio_codec 0>;
                };
        };