]> git.baikalelectronics.ru Git - kernel.git/commit
spi: omap2-mcspi: Improve performance waiting for CHSTAT
authorAswath Govindraju <a-govindraju@ti.com>
Thu, 10 Sep 2020 12:26:24 +0000 (17:56 +0530)
committerMark Brown <broonie@kernel.org>
Tue, 22 Sep 2020 00:04:20 +0000 (01:04 +0100)
commit595f0b065d29824211cfc5601dd5a5c99a39de1d
tree2a539c1e9bda656c43231becb255a1aab9c03358
parent19dadcef52006252548abecb4ecadc4384408dc1
spi: omap2-mcspi: Improve performance waiting for CHSTAT

This reverts commit ff2bc2b287 (spi: omap2-mcspi: Switch to
readl_poll_timeout()).

The amount of time spent polling for the MCSPI_CHSTAT bits to be set on
AM335x-icev2 platform is less than 1us (about 0.6us) in most cases, with
or without using DMA. So, in most cases the function need not sleep.
Also, setting the sleep_usecs to zero would not be optimal here because
ktime_add_us() used in readl_poll_timeout() is slower compared to the
direct addition used after the revert. So, it is sub-optimal to use
readl_poll_timeout in this case.

When DMA is not enabled, this revert results in an increase of about 27%
in throughput and decrease of about 20% in CPU usage. However, the CPU
usage and throughput are almost the same when used with DMA.

Therefore, fix this by reverting the commit which switched to using
readl_poll_timeout().

Fixes: ff2bc2b2875f ("spi: omap2-mcspi: Switch to readl_poll_timeout()")
Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
Link: https://lore.kernel.org/r/20200910122624.8769-1-a-govindraju@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-omap2-mcspi.c