powerpc: Merge VCPU_GPR
Merge the defines of VCPU_GPR from different places. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
44ce6a5ee7
commit
d72be892c8
|
@ -178,6 +178,13 @@ END_FW_FTR_SECTION_IFSET(FW_FEATURE_SPLPAR)
|
|||
#define HMT_HIGH or 3,3,3
|
||||
#define HMT_EXTRA_HIGH or 7,7,7 # power7 only
|
||||
|
||||
#ifdef CONFIG_PPC64
|
||||
#define ULONG_SIZE 8
|
||||
#else
|
||||
#define ULONG_SIZE 4
|
||||
#endif
|
||||
#define VCPU_GPR(n) (VCPU_GPRS + (n * ULONG_SIZE))
|
||||
|
||||
#ifdef __KERNEL__
|
||||
#ifdef CONFIG_PPC64
|
||||
|
||||
|
|
|
@ -72,9 +72,6 @@ _GLOBAL(kvmppc_hv_entry_trampoline)
|
|||
mtsrr1 r6
|
||||
RFI
|
||||
|
||||
#define ULONG_SIZE 8
|
||||
#define VCPU_GPR(n) (VCPU_GPRS + (n * ULONG_SIZE))
|
||||
|
||||
/******************************************************************************
|
||||
* *
|
||||
* Entry code *
|
||||
|
|
|
@ -25,19 +25,11 @@
|
|||
#include <asm/exception-64s.h>
|
||||
|
||||
#if defined(CONFIG_PPC_BOOK3S_64)
|
||||
|
||||
#define ULONG_SIZE 8
|
||||
#define FUNC(name) GLUE(.,name)
|
||||
|
||||
#elif defined(CONFIG_PPC_BOOK3S_32)
|
||||
|
||||
#define ULONG_SIZE 4
|
||||
#define FUNC(name) name
|
||||
|
||||
#endif /* CONFIG_PPC_BOOK3S_XX */
|
||||
|
||||
|
||||
#define VCPU_GPR(n) (VCPU_GPRS + (n * ULONG_SIZE))
|
||||
#define VCPU_LOAD_NVGPRS(vcpu) \
|
||||
PPC_LL r14, VCPU_GPR(R14)(vcpu); \
|
||||
PPC_LL r15, VCPU_GPR(R15)(vcpu); \
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
#include <asm/page.h>
|
||||
#include <asm/asm-offsets.h>
|
||||
|
||||
#define VCPU_GPR(n) (VCPU_GPRS + (n * 4))
|
||||
|
||||
/* The host stack layout: */
|
||||
#define HOST_R1 0 /* Implied by stwu. */
|
||||
#define HOST_CALLEE_LR 4
|
||||
|
|
|
@ -37,7 +37,6 @@
|
|||
|
||||
#define LONGBYTES (BITS_PER_LONG / 8)
|
||||
|
||||
#define VCPU_GPR(n) (VCPU_GPRS + (n * LONGBYTES))
|
||||
#define VCPU_GUEST_SPRG(n) (VCPU_GUEST_SPRGS + (n * LONGBYTES))
|
||||
|
||||
/* The host stack layout: */
|
||||
|
|
Loading…
Reference in New Issue