All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Mukunda,Vijendar" <vijendar.mukunda@amd.com>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>,
	broonie@kernel.org, alsa-devel@alsa-project.org
Cc: Sunil-kumar.Dommati@amd.com,
	open list <linux-kernel@vger.kernel.org>,
	Takashi Iwai <tiwai@suse.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Alexander.Deucher@amd.com, krisman@collabora.com
Subject: Re: [PATCH V3 04/12] ASoC: amd: create acp5x platform devices
Date: Tue, 20 Jul 2021 00:47:03 +0530	[thread overview]
Message-ID: <a6c5600b-4d1b-2791-8b61-f241dcdbeb14@amd.com> (raw)
In-Reply-To: <035b3dbe-bbe0-bf0b-3893-d176418658f7@linux.intel.com>

On 7/19/21 11:37 PM, Pierre-Louis Bossart wrote:
> 
> 
> On 7/19/21 11:51 AM, Vijendar Mukunda wrote:
>> ACP5.x IP has multiple I2S controllers and DMA controller.
>> Create platform devices for I2S HS controller instance, I2S SP controller
>> instance and DMA contrller.
> 
> typo: controller
Will fix it.
> 
>> Pass PCI resources like MMIO, irq to these platform devices.
>>
>> Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
>> ---
>>  sound/soc/amd/vangogh/acp5x.h     | 10 ++++
>>  sound/soc/amd/vangogh/pci-acp5x.c | 95 ++++++++++++++++++++++++++++++-
>>  2 files changed, 102 insertions(+), 3 deletions(-)
>>
>> diff --git a/sound/soc/amd/vangogh/acp5x.h b/sound/soc/amd/vangogh/acp5x.h
>> index 708586109315..bbf29fd2b12f 100644
>> --- a/sound/soc/amd/vangogh/acp5x.h
>> +++ b/sound/soc/amd/vangogh/acp5x.h
>> @@ -22,6 +22,16 @@
>>  #define ACP_ERR_INTR_MASK	0x20000000
>>  #define ACP_EXT_INTR_STAT_CLEAR_MASK 0xFFFFFFFF
>>  
>> +#define ACP5x_DEVS 0x03
> 
> 3?
> 
Will create 3 platform devices for DMA device and two
I2S controllers.

>> +#define	ACP5x_REG_START	0x1240000
>> +#define	ACP5x_REG_END	0x1250200
>> +#define ACP5x_I2STDM_REG_START	0x1242400
>> +#define ACP5x_I2STDM_REG_END	0x1242410
>> +#define ACP5x_HS_TDM_REG_START	0x1242814
>> +#define ACP5x_HS_TDM_REG_END	0x1242824
>> +#define I2S_MODE 0x00
>> +#define ACP5x_I2S_MODE 0x00
>> +
>>  /* common header file uses exact offset rather than relative
>>   * offset which requires substraction logic from base_addr
> 
> typo: subtraction
Will fix it
> 
>>   * for accessing ACP5x MMIO space registers
>> diff --git a/sound/soc/amd/vangogh/pci-acp5x.c b/sound/soc/amd/vangogh/pci-acp5x.c
>> index 523b962fe35e..3cc15a15b745 100644
>> --- a/sound/soc/amd/vangogh/pci-acp5x.c
>> +++ b/sound/soc/amd/vangogh/pci-acp5x.c
>> @@ -8,11 +8,16 @@
>>  #include <linux/module.h>
>>  #include <linux/io.h>
>>  #include <linux/delay.h>
>> +#include <linux/platform_device.h>
>> +#include <linux/interrupt.h>
>>  
>>  #include "acp5x.h"
>>  
>>  struct acp5x_dev_data {
>>  	void __iomem *acp5x_base;
>> +	bool acp5x_audio_mode;
>> +	struct resource *res;
>> +	struct platform_device *pdev[3];
> 
> pdev[ACP5x_DEVS] ?
Will update it.
> 
>>  };
>>  
>>  static int acp5x_power_on(void __iomem *acp5x_base)
>> @@ -114,9 +119,12 @@ static int snd_acp5x_probe(struct pci_dev *pci,
>>  			   const struct pci_device_id *pci_id)
>>  {
>>  	struct acp5x_dev_data *adata;
>> -	int ret;
>> -	u32 addr;
>> +	struct platform_device_info pdevinfo[3];
>> +	unsigned int irqflags;
>> +	int ret, i;
>> +	u32 addr, val;
>>  
>> +	irqflags = IRQF_SHARED;
>>  	if (pci->revision != 0x50)
>>  		return -ENODEV;
>>  
>> @@ -150,6 +158,83 @@ static int snd_acp5x_probe(struct pci_dev *pci,
>>  	if (ret)
>>  		goto release_regions;
>>  
>> +	val = acp_readl(adata->acp5x_base + ACP_PIN_CONFIG);
>> +	switch (val) {
>> +	case I2S_MODE:
>> +		adata->res = devm_kzalloc(&pci->dev,
>> +					  sizeof(struct resource) * 4,
> 
> what is this 4 value?
We are creating 4 resources using MFD framework.
Will use macro instead of hard-coded value.
> 
>> +					  GFP_KERNEL);
>> +		if (!adata->res) {
>> +			ret = -ENOMEM;
>> +			goto de_init;
>> +		}
>> +
>> +		adata->res[0].name = "acp5x_i2s_iomem";
>> +		adata->res[0].flags = IORESOURCE_MEM;
>> +		adata->res[0].start = addr;
>> +		adata->res[0].end = addr + (ACP5x_REG_END - ACP5x_REG_START);
>> +
>> +		adata->res[1].name = "acp5x_i2s_sp";
>> +		adata->res[1].flags = IORESOURCE_MEM;
>> +		adata->res[1].start = addr + ACP5x_I2STDM_REG_START;
>> +		adata->res[1].end = addr + ACP5x_I2STDM_REG_END;
>> +
>> +		adata->res[2].name = "acp5x_i2s_hs";
>> +		adata->res[2].flags = IORESOURCE_MEM;
>> +		adata->res[2].start = addr + ACP5x_HS_TDM_REG_START;
>> +		adata->res[2].end = addr + ACP5x_HS_TDM_REG_END;
>> +
>> +		adata->res[3].name = "acp5x_i2s_irq";
>> +		adata->res[3].flags = IORESOURCE_IRQ;
>> +		adata->res[3].start = pci->irq;
>> +		adata->res[3].end = adata->res[3].start;
>> +
>> +		adata->acp5x_audio_mode = ACP5x_I2S_MODE;
>> +
>> +		memset(&pdevinfo, 0, sizeof(pdevinfo));
>> +		pdevinfo[0].name = "acp5x_i2s_dma";
>> +		pdevinfo[0].id = 0;
>> +		pdevinfo[0].parent = &pci->dev;
>> +		pdevinfo[0].num_res = 4;
>> +		pdevinfo[0].res = &adata->res[0];
>> +		pdevinfo[0].data = &irqflags;
>> +		pdevinfo[0].size_data = sizeof(irqflags);
>> +
>> +		pdevinfo[1].name = "acp5x_i2s_playcap";
>> +		pdevinfo[1].id = 0;
>> +		pdevinfo[1].parent = &pci->dev;
>> +		pdevinfo[1].num_res = 1;
>> +		pdevinfo[1].res = &adata->res[1];
>> +
>> +		pdevinfo[2].name = "acp5x_i2s_playcap";
>> +		pdevinfo[2].id = 1;
>> +		pdevinfo[2].parent = &pci->dev;
>> +		pdevinfo[2].num_res = 1;
>> +		pdevinfo[2].res = &adata->res[2];
>> +
>> +		for (i = 0; i < ACP5x_DEVS; i++) {
>> +			adata->pdev[i] =
>> +				platform_device_register_full(&pdevinfo[i]);
>> +			if (IS_ERR(adata->pdev[i])) {
>> +				dev_err(&pci->dev, "cannot register %s device\n",
>> +					pdevinfo[i].name);
>> +				ret = PTR_ERR(adata->pdev[i]);
>> +				goto unregister_devs;
>> +			}
>> +		}
>> +		break;
>> +	default:
>> +		dev_info(&pci->dev, "ACP audio mode : %d\n", val);
>> +	}
>> +	return 0;
>> +
>> +unregister_devs:
>> +	if (val == I2S_MODE)
> 
> nit-pick: you can't reach this point outside of the I2S_MODE, so this test is not useful
> 
> 
>> +		for (i = 0; i < ACP5x_DEVS; i++)
>> +			platform_device_unregister(adata->pdev[i]);
> 
> only unregister what you registered?

Yes, We are unregistering devices which got registered.
We can refactor the code by moving code to switch case it self rather
than handling by declaring the label for it.

Will fix it and post the new version.

> 
> for (--i; i > 0; i--)
> 
>> +de_init:
>> +	if (acp5x_deinit(adata->acp5x_base))
>> +		dev_err(&pci->dev, "ACP de-init failed\n");
>>  release_regions:
>>  	pci_release_regions(pci);
>>  disable_pci:
>> @@ -161,9 +246,13 @@ static int snd_acp5x_probe(struct pci_dev *pci,
>>  static void snd_acp5x_remove(struct pci_dev *pci)
>>  {
>>  	struct acp5x_dev_data *adata;
>> -	int ret;
>> +	int i, ret;
>>  
>>  	adata = pci_get_drvdata(pci);
>> +	if (adata->acp5x_audio_mode == ACP5x_I2S_MODE) {
>> +		for (i = 0; i < ACP5x_DEVS; i++)
>> +			platform_device_unregister(adata->pdev[i]);
>> +	}
>>  	ret = acp5x_deinit(adata->acp5x_base);
>>  	if (ret)
>>  		dev_err(&pci->dev, "ACP de-init failed\n");
>>


WARNING: multiple messages have this Message-ID (diff)
From: "Mukunda,Vijendar" <vijendar.mukunda@amd.com>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>,
	broonie@kernel.org, alsa-devel@alsa-project.org
Cc: Sunil-kumar.Dommati@amd.com, Takashi Iwai <tiwai@suse.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	open list <linux-kernel@vger.kernel.org>,
	Alexander.Deucher@amd.com, krisman@collabora.com
Subject: Re: [PATCH V3 04/12] ASoC: amd: create acp5x platform devices
Date: Tue, 20 Jul 2021 00:47:03 +0530	[thread overview]
Message-ID: <a6c5600b-4d1b-2791-8b61-f241dcdbeb14@amd.com> (raw)
In-Reply-To: <035b3dbe-bbe0-bf0b-3893-d176418658f7@linux.intel.com>

On 7/19/21 11:37 PM, Pierre-Louis Bossart wrote:
> 
> 
> On 7/19/21 11:51 AM, Vijendar Mukunda wrote:
>> ACP5.x IP has multiple I2S controllers and DMA controller.
>> Create platform devices for I2S HS controller instance, I2S SP controller
>> instance and DMA contrller.
> 
> typo: controller
Will fix it.
> 
>> Pass PCI resources like MMIO, irq to these platform devices.
>>
>> Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com>
>> ---
>>  sound/soc/amd/vangogh/acp5x.h     | 10 ++++
>>  sound/soc/amd/vangogh/pci-acp5x.c | 95 ++++++++++++++++++++++++++++++-
>>  2 files changed, 102 insertions(+), 3 deletions(-)
>>
>> diff --git a/sound/soc/amd/vangogh/acp5x.h b/sound/soc/amd/vangogh/acp5x.h
>> index 708586109315..bbf29fd2b12f 100644
>> --- a/sound/soc/amd/vangogh/acp5x.h
>> +++ b/sound/soc/amd/vangogh/acp5x.h
>> @@ -22,6 +22,16 @@
>>  #define ACP_ERR_INTR_MASK	0x20000000
>>  #define ACP_EXT_INTR_STAT_CLEAR_MASK 0xFFFFFFFF
>>  
>> +#define ACP5x_DEVS 0x03
> 
> 3?
> 
Will create 3 platform devices for DMA device and two
I2S controllers.

>> +#define	ACP5x_REG_START	0x1240000
>> +#define	ACP5x_REG_END	0x1250200
>> +#define ACP5x_I2STDM_REG_START	0x1242400
>> +#define ACP5x_I2STDM_REG_END	0x1242410
>> +#define ACP5x_HS_TDM_REG_START	0x1242814
>> +#define ACP5x_HS_TDM_REG_END	0x1242824
>> +#define I2S_MODE 0x00
>> +#define ACP5x_I2S_MODE 0x00
>> +
>>  /* common header file uses exact offset rather than relative
>>   * offset which requires substraction logic from base_addr
> 
> typo: subtraction
Will fix it
> 
>>   * for accessing ACP5x MMIO space registers
>> diff --git a/sound/soc/amd/vangogh/pci-acp5x.c b/sound/soc/amd/vangogh/pci-acp5x.c
>> index 523b962fe35e..3cc15a15b745 100644
>> --- a/sound/soc/amd/vangogh/pci-acp5x.c
>> +++ b/sound/soc/amd/vangogh/pci-acp5x.c
>> @@ -8,11 +8,16 @@
>>  #include <linux/module.h>
>>  #include <linux/io.h>
>>  #include <linux/delay.h>
>> +#include <linux/platform_device.h>
>> +#include <linux/interrupt.h>
>>  
>>  #include "acp5x.h"
>>  
>>  struct acp5x_dev_data {
>>  	void __iomem *acp5x_base;
>> +	bool acp5x_audio_mode;
>> +	struct resource *res;
>> +	struct platform_device *pdev[3];
> 
> pdev[ACP5x_DEVS] ?
Will update it.
> 
>>  };
>>  
>>  static int acp5x_power_on(void __iomem *acp5x_base)
>> @@ -114,9 +119,12 @@ static int snd_acp5x_probe(struct pci_dev *pci,
>>  			   const struct pci_device_id *pci_id)
>>  {
>>  	struct acp5x_dev_data *adata;
>> -	int ret;
>> -	u32 addr;
>> +	struct platform_device_info pdevinfo[3];
>> +	unsigned int irqflags;
>> +	int ret, i;
>> +	u32 addr, val;
>>  
>> +	irqflags = IRQF_SHARED;
>>  	if (pci->revision != 0x50)
>>  		return -ENODEV;
>>  
>> @@ -150,6 +158,83 @@ static int snd_acp5x_probe(struct pci_dev *pci,
>>  	if (ret)
>>  		goto release_regions;
>>  
>> +	val = acp_readl(adata->acp5x_base + ACP_PIN_CONFIG);
>> +	switch (val) {
>> +	case I2S_MODE:
>> +		adata->res = devm_kzalloc(&pci->dev,
>> +					  sizeof(struct resource) * 4,
> 
> what is this 4 value?
We are creating 4 resources using MFD framework.
Will use macro instead of hard-coded value.
> 
>> +					  GFP_KERNEL);
>> +		if (!adata->res) {
>> +			ret = -ENOMEM;
>> +			goto de_init;
>> +		}
>> +
>> +		adata->res[0].name = "acp5x_i2s_iomem";
>> +		adata->res[0].flags = IORESOURCE_MEM;
>> +		adata->res[0].start = addr;
>> +		adata->res[0].end = addr + (ACP5x_REG_END - ACP5x_REG_START);
>> +
>> +		adata->res[1].name = "acp5x_i2s_sp";
>> +		adata->res[1].flags = IORESOURCE_MEM;
>> +		adata->res[1].start = addr + ACP5x_I2STDM_REG_START;
>> +		adata->res[1].end = addr + ACP5x_I2STDM_REG_END;
>> +
>> +		adata->res[2].name = "acp5x_i2s_hs";
>> +		adata->res[2].flags = IORESOURCE_MEM;
>> +		adata->res[2].start = addr + ACP5x_HS_TDM_REG_START;
>> +		adata->res[2].end = addr + ACP5x_HS_TDM_REG_END;
>> +
>> +		adata->res[3].name = "acp5x_i2s_irq";
>> +		adata->res[3].flags = IORESOURCE_IRQ;
>> +		adata->res[3].start = pci->irq;
>> +		adata->res[3].end = adata->res[3].start;
>> +
>> +		adata->acp5x_audio_mode = ACP5x_I2S_MODE;
>> +
>> +		memset(&pdevinfo, 0, sizeof(pdevinfo));
>> +		pdevinfo[0].name = "acp5x_i2s_dma";
>> +		pdevinfo[0].id = 0;
>> +		pdevinfo[0].parent = &pci->dev;
>> +		pdevinfo[0].num_res = 4;
>> +		pdevinfo[0].res = &adata->res[0];
>> +		pdevinfo[0].data = &irqflags;
>> +		pdevinfo[0].size_data = sizeof(irqflags);
>> +
>> +		pdevinfo[1].name = "acp5x_i2s_playcap";
>> +		pdevinfo[1].id = 0;
>> +		pdevinfo[1].parent = &pci->dev;
>> +		pdevinfo[1].num_res = 1;
>> +		pdevinfo[1].res = &adata->res[1];
>> +
>> +		pdevinfo[2].name = "acp5x_i2s_playcap";
>> +		pdevinfo[2].id = 1;
>> +		pdevinfo[2].parent = &pci->dev;
>> +		pdevinfo[2].num_res = 1;
>> +		pdevinfo[2].res = &adata->res[2];
>> +
>> +		for (i = 0; i < ACP5x_DEVS; i++) {
>> +			adata->pdev[i] =
>> +				platform_device_register_full(&pdevinfo[i]);
>> +			if (IS_ERR(adata->pdev[i])) {
>> +				dev_err(&pci->dev, "cannot register %s device\n",
>> +					pdevinfo[i].name);
>> +				ret = PTR_ERR(adata->pdev[i]);
>> +				goto unregister_devs;
>> +			}
>> +		}
>> +		break;
>> +	default:
>> +		dev_info(&pci->dev, "ACP audio mode : %d\n", val);
>> +	}
>> +	return 0;
>> +
>> +unregister_devs:
>> +	if (val == I2S_MODE)
> 
> nit-pick: you can't reach this point outside of the I2S_MODE, so this test is not useful
> 
> 
>> +		for (i = 0; i < ACP5x_DEVS; i++)
>> +			platform_device_unregister(adata->pdev[i]);
> 
> only unregister what you registered?

Yes, We are unregistering devices which got registered.
We can refactor the code by moving code to switch case it self rather
than handling by declaring the label for it.

Will fix it and post the new version.

> 
> for (--i; i > 0; i--)
> 
>> +de_init:
>> +	if (acp5x_deinit(adata->acp5x_base))
>> +		dev_err(&pci->dev, "ACP de-init failed\n");
>>  release_regions:
>>  	pci_release_regions(pci);
>>  disable_pci:
>> @@ -161,9 +246,13 @@ static int snd_acp5x_probe(struct pci_dev *pci,
>>  static void snd_acp5x_remove(struct pci_dev *pci)
>>  {
>>  	struct acp5x_dev_data *adata;
>> -	int ret;
>> +	int i, ret;
>>  
>>  	adata = pci_get_drvdata(pci);
>> +	if (adata->acp5x_audio_mode == ACP5x_I2S_MODE) {
>> +		for (i = 0; i < ACP5x_DEVS; i++)
>> +			platform_device_unregister(adata->pdev[i]);
>> +	}
>>  	ret = acp5x_deinit(adata->acp5x_base);
>>  	if (ret)
>>  		dev_err(&pci->dev, "ACP de-init failed\n");
>>


  reply	other threads:[~2021-07-19 19:34 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19 16:51 [PATCH V3 00/12] Add Vangogh ACP ASoC driver Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 01/12] ASoC: amd: add Vangogh ACP5x IP register header Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 02/12] ASoC: amd: add Vangogh ACP PCI driver Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 03/12] ASoc: amd: add acp5x init/de-init functions Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 04/12] ASoC: amd: create acp5x platform devices Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 18:07   ` Pierre-Louis Bossart
2021-07-19 18:07     ` Pierre-Louis Bossart
2021-07-19 19:17     ` Mukunda,Vijendar [this message]
2021-07-19 19:17       ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 05/12] ASoC: amd: add ACP5x PCM platform driver Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 18:09   ` Pierre-Louis Bossart
2021-07-19 18:09     ` Pierre-Louis Bossart
2021-07-19 19:05     ` Mukunda,Vijendar
2021-07-19 19:05       ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 06/12] ASoC: amd: irq handler changes for ACP5x PCM dma driver Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 18:11   ` Pierre-Louis Bossart
2021-07-19 18:11     ` Pierre-Louis Bossart
2021-07-19 19:08     ` Mukunda,Vijendar
2021-07-19 19:08       ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 07/12] ASoC: amd: add ACP5x pcm dma driver ops Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 08/12] ASoC: amd: add vangogh i2s controller driver Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 09/12] ASoC: amd: add vangogh i2s dai driver ops Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 10/12] ASoC: amd: add vangogh pci driver pm ops Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 16:51 ` [PATCH V3 11/12] ASoC: amd: add vangogh i2s dma " Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda
2021-07-19 18:13   ` Pierre-Louis Bossart
2021-07-19 18:13     ` Pierre-Louis Bossart
2021-07-19 19:19     ` Mukunda,Vijendar
2021-07-19 19:19       ` Mukunda,Vijendar
2021-07-19 16:51 ` [PATCH V3 12/12] ASoC: amd: enable vangogh acp5x driver build Vijendar Mukunda
2021-07-19 16:51   ` Vijendar Mukunda

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=a6c5600b-4d1b-2791-8b61-f241dcdbeb14@amd.com \
    --to=vijendar.mukunda@amd.com \
    --cc=Alexander.Deucher@amd.com \
    --cc=Sunil-kumar.Dommati@amd.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=krisman@collabora.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --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 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.