]> git.baikalelectronics.ru Git - uboot.git/commitdiff
ARM: imx: Reinstate decode ECSPI env location from i.MX8M ROMAPI tables
authorMarek Vasut <marex@denx.de>
Sat, 10 Dec 2022 01:29:52 +0000 (02:29 +0100)
committerStefano Babic <sbabic@denx.de>
Mon, 30 Jan 2023 22:23:01 +0000 (23:23 +0100)
Decode ECSPI boot device in env_get_location() from i.MX8M ROMAPI tables.
This is necessary to correctly identify env is in SPI NOR when the system
boots from SPI NOR attached to ECSPI.

This reinstates change from commit:
7444914f785 ("ARM: imx: Decode ECSPI env location from i.MX8M ROMAPI tables")
which has been dropped in commit:
171388d571d ("imx: move get_boot_device to common file")

Fixes: 171388d571d ("imx: move get_boot_device to common file")
Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Fabio Estevam <festevam@denx.de>
arch/arm/mach-imx/romapi.c

index c8accdb04db596a650da4b8cd86faa73bfbdcc95..b49e7f80a2866694bd31de97beac4c8c6350f1c4 100644 (file)
@@ -66,6 +66,9 @@ enum boot_device get_boot_device(void)
        case BT_DEV_TYPE_FLEXSPINOR:
                boot_dev = QSPI_BOOT;
                break;
+       case BT_DEV_TYPE_SPI_NOR:
+               boot_dev = SPI_NOR_BOOT;
+               break;
        case BT_DEV_TYPE_USB:
                boot_dev = boot_instance + USB_BOOT;
                break;