From: Matthias Kaehlcke <mka@chromium.org>
To: Jeffy Chen <jeffy.chen@rock-chips.com>
Cc: linux-kernel@vger.kernel.org, dgreid@chromium.org,
heiko@sntech.de, briannorris@chromium.org, dianders@chromium.org,
Jaroslav Kysela <perex@perex.cz>,
alsa-devel@alsa-project.org, linux-rockchip@lists.infradead.org,
Mark Brown <broonie@kernel.org>, Takashi Iwai <tiwai@suse.com>,
Liam Girdwood <lgirdwood@gmail.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [RESENT PATCH v7 1/7] ASoC: rockchip: Use codec of_node and dai_name for rt5514 dsp
Date: Thu, 24 Aug 2017 14:19:51 -0700 [thread overview]
Message-ID: <20170824211951.GG173745@google.com> (raw)
In-Reply-To: <20170824045227.15504-2-jeffy.chen@rock-chips.com>
El Thu, Aug 24, 2017 at 12:52:21PM +0800 Jeffy Chen ha dit:
> Currently we are using codec name for rt5514 dsp dai link, use codec
> of_node instead.
>
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
Reviewed-by: Matthias Kaehlcke <mka@chromium.org>
Tested-by: Matthias Kaehlcke <mka@chromium.org>
(The codec is still 'detected' on kevin, with the name spi32765.0)
> Changes in v7:
> Rebase on the newest for-next
>
> Changes in v6: None
> Changes in v3: None
> Changes in v2: None
>
> sound/soc/rockchip/rk3399_gru_sound.c | 34 ++--------------------------------
> 1 file changed, 2 insertions(+), 32 deletions(-)
>
> diff --git a/sound/soc/rockchip/rk3399_gru_sound.c b/sound/soc/rockchip/rk3399_gru_sound.c
> index 566ccb39fb31..cd2fdba922f1 100644
> --- a/sound/soc/rockchip/rk3399_gru_sound.c
> +++ b/sound/soc/rockchip/rk3399_gru_sound.c
> @@ -247,8 +247,6 @@ enum {
> DAILINK_RT5514_DSP,
> };
>
> -#define DAILINK_ENTITIES (DAILINK_DA7219 + 1)
> -
> static struct snd_soc_dai_link rockchip_dailinks[] = {
> [DAILINK_MAX98357A] = {
> .name = "MAX98357A",
> @@ -282,8 +280,7 @@ static struct snd_soc_dai_link rockchip_dailinks[] = {
> [DAILINK_RT5514_DSP] = {
> .name = "RT5514 DSP",
> .stream_name = "Wake on Voice",
> - .codec_name = "snd-soc-dummy",
> - .codec_dai_name = "snd-soc-dummy-dai",
> + .codec_dai_name = "rt5514-dsp-cpu-dai",
> },
> };
>
> @@ -300,17 +297,10 @@ static struct snd_soc_card rockchip_sound_card = {
> .num_controls = ARRAY_SIZE(rockchip_controls),
> };
>
> -static int rockchip_sound_match_stub(struct device *dev, void *data)
> -{
> - return 1;
> -}
> -
> static int rockchip_sound_probe(struct platform_device *pdev)
> {
> struct snd_soc_card *card = &rockchip_sound_card;
> struct device_node *cpu_node;
> - struct device *dev;
> - struct device_driver *drv;
> int i, ret;
>
> cpu_node = of_parse_phandle(pdev->dev.of_node, "rockchip,cpu", 0);
> @@ -319,7 +309,7 @@ static int rockchip_sound_probe(struct platform_device *pdev)
> return -EINVAL;
> }
>
> - for (i = 0; i < DAILINK_ENTITIES; i++) {
> + for (i = 0; i < ARRAY_SIZE(rockchip_dailinks); i++) {
> rockchip_dailinks[i].platform_of_node = cpu_node;
> rockchip_dailinks[i].cpu_of_node = cpu_node;
>
> @@ -332,22 +322,6 @@ static int rockchip_sound_probe(struct platform_device *pdev)
> }
> }
>
> - /**
> - * To acquire the spi driver of the rt5514 and set the dai-links names
> - * for soc_bind_dai_link
> - */
> - drv = driver_find("rt5514", &spi_bus_type);
> - if (!drv) {
> - dev_err(&pdev->dev, "Can not find the rt5514 driver at the spi bus\n");
> - return -EINVAL;
> - }
> -
> - dev = driver_find_device(drv, NULL, NULL, rockchip_sound_match_stub);
> - if (!dev) {
> - dev_err(&pdev->dev, "Can not find the rt5514 device\n");
> - return -ENODEV;
> - }
> -
> /* Set DMIC wakeup delay */
> ret = device_property_read_u32(&pdev->dev, "dmic-wakeup-delay-ms",
> &dmic_wakeup_delay);
> @@ -357,10 +331,6 @@ static int rockchip_sound_probe(struct platform_device *pdev)
> "no optional property 'dmic-wakeup-delay-ms' found, default: no delay\n");
> }
>
> - rockchip_dailinks[DAILINK_RT5514_DSP].cpu_name = kstrdup_const(dev_name(dev), GFP_KERNEL);
> - rockchip_dailinks[DAILINK_RT5514_DSP].cpu_dai_name = kstrdup_const(dev_name(dev), GFP_KERNEL);
> - rockchip_dailinks[DAILINK_RT5514_DSP].platform_name = kstrdup_const(dev_name(dev), GFP_KERNEL);
> -
> card->dev = &pdev->dev;
>
> ret = devm_snd_soc_register_card(&pdev->dev, card);
next prev parent reply other threads:[~2017-08-24 21:19 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-24 4:52 [RESENT PATCH v7 0/7] ASoC: rockchip: Parse dai links from dts Jeffy Chen
2017-08-24 4:52 ` [RESENT PATCH v7 1/7] ASoC: rockchip: Use codec of_node and dai_name for rt5514 dsp Jeffy Chen
2017-08-24 21:19 ` Matthias Kaehlcke [this message]
2017-08-29 19:29 ` Applied "ASoC: rockchip: Use codec of_node and dai_name for rt5514 dsp" to the asoc tree Mark Brown
2017-08-24 4:52 ` [RESENT PATCH v7 2/7] arm64: dts: rockchip: Add rt5514 dsp for Gru Jeffy Chen
2017-09-09 11:13 ` Heiko Stuebner
2017-09-09 11:45 ` Heiko Stuebner
2017-08-24 4:52 ` [RESENT PATCH v7 3/7] arm64: dts: rockchip: Update rt5514 devices' compatible " Jeffy Chen
2017-08-30 13:30 ` Heiko Stübner
2017-08-30 17:00 ` jeffy
2017-09-04 22:33 ` Heiko Stübner
2017-09-05 4:26 ` jeffy
2017-08-24 4:52 ` [RESENT PATCH v7 4/7] ASoC: rockchip: Parse dai links from dts Jeffy Chen
2017-08-29 19:28 ` Applied "ASoC: rockchip: Parse dai links from dts" to the asoc tree Mark Brown
2017-08-24 4:52 ` [RESENT PATCH v7 5/7] ASoC: rockchip: Add support for DP codec Jeffy Chen
2017-08-24 4:52 ` [RESENT PATCH v7 6/7] ASoC: rockchip: Add support for DMIC codec Jeffy Chen
2017-08-24 4:52 ` [RESENT PATCH v7 7/7] dt-bindings: ASoC: rockchip: Update description of rockchip,codec Jeffy Chen
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=20170824211951.GG173745@google.com \
--to=mka@chromium.org \
--cc=alsa-devel@alsa-project.org \
--cc=briannorris@chromium.org \
--cc=broonie@kernel.org \
--cc=dgreid@chromium.org \
--cc=dianders@chromium.org \
--cc=heiko@sntech.de \
--cc=jeffy.chen@rock-chips.com \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=perex@perex.cz \
--cc=tiwai@suse.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox