|
@@ -1050,9 +1050,6 @@ static int soc_bind_dai_link(struct snd_soc_card *card,
|
|
|
const char *platform_name;
|
|
|
int i;
|
|
|
|
|
|
- if (dai_link->ignore)
|
|
|
- return 0;
|
|
|
-
|
|
|
dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name);
|
|
|
|
|
|
if (soc_is_dai_link_bound(card, dai_link)) {
|
|
@@ -1675,7 +1672,7 @@ static int soc_probe_link_dais(struct snd_soc_card *card,
|
|
|
{
|
|
|
struct snd_soc_dai_link *dai_link = rtd->dai_link;
|
|
|
struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
|
|
|
- int i, ret, num;
|
|
|
+ int i, ret;
|
|
|
|
|
|
dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
|
|
|
card->name, rtd->num, order);
|
|
@@ -1721,23 +1718,9 @@ static int soc_probe_link_dais(struct snd_soc_card *card,
|
|
|
soc_dpcm_debugfs_add(rtd);
|
|
|
#endif
|
|
|
|
|
|
- /*
|
|
|
- * most drivers will register their PCMs using DAI link ordering but
|
|
|
- * topology based drivers can use the DAI link id field to set PCM
|
|
|
- * device number and then use rtd + a base offset of the BEs.
|
|
|
- */
|
|
|
- if (rtd->platform->driver->use_dai_pcm_id) {
|
|
|
- if (rtd->dai_link->no_pcm)
|
|
|
- num = rtd->platform->driver->be_pcm_base + rtd->num;
|
|
|
- else
|
|
|
- num = rtd->dai_link->id;
|
|
|
- } else {
|
|
|
- num = rtd->num;
|
|
|
- }
|
|
|
-
|
|
|
if (cpu_dai->driver->compress_new) {
|
|
|
/*create compress_device"*/
|
|
|
- ret = cpu_dai->driver->compress_new(rtd, num);
|
|
|
+ ret = cpu_dai->driver->compress_new(rtd, rtd->num);
|
|
|
if (ret < 0) {
|
|
|
dev_err(card->dev, "ASoC: can't create compress %s\n",
|
|
|
dai_link->stream_name);
|
|
@@ -1747,7 +1730,7 @@ static int soc_probe_link_dais(struct snd_soc_card *card,
|
|
|
|
|
|
if (!dai_link->params) {
|
|
|
/* create the pcm */
|
|
|
- ret = soc_new_pcm(rtd, num);
|
|
|
+ ret = soc_new_pcm(rtd, rtd->num);
|
|
|
if (ret < 0) {
|
|
|
dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
|
|
|
dai_link->stream_name, ret);
|
|
@@ -2093,67 +2076,6 @@ int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour)
|
|
|
EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name);
|
|
|
#endif /* CONFIG_DMI */
|
|
|
|
|
|
-static void soc_check_tplg_fes(struct snd_soc_card *card)
|
|
|
-{
|
|
|
- struct snd_soc_platform *platform;
|
|
|
- struct snd_soc_dai_link *dai_link;
|
|
|
- int i;
|
|
|
-
|
|
|
- list_for_each_entry(platform, &platform_list, list) {
|
|
|
-
|
|
|
- /* does this platform override FEs ? */
|
|
|
- if (!platform->driver->ignore_machine)
|
|
|
- continue;
|
|
|
-
|
|
|
- /* for this machine ? */
|
|
|
- if (strcmp(platform->driver->ignore_machine,
|
|
|
- card->dev->driver->name))
|
|
|
- continue;
|
|
|
-
|
|
|
- /* machine matches, so override the rtd data */
|
|
|
- for (i = 0; i < card->num_links; i++) {
|
|
|
-
|
|
|
- dai_link = &card->dai_link[i];
|
|
|
-
|
|
|
- /* ignore this FE */
|
|
|
- if (dai_link->dynamic) {
|
|
|
- dai_link->ignore = true;
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- dev_info(card->dev, "info: override FE DAI link %s\n",
|
|
|
- card->dai_link[i].name);
|
|
|
-
|
|
|
- /* override platform */
|
|
|
- dai_link->platform_name = platform->component.name;
|
|
|
- dai_link->cpu_dai_name = platform->component.name;
|
|
|
-
|
|
|
- /* convert non BE into BE */
|
|
|
- dai_link->no_pcm = 1;
|
|
|
- dai_link->dpcm_playback = 1;
|
|
|
- dai_link->dpcm_capture = 1;
|
|
|
-
|
|
|
- /* override any BE fixups */
|
|
|
- dai_link->be_hw_params_fixup =
|
|
|
- platform->driver->be_hw_params_fixup;
|
|
|
-
|
|
|
- /* most BE links dont set stream name, so set it to
|
|
|
- * dai link name if it's NULL to help bind widgets.
|
|
|
- */
|
|
|
- if (!dai_link->stream_name)
|
|
|
- dai_link->stream_name = dai_link->name;
|
|
|
- }
|
|
|
-
|
|
|
- /* Inform userspace we are using alternate topology */
|
|
|
- if (platform->driver->topology_name_prefix) {
|
|
|
- snprintf(card->topology_shortname, 32, "%s-%s",
|
|
|
- platform->driver->topology_name_prefix,
|
|
|
- card->name);
|
|
|
- card->name = card->topology_shortname;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
static int snd_soc_instantiate_card(struct snd_soc_card *card)
|
|
|
{
|
|
|
struct snd_soc_codec *codec;
|
|
@@ -2164,9 +2086,6 @@ static int snd_soc_instantiate_card(struct snd_soc_card *card)
|
|
|
mutex_lock(&client_mutex);
|
|
|
mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
|
|
|
|
|
|
- /* check whether any platform is ignore machine FE and using topology */
|
|
|
- soc_check_tplg_fes(card);
|
|
|
-
|
|
|
/* bind DAIs */
|
|
|
for (i = 0; i < card->num_links; i++) {
|
|
|
ret = soc_bind_dai_link(card, &card->dai_link[i]);
|