aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/mm/cache.S
diff options
context:
space:
mode:
authorShanker Donthineni <shankerd@codeaurora.org>2018-03-07 10:00:08 -0500
committerWill Deacon <will.deacon@arm.com>2018-03-09 08:57:57 -0500
commit6ae4b6e0578886eb36cedbf99f04031d93f9e315 (patch)
tree0f619237573c089ea1488f3349f9e5bd7d419d7e /arch/arm64/mm/cache.S
parentca79acca273630935f2cfdfdf3fc7425ff51ce1c (diff)
arm64: Add support for new control bits CTR_EL0.DIC and CTR_EL0.IDC
The DCache clean & ICache invalidation requirements for instructions to be data coherence are discoverable through new fields in CTR_EL0. The following two control bits DIC and IDC were defined for this purpose. No need to perform point of unification cache maintenance operations from software on systems where CPU caches are transparent. This patch optimize the three functions __flush_cache_user_range(), clean_dcache_area_pou() and invalidate_icache_range() if the hardware reports CTR_EL0.IDC and/or CTR_EL0.IDC. Basically it skips the two instructions 'DC CVAU' and 'IC IVAU', and the associated loop logic in order to avoid the unnecessary overhead. CTR_EL0.DIC: Instruction cache invalidation requirements for instruction to data coherence. The meaning of this bit[29]. 0: Instruction cache invalidation to the point of unification is required for instruction to data coherence. 1: Instruction cache cleaning to the point of unification is not required for instruction to data coherence. CTR_EL0.IDC: Data cache clean requirements for instruction to data coherence. The meaning of this bit[28]. 0: Data cache clean to the point of unification is required for instruction to data coherence, unless CLIDR_EL1.LoC == 0b000 or (CLIDR_EL1.LoUIS == 0b000 && CLIDR_EL1.LoUU == 0b000). 1: Data cache clean to the point of unification is not required for instruction to data coherence. Co-authored-by: Philip Elcan <pelcan@codeaurora.org> Reviewed-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Shanker Donthineni <shankerd@codeaurora.org> Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/mm/cache.S')
-rw-r--r--arch/arm64/mm/cache.S21
1 files changed, 20 insertions, 1 deletions
diff --git a/arch/arm64/mm/cache.S b/arch/arm64/mm/cache.S
index 758bde7e2fa6..30334d81b021 100644
--- a/arch/arm64/mm/cache.S
+++ b/arch/arm64/mm/cache.S
@@ -50,6 +50,10 @@ ENTRY(flush_icache_range)
50 */ 50 */
51ENTRY(__flush_cache_user_range) 51ENTRY(__flush_cache_user_range)
52 uaccess_ttbr0_enable x2, x3, x4 52 uaccess_ttbr0_enable x2, x3, x4
53alternative_if ARM64_HAS_CACHE_IDC
54 dsb ishst
55 b 7f
56alternative_else_nop_endif
53 dcache_line_size x2, x3 57 dcache_line_size x2, x3
54 sub x3, x2, #1 58 sub x3, x2, #1
55 bic x4, x0, x3 59 bic x4, x0, x3
@@ -60,8 +64,13 @@ user_alt 9f, "dc cvau, x4", "dc civac, x4", ARM64_WORKAROUND_CLEAN_CACHE
60 b.lo 1b 64 b.lo 1b
61 dsb ish 65 dsb ish
62 66
677:
68alternative_if ARM64_HAS_CACHE_DIC
69 isb
70 b 8f
71alternative_else_nop_endif
63 invalidate_icache_by_line x0, x1, x2, x3, 9f 72 invalidate_icache_by_line x0, x1, x2, x3, 9f
64 mov x0, #0 738: mov x0, #0
651: 741:
66 uaccess_ttbr0_disable x1, x2 75 uaccess_ttbr0_disable x1, x2
67 ret 76 ret
@@ -80,6 +89,12 @@ ENDPROC(__flush_cache_user_range)
80 * - end - virtual end address of region 89 * - end - virtual end address of region
81 */ 90 */
82ENTRY(invalidate_icache_range) 91ENTRY(invalidate_icache_range)
92alternative_if ARM64_HAS_CACHE_DIC
93 mov x0, xzr
94 isb
95 ret
96alternative_else_nop_endif
97
83 uaccess_ttbr0_enable x2, x3, x4 98 uaccess_ttbr0_enable x2, x3, x4
84 99
85 invalidate_icache_by_line x0, x1, x2, x3, 2f 100 invalidate_icache_by_line x0, x1, x2, x3, 2f
@@ -116,6 +131,10 @@ ENDPIPROC(__flush_dcache_area)
116 * - size - size in question 131 * - size - size in question
117 */ 132 */
118ENTRY(__clean_dcache_area_pou) 133ENTRY(__clean_dcache_area_pou)
134alternative_if ARM64_HAS_CACHE_IDC
135 dsb ishst
136 ret
137alternative_else_nop_endif
119 dcache_by_line_op cvau, ish, x0, x1, x2, x3 138 dcache_by_line_op cvau, ish, x0, x1, x2, x3
120 ret 139 ret
121ENDPROC(__clean_dcache_area_pou) 140ENDPROC(__clean_dcache_area_pou)