Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752073AbdFOF1h (ORCPT ); Thu, 15 Jun 2017 01:27:37 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:47900 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750823AbdFOF1e (ORCPT ); Thu, 15 Jun 2017 01:27:34 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 7F30560953 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=sricharan@codeaurora.org Subject: Re: [PATCH 11/18] spi: qup: properly detect extra interrupts To: Andy Gross Cc: Varadarajan Narayanan , broonie@kernel.org, robh+dt@kernel.org, mark.rutland@arm.com, david.brown@linaro.org, linux-spi@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org, Matthew McClintock References: <1497419551-21834-1-git-send-email-varada@codeaurora.org> <1497419551-21834-12-git-send-email-varada@codeaurora.org> <20170614195953.GD32733@hector.wework.com> From: Sricharan R Message-ID: Date: Thu, 15 Jun 2017 10:57:27 +0530 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <20170614195953.GD32733@hector.wework.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3456 Lines: 90 Hi Andy, On 6/15/2017 1:29 AM, Andy Gross wrote: > On Wed, Jun 14, 2017 at 12:57:25PM +0530, Sricharan R wrote: >> Hi Varada, >> >> On 6/14/2017 11:22 AM, Varadarajan Narayanan wrote: >>> It's possible for a SPI transaction to complete and get another >>> interrupt and have it processed on the same spi_transfer before the >>> transfer_one can set it to NULL. >>> >>> This masks unexpected interrupts, so let's set the spi_transfer to >>> NULL in the interrupt once the transaction is done. So we can >>> properly detect these bad interrupts and print warning messages. >>> >>> Signed-off-by: Matthew McClintock >>> Signed-off-by: Varadarajan Narayanan >>> --- >>> drivers/spi/spi-qup.c | 20 +++++++++++--------- >>> 1 file changed, 11 insertions(+), 9 deletions(-) >>> >>> diff --git a/drivers/spi/spi-qup.c b/drivers/spi/spi-qup.c >>> index bd53e82..1a2a9d9 100644 >>> --- a/drivers/spi/spi-qup.c >>> +++ b/drivers/spi/spi-qup.c >>> @@ -496,13 +496,13 @@ static irqreturn_t spi_qup_qup_irq(int irq, void *dev_id) >>> struct spi_qup *controller = dev_id; >>> struct spi_transfer *xfer; >>> u32 opflags, qup_err, spi_err; >>> - unsigned long flags; >>> int error = 0; >>> + bool done = 0; >>> >>> - spin_lock_irqsave(&controller->lock, flags); >>> + spin_lock(&controller->lock); >>> xfer = controller->xfer; >>> controller->xfer = NULL; >>> - spin_unlock_irqrestore(&controller->lock, flags); >>> + spin_unlock(&controller->lock); >> >> Why change the locking here ? >> >>> >>> qup_err = readl_relaxed(controller->base + QUP_ERROR_FLAGS); >>> spi_err = readl_relaxed(controller->base + SPI_ERROR_FLAGS); >>> @@ -556,16 +556,19 @@ static irqreturn_t spi_qup_qup_irq(int irq, void *dev_id) >>> spi_qup_write(controller, xfer); >>> } >>> >>> - spin_lock_irqsave(&controller->lock, flags); >>> - controller->error = error; >>> - controller->xfer = xfer; >>> - spin_unlock_irqrestore(&controller->lock, flags); >>> - >>> /* re-read opflags as flags may have changed due to actions above */ >>> opflags = readl_relaxed(controller->base + QUP_OPERATIONAL); >>> >>> if ((controller->rx_bytes == xfer->len && >>> (opflags & QUP_OP_MAX_INPUT_DONE_FLAG)) || error) >>> + done = true; >>> + >>> + spin_lock(&controller->lock); >>> + controller->error = error; >>> + controller->xfer = done ? NULL : xfer; >>> + spin_unlock(&controller->lock); >>> + >>> + if (done) >>> complete(&controller->done); >>> >> Its not clear, why the driver is setting the controller->xfer = NULL >> and restoring it inside the irq. This patch seems to fix things on >> top of that. > > I think the original intent was to make sure that the irqhandler knew that there > was no outstanding transaction. This begs the question of why that would ever > be necessary. I think it would suffice to rework all of that to remove that > behavior and perhaps enable/disable the irq as we need to during transactions. > > I've never been a fan of the controller->xfer being set to NULL. Agree, that part needs fixing in the original code. Also patch #10 changing the behavior to acknowledge the interrupts only when its spurious does not look correct. Trying to fix the original should simplify or avoid the spurious case itself. Regards, Sricharan -- "QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation