arm64: Add workaround for Arm Cortex-A77 erratum 1508412
On Cortex-A77 r0p0 and r1p0, a sequence of a non-cacheable or device load and a store exclusive or PAR_EL1 read can cause a deadlock. The workaround requires a DMB SY before and after a PAR_EL1 register read. In addition, it's possible an interrupt (doing a device read) or KVM guest exit could be taken between the DMB and PAR read, so we also need a DMB before returning from interrupt and before returning to a guest. A deadlock is still possible with the workaround as KVM guests must also have the workaround. IOW, a malicious guest can deadlock an affected systems. This workaround also depends on a firmware counterpart to enable the h/w to insert DMB SY after load and store exclusive instructions. See the errata document SDEN-1152370 v10 [1] for more information. [1] https://static.docs.arm.com/101992/0010/Arm_Cortex_A77_MP074_Software_Developer_Errata_Notice_v10.pdf Signed-off-by:Rob Herring <robh@kernel.org> Reviewed-by:
Catalin Marinas <catalin.marinas@arm.com> Acked-by:
Marc Zyngier <maz@kernel.org> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: James Morse <james.morse@arm.com> Cc: Suzuki K Poulose <suzuki.poulose@arm.com> Cc: Will Deacon <will@kernel.org> Cc: Julien Thierry <julien.thierry.kdev@gmail.com> Cc: kvmarm@lists.cs.columbia.edu Link: https://lore.kernel.org/r/20201028182839.166037-2-robh@kernel.org Signed-off-by:
Will Deacon <will@kernel.org>
Showing
- Documentation/arm64/silicon-errata.rst 2 additions, 0 deletionsDocumentation/arm64/silicon-errata.rst
- arch/arm64/Kconfig 20 additions, 0 deletionsarch/arm64/Kconfig
- arch/arm64/include/asm/cpucaps.h 2 additions, 1 deletionarch/arm64/include/asm/cpucaps.h
- arch/arm64/include/asm/sysreg.h 9 additions, 0 deletionsarch/arm64/include/asm/sysreg.h
- arch/arm64/kernel/cpu_errata.c 10 additions, 0 deletionsarch/arm64/kernel/cpu_errata.c
- arch/arm64/kernel/entry.S 3 additions, 0 deletionsarch/arm64/kernel/entry.S
- arch/arm64/kvm/arm.c 2 additions, 1 deletionarch/arm64/kvm/arm.c
- arch/arm64/kvm/hyp/include/hyp/switch.h 13 additions, 8 deletionsarch/arm64/kvm/hyp/include/hyp/switch.h
- arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h 1 addition, 1 deletionarch/arm64/kvm/hyp/include/hyp/sysreg-sr.h
- arch/arm64/kvm/hyp/nvhe/switch.c 1 addition, 1 deletionarch/arm64/kvm/hyp/nvhe/switch.c
- arch/arm64/kvm/hyp/vhe/switch.c 1 addition, 1 deletionarch/arm64/kvm/hyp/vhe/switch.c
- arch/arm64/kvm/sys_regs.c 1 addition, 1 deletionarch/arm64/kvm/sys_regs.c
- arch/arm64/mm/fault.c 1 addition, 1 deletionarch/arm64/mm/fault.c
Please register or sign in to comment