diff options
author | Alessandro Rubini <rubini@unipv.it> | 2011-04-16 13:00:12 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-04-27 19:38:10 +0200 |
commit | afba32bcd6ab06293660892b6d3f00fa8c17d107 (patch) | |
tree | 509c616c562e60f1d58cfbcdf844ad4c0bbcc499 /include/configs/nhk8815.h | |
parent | cb8948ee52f1657250e048a41b75c36c68e344f0 (diff) | |
download | u-boot-imx-afba32bcd6ab06293660892b6d3f00fa8c17d107.zip u-boot-imx-afba32bcd6ab06293660892b6d3f00fa8c17d107.tar.gz u-boot-imx-afba32bcd6ab06293660892b6d3f00fa8c17d107.tar.bz2 |
nhk8815: add support for relocation
This patch defines all the needed symbols in the header file
and removes the now-unused config.mk in board directory.
Changes to board C file as requested.
Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
Signed-off-by: Alessandro Rubini <rubini@unipv.it>
Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
Diffstat (limited to 'include/configs/nhk8815.h')
-rw-r--r-- | include/configs/nhk8815.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/nhk8815.h b/include/configs/nhk8815.h index 49a16ab..758f19d 100644 --- a/include/configs/nhk8815.h +++ b/include/configs/nhk8815.h @@ -80,6 +80,11 @@ #define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */ #define PHYS_SDRAM_2 0x08000000 /* SDR-SDRAM BANK #2*/ #define PHYS_SDRAM_2_SIZE 0x04000000 /* 64 MB */ +#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 +#define CONFIG_SYS_SDRAM_SIZE (PHYS_SDRAM_1_SIZE + PHYS_SDRAM_2_SIZE) +/* The IPL loads us at 0, tell so to u-boot. Put stack pointer 1M into RAM */ +#define CONFIG_SYS_TEXT_BASE 0x00000000 +#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + (1<<20)) #define CONFIG_STACKSIZE (128 * 1024) /* regular stack */ #ifdef CONFIG_USE_IRQ |