RE: [PATCH 1/7] ASoC: amd: No need PCI-MSI interrupts

From: Deucher, Alexander
Date: Tue Oct 01 2019 - 13:23:50 EST


> -----Original Message-----
> From: Ravulapati Vishnu vardhan rao
> <Vishnuvardhanrao.Ravulapati@xxxxxxx>
> Sent: Monday, September 30, 2019 8:58 PM
> Cc: Deucher, Alexander <Alexander.Deucher@xxxxxxx>; RAVULAPATI,
> VISHNU VARDHAN RAO <Vishnuvardhanrao.Ravulapati@xxxxxxx>; Liam
> Girdwood <lgirdwood@xxxxxxxxx>; Mark Brown <broonie@xxxxxxxxxx>;
> Jaroslav Kysela <perex@xxxxxxxx>; Takashi Iwai <tiwai@xxxxxxxx>;
> Mukunda, Vijendar <Vijendar.Mukunda@xxxxxxx>; Maruthi Srinivas
> Bayyavarapu <Maruthi.Bayyavarapu@xxxxxxx>; Deucher, Alexander
> <Alexander.Deucher@xxxxxxx>; Colin Ian King
> <colin.king@xxxxxxxxxxxxx>; Dan Carpenter <dan.carpenter@xxxxxxxxxx>;
> moderated list:SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEM...
> <alsa-devel@xxxxxxxxxxxxxxxx>; open list <linux-kernel@xxxxxxxxxxxxxxx>
> Subject: [PATCH 1/7] ASoC: amd: No need PCI-MSI interrupts
>
> ACP-PCI controller driver does not depends msi interrupts.
> So removed msi related pci functions which have no use and does not impact
> on existing functionality.

In general, however, aren't MSIs preferred to legacy interrupts? Doesn't the driver have to opt into MSI support? As such, won't removing this code effectively disable MSI support?

Alex

>
> Signed-off-by: Ravulapati Vishnu vardhan rao
> <Vishnuvardhanrao.Ravulapati@xxxxxxx>
> ---
> sound/soc/amd/raven/pci-acp3x.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/sound/soc/amd/raven/pci-acp3x.c b/sound/soc/amd/raven/pci-
> acp3x.c index facec24..8f6bf00 100644
> --- a/sound/soc/amd/raven/pci-acp3x.c
> +++ b/sound/soc/amd/raven/pci-acp3x.c
> @@ -46,14 +46,7 @@ static int snd_acp3x_probe(struct pci_dev *pci,
> goto release_regions;
> }
>
> - /* check for msi interrupt support */
> - ret = pci_enable_msi(pci);
> - if (ret)
> - /* msi is not enabled */
> - irqflags = IRQF_SHARED;
> - else
> - /* msi is enabled */
> - irqflags = 0;
> + irqflags = 0;
>
> addr = pci_resource_start(pci, 0);
> adata->acp3x_base = ioremap(addr, pci_resource_len(pci, 0)); @@ -
> 112,7 +105,6 @@ static int snd_acp3x_probe(struct pci_dev *pci,
> return 0;
>
> unmap_mmio:
> - pci_disable_msi(pci);
> iounmap(adata->acp3x_base);
> release_regions:
> pci_release_regions(pci);
> @@ -129,7 +121,6 @@ static void snd_acp3x_remove(struct pci_dev *pci)
> platform_device_unregister(adata->pdev);
> iounmap(adata->acp3x_base);
>
> - pci_disable_msi(pci);
> pci_release_regions(pci);
> pci_disable_device(pci);
> }
> --
> 2.7.4