• Hans de Goede's avatar
    malloc_simple: Add support for switching to DRAM heap · dcfcb8d4
    Hans de Goede authored
    
    
    malloc_simple uses a part of the stack as heap, initially it uses
    SYS_MALLOC_F_LEN bytes which typically is quite small as the initial
    stacks sits in SRAM and we do not have that much SRAM to work with.
    
    When DRAM becomes available we may switch the stack from SRAM to DRAM
    to give use more room. This commit adds support for also switching to
    a new bigger malloc_simple heap located in the new stack.
    
    Note that this requires spl_init to be called before spl_relocate_stack_gd
    which in practice means that spl_init must be called from board_init_f.
    
    Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
    Reviewed-by: default avatarTom Rini <trini@konsulko.com>
    Acked-by: default avatarSimon Glass <sjg@chromium.org>
    dcfcb8d4