From: Matt Kline <mkline@anduril.com>
To: Marc Kleine-Budde <mkl@pengutronix.de>
Cc: linux-can@vger.kernel.org
Subject: [PATCH 0/2] can: m_can: Merge FIFO ops to increase throughput
Date: Thu, 20 May 2021 15:27:36 -0700 [thread overview]
Message-ID: <cover.1621547812.git.mkline@anduril.com> (raw)
While debugging low throughput on a tcan4x5x chip using a logic
analyzer, I found that the SPI bus is silent for the *vast* majority of
time spent sending or receiving a CAN frame.
Each SPI transfer takes ~5 microseconds, but there's an order of
magnitude more time (50-60 microseconds) between them. This doesn't seem
to be caused by any sort of contention - it happens on a SPI bus with a
single chip select and no other drivers accessing it. Presumably there's
a (relatively) large fixed cost to request a transfer from the SPI
controller on the hardware I'm using (an NVIDIA Jetson platform).
Let's improve throughput by combining FIFO reads and writes into larger
transfers - one for ID & DLC, one for the frame data - instead of
handling single words at a time. We could reduce the number of transfers
further by batching certain control register reads, but this is an easy
place to start, since FIFO registers are contiguous.
Since TX and RX time is dominated by the fixed, per-transfer delays
mentioned above, this nets substantial performance improvements - about
20% faster for small CAN frames and nearly 5x faster for max size
(64 byte) CAN FD frames.
Matt Kline (2):
can: m_can: Batch FIFO reads during CAN receive
can: m_can: Batch FIFO writes during CAN send
drivers/net/can/m_can/m_can.c | 77 +++++++++++++-------------
drivers/net/can/m_can/m_can.h | 4 +-
drivers/net/can/m_can/m_can_pci.c | 11 ++--
drivers/net/can/m_can/m_can_platform.c | 11 ++--
drivers/net/can/m_can/tcan4x5x-core.c | 12 ++--
5 files changed, 60 insertions(+), 55 deletions(-)
--
2.31.1
next reply other threads:[~2021-05-20 22:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-20 22:27 Matt Kline [this message]
2021-05-20 22:28 ` [PATCH 1/2] can: m_can: Batch FIFO reads during CAN receive Matt Kline
2021-05-20 22:28 ` [PATCH 2/2] can: m_can: Batch FIFO writes during CAN send Matt Kline
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=cover.1621547812.git.mkline@anduril.com \
--to=mkline@anduril.com \
--cc=linux-can@vger.kernel.org \
--cc=mkl@pengutronix.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 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.