All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Linux-ALSA <alsa-devel@alsa-project.org>,
	Mark Brown <broonie@kernel.org>
Subject: Applied "ASoC: ti: rx51: consider CPU-Platform possibility" to the asoc tree
Date: Fri, 28 Jun 2019 17:56:23 +0100 (BST)	[thread overview]
Message-ID: <20190628165623.9219E440050@finisterre.sirena.org.uk> (raw)
In-Reply-To: <87mui2trac.wl-kuninori.morimoto.gx@renesas.com>

The patch

   ASoC: ti: rx51: consider CPU-Platform possibility

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.3

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From 569440b46baab1f9f696a688de7860a915cebc26 Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Fri, 28 Jun 2019 10:49:34 +0900
Subject: [PATCH] ASoC: ti: rx51: consider CPU-Platform possibility

commit f0edc6c1ee48 ("ASoC: ti: rx51: don't select unnecessary Platform")

Current ALSA SoC avoid to add duplicate component to rtd,
and this driver was selecting CPU component as Platform component.
Thus, above patch removed Platform settings from this driver,
because it assumed these are same component.

But, some CPU driver is using generic DMAEngine, in such case, both
CPU component and Platform component will have same of_node/name.
In other words, there are some components which are different but
have same of_node/name.

In such case, Card driver definitely need to select Platform even
though it is same as CPU.
It is depends on CPU driver, but is difficult to know it from Card driver.
This patch reverts above patch.

Fixes: commit f0edc6c1ee48 ("ASoC: ti: rx51: don't select unnecessary Platform")
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/ti/rx51.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sound/soc/ti/rx51.c b/sound/soc/ti/rx51.c
index 4270cfb66224..bc6046534fa5 100644
--- a/sound/soc/ti/rx51.c
+++ b/sound/soc/ti/rx51.c
@@ -301,7 +301,8 @@ static int rx51_aic34_init(struct snd_soc_pcm_runtime *rtd)
 SND_SOC_DAILINK_DEFS(aic34,
 	DAILINK_COMP_ARRAY(COMP_CPU("omap-mcbsp.2")),
 	DAILINK_COMP_ARRAY(COMP_CODEC("tlv320aic3x-codec.2-0018",
-				      "tlv320aic3x-hifi")));
+				      "tlv320aic3x-hifi")),
+	DAILINK_COMP_ARRAY(COMP_PLATFORM("omap-mcbsp.2")));
 
 static struct snd_soc_dai_link rx51_dai[] = {
 	{
@@ -378,7 +379,9 @@ static int rx51_soc_probe(struct platform_device *pdev)
 			return -EINVAL;
 		}
 		rx51_dai[0].cpus->dai_name = NULL;
+		rx51_dai[0].platforms->name = NULL;
 		rx51_dai[0].cpus->of_node = dai_node;
+		rx51_dai[0].platforms->of_node = dai_node;
 
 		dai_node = of_parse_phandle(np, "nokia,audio-codec", 0);
 		if (!dai_node) {
-- 
2.20.1

  reply	other threads:[~2019-06-28 16:56 UTC|newest]

Thread overview: 96+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-28  1:45 [PATCH 00/46] ASoC: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28  1:46 ` [PATCH 01/46] ASoC: vc4: vc4_htmi: " Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: vc4: vc4_htmi: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:46 ` [PATCH 02/46] ASoC: atmel: atmel-classd: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: atmel: atmel-classd: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:46 ` [PATCH 03/46] ASoC: atmel: atmel-pdmic: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: atmel: atmel-pdmic: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:46 ` [PATCH 04/46] ASoC: atmel: atmel_wm8904: consider CPU-Platform possibility unnecessary Platform" Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: atmel: atmel_wm8904: consider CPU-Platform possibility unnecessary Platform"" to the asoc tree Mark Brown
2019-06-28  1:46 ` [PATCH 05/46] ASoC: amtel: mikroe-proto: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: amtel: mikroe-proto: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 06/46] ASoC: atmel: sam9g20_wm8731: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: atmel: sam9g20_wm8731: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 07/46] ASoC: atmel: sam9x5_wm8731: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: atmel: sam9x5_wm8731: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 08/46] ASoC: atmel: tse850-pcm5142: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: atmel: tse850-pcm5142: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 09/46] ASoC: fsl: eukrea-tlv320: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: fsl: eukrea-tlv320: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 10/46] ASoC: fsl: fsl-asoc-card: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: fsl: fsl-asoc-card: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 11/46] ASoC: fsl: imx-es8328: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: fsl: imx-es8328: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 12/46] ASoC: fsl: imx-sgtl5000: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: fsl: imx-sgtl5000: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 13/46] ASoC: fsl: imx-spdif: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: fsl: imx-spdif: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 14/46] ASoC: fsl: imx-audmix: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: fsl: imx-audmix: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 15/46] ASoC: kirkwood: armada-370-db: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: kirkwood: armada-370-db: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 16/46] ASoC: mxs: mxs-sgtl5000: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: mxs: mxs-sgtl5000: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 17/46] ASoC: qcom: apq8016_sbc: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: qcom: apq8016_sbc: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 18/46] ASoC: qcom: storm: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: qcom: storm: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 19/46] ASoC: rockchip: rk3288_hdmi_analog: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: rockchip: rk3288_hdmi_analog: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:47 ` [PATCH 20/46] ASoC: rockchip: rockchip_max98090: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: rockchip: rockchip_max98090: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 21/46] ASoC: rockchip: rockchip_rt5645: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: rockchip: rockchip_rt5645: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 22/46] ASoC: samsung: arndale_rt5631: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: samsung: arndale_rt5631: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 23/46] ASoC: samsung: smdk_wm8994: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: samsung: smdk_wm8994: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 24/46] ASoC: samsung: snow: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: samsung: snow: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 25/46] ASoC: samsung: tm2_wm5110: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: samsung: tm2_wm5110: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 26/46] ASoC: sirf: sirf-audio: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: sirf: sirf-audio: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 27/46] ASoC: sunxi: sun4i-codec: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: sunxi: sun4i-codec: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 28/46] ASoC: tegra: tegra_alc5632: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_alc5632: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 29/46] ASoC: tegra: tegra_max98090: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_max98090: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 30/46] ASoC: tegra: tegra_rt5640: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_rt5640: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 31/46] ASoC: tegra: tegra_rt5677: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_rt5677: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:48 ` [PATCH 32/46] ASoC: tegra: tegra_sgtl5000: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_sgtl5000: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 33/46] ASoC: tegra: tegra_wm8753: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_wm8753: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 34/46] ASoC: tegra: tegra_wm8903: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_wm8903: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 35/46] ASoC: tegra: tegra_wm9712: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: tegra_wm9712: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 36/46] ASoC: tegra: trimslice: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: tegra: trimslice: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 37/46] ASoC: ti: davinci-evm: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: ti: davinci-evm: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 38/46] ASoC: ti: omap-abe-twl6040: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: ti: omap-abe-twl6040: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 39/46] ASoC: ti: omap-hdmi: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: ti: omap-hdmi: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 40/46] ASoC: ti: omap-twl4030: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: ti: omap-twl4030: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 41/46] ASoC: ti: rx51: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Mark Brown [this message]
2019-06-28  1:49 ` [PATCH 42/46] ASoC: ux500: mop500: " Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: ux500: mop500: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 43/46] ASoC: simple-card-utils: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: simple-card-utils: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 44/46] ASoC: qcom: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: qcom: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:49 ` [PATCH 45/46] ASoC: rockchip: rk3399_gru_sound: consider CPU-Platform possibility Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: rockchip: rk3399_gru_sound: consider CPU-Platform possibility" to the asoc tree Mark Brown
2019-06-28  1:50 ` [PATCH 46/46] ASoC: soc-utils: respawn dummy Platform Kuninori Morimoto
2019-06-28 16:56   ` Applied "ASoC: soc-utils: respawn dummy Platform" to the asoc tree Mark Brown
2019-07-03  6:39   ` [PATCH 46/46] ASoC: soc-utils: respawn dummy Platform Tzung-Bi Shih
2019-07-03  6:56     ` Kuninori Morimoto
2019-07-03  7:02       ` Tzung-Bi Shih

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=20190628165623.9219E440050@finisterre.sirena.org.uk \
    --to=broonie@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    /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.