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/gdsys | |
parent | 0f2296bab1417faa5973e6d6690c8be0f83ecd08 (diff) | |
download | u-boot-316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d.zip u-boot-316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d.tar.gz u-boot-316f0d0f8f3cbeeefda043e69f3e4e6aa57f7f1d.tar.bz2 |
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/gdsys')
-rw-r--r-- | board/gdsys/p1022/tlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/gdsys/p1022/tlb.c b/board/gdsys/p1022/tlb.c index aee86a4..58b438f 100644 --- a/board/gdsys/p1022/tlb.c +++ b/board/gdsys/p1022/tlb.c @@ -65,7 +65,7 @@ struct fsl_e_tlb_entry tlb_table[] = { #ifdef CONFIG_SYS_RAMBOOT 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, 6, BOOKE_PAGESZ_1G, 1), #endif #endif |