linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
To: "Jan Kundrát" <jan.kundrat@cesnet.cz>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jirislaby@kernel.org>, <linux-serial@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>, Mark Brown <broonie@kernel.org>,
	Andy Shevchenko <andy.shevchenko@gmail.com>,
	<linux-spi@vger.kernel.org>
Subject: Re: [PATCH v2] serial: max310x: rework RX interrupt handling
Date: Wed, 28 Oct 2020 18:06:51 +0100	[thread overview]
Message-ID: <20201028180651.50ca85d3@windsurf.home> (raw)
In-Reply-To: <3841e43b-5f16-4b5c-9b43-4d3a90e57723@cesnet.cz>

Hello,

On Wed, 28 Oct 2020 17:20:24 +0100
Jan Kundrát <jan.kundrat@cesnet.cz> wrote:

> Thanks for taking the time to write this patch. We're using MAX14830 on a 
> Clearfog Base board via a 26 MHz SPI bus. Our code polls a custom 
> peripheral over UART at 115200 baud ten times a second; the messages are 
> typically shorter than 50 chars. Before this patch, `perf top --sort 
> comm,dso` showed about 28% CPU load for the corresponding SPI kthread, 
> after applying this patch it's between 3 and 5%. That's cool :).
> 
> Tested-by: Jan Kundrát <jan.kundrat@cesnet.cz>
> Reviewed-by: Jan Kundrát <jan.kundrat@cesnet.cz>
> 
> (but see below, please)

Thanks for your review and testing, and glad to hear that it also
improves the CPU load on your use-case.

> > +	/* Enable LSR, RX FIFO trigger, CTS change interrupts */
> > +	val = MAX310X_IRQ_LSR_BIT  | MAX310X_IRQ_RXFIFO_BIT | 
> > MAX310X_IRQ_TXEMPTY_BIT;
> >  	max310x_port_write(port, MAX310X_IRQEN_REG, val | MAX310X_IRQ_CTS_BIT);  
> 
> This comment doesn't fully match that code, and also the effective value 
> that is written to the register is split into two statements. What about 
> just:
> 
> +	/* Enable LSR, RX FIFO trigger, TX FIFO empty, CTS change interrupts */
> + 	max310x_port_write(port, MAX310X_IRQEN_REG, MAX310X_IRQ_LSR_BIT | 
> MAX310X_IRQ_RXFIFO_BIT | MAX310X_IRQ_TXEMPTY_BIT | MAX310X_IRQ_CTS_BIT);

Indeed, the comment should be updated, I'll fix that. Regarding the
effective value computed in two steps, it was already the case in the
current code:

	/* Enable RX, TX, CTS change interrupts */
	val = MAX310X_IRQ_RXEMPTY_BIT | MAX310X_IRQ_TXEMPTY_BIT;
        max310x_port_write(port, MAX310X_IRQEN_REG, val | MAX310X_IRQ_CTS_BIT);

but granted, that's not an excuse not to fix it.

On my way to send a v3 :-)

Thanks again,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

  reply	other threads:[~2020-10-28 21:40 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-01  7:44 [PATCH v2] serial: max310x: rework RX interrupt handling Thomas Petazzoni
2020-10-01 11:35 ` Andy Shevchenko
2020-10-28 16:20 ` Jan Kundrát
2020-10-28 17:06   ` Thomas Petazzoni [this message]
2020-10-28 17:14     ` Thomas Petazzoni

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=20201028180651.50ca85d3@windsurf.home \
    --to=thomas.petazzoni@bootlin.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=broonie@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jan.kundrat@cesnet.cz \
    --cc=jirislaby@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=linux-spi@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).