]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/powerpc/kernel/exceptions-64s.S
powerpc/64s/exception: machine check use correct cfar for late handler
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / kernel / exceptions-64s.S
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
0ebc4cda
BH
2/*
3 * This file contains the 64-bit "server" PowerPC variant
4 * of the low level exception handling including exception
5 * vectors, exception return, part of the slb and stab
6 * handling and other fixed offset specific things.
7 *
8 * This file is meant to be #included from head_64.S due to
25985edc 9 * position dependent assembly.
0ebc4cda
BH
10 *
11 * Most of this originates from head_64.S and thus has the same
12 * copyright history.
13 *
14 */
15
7230c564 16#include <asm/hw_irq.h>
8aa34ab8 17#include <asm/exception-64s.h>
46f52210 18#include <asm/ptrace.h>
7cba160a 19#include <asm/cpuidle.h>
da2bc464 20#include <asm/head-64.h>
8aa34ab8 21
0ebc4cda 22/*
57f26649
NP
23 * There are a few constraints to be concerned with.
24 * - Real mode exceptions code/data must be located at their physical location.
25 * - Virtual mode exceptions must be mapped at their 0xc000... location.
26 * - Fixed location code must not call directly beyond the __end_interrupts
27 * area when built with CONFIG_RELOCATABLE. LOAD_HANDLER / bctr sequence
28 * must be used.
29 * - LOAD_HANDLER targets must be within first 64K of physical 0 /
30 * virtual 0xc00...
31 * - Conditional branch targets must be within +/-32K of caller.
32 *
33 * "Virtual exceptions" run with relocation on (MSR_IR=1, MSR_DR=1), and
34 * therefore don't have to run in physically located code or rfid to
35 * virtual mode kernel code. However on relocatable kernels they do have
36 * to branch to KERNELBASE offset because the rest of the kernel (outside
37 * the exception vectors) may be located elsewhere.
38 *
39 * Virtual exceptions correspond with physical, except their entry points
40 * are offset by 0xc000000000000000 and also tend to get an added 0x4000
41 * offset applied. Virtual exceptions are enabled with the Alternate
42 * Interrupt Location (AIL) bit set in the LPCR. However this does not
43 * guarantee they will be delivered virtually. Some conditions (see the ISA)
44 * cause exceptions to be delivered in real mode.
45 *
46 * It's impossible to receive interrupts below 0x300 via AIL.
47 *
48 * KVM: None of the virtual exceptions are from the guest. Anything that
49 * escalated to HV=1 from HV=0 is delivered via real mode handlers.
50 *
51 *
0ebc4cda
BH
52 * We layout physical memory as follows:
53 * 0x0000 - 0x00ff : Secondary processor spin code
57f26649
NP
54 * 0x0100 - 0x18ff : Real mode pSeries interrupt vectors
55 * 0x1900 - 0x3fff : Real mode trampolines
56 * 0x4000 - 0x58ff : Relon (IR=1,DR=1) mode pSeries interrupt vectors
57 * 0x5900 - 0x6fff : Relon mode trampolines
0ebc4cda 58 * 0x7000 - 0x7fff : FWNMI data area
57f26649
NP
59 * 0x8000 - .... : Common interrupt handlers, remaining early
60 * setup code, rest of kernel.
e0319829
NP
61 *
62 * We could reclaim 0x4000-0x42ff for real mode trampolines if the space
63 * is necessary. Until then it's more consistent to explicitly put VIRT_NONE
64 * vectors there.
57f26649
NP
65 */
66OPEN_FIXED_SECTION(real_vectors, 0x0100, 0x1900)
67OPEN_FIXED_SECTION(real_trampolines, 0x1900, 0x4000)
68OPEN_FIXED_SECTION(virt_vectors, 0x4000, 0x5900)
69OPEN_FIXED_SECTION(virt_trampolines, 0x5900, 0x7000)
70#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
71/*
72 * Data area reserved for FWNMI option.
73 * This address (0x7000) is fixed by the RPA.
74 * pseries and powernv need to keep the whole page from
75 * 0x7000 to 0x8000 free for use by the firmware
0ebc4cda 76 */
57f26649
NP
77ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
78OPEN_TEXT_SECTION(0x8000)
79#else
80OPEN_TEXT_SECTION(0x7000)
81#endif
82
83USE_FIXED_SECTION(real_vectors)
84
0ebc4cda
BH
85/*
86 * This is the start of the interrupt handlers for pSeries
87 * This code runs with relocation off.
88 * Code from here to __end_interrupts gets copied down to real
89 * address 0x100 when we are running a relocatable kernel.
90 * Therefore any relative branches in this section must only
91 * branch to labels in this section.
92 */
0ebc4cda
BH
93 .globl __start_interrupts
94__start_interrupts:
95
e0319829 96/* No virt vectors corresponding with 0x0..0x100 */
1a6822d1 97EXC_VIRT_NONE(0x4000, 0x100)
e0319829 98
fb479e44 99
948cf67c 100#ifdef CONFIG_PPC_P7_NAP
fb479e44
NP
101 /*
102 * If running native on arch 2.06 or later, check if we are waking up
ba6d334a
BH
103 * from nap/sleep/winkle, and branch to idle handler. This tests SRR1
104 * bits 46:47. A non-0 value indicates that we are coming from a power
105 * saving state. The idle wakeup handler initially runs in real mode,
106 * but we branch to the 0xc000... address so we can turn on relocation
107 * with mtmsr.
948cf67c 108 */
fb479e44
NP
109#define IDLETEST(n) \
110 BEGIN_FTR_SECTION ; \
111 mfspr r10,SPRN_SRR1 ; \
112 rlwinm. r10,r10,47-31,30,31 ; \
113 beq- 1f ; \
114 cmpwi cr3,r10,2 ; \
b51351e2 115 BRANCH_TO_C000(r10, system_reset_idle_common) ; \
fb479e44 1161: \
6de6638b 117 KVMTEST_PR(n) ; \
fb479e44
NP
118 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
119#else
120#define IDLETEST NOTEST
121#endif
371fefd6 122
1a6822d1 123EXC_REAL_BEGIN(system_reset, 0x100, 0x100)
fb479e44 124 SET_SCRATCH0(r13)
c4f3b52c
NP
125 /*
126 * MSR_RI is not enabled, because PACA_EXNMI and nmi stack is
127 * being used, so a nested NMI exception would corrupt it.
128 */
129 EXCEPTION_PROLOG_PSERIES_NORI(PACA_EXNMI, system_reset_common, EXC_STD,
fb479e44
NP
130 IDLETEST, 0x100)
131
1a6822d1
NP
132EXC_REAL_END(system_reset, 0x100, 0x100)
133EXC_VIRT_NONE(0x4100, 0x100)
6de6638b 134TRAMP_KVM(PACA_EXNMI, 0x100)
fb479e44
NP
135
136#ifdef CONFIG_PPC_P7_NAP
137EXC_COMMON_BEGIN(system_reset_idle_common)
9d292501 138 mfspr r12,SPRN_SRR1
bf0153c1 139 b pnv_powersave_wakeup
371fefd6
PM
140#endif
141
0e789d96
NP
142/*
143 * Set IRQS_ALL_DISABLED unconditionally so arch_irqs_disabled does
144 * the right thing. We do not want to reconcile because that goes
145 * through irq tracing which we don't want in NMI.
146 *
147 * Save PACAIRQHAPPENED because some code will do a hard disable
148 * (e.g., xmon). So we want to restore this back to where it was
149 * when we return. DAR is unused in the stack, so save it there.
150 */
151#define ADD_RECONCILE_NMI \
152 li r10,IRQS_ALL_DISABLED; \
153 stb r10,PACAIRQSOFTMASK(r13); \
154 lbz r10,PACAIRQHAPPENED(r13); \
155 std r10,_DAR(r1)
156
a3d96f70 157EXC_COMMON_BEGIN(system_reset_common)
c4f3b52c
NP
158 /*
159 * Increment paca->in_nmi then enable MSR_RI. SLB or MCE will be able
160 * to recover, but nested NMI will notice in_nmi and not recover
161 * because of the use of the NMI stack. in_nmi reentrancy is tested in
162 * system_reset_exception.
163 */
164 lhz r10,PACA_IN_NMI(r13)
165 addi r10,r10,1
166 sth r10,PACA_IN_NMI(r13)
167 li r10,MSR_RI
168 mtmsrd r10,1
aca79d2b 169
b1ee8a3d
NP
170 mr r10,r1
171 ld r1,PACA_NMI_EMERG_SP(r13)
172 subi r1,r1,INT_FRAME_SIZE
173 EXCEPTION_COMMON_NORET_STACK(PACA_EXNMI, 0x100,
174 system_reset, system_reset_exception,
0e789d96
NP
175 ADD_NVGPRS;ADD_RECONCILE_NMI)
176
177 /* This (and MCE) can be simplified with mtmsrd L=1 */
178 /* Clear MSR_RI before setting SRR0 and SRR1. */
179 li r0,MSR_RI
180 mfmsr r9
181 andc r9,r9,r0
182 mtmsrd r9,1
c4f3b52c
NP
183
184 /*
0e789d96 185 * MSR_RI is clear, now we can decrement paca->in_nmi.
c4f3b52c
NP
186 */
187 lhz r10,PACA_IN_NMI(r13)
188 subi r10,r10,1
189 sth r10,PACA_IN_NMI(r13)
190
0e789d96
NP
191 /*
192 * Restore soft mask settings.
193 */
194 ld r10,_DAR(r1)
195 stb r10,PACAIRQHAPPENED(r13)
196 ld r10,SOFTE(r1)
197 stb r10,PACAIRQSOFTMASK(r13)
198
199 /*
200 * Keep below code in synch with MACHINE_CHECK_HANDLER_WINDUP.
201 * Should share common bits...
202 */
203
204 /* Move original SRR0 and SRR1 into the respective regs */
205 ld r9,_MSR(r1)
206 mtspr SPRN_SRR1,r9
207 ld r3,_NIP(r1)
208 mtspr SPRN_SRR0,r3
209 ld r9,_CTR(r1)
210 mtctr r9
211 ld r9,_XER(r1)
212 mtxer r9
213 ld r9,_LINK(r1)
214 mtlr r9
215 REST_GPR(0, r1)
216 REST_8GPRS(2, r1)
217 REST_GPR(10, r1)
218 ld r11,_CCR(r1)
219 mtcr r11
220 REST_GPR(11, r1)
221 REST_2GPRS(12, r1)
222 /* restore original r1. */
223 ld r1,GPR1(r1)
224 RFI_TO_USER_OR_KERNEL
582baf44
NP
225
226#ifdef CONFIG_PPC_PSERIES
227/*
228 * Vectors for the FWNMI option. Share common code.
229 */
230TRAMP_REAL_BEGIN(system_reset_fwnmi)
231 SET_SCRATCH0(r13) /* save r13 */
c4f3b52c
NP
232 /* See comment at system_reset exception */
233 EXCEPTION_PROLOG_PSERIES_NORI(PACA_EXNMI, system_reset_common,
234 EXC_STD, NOTEST, 0x100)
582baf44
NP
235#endif /* CONFIG_PPC_PSERIES */
236
0ebc4cda 237
1a6822d1 238EXC_REAL_BEGIN(machine_check, 0x200, 0x100)
b01c8b54
PM
239 /* This is moved out of line as it can be patched by FW, but
240 * some code path might still want to branch into the original
241 * vector
242 */
1707dd16
PM
243 SET_SCRATCH0(r13) /* save r13 */
244 EXCEPTION_PROLOG_0(PACA_EXMC)
1e9b4507 245BEGIN_FTR_SECTION
2513767d 246 b machine_check_powernv_early
1e9b4507 247FTR_SECTION_ELSE
1707dd16 248 b machine_check_pSeries_0
1e9b4507 249ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1a6822d1
NP
250EXC_REAL_END(machine_check, 0x200, 0x100)
251EXC_VIRT_NONE(0x4200, 0x100)
afcf0095
NP
252TRAMP_REAL_BEGIN(machine_check_powernv_early)
253BEGIN_FTR_SECTION
254 EXCEPTION_PROLOG_1(PACA_EXMC, NOTEST, 0x200)
255 /*
256 * Register contents:
257 * R13 = PACA
258 * R9 = CR
259 * Original R9 to R13 is saved on PACA_EXMC
260 *
261 * Switch to mc_emergency stack and handle re-entrancy (we limit
262 * the nested MCE upto level 4 to avoid stack overflow).
263 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
264 *
265 * We use paca->in_mce to check whether this is the first entry or
266 * nested machine check. We increment paca->in_mce to track nested
267 * machine checks.
268 *
269 * If this is the first entry then set stack pointer to
270 * paca->mc_emergency_sp, otherwise r1 is already pointing to
271 * stack frame on mc_emergency stack.
272 *
273 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
274 * checkstop if we get another machine check exception before we do
275 * rfid with MSR_ME=1.
1945bc45
NP
276 *
277 * This interrupt can wake directly from idle. If that is the case,
278 * the machine check is handled then the idle wakeup code is called
279 * to restore state. In that case, the POWER9 DD1 idle PACA workaround
280 * is not applied in the early machine check code, which will cause
281 * bugs.
afcf0095
NP
282 */
283 mr r11,r1 /* Save r1 */
284 lhz r10,PACA_IN_MCE(r13)
285 cmpwi r10,0 /* Are we in nested machine check */
286 bne 0f /* Yes, we are. */
287 /* First machine check entry */
288 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
2890: subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
290 addi r10,r10,1 /* increment paca->in_mce */
291 sth r10,PACA_IN_MCE(r13)
292 /* Limit nested MCE to level 4 to avoid stack overflow */
ba41e1e1 293 cmpwi r10,MAX_MCE_DEPTH
afcf0095
NP
294 bgt 2f /* Check if we hit limit of 4 */
295 std r11,GPR1(r1) /* Save r1 on the stack. */
296 std r11,0(r1) /* make stack chain pointer */
297 mfspr r11,SPRN_SRR0 /* Save SRR0 */
298 std r11,_NIP(r1)
299 mfspr r11,SPRN_SRR1 /* Save SRR1 */
300 std r11,_MSR(r1)
301 mfspr r11,SPRN_DAR /* Save DAR */
302 std r11,_DAR(r1)
303 mfspr r11,SPRN_DSISR /* Save DSISR */
304 std r11,_DSISR(r1)
305 std r9,_CCR(r1) /* Save CR in stackframe */
306 /* Save r9 through r13 from EXMC save area to stack frame. */
307 EXCEPTION_PROLOG_COMMON_2(PACA_EXMC)
308 mfmsr r11 /* get MSR value */
309 ori r11,r11,MSR_ME /* turn on ME bit */
310 ori r11,r11,MSR_RI /* turn on RI bit */
311 LOAD_HANDLER(r12, machine_check_handle_early)
3121: mtspr SPRN_SRR0,r12
313 mtspr SPRN_SRR1,r11
222f20f1 314 RFI_TO_KERNEL
afcf0095
NP
315 b . /* prevent speculative execution */
3162:
317 /* Stack overflow. Stay on emergency stack and panic.
318 * Keep the ME bit off while panic-ing, so that if we hit
319 * another machine check we checkstop.
320 */
321 addi r1,r1,INT_FRAME_SIZE /* go back to previous stack frame */
322 ld r11,PACAKMSR(r13)
323 LOAD_HANDLER(r12, unrecover_mce)
324 li r10,MSR_ME
325 andc r11,r11,r10 /* Turn off MSR_ME */
326 b 1b
327 b . /* prevent speculative execution */
328END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
329
330TRAMP_REAL_BEGIN(machine_check_pSeries)
331 .globl machine_check_fwnmi
332machine_check_fwnmi:
333 SET_SCRATCH0(r13) /* save r13 */
334 EXCEPTION_PROLOG_0(PACA_EXMC)
335machine_check_pSeries_0:
336 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST_PR, 0x200)
337 /*
83a980f7
NP
338 * MSR_RI is not enabled, because PACA_EXMC is being used, so a
339 * nested machine check corrupts it. machine_check_common enables
340 * MSR_RI.
afcf0095 341 */
83a980f7 342 EXCEPTION_PROLOG_PSERIES_1_NORI(machine_check_common, EXC_STD)
afcf0095
NP
343
344TRAMP_KVM_SKIP(PACA_EXMC, 0x200)
345
346EXC_COMMON_BEGIN(machine_check_common)
347 /*
348 * Machine check is different because we use a different
349 * save area: PACA_EXMC instead of PACA_EXGEN.
350 */
351 mfspr r10,SPRN_DAR
352 std r10,PACA_EXMC+EX_DAR(r13)
353 mfspr r10,SPRN_DSISR
354 stw r10,PACA_EXMC+EX_DSISR(r13)
355 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
356 FINISH_NAP
357 RECONCILE_IRQ_STATE(r10, r11)
358 ld r3,PACA_EXMC+EX_DAR(r13)
359 lwz r4,PACA_EXMC+EX_DSISR(r13)
360 /* Enable MSR_RI when finished with PACA_EXMC */
361 li r10,MSR_RI
362 mtmsrd r10,1
363 std r3,_DAR(r1)
364 std r4,_DSISR(r1)
365 bl save_nvgprs
366 addi r3,r1,STACK_FRAME_OVERHEAD
367 bl machine_check_exception
368 b ret_from_except
369
370#define MACHINE_CHECK_HANDLER_WINDUP \
371 /* Clear MSR_RI before setting SRR0 and SRR1. */\
372 li r0,MSR_RI; \
373 mfmsr r9; /* get MSR value */ \
374 andc r9,r9,r0; \
375 mtmsrd r9,1; /* Clear MSR_RI */ \
376 /* Move original SRR0 and SRR1 into the respective regs */ \
377 ld r9,_MSR(r1); \
378 mtspr SPRN_SRR1,r9; \
379 ld r3,_NIP(r1); \
380 mtspr SPRN_SRR0,r3; \
381 ld r9,_CTR(r1); \
382 mtctr r9; \
383 ld r9,_XER(r1); \
384 mtxer r9; \
385 ld r9,_LINK(r1); \
386 mtlr r9; \
387 REST_GPR(0, r1); \
388 REST_8GPRS(2, r1); \
389 REST_GPR(10, r1); \
390 ld r11,_CCR(r1); \
391 mtcr r11; \
392 /* Decrement paca->in_mce. */ \
393 lhz r12,PACA_IN_MCE(r13); \
394 subi r12,r12,1; \
395 sth r12,PACA_IN_MCE(r13); \
396 REST_GPR(11, r1); \
397 REST_2GPRS(12, r1); \
398 /* restore original r1. */ \
399 ld r1,GPR1(r1)
400
1945bc45
NP
401#ifdef CONFIG_PPC_P7_NAP
402/*
403 * This is an idle wakeup. Low level machine check has already been
404 * done. Queue the event then call the idle code to do the wake up.
405 */
406EXC_COMMON_BEGIN(machine_check_idle_common)
407 bl machine_check_queue_event
408
409 /*
410 * We have not used any non-volatile GPRs here, and as a rule
411 * most exception code including machine check does not.
412 * Therefore PACA_NAPSTATELOST does not need to be set. Idle
413 * wakeup will restore volatile registers.
414 *
415 * Load the original SRR1 into r3 for pnv_powersave_wakeup_mce.
416 *
417 * Then decrement MCE nesting after finishing with the stack.
418 */
419 ld r3,_MSR(r1)
420
421 lhz r11,PACA_IN_MCE(r13)
422 subi r11,r11,1
423 sth r11,PACA_IN_MCE(r13)
424
425 /* Turn off the RI bit because SRR1 is used by idle wakeup code. */
426 /* Recoverability could be improved by reducing the use of SRR1. */
427 li r11,0
428 mtmsrd r11,1
429
430 b pnv_powersave_wakeup_mce
431#endif
afcf0095
NP
432 /*
433 * Handle machine check early in real mode. We come here with
434 * ME=1, MMU (IR=0 and DR=0) off and using MC emergency stack.
435 */
436EXC_COMMON_BEGIN(machine_check_handle_early)
437 std r0,GPR0(r1) /* Save r0 */
438 EXCEPTION_PROLOG_COMMON_3(0x200)
439 bl save_nvgprs
440 addi r3,r1,STACK_FRAME_OVERHEAD
441 bl machine_check_early
442 std r3,RESULT(r1) /* Save result */
443 ld r12,_MSR(r1)
1945bc45 444
afcf0095
NP
445#ifdef CONFIG_PPC_P7_NAP
446 /*
447 * Check if thread was in power saving mode. We come here when any
448 * of the following is true:
449 * a. thread wasn't in power saving mode
450 * b. thread was in power saving mode with no state loss,
451 * supervisor state loss or hypervisor state loss.
452 *
453 * Go back to nap/sleep/winkle mode again if (b) is true.
454 */
1945bc45
NP
455 BEGIN_FTR_SECTION
456 rlwinm. r11,r12,47-31,30,31
6102c005 457 bne machine_check_idle_common
1945bc45 458 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
afcf0095 459#endif
1945bc45 460
afcf0095
NP
461 /*
462 * Check if we are coming from hypervisor userspace. If yes then we
463 * continue in host kernel in V mode to deliver the MC event.
464 */
465 rldicl. r11,r12,4,63 /* See if MC hit while in HV mode. */
466 beq 5f
467 andi. r11,r12,MSR_PR /* See if coming from user. */
468 bne 9f /* continue in V mode if we are. */
469
4705:
471#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
472 /*
473 * We are coming from kernel context. Check if we are coming from
474 * guest. if yes, then we can continue. We will fall through
475 * do_kvm_200->kvmppc_interrupt to deliver the MC event to guest.
476 */
477 lbz r11,HSTATE_IN_GUEST(r13)
478 cmpwi r11,0 /* Check if coming from guest */
479 bne 9f /* continue if we are. */
480#endif
481 /*
482 * At this point we are not sure about what context we come from.
483 * Queue up the MCE event and return from the interrupt.
484 * But before that, check if this is an un-recoverable exception.
485 * If yes, then stay on emergency stack and panic.
486 */
487 andi. r11,r12,MSR_RI
488 bne 2f
4891: mfspr r11,SPRN_SRR0
490 LOAD_HANDLER(r10,unrecover_mce)
491 mtspr SPRN_SRR0,r10
492 ld r10,PACAKMSR(r13)
493 /*
494 * We are going down. But there are chances that we might get hit by
495 * another MCE during panic path and we may run into unstable state
496 * with no way out. Hence, turn ME bit off while going down, so that
497 * when another MCE is hit during panic path, system will checkstop
498 * and hypervisor will get restarted cleanly by SP.
499 */
500 li r3,MSR_ME
501 andc r10,r10,r3 /* Turn off MSR_ME */
502 mtspr SPRN_SRR1,r10
222f20f1 503 RFI_TO_KERNEL
afcf0095
NP
504 b .
5052:
506 /*
507 * Check if we have successfully handled/recovered from error, if not
508 * then stay on emergency stack and panic.
509 */
510 ld r3,RESULT(r1) /* Load result */
511 cmpdi r3,0 /* see if we handled MCE successfully */
512
513 beq 1b /* if !handled then panic */
514 /*
515 * Return from MC interrupt.
516 * Queue up the MCE event so that we can log it later, while
517 * returning from kernel or opal call.
518 */
519 bl machine_check_queue_event
520 MACHINE_CHECK_HANDLER_WINDUP
222f20f1 521 RFI_TO_USER_OR_KERNEL
afcf0095
NP
5229:
523 /* Deliver the machine check to host kernel in V mode. */
c4903bea
NP
524BEGIN_FTR_SECTION
525 ld r10,ORIG_GPR3(r1)
526 mtspr SPRN_CFAR,r10
527END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
afcf0095
NP
528 MACHINE_CHECK_HANDLER_WINDUP
529 b machine_check_pSeries
530
531EXC_COMMON_BEGIN(unrecover_mce)
532 /* Invoke machine_check_exception to print MCE event and panic. */
533 addi r3,r1,STACK_FRAME_OVERHEAD
534 bl machine_check_exception
535 /*
536 * We will not reach here. Even if we did, there is no way out. Call
537 * unrecoverable_exception and die.
538 */
5391: addi r3,r1,STACK_FRAME_OVERHEAD
540 bl unrecoverable_exception
541 b 1b
542
0ebc4cda 543
1a6822d1
NP
544EXC_REAL(data_access, 0x300, 0x80)
545EXC_VIRT(data_access, 0x4300, 0x80, 0x300)
80795e6c
NP
546TRAMP_KVM_SKIP(PACA_EXGEN, 0x300)
547
548EXC_COMMON_BEGIN(data_access_common)
549 /*
550 * Here r13 points to the paca, r9 contains the saved CR,
551 * SRR0 and SRR1 are saved in r11 and r12,
552 * r9 - r13 are saved in paca->exgen.
553 */
554 mfspr r10,SPRN_DAR
555 std r10,PACA_EXGEN+EX_DAR(r13)
556 mfspr r10,SPRN_DSISR
557 stw r10,PACA_EXGEN+EX_DSISR(r13)
558 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
559 RECONCILE_IRQ_STATE(r10, r11)
560 ld r12,_MSR(r1)
561 ld r3,PACA_EXGEN+EX_DAR(r13)
562 lwz r4,PACA_EXGEN+EX_DSISR(r13)
563 li r5,0x300
564 std r3,_DAR(r1)
565 std r4,_DSISR(r1)
566BEGIN_MMU_FTR_SECTION
567 b do_hash_page /* Try to handle as hpte fault */
568MMU_FTR_SECTION_ELSE
569 b handle_page_fault
570ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
571
0ebc4cda 572
1a6822d1 573EXC_REAL_BEGIN(data_access_slb, 0x380, 0x80)
673b189a 574 SET_SCRATCH0(r13)
1707dd16 575 EXCEPTION_PROLOG_0(PACA_EXSLB)
da2bc464 576 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
4d7cd3b9 577 mr r12,r3 /* save r3 */
0ebc4cda 578 mfspr r3,SPRN_DAR
4d7cd3b9 579 mfspr r11,SPRN_SRR1
f0f558b1 580 crset 4*cr6+eq
442b6e8e 581 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 582EXC_REAL_END(data_access_slb, 0x380, 0x80)
0ebc4cda 583
1a6822d1 584EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x80)
2b9af6e4
NP
585 SET_SCRATCH0(r13)
586 EXCEPTION_PROLOG_0(PACA_EXSLB)
587 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
4d7cd3b9 588 mr r12,r3 /* save r3 */
2b9af6e4 589 mfspr r3,SPRN_DAR
4d7cd3b9 590 mfspr r11,SPRN_SRR1
2b9af6e4 591 crset 4*cr6+eq
442b6e8e 592 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 593EXC_VIRT_END(data_access_slb, 0x4380, 0x80)
2b9af6e4
NP
594TRAMP_KVM_SKIP(PACA_EXSLB, 0x380)
595
596
1a6822d1
NP
597EXC_REAL(instruction_access, 0x400, 0x80)
598EXC_VIRT(instruction_access, 0x4400, 0x80, 0x400)
27ce77df
NP
599TRAMP_KVM(PACA_EXGEN, 0x400)
600
601EXC_COMMON_BEGIN(instruction_access_common)
602 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
603 RECONCILE_IRQ_STATE(r10, r11)
604 ld r12,_MSR(r1)
605 ld r3,_NIP(r1)
475b581f 606 andis. r4,r12,DSISR_SRR1_MATCH_64S@h
27ce77df
NP
607 li r5,0x400
608 std r3,_DAR(r1)
609 std r4,_DSISR(r1)
610BEGIN_MMU_FTR_SECTION
611 b do_hash_page /* Try to handle as hpte fault */
612MMU_FTR_SECTION_ELSE
613 b handle_page_fault
614ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
615
0ebc4cda 616
1a6822d1 617EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x80)
673b189a 618 SET_SCRATCH0(r13)
1707dd16 619 EXCEPTION_PROLOG_0(PACA_EXSLB)
da2bc464 620 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
4d7cd3b9 621 mr r12,r3 /* save r3 */
0ebc4cda 622 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
4d7cd3b9 623 mfspr r11,SPRN_SRR1
f0f558b1 624 crclr 4*cr6+eq
442b6e8e 625 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 626EXC_REAL_END(instruction_access_slb, 0x480, 0x80)
0ebc4cda 627
1a6822d1 628EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x80)
8d04631a
NP
629 SET_SCRATCH0(r13)
630 EXCEPTION_PROLOG_0(PACA_EXSLB)
631 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
4d7cd3b9 632 mr r12,r3 /* save r3 */
8d04631a 633 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
4d7cd3b9 634 mfspr r11,SPRN_SRR1
8d04631a 635 crclr 4*cr6+eq
442b6e8e 636 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 637EXC_VIRT_END(instruction_access_slb, 0x4480, 0x80)
8d04631a
NP
638TRAMP_KVM(PACA_EXSLB, 0x480)
639
640
442b6e8e
ME
641/*
642 * This handler is used by the 0x380 and 0x480 SLB miss interrupts, as well as
643 * the virtual mode 0x4380 and 0x4480 interrupts if AIL is enabled.
644 */
645EXC_COMMON_BEGIN(slb_miss_common)
8d04631a
NP
646 /*
647 * r13 points to the PACA, r9 contains the saved CR,
4d7cd3b9
NP
648 * r12 contains the saved r3,
649 * r11 contain the saved SRR1, SRR0 is still ready for return
8d04631a
NP
650 * r3 has the faulting address
651 * r9 - r13 are saved in paca->exslb.
8d04631a
NP
652 * cr6.eq is set for a D-SLB miss, clear for a I-SLB miss
653 * We assume we aren't going to take any exceptions during this
654 * procedure.
655 */
656 mflr r10
8d04631a
NP
657 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
658 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
8d04631a 659
c7305645
NP
660 andi. r9,r11,MSR_PR // Check for exception from userspace
661 cmpdi cr4,r9,MSR_PR // And save the result in CR4 for later
662
4d7cd3b9
NP
663 /*
664 * Test MSR_RI before calling slb_allocate_realmode, because the
665 * MSR in r11 gets clobbered. However we still want to allocate
666 * SLB in case MSR_RI=0, to minimise the risk of getting stuck in
667 * recursive SLB faults. So use cr5 for this, which is preserved.
668 */
669 andi. r11,r11,MSR_RI /* check for unrecoverable exception */
670 cmpdi cr5,r11,MSR_RI
671
8d04631a 672 crset 4*cr0+eq
4e003747 673#ifdef CONFIG_PPC_BOOK3S_64
8d04631a 674BEGIN_MMU_FTR_SECTION
fd88b945 675 bl slb_allocate
8d04631a
NP
676END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_RADIX)
677#endif
678
679 ld r10,PACA_EXSLB+EX_LR(r13)
8d04631a
NP
680 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
681 mtlr r10
682
7c28f048 683 beq- 8f /* if bad address, make full stack frame */
8d04631a 684
4d7cd3b9 685 bne- cr5,2f /* if unrecoverable exception, oops */
8d04631a
NP
686
687 /* All done -- return from exception. */
688
c7305645
NP
689 bne cr4,1f /* returning to kernel */
690
8d04631a 691 mtcrf 0x80,r9
c7305645 692 mtcrf 0x08,r9 /* MSR[PR] indication is in cr4 */
4d7cd3b9 693 mtcrf 0x04,r9 /* MSR[RI] indication is in cr5 */
8d04631a
NP
694 mtcrf 0x02,r9 /* I/D indication is in cr6 */
695 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
8d04631a 696
fe5482c0 697 RESTORE_CTR(r9, PACA_EXSLB)
8d04631a 698 RESTORE_PPR_PACA(PACA_EXSLB, r9)
4d7cd3b9 699 mr r3,r12
8d04631a
NP
700 ld r9,PACA_EXSLB+EX_R9(r13)
701 ld r10,PACA_EXSLB+EX_R10(r13)
702 ld r11,PACA_EXSLB+EX_R11(r13)
703 ld r12,PACA_EXSLB+EX_R12(r13)
704 ld r13,PACA_EXSLB+EX_R13(r13)
c7305645 705 RFI_TO_USER
8d04631a 706 b . /* prevent speculative execution */
c7305645 7071:
c7305645
NP
708 mtcrf 0x80,r9
709 mtcrf 0x08,r9 /* MSR[PR] indication is in cr4 */
710 mtcrf 0x04,r9 /* MSR[RI] indication is in cr5 */
711 mtcrf 0x02,r9 /* I/D indication is in cr6 */
712 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
c7305645
NP
713
714 RESTORE_CTR(r9, PACA_EXSLB)
715 RESTORE_PPR_PACA(PACA_EXSLB, r9)
716 mr r3,r12
717 ld r9,PACA_EXSLB+EX_R9(r13)
718 ld r10,PACA_EXSLB+EX_R10(r13)
719 ld r11,PACA_EXSLB+EX_R11(r13)
720 ld r12,PACA_EXSLB+EX_R12(r13)
721 ld r13,PACA_EXSLB+EX_R13(r13)
722 RFI_TO_KERNEL
723 b . /* prevent speculative execution */
724
8d04631a 725
7c28f048 7262: std r3,PACA_EXSLB+EX_DAR(r13)
4d7cd3b9 727 mr r3,r12
7c28f048 728 mfspr r11,SPRN_SRR0
4d7cd3b9 729 mfspr r12,SPRN_SRR1
8d04631a
NP
730 LOAD_HANDLER(r10,unrecov_slb)
731 mtspr SPRN_SRR0,r10
732 ld r10,PACAKMSR(r13)
733 mtspr SPRN_SRR1,r10
222f20f1 734 RFI_TO_KERNEL
8d04631a
NP
735 b .
736
7c28f048 7378: std r3,PACA_EXSLB+EX_DAR(r13)
4d7cd3b9 738 mr r3,r12
7c28f048 739 mfspr r11,SPRN_SRR0
4d7cd3b9 740 mfspr r12,SPRN_SRR1
8d04631a
NP
741 LOAD_HANDLER(r10,bad_addr_slb)
742 mtspr SPRN_SRR0,r10
743 ld r10,PACAKMSR(r13)
744 mtspr SPRN_SRR1,r10
222f20f1 745 RFI_TO_KERNEL
8d04631a
NP
746 b .
747
748EXC_COMMON_BEGIN(unrecov_slb)
749 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
750 RECONCILE_IRQ_STATE(r10, r11)
751 bl save_nvgprs
7521: addi r3,r1,STACK_FRAME_OVERHEAD
753 bl unrecoverable_exception
754 b 1b
755
756EXC_COMMON_BEGIN(bad_addr_slb)
757 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXSLB)
758 RECONCILE_IRQ_STATE(r10, r11)
759 ld r3, PACA_EXSLB+EX_DAR(r13)
760 std r3, _DAR(r1)
761 beq cr6, 2f
ada7507d 762 li r10, 0x481 /* fix trap number for I-SLB miss */
8d04631a
NP
763 std r10, _TRAP(r1)
7642: bl save_nvgprs
765 addi r3, r1, STACK_FRAME_OVERHEAD
766 bl slb_miss_bad_addr
767 b ret_from_except
768
1a6822d1 769EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x100)
b3e6b5df 770 .globl hardware_interrupt_hv;
b3e6b5df 771hardware_interrupt_hv:
a5d4f3ad 772 BEGIN_FTR_SECTION
da2bc464 773 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
b01c8b54 774 EXC_HV, SOFTEN_TEST_HV)
de56a948 775 FTR_SECTION_ELSE
da2bc464 776 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
31a40e2b 777 EXC_STD, SOFTEN_TEST_PR)
969391c5 778 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
1a6822d1 779EXC_REAL_END(hardware_interrupt, 0x500, 0x100)
da2bc464 780
1a6822d1 781EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x100)
c138e588
NP
782 .globl hardware_interrupt_relon_hv;
783hardware_interrupt_relon_hv:
784 BEGIN_FTR_SECTION
785 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_HV, SOFTEN_TEST_HV)
786 FTR_SECTION_ELSE
787 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_STD, SOFTEN_TEST_PR)
788 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1a6822d1 789EXC_VIRT_END(hardware_interrupt, 0x4500, 0x100)
c138e588 790
7ede5317
NP
791TRAMP_KVM(PACA_EXGEN, 0x500)
792TRAMP_KVM_HV(PACA_EXGEN, 0x500)
c138e588
NP
793EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
794
795
1a6822d1
NP
796EXC_REAL(alignment, 0x600, 0x100)
797EXC_VIRT(alignment, 0x4600, 0x100, 0x600)
da2bc464 798TRAMP_KVM(PACA_EXGEN, 0x600)
f9aa6714
NP
799EXC_COMMON_BEGIN(alignment_common)
800 mfspr r10,SPRN_DAR
801 std r10,PACA_EXGEN+EX_DAR(r13)
802 mfspr r10,SPRN_DSISR
803 stw r10,PACA_EXGEN+EX_DSISR(r13)
804 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
805 ld r3,PACA_EXGEN+EX_DAR(r13)
806 lwz r4,PACA_EXGEN+EX_DSISR(r13)
807 std r3,_DAR(r1)
808 std r4,_DSISR(r1)
809 bl save_nvgprs
810 RECONCILE_IRQ_STATE(r10, r11)
811 addi r3,r1,STACK_FRAME_OVERHEAD
812 bl alignment_exception
813 b ret_from_except
814
da2bc464 815
1a6822d1
NP
816EXC_REAL(program_check, 0x700, 0x100)
817EXC_VIRT(program_check, 0x4700, 0x100, 0x700)
da2bc464 818TRAMP_KVM(PACA_EXGEN, 0x700)
11e87346 819EXC_COMMON_BEGIN(program_check_common)
265e60a1
CB
820 /*
821 * It's possible to receive a TM Bad Thing type program check with
822 * userspace register values (in particular r1), but with SRR1 reporting
823 * that we came from the kernel. Normally that would confuse the bad
824 * stack logic, and we would report a bad kernel stack pointer. Instead
825 * we switch to the emergency stack if we're taking a TM Bad Thing from
826 * the kernel.
827 */
828 li r10,MSR_PR /* Build a mask of MSR_PR .. */
829 oris r10,r10,0x200000@h /* .. and SRR1_PROGTM */
830 and r10,r10,r12 /* Mask SRR1 with that. */
831 srdi r10,r10,8 /* Shift it so we can compare */
832 cmpldi r10,(0x200000 >> 8) /* .. with an immediate. */
833 bne 1f /* If != go to normal path. */
834
835 /* SRR1 had PR=0 and SRR1_PROGTM=1, so use the emergency stack */
836 andi. r10,r12,MSR_PR; /* Set CR0 correctly for label */
837 /* 3 in EXCEPTION_PROLOG_COMMON */
838 mr r10,r1 /* Save r1 */
839 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
840 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
841 b 3f /* Jump into the macro !! */
8421: EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
11e87346
NP
843 bl save_nvgprs
844 RECONCILE_IRQ_STATE(r10, r11)
845 addi r3,r1,STACK_FRAME_OVERHEAD
846 bl program_check_exception
847 b ret_from_except
848
b01c8b54 849
1a6822d1
NP
850EXC_REAL(fp_unavailable, 0x800, 0x100)
851EXC_VIRT(fp_unavailable, 0x4800, 0x100, 0x800)
da2bc464 852TRAMP_KVM(PACA_EXGEN, 0x800)
c78d9b97
NP
853EXC_COMMON_BEGIN(fp_unavailable_common)
854 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
855 bne 1f /* if from user, just load it up */
856 bl save_nvgprs
857 RECONCILE_IRQ_STATE(r10, r11)
858 addi r3,r1,STACK_FRAME_OVERHEAD
859 bl kernel_fp_unavailable_exception
860 BUG_OPCODE
8611:
862#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
863BEGIN_FTR_SECTION
864 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
865 * transaction), go do TM stuff
866 */
867 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
868 bne- 2f
869END_FTR_SECTION_IFSET(CPU_FTR_TM)
870#endif
871 bl load_up_fpu
872 b fast_exception_return
873#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
8742: /* User process was in a transaction */
875 bl save_nvgprs
876 RECONCILE_IRQ_STATE(r10, r11)
877 addi r3,r1,STACK_FRAME_OVERHEAD
878 bl fp_unavailable_tm
879 b ret_from_except
880#endif
881
a5d4f3ad 882
cc437c1d 883EXC_REAL_OOL_MASKABLE(decrementer, 0x900, 0x80)
1a6822d1 884EXC_VIRT_MASKABLE(decrementer, 0x4900, 0x80, 0x900)
39c0da57
NP
885TRAMP_KVM(PACA_EXGEN, 0x900)
886EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
887
a485c709 888
1a6822d1
NP
889EXC_REAL_HV(hdecrementer, 0x980, 0x80)
890EXC_VIRT_HV(hdecrementer, 0x4980, 0x80, 0x980)
facc6d74
NP
891TRAMP_KVM_HV(PACA_EXGEN, 0x980)
892EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
893
a5d4f3ad 894
1a6822d1
NP
895EXC_REAL_MASKABLE(doorbell_super, 0xa00, 0x100)
896EXC_VIRT_MASKABLE(doorbell_super, 0x4a00, 0x100, 0xa00)
da2bc464 897TRAMP_KVM(PACA_EXGEN, 0xa00)
ca243163
NP
898#ifdef CONFIG_PPC_DOORBELL
899EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
900#else
901EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
902#endif
903
0ebc4cda 904
1a6822d1
NP
905EXC_REAL(trap_0b, 0xb00, 0x100)
906EXC_VIRT(trap_0b, 0x4b00, 0x100, 0xb00)
da2bc464 907TRAMP_KVM(PACA_EXGEN, 0xb00)
341215dc
NP
908EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
909
acd7d8ce
NP
910/*
911 * system call / hypercall (0xc00, 0x4c00)
912 *
913 * The system call exception is invoked with "sc 0" and does not alter HV bit.
914 * There is support for kernel code to invoke system calls but there are no
915 * in-tree users.
916 *
917 * The hypercall is invoked with "sc 1" and sets HV=1.
918 *
919 * In HPT, sc 1 always goes to 0xc00 real mode. In RADIX, sc 1 can go to
920 * 0x4c00 virtual mode.
921 *
922 * Call convention:
923 *
924 * syscall register convention is in Documentation/powerpc/syscall64-abi.txt
925 *
926 * For hypercalls, the register convention is as follows:
927 * r0 volatile
928 * r1-2 nonvolatile
929 * r3 volatile parameter and return value for status
930 * r4-r10 volatile input and output value
931 * r11 volatile hypercall number and output value
76fc0cfc 932 * r12 volatile input and output value
acd7d8ce
NP
933 * r13-r31 nonvolatile
934 * LR nonvolatile
935 * CTR volatile
936 * XER volatile
937 * CR0-1 CR5-7 volatile
938 * CR2-4 nonvolatile
939 * Other registers nonvolatile
940 *
941 * The intersection of volatile registers that don't contain possible
76fc0cfc
NP
942 * inputs is: cr0, xer, ctr. We may use these as scratch regs upon entry
943 * without saving, though xer is not a good idea to use, as hardware may
944 * interpret some bits so it may be costly to change them.
acd7d8ce 945 */
bc355125 946#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
acd7d8ce
NP
947 /*
948 * There is a little bit of juggling to get syscall and hcall
76fc0cfc
NP
949 * working well. Save r13 in ctr to avoid using SPRG scratch
950 * register.
acd7d8ce
NP
951 *
952 * Userspace syscalls have already saved the PPR, hcalls must save
953 * it before setting HMT_MEDIUM.
954 */
bc355125 955#define SYSCALL_KVMTEST \
76fc0cfc 956 mtctr r13; \
bc355125 957 GET_PACA(r13); \
76fc0cfc 958 std r10,PACA_EXGEN+EX_R10(r13); \
cc437c1d 959 INTERRUPT_TO_KERNEL; \
acd7d8ce 960 KVMTEST_PR(0xc00); /* uses r10, branch to do_kvm_0xc00_system_call */ \
bc355125 961 HMT_MEDIUM; \
76fc0cfc 962 mfctr r9;
bc355125
PM
963
964#else
965#define SYSCALL_KVMTEST \
acd7d8ce
NP
966 HMT_MEDIUM; \
967 mr r9,r13; \
cc437c1d
NP
968 GET_PACA(r13); \
969 INTERRUPT_TO_KERNEL;
bc355125
PM
970#endif
971
fb479e44
NP
972#define LOAD_SYSCALL_HANDLER(reg) \
973 __LOAD_HANDLER(reg, system_call_common)
d807ad37 974
acd7d8ce
NP
975/*
976 * After SYSCALL_KVMTEST, we reach here with PACA in r13, r13 in r9,
977 * and HMT_MEDIUM.
978 */
979#define SYSCALL_REAL \
980 mfspr r11,SPRN_SRR0 ; \
d807ad37
NP
981 mfspr r12,SPRN_SRR1 ; \
982 LOAD_SYSCALL_HANDLER(r10) ; \
983 mtspr SPRN_SRR0,r10 ; \
984 ld r10,PACAKMSR(r13) ; \
985 mtspr SPRN_SRR1,r10 ; \
222f20f1 986 RFI_TO_KERNEL ; \
d807ad37
NP
987 b . ; /* prevent speculative execution */
988
727f1361 989#ifdef CONFIG_PPC_FAST_ENDIAN_SWITCH
5c2511bf
ME
990#define SYSCALL_FASTENDIAN_TEST \
991BEGIN_FTR_SECTION \
992 cmpdi r0,0x1ebe ; \
993 beq- 1f ; \
994END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
995
acd7d8ce 996#define SYSCALL_FASTENDIAN \
d807ad37
NP
997 /* Fast LE/BE switch system call */ \
9981: mfspr r12,SPRN_SRR1 ; \
999 xori r12,r12,MSR_LE ; \
1000 mtspr SPRN_SRR1,r12 ; \
acd7d8ce 1001 mr r13,r9 ; \
222f20f1 1002 RFI_TO_USER ; /* return to userspace */ \
d807ad37 1003 b . ; /* prevent speculative execution */
727f1361
ME
1004#else
1005#define SYSCALL_FASTENDIAN_TEST
1006#define SYSCALL_FASTENDIAN
1007#endif /* CONFIG_PPC_FAST_ENDIAN_SWITCH */
d807ad37
NP
1008
1009#if defined(CONFIG_RELOCATABLE)
1010 /*
1011 * We can't branch directly so we do it via the CTR which
1012 * is volatile across system calls.
1013 */
acd7d8ce
NP
1014#define SYSCALL_VIRT \
1015 LOAD_SYSCALL_HANDLER(r10) ; \
1016 mtctr r10 ; \
1017 mfspr r11,SPRN_SRR0 ; \
d807ad37
NP
1018 mfspr r12,SPRN_SRR1 ; \
1019 li r10,MSR_RI ; \
1020 mtmsrd r10,1 ; \
1021 bctr ;
1022#else
1023 /* We can branch directly */
acd7d8ce
NP
1024#define SYSCALL_VIRT \
1025 mfspr r11,SPRN_SRR0 ; \
d807ad37
NP
1026 mfspr r12,SPRN_SRR1 ; \
1027 li r10,MSR_RI ; \
1028 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
1029 b system_call_common ;
1030#endif
1031
1a6822d1 1032EXC_REAL_BEGIN(system_call, 0xc00, 0x100)
acd7d8ce
NP
1033 SYSCALL_KVMTEST /* loads PACA into r13, and saves r13 to r9 */
1034 SYSCALL_FASTENDIAN_TEST
1035 SYSCALL_REAL
1036 SYSCALL_FASTENDIAN
1a6822d1 1037EXC_REAL_END(system_call, 0xc00, 0x100)
da2bc464 1038
1a6822d1 1039EXC_VIRT_BEGIN(system_call, 0x4c00, 0x100)
acd7d8ce
NP
1040 SYSCALL_KVMTEST /* loads PACA into r13, and saves r13 to r9 */
1041 SYSCALL_FASTENDIAN_TEST
1042 SYSCALL_VIRT
1043 SYSCALL_FASTENDIAN
1a6822d1 1044EXC_VIRT_END(system_call, 0x4c00, 0x100)
d807ad37 1045
acd7d8ce
NP
1046#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1047 /*
1048 * This is a hcall, so register convention is as above, with these
1049 * differences:
1050 * r13 = PACA
76fc0cfc
NP
1051 * ctr = orig r13
1052 * orig r10 saved in PACA
acd7d8ce
NP
1053 */
1054TRAMP_KVM_BEGIN(do_kvm_0xc00)
1055 /*
1056 * Save the PPR (on systems that support it) before changing to
1057 * HMT_MEDIUM. That allows the KVM code to save that value into the
1058 * guest state (it is the guest's PPR value).
1059 */
76fc0cfc 1060 OPT_GET_SPR(r10, SPRN_PPR, CPU_FTR_HAS_PPR)
acd7d8ce 1061 HMT_MEDIUM
76fc0cfc 1062 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r10, CPU_FTR_HAS_PPR)
acd7d8ce 1063 mfctr r10
76fc0cfc 1064 SET_SCRATCH0(r10)
acd7d8ce
NP
1065 std r9,PACA_EXGEN+EX_R9(r13)
1066 mfcr r9
acd7d8ce
NP
1067 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0xc00)
1068#endif
da2bc464 1069
d807ad37 1070
1a6822d1
NP
1071EXC_REAL(single_step, 0xd00, 0x100)
1072EXC_VIRT(single_step, 0x4d00, 0x100, 0xd00)
da2bc464 1073TRAMP_KVM(PACA_EXGEN, 0xd00)
bc6675c6 1074EXC_COMMON(single_step_common, 0xd00, single_step_exception)
b01c8b54 1075
1a6822d1 1076EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0x20)
da0e7e62 1077EXC_VIRT_OOL_HV(h_data_storage, 0x4e00, 0x20, 0xe00)
f5c32c1d
NP
1078TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
1079EXC_COMMON_BEGIN(h_data_storage_common)
1080 mfspr r10,SPRN_HDAR
1081 std r10,PACA_EXGEN+EX_DAR(r13)
1082 mfspr r10,SPRN_HDSISR
1083 stw r10,PACA_EXGEN+EX_DSISR(r13)
1084 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
1085 bl save_nvgprs
1086 RECONCILE_IRQ_STATE(r10, r11)
1087 addi r3,r1,STACK_FRAME_OVERHEAD
1088 bl unknown_exception
1089 b ret_from_except
f5c32c1d 1090
1707dd16 1091
1a6822d1 1092EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0x20)
da0e7e62 1093EXC_VIRT_OOL_HV(h_instr_storage, 0x4e20, 0x20, 0xe20)
82517cab
NP
1094TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
1095EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
1096
1707dd16 1097
1a6822d1
NP
1098EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0x20)
1099EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x20, 0xe40)
031b4026
NP
1100TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
1101EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
1102
1707dd16 1103
e0319829
NP
1104/*
1105 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
1106 * first, and then eventaully from there to the trampoline to get into virtual
1107 * mode.
1108 */
1a6822d1 1109__EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0x20, hmi_exception_early)
852e5da9 1110__TRAMP_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
1a6822d1 1111EXC_VIRT_NONE(0x4e60, 0x20)
62f9b03b
NP
1112TRAMP_KVM_HV(PACA_EXGEN, 0xe60)
1113TRAMP_REAL_BEGIN(hmi_exception_early)
1114 EXCEPTION_PROLOG_1(PACA_EXGEN, KVMTEST_HV, 0xe60)
a4087a4d
NP
1115 mr r10,r1 /* Save r1 */
1116 ld r1,PACAEMERGSP(r13) /* Use emergency stack for realmode */
62f9b03b 1117 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
62f9b03b 1118 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
a4087a4d
NP
1119 mfspr r12,SPRN_HSRR1 /* Save HSRR1 */
1120 EXCEPTION_PROLOG_COMMON_1()
62f9b03b
NP
1121 EXCEPTION_PROLOG_COMMON_2(PACA_EXGEN)
1122 EXCEPTION_PROLOG_COMMON_3(0xe60)
1123 addi r3,r1,STACK_FRAME_OVERHEAD
be5c5e84 1124 BRANCH_LINK_TO_FAR(hmi_exception_realmode) /* Function call ABI */
5080332c
MN
1125 cmpdi cr0,r3,0
1126
62f9b03b
NP
1127 /* Windup the stack. */
1128 /* Move original HSRR0 and HSRR1 into the respective regs */
1129 ld r9,_MSR(r1)
1130 mtspr SPRN_HSRR1,r9
1131 ld r3,_NIP(r1)
1132 mtspr SPRN_HSRR0,r3
1133 ld r9,_CTR(r1)
1134 mtctr r9
1135 ld r9,_XER(r1)
1136 mtxer r9
1137 ld r9,_LINK(r1)
1138 mtlr r9
1139 REST_GPR(0, r1)
1140 REST_8GPRS(2, r1)
1141 REST_GPR(10, r1)
1142 ld r11,_CCR(r1)
5080332c
MN
1143 REST_2GPRS(12, r1)
1144 bne 1f
62f9b03b
NP
1145 mtcr r11
1146 REST_GPR(11, r1)
5080332c 1147 ld r1,GPR1(r1)
222f20f1 1148 HRFI_TO_USER_OR_KERNEL
5080332c
MN
1149
11501: mtcr r11
1151 REST_GPR(11, r1)
62f9b03b
NP
1152 ld r1,GPR1(r1)
1153
1154 /*
1155 * Go to virtual mode and pull the HMI event information from
1156 * firmware.
1157 */
1158 .globl hmi_exception_after_realmode
1159hmi_exception_after_realmode:
1160 SET_SCRATCH0(r13)
1161 EXCEPTION_PROLOG_0(PACA_EXGEN)
1162 b tramp_real_hmi_exception
1163
5080332c
MN
1164EXC_COMMON_BEGIN(hmi_exception_common)
1165EXCEPTION_COMMON(PACA_EXGEN, 0xe60, hmi_exception_common, handle_hmi_exception,
1166 ret_from_except, FINISH_NAP;ADD_NVGPRS;ADD_RECONCILE;RUNLATCH_ON)
1707dd16 1167
1a6822d1
NP
1168EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0x20)
1169EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x20, 0xe80)
9bcb81bf
NP
1170TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1171#ifdef CONFIG_PPC_DOORBELL
1172EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1173#else
1174EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1175#endif
1176
0ebc4cda 1177
1a6822d1
NP
1178EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0x20)
1179EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x20, 0xea0)
74408776
NP
1180TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
1181EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1182
9baaef0a 1183
1a6822d1
NP
1184EXC_REAL_NONE(0xec0, 0x20)
1185EXC_VIRT_NONE(0x4ec0, 0x20)
1186EXC_REAL_NONE(0xee0, 0x20)
1187EXC_VIRT_NONE(0x4ee0, 0x20)
bda7fea2 1188
0ebc4cda 1189
1a6822d1
NP
1190EXC_REAL_OOL(performance_monitor, 0xf00, 0x20)
1191EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x20, 0xf00)
b1c7f150
NP
1192TRAMP_KVM(PACA_EXGEN, 0xf00)
1193EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1194
0ebc4cda 1195
1a6822d1
NP
1196EXC_REAL_OOL(altivec_unavailable, 0xf20, 0x20)
1197EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x20, 0xf20)
d1a0ca9c
NP
1198TRAMP_KVM(PACA_EXGEN, 0xf20)
1199EXC_COMMON_BEGIN(altivec_unavailable_common)
1200 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1201#ifdef CONFIG_ALTIVEC
1202BEGIN_FTR_SECTION
1203 beq 1f
1204#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1205 BEGIN_FTR_SECTION_NESTED(69)
1206 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1207 * transaction), go do TM stuff
1208 */
1209 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1210 bne- 2f
1211 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1212#endif
1213 bl load_up_altivec
1214 b fast_exception_return
1215#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
12162: /* User process was in a transaction */
1217 bl save_nvgprs
1218 RECONCILE_IRQ_STATE(r10, r11)
1219 addi r3,r1,STACK_FRAME_OVERHEAD
1220 bl altivec_unavailable_tm
1221 b ret_from_except
1222#endif
12231:
1224END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1225#endif
1226 bl save_nvgprs
1227 RECONCILE_IRQ_STATE(r10, r11)
1228 addi r3,r1,STACK_FRAME_OVERHEAD
1229 bl altivec_unavailable_exception
1230 b ret_from_except
1231
0ebc4cda 1232
1a6822d1
NP
1233EXC_REAL_OOL(vsx_unavailable, 0xf40, 0x20)
1234EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x20, 0xf40)
792cbddd
NP
1235TRAMP_KVM(PACA_EXGEN, 0xf40)
1236EXC_COMMON_BEGIN(vsx_unavailable_common)
1237 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1238#ifdef CONFIG_VSX
1239BEGIN_FTR_SECTION
1240 beq 1f
1241#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1242 BEGIN_FTR_SECTION_NESTED(69)
1243 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1244 * transaction), go do TM stuff
1245 */
1246 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1247 bne- 2f
1248 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1249#endif
1250 b load_up_vsx
1251#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
12522: /* User process was in a transaction */
1253 bl save_nvgprs
1254 RECONCILE_IRQ_STATE(r10, r11)
1255 addi r3,r1,STACK_FRAME_OVERHEAD
1256 bl vsx_unavailable_tm
1257 b ret_from_except
1258#endif
12591:
1260END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1261#endif
1262 bl save_nvgprs
1263 RECONCILE_IRQ_STATE(r10, r11)
1264 addi r3,r1,STACK_FRAME_OVERHEAD
1265 bl vsx_unavailable_exception
1266 b ret_from_except
1267
da2bc464 1268
1a6822d1
NP
1269EXC_REAL_OOL(facility_unavailable, 0xf60, 0x20)
1270EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x20, 0xf60)
1134713c
NP
1271TRAMP_KVM(PACA_EXGEN, 0xf60)
1272EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1273
da2bc464 1274
1a6822d1
NP
1275EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0x20)
1276EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x20, 0xf80)
14b0072c
NP
1277TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
1278EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1279
da2bc464 1280
1a6822d1
NP
1281EXC_REAL_NONE(0xfa0, 0x20)
1282EXC_VIRT_NONE(0x4fa0, 0x20)
1283EXC_REAL_NONE(0xfc0, 0x20)
1284EXC_VIRT_NONE(0x4fc0, 0x20)
1285EXC_REAL_NONE(0xfe0, 0x20)
1286EXC_VIRT_NONE(0x4fe0, 0x20)
1287
1288EXC_REAL_NONE(0x1000, 0x100)
1289EXC_VIRT_NONE(0x5000, 0x100)
1290EXC_REAL_NONE(0x1100, 0x100)
1291EXC_VIRT_NONE(0x5100, 0x100)
d0c0c9a1 1292
0ebc4cda 1293#ifdef CONFIG_CBE_RAS
1a6822d1
NP
1294EXC_REAL_HV(cbe_system_error, 0x1200, 0x100)
1295EXC_VIRT_NONE(0x5200, 0x100)
da2bc464 1296TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
ff1b3206 1297EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
da2bc464 1298#else /* CONFIG_CBE_RAS */
1a6822d1
NP
1299EXC_REAL_NONE(0x1200, 0x100)
1300EXC_VIRT_NONE(0x5200, 0x100)
da2bc464 1301#endif
b01c8b54 1302
ff1b3206 1303
1a6822d1
NP
1304EXC_REAL(instruction_breakpoint, 0x1300, 0x100)
1305EXC_VIRT(instruction_breakpoint, 0x5300, 0x100, 0x1300)
da2bc464 1306TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
4e96dbbf
NP
1307EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1308
1a6822d1
NP
1309EXC_REAL_NONE(0x1400, 0x100)
1310EXC_VIRT_NONE(0x5400, 0x100)
da2bc464 1311
1a6822d1 1312EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x100)
b92a66a6 1313 mtspr SPRN_SPRG_HSCRATCH0,r13
1707dd16 1314 EXCEPTION_PROLOG_0(PACA_EXGEN)
630573c1 1315 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
b92a66a6
MN
1316
1317#ifdef CONFIG_PPC_DENORMALISATION
1318 mfspr r10,SPRN_HSRR1
afcf0095 1319 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
afcf0095
NP
1320 bne+ denorm_assist
1321#endif
1e9b4507 1322
f175c5ce 1323 KVMTEST_HV(0x1500)
afcf0095 1324 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
1a6822d1 1325EXC_REAL_END(denorm_exception_hv, 0x1500, 0x100)
a74599a5 1326
d7e89849 1327#ifdef CONFIG_PPC_DENORMALISATION
1a6822d1 1328EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x100)
d7e89849 1329 b exc_real_0x1500_denorm_exception_hv
1a6822d1 1330EXC_VIRT_END(denorm_exception, 0x5500, 0x100)
d7e89849 1331#else
1a6822d1 1332EXC_VIRT_NONE(0x5500, 0x100)
afcf0095
NP
1333#endif
1334
f175c5ce 1335TRAMP_KVM_HV(PACA_EXGEN, 0x1500)
b01c8b54 1336
b92a66a6 1337#ifdef CONFIG_PPC_DENORMALISATION
da2bc464 1338TRAMP_REAL_BEGIN(denorm_assist)
b92a66a6
MN
1339BEGIN_FTR_SECTION
1340/*
1341 * To denormalise we need to move a copy of the register to itself.
1342 * For POWER6 do that here for all FP regs.
1343 */
1344 mfmsr r10
1345 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1346 xori r10,r10,(MSR_FE0|MSR_FE1)
1347 mtmsrd r10
1348 sync
d7c67fb1
MN
1349
1350#define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1351#define FMR4(n) FMR2(n) ; FMR2(n+2)
1352#define FMR8(n) FMR4(n) ; FMR4(n+4)
1353#define FMR16(n) FMR8(n) ; FMR8(n+8)
1354#define FMR32(n) FMR16(n) ; FMR16(n+16)
1355 FMR32(0)
1356
b92a66a6
MN
1357FTR_SECTION_ELSE
1358/*
1359 * To denormalise we need to move a copy of the register to itself.
1360 * For POWER7 do that here for the first 32 VSX registers only.
1361 */
1362 mfmsr r10
1363 oris r10,r10,MSR_VSX@h
1364 mtmsrd r10
1365 sync
d7c67fb1
MN
1366
1367#define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1368#define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1369#define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1370#define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1371#define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1372 XVCPSGNDP32(0)
1373
b92a66a6 1374ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
fb0fce3e
MN
1375
1376BEGIN_FTR_SECTION
1377 b denorm_done
1378END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1379/*
1380 * To denormalise we need to move a copy of the register to itself.
1381 * For POWER8 we need to do that for all 64 VSX registers
1382 */
1383 XVCPSGNDP32(32)
1384denorm_done:
0fb2cba7
MN
1385 mfspr r11,SPRN_HSRR0
1386 subi r11,r11,4
b92a66a6
MN
1387 mtspr SPRN_HSRR0,r11
1388 mtcrf 0x80,r9
1389 ld r9,PACA_EXGEN+EX_R9(r13)
44e9309f 1390 RESTORE_PPR_PACA(PACA_EXGEN, r10)
630573c1
PM
1391BEGIN_FTR_SECTION
1392 ld r10,PACA_EXGEN+EX_CFAR(r13)
1393 mtspr SPRN_CFAR,r10
1394END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
b92a66a6
MN
1395 ld r10,PACA_EXGEN+EX_R10(r13)
1396 ld r11,PACA_EXGEN+EX_R11(r13)
1397 ld r12,PACA_EXGEN+EX_R12(r13)
1398 ld r13,PACA_EXGEN+EX_R13(r13)
222f20f1 1399 HRFI_TO_UNKNOWN
b92a66a6
MN
1400 b .
1401#endif
1402
d7e89849
NP
1403EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
1404
1405
1406#ifdef CONFIG_CBE_RAS
1a6822d1
NP
1407EXC_REAL_HV(cbe_maintenance, 0x1600, 0x100)
1408EXC_VIRT_NONE(0x5600, 0x100)
d7e89849 1409TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
69a79344 1410EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
d7e89849 1411#else /* CONFIG_CBE_RAS */
1a6822d1
NP
1412EXC_REAL_NONE(0x1600, 0x100)
1413EXC_VIRT_NONE(0x5600, 0x100)
d7e89849
NP
1414#endif
1415
69a79344 1416
1a6822d1
NP
1417EXC_REAL(altivec_assist, 0x1700, 0x100)
1418EXC_VIRT(altivec_assist, 0x5700, 0x100, 0x1700)
d7e89849 1419TRAMP_KVM(PACA_EXGEN, 0x1700)
b51c079e
NP
1420#ifdef CONFIG_ALTIVEC
1421EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1422#else
1423EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1424#endif
1425
d7e89849
NP
1426
1427#ifdef CONFIG_CBE_RAS
1a6822d1
NP
1428EXC_REAL_HV(cbe_thermal, 0x1800, 0x100)
1429EXC_VIRT_NONE(0x5800, 0x100)
d7e89849 1430TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
3965f8ab 1431EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
d7e89849 1432#else /* CONFIG_CBE_RAS */
1a6822d1
NP
1433EXC_REAL_NONE(0x1800, 0x100)
1434EXC_VIRT_NONE(0x5800, 0x100)
d7e89849
NP
1435#endif
1436
75eb767e 1437#ifdef CONFIG_PPC_WATCHDOG
2104180a
NP
1438
1439#define MASKED_DEC_HANDLER_LABEL 3f
1440
1441#define MASKED_DEC_HANDLER(_H) \
14423: /* soft-nmi */ \
1443 std r12,PACA_EXGEN+EX_R12(r13); \
1444 GET_SCRATCH0(r10); \
1445 std r10,PACA_EXGEN+EX_R13(r13); \
1446 EXCEPTION_PROLOG_PSERIES_1(soft_nmi_common, _H)
1447
cc491f1d
NP
1448/*
1449 * Branch to soft_nmi_interrupt using the emergency stack. The emergency
1450 * stack is one that is usable by maskable interrupts so long as MSR_EE
1451 * remains off. It is used for recovery when something has corrupted the
1452 * normal kernel stack, for example. The "soft NMI" must not use the process
1453 * stack because we want irq disabled sections to avoid touching the stack
1454 * at all (other than PMU interrupts), so use the emergency stack for this,
1455 * and run it entirely with interrupts hard disabled.
1456 */
2104180a
NP
1457EXC_COMMON_BEGIN(soft_nmi_common)
1458 mr r10,r1
1459 ld r1,PACAEMERGSP(r13)
2104180a
NP
1460 subi r1,r1,INT_FRAME_SIZE
1461 EXCEPTION_COMMON_NORET_STACK(PACA_EXGEN, 0x900,
1462 system_reset, soft_nmi_interrupt,
1463 ADD_NVGPRS;ADD_RECONCILE)
1464 b ret_from_except
1465
75eb767e 1466#else /* CONFIG_PPC_WATCHDOG */
2104180a
NP
1467#define MASKED_DEC_HANDLER_LABEL 2f /* normal return */
1468#define MASKED_DEC_HANDLER(_H)
75eb767e 1469#endif /* CONFIG_PPC_WATCHDOG */
d7e89849 1470
0ebc4cda 1471/*
fe9e1d54
IM
1472 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1473 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1474 * - If it was a doorbell we return immediately since doorbells are edge
1475 * triggered and won't automatically refire.
0869b6fd
MS
1476 * - If it was a HMI we return immediately since we handled it in realmode
1477 * and it won't refire.
fe9e1d54
IM
1478 * - else we hard disable and return.
1479 * This is called with r10 containing the value to OR to the paca field.
0ebc4cda 1480 */
7230c564
BH
1481#define MASKED_INTERRUPT(_H) \
1482masked_##_H##interrupt: \
1483 std r11,PACA_EXGEN+EX_R11(r13); \
1484 lbz r11,PACAIRQHAPPENED(r13); \
1485 or r11,r11,r10; \
1486 stb r11,PACAIRQHAPPENED(r13); \
fe9e1d54
IM
1487 cmpwi r10,PACA_IRQ_DEC; \
1488 bne 1f; \
7230c564
BH
1489 lis r10,0x7fff; \
1490 ori r10,r10,0xffff; \
1491 mtspr SPRN_DEC,r10; \
2104180a 1492 b MASKED_DEC_HANDLER_LABEL; \
e0c827c0
NP
14931: andi. r10,r10,(PACA_IRQ_DBELL|PACA_IRQ_HMI); \
1494 bne 2f; \
fe9e1d54 1495 mfspr r10,SPRN_##_H##SRR1; \
6e9a2f6e 1496 xori r10,r10,MSR_EE; /* clear MSR_EE */ \
7230c564
BH
1497 mtspr SPRN_##_H##SRR1,r10; \
14982: mtcrf 0x80,r9; \
1499 ld r9,PACA_EXGEN+EX_R9(r13); \
1500 ld r10,PACA_EXGEN+EX_R10(r13); \
1501 ld r11,PACA_EXGEN+EX_R11(r13); \
c05f0be8 1502 /* returns to kernel where r13 must be set up, so don't restore it */ \
222f20f1 1503 ##_H##RFI_TO_KERNEL; \
2104180a
NP
1504 b .; \
1505 MASKED_DEC_HANDLER(_H)
57f26649 1506
cc437c1d
NP
1507TRAMP_REAL_BEGIN(stf_barrier_fallback)
1508 std r9,PACA_EXRFI+EX_R9(r13)
1509 std r10,PACA_EXRFI+EX_R10(r13)
1510 sync
1511 ld r9,PACA_EXRFI+EX_R9(r13)
1512 ld r10,PACA_EXRFI+EX_R10(r13)
1513 ori 31,31,0
1514 .rept 14
1515 b 1f
15161:
1517 .endr
1518 blr
1519
aa8a5e00
ME
1520TRAMP_REAL_BEGIN(rfi_flush_fallback)
1521 SET_SCRATCH0(r13);
1522 GET_PACA(r13);
1ff5a32a
ME
1523 std r1,PACA_EXRFI+EX_R12(r13)
1524 ld r1,PACAKSAVE(r13)
aa8a5e00
ME
1525 std r9,PACA_EXRFI+EX_R9(r13)
1526 std r10,PACA_EXRFI+EX_R10(r13)
1527 std r11,PACA_EXRFI+EX_R11(r13)
aa8a5e00
ME
1528 mfctr r9
1529 ld r10,PACA_RFI_FLUSH_FALLBACK_AREA(r13)
75052bdd
NP
1530 ld r11,PACA_L1D_FLUSH_SIZE(r13)
1531 srdi r11,r11,(7 + 3) /* 128 byte lines, unrolled 8x */
aa8a5e00 1532 mtctr r11
65bd3200 1533 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r11) /* Stop prefetch streams */
aa8a5e00
ME
1534
1535 /* order ld/st prior to dcbt stop all streams with flushing */
1536 sync
75052bdd
NP
1537
1538 /*
1539 * The load adresses are at staggered offsets within cachelines,
1540 * which suits some pipelines better (on others it should not
1541 * hurt).
1542 */
15431:
1544 ld r11,(0x80 + 8)*0(r10)
1545 ld r11,(0x80 + 8)*1(r10)
1546 ld r11,(0x80 + 8)*2(r10)
1547 ld r11,(0x80 + 8)*3(r10)
1548 ld r11,(0x80 + 8)*4(r10)
1549 ld r11,(0x80 + 8)*5(r10)
1550 ld r11,(0x80 + 8)*6(r10)
1551 ld r11,(0x80 + 8)*7(r10)
1552 addi r10,r10,0x80*8
aa8a5e00
ME
1553 bdnz 1b
1554
1555 mtctr r9
1556 ld r9,PACA_EXRFI+EX_R9(r13)
1557 ld r10,PACA_EXRFI+EX_R10(r13)
1558 ld r11,PACA_EXRFI+EX_R11(r13)
1ff5a32a 1559 ld r1,PACA_EXRFI+EX_R12(r13)
aa8a5e00
ME
1560 GET_SCRATCH0(r13);
1561 rfid
1562
1563TRAMP_REAL_BEGIN(hrfi_flush_fallback)
1564 SET_SCRATCH0(r13);
1565 GET_PACA(r13);
1ff5a32a
ME
1566 std r1,PACA_EXRFI+EX_R12(r13)
1567 ld r1,PACAKSAVE(r13)
aa8a5e00
ME
1568 std r9,PACA_EXRFI+EX_R9(r13)
1569 std r10,PACA_EXRFI+EX_R10(r13)
1570 std r11,PACA_EXRFI+EX_R11(r13)
aa8a5e00
ME
1571 mfctr r9
1572 ld r10,PACA_RFI_FLUSH_FALLBACK_AREA(r13)
75052bdd
NP
1573 ld r11,PACA_L1D_FLUSH_SIZE(r13)
1574 srdi r11,r11,(7 + 3) /* 128 byte lines, unrolled 8x */
aa8a5e00 1575 mtctr r11
65bd3200 1576 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r11) /* Stop prefetch streams */
aa8a5e00
ME
1577
1578 /* order ld/st prior to dcbt stop all streams with flushing */
1579 sync
75052bdd
NP
1580
1581 /*
1582 * The load adresses are at staggered offsets within cachelines,
1583 * which suits some pipelines better (on others it should not
1584 * hurt).
1585 */
15861:
1587 ld r11,(0x80 + 8)*0(r10)
1588 ld r11,(0x80 + 8)*1(r10)
1589 ld r11,(0x80 + 8)*2(r10)
1590 ld r11,(0x80 + 8)*3(r10)
1591 ld r11,(0x80 + 8)*4(r10)
1592 ld r11,(0x80 + 8)*5(r10)
1593 ld r11,(0x80 + 8)*6(r10)
1594 ld r11,(0x80 + 8)*7(r10)
1595 addi r10,r10,0x80*8
aa8a5e00
ME
1596 bdnz 1b
1597
1598 mtctr r9
1599 ld r9,PACA_EXRFI+EX_R9(r13)
1600 ld r10,PACA_EXRFI+EX_R10(r13)
1601 ld r11,PACA_EXRFI+EX_R11(r13)
1ff5a32a 1602 ld r1,PACA_EXRFI+EX_R12(r13)
aa8a5e00
ME
1603 GET_SCRATCH0(r13);
1604 hrfid
1605
57f26649
NP
1606/*
1607 * Real mode exceptions actually use this too, but alternate
1608 * instruction code patches (which end up in the common .text area)
1609 * cannot reach these if they are put there.
1610 */
1611USE_FIXED_SECTION(virt_trampolines)
7230c564
BH
1612 MASKED_INTERRUPT()
1613 MASKED_INTERRUPT(H)
0ebc4cda 1614
4f6c11db 1615#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
da2bc464 1616TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
4f6c11db
PM
1617 /*
1618 * Here all GPRs are unchanged from when the interrupt happened
1619 * except for r13, which is saved in SPRG_SCRATCH0.
1620 */
1621 mfspr r13, SPRN_SRR0
1622 addi r13, r13, 4
1623 mtspr SPRN_SRR0, r13
1624 GET_SCRATCH0(r13)
222f20f1 1625 RFI_TO_KERNEL
4f6c11db
PM
1626 b .
1627
da2bc464 1628TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
4f6c11db
PM
1629 /*
1630 * Here all GPRs are unchanged from when the interrupt happened
1631 * except for r13, which is saved in SPRG_SCRATCH0.
1632 */
1633 mfspr r13, SPRN_HSRR0
1634 addi r13, r13, 4
1635 mtspr SPRN_HSRR0, r13
1636 GET_SCRATCH0(r13)
222f20f1 1637 HRFI_TO_KERNEL
4f6c11db
PM
1638 b .
1639#endif
1640
0ebc4cda 1641/*
057b6d7e
HB
1642 * Ensure that any handlers that get invoked from the exception prologs
1643 * above are below the first 64KB (0x10000) of the kernel image because
1644 * the prologs assemble the addresses of these handlers using the
1645 * LOAD_HANDLER macro, which uses an ori instruction.
0ebc4cda
BH
1646 */
1647
1648/*** Common interrupt handlers ***/
1649
0ebc4cda 1650
c1fb6816
MN
1651 /*
1652 * Relocation-on interrupts: A subset of the interrupts can be delivered
1653 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1654 * it. Addresses are the same as the original interrupt addresses, but
1655 * offset by 0xc000000000004000.
1656 * It's impossible to receive interrupts below 0x300 via this mechanism.
1657 * KVM: None of these traps are from the guest ; anything that escalated
1658 * to HV=1 from HV=0 is delivered via real mode handlers.
1659 */
1660
1661 /*
1662 * This uses the standard macro, since the original 0x300 vector
1663 * only has extra guff for STAB-based processors -- which never
1664 * come here.
1665 */
da2bc464 1666
57f26649 1667EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
b1576fec 1668 b __ppc64_runlatch_on
fe1952fc 1669
57f26649 1670USE_FIXED_SECTION(virt_trampolines)
8ed8ab40
HB
1671 /*
1672 * The __end_interrupts marker must be past the out-of-line (OOL)
1673 * handlers, so that they are copied to real address 0x100 when running
1674 * a relocatable kernel. This ensures they can be reached from the short
1675 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1676 * directly, without using LOAD_HANDLER().
1677 */
1678 .align 7
1679 .globl __end_interrupts
1680__end_interrupts:
57f26649 1681DEFINE_FIXED_SYMBOL(__end_interrupts)
61383407 1682
087aa036 1683#ifdef CONFIG_PPC_970_NAP
7c8cb4b5 1684EXC_COMMON_BEGIN(power4_fixup_nap)
087aa036
CG
1685 andc r9,r9,r10
1686 std r9,TI_LOCAL_FLAGS(r11)
1687 ld r10,_LINK(r1) /* make idle task do the */
1688 std r10,_NIP(r1) /* equivalent of a blr */
1689 blr
1690#endif
1691
57f26649
NP
1692CLOSE_FIXED_SECTION(real_vectors);
1693CLOSE_FIXED_SECTION(real_trampolines);
1694CLOSE_FIXED_SECTION(virt_vectors);
1695CLOSE_FIXED_SECTION(virt_trampolines);
1696
1697USE_TEXT_SECTION()
1698
0ebc4cda
BH
1699/*
1700 * Hash table stuff
1701 */
f4329f2e 1702 .balign IFETCH_ALIGN_BYTES
6a3bab90 1703do_hash_page:
4e003747 1704#ifdef CONFIG_PPC_BOOK3S_64
f23ab3ef 1705 lis r0,(DSISR_BAD_FAULT_64S|DSISR_DABRMATCH)@h
398a719d
BH
1706 ori r0,r0,DSISR_BAD_FAULT_64S@l
1707 and. r0,r4,r0 /* weird error? */
0ebc4cda 1708 bne- handle_page_fault /* if not, try to insert a HPTE */
9778b696 1709 CURRENT_THREAD_INFO(r11, r1)
9c1e1052
PM
1710 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1711 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1712 bne 77f /* then don't call hash_page now */
0ebc4cda
BH
1713
1714 /*
1715 * r3 contains the faulting address
106713a1 1716 * r4 msr
0ebc4cda 1717 * r5 contains the trap number
aefa5688 1718 * r6 contains dsisr
0ebc4cda 1719 *
7230c564 1720 * at return r3 = 0 for success, 1 for page fault, negative for error
0ebc4cda 1721 */
106713a1 1722 mr r4,r12
aefa5688 1723 ld r6,_DSISR(r1)
106713a1
AK
1724 bl __hash_page /* build HPTE if possible */
1725 cmpdi r3,0 /* see if __hash_page succeeded */
0ebc4cda 1726
7230c564 1727 /* Success */
0ebc4cda 1728 beq fast_exc_return_irq /* Return from exception on success */
0ebc4cda 1729
7230c564
BH
1730 /* Error */
1731 blt- 13f
d89ba535
NR
1732
1733 /* Reload DSISR into r4 for the DABR check below */
1734 ld r4,_DSISR(r1)
4e003747 1735#endif /* CONFIG_PPC_BOOK3S_64 */
9c7cc234 1736
0ebc4cda
BH
1737/* Here we have a page fault that hash_page can't handle. */
1738handle_page_fault:
d89ba535
NR
173911: andis. r0,r4,DSISR_DABRMATCH@h
1740 bne- handle_dabr_fault
1741 ld r4,_DAR(r1)
0ebc4cda
BH
1742 ld r5,_DSISR(r1)
1743 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 1744 bl do_page_fault
0ebc4cda 1745 cmpdi r3,0
8dff547b 1746 beq+ ret_from_except_lite
b1576fec 1747 bl save_nvgprs
0ebc4cda
BH
1748 mr r5,r3
1749 addi r3,r1,STACK_FRAME_OVERHEAD
1750 lwz r4,_DAR(r1)
b1576fec
AB
1751 bl bad_page_fault
1752 b ret_from_except
0ebc4cda 1753
a546498f
BH
1754/* We have a data breakpoint exception - handle it */
1755handle_dabr_fault:
b1576fec 1756 bl save_nvgprs
a546498f
BH
1757 ld r4,_DAR(r1)
1758 ld r5,_DSISR(r1)
1759 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 1760 bl do_break
8dff547b
RB
1761 /*
1762 * do_break() may have changed the NV GPRS while handling a breakpoint.
1763 * If so, we need to restore them with their updated values. Don't use
1764 * ret_from_except_lite here.
1765 */
1766 b ret_from_except
a546498f 1767
0ebc4cda 1768
4e003747 1769#ifdef CONFIG_PPC_BOOK3S_64
0ebc4cda
BH
1770/* We have a page fault that hash_page could handle but HV refused
1771 * the PTE insertion
1772 */
b1576fec 177313: bl save_nvgprs
0ebc4cda
BH
1774 mr r5,r3
1775 addi r3,r1,STACK_FRAME_OVERHEAD
1776 ld r4,_DAR(r1)
b1576fec
AB
1777 bl low_hash_fault
1778 b ret_from_except
caca285e 1779#endif
0ebc4cda 1780
9c1e1052
PM
1781/*
1782 * We come here as a result of a DSI at a point where we don't want
1783 * to call hash_page, such as when we are accessing memory (possibly
1784 * user memory) inside a PMU interrupt that occurred while interrupts
1785 * were soft-disabled. We want to invoke the exception handler for
1786 * the access, or panic if there isn't a handler.
1787 */
b1576fec 178877: bl save_nvgprs
9c1e1052
PM
1789 mr r4,r3
1790 addi r3,r1,STACK_FRAME_OVERHEAD
1791 li r5,SIGSEGV
b1576fec
AB
1792 bl bad_page_fault
1793 b ret_from_except
4e2bf01b
ME
1794
1795/*
1796 * Here we have detected that the kernel stack pointer is bad.
1797 * R9 contains the saved CR, r13 points to the paca,
1798 * r10 contains the (bad) kernel stack pointer,
1799 * r11 and r12 contain the saved SRR0 and SRR1.
1800 * We switch to using an emergency stack, save the registers there,
1801 * and call kernel_bad_stack(), which panics.
1802 */
1803bad_stack:
1804 ld r1,PACAEMERGSP(r13)
1805 subi r1,r1,64+INT_FRAME_SIZE
1806 std r9,_CCR(r1)
1807 std r10,GPR1(r1)
1808 std r11,_NIP(r1)
1809 std r12,_MSR(r1)
1810 mfspr r11,SPRN_DAR
1811 mfspr r12,SPRN_DSISR
1812 std r11,_DAR(r1)
1813 std r12,_DSISR(r1)
1814 mflr r10
1815 mfctr r11
1816 mfxer r12
1817 std r10,_LINK(r1)
1818 std r11,_CTR(r1)
1819 std r12,_XER(r1)
1820 SAVE_GPR(0,r1)
1821 SAVE_GPR(2,r1)
1822 ld r10,EX_R3(r3)
1823 std r10,GPR3(r1)
1824 SAVE_GPR(4,r1)
1825 SAVE_4GPRS(5,r1)
1826 ld r9,EX_R9(r3)
1827 ld r10,EX_R10(r3)
1828 SAVE_2GPRS(9,r1)
1829 ld r9,EX_R11(r3)
1830 ld r10,EX_R12(r3)
1831 ld r11,EX_R13(r3)
1832 std r9,GPR11(r1)
1833 std r10,GPR12(r1)
1834 std r11,GPR13(r1)
1835BEGIN_FTR_SECTION
1836 ld r10,EX_CFAR(r3)
1837 std r10,ORIG_GPR3(r1)
1838END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1839 SAVE_8GPRS(14,r1)
1840 SAVE_10GPRS(22,r1)
1841 lhz r12,PACA_TRAP_SAVE(r13)
1842 std r12,_TRAP(r1)
1843 addi r11,r1,INT_FRAME_SIZE
1844 std r11,0(r1)
1845 li r12,0
1846 std r12,0(r11)
1847 ld r2,PACATOC(r13)
1848 ld r11,exception_marker@toc(r2)
1849 std r12,RESULT(r1)
1850 std r11,STACK_FRAME_OVERHEAD-16(r1)
18511: addi r3,r1,STACK_FRAME_OVERHEAD
1852 bl kernel_bad_stack
1853 b 1b
15770a13 1854_ASM_NOKPROBE_SYMBOL(bad_stack);
0f0c6ca1 1855
a9af97aa
NP
1856/*
1857 * When doorbell is triggered from system reset wakeup, the message is
1858 * not cleared, so it would fire again when EE is enabled.
1859 *
1860 * When coming from local_irq_enable, there may be the same problem if
1861 * we were hard disabled.
1862 *
1863 * Execute msgclr to clear pending exceptions before handling it.
1864 */
1865h_doorbell_common_msgclr:
1866 LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
1867 PPC_MSGCLR(3)
1868 b h_doorbell_common
1869
1870doorbell_super_common_msgclr:
1871 LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
1872 PPC_MSGCLRP(3)
1873 b doorbell_super_common
1874
0f0c6ca1
NP
1875/*
1876 * Called from arch_local_irq_enable when an interrupt needs
1877 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1878 * which kind of interrupt. MSR:EE is already off. We generate a
1879 * stackframe like if a real interrupt had happened.
1880 *
1881 * Note: While MSR:EE is off, we need to make sure that _MSR
1882 * in the generated frame has EE set to 1 or the exception
1883 * handler will not properly re-enable them.
b48bbb82
NP
1884 *
1885 * Note that we don't specify LR as the NIP (return address) for
1886 * the interrupt because that would unbalance the return branch
1887 * predictor.
0f0c6ca1
NP
1888 */
1889_GLOBAL(__replay_interrupt)
1890 /* We are going to jump to the exception common code which
1891 * will retrieve various register values from the PACA which
1892 * we don't give a damn about, so we don't bother storing them.
1893 */
1894 mfmsr r12
3e23a12b 1895 LOAD_REG_ADDR(r11, replay_interrupt_return)
0f0c6ca1
NP
1896 mfcr r9
1897 ori r12,r12,MSR_EE
1898 cmpwi r3,0x900
1899 beq decrementer_common
1900 cmpwi r3,0x500
e6c1203d
NP
1901BEGIN_FTR_SECTION
1902 beq h_virt_irq_common
1903FTR_SECTION_ELSE
0f0c6ca1 1904 beq hardware_interrupt_common
e6c1203d 1905ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_300)
0f0c6ca1 1906BEGIN_FTR_SECTION
d6f73fc6 1907 cmpwi r3,0xa00
a9af97aa 1908 beq h_doorbell_common_msgclr
0f0c6ca1
NP
1909 cmpwi r3,0xe60
1910 beq hmi_exception_common
1911FTR_SECTION_ELSE
1912 cmpwi r3,0xa00
a9af97aa 1913 beq doorbell_super_common_msgclr
0f0c6ca1 1914ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
3e23a12b 1915replay_interrupt_return:
0f0c6ca1 1916 blr
b48bbb82 1917
15770a13 1918_ASM_NOKPROBE_SYMBOL(__replay_interrupt)