]> asedeno.scripts.mit.edu Git - linux.git/commit
arm64: KVM: Allow far branches from vector slots to the main vectors
authorMarc Zyngier <marc.zyngier@arm.com>
Tue, 27 Feb 2018 17:38:08 +0000 (17:38 +0000)
committerMarc Zyngier <marc.zyngier@arm.com>
Mon, 19 Mar 2018 13:06:01 +0000 (13:06 +0000)
commit71dcb8be6d29cffff3f4a4463232f38786e97797
treebb065a9d3f86c74f0324e3deeaa2f12e301ed70e
parentf0445dfadbb2ddce26f535b71578b36302805007
arm64: KVM: Allow far branches from vector slots to the main vectors

So far, the branch from the vector slots to the main vectors can at
most be 4GB from the main vectors (the reach of ADRP), and this
distance is known at compile time. If we were to remap the slots
to an unrelated VA, things would break badly.

A way to achieve VA independence would be to load the absolute
address of the vectors (__kvm_hyp_vector), either using a constant
pool or a series of movs, followed by an indirect branch.

This patches implements the latter solution, using another instance
of a patching callback. Note that since we have to save a register
pair on the stack, we branch to the *second* instruction in the
vectors in order to compensate for it. This also results in having
to adjust this balance in the invalid vector entry point.

Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
arch/arm64/include/asm/cpucaps.h
arch/arm64/kernel/bpi.S
arch/arm64/kvm/hyp/hyp-entry.S
arch/arm64/kvm/va_layout.c