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/exception-64s.h>
16 #include <asm/ptrace.h>
19 * We layout physical memory as follows:
20 * 0x0000 - 0x00ff : Secondary processor spin code
21 * 0x0100 - 0x2fff : pSeries Interrupt prologs
22 * 0x3000 - 0x5fff : interrupt support, iSeries and common interrupt prologs
23 * 0x6000 - 0x6fff : Initial (CPU0) segment table
24 * 0x7000 - 0x7fff : FWNMI data area
25 * 0x8000 - : Early init and support code
29 * This is the start of the interrupt handlers for pSeries
30 * This code runs with relocation off.
31 * Code from here to __end_interrupts gets copied down to real
32 * address 0x100 when we are running a relocatable kernel.
33 * Therefore any relative branches in this section must only
34 * branch to labels in this section.
37 .globl __start_interrupts
40 .globl system_reset_pSeries;
44 #ifdef CONFIG_PPC_P7_NAP
46 /* Running native on arch 2.06 or later, check if we are
47 * waking up from nap. We only handle no state loss and
48 * supervisor state loss. We do -not- handle hypervisor
49 * state loss at this time.
52 rlwinm. r13,r13,47-31,30,31
55 /* waking up from powersave (nap) state */
57 /* Total loss of HV state is fatal, we could try to use the
58 * PIR to locate a PACA, then use an emergency stack etc...
59 * but for now, let's just stay stuck here
64 #ifdef CONFIG_KVM_BOOK3S_64_HV
65 lbz r0,PACAPROCSTART(r13)
69 stb r0,PACAPROCSTART(r13)
75 b .power7_wakeup_noloss
76 2: b .power7_wakeup_loss
78 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
79 #endif /* CONFIG_PPC_P7_NAP */
80 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
84 machine_check_pSeries_1:
85 /* This is moved out of line as it can be patched by FW, but
86 * some code path might still want to branch into the original
89 b machine_check_pSeries
92 .globl data_access_pSeries
96 #ifndef CONFIG_POWER4_ONLY
98 b data_access_check_stab
100 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_SLB)
102 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, data_access_common, EXC_STD,
106 .globl data_access_slb_pSeries
107 data_access_slb_pSeries:
110 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
111 std r3,PACA_EXSLB+EX_R3(r13)
114 /* Keep that around for when we re-implement dynamic VSIDs */
116 bge slb_miss_user_pseries
117 #endif /* __DISABLED__ */
119 #ifndef CONFIG_RELOCATABLE
123 * We can't just use a direct branch to .slb_miss_realmode
124 * because the distance from here to there depends on where
125 * the kernel ends up being put.
128 ld r10,PACAKBASE(r13)
129 LOAD_HANDLER(r10, .slb_miss_realmode)
134 STD_EXCEPTION_PSERIES(0x400, 0x400, instruction_access)
137 .globl instruction_access_slb_pSeries
138 instruction_access_slb_pSeries:
141 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
142 std r3,PACA_EXSLB+EX_R3(r13)
143 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
145 /* Keep that around for when we re-implement dynamic VSIDs */
147 bge slb_miss_user_pseries
148 #endif /* __DISABLED__ */
150 #ifndef CONFIG_RELOCATABLE
154 ld r10,PACAKBASE(r13)
155 LOAD_HANDLER(r10, .slb_miss_realmode)
160 /* We open code these as we can't have a ". = x" (even with
161 * x = "." within a feature section
164 .globl hardware_interrupt_pSeries;
165 .globl hardware_interrupt_hv;
166 hardware_interrupt_pSeries:
167 hardware_interrupt_hv:
169 _MASKABLE_EXCEPTION_PSERIES(0x502, hardware_interrupt,
170 EXC_HV, SOFTEN_TEST_HV)
171 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x502)
173 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt,
174 EXC_STD, SOFTEN_TEST_HV_201)
175 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0x500)
176 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
178 STD_EXCEPTION_PSERIES(0x600, 0x600, alignment)
179 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x600)
181 STD_EXCEPTION_PSERIES(0x700, 0x700, program_check)
182 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x700)
184 STD_EXCEPTION_PSERIES(0x800, 0x800, fp_unavailable)
185 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x800)
187 MASKABLE_EXCEPTION_PSERIES(0x900, 0x900, decrementer)
188 MASKABLE_EXCEPTION_HV(0x980, 0x982, decrementer)
190 STD_EXCEPTION_PSERIES(0xa00, 0xa00, trap_0a)
191 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xa00)
193 STD_EXCEPTION_PSERIES(0xb00, 0xb00, trap_0b)
194 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xb00)
197 .globl system_call_pSeries
200 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
203 std r9,PACA_EXGEN+EX_R9(r13)
204 std r10,PACA_EXGEN+EX_R10(r13)
212 END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)
217 ld r10,PACAKBASE(r13)
218 LOAD_HANDLER(r10, system_call_entry)
223 b . /* prevent speculative execution */
225 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0xc00)
227 /* Fast LE/BE switch system call */
228 1: mfspr r12,SPRN_SRR1
231 rfid /* return to userspace */
234 STD_EXCEPTION_PSERIES(0xd00, 0xd00, single_step)
235 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xd00)
237 /* At 0xe??? we have a bunch of hypervisor exceptions, we branch
238 * out of line to handle them
245 b emulation_assist_hv
251 /* We need to deal with the Altivec unavailable exception
252 * here which is at 0xf20, thus in the middle of the
253 * prolog code of the PerformanceMonitor one. A little
254 * trickery is thus necessary
256 performance_monitor_pSeries_1:
258 b performance_monitor_pSeries
260 altivec_unavailable_pSeries_1:
262 b altivec_unavailable_pSeries
264 vsx_unavailable_pSeries_1:
266 b vsx_unavailable_pSeries
268 #ifdef CONFIG_CBE_RAS
269 STD_EXCEPTION_HV(0x1200, 0x1202, cbe_system_error)
270 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_HV, 0x1202)
271 #endif /* CONFIG_CBE_RAS */
273 STD_EXCEPTION_PSERIES(0x1300, 0x1300, instruction_breakpoint)
274 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_STD, 0x1300)
276 #ifdef CONFIG_CBE_RAS
277 STD_EXCEPTION_HV(0x1600, 0x1602, cbe_maintenance)
278 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_HV, 0x1602)
279 #endif /* CONFIG_CBE_RAS */
281 STD_EXCEPTION_PSERIES(0x1700, 0x1700, altivec_assist)
282 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x1700)
284 #ifdef CONFIG_CBE_RAS
285 STD_EXCEPTION_HV(0x1800, 0x1802, cbe_thermal)
286 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_HV, 0x1802)
287 #endif /* CONFIG_CBE_RAS */
291 /*** Out of line interrupts support ***/
293 /* moved from 0x200 */
294 machine_check_pSeries:
295 .globl machine_check_fwnmi
298 SET_SCRATCH0(r13) /* save r13 */
299 EXCEPTION_PROLOG_PSERIES(PACA_EXMC, machine_check_common,
300 EXC_STD, KVMTEST, 0x200)
301 KVM_HANDLER_SKIP(PACA_EXMC, EXC_STD, 0x200)
303 #ifndef CONFIG_POWER4_ONLY
304 /* moved from 0x300 */
305 data_access_check_stab:
307 std r9,PACA_EXSLB+EX_R9(r13)
308 std r10,PACA_EXSLB+EX_R10(r13)
312 rlwimi r10,r9,16,0x20
313 #ifdef CONFIG_KVM_BOOK3S_PR
314 lbz r9,HSTATE_IN_GUEST(r13)
315 rlwimi r10,r9,8,0x300
319 beq do_stab_bolted_pSeries
321 ld r9,PACA_EXSLB+EX_R9(r13)
322 ld r10,PACA_EXSLB+EX_R10(r13)
323 b data_access_not_stab
324 do_stab_bolted_pSeries:
325 std r11,PACA_EXSLB+EX_R11(r13)
326 std r12,PACA_EXSLB+EX_R12(r13)
328 std r10,PACA_EXSLB+EX_R13(r13)
329 EXCEPTION_PROLOG_PSERIES_1(.do_stab_bolted, EXC_STD)
330 #endif /* CONFIG_POWER4_ONLY */
332 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_STD, 0x300)
333 KVM_HANDLER_PR_SKIP(PACA_EXSLB, EXC_STD, 0x380)
334 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x400)
335 KVM_HANDLER_PR(PACA_EXSLB, EXC_STD, 0x480)
336 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x900)
337 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x982)
340 /* moved from 0xe00 */
341 STD_EXCEPTION_HV(., 0xe02, h_data_storage)
342 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0xe02)
343 STD_EXCEPTION_HV(., 0xe22, h_instr_storage)
344 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe22)
345 STD_EXCEPTION_HV(., 0xe42, emulation_assist)
346 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe42)
347 STD_EXCEPTION_HV(., 0xe62, hmi_exception) /* need to flush cache ? */
348 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe62)
350 /* moved from 0xf00 */
351 STD_EXCEPTION_PSERIES(., 0xf00, performance_monitor)
352 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf00)
353 STD_EXCEPTION_PSERIES(., 0xf20, altivec_unavailable)
354 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf20)
355 STD_EXCEPTION_PSERIES(., 0xf40, vsx_unavailable)
356 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf40)
359 * An interrupt came in while soft-disabled; clear EE in SRR1,
360 * clear paca->hard_enabled and return.
363 stb r10,PACAHARDIRQEN(r13)
365 ld r9,PACA_EXGEN+EX_R9(r13)
367 rldicl r10,r10,48,1 /* clear MSR_EE */
370 ld r10,PACA_EXGEN+EX_R10(r13)
376 stb r10,PACAHARDIRQEN(r13)
378 ld r9,PACA_EXGEN+EX_R9(r13)
380 rldicl r10,r10,48,1 /* clear MSR_EE */
383 ld r10,PACA_EXGEN+EX_R10(r13)
388 #ifdef CONFIG_PPC_PSERIES
390 * Vectors for the FWNMI option. Share common code.
392 .globl system_reset_fwnmi
396 SET_SCRATCH0(r13) /* save r13 */
397 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
400 #endif /* CONFIG_PPC_PSERIES */
404 * This is used for when the SLB miss handler has to go virtual,
405 * which doesn't happen for now anymore but will once we re-implement
406 * dynamic VSIDs for shared page tables
408 slb_miss_user_pseries:
409 std r10,PACA_EXGEN+EX_R10(r13)
410 std r11,PACA_EXGEN+EX_R11(r13)
411 std r12,PACA_EXGEN+EX_R12(r13)
413 ld r11,PACA_EXSLB+EX_R9(r13)
414 ld r12,PACA_EXSLB+EX_R3(r13)
415 std r10,PACA_EXGEN+EX_R13(r13)
416 std r11,PACA_EXGEN+EX_R9(r13)
417 std r12,PACA_EXGEN+EX_R3(r13)
420 mfspr r11,SRR0 /* save SRR0 */
421 ori r12,r12,slb_miss_user_common@l /* virt addr of handler */
422 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
424 mfspr r12,SRR1 /* and SRR1 */
427 b . /* prevent spec. execution */
428 #endif /* __DISABLED__ */
430 /* KVM's trampoline code needs to be close to the interrupt handlers */
432 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
433 #ifdef CONFIG_KVM_BOOK3S_PR
434 #include "../kvm/book3s_rmhandlers.S"
436 #include "../kvm/book3s_hv_rmhandlers.S"
441 .globl __end_interrupts
445 * Code from here down to __end_handlers is invoked from the
446 * exception prologs above. Because the prologs assemble the
447 * addresses of these handlers using the LOAD_HANDLER macro,
448 * which uses an addi instruction, these handlers must be in
449 * the first 32k of the kernel image.
452 /*** Common interrupt handlers ***/
454 STD_EXCEPTION_COMMON(0x100, system_reset, .system_reset_exception)
457 * Machine check is different because we use a different
458 * save area: PACA_EXMC instead of PACA_EXGEN.
461 .globl machine_check_common
462 machine_check_common:
463 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
467 addi r3,r1,STACK_FRAME_OVERHEAD
468 bl .machine_check_exception
471 STD_EXCEPTION_COMMON_LITE(0x900, decrementer, .timer_interrupt)
472 STD_EXCEPTION_COMMON(0xa00, trap_0a, .unknown_exception)
473 STD_EXCEPTION_COMMON(0xb00, trap_0b, .unknown_exception)
474 STD_EXCEPTION_COMMON(0xd00, single_step, .single_step_exception)
475 STD_EXCEPTION_COMMON(0xe00, trap_0e, .unknown_exception)
476 STD_EXCEPTION_COMMON(0xe40, emulation_assist, .program_check_exception)
477 STD_EXCEPTION_COMMON(0xe60, hmi_exception, .unknown_exception)
478 STD_EXCEPTION_COMMON_IDLE(0xf00, performance_monitor, .performance_monitor_exception)
479 STD_EXCEPTION_COMMON(0x1300, instruction_breakpoint, .instruction_breakpoint_exception)
480 #ifdef CONFIG_ALTIVEC
481 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .altivec_assist_exception)
483 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .unknown_exception)
485 #ifdef CONFIG_CBE_RAS
486 STD_EXCEPTION_COMMON(0x1200, cbe_system_error, .cbe_system_error_exception)
487 STD_EXCEPTION_COMMON(0x1600, cbe_maintenance, .cbe_maintenance_exception)
488 STD_EXCEPTION_COMMON(0x1800, cbe_thermal, .cbe_thermal_exception)
489 #endif /* CONFIG_CBE_RAS */
496 * Here we have detected that the kernel stack pointer is bad.
497 * R9 contains the saved CR, r13 points to the paca,
498 * r10 contains the (bad) kernel stack pointer,
499 * r11 and r12 contain the saved SRR0 and SRR1.
500 * We switch to using an emergency stack, save the registers there,
501 * and call kernel_bad_stack(), which panics.
504 ld r1,PACAEMERGSP(r13)
505 subi r1,r1,64+INT_FRAME_SIZE
537 std r10,ORIG_GPR3(r1)
538 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
541 lhz r12,PACA_TRAP_SAVE(r13)
543 addi r11,r1,INT_FRAME_SIZE
548 ld r11,exception_marker@toc(r2)
550 std r11,STACK_FRAME_OVERHEAD-16(r1)
551 1: addi r3,r1,STACK_FRAME_OVERHEAD
556 * Here r13 points to the paca, r9 contains the saved CR,
557 * SRR0 and SRR1 are saved in r11 and r12,
558 * r9 - r13 are saved in paca->exgen.
561 .globl data_access_common
564 std r10,PACA_EXGEN+EX_DAR(r13)
566 stw r10,PACA_EXGEN+EX_DSISR(r13)
567 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
568 ld r3,PACA_EXGEN+EX_DAR(r13)
569 lwz r4,PACA_EXGEN+EX_DSISR(r13)
571 b .do_hash_page /* Try to handle as hpte fault */
574 .globl h_data_storage_common
575 h_data_storage_common:
577 std r10,PACA_EXGEN+EX_DAR(r13)
578 mfspr r10,SPRN_HDSISR
579 stw r10,PACA_EXGEN+EX_DSISR(r13)
580 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
582 addi r3,r1,STACK_FRAME_OVERHEAD
583 bl .unknown_exception
587 .globl instruction_access_common
588 instruction_access_common:
589 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
593 b .do_hash_page /* Try to handle as hpte fault */
595 STD_EXCEPTION_COMMON(0xe20, h_instr_storage, .unknown_exception)
598 * Here is the common SLB miss user that is used when going to virtual
599 * mode for SLB misses, that is currently not used
603 .globl slb_miss_user_common
604 slb_miss_user_common:
606 std r3,PACA_EXGEN+EX_DAR(r13)
607 stw r9,PACA_EXGEN+EX_CCR(r13)
608 std r10,PACA_EXGEN+EX_LR(r13)
609 std r11,PACA_EXGEN+EX_SRR0(r13)
610 bl .slb_allocate_user
612 ld r10,PACA_EXGEN+EX_LR(r13)
613 ld r3,PACA_EXGEN+EX_R3(r13)
614 lwz r9,PACA_EXGEN+EX_CCR(r13)
615 ld r11,PACA_EXGEN+EX_SRR0(r13)
619 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
620 beq- unrecov_user_slb
628 clrrdi r10,r10,2 /* clear RI before setting SRR0/1 */
634 ld r9,PACA_EXGEN+EX_R9(r13)
635 ld r10,PACA_EXGEN+EX_R10(r13)
636 ld r11,PACA_EXGEN+EX_R11(r13)
637 ld r12,PACA_EXGEN+EX_R12(r13)
638 ld r13,PACA_EXGEN+EX_R13(r13)
643 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXGEN)
644 ld r4,PACA_EXGEN+EX_DAR(r13)
651 EXCEPTION_PROLOG_COMMON(0x4200, PACA_EXGEN)
654 1: addi r3,r1,STACK_FRAME_OVERHEAD
655 bl .unrecoverable_exception
658 #endif /* __DISABLED__ */
662 * r13 points to the PACA, r9 contains the saved CR,
663 * r12 contain the saved SRR1, SRR0 is still ready for return
664 * r3 has the faulting address
665 * r9 - r13 are saved in paca->exslb.
666 * r3 is saved in paca->slb_r3
667 * We assume we aren't going to take any exceptions during this procedure.
669 _GLOBAL(slb_miss_realmode)
671 #ifdef CONFIG_RELOCATABLE
675 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
676 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
678 bl .slb_allocate_realmode
680 /* All done -- return from exception. */
682 ld r10,PACA_EXSLB+EX_LR(r13)
683 ld r3,PACA_EXSLB+EX_R3(r13)
684 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
685 #ifdef CONFIG_PPC_ISERIES
687 ld r11,PACALPPACAPTR(r13)
688 ld r11,LPPACASRR0(r11) /* get SRR0 value */
689 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
690 #endif /* CONFIG_PPC_ISERIES */
694 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
700 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
703 #ifdef CONFIG_PPC_ISERIES
707 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
708 #endif /* CONFIG_PPC_ISERIES */
709 ld r9,PACA_EXSLB+EX_R9(r13)
710 ld r10,PACA_EXSLB+EX_R10(r13)
711 ld r11,PACA_EXSLB+EX_R11(r13)
712 ld r12,PACA_EXSLB+EX_R12(r13)
713 ld r13,PACA_EXSLB+EX_R13(r13)
715 b . /* prevent speculative execution */
718 #ifdef CONFIG_PPC_ISERIES
721 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
722 #endif /* CONFIG_PPC_ISERIES */
724 ld r10,PACAKBASE(r13)
725 LOAD_HANDLER(r10,unrecov_slb)
733 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
736 1: addi r3,r1,STACK_FRAME_OVERHEAD
737 bl .unrecoverable_exception
741 .globl hardware_interrupt_common
742 .globl hardware_interrupt_entry
743 hardware_interrupt_common:
744 EXCEPTION_PROLOG_COMMON(0x500, PACA_EXGEN)
746 hardware_interrupt_entry:
749 bl .ppc64_runlatch_on
750 END_FTR_SECTION_IFSET(CPU_FTR_CTRL)
751 addi r3,r1,STACK_FRAME_OVERHEAD
753 b .ret_from_except_lite
755 #ifdef CONFIG_PPC_970_NAP
758 std r9,TI_LOCAL_FLAGS(r11)
759 ld r10,_LINK(r1) /* make idle task do the */
760 std r10,_NIP(r1) /* equivalent of a blr */
765 .globl alignment_common
768 std r10,PACA_EXGEN+EX_DAR(r13)
770 stw r10,PACA_EXGEN+EX_DSISR(r13)
771 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
772 ld r3,PACA_EXGEN+EX_DAR(r13)
773 lwz r4,PACA_EXGEN+EX_DSISR(r13)
777 addi r3,r1,STACK_FRAME_OVERHEAD
779 bl .alignment_exception
783 .globl program_check_common
784 program_check_common:
785 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
787 addi r3,r1,STACK_FRAME_OVERHEAD
789 bl .program_check_exception
793 .globl fp_unavailable_common
794 fp_unavailable_common:
795 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
796 bne 1f /* if from user, just load it up */
798 addi r3,r1,STACK_FRAME_OVERHEAD
800 bl .kernel_fp_unavailable_exception
803 b fast_exception_return
806 .globl altivec_unavailable_common
807 altivec_unavailable_common:
808 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
809 #ifdef CONFIG_ALTIVEC
813 b fast_exception_return
815 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
818 addi r3,r1,STACK_FRAME_OVERHEAD
820 bl .altivec_unavailable_exception
824 .globl vsx_unavailable_common
825 vsx_unavailable_common:
826 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
831 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
834 addi r3,r1,STACK_FRAME_OVERHEAD
836 bl .vsx_unavailable_exception
840 .globl __end_handlers
844 * Return from an exception with minimal checks.
845 * The caller is assumed to have done EXCEPTION_PROLOG_COMMON.
846 * If interrupts have been enabled, or anything has been
847 * done that might have changed the scheduling status of
848 * any task or sent any task a signal, you should use
849 * ret_from_except or ret_from_except_lite instead of this.
851 fast_exc_return_irq: /* restores irq state too */
853 TRACE_AND_RESTORE_IRQ(r3);
855 rldicl r4,r12,49,63 /* get MSR_EE to LSB */
856 stb r4,PACAHARDIRQEN(r13) /* restore paca->hard_enabled */
859 .globl fast_exception_return
860 fast_exception_return:
863 andi. r3,r12,MSR_RI /* check if RI is set */
866 #ifdef CONFIG_VIRT_CPU_ACCOUNTING
869 ACCOUNT_CPU_USER_EXIT(r3, r4)
885 rldicl r10,r10,48,1 /* clear EE */
886 rldicr r10,r10,16,61 /* clear RI (LE is 0 already) */
894 b . /* prevent speculative execution */
898 1: addi r3,r1,STACK_FRAME_OVERHEAD
899 bl .unrecoverable_exception
907 _STATIC(do_hash_page)
911 andis. r0,r4,0xa410 /* weird error? */
912 bne- handle_page_fault /* if not, try to insert a HPTE */
913 andis. r0,r4,DSISR_DABRMATCH@h
914 bne- handle_dabr_fault
917 andis. r0,r4,0x0020 /* Is it a segment table fault? */
918 bne- do_ste_alloc /* If so handle it */
919 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_SLB)
921 clrrdi r11,r1,THREAD_SHIFT
922 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
923 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
924 bne 77f /* then don't call hash_page now */
927 * On iSeries, we soft-disable interrupts here, then
928 * hard-enable interrupts so that the hash_page code can spin on
929 * the hash_table_lock without problems on a shared processor.
934 * Currently, trace_hardirqs_off() will be called by DISABLE_INTS
935 * and will clobber volatile registers when irq tracing is enabled
936 * so we need to reload them. It may be possible to be smarter here
937 * and move the irq tracing elsewhere but let's keep it simple for
940 #ifdef CONFIG_TRACE_IRQFLAGS
946 #endif /* CONFIG_TRACE_IRQFLAGS */
948 * We need to set the _PAGE_USER bit if MSR_PR is set or if we are
949 * accessing a userspace segment (even from the kernel). We assume
950 * kernel addresses always have the high bit set.
952 rlwinm r4,r4,32-25+9,31-9,31-9 /* DSISR_STORE -> _PAGE_RW */
953 rotldi r0,r3,15 /* Move high bit into MSR_PR posn */
954 orc r0,r12,r0 /* MSR_PR | ~high_bit */
955 rlwimi r4,r0,32-13,30,30 /* becomes _PAGE_USER access bit */
956 ori r4,r4,1 /* add _PAGE_PRESENT */
957 rlwimi r4,r5,22+2,31-2,31-2 /* Set _PAGE_EXEC if trap is 0x400 */
960 * r3 contains the faulting address
961 * r4 contains the required access permissions
962 * r5 contains the trap number
964 * at return r3 = 0 for success
966 bl .hash_page /* build HPTE if possible */
967 cmpdi r3,0 /* see if hash_page succeeded */
971 * If we had interrupts soft-enabled at the point where the
972 * DSI/ISI occurred, and an interrupt came in during hash_page,
974 * We jump to ret_from_except_lite rather than fast_exception_return
975 * because ret_from_except_lite will check for and handle pending
976 * interrupts if necessary.
979 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
983 * Here we have interrupts hard-disabled, so it is sufficient
984 * to restore paca->{soft,hard}_enable and get out.
986 beq fast_exc_return_irq /* Return from exception on success */
987 END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES)
989 /* For a hash failure, we don't bother re-enabling interrupts */
993 * hash_page couldn't handle it, set soft interrupt enable back
994 * to what it was before the trap. Note that .arch_local_irq_restore
995 * handles any interrupts pending at this point.
998 TRACE_AND_RESTORE_IRQ_PARTIAL(r3, 11f)
999 bl .arch_local_irq_restore
1002 /* We have a data breakpoint exception - handle it */
1007 addi r3,r1,STACK_FRAME_OVERHEAD
1009 b .ret_from_except_lite
1011 /* Here we have a page fault that hash_page can't handle. */
1016 addi r3,r1,STACK_FRAME_OVERHEAD
1022 addi r3,r1,STACK_FRAME_OVERHEAD
1027 13: b .ret_from_except_lite
1029 /* We have a page fault that hash_page could handle but HV refused
1034 addi r3,r1,STACK_FRAME_OVERHEAD
1040 * We come here as a result of a DSI at a point where we don't want
1041 * to call hash_page, such as when we are accessing memory (possibly
1042 * user memory) inside a PMU interrupt that occurred while interrupts
1043 * were soft-disabled. We want to invoke the exception handler for
1044 * the access, or panic if there isn't a handler.
1048 addi r3,r1,STACK_FRAME_OVERHEAD
1053 /* here we have a segment miss */
1055 bl .ste_allocate /* try to insert stab entry */
1057 bne- handle_page_fault
1058 b fast_exception_return
1061 * r13 points to the PACA, r9 contains the saved CR,
1062 * r11 and r12 contain the saved SRR0 and SRR1.
1063 * r9 - r13 are saved in paca->exslb.
1064 * We assume we aren't going to take any exceptions during this procedure.
1065 * We assume (DAR >> 60) == 0xc.
1068 _GLOBAL(do_stab_bolted)
1069 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
1070 std r11,PACA_EXSLB+EX_SRR0(r13) /* save SRR0 in exc. frame */
1072 /* Hash to the primary group */
1073 ld r10,PACASTABVIRT(r13)
1076 rldimi r10,r11,7,52 /* r10 = first ste of the group */
1078 /* Calculate VSID */
1079 /* This is a kernel address, so protovsid = ESID */
1080 ASM_VSID_SCRAMBLE(r11, r9, 256M)
1081 rldic r9,r11,12,16 /* r9 = vsid << 12 */
1083 /* Search the primary group for a free entry */
1084 1: ld r11,0(r10) /* Test valid bit of the current ste */
1091 /* Stick for only searching the primary group for now. */
1092 /* At least for now, we use a very simple random castout scheme */
1093 /* Use the TB as a random number ; OR in 1 to avoid entry 0 */
1095 rldic r11,r11,4,57 /* r11 = (r11 << 4) & 0x70 */
1098 /* r10 currently points to an ste one past the group of interest */
1099 /* make it point to the randomly selected entry */
1101 or r10,r10,r11 /* r10 is the entry to invalidate */
1103 isync /* mark the entry invalid */
1105 rldicl r11,r11,56,1 /* clear the valid bit */
1110 clrrdi r11,r11,28 /* Get the esid part of the ste */
1113 2: std r9,8(r10) /* Store the vsid part of the ste */
1116 mfspr r11,SPRN_DAR /* Get the new esid */
1117 clrrdi r11,r11,28 /* Permits a full 32b of ESID */
1118 ori r11,r11,0x90 /* Turn on valid and kp */
1119 std r11,0(r10) /* Put new entry back into the stab */
1123 /* All done -- return from exception. */
1124 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1125 ld r11,PACA_EXSLB+EX_SRR0(r13) /* get saved SRR0 */
1127 andi. r10,r12,MSR_RI
1130 mtcrf 0x80,r9 /* restore CR */
1138 ld r9,PACA_EXSLB+EX_R9(r13)
1139 ld r10,PACA_EXSLB+EX_R10(r13)
1140 ld r11,PACA_EXSLB+EX_R11(r13)
1141 ld r12,PACA_EXSLB+EX_R12(r13)
1142 ld r13,PACA_EXSLB+EX_R13(r13)
1144 b . /* prevent speculative execution */
1146 #ifdef CONFIG_PPC_PSERIES
1148 * Data area reserved for FWNMI option.
1149 * This address (0x7000) is fixed by the RPA.
1152 .globl fwnmi_data_area
1154 #endif /* CONFIG_PPC_PSERIES */
1156 /* iSeries does not use the FWNMI stuff, so it is safe to put
1157 * this here, even if we later allow kernels that will boot on
1158 * both pSeries and iSeries */
1159 #ifdef CONFIG_PPC_ISERIES
1163 .quad HvEsidsToMap /* xNumberEsids */
1164 .quad HvRangesToMap /* xNumberRanges */
1165 .quad STAB0_PAGE /* xSegmentTableOffs */
1166 .zero 40 /* xRsvd */
1167 /* xEsids (HvEsidsToMap entries of 2 quads) */
1168 .quad PAGE_OFFSET_ESID /* xKernelEsid */
1169 .quad PAGE_OFFSET_VSID /* xKernelVsid */
1170 .quad VMALLOC_START_ESID /* xKernelEsid */
1171 .quad VMALLOC_START_VSID /* xKernelVsid */
1172 /* xRanges (HvRangesToMap entries of 3 quads) */
1173 .quad HvPagesToMap /* xPages */
1174 .quad 0 /* xOffset */
1175 .quad PAGE_OFFSET_VSID << (SID_SHIFT - HW_PAGE_SHIFT) /* xVPN */
1177 #endif /* CONFIG_PPC_ISERIES */
1179 #ifdef CONFIG_PPC_PSERIES
1181 #endif /* CONFIG_PPC_PSERIES */
1184 * Space for CPU0's segment table.
1186 * On iSeries, the hypervisor must fill in at least one entry before
1187 * we get control (with relocate on). The address is given to the hv
1188 * as a page number (see xLparMap above), so this must be at a
1189 * fixed address (the linker can't compute (u64)&initial_stab >>
1192 . = STAB0_OFFSET /* 0x8000 */