diff options
author | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-04-26 19:18:14 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-05-11 05:32:43 +0300 |
commit | c36ff266dc82f4ae797a6f3513c6ffa344f7f1c7 (patch) | |
tree | ed98cb9350de4166e7ae2fd0e6850b8e9b8e62fe /drivers/spi/Makefile | |
parent | 055ed0dabc3043d660f20bfc3b68b644ac58baac (diff) | |
download | linux-c36ff266dc82f4ae797a6f3513c6ffa344f7f1c7.tar.xz |
spi: Extend the core to ease integration of SPI memory controllers
Some controllers are exposing high-level interfaces to access various
kind of SPI memories. Unfortunately they do not fit in the current
spi_controller model and usually have drivers placed in
drivers/mtd/spi-nor which are only supporting SPI NORs and not SPI
memories in general.
This is an attempt at defining a SPI memory interface which works for
all kinds of SPI memories (NORs, NANDs, SRAMs).
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Reviewed-by: Frieder Schrempf <frieder.schrempf@exceet.de>
Tested-by: Frieder Schrempf <frieder.schrempf@exceet.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/Makefile')
-rw-r--r-- | drivers/spi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index ce23974acb91..cb1f4378b87c 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -8,6 +8,7 @@ ccflags-$(CONFIG_SPI_DEBUG) := -DDEBUG # small core, mostly translating board-specific # config declarations into driver model code obj-$(CONFIG_SPI_MASTER) += spi.o +obj-$(CONFIG_SPI_MEM) += spi-mem.o obj-$(CONFIG_SPI_SPIDEV) += spidev.o obj-$(CONFIG_SPI_LOOPBACK_TEST) += spi-loopback-test.o |