From: Philipp Stanner <pstanner@redhat.com>
To: Takashi Iwai <tiwai@suse.de>, Heiner Kallweit <hkallweit1@gmail.com>
Cc: Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
linux-sound@vger.kernel.org, Bjorn Helgaas <helgaas@kernel.org>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>
Subject: Re: [PATCH] ALSA: hda: intel: Switch to pci_alloc_irq_vectors API
Date: Mon, 04 Nov 2024 10:30:00 +0100 [thread overview]
Message-ID: <a16dab7222bc1388f4a4d5b1baa6ce0c613d7933.camel@redhat.com> (raw)
In-Reply-To: <87bjyzuyvz.wl-tiwai@suse.de>
On Fri, 2024-11-01 at 09:44 +0100, Takashi Iwai wrote:
> On Thu, 31 Oct 2024 20:41:12 +0100,
> Heiner Kallweit wrote:
> >
> > Switch from legacy pci_msi_enable()/pci_intx() API to the
> > pci_alloc_irq_vectors API.
> >
> > Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>
> So, this change looks conflicting with the pcim_intx() cleanup patch
> set from Philipp. I think we can take this one and drop the
> corresponding one from Philipp's patch set.
>
> Bjorn, Philipp, does it sound OK?
Yes, that will be trivial to do. I'll just drop my hda_intel patch and
that's it.
Thanks,
P.
>
>
> thanks,
>
> Takashi
>
> > ---
> > sound/pci/hda/hda_intel.c | 21 ++++++++++++---------
> > 1 file changed, 12 insertions(+), 9 deletions(-)
> >
> > diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
> > index 9fc5e6c5d..fc329b6a7 100644
> > --- a/sound/pci/hda/hda_intel.c
> > +++ b/sound/pci/hda/hda_intel.c
> > @@ -773,6 +773,14 @@ static void azx_clear_irq_pending(struct azx
> > *chip)
> > static int azx_acquire_irq(struct azx *chip, int do_disconnect)
> > {
> > struct hdac_bus *bus = azx_bus(chip);
> > + int ret;
> > +
> > + if (!chip->msi || pci_alloc_irq_vectors(chip->pci, 1, 1,
> > PCI_IRQ_MSI) < 0) {
> > + ret = pci_alloc_irq_vectors(chip->pci, 1, 1,
> > PCI_IRQ_INTX);
> > + if (ret < 0)
> > + return ret;
> > + chip->msi = 0;
> > + }
> >
> > if (request_irq(chip->pci->irq, azx_interrupt,
> > chip->msi ? 0 : IRQF_SHARED,
> > @@ -786,7 +794,6 @@ static int azx_acquire_irq(struct azx *chip,
> > int do_disconnect)
> > }
> > bus->irq = chip->pci->irq;
> > chip->card->sync_irq = bus->irq;
> > - pci_intx(chip->pci, !chip->msi);
> > return 0;
> > }
> >
> > @@ -1879,13 +1886,9 @@ static int azx_first_init(struct azx *chip)
> > chip->gts_present = true;
> > #endif
> >
> > - if (chip->msi) {
> > - if (chip->driver_caps & AZX_DCAPS_NO_MSI64) {
> > - dev_dbg(card->dev, "Disabling 64bit
> > MSI\n");
> > - pci->no_64bit_msi = true;
> > - }
> > - if (pci_enable_msi(pci) < 0)
> > - chip->msi = 0;
> > + if (chip->msi && chip->driver_caps & AZX_DCAPS_NO_MSI64) {
> > + dev_dbg(card->dev, "Disabling 64bit MSI\n");
> > + pci->no_64bit_msi = true;
> > }
> >
> > pci_set_master(pci);
> > @@ -2037,7 +2040,7 @@ static int disable_msi_reset_irq(struct azx
> > *chip)
> > free_irq(bus->irq, chip);
> > bus->irq = -1;
> > chip->card->sync_irq = -1;
> > - pci_disable_msi(chip->pci);
> > + pci_free_irq_vectors(chip->pci);
> > chip->msi = 0;
> > err = azx_acquire_irq(chip, 1);
> > if (err < 0)
> > --
> > 2.47.0
> >
>
next prev parent reply other threads:[~2024-11-04 9:30 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-31 19:41 [PATCH] ALSA: hda: intel: Switch to pci_alloc_irq_vectors API Heiner Kallweit
2024-11-01 8:44 ` Takashi Iwai
2024-11-04 9:30 ` Philipp Stanner [this message]
2024-11-04 13:23 ` Takashi Iwai
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=a16dab7222bc1388f4a4d5b1baa6ce0c613d7933.camel@redhat.com \
--to=pstanner@redhat.com \
--cc=helgaas@kernel.org \
--cc=hkallweit1@gmail.com \
--cc=linux-pci@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=perex@perex.cz \
--cc=tiwai@suse.com \
--cc=tiwai@suse.de \
/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