From: Siva Durga Prasad Paladugu Date: Tue, 3 Mar 2015 04:19:24 +0000 (+0530) Subject: zynqmp: mmu: Correct the mmu table to cover the last 2MB X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac5aaa6cb41d171984515df4e79f84c0550591d3;p=thirdparty%2Fu-boot.git zynqmp: mmu: Correct the mmu table to cover the last 2MB Correct the MMU table to cover the last 2MB with its respective memory attributes. The last 2MB was missing from MMU table as per earlier patches. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- diff --git a/arch/arm/cpu/armv8/zynqmp/cpu.c b/arch/arm/cpu/armv8/zynqmp/cpu.c index 64715a09a3a..d4a69f50668 100644 --- a/arch/arm/cpu/armv8/zynqmp/cpu.c +++ b/arch/arm/cpu/armv8/zynqmp/cpu.c @@ -71,7 +71,7 @@ static struct attr_tbl attr_tbll1t0[4] = { {16, 0x0}, }; static struct attr_tbl attr_tbll2t3[4] = { {0x180, DEVICE_ATTR}, {0x40, 0x0}, - {0x3E, DEVICE_ATTR}, + {0x3F, DEVICE_ATTR}, {0x1, MEMORY_ATTR} };