From: Takashi Iwai <tiwai@suse.de>
To: Mark Brown <broonie@kernel.org>
Cc: Vinod Koul <vinod.koul@intel.com>,
alsa-devel@alsa-project.org, Liam Girdwood <lgirdwood@gmail.com>,
Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: Re: [PATCH] ASoC: cht_bsw_rt5672: Use HID translation unit
Date: Wed, 30 Nov 2016 14:47:19 +0100 [thread overview]
Message-ID: <s5hwpfl2i6w.wl-tiwai@suse.de> (raw)
In-Reply-To: <20161125144018.28896-1-tiwai@suse.de>
On Fri, 25 Nov 2016 15:40:18 +0100,
Takashi Iwai wrote:
>
> Instead of hard-coded "i2c-10EC5670:00", use the translation helper to
> avoid the mismatch between i2c-codec and ACPI strings just like what
> we've done for bytcr_rt5640. This gives more robust binding on funky
> devices like Dell Wyse 3040.
>
> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Vinod, Pierre, Liam, could you guys review?
thanks,
Takashi
> ---
> sound/soc/intel/boards/cht_bsw_rt5672.c | 30 ++++++++++++++++++++++++++++--
> 1 file changed, 28 insertions(+), 2 deletions(-)
>
> diff --git a/sound/soc/intel/boards/cht_bsw_rt5672.c b/sound/soc/intel/boards/cht_bsw_rt5672.c
> index df9d254baa18..fe607d8701a0 100644
> --- a/sound/soc/intel/boards/cht_bsw_rt5672.c
> +++ b/sound/soc/intel/boards/cht_bsw_rt5672.c
> @@ -25,12 +25,14 @@
> #include <sound/jack.h>
> #include "../../codecs/rt5670.h"
> #include "../atom/sst-atom-controls.h"
> +#include "../common/sst-acpi.h"
>
> /* The platform clock #3 outputs 19.2Mhz clock to codec as I2S MCLK */
> #define CHT_PLAT_CLK_3_HZ 19200000
> #define CHT_CODEC_DAI "rt5670-aif1"
>
> static struct snd_soc_jack cht_bsw_headset;
> +static char cht_bsw_codec_name[16];
>
> /* Headset jack detection DAPM pins */
> static struct snd_soc_jack_pin cht_bsw_headset_pins[] = {
> @@ -295,7 +297,7 @@ static int cht_suspend_pre(struct snd_soc_card *card)
> struct snd_soc_codec *codec;
>
> list_for_each_entry(codec, &card->codec_dev_list, card_list) {
> - if (!strcmp(codec->component.name, "i2c-10EC5670:00")) {
> + if (!strcmp(codec->component.name, cht_bsw_codec_name)) {
> dev_dbg(codec->dev, "disabling jack detect before going to suspend.\n");
> rt5670_jack_suspend(codec);
> break;
> @@ -309,7 +311,7 @@ static int cht_resume_post(struct snd_soc_card *card)
> struct snd_soc_codec *codec;
>
> list_for_each_entry(codec, &card->codec_dev_list, card_list) {
> - if (!strcmp(codec->component.name, "i2c-10EC5670:00")) {
> + if (!strcmp(codec->component.name, cht_bsw_codec_name)) {
> dev_dbg(codec->dev, "enabling jack detect for resume.\n");
> rt5670_jack_resume(codec);
> break;
> @@ -335,9 +337,33 @@ static struct snd_soc_card snd_soc_card_cht = {
> .resume_post = cht_resume_post,
> };
>
> +#define RT5672_I2C_DEFAULT "i2c-10EC5670:00"
> +
> static int snd_cht_mc_probe(struct platform_device *pdev)
> {
> int ret_val = 0;
> + struct sst_acpi_mach *mach = pdev->dev.platform_data;
> + const char *i2c_name;
> + int i;
> +
> + strcpy(cht_bsw_codec_name, RT5672_I2C_DEFAULT);
> +
> + /* fixup codec name based on HID */
> + if (mach) {
> + i2c_name = sst_acpi_find_name_from_hid(mach->id);
> + if (i2c_name) {
> + snprintf(cht_bsw_codec_name, sizeof(cht_bsw_codec_name),
> + "i2c-%s", i2c_name);
> + for (i = 0; i < ARRAY_SIZE(cht_dailink); i++) {
> + if (!strcmp(cht_dailink[i].codec_name,
> + RT5672_I2C_DEFAULT)) {
> + cht_dailink[i].codec_name =
> + cht_bsw_codec_name;
> + break;
> + }
> + }
> + }
> + }
>
> /* register the soc card */
> snd_soc_card_cht.dev = &pdev->dev;
> --
> 2.10.2
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
next prev parent reply other threads:[~2016-11-30 13:47 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-25 14:40 [PATCH] ASoC: cht_bsw_rt5672: Use HID translation unit Takashi Iwai
2016-11-30 13:47 ` Takashi Iwai [this message]
2016-11-30 14:56 ` Pierre-Louis Bossart
2016-11-30 16:31 ` Vinod Koul
2016-11-30 18:07 ` Applied "ASoC: cht_bsw_rt5672: Use HID translation unit" to the asoc tree Mark Brown
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=s5hwpfl2i6w.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=vinod.koul@intel.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.