]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
dm: Split the simple malloc() implementation into its own file
authorSimon Glass <sjg@chromium.org>
Tue, 11 Nov 2014 00:16:43 +0000 (17:16 -0700)
committerSimon Glass <sjg@chromium.org>
Fri, 21 Nov 2014 07:12:28 +0000 (08:12 +0100)
commitc9356be30741b5192c79038fa4f8a2ac5b5f35c1
treeb3d960f35531fa2dde0f5beeb650e8b63048e771
parent9dacbb277255c432047f6df8fe21505b9c8cf485
dm: Split the simple malloc() implementation into its own file

The simple malloc() implementation is used when memory is tight. It provides
a simple buffer with an incrementing pointer.

At present the implementation is inside dlmalloc. Move it into its own file
so that it is easier to find.

Rather than using relocation as a signal that the full malloc() is
available, add a special GD_FLG_FULL_MALLOC_INIT flag. This signals that the
simple malloc() should no longer be used.

In some cases, such as SPL, even the code space used by the full malloc() is
wasteful. Add a CONFIG_SYS_MALLOC_SIMPLE option to provide only the simple
malloc. In this case the full malloc is not available at all. It saves about
1KB of code space and about 0.5KB of data on Thumb 2.

Acked-by: Tom Rini <trini@ti.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
common/Makefile
common/board_r.c
common/dlmalloc.c
common/malloc_simple.c [new file with mode: 0644]
include/asm-generic/global_data.h
include/malloc.h