diff options
author | Stefan Roese <sr@denx.de> | 2005-11-05 15:50:16 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-11-05 15:50:16 +0100 |
commit | f190c11b1f22ff766e046588e5a7bb55f28ae305 (patch) | |
tree | 1c41a7beffe8a293174dcb7c28b394349204a047 | |
parent | 4d03a21f2329bb13a9661a23742ac0b77a7a76d5 (diff) | |
download | u-boot-imx-f190c11b1f22ff766e046588e5a7bb55f28ae305.zip u-boot-imx-f190c11b1f22ff766e046588e5a7bb55f28ae305.tar.gz u-boot-imx-f190c11b1f22ff766e046588e5a7bb55f28ae305.tar.bz2 |
Adjust bd->bi_flashstart on Yellowstone & Yosemite to correct size
Patch by Stefan Roese, 05 Nov 2005
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | board/amcc/yellowstone/yellowstone.c | 4 | ||||
-rw-r--r-- | board/amcc/yosemite/yosemite.c | 4 |
3 files changed, 11 insertions, 0 deletions
@@ -2,6 +2,9 @@ Changes for U-Boot 1.1.4: ====================================================================== +* Adjust bd->bi_flashstart on Yellowstone & Yosemite to correct size + Patch by Stefan Roese, 05 Nov 2005 + * Additional fix for external IRQ config on Yellowstone & Yosemite Patch by Stefan Roese, 03 Nov 2005 diff --git a/board/amcc/yellowstone/yellowstone.c b/board/amcc/yellowstone/yellowstone.c index 7ca60b6..069e28f 100644 --- a/board/amcc/yellowstone/yellowstone.c +++ b/board/amcc/yellowstone/yellowstone.c @@ -173,6 +173,10 @@ int misc_init_r (void) mtdcr(ebccfga, pb0cr); mtdcr(ebccfgd, pbcr); + /* adjust flash start and offset */ + gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; + gd->bd->bi_flashoffset = 0; + /* Monitor protection ON by default */ (void)flash_protect(FLAG_PROTECT_SET, -CFG_MONITOR_LEN, diff --git a/board/amcc/yosemite/yosemite.c b/board/amcc/yosemite/yosemite.c index bc3d85b..61a39be 100644 --- a/board/amcc/yosemite/yosemite.c +++ b/board/amcc/yosemite/yosemite.c @@ -169,6 +169,10 @@ int misc_init_r (void) mtdcr(ebccfga, pb0cr); mtdcr(ebccfgd, pbcr); + /* adjust flash start and offset */ + gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; + gd->bd->bi_flashoffset = 0; + /* Monitor protection ON by default */ (void)flash_protect(FLAG_PROTECT_SET, -CFG_MONITOR_LEN, |