All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
To: Mark Brown <broonie@kernel.org>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>
Subject: [PATCH 01/44] ASoC: soc-core: allow no Platform on dai_link
Date: 07 Jun 2019 11:21:45 +0900	[thread overview]
Message-ID: <875zpidz7e.wl-kuninori.morimoto.gx@renesas.com> (raw)
In-Reply-To: <877e9ydz81.wl-kuninori.morimoto.gx@renesas.com>


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

dai_link is used to selecting Component (= CPU/Codec/Platform) and
DAI (= CPU/Codec). And selected CPU/Codec/Platform components are
*listed* on Card.

Many drivers don't need special Platform component, but was
mandatory at legacy style ALSA SoC.
Thus, there is this kind of settings on many drivers.

	dai_link->platform_of_node = dai_link->cpu_of_node;

In this case, soc_bind_dai_link() will pick-up "CPU component" as
"Platform component", and try to add it to snd_soc_pcm_runtime.
But it will be ignored, because it is already added when CPU bindings.

Historically, this kind of "CPU component" is used/selected as
"Platform" on many ALSA SoC drivers.
OTOH, Dummy Platform will be selected automatically by ALSA SoC if
driver doesn't have Platform settings.

These indicates that there are 2 type of Platforms exist at current
ALSA SoC if driver doesn't need special Platform.

	1) use Dummy Platform as Platform component
	2) use CPU component  as Platform component

ALSA SoC will call Dummy Platform callback function if it is using
Dummy Platform, but it is completely pointless. Because it is the
sound card which doesn't need special Platform.

Thus, the behavior we request to ALSA SoC is selecting 2) automatically
instead of 1) if sound card doesn't need special Platform.
And, 2) means "do nothing" as above explain.

These were needed at legacy style dai_link, but is no longer needed
at modern style dai_link anymore.

This patch allows "no Platform" settings on dai_link, and will do
nothing for it if there was no platform settings. This is same as 2).

By this patch, all drivers which is selecting "CPU component" as
"Platform" can remove such settings.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 include/sound/soc.h  |  2 +-
 sound/soc/soc-core.c | 64 +++++++++++++++++++++++++++-------------------------
 2 files changed, 34 insertions(+), 32 deletions(-)

diff --git a/include/sound/soc.h b/include/sound/soc.h
index 055e6d0..2ba3099 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -926,7 +926,7 @@ struct snd_soc_dai_link {
 	/*
 	 * You MAY specify the link's platform/PCM/DMA driver, either by
 	 * device name, or by DT/OF node, but not both. Some forms of link
-	 * do not need a platform.
+	 * do not need a platform. In such case, platforms are not mandatory.
 	 */
 	struct snd_soc_dai_link_component *platforms;
 	unsigned int num_platforms;
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 94a36ee..db6e47a 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -788,6 +788,9 @@ static int snd_soc_is_matching_component(
 {
 	struct device_node *component_of_node;
 
+	if (!dlc)
+		return 0;
+
 	component_of_node = soc_component_to_node(component);
 
 	if (dlc->of_node && component_of_node != dlc->of_node)
@@ -1053,20 +1056,12 @@ static void soc_remove_dai_links(struct snd_soc_card *card)
 	}
 }
 
-static struct snd_soc_dai_link_component dummy_link = COMP_DUMMY();
-
 static int soc_init_dai_link(struct snd_soc_card *card,
 			     struct snd_soc_dai_link *link)
 {
 	int i;
 	struct snd_soc_dai_link_component *codec;
 
-	/* default Platform */
-	if (!link->platforms || !link->num_platforms) {
-		link->platforms = &dummy_link;
-		link->num_platforms = 1;
-	}
-
 	for_each_link_codecs(link, i, codec) {
 		/*
 		 * Codec must be specified by 1 of name or OF node,
@@ -1086,32 +1081,39 @@ static int soc_init_dai_link(struct snd_soc_card *card,
 		}
 	}
 
-	/* FIXME */
-	if (link->num_platforms > 1) {
-		dev_err(card->dev,
-			"ASoC: multi platform is not yet supported %s\n",
-			link->name);
-		return -EINVAL;
-	}
-
 	/*
-	 * Platform may be specified by either name or OF node, but
-	 * can be left unspecified, and a dummy platform will be used.
+	 * Platform may be specified by either name or OF node,
+	 * or no Platform.
+	 *
+	 * FIXME
+	 *
+	 * We need multi-platform support
 	 */
-	if (link->platforms->name && link->platforms->of_node) {
-		dev_err(card->dev,
-			"ASoC: Both platform name/of_node are set for %s\n",
-			link->name);
-		return -EINVAL;
-	}
+	if (link->num_platforms > 0) {
 
-	/*
-	 * Defer card registartion if platform dai component is not added to
-	 * component list.
-	 */
-	if ((link->platforms->of_node || link->platforms->name) &&
-	    !soc_find_component(link->platforms->of_node, link->platforms->name))
-		return -EPROBE_DEFER;
+		if (link->num_platforms > 1) {
+			dev_err(card->dev,
+				"ASoC: multi platform is not yet supported %s\n",
+				link->name);
+			return -EINVAL;
+		}
+
+		if (link->platforms->name && link->platforms->of_node) {
+			dev_err(card->dev,
+				"ASoC: Both platform name/of_node are set for %s\n",
+				link->name);
+			return -EINVAL;
+		}
+
+		/*
+		 * Defer card registartion if platform dai component is not
+		 * added to component list.
+		 */
+		if ((link->platforms->of_node || link->platforms->name) &&
+		    !soc_find_component(link->platforms->of_node,
+					link->platforms->name))
+			return -EPROBE_DEFER;
+	}
 
 	/* FIXME */
 	if (link->num_cpus > 1) {
-- 
2.7.4

  reply	other threads:[~2019-06-07  2:21 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-07  2:21 [PATCH 00/44] ASoC: no Platform support Kuninori Morimoto
2019-06-07  2:21 ` Kuninori Morimoto [this message]
2019-06-07  2:22 ` [PATCH 02/44] ASoC: vc4: vc4_hdmi: don't select unnecessary Platform Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 03/44] ASoC: atmel: atmel-classd: " Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 04/44] ASoC: atmel: atmel-pdmic: " Kuninori Morimoto
2019-06-07  2:22 ` [PATCH 05/44] ASoC: atmel: atmel_wm8904: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 06/44] ASoC: atmel: mikroe-proto: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 07/44] ASoC: atmel: sam9g20_wm8731: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 08/44] ASoC: atmel: sam9x5_wm8731: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 09/44] ASoC: atmel: tse850-pcm5142: " Kuninori Morimoto
2019-06-07  2:23 ` [PATCH 10/44] ASoC: fsl: eukrea-tlv320: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 11/44] ASoC: fsl: fsl-asoc-card: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 12/44] ASoC: fsl: imx-es8328: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 13/44] ASoC: fsl: imx-sgtl5000: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 14/44] ASoC: fsl: imx-spdif: " Kuninori Morimoto
2019-06-07  2:24 ` [PATCH 15/44] ASoC: fsl: imx-audmix: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 16/44] ASoC: kirkwood: armada-370-db: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 17/44] ASoC: mxs: mxs-sgtl5000: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 18/44] ASoC: qcom: apq8016_sbc: " Kuninori Morimoto
2019-06-07  2:25 ` [PATCH 19/44] ASoC: qcom: storm: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 20/44] ASoC: rockchip: rk3288_hdmi_analog: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 21/44] ASoC: rockchip: rockchip_max98090: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 22/44] ASoC: rockchip: rockchip_rt5645: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 23/44] ASoC: samsung: arndale_rt5631: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 24/44] ASoC: samsung: smdk_wm8994: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 25/44] ASoC: samsung: snow: " Kuninori Morimoto
2019-06-07  2:26 ` [PATCH 26/44] ASoC: samsung: tm2_wm5110: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 27/44] ASoC: sirf: sirf-audio: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 28/44] ASoC: sunxi: sun4i-codec: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 29/44] ASoC: tegra: tegra_alc5632: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 30/44] ASoC: tegra: tegra_max98090: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 31/44] ASoC: tegra: tegra_rt5640: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 32/44] ASoC: tegra: tegra_rt5677: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 33/44] ASoC: tegra: tegra_sgtl5000: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 34/44] ASoC: tegra: tegra_wm8753: " Kuninori Morimoto
2019-06-07  2:27 ` [PATCH 35/44] ASoC: tegra: tegra_wm8903: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 36/44] ASoC: tegra: tegra_wm9712: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 37/44] ASoC: tegra: trimslice: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 38/44] ASoC: ti: davinci-evm: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 39/44] ASoC: ti: omap-abe-twl6040: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 40/44] ASoC: ti: omap-hdmi: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 41/44] ASoC: ti: omap-twl4030: " Kuninori Morimoto
2019-06-07  2:28 ` [PATCH 42/44] ASoC: ti: rx51: " Kuninori Morimoto
2019-06-07  2:29 ` [PATCH 43/44] ASoC: ux500: mop500: " Kuninori Morimoto
2019-06-07  2:29 ` [PATCH 44/44] ASoC: soc-utils: remove dummy Platform Kuninori Morimoto
2019-06-07  3:57 ` [PATCH 00/44] ASoC: no Platform support Kuninori Morimoto
2019-06-07  3:58   ` [PATCH 1/3] ASoC: simple-card-utils: don't select unnecessary Platform Kuninori Morimoto
2019-06-07  3:58   ` [PATCH 2/3] ASoC: qcom: " Kuninori Morimoto
2019-06-07  3:59   ` [PATCH 3/3] ASoC: rockchip: rk3399_gru_sound: " Kuninori Morimoto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=875zpidz7e.wl-kuninori.morimoto.gx@renesas.com \
    --to=kuninori.morimoto.gx@renesas.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.