]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
global_data: Reduce size of early-malloc vars
authorSimon Glass <sjg@chromium.org>
Fri, 23 Aug 2024 20:27:04 +0000 (14:27 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 26 Aug 2024 20:06:08 +0000 (14:06 -0600)
The early malloc region is normally quite small and is certainly less
than 4GB, so use a 32-bit value for the limit and pointer. Update the
comments for clarity while we are here.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/arm/lib/bdinfo.c
common/board_r.c
common/malloc_simple.c
common/spl/spl.c
include/asm-generic/global_data.h

index 7c49462c8eb4ff1cd110f4dd5fe73a8a150c31ed..c7fff01c435d29d0caf3e6672cffc736d884089b 100644 (file)
@@ -58,7 +58,7 @@ void arch_print_bdinfo(void)
        printf("Board Type  = %ld\n", gd->board_type);
 #endif
 #if CONFIG_IS_ENABLED(SYS_MALLOC_F)
-       printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr,
+       printf("Early malloc usage: %x / %x\n", gd->malloc_ptr,
               CONFIG_VAL(SYS_MALLOC_F_LEN));
 #endif
 }
index f445803d7a48db891aefa0e4681a3ba6866c2f28..e88b7ea4d8aa77c01c7498326db89946fbb06392 100644 (file)
@@ -192,7 +192,7 @@ static int initr_malloc(void)
        ulong start;
 
 #if CONFIG_IS_ENABLED(SYS_MALLOC_F)
-       debug("Pre-reloc malloc() used %#lx bytes (%ld KB)\n", gd->malloc_ptr,
+       debug("Pre-reloc malloc() used %#x bytes (%d KB)\n", gd->malloc_ptr,
              gd->malloc_ptr / 1024);
 #endif
        /* The malloc area is immediately below the monitor copy in DRAM */
index 4e6d7952b3ca9711113a5c9f5d14c1bf97aa1e8c..5a8ec538f8ff27389be710a02c3ca88a4ee67642 100644 (file)
@@ -23,7 +23,7 @@ static void *alloc_simple(size_t bytes, int align)
 
        addr = ALIGN(gd->malloc_base + gd->malloc_ptr, align);
        new_ptr = addr + bytes - gd->malloc_base;
-       log_debug("size=%lx, ptr=%lx, limit=%lx: ", (ulong)bytes, new_ptr,
+       log_debug("size=%lx, ptr=%lx, limit=%x: ", (ulong)bytes, new_ptr,
                  gd->malloc_limit);
        if (new_ptr > gd->malloc_limit) {
                log_err("alloc space exhausted\n");
@@ -87,6 +87,6 @@ void free_simple(void *ptr)
 
 void malloc_simple_info(void)
 {
-       log_info("malloc_simple: %lx bytes used, %lx remain\n", gd->malloc_ptr,
+       log_info("malloc_simple: %x bytes used, %x remain\n", gd->malloc_ptr,
                 CONFIG_VAL(SYS_MALLOC_F_LEN) - gd->malloc_ptr);
 }
index d4ec86ace16ea0a0a94a0d312d4933ed25fe11ab..da110ee078388f4863020124cc5568f3a2ee33ce 100644 (file)
@@ -782,7 +782,7 @@ void board_init_r(gd_t *dummy1, ulong dummy2)
        }
        if (CONFIG_IS_ENABLED(SYS_MALLOC_F) &&
            !IS_ENABLED(CONFIG_SPL_SYS_MALLOC_SIZE))
-               debug("SPL malloc() used 0x%lx bytes (%ld KB)\n",
+               debug("SPL malloc() used 0x%x bytes (%d KB)\n",
                      gd_malloc_ptr(), gd_malloc_ptr() / 1024);
 
        bootstage_mark_name(get_bootstage_id(false), "end phase");
@@ -901,7 +901,7 @@ ulong spl_relocate_stack_gd(void)
 
 #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_IS_ENABLED(SYS_MALLOC_F)
        if (CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN) {
-               debug("SPL malloc() before relocation used 0x%lx bytes (%ld KB)\n",
+               debug("SPL malloc() before relocation used 0x%x bytes (%d KB)\n",
                      gd->malloc_ptr, gd->malloc_ptr / 1024);
                ptr -= CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN;
                gd->malloc_base = ptr;
index 253dd21d880ed8bedcdf444d6e0ae5157ff071bb..b09d4bc7d02107a4f128fd031199379bbe7fc723 100644 (file)
@@ -299,13 +299,13 @@ struct global_data {
         */
        unsigned long malloc_base;
        /**
-        * @malloc_limit: limit address of early malloc()
+        * @malloc_limit: maximum size of early malloc()
         */
-       unsigned long malloc_limit;
+       unsigned int malloc_limit;
        /**
-        * @malloc_ptr: current address of early malloc()
+        * @malloc_ptr: currently used bytes of early malloc()
         */
-       unsigned long malloc_ptr;
+       unsigned int malloc_ptr;
 #endif
 #ifdef CONFIG_CONSOLE_RECORD
        /**