Commit 76afa643 authored by Shreyas NC's avatar Shreyas NC Committed by Mark Brown

ASoC: Add initial support for multiple CPU DAIs

ASoC core supports multiple codec DAIs but supports only a CPU DAI.
To support multiple cpu DAIs, add cpu_dai and num_cpu_dai in
snd_soc_dai_link and snd_soc_pcm_runtime structures similar to
support for codec_dai. This is intended as a preparatory patch to
eventually support the unification of the Codec and CPU DAI.

Inline with multiple codec DAI approach, add support to allocate,
init, bind and probe multiple cpu_dai on init if driver specifies
that. Also add support to loop over multiple cpu_dai during
suspend and resume.

This is intended as a preparatory patch to eventually unify the CPU
and Codec DAI into DAI components.
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: default avatarBard Liao <yung-chuan.liao@linux.intel.com>
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarShreyas NC <shreyas.nc@intel.com>
Link: https://lore.kernel.org/r/20200225133917.21314-2-yung-chuan.liao@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent f5e056e1
...@@ -855,6 +855,11 @@ struct snd_soc_dai_link { ...@@ -855,6 +855,11 @@ struct snd_soc_dai_link {
((platform) = &link->platforms[i]); \ ((platform) = &link->platforms[i]); \
(i)++) (i)++)
#define for_each_link_cpus(link, i, cpu) \
for ((i) = 0; \
((i) < link->num_cpus) && ((cpu) = &link->cpus[i]); \
(i)++)
/* /*
* Sample 1 : Single CPU/Codec/Platform * Sample 1 : Single CPU/Codec/Platform
* *
...@@ -1132,6 +1137,9 @@ struct snd_soc_pcm_runtime { ...@@ -1132,6 +1137,9 @@ struct snd_soc_pcm_runtime {
struct snd_soc_dai **codec_dais; struct snd_soc_dai **codec_dais;
unsigned int num_codecs; unsigned int num_codecs;
struct snd_soc_dai **cpu_dais;
unsigned int num_cpus;
struct delayed_work delayed_work; struct delayed_work delayed_work;
void (*close_delayed_work_func)(struct snd_soc_pcm_runtime *rtd); void (*close_delayed_work_func)(struct snd_soc_pcm_runtime *rtd);
#ifdef CONFIG_DEBUG_FS #ifdef CONFIG_DEBUG_FS
...@@ -1159,6 +1167,13 @@ struct snd_soc_pcm_runtime { ...@@ -1159,6 +1167,13 @@ struct snd_soc_pcm_runtime {
#define for_each_rtd_codec_dai_rollback(rtd, i, dai) \ #define for_each_rtd_codec_dai_rollback(rtd, i, dai) \
for (; (--(i) >= 0) && ((dai) = rtd->codec_dais[i]);) for (; (--(i) >= 0) && ((dai) = rtd->codec_dais[i]);)
#define for_each_rtd_cpu_dai(rtd, i, dai)\
for ((i) = 0; \
((i) < rtd->num_cpus) && ((dai) = rtd->cpu_dais[i]); \
(i)++)
#define for_each_rtd_cpu_dai_rollback(rtd, i, dai) \
for (; (--(i) >= 0) && ((dai) = rtd->cpu_dais[i]);)
void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd); void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd);
/* mixer control */ /* mixer control */
......
...@@ -483,6 +483,14 @@ static struct snd_soc_pcm_runtime *soc_new_pcm_runtime( ...@@ -483,6 +483,14 @@ static struct snd_soc_pcm_runtime *soc_new_pcm_runtime(
if (!rtd->codec_dais) if (!rtd->codec_dais)
goto free_rtd; goto free_rtd;
/*
* for rtd->cpu_dais
*/
rtd->cpu_dais = devm_kcalloc(dev, dai_link->num_cpus,
sizeof(struct snd_soc_dai *),
GFP_KERNEL);
if (!rtd->cpu_dais)
goto free_rtd;
/* /*
* rtd remaining settings * rtd remaining settings
*/ */
...@@ -833,7 +841,7 @@ static int soc_dai_link_sanity_check(struct snd_soc_card *card, ...@@ -833,7 +841,7 @@ static int soc_dai_link_sanity_check(struct snd_soc_card *card,
struct snd_soc_dai_link *link) struct snd_soc_dai_link *link)
{ {
int i; int i;
struct snd_soc_dai_link_component *codec, *platform; struct snd_soc_dai_link_component *cpu, *codec, *platform;
for_each_link_codecs(link, i, codec) { for_each_link_codecs(link, i, codec) {
/* /*
...@@ -882,44 +890,38 @@ static int soc_dai_link_sanity_check(struct snd_soc_card *card, ...@@ -882,44 +890,38 @@ static int soc_dai_link_sanity_check(struct snd_soc_card *card,
return -EPROBE_DEFER; return -EPROBE_DEFER;
} }
/* FIXME */ for_each_link_cpus(link, i, cpu) {
if (link->num_cpus > 1) { /*
dev_err(card->dev, * CPU device may be specified by either name or OF node, but
"ASoC: multi cpu is not yet supported %s\n", * can be left unspecified, and will be matched based on DAI
link->name); * name alone..
return -EINVAL; */
} if (cpu->name && cpu->of_node) {
dev_err(card->dev,
/* "ASoC: Neither/both cpu name/of_node are set for %s\n",
* CPU device may be specified by either name or OF node, but link->name);
* can be left unspecified, and will be matched based on DAI return -EINVAL;
* name alone.. }
*/
if (link->cpus->name && link->cpus->of_node) {
dev_err(card->dev,
"ASoC: Neither/both cpu name/of_node are set for %s\n",
link->name);
return -EINVAL;
}
/* /*
* Defer card registration if cpu dai component is not added to * Defer card registration if cpu dai component is not added to
* component list. * component list.
*/ */
if ((link->cpus->of_node || link->cpus->name) && if ((cpu->of_node || cpu->name) &&
!soc_find_component(link->cpus)) !soc_find_component(cpu))
return -EPROBE_DEFER; return -EPROBE_DEFER;
/* /*
* At least one of CPU DAI name or CPU device name/node must be * At least one of CPU DAI name or CPU device name/node must be
* specified * specified
*/ */
if (!link->cpus->dai_name && if (!cpu->dai_name &&
!(link->cpus->name || link->cpus->of_node)) { !(cpu->name || cpu->of_node)) {
dev_err(card->dev, dev_err(card->dev,
"ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n", "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
link->name); link->name);
return -EINVAL; return -EINVAL;
}
} }
return 0; return 0;
...@@ -962,7 +964,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card, ...@@ -962,7 +964,7 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
struct snd_soc_dai_link *dai_link) struct snd_soc_dai_link *dai_link)
{ {
struct snd_soc_pcm_runtime *rtd; struct snd_soc_pcm_runtime *rtd;
struct snd_soc_dai_link_component *codec, *platform; struct snd_soc_dai_link_component *codec, *platform, *cpu;
struct snd_soc_component *component; struct snd_soc_component *component;
int i, ret; int i, ret;
...@@ -987,14 +989,19 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card, ...@@ -987,14 +989,19 @@ int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
if (!rtd) if (!rtd)
return -ENOMEM; return -ENOMEM;
/* FIXME: we need multi CPU support in the future */ rtd->num_cpus = dai_link->num_cpus;
rtd->cpu_dai = snd_soc_find_dai(dai_link->cpus); for_each_link_cpus(dai_link, i, cpu) {
if (!rtd->cpu_dai) { rtd->cpu_dais[i] = snd_soc_find_dai(cpu);
dev_info(card->dev, "ASoC: CPU DAI %s not registered\n", if (!rtd->cpu_dais[i]) {
dai_link->cpus->dai_name); dev_info(card->dev, "ASoC: CPU DAI %s not registered\n",
goto _err_defer; cpu->dai_name);
goto _err_defer;
}
snd_soc_rtd_add_component(rtd, rtd->cpu_dais[i]->component);
} }
snd_soc_rtd_add_component(rtd, rtd->cpu_dai->component);
/* Single cpu links expect cpu and cpu_dai in runtime data */
rtd->cpu_dai = rtd->cpu_dais[0];
/* Find CODEC from registered CODECs */ /* Find CODEC from registered CODECs */
rtd->num_codecs = dai_link->num_codecs; rtd->num_codecs = dai_link->num_codecs;
...@@ -1114,7 +1121,8 @@ static int soc_init_pcm_runtime(struct snd_soc_card *card, ...@@ -1114,7 +1121,8 @@ static int soc_init_pcm_runtime(struct snd_soc_card *card,
dai_link->stream_name, ret); dai_link->stream_name, ret);
return ret; return ret;
} }
ret = soc_dai_pcm_new(&cpu_dai, 1, rtd); ret = soc_dai_pcm_new(rtd->cpu_dais,
rtd->num_cpus, rtd);
if (ret < 0) if (ret < 0)
return ret; return ret;
ret = soc_dai_pcm_new(rtd->codec_dais, ret = soc_dai_pcm_new(rtd->codec_dais,
...@@ -1306,6 +1314,7 @@ static void soc_remove_link_dais(struct snd_soc_card *card) ...@@ -1306,6 +1314,7 @@ static void soc_remove_link_dais(struct snd_soc_card *card)
{ {
int i; int i;
struct snd_soc_dai *codec_dai; struct snd_soc_dai *codec_dai;
struct snd_soc_dai *cpu_dai;
struct snd_soc_pcm_runtime *rtd; struct snd_soc_pcm_runtime *rtd;
int order; int order;
...@@ -1315,14 +1324,15 @@ static void soc_remove_link_dais(struct snd_soc_card *card) ...@@ -1315,14 +1324,15 @@ static void soc_remove_link_dais(struct snd_soc_card *card)
for_each_rtd_codec_dai(rtd, i, codec_dai) for_each_rtd_codec_dai(rtd, i, codec_dai)
soc_remove_dai(codec_dai, order); soc_remove_dai(codec_dai, order);
soc_remove_dai(rtd->cpu_dai, order); for_each_rtd_cpu_dai(rtd, i, cpu_dai)
soc_remove_dai(cpu_dai, order);
} }
} }
} }
static int soc_probe_link_dais(struct snd_soc_card *card) static int soc_probe_link_dais(struct snd_soc_card *card)
{ {
struct snd_soc_dai *codec_dai; struct snd_soc_dai *codec_dai, *cpu_dai;
struct snd_soc_pcm_runtime *rtd; struct snd_soc_pcm_runtime *rtd;
int i, order, ret; int i, order, ret;
...@@ -1333,9 +1343,12 @@ static int soc_probe_link_dais(struct snd_soc_card *card) ...@@ -1333,9 +1343,12 @@ static int soc_probe_link_dais(struct snd_soc_card *card)
"ASoC: probe %s dai link %d late %d\n", "ASoC: probe %s dai link %d late %d\n",
card->name, rtd->num, order); card->name, rtd->num, order);
ret = soc_probe_dai(rtd->cpu_dai, order); /* probe the CPU DAI */
if (ret) for_each_rtd_cpu_dai(rtd, i, cpu_dai) {
return ret; ret = soc_probe_dai(cpu_dai, order);
if (ret)
return ret;
}
/* probe the CODEC DAI */ /* probe the CODEC DAI */
for_each_rtd_codec_dai(rtd, i, codec_dai) { for_each_rtd_codec_dai(rtd, i, codec_dai) {
...@@ -1467,8 +1480,9 @@ static void soc_remove_aux_devices(struct snd_soc_card *card) ...@@ -1467,8 +1480,9 @@ static void soc_remove_aux_devices(struct snd_soc_card *card)
int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd, int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
unsigned int dai_fmt) unsigned int dai_fmt)
{ {
struct snd_soc_dai *cpu_dai = rtd->cpu_dai; struct snd_soc_dai *cpu_dai;
struct snd_soc_dai *codec_dai; struct snd_soc_dai *codec_dai;
unsigned int inv_dai_fmt;
unsigned int i; unsigned int i;
int ret; int ret;
...@@ -1485,33 +1499,33 @@ int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd, ...@@ -1485,33 +1499,33 @@ int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
* Flip the polarity for the "CPU" end of a CODEC<->CODEC link * Flip the polarity for the "CPU" end of a CODEC<->CODEC link
* the component which has non_legacy_dai_naming is Codec * the component which has non_legacy_dai_naming is Codec
*/ */
if (cpu_dai->component->driver->non_legacy_dai_naming) { inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
unsigned int inv_dai_fmt; switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
case SND_SOC_DAIFMT_CBM_CFM:
inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK; inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) { break;
case SND_SOC_DAIFMT_CBM_CFM: case SND_SOC_DAIFMT_CBM_CFS:
inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS; inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
break; break;
case SND_SOC_DAIFMT_CBM_CFS: case SND_SOC_DAIFMT_CBS_CFM:
inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM; inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
break; break;
case SND_SOC_DAIFMT_CBS_CFM: case SND_SOC_DAIFMT_CBS_CFS:
inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS; inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
break; break;
case SND_SOC_DAIFMT_CBS_CFS:
inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
break;
}
dai_fmt = inv_dai_fmt;
} }
for_each_rtd_cpu_dai(rtd, i, cpu_dai) {
unsigned int fmt = dai_fmt;
ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt); if (cpu_dai->component->driver->non_legacy_dai_naming)
if (ret != 0 && ret != -ENOTSUPP) { fmt = inv_dai_fmt;
dev_warn(cpu_dai->dev,
"ASoC: Failed to set DAI format: %d\n", ret); ret = snd_soc_dai_set_fmt(cpu_dai, fmt);
return ret; if (ret != 0 && ret != -ENOTSUPP) {
dev_warn(cpu_dai->dev,
"ASoC: Failed to set DAI format: %d\n", ret);
return ret;
}
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment