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>
20 * We layout physical memory as follows:
21 * 0x0000 - 0x00ff : Secondary processor spin code
22 * 0x0100 - 0x17ff : pSeries Interrupt prologs
23 * 0x1800 - 0x4000 : interrupt support common interrupt prologs
24 * 0x4000 - 0x5fff : pSeries interrupts with IR=1,DR=1
25 * 0x6000 - 0x6fff : more interrupt support including for IR=1,DR=1
26 * 0x7000 - 0x7fff : FWNMI data area
27 * 0x8000 - 0x8fff : Initial (CPU0) segment table
28 * 0x9000 - : Early init and support code
30 /* Syscall routine is used twice, in reloc-off and reloc-on paths */
31 #define SYSCALL_PSERIES_1 \
35 END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
38 mfspr r11,SPRN_SRR0 ; \
41 #define SYSCALL_PSERIES_2_RFID \
42 mfspr r12,SPRN_SRR1 ; \
43 ld r10,PACAKBASE(r13) ; \
44 LOAD_HANDLER(r10, system_call_entry) ; \
45 mtspr SPRN_SRR0,r10 ; \
46 ld r10,PACAKMSR(r13) ; \
47 mtspr SPRN_SRR1,r10 ; \
49 b . ; /* prevent speculative execution */
51 #define SYSCALL_PSERIES_3 \
52 /* Fast LE/BE switch system call */ \
53 1: mfspr r12,SPRN_SRR1 ; \
54 xori r12,r12,MSR_LE ; \
55 mtspr SPRN_SRR1,r12 ; \
56 rfid ; /* return to userspace */ \
57 b . ; /* prevent speculative execution */
59 #if defined(CONFIG_RELOCATABLE)
61 * We can't branch directly; in the direct case we use LR
62 * and system_call_entry restores LR. (We thus need to move
63 * LR to r10 in the RFID case too.)
65 #define SYSCALL_PSERIES_2_DIRECT \
67 ld r12,PACAKBASE(r13) ; \
68 LOAD_HANDLER(r12, system_call_entry_direct) ; \
70 mfspr r12,SPRN_SRR1 ; \
71 /* Re-use of r13... No spare regs to do this */ \
74 GET_PACA(r13) ; /* get r13 back */ \
77 /* We can branch directly */
78 #define SYSCALL_PSERIES_2_DIRECT \
79 mfspr r12,SPRN_SRR1 ; \
81 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
82 b system_call_entry_direct ;
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.
94 .globl __start_interrupts
97 .globl system_reset_pSeries;
99 HMT_MEDIUM_PPR_DISCARD
101 #ifdef CONFIG_PPC_P7_NAP
103 /* Running native on arch 2.06 or later, check if we are
104 * waking up from nap. We only handle no state loss and
105 * supervisor state loss. We do -not- handle hypervisor
106 * state loss at this time.
109 rlwinm. r13,r13,47-31,30,31
112 /* waking up from powersave (nap) state */
114 /* Total loss of HV state is fatal, we could try to use the
115 * PIR to locate a PACA, then use an emergency stack etc...
116 * OPAL v3 based powernv platforms have new idle states
117 * which fall in this catagory.
122 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
123 li r0,KVM_HWTHREAD_IN_KERNEL
124 stb r0,HSTATE_HWTHREAD_STATE(r13)
125 /* Order setting hwthread_state vs. testing hwthread_req */
127 lbz r0,HSTATE_HWTHREAD_REQ(r13)
135 b power7_wakeup_noloss
136 2: b power7_wakeup_loss
138 /* Fast Sleep wakeup on PowerNV */
140 b power7_wakeup_tb_loss
143 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
144 #endif /* CONFIG_PPC_P7_NAP */
145 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
149 machine_check_pSeries_1:
150 /* This is moved out of line as it can be patched by FW, but
151 * some code path might still want to branch into the original
154 HMT_MEDIUM_PPR_DISCARD
155 SET_SCRATCH0(r13) /* save r13 */
156 #ifdef CONFIG_PPC_P7_NAP
158 /* Running native on arch 2.06 or later, check if we are
159 * waking up from nap. We only handle no state loss and
160 * supervisor state loss. We do -not- handle hypervisor
161 * state loss at this time.
164 rlwinm. r13,r13,47-31,30,31
165 OPT_GET_SPR(r13, SPRN_CFAR, CPU_FTR_CFAR)
169 rlwinm. r13,r13,47-31,30,31
170 /* waking up from powersave (nap) state */
172 /* Total loss of HV state is fatal. let's just stay stuck here */
173 OPT_GET_SPR(r13, SPRN_CFAR, CPU_FTR_CFAR)
176 OPT_SET_SPR(r13, SPRN_CFAR, CPU_FTR_CFAR)
177 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
178 #endif /* CONFIG_PPC_P7_NAP */
179 EXCEPTION_PROLOG_0(PACA_EXMC)
181 b machine_check_pSeries_early
183 b machine_check_pSeries_0
184 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
187 .globl data_access_pSeries
189 HMT_MEDIUM_PPR_DISCARD
191 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, data_access_common, EXC_STD,
195 .globl data_access_slb_pSeries
196 data_access_slb_pSeries:
197 HMT_MEDIUM_PPR_DISCARD
199 EXCEPTION_PROLOG_0(PACA_EXSLB)
200 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST, 0x380)
201 std r3,PACA_EXSLB+EX_R3(r13)
204 /* Keep that around for when we re-implement dynamic VSIDs */
206 bge slb_miss_user_pseries
207 #endif /* __DISABLED__ */
209 #ifndef CONFIG_RELOCATABLE
213 * We can't just use a direct branch to slb_miss_realmode
214 * because the distance from here to there depends on where
215 * the kernel ends up being put.
218 ld r10,PACAKBASE(r13)
219 LOAD_HANDLER(r10, slb_miss_realmode)
224 STD_EXCEPTION_PSERIES(0x400, 0x400, instruction_access)
227 .globl instruction_access_slb_pSeries
228 instruction_access_slb_pSeries:
229 HMT_MEDIUM_PPR_DISCARD
231 EXCEPTION_PROLOG_0(PACA_EXSLB)
232 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
233 std r3,PACA_EXSLB+EX_R3(r13)
234 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
236 /* Keep that around for when we re-implement dynamic VSIDs */
238 bge slb_miss_user_pseries
239 #endif /* __DISABLED__ */
241 #ifndef CONFIG_RELOCATABLE
245 ld r10,PACAKBASE(r13)
246 LOAD_HANDLER(r10, slb_miss_realmode)
251 /* We open code these as we can't have a ". = x" (even with
252 * x = "." within a feature section
255 .globl hardware_interrupt_pSeries;
256 .globl hardware_interrupt_hv;
257 hardware_interrupt_pSeries:
258 hardware_interrupt_hv:
259 HMT_MEDIUM_PPR_DISCARD
261 _MASKABLE_EXCEPTION_PSERIES(0x502, hardware_interrupt,
262 EXC_HV, SOFTEN_TEST_HV)
263 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x502)
265 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt,
266 EXC_STD, SOFTEN_TEST_HV_201)
267 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0x500)
268 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
270 STD_EXCEPTION_PSERIES(0x600, 0x600, alignment)
271 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x600)
273 STD_EXCEPTION_PSERIES(0x700, 0x700, program_check)
274 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x700)
276 STD_EXCEPTION_PSERIES(0x800, 0x800, fp_unavailable)
277 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x800)
280 .globl decrementer_pSeries
282 _MASKABLE_EXCEPTION_PSERIES(0x900, decrementer, EXC_STD, SOFTEN_TEST_PR)
284 STD_EXCEPTION_HV(0x980, 0x982, hdecrementer)
286 MASKABLE_EXCEPTION_PSERIES(0xa00, 0xa00, doorbell_super)
287 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xa00)
289 STD_EXCEPTION_PSERIES(0xb00, 0xb00, trap_0b)
290 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xb00)
293 .globl system_call_pSeries
296 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
299 std r9,PACA_EXGEN+EX_R9(r13)
300 std r10,PACA_EXGEN+EX_R10(r13)
306 SYSCALL_PSERIES_2_RFID
308 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0xc00)
310 STD_EXCEPTION_PSERIES(0xd00, 0xd00, single_step)
311 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xd00)
313 /* At 0xe??? we have a bunch of hypervisor exceptions, we branch
314 * out of line to handle them
317 hv_data_storage_trampoline:
319 EXCEPTION_PROLOG_0(PACA_EXGEN)
323 hv_instr_storage_trampoline:
325 EXCEPTION_PROLOG_0(PACA_EXGEN)
329 emulation_assist_trampoline:
331 EXCEPTION_PROLOG_0(PACA_EXGEN)
332 b emulation_assist_hv
335 hv_exception_trampoline:
337 EXCEPTION_PROLOG_0(PACA_EXGEN)
341 hv_doorbell_trampoline:
343 EXCEPTION_PROLOG_0(PACA_EXGEN)
346 /* We need to deal with the Altivec unavailable exception
347 * here which is at 0xf20, thus in the middle of the
348 * prolog code of the PerformanceMonitor one. A little
349 * trickery is thus necessary
352 performance_monitor_pseries_trampoline:
354 EXCEPTION_PROLOG_0(PACA_EXGEN)
355 b performance_monitor_pSeries
358 altivec_unavailable_pseries_trampoline:
360 EXCEPTION_PROLOG_0(PACA_EXGEN)
361 b altivec_unavailable_pSeries
364 vsx_unavailable_pseries_trampoline:
366 EXCEPTION_PROLOG_0(PACA_EXGEN)
367 b vsx_unavailable_pSeries
370 facility_unavailable_trampoline:
372 EXCEPTION_PROLOG_0(PACA_EXGEN)
373 b facility_unavailable_pSeries
376 hv_facility_unavailable_trampoline:
378 EXCEPTION_PROLOG_0(PACA_EXGEN)
379 b facility_unavailable_hv
381 #ifdef CONFIG_CBE_RAS
382 STD_EXCEPTION_HV(0x1200, 0x1202, cbe_system_error)
383 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1202)
384 #endif /* CONFIG_CBE_RAS */
386 STD_EXCEPTION_PSERIES(0x1300, 0x1300, instruction_breakpoint)
387 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_STD, 0x1300)
390 .global denorm_exception_hv
392 HMT_MEDIUM_PPR_DISCARD
393 mtspr SPRN_SPRG_HSCRATCH0,r13
394 EXCEPTION_PROLOG_0(PACA_EXGEN)
395 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
397 #ifdef CONFIG_PPC_DENORMALISATION
399 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
400 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
401 addi r11,r11,-4 /* HSRR0 is next instruction */
406 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
407 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_STD, 0x1500)
409 #ifdef CONFIG_CBE_RAS
410 STD_EXCEPTION_HV(0x1600, 0x1602, cbe_maintenance)
411 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1602)
412 #endif /* CONFIG_CBE_RAS */
414 STD_EXCEPTION_PSERIES(0x1700, 0x1700, altivec_assist)
415 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x1700)
417 #ifdef CONFIG_CBE_RAS
418 STD_EXCEPTION_HV(0x1800, 0x1802, cbe_thermal)
419 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1802)
422 #endif /* CONFIG_CBE_RAS */
425 /*** Out of line interrupts support ***/
428 /* moved from 0x200 */
429 machine_check_pSeries_early:
431 EXCEPTION_PROLOG_1(PACA_EXMC, NOTEST, 0x200)
436 * Original R9 to R13 is saved on PACA_EXMC
438 * Switch to mc_emergency stack and handle re-entrancy (we limit
439 * the nested MCE upto level 4 to avoid stack overflow).
440 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
442 * We use paca->in_mce to check whether this is the first entry or
443 * nested machine check. We increment paca->in_mce to track nested
446 * If this is the first entry then set stack pointer to
447 * paca->mc_emergency_sp, otherwise r1 is already pointing to
448 * stack frame on mc_emergency stack.
450 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
451 * checkstop if we get another machine check exception before we do
452 * rfid with MSR_ME=1.
454 mr r11,r1 /* Save r1 */
455 lhz r10,PACA_IN_MCE(r13)
456 cmpwi r10,0 /* Are we in nested machine check */
457 bne 0f /* Yes, we are. */
458 /* First machine check entry */
459 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
460 0: subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
461 addi r10,r10,1 /* increment paca->in_mce */
462 sth r10,PACA_IN_MCE(r13)
463 /* Limit nested MCE to level 4 to avoid stack overflow */
465 bgt 2f /* Check if we hit limit of 4 */
466 std r11,GPR1(r1) /* Save r1 on the stack. */
467 std r11,0(r1) /* make stack chain pointer */
468 mfspr r11,SPRN_SRR0 /* Save SRR0 */
470 mfspr r11,SPRN_SRR1 /* Save SRR1 */
472 mfspr r11,SPRN_DAR /* Save DAR */
474 mfspr r11,SPRN_DSISR /* Save DSISR */
476 std r9,_CCR(r1) /* Save CR in stackframe */
477 /* Save r9 through r13 from EXMC save area to stack frame. */
478 EXCEPTION_PROLOG_COMMON_2(PACA_EXMC)
479 mfmsr r11 /* get MSR value */
480 ori r11,r11,MSR_ME /* turn on ME bit */
481 ori r11,r11,MSR_RI /* turn on RI bit */
482 ld r12,PACAKBASE(r13) /* get high part of &label */
483 LOAD_HANDLER(r12, machine_check_handle_early)
484 1: mtspr SPRN_SRR0,r12
487 b . /* prevent speculative execution */
489 /* Stack overflow. Stay on emergency stack and panic.
490 * Keep the ME bit off while panic-ing, so that if we hit
491 * another machine check we checkstop.
493 addi r1,r1,INT_FRAME_SIZE /* go back to previous stack frame */
495 ld r12,PACAKBASE(r13)
496 LOAD_HANDLER(r12, unrecover_mce)
498 andc r11,r11,r10 /* Turn off MSR_ME */
500 b . /* prevent speculative execution */
501 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
503 machine_check_pSeries:
504 .globl machine_check_fwnmi
506 HMT_MEDIUM_PPR_DISCARD
507 SET_SCRATCH0(r13) /* save r13 */
508 EXCEPTION_PROLOG_0(PACA_EXMC)
509 machine_check_pSeries_0:
510 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST, 0x200)
511 EXCEPTION_PROLOG_PSERIES_1(machine_check_common, EXC_STD)
512 KVM_HANDLER_SKIP(PACA_EXMC, EXC_STD, 0x200)
513 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_STD, 0x300)
514 KVM_HANDLER_SKIP(PACA_EXSLB, EXC_STD, 0x380)
515 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x400)
516 KVM_HANDLER_PR(PACA_EXSLB, EXC_STD, 0x480)
517 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x900)
518 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x982)
520 #ifdef CONFIG_PPC_DENORMALISATION
524 * To denormalise we need to move a copy of the register to itself.
525 * For POWER6 do that here for all FP regs.
528 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
529 xori r10,r10,(MSR_FE0|MSR_FE1)
533 #define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
534 #define FMR4(n) FMR2(n) ; FMR2(n+2)
535 #define FMR8(n) FMR4(n) ; FMR4(n+4)
536 #define FMR16(n) FMR8(n) ; FMR8(n+8)
537 #define FMR32(n) FMR16(n) ; FMR16(n+16)
542 * To denormalise we need to move a copy of the register to itself.
543 * For POWER7 do that here for the first 32 VSX registers only.
546 oris r10,r10,MSR_VSX@h
550 #define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
551 #define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
552 #define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
553 #define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
554 #define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
557 ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
561 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
563 * To denormalise we need to move a copy of the register to itself.
564 * For POWER8 we need to do that for all 64 VSX registers
570 ld r9,PACA_EXGEN+EX_R9(r13)
571 RESTORE_PPR_PACA(PACA_EXGEN, r10)
573 ld r10,PACA_EXGEN+EX_CFAR(r13)
575 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
576 ld r10,PACA_EXGEN+EX_R10(r13)
577 ld r11,PACA_EXGEN+EX_R11(r13)
578 ld r12,PACA_EXGEN+EX_R12(r13)
579 ld r13,PACA_EXGEN+EX_R13(r13)
585 /* moved from 0xe00 */
586 STD_EXCEPTION_HV_OOL(0xe02, h_data_storage)
587 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0xe02)
588 STD_EXCEPTION_HV_OOL(0xe22, h_instr_storage)
589 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe22)
590 STD_EXCEPTION_HV_OOL(0xe42, emulation_assist)
591 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe42)
592 STD_EXCEPTION_HV_OOL(0xe62, hmi_exception) /* need to flush cache ? */
593 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe62)
594 MASKABLE_EXCEPTION_HV_OOL(0xe82, h_doorbell)
595 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe82)
597 /* moved from 0xf00 */
598 STD_EXCEPTION_PSERIES_OOL(0xf00, performance_monitor)
599 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf00)
600 STD_EXCEPTION_PSERIES_OOL(0xf20, altivec_unavailable)
601 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf20)
602 STD_EXCEPTION_PSERIES_OOL(0xf40, vsx_unavailable)
603 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf40)
604 STD_EXCEPTION_PSERIES_OOL(0xf60, facility_unavailable)
605 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf60)
606 STD_EXCEPTION_HV_OOL(0xf82, facility_unavailable)
607 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xf82)
610 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
611 * - If it was a decrementer interrupt, we bump the dec to max and and return.
612 * - If it was a doorbell we return immediately since doorbells are edge
613 * triggered and won't automatically refire.
614 * - else we hard disable and return.
615 * This is called with r10 containing the value to OR to the paca field.
617 #define MASKED_INTERRUPT(_H) \
618 masked_##_H##interrupt: \
619 std r11,PACA_EXGEN+EX_R11(r13); \
620 lbz r11,PACAIRQHAPPENED(r13); \
622 stb r11,PACAIRQHAPPENED(r13); \
623 cmpwi r10,PACA_IRQ_DEC; \
626 ori r10,r10,0xffff; \
627 mtspr SPRN_DEC,r10; \
629 1: cmpwi r10,PACA_IRQ_DBELL; \
631 mfspr r10,SPRN_##_H##SRR1; \
632 rldicl r10,r10,48,1; /* clear MSR_EE */ \
634 mtspr SPRN_##_H##SRR1,r10; \
636 ld r9,PACA_EXGEN+EX_R9(r13); \
637 ld r10,PACA_EXGEN+EX_R10(r13); \
638 ld r11,PACA_EXGEN+EX_R11(r13); \
647 * Called from arch_local_irq_enable when an interrupt needs
648 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
649 * which kind of interrupt. MSR:EE is already off. We generate a
650 * stackframe like if a real interrupt had happened.
652 * Note: While MSR:EE is off, we need to make sure that _MSR
653 * in the generated frame has EE set to 1 or the exception
654 * handler will not properly re-enable them.
656 _GLOBAL(__replay_interrupt)
657 /* We are going to jump to the exception common code which
658 * will retrieve various register values from the PACA which
659 * we don't give a damn about, so we don't bother storing them.
666 beq decrementer_common
668 beq hardware_interrupt_common
671 beq h_doorbell_common
674 beq doorbell_super_common
675 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
678 #ifdef CONFIG_PPC_PSERIES
680 * Vectors for the FWNMI option. Share common code.
682 .globl system_reset_fwnmi
685 HMT_MEDIUM_PPR_DISCARD
686 SET_SCRATCH0(r13) /* save r13 */
687 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
690 #endif /* CONFIG_PPC_PSERIES */
694 * This is used for when the SLB miss handler has to go virtual,
695 * which doesn't happen for now anymore but will once we re-implement
696 * dynamic VSIDs for shared page tables
698 slb_miss_user_pseries:
699 std r10,PACA_EXGEN+EX_R10(r13)
700 std r11,PACA_EXGEN+EX_R11(r13)
701 std r12,PACA_EXGEN+EX_R12(r13)
703 ld r11,PACA_EXSLB+EX_R9(r13)
704 ld r12,PACA_EXSLB+EX_R3(r13)
705 std r10,PACA_EXGEN+EX_R13(r13)
706 std r11,PACA_EXGEN+EX_R9(r13)
707 std r12,PACA_EXGEN+EX_R3(r13)
710 mfspr r11,SRR0 /* save SRR0 */
711 ori r12,r12,slb_miss_user_common@l /* virt addr of handler */
712 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
714 mfspr r12,SRR1 /* and SRR1 */
717 b . /* prevent spec. execution */
718 #endif /* __DISABLED__ */
720 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
721 kvmppc_skip_interrupt:
723 * Here all GPRs are unchanged from when the interrupt happened
724 * except for r13, which is saved in SPRG_SCRATCH0.
733 kvmppc_skip_Hinterrupt:
735 * Here all GPRs are unchanged from when the interrupt happened
736 * except for r13, which is saved in SPRG_SCRATCH0.
738 mfspr r13, SPRN_HSRR0
740 mtspr SPRN_HSRR0, r13
747 * Code from here down to __end_handlers is invoked from the
748 * exception prologs above. Because the prologs assemble the
749 * addresses of these handlers using the LOAD_HANDLER macro,
750 * which uses an ori instruction, these handlers must be in
751 * the first 64k of the kernel image.
754 /*** Common interrupt handlers ***/
756 STD_EXCEPTION_COMMON(0x100, system_reset, system_reset_exception)
758 STD_EXCEPTION_COMMON_ASYNC(0x500, hardware_interrupt, do_IRQ)
759 STD_EXCEPTION_COMMON_ASYNC(0x900, decrementer, timer_interrupt)
760 STD_EXCEPTION_COMMON(0x980, hdecrementer, hdec_interrupt)
761 #ifdef CONFIG_PPC_DOORBELL
762 STD_EXCEPTION_COMMON_ASYNC(0xa00, doorbell_super, doorbell_exception)
764 STD_EXCEPTION_COMMON_ASYNC(0xa00, doorbell_super, unknown_exception)
766 STD_EXCEPTION_COMMON(0xb00, trap_0b, unknown_exception)
767 STD_EXCEPTION_COMMON(0xd00, single_step, single_step_exception)
768 STD_EXCEPTION_COMMON(0xe00, trap_0e, unknown_exception)
769 STD_EXCEPTION_COMMON(0xe40, emulation_assist, emulation_assist_interrupt)
770 STD_EXCEPTION_COMMON(0xe60, hmi_exception, unknown_exception)
771 #ifdef CONFIG_PPC_DOORBELL
772 STD_EXCEPTION_COMMON_ASYNC(0xe80, h_doorbell, doorbell_exception)
774 STD_EXCEPTION_COMMON_ASYNC(0xe80, h_doorbell, unknown_exception)
776 STD_EXCEPTION_COMMON_ASYNC(0xf00, performance_monitor, performance_monitor_exception)
777 STD_EXCEPTION_COMMON(0x1300, instruction_breakpoint, instruction_breakpoint_exception)
778 STD_EXCEPTION_COMMON(0x1502, denorm, unknown_exception)
779 #ifdef CONFIG_ALTIVEC
780 STD_EXCEPTION_COMMON(0x1700, altivec_assist, altivec_assist_exception)
782 STD_EXCEPTION_COMMON(0x1700, altivec_assist, unknown_exception)
784 #ifdef CONFIG_CBE_RAS
785 STD_EXCEPTION_COMMON(0x1200, cbe_system_error, cbe_system_error_exception)
786 STD_EXCEPTION_COMMON(0x1600, cbe_maintenance, cbe_maintenance_exception)
787 STD_EXCEPTION_COMMON(0x1800, cbe_thermal, cbe_thermal_exception)
788 #endif /* CONFIG_CBE_RAS */
791 * Relocation-on interrupts: A subset of the interrupts can be delivered
792 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
793 * it. Addresses are the same as the original interrupt addresses, but
794 * offset by 0xc000000000004000.
795 * It's impossible to receive interrupts below 0x300 via this mechanism.
796 * KVM: None of these traps are from the guest ; anything that escalated
797 * to HV=1 from HV=0 is delivered via real mode handlers.
801 * This uses the standard macro, since the original 0x300 vector
802 * only has extra guff for STAB-based processors -- which never
805 STD_RELON_EXCEPTION_PSERIES(0x4300, 0x300, data_access)
807 .globl data_access_slb_relon_pSeries
808 data_access_slb_relon_pSeries:
810 EXCEPTION_PROLOG_0(PACA_EXSLB)
811 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
812 std r3,PACA_EXSLB+EX_R3(r13)
815 #ifndef CONFIG_RELOCATABLE
819 * We can't just use a direct branch to slb_miss_realmode
820 * because the distance from here to there depends on where
821 * the kernel ends up being put.
824 ld r10,PACAKBASE(r13)
825 LOAD_HANDLER(r10, slb_miss_realmode)
830 STD_RELON_EXCEPTION_PSERIES(0x4400, 0x400, instruction_access)
832 .globl instruction_access_slb_relon_pSeries
833 instruction_access_slb_relon_pSeries:
835 EXCEPTION_PROLOG_0(PACA_EXSLB)
836 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
837 std r3,PACA_EXSLB+EX_R3(r13)
838 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
840 #ifndef CONFIG_RELOCATABLE
844 ld r10,PACAKBASE(r13)
845 LOAD_HANDLER(r10, slb_miss_realmode)
851 .globl hardware_interrupt_relon_pSeries;
852 .globl hardware_interrupt_relon_hv;
853 hardware_interrupt_relon_pSeries:
854 hardware_interrupt_relon_hv:
856 _MASKABLE_RELON_EXCEPTION_PSERIES(0x502, hardware_interrupt, EXC_HV, SOFTEN_TEST_HV)
858 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt, EXC_STD, SOFTEN_TEST_PR)
859 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
860 STD_RELON_EXCEPTION_PSERIES(0x4600, 0x600, alignment)
861 STD_RELON_EXCEPTION_PSERIES(0x4700, 0x700, program_check)
862 STD_RELON_EXCEPTION_PSERIES(0x4800, 0x800, fp_unavailable)
863 MASKABLE_RELON_EXCEPTION_PSERIES(0x4900, 0x900, decrementer)
864 STD_RELON_EXCEPTION_HV(0x4980, 0x982, hdecrementer)
865 MASKABLE_RELON_EXCEPTION_PSERIES(0x4a00, 0xa00, doorbell_super)
866 STD_RELON_EXCEPTION_PSERIES(0x4b00, 0xb00, trap_0b)
869 .globl system_call_relon_pSeries
870 system_call_relon_pSeries:
873 SYSCALL_PSERIES_2_DIRECT
876 STD_RELON_EXCEPTION_PSERIES(0x4d00, 0xd00, single_step)
879 b . /* Can't happen, see v2.07 Book III-S section 6.5 */
882 b . /* Can't happen, see v2.07 Book III-S section 6.5 */
885 emulation_assist_relon_trampoline:
887 EXCEPTION_PROLOG_0(PACA_EXGEN)
888 b emulation_assist_relon_hv
891 b . /* Can't happen, see v2.07 Book III-S section 6.5 */
894 h_doorbell_relon_trampoline:
896 EXCEPTION_PROLOG_0(PACA_EXGEN)
897 b h_doorbell_relon_hv
900 performance_monitor_relon_pseries_trampoline:
902 EXCEPTION_PROLOG_0(PACA_EXGEN)
903 b performance_monitor_relon_pSeries
906 altivec_unavailable_relon_pseries_trampoline:
908 EXCEPTION_PROLOG_0(PACA_EXGEN)
909 b altivec_unavailable_relon_pSeries
912 vsx_unavailable_relon_pseries_trampoline:
914 EXCEPTION_PROLOG_0(PACA_EXGEN)
915 b vsx_unavailable_relon_pSeries
918 facility_unavailable_relon_trampoline:
920 EXCEPTION_PROLOG_0(PACA_EXGEN)
921 b facility_unavailable_relon_pSeries
924 hv_facility_unavailable_relon_trampoline:
926 EXCEPTION_PROLOG_0(PACA_EXGEN)
927 b hv_facility_unavailable_relon_hv
929 STD_RELON_EXCEPTION_PSERIES(0x5300, 0x1300, instruction_breakpoint)
930 #ifdef CONFIG_PPC_DENORMALISATION
932 b denorm_exception_hv
934 STD_RELON_EXCEPTION_PSERIES(0x5700, 0x1700, altivec_assist)
936 /* Other future vectors */
938 .globl __end_interrupts
942 system_call_entry_direct:
943 #if defined(CONFIG_RELOCATABLE)
944 /* The first level prologue may have used LR to get here, saving
945 * orig in r10. To save hacking/ifdeffing common code, restore here.
952 ppc64_runlatch_on_trampoline:
953 b __ppc64_runlatch_on
956 * Here r13 points to the paca, r9 contains the saved CR,
957 * SRR0 and SRR1 are saved in r11 and r12,
958 * r9 - r13 are saved in paca->exgen.
961 .globl data_access_common
964 std r10,PACA_EXGEN+EX_DAR(r13)
966 stw r10,PACA_EXGEN+EX_DSISR(r13)
967 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
970 ld r3,PACA_EXGEN+EX_DAR(r13)
971 lwz r4,PACA_EXGEN+EX_DSISR(r13)
973 b do_hash_page /* Try to handle as hpte fault */
976 .globl h_data_storage_common
977 h_data_storage_common:
979 std r10,PACA_EXGEN+EX_DAR(r13)
980 mfspr r10,SPRN_HDSISR
981 stw r10,PACA_EXGEN+EX_DSISR(r13)
982 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
985 addi r3,r1,STACK_FRAME_OVERHEAD
990 .globl instruction_access_common
991 instruction_access_common:
992 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
998 b do_hash_page /* Try to handle as hpte fault */
1000 STD_EXCEPTION_COMMON(0xe20, h_instr_storage, unknown_exception)
1003 * Here is the common SLB miss user that is used when going to virtual
1004 * mode for SLB misses, that is currently not used
1008 .globl slb_miss_user_common
1009 slb_miss_user_common:
1011 std r3,PACA_EXGEN+EX_DAR(r13)
1012 stw r9,PACA_EXGEN+EX_CCR(r13)
1013 std r10,PACA_EXGEN+EX_LR(r13)
1014 std r11,PACA_EXGEN+EX_SRR0(r13)
1015 bl slb_allocate_user
1017 ld r10,PACA_EXGEN+EX_LR(r13)
1018 ld r3,PACA_EXGEN+EX_R3(r13)
1019 lwz r9,PACA_EXGEN+EX_CCR(r13)
1020 ld r11,PACA_EXGEN+EX_SRR0(r13)
1024 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
1025 beq- unrecov_user_slb
1033 clrrdi r10,r10,2 /* clear RI before setting SRR0/1 */
1039 ld r9,PACA_EXGEN+EX_R9(r13)
1040 ld r10,PACA_EXGEN+EX_R10(r13)
1041 ld r11,PACA_EXGEN+EX_R11(r13)
1042 ld r12,PACA_EXGEN+EX_R12(r13)
1043 ld r13,PACA_EXGEN+EX_R13(r13)
1048 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXGEN)
1049 ld r4,PACA_EXGEN+EX_DAR(r13)
1056 EXCEPTION_PROLOG_COMMON(0x4200, PACA_EXGEN)
1059 1: addi r3,r1,STACK_FRAME_OVERHEAD
1060 bl unrecoverable_exception
1063 #endif /* __DISABLED__ */
1067 * Machine check is different because we use a different
1068 * save area: PACA_EXMC instead of PACA_EXGEN.
1071 .globl machine_check_common
1072 machine_check_common:
1075 std r10,PACA_EXGEN+EX_DAR(r13)
1076 mfspr r10,SPRN_DSISR
1077 stw r10,PACA_EXGEN+EX_DSISR(r13)
1078 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
1081 ld r3,PACA_EXGEN+EX_DAR(r13)
1082 lwz r4,PACA_EXGEN+EX_DSISR(r13)
1086 addi r3,r1,STACK_FRAME_OVERHEAD
1087 bl machine_check_exception
1091 .globl alignment_common
1094 std r10,PACA_EXGEN+EX_DAR(r13)
1095 mfspr r10,SPRN_DSISR
1096 stw r10,PACA_EXGEN+EX_DSISR(r13)
1097 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
1098 ld r3,PACA_EXGEN+EX_DAR(r13)
1099 lwz r4,PACA_EXGEN+EX_DSISR(r13)
1104 addi r3,r1,STACK_FRAME_OVERHEAD
1105 bl alignment_exception
1109 .globl program_check_common
1110 program_check_common:
1111 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
1114 addi r3,r1,STACK_FRAME_OVERHEAD
1115 bl program_check_exception
1119 .globl fp_unavailable_common
1120 fp_unavailable_common:
1121 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
1122 bne 1f /* if from user, just load it up */
1125 addi r3,r1,STACK_FRAME_OVERHEAD
1126 bl kernel_fp_unavailable_exception
1129 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1131 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1132 * transaction), go do TM stuff
1134 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1136 END_FTR_SECTION_IFSET(CPU_FTR_TM)
1139 b fast_exception_return
1140 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1141 2: /* User process was in a transaction */
1144 addi r3,r1,STACK_FRAME_OVERHEAD
1145 bl fp_unavailable_tm
1149 .globl altivec_unavailable_common
1150 altivec_unavailable_common:
1151 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1152 #ifdef CONFIG_ALTIVEC
1155 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1156 BEGIN_FTR_SECTION_NESTED(69)
1157 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1158 * transaction), go do TM stuff
1160 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1162 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1165 b fast_exception_return
1166 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1167 2: /* User process was in a transaction */
1170 addi r3,r1,STACK_FRAME_OVERHEAD
1171 bl altivec_unavailable_tm
1175 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1179 addi r3,r1,STACK_FRAME_OVERHEAD
1180 bl altivec_unavailable_exception
1184 .globl vsx_unavailable_common
1185 vsx_unavailable_common:
1186 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1190 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1191 BEGIN_FTR_SECTION_NESTED(69)
1192 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1193 * transaction), go do TM stuff
1195 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1197 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1200 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1201 2: /* User process was in a transaction */
1204 addi r3,r1,STACK_FRAME_OVERHEAD
1205 bl vsx_unavailable_tm
1209 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1213 addi r3,r1,STACK_FRAME_OVERHEAD
1214 bl vsx_unavailable_exception
1217 STD_EXCEPTION_COMMON(0xf60, facility_unavailable, facility_unavailable_exception)
1218 STD_EXCEPTION_COMMON(0xf80, hv_facility_unavailable, facility_unavailable_exception)
1221 .globl __end_handlers
1224 /* Equivalents to the above handlers for relocation-on interrupt vectors */
1225 STD_RELON_EXCEPTION_HV_OOL(0xe40, emulation_assist)
1226 MASKABLE_RELON_EXCEPTION_HV_OOL(0xe80, h_doorbell)
1228 STD_RELON_EXCEPTION_PSERIES_OOL(0xf00, performance_monitor)
1229 STD_RELON_EXCEPTION_PSERIES_OOL(0xf20, altivec_unavailable)
1230 STD_RELON_EXCEPTION_PSERIES_OOL(0xf40, vsx_unavailable)
1231 STD_RELON_EXCEPTION_PSERIES_OOL(0xf60, facility_unavailable)
1232 STD_RELON_EXCEPTION_HV_OOL(0xf80, hv_facility_unavailable)
1234 #if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
1236 * Data area reserved for FWNMI option.
1237 * This address (0x7000) is fixed by the RPA.
1240 .globl fwnmi_data_area
1243 /* pseries and powernv need to keep the whole page from
1244 * 0x7000 to 0x8000 free for use by the firmware
1247 #endif /* defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */
1249 #ifdef CONFIG_PPC_POWERNV
1250 _GLOBAL(opal_mc_secondary_handler)
1251 HMT_MEDIUM_PPR_DISCARD
1256 std r3,PACA_OPAL_MC_EVT(r13)
1257 ld r13,OPAL_MC_SRR0(r3)
1259 ld r13,OPAL_MC_SRR1(r3)
1261 ld r3,OPAL_MC_GPR3(r3)
1263 b machine_check_pSeries
1264 #endif /* CONFIG_PPC_POWERNV */
1267 #define MACHINE_CHECK_HANDLER_WINDUP \
1268 /* Clear MSR_RI before setting SRR0 and SRR1. */\
1270 mfmsr r9; /* get MSR value */ \
1272 mtmsrd r9,1; /* Clear MSR_RI */ \
1273 /* Move original SRR0 and SRR1 into the respective regs */ \
1275 mtspr SPRN_SRR1,r9; \
1277 mtspr SPRN_SRR0,r3; \
1285 REST_8GPRS(2, r1); \
1289 /* Decrement paca->in_mce. */ \
1290 lhz r12,PACA_IN_MCE(r13); \
1292 sth r12,PACA_IN_MCE(r13); \
1294 REST_2GPRS(12, r1); \
1295 /* restore original r1. */ \
1299 * Handle machine check early in real mode. We come here with
1300 * ME=1, MMU (IR=0 and DR=0) off and using MC emergency stack.
1303 .globl machine_check_handle_early
1304 machine_check_handle_early:
1305 std r0,GPR0(r1) /* Save r0 */
1306 EXCEPTION_PROLOG_COMMON_3(0x200)
1308 addi r3,r1,STACK_FRAME_OVERHEAD
1309 bl machine_check_early
1310 std r3,RESULT(r1) /* Save result */
1312 #ifdef CONFIG_PPC_P7_NAP
1314 * Check if thread was in power saving mode. We come here when any
1315 * of the following is true:
1316 * a. thread wasn't in power saving mode
1317 * b. thread was in power saving mode with no state loss or
1318 * supervisor state loss
1320 * Go back to nap again if (b) is true.
1322 rlwinm. r11,r12,47-31,30,31 /* Was it in power saving mode? */
1323 beq 4f /* No, it wasn;t */
1324 /* Thread was in power saving mode. Go back to nap again. */
1327 /* Supervisor state loss */
1329 stb r0,PACA_NAPSTATELOST(r13)
1330 3: bl machine_check_queue_event
1331 MACHINE_CHECK_HANDLER_WINDUP
1334 b power7_enter_nap_mode
1338 * Check if we are coming from hypervisor userspace. If yes then we
1339 * continue in host kernel in V mode to deliver the MC event.
1341 rldicl. r11,r12,4,63 /* See if MC hit while in HV mode. */
1343 andi. r11,r12,MSR_PR /* See if coming from user. */
1344 bne 9f /* continue in V mode if we are. */
1347 #ifdef CONFIG_KVM_BOOK3S_64_HV
1349 * We are coming from kernel context. Check if we are coming from
1350 * guest. if yes, then we can continue. We will fall through
1351 * do_kvm_200->kvmppc_interrupt to deliver the MC event to guest.
1353 lbz r11,HSTATE_IN_GUEST(r13)
1354 cmpwi r11,0 /* Check if coming from guest */
1355 bne 9f /* continue if we are. */
1358 * At this point we are not sure about what context we come from.
1359 * Queue up the MCE event and return from the interrupt.
1360 * But before that, check if this is an un-recoverable exception.
1361 * If yes, then stay on emergency stack and panic.
1363 andi. r11,r12,MSR_RI
1365 1: mfspr r11,SPRN_SRR0
1366 ld r10,PACAKBASE(r13)
1367 LOAD_HANDLER(r10,unrecover_mce)
1369 ld r10,PACAKMSR(r13)
1371 * We are going down. But there are chances that we might get hit by
1372 * another MCE during panic path and we may run into unstable state
1373 * with no way out. Hence, turn ME bit off while going down, so that
1374 * when another MCE is hit during panic path, system will checkstop
1375 * and hypervisor will get restarted cleanly by SP.
1378 andc r10,r10,r3 /* Turn off MSR_ME */
1384 * Check if we have successfully handled/recovered from error, if not
1385 * then stay on emergency stack and panic.
1387 ld r3,RESULT(r1) /* Load result */
1388 cmpdi r3,0 /* see if we handled MCE successfully */
1390 beq 1b /* if !handled then panic */
1392 * Return from MC interrupt.
1393 * Queue up the MCE event so that we can log it later, while
1394 * returning from kernel or opal call.
1396 bl machine_check_queue_event
1397 MACHINE_CHECK_HANDLER_WINDUP
1400 /* Deliver the machine check to host kernel in V mode. */
1401 MACHINE_CHECK_HANDLER_WINDUP
1402 b machine_check_pSeries
1405 /* Invoke machine_check_exception to print MCE event and panic. */
1406 addi r3,r1,STACK_FRAME_OVERHEAD
1407 bl machine_check_exception
1409 * We will not reach here. Even if we did, there is no way out. Call
1410 * unrecoverable_exception and die.
1412 1: addi r3,r1,STACK_FRAME_OVERHEAD
1413 bl unrecoverable_exception
1416 * r13 points to the PACA, r9 contains the saved CR,
1417 * r12 contain the saved SRR1, SRR0 is still ready for return
1418 * r3 has the faulting address
1419 * r9 - r13 are saved in paca->exslb.
1420 * r3 is saved in paca->slb_r3
1421 * We assume we aren't going to take any exceptions during this procedure.
1425 #ifdef CONFIG_RELOCATABLE
1429 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
1430 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
1432 bl slb_allocate_realmode
1434 /* All done -- return from exception. */
1436 ld r10,PACA_EXSLB+EX_LR(r13)
1437 ld r3,PACA_EXSLB+EX_R3(r13)
1438 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1442 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
1448 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
1451 RESTORE_PPR_PACA(PACA_EXSLB, r9)
1452 ld r9,PACA_EXSLB+EX_R9(r13)
1453 ld r10,PACA_EXSLB+EX_R10(r13)
1454 ld r11,PACA_EXSLB+EX_R11(r13)
1455 ld r12,PACA_EXSLB+EX_R12(r13)
1456 ld r13,PACA_EXSLB+EX_R13(r13)
1458 b . /* prevent speculative execution */
1460 2: mfspr r11,SPRN_SRR0
1461 ld r10,PACAKBASE(r13)
1462 LOAD_HANDLER(r10,unrecov_slb)
1464 ld r10,PACAKMSR(r13)
1470 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
1473 1: addi r3,r1,STACK_FRAME_OVERHEAD
1474 bl unrecoverable_exception
1478 #ifdef CONFIG_PPC_970_NAP
1481 std r9,TI_LOCAL_FLAGS(r11)
1482 ld r10,_LINK(r1) /* make idle task do the */
1483 std r10,_NIP(r1) /* equivalent of a blr */
1495 andis. r0,r4,0xa410 /* weird error? */
1496 bne- handle_page_fault /* if not, try to insert a HPTE */
1497 andis. r0,r4,DSISR_DABRMATCH@h
1498 bne- handle_dabr_fault
1499 CURRENT_THREAD_INFO(r11, r1)
1500 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1501 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1502 bne 77f /* then don't call hash_page now */
1504 * We need to set the _PAGE_USER bit if MSR_PR is set or if we are
1505 * accessing a userspace segment (even from the kernel). We assume
1506 * kernel addresses always have the high bit set.
1508 rlwinm r4,r4,32-25+9,31-9,31-9 /* DSISR_STORE -> _PAGE_RW */
1509 rotldi r0,r3,15 /* Move high bit into MSR_PR posn */
1510 orc r0,r12,r0 /* MSR_PR | ~high_bit */
1511 rlwimi r4,r0,32-13,30,30 /* becomes _PAGE_USER access bit */
1512 ori r4,r4,1 /* add _PAGE_PRESENT */
1513 rlwimi r4,r5,22+2,31-2,31-2 /* Set _PAGE_EXEC if trap is 0x400 */
1516 * r3 contains the faulting address
1517 * r4 contains the required access permissions
1518 * r5 contains the trap number
1520 * at return r3 = 0 for success, 1 for page fault, negative for error
1522 bl hash_page /* build HPTE if possible */
1523 cmpdi r3,0 /* see if hash_page succeeded */
1526 beq fast_exc_return_irq /* Return from exception on success */
1531 /* Here we have a page fault that hash_page can't handle. */
1535 addi r3,r1,STACK_FRAME_OVERHEAD
1541 addi r3,r1,STACK_FRAME_OVERHEAD
1546 /* We have a data breakpoint exception - handle it */
1551 addi r3,r1,STACK_FRAME_OVERHEAD
1553 12: b ret_from_except_lite
1556 /* We have a page fault that hash_page could handle but HV refused
1561 addi r3,r1,STACK_FRAME_OVERHEAD
1567 * We come here as a result of a DSI at a point where we don't want
1568 * to call hash_page, such as when we are accessing memory (possibly
1569 * user memory) inside a PMU interrupt that occurred while interrupts
1570 * were soft-disabled. We want to invoke the exception handler for
1571 * the access, or panic if there isn't a handler.
1575 addi r3,r1,STACK_FRAME_OVERHEAD
1581 * Here we have detected that the kernel stack pointer is bad.
1582 * R9 contains the saved CR, r13 points to the paca,
1583 * r10 contains the (bad) kernel stack pointer,
1584 * r11 and r12 contain the saved SRR0 and SRR1.
1585 * We switch to using an emergency stack, save the registers there,
1586 * and call kernel_bad_stack(), which panics.
1589 ld r1,PACAEMERGSP(r13)
1590 subi r1,r1,64+INT_FRAME_SIZE
1596 mfspr r12,SPRN_DSISR
1622 std r10,ORIG_GPR3(r1)
1623 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1626 lhz r12,PACA_TRAP_SAVE(r13)
1628 addi r11,r1,INT_FRAME_SIZE
1633 ld r11,exception_marker@toc(r2)
1635 std r11,STACK_FRAME_OVERHEAD-16(r1)
1636 1: addi r3,r1,STACK_FRAME_OVERHEAD