mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
d59476b644
If we are to have driver model before relocation we need to support some way of calling memory allocation routines. The standard malloc() is pretty complicated: 1. It uses some BSS memory for its state, and BSS is not available before relocation 2. It supports algorithms for reducing memory fragmentation and improving performace of free(). Before relocation we could happily just not support free(). 3. It includes about 4KB of code (Thumb 2) and 1KB of data. However since this has been loaded anyway this is not really a problem. The simplest way to support pre-relocation malloc() is to reserve an area of memory and allocate it in increasing blocks as needed. This implementation does this. To enable it, you need to define the size of the malloc() pool as described in the README. It will be located above the pre-relocation stack on supported architectures. Note that this implementation is only useful on machines which have some memory available before dram_init() is called - this includes those that do no DRAM init (like tegra) and those that do it in SPL (quite a few boards). Enabling driver model preior to relocation for the rest of the boards is left for a later exercise. Signed-off-by: Simon Glass <sjg@chromium.org>
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/*
|
|
* Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c
|
|
*
|
|
* This program is used to generate definitions needed by
|
|
* assembly language modules.
|
|
*
|
|
* We use the technique used in the OSF Mach kernel code:
|
|
* generate asm statements containing #defines,
|
|
* compile this file to assembler, and then extract the
|
|
* #defines from the assembly-language output.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <linux/kbuild.h>
|
|
|
|
int main(void)
|
|
{
|
|
/* Round up to make sure size gives nice stack alignment */
|
|
DEFINE(GENERATED_GBL_DATA_SIZE,
|
|
(sizeof(struct global_data) + 15) & ~15);
|
|
|
|
DEFINE(GENERATED_BD_INFO_SIZE,
|
|
(sizeof(struct bd_info) + 15) & ~15);
|
|
|
|
DEFINE(GD_SIZE, sizeof(struct global_data));
|
|
|
|
DEFINE(GD_BD, offsetof(struct global_data, bd));
|
|
#ifdef CONFIG_SYS_MALLOC_F_LEN
|
|
DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base));
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARM)
|
|
|
|
DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr));
|
|
|
|
DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off));
|
|
|
|
DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp));
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
}
|