From: Lukas Wunner <lukas@wunner.de>
To: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Cc: Mark Brown <broonie@kernel.org>,
Florian Fainelli <f.fainelli@gmail.com>,
Ray Jui <rjui@broadcom.com>,
Scott Branden <sbranden@broadcom.com>,
bcm-kernel-feedback-list@broadcom.com,
Martin Sperl <kernel@martin.sperl.org>,
linux-spi@vger.kernel.org, linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] spi: bcm2835: Enable shared interrupt support
Date: Fri, 29 May 2020 19:43:58 +0200 [thread overview]
Message-ID: <20200529174358.som3snunfxch6phi@wunner.de> (raw)
In-Reply-To: <20200528185805.28991-1-nsaenzjulienne@suse.de>
On Thu, May 28, 2020 at 08:58:04PM +0200, Nicolas Saenz Julienne wrote:
> --- a/drivers/spi/spi-bcm2835.c
> +++ b/drivers/spi/spi-bcm2835.c
> @@ -379,6 +379,10 @@ static irqreturn_t bcm2835_spi_interrupt(int irq, void *dev_id)
> if (bs->tx_len && cs & BCM2835_SPI_CS_DONE)
> bcm2835_wr_fifo_blind(bs, BCM2835_SPI_FIFO_SIZE);
>
> + /* check if we got interrupt enabled */
> + if (!(bcm2835_rd(bs, BCM2835_SPI_CS) & BCM2835_SPI_CS_INTR))
> + return IRQ_NONE;
> +
> /* Read as many bytes as possible from FIFO */
> bcm2835_rd_fifo(bs);
> /* Write as many bytes as possible to FIFO */
This definitely looks wrong. The check whether the interrupt is enabled
should be moved *before* the conditional calls to bcm2835_rd_fifo_blind()
and bcm2835_wr_fifo_blind(), i.e. to the top of the function.
Otherwise if an interrupt is raised by another SPI controller,
this function may perform read/write accesses to the FIFO and
interfere with an ongoing transfer in DMA or poll mode.
Also, instead of performing an MMIO read, just use the "cs" variable
which was assigned at the top of the function.
The code comment should explain that the check is necessary because the
interrupt may be shared with other controllers on the BCM2711.
Finally, it would be nice if the check would be optimized away when
compiling for pre-RasPi4 products, maybe something like:
+ if (IS_ENABLED(CONFIG_ARM_LPAE) && !(cs & BCM2835_SPI_CS_INTR))
+ return IRQ_NONE;
Thanks,
Lukas
next prev parent reply other threads:[~2020-05-29 17:44 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-28 18:58 [PATCH] spi: bcm2835: Enable shared interrupt support Nicolas Saenz Julienne
2020-05-28 18:58 ` Nicolas Saenz Julienne
2020-05-28 19:00 ` Florian Fainelli
2020-05-28 19:00 ` Florian Fainelli
2020-05-29 17:18 ` Mark Brown
2020-05-29 17:18 ` Mark Brown
2020-05-29 17:43 ` Lukas Wunner [this message]
2020-05-29 17:46 ` Florian Fainelli
2020-05-29 17:46 ` Florian Fainelli
2020-05-29 17:53 ` Lukas Wunner
2020-05-29 18:03 ` Florian Fainelli
2020-05-29 18:03 ` Florian Fainelli
2020-05-29 18:16 ` Lukas Wunner
2020-05-29 17:48 ` Mark Brown
2020-05-29 17:48 ` Mark Brown
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=20200529174358.som3snunfxch6phi@wunner.de \
--to=lukas@wunner.de \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=broonie@kernel.org \
--cc=f.fainelli@gmail.com \
--cc=kernel@martin.sperl.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=linux-spi@vger.kernel.org \
--cc=nsaenzjulienne@suse.de \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.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.