]> git.baikalelectronics.ru Git - uboot.git/commitdiff
imx: imx9: Support multiple env storages at runtime
authorYe Li <ye.li@nxp.com>
Tue, 26 Jul 2022 08:41:05 +0000 (16:41 +0800)
committerStefano Babic <sbabic@denx.de>
Tue, 26 Jul 2022 09:29:01 +0000 (11:29 +0200)
Select env storages according to boot device at runtime

Signed-off-by: Ye Li <ye.li@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
arch/arm/mach-imx/imx9/soc.c

index ca88271564c05c8340df8a09826e529beec083bf..797d7a802bafc5ea5df80a9f038b328ff766abd0 100644 (file)
@@ -288,6 +288,40 @@ int timer_init(void)
        return 0;
 }
 
+enum env_location env_get_location(enum env_operation op, int prio)
+{
+       enum boot_device dev = get_boot_device();
+       enum env_location env_loc = ENVL_UNKNOWN;
+
+       if (prio)
+               return env_loc;
+
+       switch (dev) {
+#if defined(CONFIG_ENV_IS_IN_SPI_FLASH)
+       case QSPI_BOOT:
+               env_loc = ENVL_SPI_FLASH;
+               break;
+#endif
+#if defined(CONFIG_ENV_IS_IN_MMC)
+       case SD1_BOOT:
+       case SD2_BOOT:
+       case SD3_BOOT:
+       case MMC1_BOOT:
+       case MMC2_BOOT:
+       case MMC3_BOOT:
+               env_loc =  ENVL_MMC;
+               break;
+#endif
+       default:
+#if defined(CONFIG_ENV_IS_NOWHERE)
+               env_loc = ENVL_NOWHERE;
+#endif
+               break;
+       }
+
+       return env_loc;
+}
+
 static int mix_power_init(enum mix_power_domain pd)
 {
        enum src_mix_slice_id mix_id;