]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: arm64: Change 32-bit handling of VM system registers
authorChristoffer Dall <christoffer.dall@linaro.org>
Wed, 11 Oct 2017 13:20:41 +0000 (15:20 +0200)
committerMarc Zyngier <marc.zyngier@arm.com>
Mon, 19 Mar 2018 10:53:16 +0000 (10:53 +0000)
commit67e94be3be335fa09a79b8164c59981c35248a1e
treee3ac79d4ca00d40a358a4a14dc4f62061abb9b9d
parent5559511629d31f5d9030052895c9cd60545fdbea
KVM: arm64: Change 32-bit handling of VM system registers

We currently handle 32-bit accesses to trapped VM system registers using
the 32-bit index into the coproc array on the vcpu structure, which is a
union of the coproc array and the sysreg array.

Since all the 32-bit coproc indices are created to correspond to the
architectural mapping between 64-bit system registers and 32-bit
coprocessor registers, and because the AArch64 system registers are the
double in size of the AArch32 coprocessor registers, we can always find
the system register entry that we must update by dividing the 32-bit
coproc index by 2.

This is going to make our lives much easier when we have to start
accessing system registers that use deferred save/restore and might
have to be read directly from the physical CPU.

Reviewed-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
arch/arm64/include/asm/kvm_host.h
arch/arm64/kvm/sys_regs.c