]> git.baikalelectronics.ru Git - uboot.git/commit
lib: lmb: extend lmb for checks at load time
authorSimon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Mon, 14 Jan 2019 21:38:18 +0000 (22:38 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 16 Jan 2019 21:37:04 +0000 (16:37 -0500)
commitf9b4a771842ce435dc3324e62644cc48a4717366
tree8617a878fbb2be6711067e854144670539e60769
parent1cadc59d3e54b1f554958c0c1963a286e1f587ac
lib: lmb: extend lmb for checks at load time

This adds two new functions, lmb_alloc_addr and
lmb_get_unreserved_size.

lmb_alloc_addr behaves like lmb_alloc, but it tries to allocate a
pre-specified address range. Unlike lmb_reserve, this address range
must be inside one of the memory ranges that has been set up with
lmb_add.

lmb_get_unreserved_size returns the number of bytes that can be
used up to the next reserved region or the end of valid ram. This
can be 0 if the address passed is reserved.

Added test for these new functions.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
include/lmb.h
lib/lmb.c
test/lib/lmb.c