All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
@ 2015-04-21 23:35 yang.a.fang
  2015-04-21 23:36 ` [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver yang.a.fang
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: yang.a.fang @ 2015-04-21 23:35 UTC (permalink / raw)
  To: broonie, lgirdwood
  Cc: alsa-devel, vinod.koul, praveen.k.jain, denny.iriawan, Fang,
	Yang A, sathyanarayana.nujella, kevin.strasser

From: "Fang, Yang A" <yang.a.fang@intel.com>

rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver

Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
---
 sound/soc/intel/Kconfig                 |    7 +-
 sound/soc/intel/boards/cht_bsw_rt5645.c |  108 +++++++++++++++++++++++++------
 2 files changed, 94 insertions(+), 21 deletions(-)

diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
index ee03dbd..63d7659 100644
--- a/sound/soc/intel/Kconfig
+++ b/sound/soc/intel/Kconfig
@@ -112,12 +112,13 @@ config SND_SOC_INTEL_CHT_BSW_RT5672_MACH
           If unsure select "N".
 
 config SND_SOC_INTEL_CHT_BSW_RT5645_MACH
-	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645 codec"
-	depends on X86_INTEL_LPSS
+	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645/5650 codec"
+	depends on SND_SOC_INTEL_SST && X86_INTEL_LPSS
+	select SND_SOC_INTEL_BAYTRAIL
 	select SND_SOC_RT5645
 	select SND_SST_MFLD_PLATFORM
 	select SND_SST_IPC_ACPI
 	help
 	  This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell
-	  platforms with RT5645 audio codec.
+	  platforms with RT5645/5650 audio codec.
 	  If unsure select "N".
diff --git a/sound/soc/intel/boards/cht_bsw_rt5645.c b/sound/soc/intel/boards/cht_bsw_rt5645.c
index 20a28b2..8115444 100644
--- a/sound/soc/intel/boards/cht_bsw_rt5645.c
+++ b/sound/soc/intel/boards/cht_bsw_rt5645.c
@@ -21,6 +21,7 @@
  */
 
 #include <linux/module.h>
+#include <linux/acpi.h>
 #include <linux/platform_device.h>
 #include <linux/slab.h>
 #include <sound/pcm.h>
@@ -33,9 +34,16 @@
 #define CHT_PLAT_CLK_3_HZ	19200000
 #define CHT_CODEC_DAI	"rt5645-aif1"
 
+struct cht_acpi_card {
+	char *codec_id;
+	int codec_type;
+	struct snd_soc_card *soc_card;
+};
+
 struct cht_mc_private {
 	struct snd_soc_jack hp_jack;
 	struct snd_soc_jack mic_jack;
+	struct cht_acpi_card *acpi_card;
 };
 
 static inline struct snd_soc_dai *cht_get_codec_dai(struct snd_soc_card *card)
@@ -94,7 +102,7 @@ static const struct snd_soc_dapm_widget cht_dapm_widgets[] = {
 			platform_clock_control, SND_SOC_DAPM_POST_PMD),
 };
 
-static const struct snd_soc_dapm_route cht_audio_map[] = {
+static const struct snd_soc_dapm_route cht_5645_audio_map[] = {
 	{"IN1P", NULL, "Headset Mic"},
 	{"IN1N", NULL, "Headset Mic"},
 	{"DMIC L1", NULL, "Int Mic"},
@@ -115,6 +123,27 @@ static const struct snd_soc_dapm_route cht_audio_map[] = {
 	{"Ext Spk", NULL, "Platform Clock"},
 };
 
+static const struct snd_soc_dapm_route cht_5650_audio_map[] = {
+	{"IN1P", NULL, "Headset Mic"},
+	{"IN1N", NULL, "Headset Mic"},
+	{"DMIC L2", NULL, "Int Mic"},
+	{"DMIC R2", NULL, "Int Mic"},
+	{"Headphone", NULL, "HPOL"},
+	{"Headphone", NULL, "HPOR"},
+	{"Ext Spk", NULL, "SPOL"},
+	{"Ext Spk", NULL, "SPOR"},
+	{"AIF1 Playback", NULL, "ssp2 Tx"},
+	{"ssp2 Tx", NULL, "codec_out0"},
+	{"ssp2 Tx", NULL, "codec_out1"},
+	{"codec_in0", NULL, "ssp2 Rx" },
+	{"codec_in1", NULL, "ssp2 Rx" },
+	{"ssp2 Rx", NULL, "AIF1 Capture"},
+	{"Headphone", NULL, "Platform Clock"},
+	{"Headset Mic", NULL, "Platform Clock"},
+	{"Int Mic", NULL, "Platform Clock"},
+	{"Ext Spk", NULL, "Platform Clock"},
+};
+
 static const struct snd_kcontrol_new cht_mc_controls[] = {
 	SOC_DAPM_PIN_SWITCH("Headphone"),
 	SOC_DAPM_PIN_SWITCH("Headset Mic"),
@@ -239,7 +268,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
 		.codec_dai_name = "snd-soc-dummy-dai",
 		.codec_name = "snd-soc-dummy",
 		.platform_name = "sst-mfld-platform",
-		.ignore_suspend = 1,
+		.nonatomic = true,
 		.dynamic = 1,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
@@ -267,7 +296,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
 					| SND_SOC_DAIFMT_CBS_CFS,
 		.init = cht_codec_init,
 		.be_hw_params_fixup = cht_codec_fixup,
-		.ignore_suspend = 1,
+		.nonatomic = true,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
 		.ops = &cht_be_ssp2_ops,
@@ -275,43 +304,86 @@ static struct snd_soc_dai_link cht_dailink[] = {
 };
 
 /* SoC card */
-static struct snd_soc_card snd_soc_card_cht = {
-	.name = "chtrt5645",
-	.dai_link = cht_dailink,
-	.num_links = ARRAY_SIZE(cht_dailink),
-	.dapm_widgets = cht_dapm_widgets,
-	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
-	.dapm_routes = cht_audio_map,
-	.num_dapm_routes = ARRAY_SIZE(cht_audio_map),
-	.controls = cht_mc_controls,
-	.num_controls = ARRAY_SIZE(cht_mc_controls),
+static struct snd_soc_card snd_soc_card_cht[] = {
+	{
+		.name = "chtrt5645",
+		.dai_link = cht_dailink,
+		.num_links = ARRAY_SIZE(cht_dailink),
+		.dapm_widgets = cht_dapm_widgets,
+		.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
+		.dapm_routes = cht_5645_audio_map,
+		.num_dapm_routes = ARRAY_SIZE(cht_5645_audio_map),
+		.controls = cht_mc_controls,
+		.num_controls = ARRAY_SIZE(cht_mc_controls),
+	},
+	{
+		.name = "chtrt5650",
+		.dai_link = cht_dailink,
+		.num_links = ARRAY_SIZE(cht_dailink),
+		.dapm_widgets = cht_dapm_widgets,
+		.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
+		.dapm_routes = cht_5650_audio_map,
+		.num_dapm_routes = ARRAY_SIZE(cht_5650_audio_map),
+		.controls = cht_mc_controls,
+		.num_controls = ARRAY_SIZE(cht_mc_controls),
+	}
 };
 
+static struct cht_acpi_card snd_soc_cards[] = {
+	{"10EC5645", CODEC_TYPE_RT5645, &snd_soc_card_cht[0]},
+	{"10EC5650", CODEC_TYPE_RT5650, &snd_soc_card_cht[1]},
+};
+
+static acpi_status snd_acpi_codec_match(acpi_handle handle, u32 level,
+				       void *context, void **ret)
+{
+	*(bool *)context = true;
+	return AE_OK;
+}
+
 static int snd_cht_mc_probe(struct platform_device *pdev)
 {
 	int ret_val = 0;
+	int i;
 	struct cht_mc_private *drv;
+	struct snd_soc_card *card = snd_soc_cards[0].soc_card;
+	bool found = false;
+	char codec_name[32];
 
 	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_ATOMIC);
 	if (!drv)
 		return -ENOMEM;
 
-	snd_soc_card_cht.dev = &pdev->dev;
-	snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
-	ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
+	for (i = 0; i < ARRAY_SIZE(snd_soc_cards); i++) {
+		if (ACPI_SUCCESS(acpi_get_devices(
+						snd_soc_cards[i].codec_id,
+						snd_acpi_codec_match,
+						&found, NULL)) && found) {
+			dev_dbg(&pdev->dev,
+				"found codec %s\n", snd_soc_cards[i].codec_id);
+			card = snd_soc_cards[i].soc_card;
+			drv->acpi_card = &snd_soc_cards[i];
+			break;
+		}
+	}
+	card->dev = &pdev->dev;
+	sprintf(codec_name, "i2c-%s:00", drv->acpi_card->codec_id);
+	/* set correct codec name */
+	strcpy((char *)card->dai_link[2].codec_name, codec_name);
+	snd_soc_card_set_drvdata(card, drv);
+	ret_val = devm_snd_soc_register_card(&pdev->dev, card);
 	if (ret_val) {
 		dev_err(&pdev->dev,
 			"snd_soc_register_card failed %d\n", ret_val);
 		return ret_val;
 	}
-	platform_set_drvdata(pdev, &snd_soc_card_cht);
+	platform_set_drvdata(pdev, card);
 	return ret_val;
 }
 
 static struct platform_driver snd_cht_mc_driver = {
 	.driver = {
 		.name = "cht-bsw-rt5645",
-		.pm = &snd_soc_pm_ops,
 	},
 	.probe = snd_cht_mc_probe,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver
  2015-04-21 23:35 [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell yang.a.fang
@ 2015-04-21 23:36 ` yang.a.fang
  2015-04-22 10:32   ` Mark Brown
  2015-04-22  4:18 ` [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell Vinod Koul
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 11+ messages in thread
From: yang.a.fang @ 2015-04-21 23:36 UTC (permalink / raw)
  To: broonie, lgirdwood
  Cc: alsa-devel, vinod.koul, praveen.k.jain, denny.iriawan, Fang,
	Yang A, sathyanarayana.nujella, kevin.strasser

From: "Fang, Yang A" <yang.a.fang@intel.com>

Added entry in sst driver to support rt5650 codec
for intel Braswell platform.

Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
---
 sound/soc/intel/atom/sst/sst_acpi.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/intel/atom/sst/sst_acpi.c b/sound/soc/intel/atom/sst/sst_acpi.c
index 678f36e..4476620 100644
--- a/sound/soc/intel/atom/sst/sst_acpi.c
+++ b/sound/soc/intel/atom/sst/sst_acpi.c
@@ -354,6 +354,8 @@ static struct sst_machines sst_acpi_chv[] = {
 						&chv_platform_data },
 	{"10EC5645", "cht-bsw", "cht-bsw-rt5645", NULL, "intel/fw_sst_22a8.bin",
 						&chv_platform_data },
+	{"10EC5650", "cht-bsw", "cht-bsw-rt5645", NULL, "intel/fw_sst_22a8.bin",
+						&chv_platform_data },
 	{},
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-21 23:35 [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell yang.a.fang
  2015-04-21 23:36 ` [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver yang.a.fang
@ 2015-04-22  4:18 ` Vinod Koul
  2015-04-22  5:02   ` Yang Fang
  2015-04-22 21:56 ` [PATCH v2] " yang.a.fang
  2015-04-23 17:23 ` [PATCH v3] " yang.a.fang
  3 siblings, 1 reply; 11+ messages in thread
From: Vinod Koul @ 2015-04-22  4:18 UTC (permalink / raw)
  To: yang.a.fang
  Cc: alsa-devel, praveen.k.jain, lgirdwood, denny.iriawan, broonie,
	sathyanarayana.nujella, kevin.strasser

On Tue, Apr 21, 2015 at 04:35:59PM -0700, yang.a.fang@intel.com wrote:
> From: "Fang, Yang A" <yang.a.fang@intel.com>
> 
> rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver
> 
> Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
> ---
>  sound/soc/intel/Kconfig                 |    7 +-
>  sound/soc/intel/boards/cht_bsw_rt5645.c |  108 +++++++++++++++++++++++++------
>  2 files changed, 94 insertions(+), 21 deletions(-)
> 
> diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
> index ee03dbd..63d7659 100644
> --- a/sound/soc/intel/Kconfig
> +++ b/sound/soc/intel/Kconfig
> @@ -112,12 +112,13 @@ config SND_SOC_INTEL_CHT_BSW_RT5672_MACH
>            If unsure select "N".
>  
>  config SND_SOC_INTEL_CHT_BSW_RT5645_MACH
> -	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645 codec"
> -	depends on X86_INTEL_LPSS
> +	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645/5650 codec"
> +	depends on SND_SOC_INTEL_SST && X86_INTEL_LPSS
why this additional depends, it should be selecting SND_SOC_INTEL_SST?

> +	select SND_SOC_INTEL_BAYTRAIL
>  	select SND_SOC_RT5645
>  	select SND_SST_MFLD_PLATFORM
>  	select SND_SST_IPC_ACPI
>  	help
>  	  This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell
> -	  platforms with RT5645 audio codec.
> +	  platforms with RT5645/5650 audio codec.
>  	  If unsure select "N".
> diff --git a/sound/soc/intel/boards/cht_bsw_rt5645.c b/sound/soc/intel/boards/cht_bsw_rt5645.c
> index 20a28b2..8115444 100644
> --- a/sound/soc/intel/boards/cht_bsw_rt5645.c
> +++ b/sound/soc/intel/boards/cht_bsw_rt5645.c
> @@ -21,6 +21,7 @@
>   */
>  
>  #include <linux/module.h>
> +#include <linux/acpi.h>
>  #include <linux/platform_device.h>
>  #include <linux/slab.h>
>  #include <sound/pcm.h>
> @@ -33,9 +34,16 @@
>  #define CHT_PLAT_CLK_3_HZ	19200000
>  #define CHT_CODEC_DAI	"rt5645-aif1"
>  
> +struct cht_acpi_card {
> +	char *codec_id;
> +	int codec_type;
> +	struct snd_soc_card *soc_card;
> +};
> +
>  struct cht_mc_private {
>  	struct snd_soc_jack hp_jack;
>  	struct snd_soc_jack mic_jack;
> +	struct cht_acpi_card *acpi_card;
>  };
>  
>  static inline struct snd_soc_dai *cht_get_codec_dai(struct snd_soc_card *card)
> @@ -94,7 +102,7 @@ static const struct snd_soc_dapm_widget cht_dapm_widgets[] = {
>  			platform_clock_control, SND_SOC_DAPM_POST_PMD),
>  };
>  
> -static const struct snd_soc_dapm_route cht_audio_map[] = {
> +static const struct snd_soc_dapm_route cht_5645_audio_map[] = {
>  	{"IN1P", NULL, "Headset Mic"},
>  	{"IN1N", NULL, "Headset Mic"},
>  	{"DMIC L1", NULL, "Int Mic"},
> @@ -115,6 +123,27 @@ static const struct snd_soc_dapm_route cht_audio_map[] = {
>  	{"Ext Spk", NULL, "Platform Clock"},
>  };
>  
> +static const struct snd_soc_dapm_route cht_5650_audio_map[] = {
> +	{"IN1P", NULL, "Headset Mic"},
> +	{"IN1N", NULL, "Headset Mic"},
> +	{"DMIC L2", NULL, "Int Mic"},
> +	{"DMIC R2", NULL, "Int Mic"},
> +	{"Headphone", NULL, "HPOL"},
> +	{"Headphone", NULL, "HPOR"},
> +	{"Ext Spk", NULL, "SPOL"},
> +	{"Ext Spk", NULL, "SPOR"},
> +	{"AIF1 Playback", NULL, "ssp2 Tx"},
> +	{"ssp2 Tx", NULL, "codec_out0"},
> +	{"ssp2 Tx", NULL, "codec_out1"},
> +	{"codec_in0", NULL, "ssp2 Rx" },
> +	{"codec_in1", NULL, "ssp2 Rx" },
> +	{"ssp2 Rx", NULL, "AIF1 Capture"},
> +	{"Headphone", NULL, "Platform Clock"},
> +	{"Headset Mic", NULL, "Platform Clock"},
> +	{"Int Mic", NULL, "Platform Clock"},
> +	{"Ext Spk", NULL, "Platform Clock"},
> +};
> +
>  static const struct snd_kcontrol_new cht_mc_controls[] = {
>  	SOC_DAPM_PIN_SWITCH("Headphone"),
>  	SOC_DAPM_PIN_SWITCH("Headset Mic"),
> @@ -239,7 +268,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
>  		.codec_dai_name = "snd-soc-dummy-dai",
>  		.codec_name = "snd-soc-dummy",
>  		.platform_name = "sst-mfld-platform",
> -		.ignore_suspend = 1,
why removing this?

> +		.nonatomic = true,
Did you test the older device with this flag set
>  		.dynamic = 1,
>  		.dpcm_playback = 1,
>  		.dpcm_capture = 1,
> @@ -267,7 +296,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
>  					| SND_SOC_DAIFMT_CBS_CFS,
>  		.init = cht_codec_init,
>  		.be_hw_params_fixup = cht_codec_fixup,
> -		.ignore_suspend = 1,
> +		.nonatomic = true,
>  		.dpcm_playback = 1,
>  		.dpcm_capture = 1,
>  		.ops = &cht_be_ssp2_ops,
> @@ -275,43 +304,86 @@ static struct snd_soc_dai_link cht_dailink[] = {
>  };
>  
>  /* SoC card */
> -static struct snd_soc_card snd_soc_card_cht = {
> -	.name = "chtrt5645",
> -	.dai_link = cht_dailink,
> -	.num_links = ARRAY_SIZE(cht_dailink),
> -	.dapm_widgets = cht_dapm_widgets,
> -	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
> -	.dapm_routes = cht_audio_map,
> -	.num_dapm_routes = ARRAY_SIZE(cht_audio_map),
> -	.controls = cht_mc_controls,
> -	.num_controls = ARRAY_SIZE(cht_mc_controls),
> +static struct snd_soc_card snd_soc_card_cht[] = {
> +	{
> +		.name = "chtrt5645",
> +		.dai_link = cht_dailink,
> +		.num_links = ARRAY_SIZE(cht_dailink),
> +		.dapm_widgets = cht_dapm_widgets,
> +		.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
> +		.dapm_routes = cht_5645_audio_map,
> +		.num_dapm_routes = ARRAY_SIZE(cht_5645_audio_map),
> +		.controls = cht_mc_controls,
> +		.num_controls = ARRAY_SIZE(cht_mc_controls),
> +	},
> +	{
> +		.name = "chtrt5650",
> +		.dai_link = cht_dailink,
> +		.num_links = ARRAY_SIZE(cht_dailink),
> +		.dapm_widgets = cht_dapm_widgets,
> +		.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
> +		.dapm_routes = cht_5650_audio_map,
> +		.num_dapm_routes = ARRAY_SIZE(cht_5650_audio_map),
> +		.controls = cht_mc_controls,
> +		.num_controls = ARRAY_SIZE(cht_mc_controls),
> +	}
>  };
I dont find the arrays very userful here, it could have been two different
structs too.

>  
> +static struct cht_acpi_card snd_soc_cards[] = {
> +	{"10EC5645", CODEC_TYPE_RT5645, &snd_soc_card_cht[0]},
> +	{"10EC5650", CODEC_TYPE_RT5650, &snd_soc_card_cht[1]},
> +};
> +
> +static acpi_status snd_acpi_codec_match(acpi_handle handle, u32 level,
> +				       void *context, void **ret)
> +{
> +	*(bool *)context = true;
> +	return AE_OK;
> +}
> +
>  static int snd_cht_mc_probe(struct platform_device *pdev)
>  {
>  	int ret_val = 0;
> +	int i;
>  	struct cht_mc_private *drv;
> +	struct snd_soc_card *card = snd_soc_cards[0].soc_card;
> +	bool found = false;
> +	char codec_name[32];
i thought ACPI names we 3 + 4 chars only?

-- 
~Vinod

>  
>  	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_ATOMIC);
>  	if (!drv)
>  		return -ENOMEM;
>  
> -	snd_soc_card_cht.dev = &pdev->dev;
> -	snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
> -	ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
> +	for (i = 0; i < ARRAY_SIZE(snd_soc_cards); i++) {
> +		if (ACPI_SUCCESS(acpi_get_devices(
> +						snd_soc_cards[i].codec_id,
> +						snd_acpi_codec_match,
> +						&found, NULL)) && found) {
> +			dev_dbg(&pdev->dev,
> +				"found codec %s\n", snd_soc_cards[i].codec_id);
> +			card = snd_soc_cards[i].soc_card;
> +			drv->acpi_card = &snd_soc_cards[i];
> +			break;
> +		}
> +	}
> +	card->dev = &pdev->dev;
> +	sprintf(codec_name, "i2c-%s:00", drv->acpi_card->codec_id);
> +	/* set correct codec name */
> +	strcpy((char *)card->dai_link[2].codec_name, codec_name);
> +	snd_soc_card_set_drvdata(card, drv);
> +	ret_val = devm_snd_soc_register_card(&pdev->dev, card);
>  	if (ret_val) {
>  		dev_err(&pdev->dev,
>  			"snd_soc_register_card failed %d\n", ret_val);
>  		return ret_val;
>  	}
> -	platform_set_drvdata(pdev, &snd_soc_card_cht);
> +	platform_set_drvdata(pdev, card);
>  	return ret_val;
>  }
>  
>  static struct platform_driver snd_cht_mc_driver = {
>  	.driver = {
>  		.name = "cht-bsw-rt5645",
> -		.pm = &snd_soc_pm_ops,
>  	},
>  	.probe = snd_cht_mc_probe,
>  };
> -- 
> 1.7.9.5
> 

-- 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-22  4:18 ` [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell Vinod Koul
@ 2015-04-22  5:02   ` Yang Fang
  0 siblings, 0 replies; 11+ messages in thread
From: Yang Fang @ 2015-04-22  5:02 UTC (permalink / raw)
  To: Vinod Koul
  Cc: alsa-devel, praveen.k.jain, lgirdwood, denny.iriawan, broonie,
	sathyanarayana.nujella, kevin.strasser

On Wed, Apr 22, 2015 at 09:48:40AM +0530, Vinod Koul wrote:
> On Tue, Apr 21, 2015 at 04:35:59PM -0700, yang.a.fang@intel.com wrote:
> > From: "Fang, Yang A" <yang.a.fang@intel.com>
> > 
> > rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver
> > 
> > Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
> > ---
> >  sound/soc/intel/Kconfig                 |    7 +-
> >  sound/soc/intel/boards/cht_bsw_rt5645.c |  108 +++++++++++++++++++++++++------
> >  2 files changed, 94 insertions(+), 21 deletions(-)
> > 
> > diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
> > index ee03dbd..63d7659 100644
> > --- a/sound/soc/intel/Kconfig
> > +++ b/sound/soc/intel/Kconfig
> > @@ -112,12 +112,13 @@ config SND_SOC_INTEL_CHT_BSW_RT5672_MACH
> >            If unsure select "N".
> >  
> >  config SND_SOC_INTEL_CHT_BSW_RT5645_MACH
> > -	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645 codec"
> > -	depends on X86_INTEL_LPSS
> > +	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645/5650 codec"
> > +	depends on SND_SOC_INTEL_SST && X86_INTEL_LPSS
> why this additional depends, it should be selecting SND_SOC_INTEL_SST?
sure I can try that
> 
> > +	select SND_SOC_INTEL_BAYTRAIL
> >  	select SND_SOC_RT5645
> >  	select SND_SST_MFLD_PLATFORM
> >  	select SND_SST_IPC_ACPI
> >  	help
> >  	  This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell
> > -	  platforms with RT5645 audio codec.
> > +	  platforms with RT5645/5650 audio codec.
> >  	  If unsure select "N".
> > diff --git a/sound/soc/intel/boards/cht_bsw_rt5645.c b/sound/soc/intel/boards/cht_bsw_rt5645.c
> > index 20a28b2..8115444 100644
> > --- a/sound/soc/intel/boards/cht_bsw_rt5645.c
> > +++ b/sound/soc/intel/boards/cht_bsw_rt5645.c
> > @@ -21,6 +21,7 @@
> >   */
> >  
> >  #include <linux/module.h>
> > +#include <linux/acpi.h>
> >  #include <linux/platform_device.h>
> >  #include <linux/slab.h>
> >  #include <sound/pcm.h>
> > @@ -33,9 +34,16 @@
> >  #define CHT_PLAT_CLK_3_HZ	19200000
> >  #define CHT_CODEC_DAI	"rt5645-aif1"
> >  
> > +struct cht_acpi_card {
> > +	char *codec_id;
> > +	int codec_type;
> > +	struct snd_soc_card *soc_card;
> > +};
> > +
> >  struct cht_mc_private {
> >  	struct snd_soc_jack hp_jack;
> >  	struct snd_soc_jack mic_jack;
> > +	struct cht_acpi_card *acpi_card;
> >  };
> >  
> >  static inline struct snd_soc_dai *cht_get_codec_dai(struct snd_soc_card *card)
> > @@ -94,7 +102,7 @@ static const struct snd_soc_dapm_widget cht_dapm_widgets[] = {
> >  			platform_clock_control, SND_SOC_DAPM_POST_PMD),
> >  };
> >  
> > -static const struct snd_soc_dapm_route cht_audio_map[] = {
> > +static const struct snd_soc_dapm_route cht_5645_audio_map[] = {
> >  	{"IN1P", NULL, "Headset Mic"},
> >  	{"IN1N", NULL, "Headset Mic"},
> >  	{"DMIC L1", NULL, "Int Mic"},
> > @@ -115,6 +123,27 @@ static const struct snd_soc_dapm_route cht_audio_map[] = {
> >  	{"Ext Spk", NULL, "Platform Clock"},
> >  };
> >  
> > +static const struct snd_soc_dapm_route cht_5650_audio_map[] = {
> > +	{"IN1P", NULL, "Headset Mic"},
> > +	{"IN1N", NULL, "Headset Mic"},
> > +	{"DMIC L2", NULL, "Int Mic"},
> > +	{"DMIC R2", NULL, "Int Mic"},
> > +	{"Headphone", NULL, "HPOL"},
> > +	{"Headphone", NULL, "HPOR"},
> > +	{"Ext Spk", NULL, "SPOL"},
> > +	{"Ext Spk", NULL, "SPOR"},
> > +	{"AIF1 Playback", NULL, "ssp2 Tx"},
> > +	{"ssp2 Tx", NULL, "codec_out0"},
> > +	{"ssp2 Tx", NULL, "codec_out1"},
> > +	{"codec_in0", NULL, "ssp2 Rx" },
> > +	{"codec_in1", NULL, "ssp2 Rx" },
> > +	{"ssp2 Rx", NULL, "AIF1 Capture"},
> > +	{"Headphone", NULL, "Platform Clock"},
> > +	{"Headset Mic", NULL, "Platform Clock"},
> > +	{"Int Mic", NULL, "Platform Clock"},
> > +	{"Ext Spk", NULL, "Platform Clock"},
> > +}
> > +
> >  static const struct snd_kcontrol_new cht_mc_controls[] = {
> >  	SOC_DAPM_PIN_SWITCH("Headphone"),
> >  	SOC_DAPM_PIN_SWITCH("Headset Mic"),
> > @@ -239,7 +268,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
> >  		.codec_dai_name = "snd-soc-dummy-dai",
> >  		.codec_name = "snd-soc-dummy",
> >  		.platform_name = "sst-mfld-platform",
> > -		.ignore_suspend = 1,
> why removing this?
This is carrying the fix from below commit for rt5672 machine driver

commit 583e58a0f0e996008780fe4df0f7640890a9b69a
Author: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Date:   Tue Feb 24 11:39:46 2015 +0530

    ASoC: Intel: Remove ignore suspend support

    In our platform we want platform and codec driver routines to get
invoked
    and don't need the machine routines so remove here

    Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
    Signed-off-by: Vinod Koul <vinod.koul@intel.com>

> 
> > +		.nonatomic = true,
> Did you test the older device with this flag set
will test it but expect same result since 5645 and 5650 are similar
codec
> >  		.dynamic = 1,
> >  		.dpcm_playback = 1,
> >  		.dpcm_capture = 1,
> > @@ -267,7 +296,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
> >  					| SND_SOC_DAIFMT_CBS_CFS,
> >  		.init = cht_codec_init,
> >  		.be_hw_params_fixup = cht_codec_fixup,
> > -		.ignore_suspend = 1,
> > +		.nonatomic = true,
> >  		.dpcm_playback = 1,
> >  		.dpcm_capture = 1,
> >  		.ops = &cht_be_ssp2_ops,
> > @@ -275,43 +304,86 @@ static struct snd_soc_dai_link cht_dailink[] = {
> >  };
> >  
> >  /* SoC card */
> > -static struct snd_soc_card snd_soc_card_cht = {
> > -	.name = "chtrt5645",
> > -	.dai_link = cht_dailink,
> > -	.num_links = ARRAY_SIZE(cht_dailink),
> > -	.dapm_widgets = cht_dapm_widgets,
> > -	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
> > -	.dapm_routes = cht_audio_map,
> > -	.num_dapm_routes = ARRAY_SIZE(cht_audio_map),
> > -	.controls = cht_mc_controls,
> > -	.num_controls = ARRAY_SIZE(cht_mc_controls),
> > +static struct snd_soc_card snd_soc_card_cht[] = {
> > +	{
> > +		.name = "chtrt5645",
> > +		.dai_link = cht_dailink,
> > +		.num_links = ARRAY_SIZE(cht_dailink),
> > +		.dapm_widgets = cht_dapm_widgets,
> > +		.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
> > +		.dapm_routes = cht_5645_audio_map,
> > +		.num_dapm_routes = ARRAY_SIZE(cht_5645_audio_map),
> > +		.controls = cht_mc_controls,
> > +		.num_controls = ARRAY_SIZE(cht_mc_controls),
> > +	},
> > +	{
> > +		.name = "chtrt5650",
> > +		.dai_link = cht_dailink,
> > +		.num_links = ARRAY_SIZE(cht_dailink),
> > +		.dapm_widgets = cht_dapm_widgets,
> > +		.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
> > +		.dapm_routes = cht_5650_audio_map,
> > +		.num_dapm_routes = ARRAY_SIZE(cht_5650_audio_map),
> > +		.controls = cht_mc_controls,
> > +		.num_controls = ARRAY_SIZE(cht_mc_controls),
> > +	}
> >  };
> I dont find the arrays very userful here, it could have been two different
> structs too.
that also can be done.
> 
> >  
> > +static struct cht_acpi_card snd_soc_cards[] = {
> > +	{"10EC5645", CODEC_TYPE_RT5645, &snd_soc_card_cht[0]},
> > +	{"10EC5650", CODEC_TYPE_RT5650, &snd_soc_card_cht[1]},
> > +};
> > +
> > +static acpi_status snd_acpi_codec_match(acpi_handle handle, u32 level,
> > +				       void *context, void **ret)
> > +{
> > +	*(bool *)context = true;
> > +	return AE_OK;
> > +}
> > +
> >  static int snd_cht_mc_probe(struct platform_device *pdev)
> >  {
> >  	int ret_val = 0;
> > +	int i;
> >  	struct cht_mc_private *drv;
> > +	struct snd_soc_card *card = snd_soc_cards[0].soc_card;
> > +	bool found = false;
> > +	char codec_name[32];
> i thought ACPI names we 3 + 4 chars only?
> 
the expected name is i2c-10EC5650:00 i could reduce the array size
potentially.

Thanks,
Yang
> -- 
> ~Vinod
> 
> >  
> >  	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_ATOMIC);
> >  	if (!drv)
> >  		return -ENOMEM;
> >  
> > -	snd_soc_card_cht.dev = &pdev->dev;
> > -	snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
> > -	ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
> > +	for (i = 0; i < ARRAY_SIZE(snd_soc_cards); i++) {
> > +		if (ACPI_SUCCESS(acpi_get_devices(
> > +						snd_soc_cards[i].codec_id,
> > +						snd_acpi_codec_match,
> > +						&found, NULL)) && found) {
> > +			dev_dbg(&pdev->dev,
> > +				"found codec %s\n", snd_soc_cards[i].codec_id);
> > +			card = snd_soc_cards[i].soc_card;
> > +			drv->acpi_card = &snd_soc_cards[i];
> > +			break;
> > +		}
> > +	}
> > +	card->dev = &pdev->dev;
> > +	sprintf(codec_name, "i2c-%s:00", drv->acpi_card->codec_id);
> > +	/* set correct codec name */
> > +	strcpy((char *)card->dai_link[2].codec_name, codec_name);
> > +	snd_soc_card_set_drvdata(card, drv);
> > +	ret_val = devm_snd_soc_register_card(&pdev->dev, card);
> >  	if (ret_val) {
> >  		dev_err(&pdev->dev,
> >  			"snd_soc_register_card failed %d\n", ret_val);
> >  		return ret_val;
> >  	}
> > -	platform_set_drvdata(pdev, &snd_soc_card_cht);
> > +	platform_set_drvdata(pdev, card);
> >  	return ret_val;
> >  }
> >  
> >  static struct platform_driver snd_cht_mc_driver = {
> >  	.driver = {
> >  		.name = "cht-bsw-rt5645",
> > -		.pm = &snd_soc_pm_ops,
> >  	},
> >  	.probe = snd_cht_mc_probe,
> >  };
> > -- 
> > 1.7.9.5
> > 
> 
> -- 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver
  2015-04-21 23:36 ` [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver yang.a.fang
@ 2015-04-22 10:32   ` Mark Brown
  0 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2015-04-22 10:32 UTC (permalink / raw)
  To: yang.a.fang
  Cc: alsa-devel, vinod.koul, praveen.k.jain, lgirdwood, denny.iriawan,
	sathyanarayana.nujella, kevin.strasser


[-- Attachment #1.1: Type: text/plain, Size: 229 bytes --]

On Tue, Apr 21, 2015 at 04:36:00PM -0700, yang.a.fang@intel.com wrote:
> From: "Fang, Yang A" <yang.a.fang@intel.com>
> 
> Added entry in sst driver to support rt5650 codec
> for intel Braswell platform.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-21 23:35 [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell yang.a.fang
  2015-04-21 23:36 ` [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver yang.a.fang
  2015-04-22  4:18 ` [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell Vinod Koul
@ 2015-04-22 21:56 ` yang.a.fang
  2015-04-23 17:23 ` [PATCH v3] " yang.a.fang
  3 siblings, 0 replies; 11+ messages in thread
From: yang.a.fang @ 2015-04-22 21:56 UTC (permalink / raw)
  To: broonie, lgirdwood
  Cc: alsa-devel, vinod.koul, praveen.k.jain, denny.iriawan, Fang,
	Yang A, sathyanarayana.nujella, kevin.strasser

From: "Fang, Yang A" <yang.a.fang@intel.com>

rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver

Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
---
 sound/soc/intel/Kconfig                 |    5 +-
 sound/soc/intel/boards/cht_bsw_rt5645.c |   93 +++++++++++++++++++++++++++----
 2 files changed, 85 insertions(+), 13 deletions(-)

diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
index ee03dbd..4ee37e8 100644
--- a/sound/soc/intel/Kconfig
+++ b/sound/soc/intel/Kconfig
@@ -112,12 +112,13 @@ config SND_SOC_INTEL_CHT_BSW_RT5672_MACH
           If unsure select "N".
 
 config SND_SOC_INTEL_CHT_BSW_RT5645_MACH
-	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645 codec"
+	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645/5650 codec"
 	depends on X86_INTEL_LPSS
+	select SND_SOC_INTEL_BAYTRAIL
 	select SND_SOC_RT5645
 	select SND_SST_MFLD_PLATFORM
 	select SND_SST_IPC_ACPI
 	help
 	  This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell
-	  platforms with RT5645 audio codec.
+	  platforms with RT5645/5650 audio codec.
 	  If unsure select "N".
diff --git a/sound/soc/intel/boards/cht_bsw_rt5645.c b/sound/soc/intel/boards/cht_bsw_rt5645.c
index 20a28b2..7d23ead 100644
--- a/sound/soc/intel/boards/cht_bsw_rt5645.c
+++ b/sound/soc/intel/boards/cht_bsw_rt5645.c
@@ -21,6 +21,7 @@
  */
 
 #include <linux/module.h>
+#include <linux/acpi.h>
 #include <linux/platform_device.h>
 #include <linux/slab.h>
 #include <sound/pcm.h>
@@ -33,9 +34,16 @@
 #define CHT_PLAT_CLK_3_HZ	19200000
 #define CHT_CODEC_DAI	"rt5645-aif1"
 
+struct cht_acpi_card {
+	char *codec_id;
+	int codec_type;
+	struct snd_soc_card *soc_card;
+};
+
 struct cht_mc_private {
 	struct snd_soc_jack hp_jack;
 	struct snd_soc_jack mic_jack;
+	struct cht_acpi_card *acpi_card;
 };
 
 static inline struct snd_soc_dai *cht_get_codec_dai(struct snd_soc_card *card)
@@ -94,7 +102,7 @@ static const struct snd_soc_dapm_widget cht_dapm_widgets[] = {
 			platform_clock_control, SND_SOC_DAPM_POST_PMD),
 };
 
-static const struct snd_soc_dapm_route cht_audio_map[] = {
+static const struct snd_soc_dapm_route cht_rt5645_audio_map[] = {
 	{"IN1P", NULL, "Headset Mic"},
 	{"IN1N", NULL, "Headset Mic"},
 	{"DMIC L1", NULL, "Int Mic"},
@@ -115,6 +123,27 @@ static const struct snd_soc_dapm_route cht_audio_map[] = {
 	{"Ext Spk", NULL, "Platform Clock"},
 };
 
+static const struct snd_soc_dapm_route cht_rt5650_audio_map[] = {
+	{"IN1P", NULL, "Headset Mic"},
+	{"IN1N", NULL, "Headset Mic"},
+	{"DMIC L2", NULL, "Int Mic"},
+	{"DMIC R2", NULL, "Int Mic"},
+	{"Headphone", NULL, "HPOL"},
+	{"Headphone", NULL, "HPOR"},
+	{"Ext Spk", NULL, "SPOL"},
+	{"Ext Spk", NULL, "SPOR"},
+	{"AIF1 Playback", NULL, "ssp2 Tx"},
+	{"ssp2 Tx", NULL, "codec_out0"},
+	{"ssp2 Tx", NULL, "codec_out1"},
+	{"codec_in0", NULL, "ssp2 Rx" },
+	{"codec_in1", NULL, "ssp2 Rx" },
+	{"ssp2 Rx", NULL, "AIF1 Capture"},
+	{"Headphone", NULL, "Platform Clock"},
+	{"Headset Mic", NULL, "Platform Clock"},
+	{"Int Mic", NULL, "Platform Clock"},
+	{"Ext Spk", NULL, "Platform Clock"},
+};
+
 static const struct snd_kcontrol_new cht_mc_controls[] = {
 	SOC_DAPM_PIN_SWITCH("Headphone"),
 	SOC_DAPM_PIN_SWITCH("Headset Mic"),
@@ -239,7 +268,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
 		.codec_dai_name = "snd-soc-dummy-dai",
 		.codec_name = "snd-soc-dummy",
 		.platform_name = "sst-mfld-platform",
-		.ignore_suspend = 1,
+		.nonatomic = true,
 		.dynamic = 1,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
@@ -267,7 +296,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
 					| SND_SOC_DAIFMT_CBS_CFS,
 		.init = cht_codec_init,
 		.be_hw_params_fixup = cht_codec_fixup,
-		.ignore_suspend = 1,
+		.nonatomic = true,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
 		.ops = &cht_be_ssp2_ops,
@@ -275,43 +304,85 @@ static struct snd_soc_dai_link cht_dailink[] = {
 };
 
 /* SoC card */
-static struct snd_soc_card snd_soc_card_cht = {
+static struct snd_soc_card snd_soc_card_chtrt5645 = {
 	.name = "chtrt5645",
 	.dai_link = cht_dailink,
 	.num_links = ARRAY_SIZE(cht_dailink),
 	.dapm_widgets = cht_dapm_widgets,
 	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
-	.dapm_routes = cht_audio_map,
-	.num_dapm_routes = ARRAY_SIZE(cht_audio_map),
+	.dapm_routes = cht_rt5645_audio_map,
+	.num_dapm_routes = ARRAY_SIZE(cht_rt5645_audio_map),
 	.controls = cht_mc_controls,
 	.num_controls = ARRAY_SIZE(cht_mc_controls),
 };
 
+static struct snd_soc_card snd_soc_card_chtrt5650 = {
+	.name = "chtrt5650",
+	.dai_link = cht_dailink,
+	.num_links = ARRAY_SIZE(cht_dailink),
+	.dapm_widgets = cht_dapm_widgets,
+	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
+	.dapm_routes = cht_rt5650_audio_map,
+	.num_dapm_routes = ARRAY_SIZE(cht_rt5650_audio_map),
+	.controls = cht_mc_controls,
+	.num_controls = ARRAY_SIZE(cht_mc_controls),
+};
+
+static struct cht_acpi_card snd_soc_cards[] = {
+	{"10EC5645", CODEC_TYPE_RT5645, &snd_soc_card_chtrt5645},
+	{"10EC5650", CODEC_TYPE_RT5650, &snd_soc_card_chtrt5650},
+};
+
+static acpi_status snd_acpi_codec_match(acpi_handle handle, u32 level,
+				       void *context, void **ret)
+{
+	*(bool *)context = true;
+	return AE_OK;
+}
+
 static int snd_cht_mc_probe(struct platform_device *pdev)
 {
 	int ret_val = 0;
+	int i;
 	struct cht_mc_private *drv;
+	struct snd_soc_card *card = snd_soc_cards[0].soc_card;
+	bool found = false;
+	char codec_name[16];
 
 	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_ATOMIC);
 	if (!drv)
 		return -ENOMEM;
 
-	snd_soc_card_cht.dev = &pdev->dev;
-	snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
-	ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
+	for (i = 0; i < ARRAY_SIZE(snd_soc_cards); i++) {
+		if (ACPI_SUCCESS(acpi_get_devices(
+						snd_soc_cards[i].codec_id,
+						snd_acpi_codec_match,
+						&found, NULL)) && found) {
+			dev_dbg(&pdev->dev,
+				"found codec %s\n", snd_soc_cards[i].codec_id);
+			card = snd_soc_cards[i].soc_card;
+			drv->acpi_card = &snd_soc_cards[i];
+			break;
+		}
+	}
+	card->dev = &pdev->dev;
+	sprintf(codec_name, "i2c-%s:00", drv->acpi_card->codec_id);
+	/* set correct codec name */
+	strcpy((char *)card->dai_link[2].codec_name, codec_name);
+	snd_soc_card_set_drvdata(card, drv);
+	ret_val = devm_snd_soc_register_card(&pdev->dev, card);
 	if (ret_val) {
 		dev_err(&pdev->dev,
 			"snd_soc_register_card failed %d\n", ret_val);
 		return ret_val;
 	}
-	platform_set_drvdata(pdev, &snd_soc_card_cht);
+	platform_set_drvdata(pdev, card);
 	return ret_val;
 }
 
 static struct platform_driver snd_cht_mc_driver = {
 	.driver = {
 		.name = "cht-bsw-rt5645",
-		.pm = &snd_soc_pm_ops,
 	},
 	.probe = snd_cht_mc_probe,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v3] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-21 23:35 [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell yang.a.fang
                   ` (2 preceding siblings ...)
  2015-04-22 21:56 ` [PATCH v2] " yang.a.fang
@ 2015-04-23 17:23 ` yang.a.fang
  2015-04-24  5:24   ` Vinod Koul
  2015-04-24 12:44   ` Mark Brown
  3 siblings, 2 replies; 11+ messages in thread
From: yang.a.fang @ 2015-04-23 17:23 UTC (permalink / raw)
  To: broonie, lgirdwood
  Cc: alsa-devel, vinod.koul, praveen.k.jain, denny.iriawan, Fang,
	Yang A, sathyanarayana.nujella, kevin.strasser

From: "Fang, Yang A" <yang.a.fang@intel.com>

rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver

Signed-off-by: Fang, Yang A <yang.a.fang@intel.com>
---
 sound/soc/intel/Kconfig                 |    4 +-
 sound/soc/intel/boards/cht_bsw_rt5645.c |   93 +++++++++++++++++++++++++++----
 2 files changed, 84 insertions(+), 13 deletions(-)

diff --git a/sound/soc/intel/Kconfig b/sound/soc/intel/Kconfig
index ee03dbd..c181a6a 100644
--- a/sound/soc/intel/Kconfig
+++ b/sound/soc/intel/Kconfig
@@ -112,12 +112,12 @@ config SND_SOC_INTEL_CHT_BSW_RT5672_MACH
           If unsure select "N".
 
 config SND_SOC_INTEL_CHT_BSW_RT5645_MACH
-	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645 codec"
+	tristate "ASoC Audio driver for Intel Cherrytrail & Braswell with RT5645/5650 codec"
 	depends on X86_INTEL_LPSS
 	select SND_SOC_RT5645
 	select SND_SST_MFLD_PLATFORM
 	select SND_SST_IPC_ACPI
 	help
 	  This adds support for ASoC machine driver for Intel(R) Cherrytrail & Braswell
-	  platforms with RT5645 audio codec.
+	  platforms with RT5645/5650 audio codec.
 	  If unsure select "N".
diff --git a/sound/soc/intel/boards/cht_bsw_rt5645.c b/sound/soc/intel/boards/cht_bsw_rt5645.c
index 20a28b2..7d23ead 100644
--- a/sound/soc/intel/boards/cht_bsw_rt5645.c
+++ b/sound/soc/intel/boards/cht_bsw_rt5645.c
@@ -21,6 +21,7 @@
  */
 
 #include <linux/module.h>
+#include <linux/acpi.h>
 #include <linux/platform_device.h>
 #include <linux/slab.h>
 #include <sound/pcm.h>
@@ -33,9 +34,16 @@
 #define CHT_PLAT_CLK_3_HZ	19200000
 #define CHT_CODEC_DAI	"rt5645-aif1"
 
+struct cht_acpi_card {
+	char *codec_id;
+	int codec_type;
+	struct snd_soc_card *soc_card;
+};
+
 struct cht_mc_private {
 	struct snd_soc_jack hp_jack;
 	struct snd_soc_jack mic_jack;
+	struct cht_acpi_card *acpi_card;
 };
 
 static inline struct snd_soc_dai *cht_get_codec_dai(struct snd_soc_card *card)
@@ -94,7 +102,7 @@ static const struct snd_soc_dapm_widget cht_dapm_widgets[] = {
 			platform_clock_control, SND_SOC_DAPM_POST_PMD),
 };
 
-static const struct snd_soc_dapm_route cht_audio_map[] = {
+static const struct snd_soc_dapm_route cht_rt5645_audio_map[] = {
 	{"IN1P", NULL, "Headset Mic"},
 	{"IN1N", NULL, "Headset Mic"},
 	{"DMIC L1", NULL, "Int Mic"},
@@ -115,6 +123,27 @@ static const struct snd_soc_dapm_route cht_audio_map[] = {
 	{"Ext Spk", NULL, "Platform Clock"},
 };
 
+static const struct snd_soc_dapm_route cht_rt5650_audio_map[] = {
+	{"IN1P", NULL, "Headset Mic"},
+	{"IN1N", NULL, "Headset Mic"},
+	{"DMIC L2", NULL, "Int Mic"},
+	{"DMIC R2", NULL, "Int Mic"},
+	{"Headphone", NULL, "HPOL"},
+	{"Headphone", NULL, "HPOR"},
+	{"Ext Spk", NULL, "SPOL"},
+	{"Ext Spk", NULL, "SPOR"},
+	{"AIF1 Playback", NULL, "ssp2 Tx"},
+	{"ssp2 Tx", NULL, "codec_out0"},
+	{"ssp2 Tx", NULL, "codec_out1"},
+	{"codec_in0", NULL, "ssp2 Rx" },
+	{"codec_in1", NULL, "ssp2 Rx" },
+	{"ssp2 Rx", NULL, "AIF1 Capture"},
+	{"Headphone", NULL, "Platform Clock"},
+	{"Headset Mic", NULL, "Platform Clock"},
+	{"Int Mic", NULL, "Platform Clock"},
+	{"Ext Spk", NULL, "Platform Clock"},
+};
+
 static const struct snd_kcontrol_new cht_mc_controls[] = {
 	SOC_DAPM_PIN_SWITCH("Headphone"),
 	SOC_DAPM_PIN_SWITCH("Headset Mic"),
@@ -239,7 +268,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
 		.codec_dai_name = "snd-soc-dummy-dai",
 		.codec_name = "snd-soc-dummy",
 		.platform_name = "sst-mfld-platform",
-		.ignore_suspend = 1,
+		.nonatomic = true,
 		.dynamic = 1,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
@@ -267,7 +296,7 @@ static struct snd_soc_dai_link cht_dailink[] = {
 					| SND_SOC_DAIFMT_CBS_CFS,
 		.init = cht_codec_init,
 		.be_hw_params_fixup = cht_codec_fixup,
-		.ignore_suspend = 1,
+		.nonatomic = true,
 		.dpcm_playback = 1,
 		.dpcm_capture = 1,
 		.ops = &cht_be_ssp2_ops,
@@ -275,43 +304,85 @@ static struct snd_soc_dai_link cht_dailink[] = {
 };
 
 /* SoC card */
-static struct snd_soc_card snd_soc_card_cht = {
+static struct snd_soc_card snd_soc_card_chtrt5645 = {
 	.name = "chtrt5645",
 	.dai_link = cht_dailink,
 	.num_links = ARRAY_SIZE(cht_dailink),
 	.dapm_widgets = cht_dapm_widgets,
 	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
-	.dapm_routes = cht_audio_map,
-	.num_dapm_routes = ARRAY_SIZE(cht_audio_map),
+	.dapm_routes = cht_rt5645_audio_map,
+	.num_dapm_routes = ARRAY_SIZE(cht_rt5645_audio_map),
 	.controls = cht_mc_controls,
 	.num_controls = ARRAY_SIZE(cht_mc_controls),
 };
 
+static struct snd_soc_card snd_soc_card_chtrt5650 = {
+	.name = "chtrt5650",
+	.dai_link = cht_dailink,
+	.num_links = ARRAY_SIZE(cht_dailink),
+	.dapm_widgets = cht_dapm_widgets,
+	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
+	.dapm_routes = cht_rt5650_audio_map,
+	.num_dapm_routes = ARRAY_SIZE(cht_rt5650_audio_map),
+	.controls = cht_mc_controls,
+	.num_controls = ARRAY_SIZE(cht_mc_controls),
+};
+
+static struct cht_acpi_card snd_soc_cards[] = {
+	{"10EC5645", CODEC_TYPE_RT5645, &snd_soc_card_chtrt5645},
+	{"10EC5650", CODEC_TYPE_RT5650, &snd_soc_card_chtrt5650},
+};
+
+static acpi_status snd_acpi_codec_match(acpi_handle handle, u32 level,
+				       void *context, void **ret)
+{
+	*(bool *)context = true;
+	return AE_OK;
+}
+
 static int snd_cht_mc_probe(struct platform_device *pdev)
 {
 	int ret_val = 0;
+	int i;
 	struct cht_mc_private *drv;
+	struct snd_soc_card *card = snd_soc_cards[0].soc_card;
+	bool found = false;
+	char codec_name[16];
 
 	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_ATOMIC);
 	if (!drv)
 		return -ENOMEM;
 
-	snd_soc_card_cht.dev = &pdev->dev;
-	snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
-	ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
+	for (i = 0; i < ARRAY_SIZE(snd_soc_cards); i++) {
+		if (ACPI_SUCCESS(acpi_get_devices(
+						snd_soc_cards[i].codec_id,
+						snd_acpi_codec_match,
+						&found, NULL)) && found) {
+			dev_dbg(&pdev->dev,
+				"found codec %s\n", snd_soc_cards[i].codec_id);
+			card = snd_soc_cards[i].soc_card;
+			drv->acpi_card = &snd_soc_cards[i];
+			break;
+		}
+	}
+	card->dev = &pdev->dev;
+	sprintf(codec_name, "i2c-%s:00", drv->acpi_card->codec_id);
+	/* set correct codec name */
+	strcpy((char *)card->dai_link[2].codec_name, codec_name);
+	snd_soc_card_set_drvdata(card, drv);
+	ret_val = devm_snd_soc_register_card(&pdev->dev, card);
 	if (ret_val) {
 		dev_err(&pdev->dev,
 			"snd_soc_register_card failed %d\n", ret_val);
 		return ret_val;
 	}
-	platform_set_drvdata(pdev, &snd_soc_card_cht);
+	platform_set_drvdata(pdev, card);
 	return ret_val;
 }
 
 static struct platform_driver snd_cht_mc_driver = {
 	.driver = {
 		.name = "cht-bsw-rt5645",
-		.pm = &snd_soc_pm_ops,
 	},
 	.probe = snd_cht_mc_probe,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v3] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-23 17:23 ` [PATCH v3] " yang.a.fang
@ 2015-04-24  5:24   ` Vinod Koul
  2015-04-24 12:44   ` Mark Brown
  1 sibling, 0 replies; 11+ messages in thread
From: Vinod Koul @ 2015-04-24  5:24 UTC (permalink / raw)
  To: yang.a.fang
  Cc: alsa-devel, praveen.k.jain, lgirdwood, denny.iriawan, broonie,
	sathyanarayana.nujella, kevin.strasser

On Thu, Apr 23, 2015 at 10:23:02AM -0700, yang.a.fang@intel.com wrote:
> From: "Fang, Yang A" <yang.a.fang@intel.com>
> 
> rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver
> 
Acked-by: Vinod Koul <vinod.koul@intel.com>

-- 
~Vinod

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v3] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-23 17:23 ` [PATCH v3] " yang.a.fang
  2015-04-24  5:24   ` Vinod Koul
@ 2015-04-24 12:44   ` Mark Brown
  2015-04-29  5:25     ` Fang, Yang A
  1 sibling, 1 reply; 11+ messages in thread
From: Mark Brown @ 2015-04-24 12:44 UTC (permalink / raw)
  To: yang.a.fang
  Cc: alsa-devel, vinod.koul, praveen.k.jain, lgirdwood, denny.iriawan,
	sathyanarayana.nujella, kevin.strasser


[-- Attachment #1.1: Type: text/plain, Size: 218 bytes --]

On Thu, Apr 23, 2015 at 10:23:02AM -0700, yang.a.fang@intel.com wrote:
> From: "Fang, Yang A" <yang.a.fang@intel.com>
> 
> rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v3] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-24 12:44   ` Mark Brown
@ 2015-04-29  5:25     ` Fang, Yang A
  2015-04-29 10:48       ` Mark Brown
  0 siblings, 1 reply; 11+ messages in thread
From: Fang, Yang A @ 2015-04-29  5:25 UTC (permalink / raw)
  To: 'Mark Brown'
  Cc: alsa-devel, Koul, Vinod, Jain, Praveen K, lgirdwood, Iriawan,
	Denny, Nujella, Sathyanarayana, kevin.strasser



> -----Original Message-----
> From: Mark Brown [mailto:broonie@kernel.org]
> Sent: Friday, April 24, 2015 5:44 AM
> To: Fang, Yang A
> Cc: lgirdwood@gmail.com; alsa-devel@alsa-project.org; Koul, Vinod;
> kevin.strasser@linux.intel.com; Nujella, Sathyanarayana; Jain, Praveen K;
> Iriawan, Denny
> Subject: Re: [PATCH v3] ASoC: Intel: Support rt5650 codec for Cherrytrail &
> Braswell
> 
> On Thu, Apr 23, 2015 at 10:23:02AM -0700, yang.a.fang@intel.com wrote:
> > From: "Fang, Yang A" <yang.a.fang@intel.com>
> >
> > rt5650 and rt5645 are similar codec so reuse the cht_bsw_rt5645 driver
> 
> Applied, thanks.

Hi Mark,

May I ask which branch you are applied?  I did not find it in topic/intel  or  for-next.

Thanks,
Yang

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v3] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell
  2015-04-29  5:25     ` Fang, Yang A
@ 2015-04-29 10:48       ` Mark Brown
  0 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2015-04-29 10:48 UTC (permalink / raw)
  To: Fang, Yang A
  Cc: alsa-devel, Koul, Vinod, Jain, Praveen K, lgirdwood, Iriawan,
	Denny, Nujella, Sathyanarayana, kevin.strasser


[-- Attachment #1.1: Type: text/plain, Size: 224 bytes --]

On Wed, Apr 29, 2015 at 05:25:35AM +0000, Fang, Yang A wrote:

> May I ask which branch you are applied?  I did not find it in
> topic/intel  or  for-next.

Applied means it's in my local tree, not that it's been published.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-04-29 10:48 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-21 23:35 [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell yang.a.fang
2015-04-21 23:36 ` [PATCH 2/2] ASoC: Intel: Add support rt5650 in sst driver yang.a.fang
2015-04-22 10:32   ` Mark Brown
2015-04-22  4:18 ` [PATCH 1/2] ASoC: Intel: Support rt5650 codec for Cherrytrail & Braswell Vinod Koul
2015-04-22  5:02   ` Yang Fang
2015-04-22 21:56 ` [PATCH v2] " yang.a.fang
2015-04-23 17:23 ` [PATCH v3] " yang.a.fang
2015-04-24  5:24   ` Vinod Koul
2015-04-24 12:44   ` Mark Brown
2015-04-29  5:25     ` Fang, Yang A
2015-04-29 10:48       ` Mark Brown

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.