2 * This file contains the 64-bit "server" PowerPC variant
3 * of the low level exception handling including exception
4 * vectors, exception return, part of the slb and stab
5 * handling and other fixed offset specific things.
7 * This file is meant to be #included from head_64.S due to
8 * position dependent assembly.
10 * Most of this originates from head_64.S and thus has the same
15 #include <asm/hw_irq.h>
16 #include <asm/exception-64s.h>
17 #include <asm/ptrace.h>
18 #include <asm/cpuidle.h>
19 #include <asm/head-64.h>
22 * There are a few constraints to be concerned with.
23 * - Real mode exceptions code/data must be located at their physical location.
24 * - Virtual mode exceptions must be mapped at their 0xc000... location.
25 * - Fixed location code must not call directly beyond the __end_interrupts
26 * area when built with CONFIG_RELOCATABLE. LOAD_HANDLER / bctr sequence
28 * - LOAD_HANDLER targets must be within first 64K of physical 0 /
30 * - Conditional branch targets must be within +/-32K of caller.
32 * "Virtual exceptions" run with relocation on (MSR_IR=1, MSR_DR=1), and
33 * therefore don't have to run in physically located code or rfid to
34 * virtual mode kernel code. However on relocatable kernels they do have
35 * to branch to KERNELBASE offset because the rest of the kernel (outside
36 * the exception vectors) may be located elsewhere.
38 * Virtual exceptions correspond with physical, except their entry points
39 * are offset by 0xc000000000000000 and also tend to get an added 0x4000
40 * offset applied. Virtual exceptions are enabled with the Alternate
41 * Interrupt Location (AIL) bit set in the LPCR. However this does not
42 * guarantee they will be delivered virtually. Some conditions (see the ISA)
43 * cause exceptions to be delivered in real mode.
45 * It's impossible to receive interrupts below 0x300 via AIL.
47 * KVM: None of the virtual exceptions are from the guest. Anything that
48 * escalated to HV=1 from HV=0 is delivered via real mode handlers.
51 * We layout physical memory as follows:
52 * 0x0000 - 0x00ff : Secondary processor spin code
53 * 0x0100 - 0x18ff : Real mode pSeries interrupt vectors
54 * 0x1900 - 0x3fff : Real mode trampolines
55 * 0x4000 - 0x58ff : Relon (IR=1,DR=1) mode pSeries interrupt vectors
56 * 0x5900 - 0x6fff : Relon mode trampolines
57 * 0x7000 - 0x7fff : FWNMI data area
58 * 0x8000 - .... : Common interrupt handlers, remaining early
59 * setup code, rest of kernel.
61 * We could reclaim 0x4000-0x42ff for real mode trampolines if the space
62 * is necessary. Until then it's more consistent to explicitly put VIRT_NONE
65 OPEN_FIXED_SECTION(real_vectors, 0x0100, 0x1900)
66 OPEN_FIXED_SECTION(real_trampolines, 0x1900, 0x4000)
67 OPEN_FIXED_SECTION(virt_vectors, 0x4000, 0x5900)
68 OPEN_FIXED_SECTION(virt_trampolines, 0x5900, 0x7000)
69 #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
71 * Data area reserved for FWNMI option.
72 * This address (0x7000) is fixed by the RPA.
73 * pseries and powernv need to keep the whole page from
74 * 0x7000 to 0x8000 free for use by the firmware
76 ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
77 OPEN_TEXT_SECTION(0x8000)
79 OPEN_TEXT_SECTION(0x7000)
82 USE_FIXED_SECTION(real_vectors)
85 * This is the start of the interrupt handlers for pSeries
86 * This code runs with relocation off.
87 * Code from here to __end_interrupts gets copied down to real
88 * address 0x100 when we are running a relocatable kernel.
89 * Therefore any relative branches in this section must only
90 * branch to labels in this section.
92 .globl __start_interrupts
95 /* No virt vectors corresponding with 0x0..0x100 */
96 EXC_VIRT_NONE(0x4000, 0x4100)
98 EXC_REAL_BEGIN(system_reset, 0x100, 0x200)
100 #ifdef CONFIG_PPC_P7_NAP
102 /* Running native on arch 2.06 or later, check if we are
103 * waking up from nap/sleep/winkle.
106 rlwinm. r13,r13,47-31,30,31
111 bl pnv_restore_hyp_resource
113 li r0,PNV_THREAD_RUNNING
114 stb r0,PACA_THREAD_IDLE_STATE(r13) /* Clear thread state */
116 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
117 li r0,KVM_HWTHREAD_IN_KERNEL
118 stb r0,HSTATE_HWTHREAD_STATE(r13)
119 /* Order setting hwthread_state vs. testing hwthread_req */
121 lbz r0,HSTATE_HWTHREAD_REQ(r13)
128 /* Return SRR1 from power7_nap() */
132 2: b pnv_wakeup_noloss
135 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
136 #endif /* CONFIG_PPC_P7_NAP */
137 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
139 EXC_REAL_END(system_reset, 0x100, 0x200)
140 EXC_VIRT_NONE(0x4100, 0x4200)
141 EXC_COMMON(system_reset_common, 0x100, system_reset_exception)
143 #ifdef CONFIG_PPC_PSERIES
145 * Vectors for the FWNMI option. Share common code.
147 TRAMP_REAL_BEGIN(system_reset_fwnmi)
148 SET_SCRATCH0(r13) /* save r13 */
149 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
151 #endif /* CONFIG_PPC_PSERIES */
154 EXC_REAL_BEGIN(machine_check, 0x200, 0x300)
155 /* This is moved out of line as it can be patched by FW, but
156 * some code path might still want to branch into the original
159 SET_SCRATCH0(r13) /* save r13 */
161 * Running native on arch 2.06 or later, we may wakeup from winkle
162 * inside machine check. If yes, then last bit of HSPGR0 would be set
163 * to 1. Hence clear it unconditionally.
168 EXCEPTION_PROLOG_0(PACA_EXMC)
170 b machine_check_powernv_early
172 b machine_check_pSeries_0
173 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
174 EXC_REAL_END(machine_check, 0x200, 0x300)
175 EXC_VIRT_NONE(0x4200, 0x4300)
176 TRAMP_REAL_BEGIN(machine_check_powernv_early)
178 EXCEPTION_PROLOG_1(PACA_EXMC, NOTEST, 0x200)
183 * Original R9 to R13 is saved on PACA_EXMC
185 * Switch to mc_emergency stack and handle re-entrancy (we limit
186 * the nested MCE upto level 4 to avoid stack overflow).
187 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
189 * We use paca->in_mce to check whether this is the first entry or
190 * nested machine check. We increment paca->in_mce to track nested
193 * If this is the first entry then set stack pointer to
194 * paca->mc_emergency_sp, otherwise r1 is already pointing to
195 * stack frame on mc_emergency stack.
197 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
198 * checkstop if we get another machine check exception before we do
199 * rfid with MSR_ME=1.
201 mr r11,r1 /* Save r1 */
202 lhz r10,PACA_IN_MCE(r13)
203 cmpwi r10,0 /* Are we in nested machine check */
204 bne 0f /* Yes, we are. */
205 /* First machine check entry */
206 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
207 0: subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
208 addi r10,r10,1 /* increment paca->in_mce */
209 sth r10,PACA_IN_MCE(r13)
210 /* Limit nested MCE to level 4 to avoid stack overflow */
212 bgt 2f /* Check if we hit limit of 4 */
213 std r11,GPR1(r1) /* Save r1 on the stack. */
214 std r11,0(r1) /* make stack chain pointer */
215 mfspr r11,SPRN_SRR0 /* Save SRR0 */
217 mfspr r11,SPRN_SRR1 /* Save SRR1 */
219 mfspr r11,SPRN_DAR /* Save DAR */
221 mfspr r11,SPRN_DSISR /* Save DSISR */
223 std r9,_CCR(r1) /* Save CR in stackframe */
224 /* Save r9 through r13 from EXMC save area to stack frame. */
225 EXCEPTION_PROLOG_COMMON_2(PACA_EXMC)
226 mfmsr r11 /* get MSR value */
227 ori r11,r11,MSR_ME /* turn on ME bit */
228 ori r11,r11,MSR_RI /* turn on RI bit */
229 LOAD_HANDLER(r12, machine_check_handle_early)
230 1: mtspr SPRN_SRR0,r12
233 b . /* prevent speculative execution */
235 /* Stack overflow. Stay on emergency stack and panic.
236 * Keep the ME bit off while panic-ing, so that if we hit
237 * another machine check we checkstop.
239 addi r1,r1,INT_FRAME_SIZE /* go back to previous stack frame */
241 LOAD_HANDLER(r12, unrecover_mce)
243 andc r11,r11,r10 /* Turn off MSR_ME */
245 b . /* prevent speculative execution */
246 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
248 TRAMP_REAL_BEGIN(machine_check_pSeries)
249 .globl machine_check_fwnmi
251 SET_SCRATCH0(r13) /* save r13 */
252 EXCEPTION_PROLOG_0(PACA_EXMC)
253 machine_check_pSeries_0:
254 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST_PR, 0x200)
256 * The following is essentially EXCEPTION_PROLOG_PSERIES_1 with the
257 * difference that MSR_RI is not enabled, because PACA_EXMC is being
258 * used, so nested machine check corrupts it. machine_check_common
264 LOAD_HANDLER(r12, machine_check_common)
269 b . /* prevent speculative execution */
271 TRAMP_KVM_SKIP(PACA_EXMC, 0x200)
273 EXC_COMMON_BEGIN(machine_check_common)
275 * Machine check is different because we use a different
276 * save area: PACA_EXMC instead of PACA_EXGEN.
279 std r10,PACA_EXMC+EX_DAR(r13)
281 stw r10,PACA_EXMC+EX_DSISR(r13)
282 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
284 RECONCILE_IRQ_STATE(r10, r11)
285 ld r3,PACA_EXMC+EX_DAR(r13)
286 lwz r4,PACA_EXMC+EX_DSISR(r13)
287 /* Enable MSR_RI when finished with PACA_EXMC */
293 addi r3,r1,STACK_FRAME_OVERHEAD
294 bl machine_check_exception
297 #define MACHINE_CHECK_HANDLER_WINDUP \
298 /* Clear MSR_RI before setting SRR0 and SRR1. */\
300 mfmsr r9; /* get MSR value */ \
302 mtmsrd r9,1; /* Clear MSR_RI */ \
303 /* Move original SRR0 and SRR1 into the respective regs */ \
305 mtspr SPRN_SRR1,r9; \
307 mtspr SPRN_SRR0,r3; \
319 /* Decrement paca->in_mce. */ \
320 lhz r12,PACA_IN_MCE(r13); \
322 sth r12,PACA_IN_MCE(r13); \
324 REST_2GPRS(12, r1); \
325 /* restore original r1. */ \
329 * Handle machine check early in real mode. We come here with
330 * ME=1, MMU (IR=0 and DR=0) off and using MC emergency stack.
332 EXC_COMMON_BEGIN(machine_check_handle_early)
333 std r0,GPR0(r1) /* Save r0 */
334 EXCEPTION_PROLOG_COMMON_3(0x200)
336 addi r3,r1,STACK_FRAME_OVERHEAD
337 bl machine_check_early
338 std r3,RESULT(r1) /* Save result */
340 #ifdef CONFIG_PPC_P7_NAP
342 * Check if thread was in power saving mode. We come here when any
343 * of the following is true:
344 * a. thread wasn't in power saving mode
345 * b. thread was in power saving mode with no state loss,
346 * supervisor state loss or hypervisor state loss.
348 * Go back to nap/sleep/winkle mode again if (b) is true.
350 rlwinm. r11,r12,47-31,30,31 /* Was it in power saving mode? */
351 beq 4f /* No, it wasn;t */
352 /* Thread was in power saving mode. Go back to nap again. */
355 /* Supervisor/Hypervisor state loss */
357 stb r0,PACA_NAPSTATELOST(r13)
358 3: bl machine_check_queue_event
359 MACHINE_CHECK_HANDLER_WINDUP
363 * Check what idle state this CPU was in and go back to same mode
366 lbz r3,PACA_THREAD_IDLE_STATE(r13)
367 cmpwi r3,PNV_THREAD_NAP
369 IDLE_STATE_ENTER_SEQ(PPC_NAP)
372 cmpwi r3,PNV_THREAD_SLEEP
374 IDLE_STATE_ENTER_SEQ(PPC_SLEEP)
379 * Go back to winkle. Please note that this thread was woken up in
380 * machine check from winkle and have not restored the per-subcore
381 * state. Hence before going back to winkle, set last bit of HSPGR0
382 * to 1. This will make sure that if this thread gets woken up
383 * again at reset vector 0x100 then it will get chance to restore
388 IDLE_STATE_ENTER_SEQ(PPC_WINKLE)
393 * Check if we are coming from hypervisor userspace. If yes then we
394 * continue in host kernel in V mode to deliver the MC event.
396 rldicl. r11,r12,4,63 /* See if MC hit while in HV mode. */
398 andi. r11,r12,MSR_PR /* See if coming from user. */
399 bne 9f /* continue in V mode if we are. */
402 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
404 * We are coming from kernel context. Check if we are coming from
405 * guest. if yes, then we can continue. We will fall through
406 * do_kvm_200->kvmppc_interrupt to deliver the MC event to guest.
408 lbz r11,HSTATE_IN_GUEST(r13)
409 cmpwi r11,0 /* Check if coming from guest */
410 bne 9f /* continue if we are. */
413 * At this point we are not sure about what context we come from.
414 * Queue up the MCE event and return from the interrupt.
415 * But before that, check if this is an un-recoverable exception.
416 * If yes, then stay on emergency stack and panic.
420 1: mfspr r11,SPRN_SRR0
421 LOAD_HANDLER(r10,unrecover_mce)
425 * We are going down. But there are chances that we might get hit by
426 * another MCE during panic path and we may run into unstable state
427 * with no way out. Hence, turn ME bit off while going down, so that
428 * when another MCE is hit during panic path, system will checkstop
429 * and hypervisor will get restarted cleanly by SP.
432 andc r10,r10,r3 /* Turn off MSR_ME */
438 * Check if we have successfully handled/recovered from error, if not
439 * then stay on emergency stack and panic.
441 ld r3,RESULT(r1) /* Load result */
442 cmpdi r3,0 /* see if we handled MCE successfully */
444 beq 1b /* if !handled then panic */
446 * Return from MC interrupt.
447 * Queue up the MCE event so that we can log it later, while
448 * returning from kernel or opal call.
450 bl machine_check_queue_event
451 MACHINE_CHECK_HANDLER_WINDUP
454 /* Deliver the machine check to host kernel in V mode. */
455 MACHINE_CHECK_HANDLER_WINDUP
456 b machine_check_pSeries
458 EXC_COMMON_BEGIN(unrecover_mce)
459 /* Invoke machine_check_exception to print MCE event and panic. */
460 addi r3,r1,STACK_FRAME_OVERHEAD
461 bl machine_check_exception
463 * We will not reach here. Even if we did, there is no way out. Call
464 * unrecoverable_exception and die.
466 1: addi r3,r1,STACK_FRAME_OVERHEAD
467 bl unrecoverable_exception
471 EXC_REAL(data_access, 0x300, 0x380)
472 EXC_VIRT(data_access, 0x4300, 0x4380, 0x300)
473 TRAMP_KVM_SKIP(PACA_EXGEN, 0x300)
475 EXC_COMMON_BEGIN(data_access_common)
477 * Here r13 points to the paca, r9 contains the saved CR,
478 * SRR0 and SRR1 are saved in r11 and r12,
479 * r9 - r13 are saved in paca->exgen.
482 std r10,PACA_EXGEN+EX_DAR(r13)
484 stw r10,PACA_EXGEN+EX_DSISR(r13)
485 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
486 RECONCILE_IRQ_STATE(r10, r11)
488 ld r3,PACA_EXGEN+EX_DAR(r13)
489 lwz r4,PACA_EXGEN+EX_DSISR(r13)
493 BEGIN_MMU_FTR_SECTION
494 b do_hash_page /* Try to handle as hpte fault */
497 ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
500 EXC_REAL_BEGIN(data_access_slb, 0x380, 0x400)
502 EXCEPTION_PROLOG_0(PACA_EXSLB)
503 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
504 std r3,PACA_EXSLB+EX_R3(r13)
508 #ifndef CONFIG_RELOCATABLE
512 * We can't just use a direct branch to slb_miss_realmode
513 * because the distance from here to there depends on where
514 * the kernel ends up being put.
517 LOAD_HANDLER(r10, slb_miss_realmode)
521 EXC_REAL_END(data_access_slb, 0x380, 0x400)
523 EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x4400)
525 EXCEPTION_PROLOG_0(PACA_EXSLB)
526 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
527 std r3,PACA_EXSLB+EX_R3(r13)
531 #ifndef CONFIG_RELOCATABLE
535 * We can't just use a direct branch to slb_miss_realmode
536 * because the distance from here to there depends on where
537 * the kernel ends up being put.
540 LOAD_HANDLER(r10, slb_miss_realmode)
544 EXC_VIRT_END(data_access_slb, 0x4380, 0x4400)
545 TRAMP_KVM_SKIP(PACA_EXSLB, 0x380)
548 EXC_REAL(instruction_access, 0x400, 0x480)
549 EXC_VIRT(instruction_access, 0x4400, 0x4480, 0x400)
550 TRAMP_KVM(PACA_EXGEN, 0x400)
552 EXC_COMMON_BEGIN(instruction_access_common)
553 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
554 RECONCILE_IRQ_STATE(r10, r11)
561 BEGIN_MMU_FTR_SECTION
562 b do_hash_page /* Try to handle as hpte fault */
565 ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
568 EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x500)
570 EXCEPTION_PROLOG_0(PACA_EXSLB)
571 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
572 std r3,PACA_EXSLB+EX_R3(r13)
573 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
576 #ifndef CONFIG_RELOCATABLE
580 LOAD_HANDLER(r10, slb_miss_realmode)
584 EXC_REAL_END(instruction_access_slb, 0x480, 0x500)
586 EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x4500)
588 EXCEPTION_PROLOG_0(PACA_EXSLB)
589 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
590 std r3,PACA_EXSLB+EX_R3(r13)
591 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
594 #ifndef CONFIG_RELOCATABLE
598 LOAD_HANDLER(r10, slb_miss_realmode)
602 EXC_VIRT_END(instruction_access_slb, 0x4480, 0x4500)
603 TRAMP_KVM(PACA_EXSLB, 0x480)
606 /* This handler is used by both 0x380 and 0x480 slb miss interrupts */
607 EXC_COMMON_BEGIN(slb_miss_realmode)
609 * r13 points to the PACA, r9 contains the saved CR,
610 * r12 contain the saved SRR1, SRR0 is still ready for return
611 * r3 has the faulting address
612 * r9 - r13 are saved in paca->exslb.
613 * r3 is saved in paca->slb_r3
614 * cr6.eq is set for a D-SLB miss, clear for a I-SLB miss
615 * We assume we aren't going to take any exceptions during this
619 #ifdef CONFIG_RELOCATABLE
623 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
624 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
625 std r3,PACA_EXSLB+EX_DAR(r13)
628 #ifdef CONFIG_PPC_STD_MMU_64
629 BEGIN_MMU_FTR_SECTION
630 bl slb_allocate_realmode
631 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_RADIX)
634 ld r10,PACA_EXSLB+EX_LR(r13)
635 ld r3,PACA_EXSLB+EX_R3(r13)
636 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
639 beq 8f /* if bad address, make full stack frame */
641 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
644 /* All done -- return from exception. */
649 mtcrf 0x02,r9 /* I/D indication is in cr6 */
650 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
653 RESTORE_PPR_PACA(PACA_EXSLB, r9)
654 ld r9,PACA_EXSLB+EX_R9(r13)
655 ld r10,PACA_EXSLB+EX_R10(r13)
656 ld r11,PACA_EXSLB+EX_R11(r13)
657 ld r12,PACA_EXSLB+EX_R12(r13)
658 ld r13,PACA_EXSLB+EX_R13(r13)
660 b . /* prevent speculative execution */
662 2: mfspr r11,SPRN_SRR0
663 LOAD_HANDLER(r10,unrecov_slb)
670 8: mfspr r11,SPRN_SRR0
671 LOAD_HANDLER(r10,bad_addr_slb)
678 EXC_COMMON_BEGIN(unrecov_slb)
679 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
680 RECONCILE_IRQ_STATE(r10, r11)
682 1: addi r3,r1,STACK_FRAME_OVERHEAD
683 bl unrecoverable_exception
686 EXC_COMMON_BEGIN(bad_addr_slb)
687 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXSLB)
688 RECONCILE_IRQ_STATE(r10, r11)
689 ld r3, PACA_EXSLB+EX_DAR(r13)
692 li r10, 0x480 /* fix trap number for I-SLB miss */
695 addi r3, r1, STACK_FRAME_OVERHEAD
699 EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x600)
700 .globl hardware_interrupt_hv;
701 hardware_interrupt_hv:
703 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
704 EXC_HV, SOFTEN_TEST_HV)
706 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x502)
708 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
709 EXC_STD, SOFTEN_TEST_PR)
711 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0x500)
712 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
713 EXC_REAL_END(hardware_interrupt, 0x500, 0x600)
715 EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x4600)
716 .globl hardware_interrupt_relon_hv;
717 hardware_interrupt_relon_hv:
719 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_HV, SOFTEN_TEST_HV)
721 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_STD, SOFTEN_TEST_PR)
722 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
723 EXC_VIRT_END(hardware_interrupt, 0x4500, 0x4600)
725 EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
728 EXC_REAL(alignment, 0x600, 0x700)
729 EXC_VIRT(alignment, 0x4600, 0x4700, 0x600)
730 TRAMP_KVM(PACA_EXGEN, 0x600)
731 EXC_COMMON_BEGIN(alignment_common)
733 std r10,PACA_EXGEN+EX_DAR(r13)
735 stw r10,PACA_EXGEN+EX_DSISR(r13)
736 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
737 ld r3,PACA_EXGEN+EX_DAR(r13)
738 lwz r4,PACA_EXGEN+EX_DSISR(r13)
742 RECONCILE_IRQ_STATE(r10, r11)
743 addi r3,r1,STACK_FRAME_OVERHEAD
744 bl alignment_exception
748 EXC_REAL(program_check, 0x700, 0x800)
749 EXC_VIRT(program_check, 0x4700, 0x4800, 0x700)
750 TRAMP_KVM(PACA_EXGEN, 0x700)
751 EXC_COMMON_BEGIN(program_check_common)
752 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
754 RECONCILE_IRQ_STATE(r10, r11)
755 addi r3,r1,STACK_FRAME_OVERHEAD
756 bl program_check_exception
760 EXC_REAL(fp_unavailable, 0x800, 0x900)
761 EXC_VIRT(fp_unavailable, 0x4800, 0x4900, 0x800)
762 TRAMP_KVM(PACA_EXGEN, 0x800)
763 EXC_COMMON_BEGIN(fp_unavailable_common)
764 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
765 bne 1f /* if from user, just load it up */
767 RECONCILE_IRQ_STATE(r10, r11)
768 addi r3,r1,STACK_FRAME_OVERHEAD
769 bl kernel_fp_unavailable_exception
772 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
774 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
775 * transaction), go do TM stuff
777 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
779 END_FTR_SECTION_IFSET(CPU_FTR_TM)
782 b fast_exception_return
783 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
784 2: /* User process was in a transaction */
786 RECONCILE_IRQ_STATE(r10, r11)
787 addi r3,r1,STACK_FRAME_OVERHEAD
793 EXC_REAL_MASKABLE(decrementer, 0x900, 0x980)
794 EXC_VIRT_MASKABLE(decrementer, 0x4900, 0x4980, 0x900)
795 TRAMP_KVM(PACA_EXGEN, 0x900)
796 EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
799 EXC_REAL_HV(hdecrementer, 0x980, 0xa00)
800 EXC_VIRT_HV(hdecrementer, 0x4980, 0x4a00, 0x980)
801 TRAMP_KVM_HV(PACA_EXGEN, 0x980)
802 EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
805 EXC_REAL_MASKABLE(doorbell_super, 0xa00, 0xb00)
806 EXC_VIRT_MASKABLE(doorbell_super, 0x4a00, 0x4b00, 0xa00)
807 TRAMP_KVM(PACA_EXGEN, 0xa00)
808 #ifdef CONFIG_PPC_DOORBELL
809 EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
811 EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
815 EXC_REAL(trap_0b, 0xb00, 0xc00)
816 EXC_VIRT(trap_0b, 0x4b00, 0x4c00, 0xb00)
817 TRAMP_KVM(PACA_EXGEN, 0xb00)
818 EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
821 #define LOAD_SYSCALL_HANDLER(reg) \
822 ld reg,PACAKBASE(r13); \
823 ori reg,reg,(ABS_ADDR(system_call_common))@l;
825 /* Syscall routine is used twice, in reloc-off and reloc-on paths */
826 #define SYSCALL_PSERIES_1 \
830 END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
833 mfspr r11,SPRN_SRR0 ; \
836 #define SYSCALL_PSERIES_2_RFID \
837 mfspr r12,SPRN_SRR1 ; \
838 LOAD_SYSCALL_HANDLER(r10) ; \
839 mtspr SPRN_SRR0,r10 ; \
840 ld r10,PACAKMSR(r13) ; \
841 mtspr SPRN_SRR1,r10 ; \
843 b . ; /* prevent speculative execution */
845 #define SYSCALL_PSERIES_3 \
846 /* Fast LE/BE switch system call */ \
847 1: mfspr r12,SPRN_SRR1 ; \
848 xori r12,r12,MSR_LE ; \
849 mtspr SPRN_SRR1,r12 ; \
850 rfid ; /* return to userspace */ \
851 b . ; /* prevent speculative execution */
853 #if defined(CONFIG_RELOCATABLE)
855 * We can't branch directly so we do it via the CTR which
856 * is volatile across system calls.
858 #define SYSCALL_PSERIES_2_DIRECT \
859 LOAD_SYSCALL_HANDLER(r12) ; \
861 mfspr r12,SPRN_SRR1 ; \
866 /* We can branch directly */
867 #define SYSCALL_PSERIES_2_DIRECT \
868 mfspr r12,SPRN_SRR1 ; \
870 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
871 b system_call_common ;
874 EXC_REAL_BEGIN(system_call, 0xc00, 0xd00)
876 * If CONFIG_KVM_BOOK3S_64_HANDLER is set, save the PPR (on systems
877 * that support it) before changing to HMT_MEDIUM. That allows the KVM
878 * code to save that value into the guest state (it is the guest's PPR
879 * value). Otherwise just change to HMT_MEDIUM as userspace has
880 * already saved the PPR.
882 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
885 std r9,PACA_EXGEN+EX_R9(r13)
886 OPT_GET_SPR(r9, SPRN_PPR, CPU_FTR_HAS_PPR);
888 std r10,PACA_EXGEN+EX_R10(r13)
889 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r9, CPU_FTR_HAS_PPR);
897 SYSCALL_PSERIES_2_RFID
899 EXC_REAL_END(system_call, 0xc00, 0xd00)
901 EXC_VIRT_BEGIN(system_call, 0x4c00, 0x4d00)
904 SYSCALL_PSERIES_2_DIRECT
906 EXC_VIRT_END(system_call, 0x4c00, 0x4d00)
908 TRAMP_KVM(PACA_EXGEN, 0xc00)
911 EXC_REAL(single_step, 0xd00, 0xe00)
912 EXC_VIRT(single_step, 0x4d00, 0x4e00, 0xd00)
913 TRAMP_KVM(PACA_EXGEN, 0xd00)
914 EXC_COMMON(single_step_common, 0xd00, single_step_exception)
916 EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0xe20)
917 EXC_VIRT_NONE(0x4e00, 0x4e20)
918 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
919 EXC_COMMON_BEGIN(h_data_storage_common)
921 std r10,PACA_EXGEN+EX_DAR(r13)
922 mfspr r10,SPRN_HDSISR
923 stw r10,PACA_EXGEN+EX_DSISR(r13)
924 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
926 RECONCILE_IRQ_STATE(r10, r11)
927 addi r3,r1,STACK_FRAME_OVERHEAD
932 EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0xe40)
933 EXC_VIRT_NONE(0x4e20, 0x4e40)
934 TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
935 EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
938 EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0xe60)
939 EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x4e60, 0xe40)
940 TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
941 EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
945 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
946 * first, and then eventaully from there to the trampoline to get into virtual
949 __EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0xe80, hmi_exception_early)
950 __TRAMP_REAL_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
951 EXC_VIRT_NONE(0x4e60, 0x4e80)
952 TRAMP_KVM_HV(PACA_EXGEN, 0xe60)
953 TRAMP_REAL_BEGIN(hmi_exception_early)
954 EXCEPTION_PROLOG_1(PACA_EXGEN, KVMTEST_HV, 0xe60)
955 mr r10,r1 /* Save r1 */
956 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
957 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
958 std r9,_CCR(r1) /* save CR in stackframe */
959 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
960 std r11,_NIP(r1) /* save HSRR0 in stackframe */
961 mfspr r12,SPRN_HSRR1 /* Save SRR1 */
962 std r12,_MSR(r1) /* save SRR1 in stackframe */
963 std r10,0(r1) /* make stack chain pointer */
964 std r0,GPR0(r1) /* save r0 in stackframe */
965 std r10,GPR1(r1) /* save r1 in stackframe */
966 EXCEPTION_PROLOG_COMMON_2(PACA_EXGEN)
967 EXCEPTION_PROLOG_COMMON_3(0xe60)
968 addi r3,r1,STACK_FRAME_OVERHEAD
969 bl hmi_exception_realmode
970 /* Windup the stack. */
971 /* Move original HSRR0 and HSRR1 into the respective regs */
989 /* restore original r1. */
993 * Go to virtual mode and pull the HMI event information from
996 .globl hmi_exception_after_realmode
997 hmi_exception_after_realmode:
999 EXCEPTION_PROLOG_0(PACA_EXGEN)
1000 b tramp_real_hmi_exception
1002 EXC_COMMON_ASYNC(hmi_exception_common, 0xe60, handle_hmi_exception)
1005 EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0xea0)
1006 EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x4ea0, 0xe80)
1007 TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1008 #ifdef CONFIG_PPC_DOORBELL
1009 EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1011 EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1015 EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0xec0)
1016 EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x4ec0, 0xea0)
1017 TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
1018 EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1021 EXC_REAL_NONE(0xec0, 0xf00)
1022 EXC_VIRT_NONE(0x4ec0, 0x4f00)
1025 EXC_REAL_OOL(performance_monitor, 0xf00, 0xf20)
1026 EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x4f20, 0xf00)
1027 TRAMP_KVM(PACA_EXGEN, 0xf00)
1028 EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1031 EXC_REAL_OOL(altivec_unavailable, 0xf20, 0xf40)
1032 EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x4f40, 0xf20)
1033 TRAMP_KVM(PACA_EXGEN, 0xf20)
1034 EXC_COMMON_BEGIN(altivec_unavailable_common)
1035 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1036 #ifdef CONFIG_ALTIVEC
1039 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1040 BEGIN_FTR_SECTION_NESTED(69)
1041 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1042 * transaction), go do TM stuff
1044 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1046 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1049 b fast_exception_return
1050 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1051 2: /* User process was in a transaction */
1053 RECONCILE_IRQ_STATE(r10, r11)
1054 addi r3,r1,STACK_FRAME_OVERHEAD
1055 bl altivec_unavailable_tm
1059 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1062 RECONCILE_IRQ_STATE(r10, r11)
1063 addi r3,r1,STACK_FRAME_OVERHEAD
1064 bl altivec_unavailable_exception
1068 EXC_REAL_OOL(vsx_unavailable, 0xf40, 0xf60)
1069 EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x4f60, 0xf40)
1070 TRAMP_KVM(PACA_EXGEN, 0xf40)
1071 EXC_COMMON_BEGIN(vsx_unavailable_common)
1072 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1076 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1077 BEGIN_FTR_SECTION_NESTED(69)
1078 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1079 * transaction), go do TM stuff
1081 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1083 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1086 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1087 2: /* User process was in a transaction */
1089 RECONCILE_IRQ_STATE(r10, r11)
1090 addi r3,r1,STACK_FRAME_OVERHEAD
1091 bl vsx_unavailable_tm
1095 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1098 RECONCILE_IRQ_STATE(r10, r11)
1099 addi r3,r1,STACK_FRAME_OVERHEAD
1100 bl vsx_unavailable_exception
1104 EXC_REAL_OOL(facility_unavailable, 0xf60, 0xf80)
1105 EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x4f80, 0xf60)
1106 TRAMP_KVM(PACA_EXGEN, 0xf60)
1107 EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1110 EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0xfa0)
1111 EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x4fa0, 0xf80)
1112 TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
1113 EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1116 EXC_REAL_NONE(0xfa0, 0x1200)
1117 EXC_VIRT_NONE(0x4fa0, 0x5200)
1119 #ifdef CONFIG_CBE_RAS
1120 EXC_REAL_HV(cbe_system_error, 0x1200, 0x1300)
1121 EXC_VIRT_NONE(0x5200, 0x5300)
1122 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
1123 EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
1124 #else /* CONFIG_CBE_RAS */
1125 EXC_REAL_NONE(0x1200, 0x1300)
1126 EXC_VIRT_NONE(0x5200, 0x5300)
1130 EXC_REAL(instruction_breakpoint, 0x1300, 0x1400)
1131 EXC_VIRT(instruction_breakpoint, 0x5300, 0x5400, 0x1300)
1132 TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
1133 EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1135 EXC_REAL_NONE(0x1400, 0x1500)
1136 EXC_VIRT_NONE(0x5400, 0x5500)
1138 EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x1600)
1139 mtspr SPRN_SPRG_HSCRATCH0,r13
1140 EXCEPTION_PROLOG_0(PACA_EXGEN)
1141 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
1143 #ifdef CONFIG_PPC_DENORMALISATION
1144 mfspr r10,SPRN_HSRR1
1145 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
1146 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1147 addi r11,r11,-4 /* HSRR0 is next instruction */
1152 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
1153 EXC_REAL_END(denorm_exception_hv, 0x1500, 0x1600)
1155 #ifdef CONFIG_PPC_DENORMALISATION
1156 EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x5600)
1157 b exc_real_0x1500_denorm_exception_hv
1158 EXC_VIRT_END(denorm_exception, 0x5500, 0x5600)
1160 EXC_VIRT_NONE(0x5500, 0x5600)
1163 TRAMP_KVM_SKIP(PACA_EXGEN, 0x1500)
1165 #ifdef CONFIG_PPC_DENORMALISATION
1166 TRAMP_REAL_BEGIN(denorm_assist)
1169 * To denormalise we need to move a copy of the register to itself.
1170 * For POWER6 do that here for all FP regs.
1173 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1174 xori r10,r10,(MSR_FE0|MSR_FE1)
1178 #define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1179 #define FMR4(n) FMR2(n) ; FMR2(n+2)
1180 #define FMR8(n) FMR4(n) ; FMR4(n+4)
1181 #define FMR16(n) FMR8(n) ; FMR8(n+8)
1182 #define FMR32(n) FMR16(n) ; FMR16(n+16)
1187 * To denormalise we need to move a copy of the register to itself.
1188 * For POWER7 do that here for the first 32 VSX registers only.
1191 oris r10,r10,MSR_VSX@h
1195 #define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1196 #define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1197 #define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1198 #define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1199 #define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1202 ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
1206 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1208 * To denormalise we need to move a copy of the register to itself.
1209 * For POWER8 we need to do that for all 64 VSX registers
1213 mtspr SPRN_HSRR0,r11
1215 ld r9,PACA_EXGEN+EX_R9(r13)
1216 RESTORE_PPR_PACA(PACA_EXGEN, r10)
1218 ld r10,PACA_EXGEN+EX_CFAR(r13)
1220 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1221 ld r10,PACA_EXGEN+EX_R10(r13)
1222 ld r11,PACA_EXGEN+EX_R11(r13)
1223 ld r12,PACA_EXGEN+EX_R12(r13)
1224 ld r13,PACA_EXGEN+EX_R13(r13)
1229 EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
1232 #ifdef CONFIG_CBE_RAS
1233 EXC_REAL_HV(cbe_maintenance, 0x1600, 0x1700)
1234 EXC_VIRT_NONE(0x5600, 0x5700)
1235 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
1236 EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
1237 #else /* CONFIG_CBE_RAS */
1238 EXC_REAL_NONE(0x1600, 0x1700)
1239 EXC_VIRT_NONE(0x5600, 0x5700)
1243 EXC_REAL(altivec_assist, 0x1700, 0x1800)
1244 EXC_VIRT(altivec_assist, 0x5700, 0x5800, 0x1700)
1245 TRAMP_KVM(PACA_EXGEN, 0x1700)
1246 #ifdef CONFIG_ALTIVEC
1247 EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1249 EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1253 #ifdef CONFIG_CBE_RAS
1254 EXC_REAL_HV(cbe_thermal, 0x1800, 0x1900)
1255 EXC_VIRT_NONE(0x5800, 0x5900)
1256 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
1257 EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
1258 #else /* CONFIG_CBE_RAS */
1259 EXC_REAL_NONE(0x1800, 0x1900)
1260 EXC_VIRT_NONE(0x5800, 0x5900)
1265 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1266 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1267 * - If it was a doorbell we return immediately since doorbells are edge
1268 * triggered and won't automatically refire.
1269 * - If it was a HMI we return immediately since we handled it in realmode
1270 * and it won't refire.
1271 * - else we hard disable and return.
1272 * This is called with r10 containing the value to OR to the paca field.
1274 #define MASKED_INTERRUPT(_H) \
1275 masked_##_H##interrupt: \
1276 std r11,PACA_EXGEN+EX_R11(r13); \
1277 lbz r11,PACAIRQHAPPENED(r13); \
1279 stb r11,PACAIRQHAPPENED(r13); \
1280 cmpwi r10,PACA_IRQ_DEC; \
1283 ori r10,r10,0xffff; \
1284 mtspr SPRN_DEC,r10; \
1286 1: cmpwi r10,PACA_IRQ_DBELL; \
1288 cmpwi r10,PACA_IRQ_HMI; \
1290 mfspr r10,SPRN_##_H##SRR1; \
1291 rldicl r10,r10,48,1; /* clear MSR_EE */ \
1292 rotldi r10,r10,16; \
1293 mtspr SPRN_##_H##SRR1,r10; \
1295 ld r9,PACA_EXGEN+EX_R9(r13); \
1296 ld r10,PACA_EXGEN+EX_R10(r13); \
1297 ld r11,PACA_EXGEN+EX_R11(r13); \
1298 GET_SCRATCH0(r13); \
1303 * Real mode exceptions actually use this too, but alternate
1304 * instruction code patches (which end up in the common .text area)
1305 * cannot reach these if they are put there.
1307 USE_FIXED_SECTION(virt_trampolines)
1311 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1312 TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
1314 * Here all GPRs are unchanged from when the interrupt happened
1315 * except for r13, which is saved in SPRG_SCRATCH0.
1317 mfspr r13, SPRN_SRR0
1319 mtspr SPRN_SRR0, r13
1324 TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
1326 * Here all GPRs are unchanged from when the interrupt happened
1327 * except for r13, which is saved in SPRG_SCRATCH0.
1329 mfspr r13, SPRN_HSRR0
1331 mtspr SPRN_HSRR0, r13
1338 * Ensure that any handlers that get invoked from the exception prologs
1339 * above are below the first 64KB (0x10000) of the kernel image because
1340 * the prologs assemble the addresses of these handlers using the
1341 * LOAD_HANDLER macro, which uses an ori instruction.
1344 /*** Common interrupt handlers ***/
1348 * Relocation-on interrupts: A subset of the interrupts can be delivered
1349 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1350 * it. Addresses are the same as the original interrupt addresses, but
1351 * offset by 0xc000000000004000.
1352 * It's impossible to receive interrupts below 0x300 via this mechanism.
1353 * KVM: None of these traps are from the guest ; anything that escalated
1354 * to HV=1 from HV=0 is delivered via real mode handlers.
1358 * This uses the standard macro, since the original 0x300 vector
1359 * only has extra guff for STAB-based processors -- which never
1363 EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
1364 b __ppc64_runlatch_on
1366 USE_FIXED_SECTION(virt_trampolines)
1368 * The __end_interrupts marker must be past the out-of-line (OOL)
1369 * handlers, so that they are copied to real address 0x100 when running
1370 * a relocatable kernel. This ensures they can be reached from the short
1371 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1372 * directly, without using LOAD_HANDLER().
1375 .globl __end_interrupts
1377 DEFINE_FIXED_SYMBOL(__end_interrupts)
1379 #ifdef CONFIG_PPC_970_NAP
1380 EXC_COMMON_BEGIN(power4_fixup_nap)
1382 std r9,TI_LOCAL_FLAGS(r11)
1383 ld r10,_LINK(r1) /* make idle task do the */
1384 std r10,_NIP(r1) /* equivalent of a blr */
1388 CLOSE_FIXED_SECTION(real_vectors);
1389 CLOSE_FIXED_SECTION(real_trampolines);
1390 CLOSE_FIXED_SECTION(virt_vectors);
1391 CLOSE_FIXED_SECTION(virt_trampolines);
1400 #ifdef CONFIG_PPC_STD_MMU_64
1401 andis. r0,r4,0xa410 /* weird error? */
1402 bne- handle_page_fault /* if not, try to insert a HPTE */
1403 andis. r0,r4,DSISR_DABRMATCH@h
1404 bne- handle_dabr_fault
1405 CURRENT_THREAD_INFO(r11, r1)
1406 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1407 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1408 bne 77f /* then don't call hash_page now */
1411 * r3 contains the faulting address
1413 * r5 contains the trap number
1416 * at return r3 = 0 for success, 1 for page fault, negative for error
1420 bl __hash_page /* build HPTE if possible */
1421 cmpdi r3,0 /* see if __hash_page succeeded */
1424 beq fast_exc_return_irq /* Return from exception on success */
1428 #endif /* CONFIG_PPC_STD_MMU_64 */
1430 /* Here we have a page fault that hash_page can't handle. */
1434 addi r3,r1,STACK_FRAME_OVERHEAD
1440 addi r3,r1,STACK_FRAME_OVERHEAD
1445 /* We have a data breakpoint exception - handle it */
1450 addi r3,r1,STACK_FRAME_OVERHEAD
1452 12: b ret_from_except_lite
1455 #ifdef CONFIG_PPC_STD_MMU_64
1456 /* We have a page fault that hash_page could handle but HV refused
1461 addi r3,r1,STACK_FRAME_OVERHEAD
1468 * We come here as a result of a DSI at a point where we don't want
1469 * to call hash_page, such as when we are accessing memory (possibly
1470 * user memory) inside a PMU interrupt that occurred while interrupts
1471 * were soft-disabled. We want to invoke the exception handler for
1472 * the access, or panic if there isn't a handler.
1476 addi r3,r1,STACK_FRAME_OVERHEAD
1482 * Here we have detected that the kernel stack pointer is bad.
1483 * R9 contains the saved CR, r13 points to the paca,
1484 * r10 contains the (bad) kernel stack pointer,
1485 * r11 and r12 contain the saved SRR0 and SRR1.
1486 * We switch to using an emergency stack, save the registers there,
1487 * and call kernel_bad_stack(), which panics.
1490 ld r1,PACAEMERGSP(r13)
1491 subi r1,r1,64+INT_FRAME_SIZE
1497 mfspr r12,SPRN_DSISR
1523 std r10,ORIG_GPR3(r1)
1524 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1527 lhz r12,PACA_TRAP_SAVE(r13)
1529 addi r11,r1,INT_FRAME_SIZE
1534 ld r11,exception_marker@toc(r2)
1536 std r11,STACK_FRAME_OVERHEAD-16(r1)
1537 1: addi r3,r1,STACK_FRAME_OVERHEAD
1542 * Called from arch_local_irq_enable when an interrupt needs
1543 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1544 * which kind of interrupt. MSR:EE is already off. We generate a
1545 * stackframe like if a real interrupt had happened.
1547 * Note: While MSR:EE is off, we need to make sure that _MSR
1548 * in the generated frame has EE set to 1 or the exception
1549 * handler will not properly re-enable them.
1551 _GLOBAL(__replay_interrupt)
1552 /* We are going to jump to the exception common code which
1553 * will retrieve various register values from the PACA which
1554 * we don't give a damn about, so we don't bother storing them.
1561 beq decrementer_common
1563 beq hardware_interrupt_common
1566 beq h_doorbell_common
1568 beq h_virt_irq_common
1570 beq hmi_exception_common
1573 beq doorbell_super_common
1574 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)