mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-13 14:53:28 +08:00
ARM: imx: Add QSPI boot mode for i.MX6UL/ULL
This patch adds the missing boot mode detection for QSPI boot on i.MX6UL/ULL. Without it, booting with SPL from QSPI NOR does not work. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Fabio Estevam <festevam@gmail.com> Cc: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
0a1a45b7d6
commit
d10d1386a0
@ -94,6 +94,11 @@ u32 spl_boot_device(void)
|
||||
/* NAND Flash: 8.5.2, Table 8-10 */
|
||||
case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX:
|
||||
return BOOT_DEVICE_NAND;
|
||||
#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
|
||||
/* QSPI boot */
|
||||
case IMX6_BMODE_QSPI:
|
||||
return BOOT_DEVICE_SPI;
|
||||
#endif
|
||||
}
|
||||
return BOOT_DEVICE_NONE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user