qspi: add support for qspi4 device

Add support to enable boot from qspi in quad mode.

Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
This commit is contained in:
Sourav Poddar 2014-01-31 14:09:29 +05:30 committed by Tom Rini
parent 3b499ca3f0
commit f6b8de6dd9
1 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,11 @@
#define BOOT_DEVICE_MMC1 5
#define BOOT_DEVICE_MMC2 6
#define BOOT_DEVICE_MMC2_2 7
#define BOOT_DEVICE_SPI 10
#ifdef CONFIG_QSPI_BOOT
#define BOOT_DEVICE_SPI 11
#else
#define BOOT_DEVICE_SPI 10
#endif
#define MMC_BOOT_DEVICES_START BOOT_DEVICE_MMC1
#define MMC_BOOT_DEVICES_END BOOT_DEVICE_MMC2_2