diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-10-27 00:30:22 (GMT) |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-11-06 01:14:11 (GMT) |
commit | 1ce61cbbe7b351041b31c59cf7c5d8b056a199ec (patch) | |
tree | 51894d18e724457d06e036c1a62ef4f2f14381a7 /arch/nios2/cpu | |
parent | ed02c532be690b3d0c3e15c81531785a788fd949 (diff) | |
download | u-boot-1ce61cbbe7b351041b31c59cf7c5d8b056a199ec.tar.xz |
nios2: fix map_physmem to do real cache mapping
Fix the map_physmem() to do real cache mapping.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'arch/nios2/cpu')
-rw-r--r-- | arch/nios2/cpu/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/nios2/cpu/cpu.c b/arch/nios2/cpu/cpu.c index ff0fa20..88c4e18 100644 --- a/arch/nios2/cpu/cpu.c +++ b/arch/nios2/cpu/cpu.c @@ -117,7 +117,8 @@ static int altera_nios2_probe(struct udevice *dev) "altr,has-initda", 0); gd->arch.has_mmu = fdtdec_get_int(blob, node, "altr,has-mmu", 0); - gd->arch.io_region_base = gd->arch.has_mmu ? 0xe0000000 : 0x8000000; + gd->arch.io_region_base = gd->arch.has_mmu ? 0xe0000000 : 0x80000000; + gd->arch.mem_region_base = gd->arch.has_mmu ? 0xc0000000 : 0x00000000; return 0; } |