-----Original Message----- From: Pierre-Louis Bossart [mailto:pierre-louis.bossart@linux.intel.com] Sent: Thursday, January 16, 2020 9:48 AM To: Bard liao yung-chuan.liao@linux.intel.com; broonie@kernel.org; tiwai@suse.de Cc: alsa-devel@alsa-project.org; liam.r.girdwood@linux.intel.com; kuninori.morimoto.gx@renesas.com; Liao, Bard bard.liao@intel.com Subject: Re: [alsa-devel] [PATCH RFC v2 2/4] ASoC: Add multiple CPU DAI support for PCM ops
@@ -1810,18 +1972,22 @@ static int dpcm_apply_symmetry(struct
snd_pcm_substream *fe_substream,
{ struct snd_soc_dpcm *dpcm; struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
- struct snd_soc_dai *fe_cpu_dai = fe->cpu_dai;
struct snd_soc_dai *fe_cpu_dai; int err;
int i;
/* apply symmetry for FE */ if (soc_pcm_has_symmetry(fe_substream)) fe_substream->runtime->hw.info |=
SNDRV_PCM_INFO_JOINT_DUPLEX;
/* Symmetry only applies if we've got an active stream. */
- if (fe_cpu_dai->active) {
err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
if (err < 0)
return err;
- /* Do we need to support Multi cpu for FE? */
- for_each_rtd_cpu_dai(fe, i, fe_cpu_dai) {
if (fe_cpu_dai->active) {
err = soc_pcm_apply_symmetry(fe_substream,
fe_cpu_dai);
if (err < 0)
return err;
}
that part seems inconsistent with Patch 4 where you add warnings/error everywhere there's a FE with num_cpus>1
Actually, I have a question here. Do we need to support Multi cpu for FE? If yes, what is the use case?