Skip to content
Snippets Groups Projects
Commit daaeba26 authored by Fei Shao's avatar Fei Shao Committed by Greg Kroah-Hartman
Browse files

arm64: dts: mediatek: mt8195-cherry: Use correct audio codec DAI


[ Upstream commit 7d5794e6d964940e46286fadbe69a3245fa51e44 ]

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: 87728e3c ("arm64: dts: mediatek: mt8195-cherry: Specify sound DAI links and routing")
Signed-off-by: default avatarFei Shao <fshao@chromium.org>
Link: https://lore.kernel.org/r/20241021114318.1358681-1-fshao@chromium.org


Signed-off-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 03af5fdd
No related branches found
No related tags found
1 merge request!176🤖 Sync Bot: Update v6.12-ktn to Latest Stable Kernel (v6.12.4)
...@@ -438,7 +438,7 @@ audio_codec: codec@1a { ...@@ -438,7 +438,7 @@ audio_codec: codec@1a {
/* Realtek RT5682i or RT5682s, sharing the same configuration */ /* Realtek RT5682i or RT5682s, sharing the same configuration */
reg = <0x1a>; reg = <0x1a>;
interrupts-extended = <&pio 89 IRQ_TYPE_EDGE_BOTH>; interrupts-extended = <&pio 89 IRQ_TYPE_EDGE_BOTH>;
#sound-dai-cells = <0>; #sound-dai-cells = <1>;
realtek,jd-src = <1>; realtek,jd-src = <1>;
AVDD-supply = <&mt6359_vio18_ldo_reg>; AVDD-supply = <&mt6359_vio18_ldo_reg>;
...@@ -1181,7 +1181,7 @@ hs-playback-dai-link { ...@@ -1181,7 +1181,7 @@ hs-playback-dai-link {
link-name = "ETDM1_OUT_BE"; link-name = "ETDM1_OUT_BE";
mediatek,clk-provider = "cpu"; mediatek,clk-provider = "cpu";
codec { codec {
sound-dai = <&audio_codec>; sound-dai = <&audio_codec 0>;
}; };
}; };
...@@ -1189,7 +1189,7 @@ hs-capture-dai-link { ...@@ -1189,7 +1189,7 @@ hs-capture-dai-link {
link-name = "ETDM2_IN_BE"; link-name = "ETDM2_IN_BE";
mediatek,clk-provider = "cpu"; mediatek,clk-provider = "cpu";
codec { codec {
sound-dai = <&audio_codec>; sound-dai = <&audio_codec 0>;
}; };
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment