diff options
| author | Peng Fan <[email protected]> | 2022-07-26 16:40:38 +0800 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2022-07-26 11:29:00 +0200 |
| commit | 787f04bb6a0af73098ebfe8ad2cd1e3752e8d887 (patch) | |
| tree | 95e8916ba118d69a146daf2714dccfb1b8f00d9a /arch | |
| parent | b0a284a7c94bc03a3f41423cbda73700d5cebf09 (diff) | |
imx: add USB2_BOOT type
Add USB2_BOOT type for i.MX8ULP and i.MX9
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/include/asm/mach-imx/boot_mode.h | 1 | ||||
| -rw-r--r-- | arch/arm/mach-imx/romapi.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/include/asm/mach-imx/boot_mode.h b/arch/arm/include/asm/mach-imx/boot_mode.h index 6dc58559680..a568c443722 100644 --- a/arch/arm/include/asm/mach-imx/boot_mode.h +++ b/arch/arm/include/asm/mach-imx/boot_mode.h @@ -29,6 +29,7 @@ enum boot_device { QSPI_BOOT, FLEXSPI_BOOT, USB_BOOT, + USB2_BOOT, UNKNOWN_BOOT, BOOT_DEV_NUM = UNKNOWN_BOOT, }; diff --git a/arch/arm/mach-imx/romapi.c b/arch/arm/mach-imx/romapi.c index 4b5f50c0300..c8accdb04db 100644 --- a/arch/arm/mach-imx/romapi.c +++ b/arch/arm/mach-imx/romapi.c @@ -67,7 +67,7 @@ enum boot_device get_boot_device(void) boot_dev = QSPI_BOOT; break; case BT_DEV_TYPE_USB: - boot_dev = USB_BOOT; + boot_dev = boot_instance + USB_BOOT; break; default: break; |
