ASoC: allow up to eight CPU/codec DAIs
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Wed, 17 Jan 2024 16:01:44 +0000 (17:01 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 22 Jan 2024 15:31:16 +0000 (15:31 +0000)
Sound card on Qualcomm X1E80100 CRD board will use eight DAIs in one DAI
link, so increase the limit.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://msgid.link/r/20240117160144.1305127-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c

index f8524b5bfb330652afb48091b7afab12b1a70d6e..516350533e73f8ee1084164e44068f825eb7fafe 100644 (file)
@@ -1037,7 +1037,7 @@ component_dai_empty:
        return -EINVAL;
 }
 
-#define MAX_DEFAULT_CH_MAP_SIZE 7
+#define MAX_DEFAULT_CH_MAP_SIZE 8
 static struct snd_soc_dai_link_ch_map default_ch_map_sync[MAX_DEFAULT_CH_MAP_SIZE] = {
        { .cpu = 0, .codec = 0 },
        { .cpu = 1, .codec = 1 },
@@ -1046,6 +1046,7 @@ static struct snd_soc_dai_link_ch_map default_ch_map_sync[MAX_DEFAULT_CH_MAP_SIZ
        { .cpu = 4, .codec = 4 },
        { .cpu = 5, .codec = 5 },
        { .cpu = 6, .codec = 6 },
+       { .cpu = 7, .codec = 7 },
 };
 static struct snd_soc_dai_link_ch_map default_ch_map_1cpu[MAX_DEFAULT_CH_MAP_SIZE] = {
        { .cpu = 0, .codec = 0 },
@@ -1055,6 +1056,7 @@ static struct snd_soc_dai_link_ch_map default_ch_map_1cpu[MAX_DEFAULT_CH_MAP_SIZ
        { .cpu = 0, .codec = 4 },
        { .cpu = 0, .codec = 5 },
        { .cpu = 0, .codec = 6 },
+       { .cpu = 0, .codec = 7 },
 };
 static struct snd_soc_dai_link_ch_map default_ch_map_1codec[MAX_DEFAULT_CH_MAP_SIZE] = {
        { .cpu = 0, .codec = 0 },
@@ -1064,6 +1066,7 @@ static struct snd_soc_dai_link_ch_map default_ch_map_1codec[MAX_DEFAULT_CH_MAP_S
        { .cpu = 4, .codec = 0 },
        { .cpu = 5, .codec = 0 },
        { .cpu = 6, .codec = 0 },
+       { .cpu = 7, .codec = 0 },
 };
 static int snd_soc_compensate_channel_connection_map(struct snd_soc_card *card,
                                                     struct snd_soc_dai_link *dai_link)