LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Marc Zyngier <maz@kernel.org>
To: "Pali Rohár" <pali@kernel.org>
Cc: "Lorenzo Pieralisi" <lorenzo.pieralisi@arm.com>,
"Thomas Petazzoni" <thomas.petazzoni@bootlin.com>,
"Bjorn Helgaas" <bhelgaas@google.com>,
"Rob Herring" <robh@kernel.org>, "Marek Behún" <kabel@kernel.org>,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 6/7] PCI: aardvark: Correctly clear and unmask all MSI interrupts
Date: Fri, 06 Aug 2021 09:32:24 +0100 [thread overview]
Message-ID: <fb3a7ef15397292692b6d5dd0d2e439e@kernel.org> (raw)
In-Reply-To: <20210625090319.10220-7-pali@kernel.org>
On 2021-06-25 10:03, Pali Rohár wrote:
> Define a new macro PCIE_MSI_ALL_MASK and use it for masking, unmasking
> and
> clearing all MSI interrupts.
>
> Signed-off-by: Pali Rohár <pali@kernel.org>
> Reviewed-by: Marek Behún <kabel@kernel.org>
> Cc: stable@vger.kernel.org
> ---
> drivers/pci/controller/pci-aardvark.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/pci/controller/pci-aardvark.c
> b/drivers/pci/controller/pci-aardvark.c
> index 0e81d89f307d..7cad6d989f6c 100644
> --- a/drivers/pci/controller/pci-aardvark.c
> +++ b/drivers/pci/controller/pci-aardvark.c
> @@ -117,6 +117,7 @@
> #define PCIE_MSI_ADDR_HIGH_REG (CONTROL_BASE_ADDR + 0x54)
> #define PCIE_MSI_STATUS_REG (CONTROL_BASE_ADDR + 0x58)
> #define PCIE_MSI_MASK_REG (CONTROL_BASE_ADDR + 0x5C)
> +#define PCIE_MSI_ALL_MASK GENMASK(31, 0)
> #define PCIE_MSI_PAYLOAD_REG (CONTROL_BASE_ADDR + 0x9C)
> #define PCIE_MSI_DATA_MASK GENMASK(15, 0)
>
> @@ -470,19 +471,22 @@ static void advk_pcie_setup_hw(struct advk_pcie
> *pcie)
> advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG);
>
> /* Clear all interrupts */
> + advk_writel(pcie, PCIE_MSI_ALL_MASK, PCIE_MSI_STATUS_REG);
> advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_REG);
> advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_REG);
> advk_writel(pcie, PCIE_IRQ_ALL_MASK, HOST_CTRL_INT_STATUS_REG);
>
> /* Disable All ISR0/1 Sources */
> - reg = PCIE_ISR0_ALL_MASK;
> - reg &= ~PCIE_ISR0_MSI_INT_PENDING;
> - advk_writel(pcie, reg, PCIE_ISR0_MASK_REG);
> -
> + advk_writel(pcie, PCIE_ISR0_ALL_MASK, PCIE_ISR0_MASK_REG);
> advk_writel(pcie, PCIE_ISR1_ALL_MASK, PCIE_ISR1_MASK_REG);
>
> /* Unmask all MSIs */
> - advk_writel(pcie, 0, PCIE_MSI_MASK_REG);
> + advk_writel(pcie, ~(u32)PCIE_MSI_ALL_MASK, PCIE_MSI_MASK_REG);
> +
> + /* Unmask summary MSI interrupt */
> + reg = advk_readl(pcie, PCIE_ISR0_MASK_REG);
> + reg &= ~PCIE_ISR0_MSI_INT_PENDING;
> + advk_writel(pcie, reg, PCIE_ISR0_MASK_REG);
>
> /* Enable summary interrupt for GIC SPI source */
> reg = PCIE_IRQ_ALL_MASK & (~PCIE_IRQ_ENABLE_INTS_MASK);
> @@ -1177,7 +1181,7 @@ static void advk_pcie_handle_msi(struct advk_pcie
> *pcie)
>
> msi_mask = advk_readl(pcie, PCIE_MSI_MASK_REG);
> msi_val = advk_readl(pcie, PCIE_MSI_STATUS_REG);
> - msi_status = msi_val & ~msi_mask;
> + msi_status = msi_val & ((~msi_mask) & PCIE_MSI_ALL_MASK);
>
> for (msi_idx = 0; msi_idx < MSI_IRQ_NUM; msi_idx++) {
> if (!(BIT(msi_idx) & msi_status))
This still begs the question: why would you ever enable all
MSIs the first place? They should be enabled on request only.
M.
--
Jazz is not dead. It just smells funny...
next prev parent reply other threads:[~2021-08-06 8:32 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-25 9:03 [PATCH 0/7] PCI: aardvark: Interrupt fixes Pali Rohár
2021-06-25 9:03 ` [PATCH 1/7] PCI: aardvark: Do not touch status bits of masked interrupts in interrupt handler Pali Rohár
2021-06-25 9:03 ` [PATCH 2/7] PCI: aardvark: Check for virq mapping when processing INTx IRQ Pali Rohár
2021-08-06 8:29 ` Marc Zyngier
2021-08-23 16:33 ` Pali Rohár
2021-08-23 16:47 ` Marc Zyngier
2021-06-25 9:03 ` [PATCH 3/7] PCI: aardvark: Remove irq_mask_ack callback for INTx interrupts Pali Rohár
2021-06-25 9:03 ` [PATCH 4/7] PCI: aardvark: Don't mask irq when mapping Pali Rohár
2021-06-25 9:03 ` [PATCH 5/7] PCI: aardvark: Fix support for MSI interrupts Pali Rohár
2021-06-25 9:03 ` [PATCH 6/7] PCI: aardvark: Correctly clear and unmask all " Pali Rohár
2021-08-06 8:32 ` Marc Zyngier [this message]
2021-08-06 8:35 ` Pali Rohár
2021-08-23 16:42 ` Pali Rohár
2021-06-25 9:03 ` [PATCH 7/7] PCI: aardvark: Fix setting MSI address Pali Rohár
2021-08-05 17:35 ` [PATCH 0/7] PCI: aardvark: Interrupt fixes Pali Rohár
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=fb3a7ef15397292692b6d5dd0d2e439e@kernel.org \
--to=maz@kernel.org \
--cc=bhelgaas@google.com \
--cc=kabel@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=pali@kernel.org \
--cc=robh@kernel.org \
--cc=thomas.petazzoni@bootlin.com \
--subject='Re: [PATCH 6/7] PCI: aardvark: Correctly clear and unmask all MSI interrupts' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).