Skip to content
Snippets Groups Projects
Commit f66cc1e3 authored by Daniel Schwierzeck's avatar Daniel Schwierzeck
Browse files

MIPS: bootm: add support for LMB


This is required for init ramdisk relocation and device tree
support.

Signed-off-by: default avatarGabor Juhos <juhosg@openwrt.org>
Signed-off-by: default avatarDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
parent c4b37847
No related branches found
No related tags found
No related merge requests found
...@@ -7,4 +7,6 @@ ...@@ -7,4 +7,6 @@
#ifndef _ASM_CONFIG_H_ #ifndef _ASM_CONFIG_H_
#define _ASM_CONFIG_H_ #define _ASM_CONFIG_H_
#define CONFIG_LMB
#endif #endif
...@@ -27,6 +27,27 @@ static int linux_env_idx; ...@@ -27,6 +27,27 @@ static int linux_env_idx;
static void linux_params_init(ulong start, char *commandline); static void linux_params_init(ulong start, char *commandline);
static void linux_env_set(char *env_name, char *env_val); static void linux_env_set(char *env_name, char *env_val);
static ulong arch_get_sp(void)
{
ulong ret;
__asm__ __volatile__("move %0, $sp" : "=r"(ret) : );
return ret;
}
void arch_lmb_reserve(struct lmb *lmb)
{
ulong sp;
sp = arch_get_sp();
debug("## Current stack ends at 0x%08lx\n", sp);
/* adjust sp by 4K to be safe */
sp -= 4096;
lmb_reserve(lmb, sp, CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp);
}
static void boot_prep_linux(bootm_headers_t *images) static void boot_prep_linux(bootm_headers_t *images)
{ {
char *commandline = getenv("bootargs"); char *commandline = getenv("bootargs");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment