Skip to content
Commit 0b0896c3 authored by Parshuram Thombare's avatar Parshuram Thombare Committed by Ruiqiang Hao
Browse files

spi: cadence: add support for Cadence XSPI controller



commit 3fece800a61e5bcd422faddbd516d3f66f1c8ca0 from
git@git.assembla.com:cavium/WindRiver.linux.git

This patch adds driver for Cadence's XSPI controller.
It supports 3 work modes.
1. ACMD (auto command) work mode
    ACMD name is because it uses auto command engine in the controller.
    It further has 2 modes PIO and CDMA (command DMA).
    The CDMA work mode is dedicated for high-performance application
    where very low software overhead is required. In this mode the
    Command Engine is programmed by the series of linked descriptors
    stored in system memory. These descriptors provide commands to execute
    and store status information for finished commands.
    The PIO mode work mode is dedicated for single operation where
    constructing a linked list of descriptors would require too
    much effort.
2. STIG (Software Triggered Instruction Generator) work mode
    In STIG mode, controller sends low-level instructions to memory.
    Each instruction is 128-bit width. There is special instruction
    DataSequence which carries information about data phase.
    Driver uses Slave DMA interface to transfer data as only this
    interface can be used in STIG work mode.
3. Direct work mode
    This work mode allows sending data without invoking any command through
    the slave interface.
Currently only STIG work mode is enabled, remaining work modes will
be added later.

Signed-off-by: default avatarKonrad Kociolek <konrad@cadence.com>
Signed-off-by: default avatarJayshri Pawar <jpawar@cadence.com>
Signed-off-by: default avatarParshuram Thombare <pthombar@cadence.com>
Acked-by: default avatarPratyush Yadav <p.yadav@ti.com>
Link: https://lore.kernel.org/r/1632038734-23999-1-git-send-email-pthombar@cadence.com
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Signed-off-by: default avatarWitold Sadowski <wsadowski@marvell.com>
Change-Id: If594a6168389e68ff6275190413ed50c8768a6d2
Reviewed-on: https://sj1git1.cavium.com/c/IP/SW/kernel/linux/+/67403
Tested-by: default avatarsa_ip-sw-jenkins <sa_ip-sw-jenkins@marvell.com>
Reviewed-by: default avatarChandrakala Chavva <cchavva@marvell.com>
Reviewed-by: default avatarSunil Kovvuri Goutham <sgoutham@marvell.com>
[RQ: SPI_CADENCE_QUADSPI is supported by kernel. Drop it.]
Signed-off-by: default avatarRuiqiang Hao <Ruiqiang.Hao@windriver.com>
parent ca47d90d
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment