• Trent Piepho's avatar
    spi: imx: add module parameter to control DMA use · 0a9c8998
    Trent Piepho authored
    Add the boolean module parameter "use_dma" to control the use of DMA by
    the driver.  There are about two dozen other drivers with a "use_dma"
    parameter of some sort.
    
    DMA may allow faster and more efficient transfers than using PIO, but it
    also adds overhead for small transfers.
    
    High speed receive operations may be less likely to have issues with
    FIFO overflow when using DMA than when using PIO.
    
    The eCSPI appears to insert a 4 bit pause after each word in DMA mode,
    not done in PIO mode, which can make DMA transfers 50% slower than PIO.
    
    In some cases DMA may be a net win while in others PIO might be.  It
    depends on the application.  So allow DMA to be enabled or disabled at
    the driver level.  The default will be to have it enabled when possible.
    Signed-off-by: default avatarTrent Piepho <tpiepho@impinj.com>
    Signed-off-by: default avatarMark Brown <broonie@kernel.org>
    0a9c8998
spi-imx.c 45.6 KB