mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
KVM: PPC: Name generic 64-bit code generic
We have quite some code that can be used by Book3S_32 and Book3S_64 alike, so let's call it "Book3S" instead of "Book3S_64", so we can later on use it from the 32 bit port too. Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
77a1a71570
commit
2191d657c9
9 changed files with 7 additions and 9 deletions
76
arch/powerpc/include/asm/kvm_book3s_asm.h
Normal file
76
arch/powerpc/include/asm/kvm_book3s_asm.h
Normal file
|
@ -0,0 +1,76 @@
|
|||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License, version 2, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
* Copyright SUSE Linux Products GmbH 2009
|
||||
*
|
||||
* Authors: Alexander Graf <agraf@suse.de>
|
||||
*/
|
||||
|
||||
#ifndef __ASM_KVM_BOOK3S_ASM_H__
|
||||
#define __ASM_KVM_BOOK3S_ASM_H__
|
||||
|
||||
#ifdef __ASSEMBLY__
|
||||
|
||||
#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
|
||||
|
||||
#include <asm/kvm_asm.h>
|
||||
|
||||
.macro DO_KVM intno
|
||||
.if (\intno == BOOK3S_INTERRUPT_SYSTEM_RESET) || \
|
||||
(\intno == BOOK3S_INTERRUPT_MACHINE_CHECK) || \
|
||||
(\intno == BOOK3S_INTERRUPT_DATA_STORAGE) || \
|
||||
(\intno == BOOK3S_INTERRUPT_INST_STORAGE) || \
|
||||
(\intno == BOOK3S_INTERRUPT_DATA_SEGMENT) || \
|
||||
(\intno == BOOK3S_INTERRUPT_INST_SEGMENT) || \
|
||||
(\intno == BOOK3S_INTERRUPT_EXTERNAL) || \
|
||||
(\intno == BOOK3S_INTERRUPT_ALIGNMENT) || \
|
||||
(\intno == BOOK3S_INTERRUPT_PROGRAM) || \
|
||||
(\intno == BOOK3S_INTERRUPT_FP_UNAVAIL) || \
|
||||
(\intno == BOOK3S_INTERRUPT_DECREMENTER) || \
|
||||
(\intno == BOOK3S_INTERRUPT_SYSCALL) || \
|
||||
(\intno == BOOK3S_INTERRUPT_TRACE) || \
|
||||
(\intno == BOOK3S_INTERRUPT_PERFMON) || \
|
||||
(\intno == BOOK3S_INTERRUPT_ALTIVEC) || \
|
||||
(\intno == BOOK3S_INTERRUPT_VSX)
|
||||
|
||||
b kvmppc_trampoline_\intno
|
||||
kvmppc_resume_\intno:
|
||||
|
||||
.endif
|
||||
.endm
|
||||
|
||||
#else
|
||||
|
||||
.macro DO_KVM intno
|
||||
.endm
|
||||
|
||||
#endif /* CONFIG_KVM_BOOK3S_64_HANDLER */
|
||||
|
||||
#else /*__ASSEMBLY__ */
|
||||
|
||||
struct kvmppc_book3s_shadow_vcpu {
|
||||
ulong gpr[14];
|
||||
u32 cr;
|
||||
u32 xer;
|
||||
ulong host_r1;
|
||||
ulong host_r2;
|
||||
ulong handler;
|
||||
ulong scratch0;
|
||||
ulong scratch1;
|
||||
ulong vmhandler;
|
||||
};
|
||||
|
||||
#endif /*__ASSEMBLY__ */
|
||||
|
||||
#endif /* __ASM_KVM_BOOK3S_ASM_H__ */
|
Loading…
Add table
Add a link
Reference in a new issue