From ac5aaa6cb41d171984515df4e79f84c0550591d3 Mon Sep 17 00:00:00 2001 From: Siva Durga Prasad Paladugu Date: Tue, 3 Mar 2015 09:49:24 +0530 Subject: [PATCH] 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 --- arch/arm/cpu/armv8/zynqmp/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }; -- 2.47.3