summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorDave Mitchell <dmitch71@gmail.com>2008-11-20 14:09:50 -0600
committerStefan Roese <sr@denx.de>2008-11-21 11:02:04 +0100
commitddf45cc758d394591fb9bcdcbe96530f733f2bce (patch)
tree661e05764bd4978aef056a431da33377dfa3a389 /board
parentb14ca4b61a681f75f3125676e09d7ce6af66e927 (diff)
downloadblackbird-obmc-uboot-ddf45cc758d394591fb9bcdcbe96530f733f2bce.tar.gz
blackbird-obmc-uboot-ddf45cc758d394591fb9bcdcbe96530f733f2bce.zip
ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
Expanded OCM TLB to allow access to 64K OCM as well as 256K of internal SRAM. Adjusted internal SRAM initialization to match updated user manual recommendation. OCM & ISRAM are now mapped as follows: physical virtual size ISRAM 0x4_0000_0000 0xE300_0000 256k OCM 0x4_0004_0000 0xE304_0000 64k A single TLB was used for this mapping. Signed-off-by: Dave Mitchell <dmitch71@gmail.com> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board')
-rw-r--r--board/amcc/canyonlands/init.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/amcc/canyonlands/init.S b/board/amcc/canyonlands/init.S
index 51b46d7107..0b667968ac 100644
--- a/board/amcc/canyonlands/init.S
+++ b/board/amcc/canyonlands/init.S
@@ -89,7 +89,7 @@ tlbtab:
#endif
/* TLB-entry for OCM */
- tlbentry(CONFIG_SYS_OCM_BASE, SZ_16K, 0x00040000, 4, AC_R|AC_W|AC_X|SA_I)
+ tlbentry(CONFIG_SYS_OCM_BASE, SZ_1M, 0x00000000, 4, AC_R|AC_W|AC_X|SA_I)
/* TLB-entry for Local Configuration registers => peripherals */
tlbentry(CONFIG_SYS_LOCAL_CONF_REGS, SZ_16M, CONFIG_SYS_LOCAL_CONF_REGS, 4, AC_R|AC_W|AC_X|SA_G|SA_I)
OpenPOWER on IntegriCloud