]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
spi: dw: Use relaxed IO-methods to access FIFOs
authorSerge Semin <Sergey.Semin@baikalelectronics.ru>
Sun, 20 Sep 2020 11:28:51 +0000 (14:28 +0300)
committerMark Brown <broonie@kernel.org>
Tue, 29 Sep 2020 16:22:24 +0000 (17:22 +0100)
In accordance with [1] the relaxed methods are guaranteed to be ordered
with respect to other accesses from the same CPU thread to the same
peripheral.  This is what we need during the data read/write from/to the
controller FIFOs being executed within a single IRQ handler or a kernel
task.

Such optimization shall significantly speed the data reader and writer up.
For instance, the relaxed IO-accessors utilization on Baikal-T1 lets the
driver to support the SPI memory operations with bus frequency three-fold
faster than if normal IO-accessors would be used.

[1] "LINUX KERNEL MEMORY BARRIERS", Documentation/memory-barriers.txt,
    Section "KERNEL I/O BARRIER EFFECTS"

Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Link: https://lore.kernel.org/r/20200920112914.26501-8-Sergey.Semin@baikalelectronics.ru
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-dw.h

index 6b30f5089218358cb08040dae111c9142935d9a8..40b2c8c0c2a292d14fb67e8701fa7d80daa5f94e 100644 (file)
@@ -162,29 +162,19 @@ static inline u32 dw_readl(struct dw_spi *dws, u32 offset)
        return __raw_readl(dws->regs + offset);
 }
 
-static inline u16 dw_readw(struct dw_spi *dws, u32 offset)
-{
-       return __raw_readw(dws->regs + offset);
-}
-
 static inline void dw_writel(struct dw_spi *dws, u32 offset, u32 val)
 {
        __raw_writel(val, dws->regs + offset);
 }
 
-static inline void dw_writew(struct dw_spi *dws, u32 offset, u16 val)
-{
-       __raw_writew(val, dws->regs + offset);
-}
-
 static inline u32 dw_read_io_reg(struct dw_spi *dws, u32 offset)
 {
        switch (dws->reg_io_width) {
        case 2:
-               return dw_readw(dws, offset);
+               return readw_relaxed(dws->regs + offset);
        case 4:
        default:
-               return dw_readl(dws, offset);
+               return readl_relaxed(dws->regs + offset);
        }
 }
 
@@ -192,11 +182,11 @@ static inline void dw_write_io_reg(struct dw_spi *dws, u32 offset, u32 val)
 {
        switch (dws->reg_io_width) {
        case 2:
-               dw_writew(dws, offset, val);
+               writew_relaxed(val, dws->regs + offset);
                break;
        case 4:
        default:
-               dw_writel(dws, offset, val);
+               writel_relaxed(val, dws->regs + offset);
                break;
        }
 }