ASoC: Intel: Boards: tgl_max98373: Update TDM configuration in hw_params
authorDharageswari R <dharageswari.r@intel.com>
Thu, 25 Jun 2020 19:13:04 +0000 (14:13 -0500)
committerMark Brown <broonie@kernel.org>
Fri, 26 Jun 2020 12:35:22 +0000 (13:35 +0100)
This patch updates tx_mask, so that (0-3)slots are reserved for
Maxim amps to feedback data.

V0->slot0,
I0->slot1,
V1->slot2,
I1->slot3.

also update slot_width in tdm configuration to 24 as the BE
configuration is 24 in topology.

Signed-off-by: Dharageswari R <dharageswari.r@intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/20200625191308.3322-14-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/intel/boards/sof_maxim_common.c

index f8871af..123e6e5 100644 (file)
@@ -49,11 +49,11 @@ static int max98373_hw_params(struct snd_pcm_substream *substream,
        for_each_rtd_codec_dais(rtd, j, codec_dai) {
                if (!strcmp(codec_dai->component->name, MAX_98373_DEV0_NAME)) {
                        /* DEV0 tdm slot configuration */
-                       snd_soc_dai_set_tdm_slot(codec_dai, 0x30, 3, 8, 16);
+                       snd_soc_dai_set_tdm_slot(codec_dai, 0x03, 3, 8, 24);
                }
                if (!strcmp(codec_dai->component->name, MAX_98373_DEV1_NAME)) {
                        /* DEV1 tdm slot configuration */
-                       snd_soc_dai_set_tdm_slot(codec_dai, 0xC0, 3, 8, 16);
+                       snd_soc_dai_set_tdm_slot(codec_dai, 0x0C, 3, 8, 24);
                }
        }
        return 0;