]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
xtensa: Call bootm_final()
authorSimon Glass <simon.glass@canonical.com>
Fri, 6 Mar 2026 02:36:25 +0000 (19:36 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 18 Mar 2026 19:17:34 +0000 (13:17 -0600)
Add a call to bootm_final() before jumping to the kernel. This adds
the "Starting kernel" message, bootstage tracking,
board_quiesce_devices() and dm_remove_devices_active() which were not
previously called on Xtensa.

Signed-off-by: Simon Glass <simon.glass@canonical.com>
arch/xtensa/lib/bootm.c

index 2958f2073979f75c2727ad3f1c3b973416d264c4..c19ac9d1f9aab32acc9a01f49f9f3228dbe6a4b2 100644 (file)
@@ -178,6 +178,8 @@ int do_bootm_linux(int flag, struct bootm_info *bmi)
        printf("Transferring Control to Linux @0x%08lx ...\n\n",
               (ulong)images->ep);
 
+       bootm_final(flag);
+
        flush_dcache_range((unsigned long)params_start, (unsigned long)params);
 
        if (flag & BOOTM_STATE_OS_FAKE_GO)