diff options
author | Marc Zyngier <maz@kernel.org> | 2020-07-06 17:38:01 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-07-08 21:57:51 +0100 |
commit | 4b661d6133c5d3a7c9aca0b4ee5a78c7766eff3f (patch) | |
tree | 372b89e8c963ab143b3ce9fe90a4b3156f0de9c4 /drivers | |
parent | c1fbec4ac0d701f350a581941d35643d5a9cd184 (diff) | |
download | linux-stable-4b661d6133c5d3a7c9aca0b4ee5a78c7766eff3f.tar.gz linux-stable-4b661d6133c5d3a7c9aca0b4ee5a78c7766eff3f.tar.bz2 linux-stable-4b661d6133c5d3a7c9aca0b4ee5a78c7766eff3f.zip |
arm64: arch_timer: Disable the compat vdso for cores affected by ARM64_WORKAROUND_1418040
ARM64_WORKAROUND_1418040 requires that AArch32 EL0 accesses to
the virtual counter register are trapped and emulated by the kernel.
This makes the vdso pretty pointless, and in some cases livelock
prone.
Provide a workaround entry that limits the vdso to 64bit tasks.
Signed-off-by: Marc Zyngier <maz@kernel.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20200706163802.1836732-4-maz@kernel.org
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clocksource/arm_arch_timer.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c index a8e4fb429f52..6c3e84180146 100644 --- a/drivers/clocksource/arm_arch_timer.c +++ b/drivers/clocksource/arm_arch_timer.c @@ -480,6 +480,14 @@ static const struct arch_timer_erratum_workaround ool_workarounds[] = { .set_next_event_virt = erratum_set_next_event_tval_virt, }, #endif +#ifdef CONFIG_ARM64_ERRATUM_1418040 + { + .match_type = ate_match_local_cap_id, + .id = (void *)ARM64_WORKAROUND_1418040, + .desc = "ARM erratum 1418040", + .disable_compat_vdso = true, + }, +#endif }; typedef bool (*ate_match_fn_t)(const struct arch_timer_erratum_workaround *, |