]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: max98090/91: added DAPM widget for digital output for max98091
authorSharique Mohammad <sharq0406@gmail.com>
Tue, 21 Oct 2025 14:56:11 +0000 (16:56 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 22 Oct 2025 14:27:08 +0000 (15:27 +0100)
Added DAPM widget for digital output path from codec to the
CPU DAI (capture) for secondary digital mic. "AIFOUT2L" is the
left audio channel output and "AIFOUT2R" is the right audio
channel output, both belonging to the stream "HiFi Capture".
Stream index given as 2 and 3 respectively, as 0 and 1 belongs
to "AIFOUTL" and "AIFOUTR" of the primary digital mic. Now
with this commit the total channels increase to 4, so changing
the ".channels_max" for ".capture" to 4 accordingly in the
"struct snd_soc_dai_driver max98090_dai". This will work
for max98090 and max98091 both because in case of max98090
only 1 or 2 channels could be used and in case of max98091
maximum 4 channels could be used. Both the cases get satisfied with
".channels_max" as 4.

Signed-off-by: Sharique Mohammad <sharq0406@gmail.com>
Link: https://patch.msgid.link/20251021145611.1750689-1-sharq0406@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/max98090.c

index b3101e07906cd1422c5ef2eeca0b6700093543a2..ceb5b8c3bb5c81e8e7cf94937674ea16652dfcbb 100644 (file)
@@ -1241,6 +1241,11 @@ static const struct snd_soc_dapm_widget max98091_dapm_widgets[] = {
                         SND_SOC_DAPM_POST_PMU),
        SND_SOC_DAPM_SUPPLY("DMIC34_HPF", M98090_REG_FILTER_CONFIG,
                M98090_FLT_DMIC34HPF_SHIFT, 0, NULL, 0),
+
+       SND_SOC_DAPM_AIF_OUT("AIFOUT2L", "HiFi Capture", 2,
+               SND_SOC_NOPM, 0, 0),
+       SND_SOC_DAPM_AIF_OUT("AIFOUT2R", "HiFi Capture", 3,
+               SND_SOC_NOPM, 0, 0),
 };
 
 static const struct snd_soc_dapm_route max98090_dapm_routes[] = {
@@ -2371,7 +2376,7 @@ static struct snd_soc_dai_driver max98090_dai = {
        .capture = {
                .stream_name = "HiFi Capture",
                .channels_min = 1,
-               .channels_max = 2,
+               .channels_max = 4,
                .rates = MAX98090_RATES,
                .formats = MAX98090_FORMATS,
        },