diff options
author | Piotr Bugalski <bugalski.piotr@gmail.com> | 2018-11-05 11:36:24 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-11-07 14:21:19 +0100 |
commit | 0e6aae08e9ae7c2dc3c83bf6960d824feb14b706 (patch) | |
tree | 049bc0215342adcecf8643a4cc28c72720776a03 /drivers/spi/Kconfig | |
parent | mtd: spi-nor: atmel-quadspi: Remove unused code from atmel-quadspi driver (diff) | |
download | linux-0e6aae08e9ae7c2dc3c83bf6960d824feb14b706.tar.xz linux-0e6aae08e9ae7c2dc3c83bf6960d824feb14b706.zip |
spi: Add QuadSPI driver for Atmel SAMA5D2
Kernel contains QSPI driver strongly tied to MTD and nor-flash memory.
New spi-mem interface allows usage also other memory types, especially
much larger NAND with SPI interface. This driver works as SPI controller
and is not related to MTD, however can work with NAND-flash or other
peripherals using spi-mem interface.
Suggested-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Piotr Bugalski <bugalski.piotr@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/Kconfig')
-rw-r--r-- | drivers/spi/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 7d3a5c94727e..ca68ac63c6c3 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -91,6 +91,15 @@ config SPI_AT91_USART This selects a driver for the AT91 USART Controller as SPI Master, present on AT91 and SAMA5 SoC series. +config SPI_ATMEL_QUADSPI + tristate "Atmel Quad SPI Controller" + depends on ARCH_AT91 || (ARM && COMPILE_TEST) + depends on OF && HAS_IOMEM + help + This enables support for the Quad SPI controller in master mode. + This driver does not support generic SPI. The implementation only + supports spi-mem interface. + config SPI_AU1550 tristate "Au1550/Au1200/Au1300 SPI Controller" depends on MIPS_ALCHEMY |