diff options
author | Tero Kristo <t-kristo@ti.com> | 2020-07-20 11:10:45 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-04 23:30:02 -0400 |
commit | 9996cea75f5a77db5a6055342130d27a36830ef8 (patch) | |
tree | c6383ae1612af79f00904cfba809323495740f23 /include/lmb.h | |
parent | cc6b87ecaa96325577a8fafabc0d5972b816bc6c (diff) | |
download | u-boot-9996cea75f5a77db5a6055342130d27a36830ef8.tar.gz u-boot-9996cea75f5a77db5a6055342130d27a36830ef8.tar.bz2 u-boot-9996cea75f5a77db5a6055342130d27a36830ef8.zip |
lmb/bdinfo: dump lmb info via bdinfo
Dump lmb status from the bdinfo command. This is useful for seeing the
reserved memory regions from the u-boot cmdline.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'include/lmb.h')
-rw-r--r-- | include/lmb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lmb.h b/include/lmb.h index 73b7a5cbe3..e9f19b16ea 100644 --- a/include/lmb.h +++ b/include/lmb.h @@ -49,6 +49,7 @@ extern int lmb_is_reserved(struct lmb *lmb, phys_addr_t addr); extern long lmb_free(struct lmb *lmb, phys_addr_t base, phys_size_t size); extern void lmb_dump_all(struct lmb *lmb); +extern void lmb_dump_all_force(struct lmb *lmb); static inline phys_size_t lmb_size_bytes(struct lmb_region *type, unsigned long region_nr) |