diff options
author | Tom Rini <trini@konsulko.com> | 2015-10-15 17:45:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-15 17:45:39 -0400 |
commit | 1275456d31cc130738775dca19b0a2ab1374cfbd (patch) | |
tree | 97652adb73378e3c2ecb34134aea32d75b0bad12 /arch/arm/include | |
parent | aaf87f03ad709ff9f00819ef1eb001e878ad0a54 (diff) | |
parent | b1964c72bdb9ca44de3a56d40927409b8cab2a76 (diff) | |
download | u-boot-imx-1275456d31cc130738775dca19b0a2ab1374cfbd.zip u-boot-imx-1275456d31cc130738775dca19b0a2ab1374cfbd.tar.gz u-boot-imx-1275456d31cc130738775dca19b0a2ab1374cfbd.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/armv8/mmu.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/arm/include/asm/armv8/mmu.h b/arch/arm/include/asm/armv8/mmu.h index 0c928d4..587ee39 100644 --- a/arch/arm/include/asm/armv8/mmu.h +++ b/arch/arm/include/asm/armv8/mmu.h @@ -103,13 +103,17 @@ #define TCR_EL2_IPS_BITS (3 << 16) /* 42 bits physical address */ #define TCR_EL3_IPS_BITS (3 << 16) /* 42 bits physical address */ -/* PTWs cacheable, inner/outer WBWA and non-shareable */ +/* PTWs cacheable, inner/outer WBWA and inner shareable */ #define TCR_FLAGS (TCR_TG0_64K | \ - TCR_SHARED_NON | \ + TCR_SHARED_INNER | \ TCR_ORGN_WBWA | \ TCR_IRGN_WBWA | \ TCR_T0SZ(VA_BITS)) +#define TCR_EL1_RSVD (1 << 31) +#define TCR_EL2_RSVD (1 << 31 | 1 << 23) +#define TCR_EL3_RSVD (1 << 31 | 1 << 23) + #ifndef __ASSEMBLY__ void set_pgtable_section(u64 *page_table, u64 index, |