diff options
author | Will Deacon <will@kernel.org> | 2020-10-01 09:48:21 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-10-01 12:43:05 +0100 |
commit | 80d6b466679c3dced3b359a6379c6d913de39afd (patch) | |
tree | 1b3b33a7510d22f342ea459c98acb8d792eb064b /arch/arm64 | |
parent | 6a1bdb173f9967b2329aab0f25bcba963f54e06b (diff) | |
download | linux-80d6b466679c3dced3b359a6379c6d913de39afd.tar.bz2 |
arm64: dbm: Invalidate local TLB when setting TCR_EL1.HD
TCR_EL1.HD is permitted to be cached in a TLB, so invalidate the local
TLB after setting the bit when detected support for the feature. Although
this isn't strictly necessary, since we can happily operate with the bit
effectively clear, the current code uses an ISB in a half-hearted attempt
to make the change effective, so let's just fix that up.
Link: https://lore.kernel.org/r/20201001110405.18617-1-will@kernel.org
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/kernel/cpufeature.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c index 6424584be01e..a474a4f39c95 100644 --- a/arch/arm64/kernel/cpufeature.c +++ b/arch/arm64/kernel/cpufeature.c @@ -1443,6 +1443,7 @@ static inline void __cpu_enable_hw_dbm(void) write_sysreg(tcr, tcr_el1); isb(); + local_flush_tlb_all(); } static bool cpu_has_broken_dbm(void) |