diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-11-09 14:56:02 +0800 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-11-12 08:26:58 +0800 |
commit | 38a0f36e83e1d707eceab3c31da65a22c8140bb3 (patch) | |
tree | 555f6f725f5d70519bfe15c22815b53b41dce51c /drivers/mtd/Makefile | |
parent | 207e97b92334bc3992ad7b0a3554a5b1c92ce533 (diff) | |
download | u-boot-38a0f36e83e1d707eceab3c31da65a22c8140bb3.tar.gz u-boot-38a0f36e83e1d707eceab3c31da65a22c8140bb3.tar.bz2 u-boot-38a0f36e83e1d707eceab3c31da65a22c8140bb3.zip |
mtd: add altera quadspi driver
Add Altera Generic Quad SPI Controller support. The controller
converts SPI NOR flash to parallel flash interface. So it is
not like other SPI flash, but rather like CFI flash.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Diffstat (limited to 'drivers/mtd/Makefile')
-rw-r--r-- | drivers/mtd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/Makefile b/drivers/mtd/Makefile index c23c0c1fdf..7f018a4eca 100644 --- a/drivers/mtd/Makefile +++ b/drivers/mtd/Makefile @@ -11,6 +11,7 @@ endif obj-$(CONFIG_MTD) += mtd-uclass.o obj-$(CONFIG_MTD_PARTITIONS) += mtdpart.o obj-$(CONFIG_MTD_CONCAT) += mtdconcat.o +obj-$(CONFIG_ALTERA_QSPI) += altera_qspi.o obj-$(CONFIG_HAS_DATAFLASH) += at45.o obj-$(CONFIG_FLASH_CFI_DRIVER) += cfi_flash.o obj-$(CONFIG_FLASH_CFI_MTD) += cfi_mtd.o |