diff options
| author | Mamta Shukla <[email protected]> | 2022-07-12 14:36:20 +0000 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2022-07-25 15:35:35 +0200 |
| commit | 99a6ff5911a6db677aa18b3f6038b85ad32e4587 (patch) | |
| tree | b93c55675397fcdfbba9fef1679ee0d28ba1f812 | |
| parent | 3c7ad8c40e783836b9ec667431ade27740515e74 (diff) | |
board: freescale: Add QSPI Boot support in spl for i.MX8m
Add QSPI Boot option in u-boot-spl for i.MX8m EVK.
Signed-off-by: Mamta Shukla <[email protected]>
Signed-off-by: Thomas Haemmerle <[email protected]>
Tested-by: Adam Ford <[email protected]>
Reviewed-by: Fabio Estevam <[email protected]>
| -rw-r--r-- | board/freescale/imx8mm_evk/spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/imx8mm_evk/spl.c b/board/freescale/imx8mm_evk/spl.c index 4d963246856..e2eb1426c83 100644 --- a/board/freescale/imx8mm_evk/spl.c +++ b/board/freescale/imx8mm_evk/spl.c @@ -39,6 +39,8 @@ int spl_board_boot_device(enum boot_device boot_dev_spl) case SD3_BOOT: case MMC3_BOOT: return BOOT_DEVICE_MMC2; + case QSPI_BOOT: + return BOOT_DEVICE_NOR; default: return BOOT_DEVICE_NONE; } |
