KVM: PPC: Add generic segment switching code
authorAlexander Graf <agraf@suse.de>
Thu, 15 Apr 2010 22:11:35 +0000 (00:11 +0200)
committerAvi Kivity <avi@redhat.com>
Mon, 17 May 2010 09:18:18 +0000 (12:18 +0300)
commit0737279427bef48f552b3ab63a6c0ba7491fe29f
treec7f5e50f36317176175b581125262405c157f570
parent786f19daa8b109ae6b96a351eee3a14b9f8b57d0
KVM: PPC: Add generic segment switching code

This is the code that will later be used instead of book3s_64_slb.S. It
does the last step of guest entry and the first generic steps of guest
exiting, once we have determined the interrupt is a KVM interrupt.

It also reads the last used instruction from the guest virtual address
space if necessary, to speed up that path.

The new thing about this file is that it makes use of generic long load
and store functions and calls a macro to fill in the actual segment
switching code. That still needs to be done differently for book3s_32 and
book3s_64.

Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/powerpc/kvm/book3s_segment.S [new file with mode: 0644]