blob: 1e0cc2adfd40d9aaee3ee93662d6f4ee48d8d659 [file] [log] [blame]
Alexander Graf07372792010-04-16 00:11:35 +02001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
14 *
15 * Copyright SUSE Linux Products GmbH 2010
16 *
17 * Authors: Alexander Graf <agraf@suse.de>
18 */
19
20/* Real mode helpers */
21
22#if defined(CONFIG_PPC_BOOK3S_64)
23
24#define GET_SHADOW_VCPU(reg) \
Paul Mackerras3c42bf82011-06-29 00:20:58 +000025 mr reg, r13
Alexander Graf07372792010-04-16 00:11:35 +020026
27#elif defined(CONFIG_PPC_BOOK3S_32)
28
29#define GET_SHADOW_VCPU(reg) \
30 tophys(reg, r2); \
31 lwz reg, (THREAD + THREAD_KVM_SVCPU)(reg); \
32 tophys(reg, reg)
33
34#endif
35
36/* Disable for nested KVM */
37#define USE_QUICK_LAST_INST
38
39
40/* Get helper functions for subarch specific functionality */
41
42#if defined(CONFIG_PPC_BOOK3S_64)
43#include "book3s_64_slb.S"
44#elif defined(CONFIG_PPC_BOOK3S_32)
45#include "book3s_32_sr.S"
46#endif
47
48/******************************************************************************
49 * *
50 * Entry code *
51 * *
52 *****************************************************************************/
53
54.global kvmppc_handler_trampoline_enter
55kvmppc_handler_trampoline_enter:
56
57 /* Required state:
58 *
59 * MSR = ~IR|DR
Alexander Graf07372792010-04-16 00:11:35 +020060 * R1 = host R1
61 * R2 = host R2
Paul Mackerras02143942011-07-23 17:41:44 +100062 * R4 = guest shadow MSR
63 * R5 = normal host MSR
64 * R6 = current host MSR (EE, IR, DR off)
65 * LR = highmem guest exit code
Alexander Graf07372792010-04-16 00:11:35 +020066 * all other volatile GPRS = free
67 * SVCPU[CR] = guest CR
68 * SVCPU[XER] = guest XER
69 * SVCPU[CTR] = guest CTR
70 * SVCPU[LR] = guest LR
71 */
72
73 /* r3 = shadow vcpu */
74 GET_SHADOW_VCPU(r3)
75
Paul Mackerras02143942011-07-23 17:41:44 +100076 /* Save guest exit handler address and MSR */
77 mflr r0
78 PPC_STL r0, HSTATE_VMHANDLER(r3)
79 PPC_STL r5, HSTATE_HOST_MSR(r3)
80
Paul Mackerras3c42bf82011-06-29 00:20:58 +000081 /* Save R1/R2 in the PACA (64-bit) or shadow_vcpu (32-bit) */
82 PPC_STL r1, HSTATE_HOST_R1(r3)
83 PPC_STL r2, HSTATE_HOST_R2(r3)
84
Alexander Graf07372792010-04-16 00:11:35 +020085 /* Activate guest mode, so faults get handled by KVM */
86 li r11, KVM_GUEST_MODE_GUEST
Paul Mackerras3c42bf82011-06-29 00:20:58 +000087 stb r11, HSTATE_IN_GUEST(r3)
Alexander Graf07372792010-04-16 00:11:35 +020088
89 /* Switch to guest segment. This is subarch specific. */
90 LOAD_GUEST_SEGMENTS
91
Paul Mackerras02143942011-07-23 17:41:44 +100092#ifdef CONFIG_PPC_BOOK3S_64
93 /* Some guests may need to have dcbz set to 32 byte length.
94 *
95 * Usually we ensure that by patching the guest's instructions
96 * to trap on dcbz and emulate it in the hypervisor.
97 *
98 * If we can, we should tell the CPU to use 32 byte dcbz though,
99 * because that's a lot faster.
100 */
101 lbz r0, HSTATE_RESTORE_HID5(r3)
102 cmpwi r0, 0
103 beq no_dcbz32_on
104
105 mfspr r0,SPRN_HID5
106 ori r0, r0, 0x80 /* XXX HID5_dcbz32 = 0x80 */
107 mtspr SPRN_HID5,r0
108no_dcbz32_on:
109
110#endif /* CONFIG_PPC_BOOK3S_64 */
111
Alexander Graf07372792010-04-16 00:11:35 +0200112 /* Enter guest */
113
Paul Mackerras02143942011-07-23 17:41:44 +1000114 PPC_LL r8, SVCPU_CTR(r3)
115 PPC_LL r9, SVCPU_LR(r3)
116 lwz r10, SVCPU_CR(r3)
117 lwz r11, SVCPU_XER(r3)
Alexander Graf07372792010-04-16 00:11:35 +0200118
Paul Mackerras02143942011-07-23 17:41:44 +1000119 mtctr r8
120 mtlr r9
121 mtcr r10
122 mtxer r11
123
124 /* Move SRR0 and SRR1 into the respective regs */
125 PPC_LL r9, SVCPU_PC(r3)
126 /* First clear RI in our current MSR value */
127 li r0, MSR_RI
128 andc r6, r6, r0
Alexander Graf07372792010-04-16 00:11:35 +0200129
Paul Mackerrasde56a942011-06-29 00:21:34 +0000130 PPC_LL r0, SVCPU_R0(r3)
131 PPC_LL r1, SVCPU_R1(r3)
132 PPC_LL r2, SVCPU_R2(r3)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000133 PPC_LL r5, SVCPU_R5(r3)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000134 PPC_LL r7, SVCPU_R7(r3)
135 PPC_LL r8, SVCPU_R8(r3)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000136 PPC_LL r10, SVCPU_R10(r3)
137 PPC_LL r11, SVCPU_R11(r3)
138 PPC_LL r12, SVCPU_R12(r3)
139 PPC_LL r13, SVCPU_R13(r3)
Alexander Graf07372792010-04-16 00:11:35 +0200140
Alexander Graf8c2d0be2012-04-25 14:28:23 +0200141 MTMSR_EERI(r6)
142 mtsrr0 r9
143 mtsrr1 r4
144
145 PPC_LL r4, SVCPU_R4(r3)
146 PPC_LL r6, SVCPU_R6(r3)
147 PPC_LL r9, SVCPU_R9(r3)
Alexander Graf07372792010-04-16 00:11:35 +0200148 PPC_LL r3, (SVCPU_R3)(r3)
149
150 RFI
151kvmppc_handler_trampoline_enter_end:
152
153
154
155/******************************************************************************
156 * *
157 * Exit code *
158 * *
159 *****************************************************************************/
160
161.global kvmppc_handler_trampoline_exit
162kvmppc_handler_trampoline_exit:
163
Aneesh Kumar K.Vdd96b2c2013-10-07 22:17:55 +0530164.global kvmppc_interrupt_pr
165kvmppc_interrupt_pr:
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000166
Alexander Graf07372792010-04-16 00:11:35 +0200167 /* Register usage at this point:
168 *
169 * SPRG_SCRATCH0 = guest R13
170 * R12 = exit handler id
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000171 * R13 = shadow vcpu (32-bit) or PACA (64-bit)
172 * HSTATE.SCRATCH0 = guest R12
173 * HSTATE.SCRATCH1 = guest CR
Alexander Graf07372792010-04-16 00:11:35 +0200174 *
175 */
176
177 /* Save registers */
178
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000179 PPC_STL r0, SVCPU_R0(r13)
180 PPC_STL r1, SVCPU_R1(r13)
181 PPC_STL r2, SVCPU_R2(r13)
182 PPC_STL r3, SVCPU_R3(r13)
183 PPC_STL r4, SVCPU_R4(r13)
184 PPC_STL r5, SVCPU_R5(r13)
185 PPC_STL r6, SVCPU_R6(r13)
186 PPC_STL r7, SVCPU_R7(r13)
187 PPC_STL r8, SVCPU_R8(r13)
188 PPC_STL r9, SVCPU_R9(r13)
189 PPC_STL r10, SVCPU_R10(r13)
190 PPC_STL r11, SVCPU_R11(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200191
192 /* Restore R1/R2 so we can handle faults */
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000193 PPC_LL r1, HSTATE_HOST_R1(r13)
194 PPC_LL r2, HSTATE_HOST_R2(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200195
196 /* Save guest PC and MSR */
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000197#ifdef CONFIG_PPC64
198BEGIN_FTR_SECTION
Alexander Graf32c7dbf2012-05-10 03:58:50 +0200199 andi. r0, r12, 0x2
200 cmpwi cr1, r0, 0
Benjamin Herrenschmidta5d4f3a2011-04-05 14:20:31 +1000201 beq 1f
202 mfspr r3,SPRN_HSRR0
203 mfspr r4,SPRN_HSRR1
204 andi. r12,r12,0x3ffd
205 b 2f
Paul Mackerras969391c2011-06-29 00:26:11 +0000206END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000207#endif
Benjamin Herrenschmidta5d4f3a2011-04-05 14:20:31 +10002081: mfsrr0 r3
Alexander Graf07372792010-04-16 00:11:35 +0200209 mfsrr1 r4
Benjamin Herrenschmidta5d4f3a2011-04-05 14:20:31 +10002102:
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000211 PPC_STL r3, SVCPU_PC(r13)
212 PPC_STL r4, SVCPU_SHADOW_SRR1(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200213
214 /* Get scratch'ed off registers */
Paul Mackerras673b1892011-04-05 13:59:58 +1000215 GET_SCRATCH0(r9)
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000216 PPC_LL r8, HSTATE_SCRATCH0(r13)
217 lwz r7, HSTATE_SCRATCH1(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200218
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000219 PPC_STL r9, SVCPU_R13(r13)
220 PPC_STL r8, SVCPU_R12(r13)
221 stw r7, SVCPU_CR(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200222
223 /* Save more register state */
224
225 mfxer r5
226 mfdar r6
227 mfdsisr r7
228 mfctr r8
229 mflr r9
230
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000231 stw r5, SVCPU_XER(r13)
232 PPC_STL r6, SVCPU_FAULT_DAR(r13)
233 stw r7, SVCPU_FAULT_DSISR(r13)
234 PPC_STL r8, SVCPU_CTR(r13)
235 PPC_STL r9, SVCPU_LR(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200236
237 /*
238 * In order for us to easily get the last instruction,
239 * we got the #vmexit at, we exploit the fact that the
240 * virtual layout is still the same here, so we can just
241 * ld from the guest's PC address
242 */
243
244 /* We only load the last instruction when it's safe */
245 cmpwi r12, BOOK3S_INTERRUPT_DATA_STORAGE
246 beq ld_last_inst
247 cmpwi r12, BOOK3S_INTERRUPT_PROGRAM
248 beq ld_last_inst
Alexander Graf77e675a2011-08-08 16:11:36 +0200249 cmpwi r12, BOOK3S_INTERRUPT_SYSCALL
250 beq ld_last_prev_inst
Alexander Graf6fc55822010-04-20 02:49:49 +0200251 cmpwi r12, BOOK3S_INTERRUPT_ALIGNMENT
252 beq- ld_last_inst
Alexander Graf7ef4e982012-05-10 03:54:58 +0200253#ifdef CONFIG_PPC64
254BEGIN_FTR_SECTION
255 cmpwi r12, BOOK3S_INTERRUPT_H_EMUL_ASSIST
256 beq- ld_last_inst
257END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
258#endif
Alexander Graf07372792010-04-16 00:11:35 +0200259
260 b no_ld_last_inst
261
Alexander Graf77e675a2011-08-08 16:11:36 +0200262ld_last_prev_inst:
263 addi r3, r3, -4
264
Alexander Graf07372792010-04-16 00:11:35 +0200265ld_last_inst:
266 /* Save off the guest instruction we're at */
267
268 /* In case lwz faults */
269 li r0, KVM_INST_FETCH_FAILED
270
271#ifdef USE_QUICK_LAST_INST
272
273 /* Set guest mode to 'jump over instruction' so if lwz faults
274 * we'll just continue at the next IP. */
275 li r9, KVM_GUEST_MODE_SKIP
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000276 stb r9, HSTATE_IN_GUEST(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200277
278 /* 1) enable paging for data */
279 mfmsr r9
280 ori r11, r9, MSR_DR /* Enable paging for data */
281 mtmsr r11
282 sync
283 /* 2) fetch the instruction */
284 lwz r0, 0(r3)
285 /* 3) disable paging again */
286 mtmsr r9
287 sync
288
289#endif
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000290 stw r0, SVCPU_LAST_INST(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200291
292no_ld_last_inst:
293
294 /* Unset guest mode */
295 li r9, KVM_GUEST_MODE_NONE
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000296 stb r9, HSTATE_IN_GUEST(r13)
Alexander Graf07372792010-04-16 00:11:35 +0200297
298 /* Switch back to host MMU */
299 LOAD_HOST_SEGMENTS
300
Paul Mackerras02143942011-07-23 17:41:44 +1000301#ifdef CONFIG_PPC_BOOK3S_64
302
303 lbz r5, HSTATE_RESTORE_HID5(r13)
304 cmpwi r5, 0
305 beq no_dcbz32_off
306
307 li r4, 0
308 mfspr r5,SPRN_HID5
309 rldimi r5,r4,6,56
310 mtspr SPRN_HID5,r5
311
312no_dcbz32_off:
313
314#endif /* CONFIG_PPC_BOOK3S_64 */
315
316 /*
317 * For some interrupts, we need to call the real Linux
318 * handler, so it can do work for us. This has to happen
319 * as if the interrupt arrived from the kernel though,
320 * so let's fake it here where most state is restored.
321 *
322 * Having set up SRR0/1 with the address where we want
323 * to continue with relocation on (potentially in module
324 * space), we either just go straight there with rfi[d],
Alexander Graf56e13db2012-04-27 16:33:35 +0200325 * or we jump to an interrupt handler if there is an
326 * interrupt to be handled first. In the latter case,
327 * the rfi[d] at the end of the interrupt handler will
328 * get us back to where we want to continue.
Paul Mackerras02143942011-07-23 17:41:44 +1000329 */
330
Alexander Graf07372792010-04-16 00:11:35 +0200331 /* Register usage at this point:
332 *
333 * R1 = host R1
334 * R2 = host R2
Alexander Graf56e13db2012-04-27 16:33:35 +0200335 * R10 = raw exit handler id
Alexander Graf07372792010-04-16 00:11:35 +0200336 * R12 = exit handler id
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000337 * R13 = shadow vcpu (32-bit) or PACA (64-bit)
Alexander Graf07372792010-04-16 00:11:35 +0200338 * SVCPU.* = guest *
339 *
340 */
341
Paul Mackerras02143942011-07-23 17:41:44 +1000342 PPC_LL r6, HSTATE_HOST_MSR(r13)
Paul Mackerras3c42bf82011-06-29 00:20:58 +0000343 PPC_LL r8, HSTATE_VMHANDLER(r13)
Paul Mackerras02143942011-07-23 17:41:44 +1000344
Alexander Graf56e13db2012-04-27 16:33:35 +0200345#ifdef CONFIG_PPC64
346BEGIN_FTR_SECTION
Alexander Graf32c7dbf2012-05-10 03:58:50 +0200347 beq cr1, 1f
Alexander Graf56e13db2012-04-27 16:33:35 +0200348 mtspr SPRN_HSRR1, r6
349 mtspr SPRN_HSRR0, r8
350END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
351#endif
3521: /* Restore host msr -> SRR1 */
Paul Mackerras02143942011-07-23 17:41:44 +1000353 mtsrr1 r6
354 /* Load highmem handler address */
Alexander Graf07372792010-04-16 00:11:35 +0200355 mtsrr0 r8
356
Paul Mackerras02143942011-07-23 17:41:44 +1000357 /* RFI into the highmem handler, or jump to interrupt handler */
Alexander Graf56e13db2012-04-27 16:33:35 +0200358 cmpwi r12, BOOK3S_INTERRUPT_EXTERNAL
359 beqa BOOK3S_INTERRUPT_EXTERNAL
360 cmpwi r12, BOOK3S_INTERRUPT_DECREMENTER
361 beqa BOOK3S_INTERRUPT_DECREMENTER
362 cmpwi r12, BOOK3S_INTERRUPT_PERFMON
363 beqa BOOK3S_INTERRUPT_PERFMON
Paul Mackerras40688902014-01-08 21:25:36 +1100364 cmpwi r12, BOOK3S_INTERRUPT_DOORBELL
365 beqa BOOK3S_INTERRUPT_DOORBELL
Alexander Graf56e13db2012-04-27 16:33:35 +0200366
Alexander Graf07372792010-04-16 00:11:35 +0200367 RFI
368kvmppc_handler_trampoline_exit_end: