diff options
author | York Sun <york.sun@nxp.com> | 2017-12-05 10:57:54 -0800 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2017-12-06 14:54:12 -0800 |
commit | 316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d (patch) | |
tree | e4201de6e106653a02a04c13f21cf3685bc878ee /board/freescale/t208xrdb/tlb.c | |
parent | 0f2296bab1417faa5973e6d6690c8be0f83ecd08 (diff) | |
download | u-boot-316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d.tar.gz u-boot-316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d.tar.bz2 u-boot-316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d.zip |
powerpc: mpc85xx: Fix static TLB table for SDRAM
Most predefined TLB tables don't have memory coherence bit set for
SDRAM. This wasn't an issue before invalidate_dcache_range() function
was enabled. Without the coherence bit, dcache invalidation doesn't
automatically flush the cache. The coherence bit is already set when
dynamic TLB table is used. For some boards with different SPL boot
method, or with legacy fixed setting, this bit needs to be set in
TLB files.
Signed-off-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale/t208xrdb/tlb.c')
-rw-r--r-- | board/freescale/t208xrdb/tlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/t208xrdb/tlb.c b/board/freescale/t208xrdb/tlb.c index 2ebea36a5c..2cae4d02b3 100644 --- a/board/freescale/t208xrdb/tlb.c +++ b/board/freescale/t208xrdb/tlb.c @@ -144,7 +144,7 @@ struct fsl_e_tlb_entry tlb_table[] = { #endif #if defined(CONFIG_RAMBOOT_PBL) && !defined(CONFIG_SPL_BUILD) SET_TLB_ENTRY(1, CONFIG_SYS_DDR_SDRAM_BASE, CONFIG_SYS_DDR_SDRAM_BASE, - MAS3_SX|MAS3_SW|MAS3_SR, 0, + MAS3_SX|MAS3_SW|MAS3_SR, MAS2_M, 0, 19, BOOKE_PAGESZ_2G, 1) #endif |