]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
imx: kontron-sl-mx8mm: Remove custom board_boot_order() workaround
authorFrieder Schrempf <frieder.schrempf@kontron.de>
Wed, 24 Aug 2022 13:59:04 +0000 (15:59 +0200)
committerStefano Babic <sbabic@denx.de>
Thu, 20 Oct 2022 15:35:51 +0000 (17:35 +0200)
Nowadays detecting the SPI NOR as boot device from the ROMAPI is
fixed and works even if the SPI NOR is used as fallback boot device.

Therefore we don't need this workaround anymore.

Signed-off-by: Frieder Schrempf <frieder.schrempf@kontron.de>
Reviewed-by: Fabio Estevam <festevam@denx.de>
board/kontron/sl-mx8mm/spl.c

index c379d37f1e87861147426649b9497bc1d427f50e..2a562f4ac97e3bed553a7d6b65d32275b63e5083 100644 (file)
@@ -238,25 +238,3 @@ void board_init_f(ulong dummy)
 
        board_init_r(NULL, 0);
 }
-
-void board_boot_order(u32 *spl_boot_list)
-{
-       u32 bootdev = spl_boot_device();
-
-       /*
-        * The default boot fuse settings use the SD card (MMC2) as primary
-        * boot device, but allow SPI NOR as a fallback boot device.
-        * We can't detect the fallback case and spl_boot_device() will return
-        * BOOT_DEVICE_MMC2 despite the actual boot device being SPI NOR.
-        * Therefore we try to load U-Boot proper vom SPI NOR after loading
-        * from MMC has failed.
-        */
-       spl_boot_list[0] = bootdev;
-
-       switch (bootdev) {
-       case BOOT_DEVICE_MMC1:
-       case BOOT_DEVICE_MMC2:
-               spl_boot_list[1] = BOOT_DEVICE_SPI;
-               break;
-       }
-}