mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-24 02:42:18 +01:00
ARM: imx: Use USB SDPS as fallback option on Data Modul i.MX8M Plus eDM SBC
The Data Modul i.MX8M Plus eDM SBC does have USB gadget capable port accessible via USB A-A cable plugged into the bottom USB 3.0 port. Use USB SDPS as the fallback boot device, so USB SDPS loading can be performed using e.g. uuu tool. Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
d037ef40e9
commit
2b9e9588d0
@ -100,7 +100,10 @@ int spl_board_boot_device(enum boot_device boot_dev_spl)
|
||||
if (boot_dev_spl == MMC3_BOOT) /* eMMC */
|
||||
return BOOT_DEVICE_MMC2;
|
||||
|
||||
return BOOT_DEVICE_MMC1; /* SD */
|
||||
if (boot_dev_spl == SD2_BOOT) /* SD */
|
||||
return BOOT_DEVICE_MMC1;
|
||||
|
||||
return BOOT_DEVICE_BOOTROM; /* USB SDPS */
|
||||
}
|
||||
|
||||
void board_boot_order(u32 *spl_boot_list)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user