book3s_interrupts.S 4.9 KB
Newer Older
A
Alexander Graf 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * 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>
 */

#include <asm/ppc_asm.h>
#include <asm/kvm_asm.h>
#include <asm/reg.h>
#include <asm/page.h>
#include <asm/asm-offsets.h>
#include <asm/exception-64s.h>

27 28 29 30 31 32
#if defined(CONFIG_PPC_BOOK3S_64)
#define FUNC(name) 		GLUE(.,name)
#elif defined(CONFIG_PPC_BOOK3S_32)
#define FUNC(name)		name
#endif /* CONFIG_PPC_BOOK3S_XX */

33
#define VCPU_LOAD_NVGPRS(vcpu) \
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
	PPC_LL	r14, VCPU_GPR(R14)(vcpu); \
	PPC_LL	r15, VCPU_GPR(R15)(vcpu); \
	PPC_LL	r16, VCPU_GPR(R16)(vcpu); \
	PPC_LL	r17, VCPU_GPR(R17)(vcpu); \
	PPC_LL	r18, VCPU_GPR(R18)(vcpu); \
	PPC_LL	r19, VCPU_GPR(R19)(vcpu); \
	PPC_LL	r20, VCPU_GPR(R20)(vcpu); \
	PPC_LL	r21, VCPU_GPR(R21)(vcpu); \
	PPC_LL	r22, VCPU_GPR(R22)(vcpu); \
	PPC_LL	r23, VCPU_GPR(R23)(vcpu); \
	PPC_LL	r24, VCPU_GPR(R24)(vcpu); \
	PPC_LL	r25, VCPU_GPR(R25)(vcpu); \
	PPC_LL	r26, VCPU_GPR(R26)(vcpu); \
	PPC_LL	r27, VCPU_GPR(R27)(vcpu); \
	PPC_LL	r28, VCPU_GPR(R28)(vcpu); \
	PPC_LL	r29, VCPU_GPR(R29)(vcpu); \
	PPC_LL	r30, VCPU_GPR(R30)(vcpu); \
	PPC_LL	r31, VCPU_GPR(R31)(vcpu); \
52

A
Alexander Graf 已提交
53 54 55 56 57 58 59 60 61 62
/*****************************************************************************
 *                                                                           *
 *     Guest entry / exit code that is in kernel module memory (highmem)     *
 *                                                                           *
 ****************************************************************************/

/* Registers:
 *  r3: kvm_run pointer
 *  r4: vcpu pointer
 */
63
_GLOBAL(__kvmppc_vcpu_run)
A
Alexander Graf 已提交
64 65 66

kvm_start_entry:
	/* Write correct stack frame */
67 68
	mflr	r0
	PPC_STL	r0,PPC_LR_STKOFF(r1)
A
Alexander Graf 已提交
69 70

	/* Save host state to the stack */
71
	PPC_STLU r1, -SWITCH_FRAME_SIZE(r1)
A
Alexander Graf 已提交
72 73 74 75 76 77 78

	/* Save r3 (kvm_run) and r4 (vcpu) */
	SAVE_2GPRS(3, r1)

	/* Save non-volatile registers (r14 - r31) */
	SAVE_NVGPRS(r1)

79 80 81 82
	/* Save CR */
	mfcr	r14
	stw	r14, _CCR(r1)

A
Alexander Graf 已提交
83
	/* Save LR */
84
	PPC_STL	r0, _LINK(r1)
85 86 87

	/* Load non-volatile guest state from the vcpu */
	VCPU_LOAD_NVGPRS(r4)
A
Alexander Graf 已提交
88

89
kvm_start_lightweight:
90

91 92
#ifdef CONFIG_PPC_BOOK3S_64
	PPC_LL	r3, VCPU_HFLAGS(r4)
93 94
	rldicl	r3, r3, 0, 63		/* r3 &= 1 */
	stb	r3, HSTATE_RESTORE_HID5(r13)
95 96
#endif /* CONFIG_PPC_BOOK3S_64 */

97
	PPC_LL	r4, VCPU_SHADOW_MSR(r4)	/* get shadow_msr */
98

99
	/* Jump to segment patching handler and into our guest */
100 101
	bl	FUNC(kvmppc_entry_trampoline)
	nop
A
Alexander Graf 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114

/*
 * This is the handler in module memory. It gets jumped at from the
 * lowmem trampoline code, so it's basically the guest exit code.
 *
 */

.global kvmppc_handler_highmem
kvmppc_handler_highmem:

	/*
	 * Register usage at this point:
	 *
115 116 117 118 119
	 * R1       = host R1
	 * R2       = host R2
	 * R12      = exit handler id
	 * R13      = PACA
	 * SVCPU.*  = guest *
A
Alexander Graf 已提交
120 121 122
	 *
	 */

123
	/* R7 = vcpu */
124
	PPC_LL	r7, GPR4(r1)
A
Alexander Graf 已提交
125

126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
	PPC_STL	r14, VCPU_GPR(R14)(r7)
	PPC_STL	r15, VCPU_GPR(R15)(r7)
	PPC_STL	r16, VCPU_GPR(R16)(r7)
	PPC_STL	r17, VCPU_GPR(R17)(r7)
	PPC_STL	r18, VCPU_GPR(R18)(r7)
	PPC_STL	r19, VCPU_GPR(R19)(r7)
	PPC_STL	r20, VCPU_GPR(R20)(r7)
	PPC_STL	r21, VCPU_GPR(R21)(r7)
	PPC_STL	r22, VCPU_GPR(R22)(r7)
	PPC_STL	r23, VCPU_GPR(R23)(r7)
	PPC_STL	r24, VCPU_GPR(R24)(r7)
	PPC_STL	r25, VCPU_GPR(R25)(r7)
	PPC_STL	r26, VCPU_GPR(R26)(r7)
	PPC_STL	r27, VCPU_GPR(R27)(r7)
	PPC_STL	r28, VCPU_GPR(R28)(r7)
	PPC_STL	r29, VCPU_GPR(R29)(r7)
	PPC_STL	r30, VCPU_GPR(R30)(r7)
	PPC_STL	r31, VCPU_GPR(R31)(r7)
A
Alexander Graf 已提交
144

145
	/* Pass the exit number as 3rd argument to kvmppc_handle_exit */
146
	mr	r5, r12
147

A
Alexander Graf 已提交
148 149
	/* Restore r3 (kvm_run) and r4 (vcpu) */
	REST_2GPRS(3, r1)
150
	bl	FUNC(kvmppc_handle_exit)
A
Alexander Graf 已提交
151

152
	/* If RESUME_GUEST, get back in the loop */
A
Alexander Graf 已提交
153
	cmpwi	r3, RESUME_GUEST
154
	beq	kvm_loop_lightweight
A
Alexander Graf 已提交
155

156 157
	cmpwi	r3, RESUME_GUEST_NV
	beq	kvm_loop_heavyweight
A
Alexander Graf 已提交
158

159
kvm_exit_loop:
A
Alexander Graf 已提交
160

161
	PPC_LL	r4, _LINK(r1)
A
Alexander Graf 已提交
162 163
	mtlr	r4

164 165 166
	lwz	r14, _CCR(r1)
	mtcr	r14

167 168 169 170 171 172 173
	/* Restore non-volatile host registers (r14 - r31) */
	REST_NVGPRS(r1)

	addi    r1, r1, SWITCH_FRAME_SIZE
	blr

kvm_loop_heavyweight:
A
Alexander Graf 已提交
174

175 176
	PPC_LL	r4, _LINK(r1)
	PPC_STL r4, (PPC_LR_STKOFF + SWITCH_FRAME_SIZE)(r1)
177 178

	/* Load vcpu and cpu_run */
A
Alexander Graf 已提交
179 180
	REST_2GPRS(3, r1)

181 182
	/* Load non-volatile guest state from the vcpu */
	VCPU_LOAD_NVGPRS(r4)
A
Alexander Graf 已提交
183

184 185
	/* Jump back into the beginning of this function */
	b	kvm_start_lightweight
A
Alexander Graf 已提交
186

187
kvm_loop_lightweight:
A
Alexander Graf 已提交
188

189 190 191 192 193
	/* We'll need the vcpu pointer */
	REST_GPR(4, r1)

	/* Jump back into the beginning of this function */
	b	kvm_start_lightweight