mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com>,
	broonie@kernel.org, alsa-devel@alsa-project.org
Cc: Sunil-kumar.Dommati@amd.com,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	open list <linux-kernel@vger.kernel.org>,
	Basavaraj.Hiregoudar@amd.com, Takashi Iwai <tiwai@suse.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	V sujith kumar Reddy <vsujithkumar.reddy@amd.com>,
	Arnd Bergmann <arnd@arndb.de>,
	Ranjani Sridharan <ranjani.sridharan@linux.intel.com>,
	Vijendar.Mukunda@amd.com, Alexander.Deucher@amd.com,
	Daniel Baluta <daniel.baluta@nxp.com>,
	Bard Liao <bard.liao@intel.com>
Subject: Re: [PATCH 3/6] ASoC: amd: acp: Add generic PCI driver module for ACP device
Date: Thu, 13 Jan 2022 09:27:22 -0600	[thread overview]
Message-ID: <9da4d004-5fc3-125a-4e60-f0a6a4007d2b@linux.intel.com> (raw)
In-Reply-To: <20220113092842.432101-4-AjitKumar.Pandey@amd.com>


> +static int acp_pci_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
> +{
> +	struct platform_device_info pdevinfo;
> +	struct device *dev = &pci->dev;
> +	const struct resource *res_acp;
> +	struct acp_chip_info *chip;
> +	struct resource *res;
> +	unsigned int flag, addr, num_res, i;
> +	int ret;
> +
> +	flag = snd_amd_acp_find_config(pci);
> +	if (flag != FLAG_AMD_LEGACY)
> +		return -ENODEV;
> +
> +	chip = devm_kzalloc(&pci->dev, sizeof(*chip), GFP_KERNEL);
> +	if (!chip)
> +		return -ENOMEM;
> +
> +	if (pci_enable_device(pci)) {
> +		dev_err(&pci->dev, "pci_enable_device failed\n");
> +		return -ENODEV;
> +	}
> +
> +	ret = pci_request_regions(pci, "AMD ACP3x audio");
> +	if (ret < 0) {
> +		dev_err(&pci->dev, "pci_request_regions failed\n");
> +		return -ENOMEM;
> +	}
> +
> +	pci_set_master(pci);
> +
> +	switch (pci->revision) {
> +	case 0x01:
> +		res_acp = acp3x_res;
> +		num_res = ARRAY_SIZE(acp3x_res);
> +		chip->name = "acp_asoc_renoir";
> +		chip->acp_rev = ACP3X_DEV;
> +		break;
> +	default:
> +		dev_err(dev, "Unsupported device revision:0x%x\n", pci->revision);
> +		return -EINVAL;
> +	}
> +
> +	dmic_dev = platform_device_register_data(dev, "dmic-codec", PLATFORM_DEVID_NONE, NULL, 0);
> +	if (IS_ERR(dmic_dev)) {
> +		dev_err(dev, "failed to create DMIC device\n");
> +		return PTR_ERR(dmic_dev);
> +	}

Past this point, any error handling needs to use
platform_device_unregister(dmic_dev);
...

> +	addr = pci_resource_start(pci, 0);
> +	chip->base = devm_ioremap(&pci->dev, addr, pci_resource_len(pci, 0));
> +
> +	res = devm_kzalloc(&pci->dev, sizeof(struct resource) * num_res, GFP_KERNEL);
> +	if (!res)
> +		return -ENOMEM;

...which is missed here.

> +
> +	for (i = 0; i < num_res; i++, res_acp++) {
> +		res[i].name = res_acp->name;
> +		res[i].flags = res_acp->flags;
> +		res[i].start = addr + res_acp->start;
> +		res[i].end = addr + res_acp->end;
> +		if (res_acp->flags == IORESOURCE_IRQ) {
> +			res[i].start = pci->irq;
> +			res[i].end = res[i].start;
> +		}
> +	}
> +
> +	memset(&pdevinfo, 0, sizeof(pdevinfo));
> +
> +	pdevinfo.name = chip->name;
> +	pdevinfo.id = 0;
> +	pdevinfo.parent = &pci->dev;
> +	pdevinfo.num_res = num_res;
> +	pdevinfo.res = &res[0];
> +	pdevinfo.data = chip;
> +	pdevinfo.size_data = sizeof(*chip);
> +
> +	pdev = platform_device_register_full(&pdevinfo);
> +	if (IS_ERR(pdev)) {
> +		dev_err(&pci->dev, "cannot register %s device\n", pdevinfo.name);
> +		platform_device_unregister(dmic_dev);
> +		ret = PTR_ERR(pdev);
> +	}
> +
> +	return ret;
> +};


  reply	other threads:[~2022-01-13 15:44 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20220113092842.432101-1-AjitKumar.Pandey@amd.com>
2022-01-13  9:28 ` [PATCH 1/6] ASoC: amd: acp: Add generic support for PDM controller on ACP Ajit Kumar Pandey
2022-01-13  9:28 ` [PATCH 2/6] ASoC: amd: acp: Add PDM controller based dmic dai for Renoir Ajit Kumar Pandey
2022-01-13  9:28 ` [PATCH 3/6] ASoC: amd: acp: Add generic PCI driver module for ACP device Ajit Kumar Pandey
2022-01-13 15:27   ` Pierre-Louis Bossart [this message]
2022-01-13 16:18     ` Ajit Kumar Pandey
2022-01-13  9:28 ` [PATCH 4/6] ASoC: amd: acp: Add ACP init()/deinit() callback for Renoir Ajit Kumar Pandey
2022-01-13  9:28 ` [PATCH 5/6] ASoC: amd: acp: acp-legacy: Add DMIC dai link support " Ajit Kumar Pandey
2022-01-13  9:28 ` [PATCH 6/6] ASoC: amd: renoir: Add check for acp configuration flags Ajit Kumar Pandey

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=9da4d004-5fc3-125a-4e60-f0a6a4007d2b@linux.intel.com \
    --to=pierre-louis.bossart@linux.intel.com \
    --cc=AjitKumar.Pandey@amd.com \
    --cc=Alexander.Deucher@amd.com \
    --cc=Basavaraj.Hiregoudar@amd.com \
    --cc=Sunil-kumar.Dommati@amd.com \
    --cc=Vijendar.Mukunda@amd.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=arnd@arndb.de \
    --cc=bard.liao@intel.com \
    --cc=broonie@kernel.org \
    --cc=daniel.baluta@nxp.com \
    --cc=geert+renesas@glider.be \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ranjani.sridharan@linux.intel.com \
    --cc=tiwai@suse.com \
    --cc=vsujithkumar.reddy@amd.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

Powered by JetHome