]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
lmb: x86: Add arch_lmb_reserve()
authorMarek Vasut <marek.vasut@gmail.com>
Fri, 10 Sep 2021 20:47:18 +0000 (22:47 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 23 Sep 2021 18:15:32 +0000 (14:15 -0400)
Add arch_lmb_reserve() implemented using arch_lmb_reserve_generic().
It is rather likely this architecture also needs to cover U-Boot with
LMB before booting Linux.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Cc: Tom Rini <trini@konsulko.com>
arch/x86/lib/bootm.c

index 733dd71257062c89689859941b77fcd5541444f8..667e5e689e35435305d8cf18ef446a83211f9abe 100644 (file)
@@ -223,3 +223,21 @@ int do_bootm_linux(int flag, int argc, char *const argv[],
 
        return boot_jump_linux(images);
 }
+
+static ulong get_sp(void)
+{
+       ulong ret;
+
+#if CONFIG_IS_ENABLED(X86_64)
+       ret = gd->start_addr_sp;
+#else
+       asm("mov %%esp, %0" : "=r"(ret) : );
+#endif
+
+       return ret;
+}
+
+void arch_lmb_reserve(struct lmb *lmb)
+{
+       arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096);
+}