summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/armv8
diff options
context:
space:
mode:
authorYork Sun <yorksun@freescale.com>2015-01-07 00:11:22 +0300
committerYork Sun <yorksun@freescale.com>2015-02-25 00:08:22 +0300
commit6c747f4ad4eef87152f8d6de2169efe0a6a7a57f (patch)
tree646fad6db1a85fb8aa6bb91d94cc7f1d9fd5b4c4 /arch/arm/include/asm/armv8
parent9c66ce662c076fc1f5e57c4e72126e41d56d0b80 (diff)
downloadu-boot-6c747f4ad4eef87152f8d6de2169efe0a6a7a57f.tar.xz
armv8/fsl-lsch3: Change normal memory shareability
According to hardware implementation, a single outer shareable global coherence group is defined. Inner shareable has not bee enabled. Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch/arm/include/asm/armv8')
-rw-r--r--arch/arm/include/asm/armv8/mmu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/include/asm/armv8/mmu.h b/arch/arm/include/asm/armv8/mmu.h
index 4b7b67b643..4b9cb52965 100644
--- a/arch/arm/include/asm/armv8/mmu.h
+++ b/arch/arm/include/asm/armv8/mmu.h
@@ -65,7 +65,8 @@
/*
* Section
*/
-#define PMD_SECT_S (3 << 8)
+#define PMD_SECT_OUTER_SHARE (2 << 8)
+#define PMD_SECT_INNER_SHARE (3 << 8)
#define PMD_SECT_AF (1 << 10)
#define PMD_SECT_NG (1 << 11)
#define PMD_SECT_PXN (UL(1) << 53)