summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorMichael Brandt <michael.brandt@stericsson.com>2010-02-25 13:52:40 +0100
committerJonas ABERG <jonas.aberg@stericsson.com>2010-05-19 09:52:40 +0200
commit1b5ef2e329c2c28109d3950cc8c39aae8f90584d (patch)
treec7c497bb0286968be8366de7e089d6ccfac43822 /board
parentf4f7f7d70bc982d6689f09bf97e62caec223629f (diff)
Change TEXT_BASE to 0x05600000
This patch is part of WP254081 which depends on WP252006. Original patch from Rabin Vincent <rabin.vincent@stericsson.com> The old text base, 0x05FC0000, is only 256KiB below the modem image, which is loaded at 0x06000000 (96MiB).If the size of U-Boot image + BSS is larger than 256KiB, the modem image will be overwritten. Fix this by reducing the TEXT_BASE to 0x05600000 (86MiB). This allows up to 10MiB for U-Boot + BSS, and also allows people to continue loading fairly large initrds in the memory below U-Boot. Signed-off-by: Michael Brandt <michael.brandt@stericsson.com> Change-Id: Icc818c6dc29e5b3cd617c4434ce9321c62a95d81 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/183 Reviewed-by: Jonas ABERG <jonas.aberg@stericsson.com> Tested-by: Jonas ABERG <jonas.aberg@stericsson.com>
Diffstat (limited to 'board')
-rw-r--r--board/st/u8500/config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/st/u8500/config.mk b/board/st/u8500/config.mk
index 62c222dfa..4d007f96d 100644
--- a/board/st/u8500/config.mk
+++ b/board/st/u8500/config.mk
@@ -3,7 +3,7 @@
# Valid values for TEXT_BASE are:
#
# Standard configuration - all models
-# 0x07F8_0000 run from SDRAM
+# 0x0560_0000 run from SDRAM
#
# Test configuraton
# 0x4001_0000 run from eSRAM
@@ -12,7 +12,7 @@
sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp
ifndef TEXT_BASE
-TEXT_BASE = 0x05FC0000
+TEXT_BASE = 0x05600000
endif
PLATFORM_CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE)