diff options
author | Stefan Roese <sr@denx.de> | 2008-01-30 14:48:28 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-02-04 11:47:40 +0100 |
commit | 28d77d968bfe0316deb5bf15c17f57d5ff2c8821 (patch) | |
tree | 3abcd5c43ace3bdfcdedff146fb123c77147a4b0 /include/configs | |
parent | 2c5260f711168d5ee91c70ddbb7d897013eefc46 (diff) |
ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/pcs440ep.h | 2 | ||||
-rw-r--r-- | include/configs/yosemite.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/pcs440ep.h b/include/configs/pcs440ep.h index d66f4bd449b..07fc23e5e73 100644 --- a/include/configs/pcs440ep.h +++ b/include/configs/pcs440ep.h @@ -66,7 +66,7 @@ *----------------------------------------------------------------------*/ #define CFG_INIT_RAM_DCACHE 1 /* d-cache as init ram */ #define CFG_INIT_RAM_ADDR 0x70000000 /* DCache */ -#define CFG_INIT_RAM_END (8 << 10) +#define CFG_INIT_RAM_END (4 << 10) #define CFG_GBL_DATA_SIZE 256 /* num bytes initial data*/ #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET diff --git a/include/configs/yosemite.h b/include/configs/yosemite.h index a8eeff989c3..4c86bc53cf8 100644 --- a/include/configs/yosemite.h +++ b/include/configs/yosemite.h @@ -75,7 +75,7 @@ *----------------------------------------------------------------------*/ #define CFG_INIT_RAM_DCACHE 1 /* d-cache as init ram */ #define CFG_INIT_RAM_ADDR 0x70000000 /* DCache */ -#define CFG_INIT_RAM_END (8 << 10) +#define CFG_INIT_RAM_END (4 << 10) #define CFG_GBL_DATA_SIZE 256 /* num bytes initial data*/ #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE) #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET |