summaryrefslogtreecommitdiffstats
path: root/board/freescale/mpc8544ds/tlb.c
diff options
context:
space:
mode:
authorAndy Fleming <afleming@freescale.com>2008-07-07 18:02:08 -0500
committerAndrew Fleming-AFLEMING <afleming@freescale.com>2008-07-14 11:21:33 -0500
commitab5cda9f88c3eaf9cf599adc3a3375906c4ed904 (patch)
treea0a7f06b009be7401123cae043939722cc666f68 /board/freescale/mpc8544ds/tlb.c
parentd5996dd555edf52721b7691a4c59de016251ed39 (diff)
downloadblackbird-obmc-uboot-ab5cda9f88c3eaf9cf599adc3a3375906c4ed904.tar.gz
blackbird-obmc-uboot-ab5cda9f88c3eaf9cf599adc3a3375906c4ed904.zip
Remove LBC_CACHE_BASE from 8544 DS
The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping space for some anyway, we were allowing speculative loads into unmapped space, which would cause an exception (annoying, even if ultimately harmless). Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the problem. Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/mpc8544ds/tlb.c')
-rw-r--r--board/freescale/mpc8544ds/tlb.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/board/freescale/mpc8544ds/tlb.c b/board/freescale/mpc8544ds/tlb.c
index 61fc60986c..40e049951b 100644
--- a/board/freescale/mpc8544ds/tlb.c
+++ b/board/freescale/mpc8544ds/tlb.c
@@ -79,21 +79,13 @@ struct fsl_e_tlb_entry tlb_table[] = {
MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
0, 4, BOOKE_PAGESZ_64M, 1),
-#ifdef CFG_LBC_CACHE_BASE
/*
- * TLB 5: 64M Cacheable, non-guarded
- */
- SET_TLB_ENTRY(1, CFG_LBC_CACHE_BASE, CFG_LBC_CACHE_BASE,
- MAS3_SX|MAS3_SW|MAS3_SR, 0,
- 0, 5, BOOKE_PAGESZ_64M, 1),
-#endif
- /*
- * TLB 6: 64M Non-cacheable, guarded
+ * TLB 5: 64M Non-cacheable, guarded
* 0xf8000000 64M PIXIS 0xF8000000 - 0xFBFFFFFF
*/
SET_TLB_ENTRY(1, CFG_LBC_NONCACHE_BASE, CFG_LBC_NONCACHE_BASE,
MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
- 0, 6, BOOKE_PAGESZ_64M, 1),
+ 0, 5, BOOKE_PAGESZ_64M, 1),
};
int num_tlb_entries = ARRAY_SIZE(tlb_table);
OpenPOWER on IntegriCloud