diff options
author | Joachim Eastwood <manabian@gmail.com> | 2015-08-13 19:19:40 +0200 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-08-14 11:22:55 -0700 |
commit | f617b9587c1662a2352b90cb64ad8bcf0ff4d0af (patch) | |
tree | 7a83e9c2158e2938b9fe066ba2bea081a1a284da /drivers/mtd/spi-nor/Makefile | |
parent | 89f271c4d052063a72af2622f285f70caac91845 (diff) | |
download | blackbird-op-linux-f617b9587c1662a2352b90cb64ad8bcf0ff4d0af.tar.gz blackbird-op-linux-f617b9587c1662a2352b90cb64ad8bcf0ff4d0af.zip |
mtd: spi-nor: add driver for NXP SPI Flash Interface (SPIFI)
Add SPI-NOR driver for the SPI Flash Interface (SPIFI)
controller that is found on newer NXP MCU devices.
The controller supports serial SPI Flash devices with 1-, 2-
and 4-bit width in either SPI mode 0 or 3. The controller
can operate in either command or memory mode. In memory mode
the Flash is exposed as normal memory and can be directly
accessed by the CPU.
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Reviewed-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/spi-nor/Makefile')
-rw-r--r-- | drivers/mtd/spi-nor/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/Makefile b/drivers/mtd/spi-nor/Makefile index 6a7ce1462247..e53333ef8582 100644 --- a/drivers/mtd/spi-nor/Makefile +++ b/drivers/mtd/spi-nor/Makefile @@ -1,2 +1,3 @@ obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o obj-$(CONFIG_SPI_FSL_QUADSPI) += fsl-quadspi.o +obj-$(CONFIG_SPI_NXP_SPIFI) += nxp-spifi.o |