]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - arch/powerpc/kernel/exceptions-64s.S
UBUNTU: SAUCE: powerpc/64s: Use emergency stack for kernel TM Bad Thing program checks
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / kernel / exceptions-64s.S
1 /*
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.
6 *
7 * This file is meant to be #included from head_64.S due to
8 * position dependent assembly.
9 *
10 * Most of this originates from head_64.S and thus has the same
11 * copyright history.
12 *
13 */
14
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>
20
21 /*
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
27 * must be used.
28 * - LOAD_HANDLER targets must be within first 64K of physical 0 /
29 * virtual 0xc00...
30 * - Conditional branch targets must be within +/-32K of caller.
31 *
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.
37 *
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.
44 *
45 * It's impossible to receive interrupts below 0x300 via AIL.
46 *
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.
49 *
50 *
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.
60 *
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
63 * vectors there.
64 */
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)
70 /*
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
75 */
76 ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
77 OPEN_TEXT_SECTION(0x8000)
78 #else
79 OPEN_TEXT_SECTION(0x7000)
80 #endif
81
82 USE_FIXED_SECTION(real_vectors)
83
84 /*
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.
91 */
92 .globl __start_interrupts
93 __start_interrupts:
94
95 /* No virt vectors corresponding with 0x0..0x100 */
96 EXC_VIRT_NONE(0x4000, 0x4100)
97
98
99 #ifdef CONFIG_PPC_P7_NAP
100 /*
101 * If running native on arch 2.06 or later, check if we are waking up
102 * from nap/sleep/winkle, and branch to idle handler. This tests SRR1
103 * bits 46:47. A non-0 value indicates that we are coming from a power
104 * saving state. The idle wakeup handler initially runs in real mode,
105 * but we branch to the 0xc000... address so we can turn on relocation
106 * with mtmsr.
107 */
108 #define IDLETEST(n) \
109 BEGIN_FTR_SECTION ; \
110 mfspr r10,SPRN_SRR1 ; \
111 rlwinm. r10,r10,47-31,30,31 ; \
112 beq- 1f ; \
113 cmpwi cr3,r10,2 ; \
114 BRANCH_TO_COMMON(r10, system_reset_idle_common) ; \
115 1: \
116 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
117 #else
118 #define IDLETEST NOTEST
119 #endif
120
121 EXC_REAL_BEGIN(system_reset, 0x100, 0x200)
122 SET_SCRATCH0(r13)
123 GET_PACA(r13)
124 clrrdi r13,r13,1 /* Last bit of HSPRG0 is set if waking from winkle */
125 EXCEPTION_PROLOG_PSERIES_PACA(PACA_EXGEN, system_reset_common, EXC_STD,
126 IDLETEST, 0x100)
127
128 EXC_REAL_END(system_reset, 0x100, 0x200)
129 EXC_VIRT_NONE(0x4100, 0x4200)
130
131 #ifdef CONFIG_PPC_P7_NAP
132 EXC_COMMON_BEGIN(system_reset_idle_common)
133 BEGIN_FTR_SECTION
134 GET_PACA(r13) /* Restore HSPRG0 to get the winkle bit in r13 */
135 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300)
136 bl pnv_restore_hyp_resource
137
138 li r0,PNV_THREAD_RUNNING
139 stb r0,PACA_THREAD_IDLE_STATE(r13) /* Clear thread state */
140
141 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
142 li r0,KVM_HWTHREAD_IN_KERNEL
143 stb r0,HSTATE_HWTHREAD_STATE(r13)
144 /* Order setting hwthread_state vs. testing hwthread_req */
145 sync
146 lbz r0,HSTATE_HWTHREAD_REQ(r13)
147 cmpwi r0,0
148 beq 1f
149 BRANCH_TO_KVM(r10, kvm_start_guest)
150 1:
151 #endif
152
153 /* Return SRR1 from power7_nap() */
154 mfspr r3,SPRN_SRR1
155 blt cr3,2f
156 b pnv_wakeup_loss
157 2: b pnv_wakeup_noloss
158 #endif
159
160 EXC_COMMON(system_reset_common, 0x100, system_reset_exception)
161
162 #ifdef CONFIG_PPC_PSERIES
163 /*
164 * Vectors for the FWNMI option. Share common code.
165 */
166 TRAMP_REAL_BEGIN(system_reset_fwnmi)
167 SET_SCRATCH0(r13) /* save r13 */
168 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
169 NOTEST, 0x100)
170 #endif /* CONFIG_PPC_PSERIES */
171
172
173 EXC_REAL_BEGIN(machine_check, 0x200, 0x300)
174 /* This is moved out of line as it can be patched by FW, but
175 * some code path might still want to branch into the original
176 * vector
177 */
178 SET_SCRATCH0(r13) /* save r13 */
179 /*
180 * Running native on arch 2.06 or later, we may wakeup from winkle
181 * inside machine check. If yes, then last bit of HSPRG0 would be set
182 * to 1. Hence clear it unconditionally.
183 */
184 GET_PACA(r13)
185 clrrdi r13,r13,1
186 SET_PACA(r13)
187 EXCEPTION_PROLOG_0(PACA_EXMC)
188 BEGIN_FTR_SECTION
189 b machine_check_powernv_early
190 FTR_SECTION_ELSE
191 b machine_check_pSeries_0
192 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
193 EXC_REAL_END(machine_check, 0x200, 0x300)
194 EXC_VIRT_NONE(0x4200, 0x4300)
195 TRAMP_REAL_BEGIN(machine_check_powernv_early)
196 BEGIN_FTR_SECTION
197 EXCEPTION_PROLOG_1(PACA_EXMC, NOTEST, 0x200)
198 /*
199 * Register contents:
200 * R13 = PACA
201 * R9 = CR
202 * Original R9 to R13 is saved on PACA_EXMC
203 *
204 * Switch to mc_emergency stack and handle re-entrancy (we limit
205 * the nested MCE upto level 4 to avoid stack overflow).
206 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
207 *
208 * We use paca->in_mce to check whether this is the first entry or
209 * nested machine check. We increment paca->in_mce to track nested
210 * machine checks.
211 *
212 * If this is the first entry then set stack pointer to
213 * paca->mc_emergency_sp, otherwise r1 is already pointing to
214 * stack frame on mc_emergency stack.
215 *
216 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
217 * checkstop if we get another machine check exception before we do
218 * rfid with MSR_ME=1.
219 */
220 mr r11,r1 /* Save r1 */
221 lhz r10,PACA_IN_MCE(r13)
222 cmpwi r10,0 /* Are we in nested machine check */
223 bne 0f /* Yes, we are. */
224 /* First machine check entry */
225 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
226 0: subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
227 addi r10,r10,1 /* increment paca->in_mce */
228 sth r10,PACA_IN_MCE(r13)
229 /* Limit nested MCE to level 4 to avoid stack overflow */
230 cmpwi r10,4
231 bgt 2f /* Check if we hit limit of 4 */
232 std r11,GPR1(r1) /* Save r1 on the stack. */
233 std r11,0(r1) /* make stack chain pointer */
234 mfspr r11,SPRN_SRR0 /* Save SRR0 */
235 std r11,_NIP(r1)
236 mfspr r11,SPRN_SRR1 /* Save SRR1 */
237 std r11,_MSR(r1)
238 mfspr r11,SPRN_DAR /* Save DAR */
239 std r11,_DAR(r1)
240 mfspr r11,SPRN_DSISR /* Save DSISR */
241 std r11,_DSISR(r1)
242 std r9,_CCR(r1) /* Save CR in stackframe */
243 /* Save r9 through r13 from EXMC save area to stack frame. */
244 EXCEPTION_PROLOG_COMMON_2(PACA_EXMC)
245 mfmsr r11 /* get MSR value */
246 ori r11,r11,MSR_ME /* turn on ME bit */
247 ori r11,r11,MSR_RI /* turn on RI bit */
248 LOAD_HANDLER(r12, machine_check_handle_early)
249 1: mtspr SPRN_SRR0,r12
250 mtspr SPRN_SRR1,r11
251 rfid
252 b . /* prevent speculative execution */
253 2:
254 /* Stack overflow. Stay on emergency stack and panic.
255 * Keep the ME bit off while panic-ing, so that if we hit
256 * another machine check we checkstop.
257 */
258 addi r1,r1,INT_FRAME_SIZE /* go back to previous stack frame */
259 ld r11,PACAKMSR(r13)
260 LOAD_HANDLER(r12, unrecover_mce)
261 li r10,MSR_ME
262 andc r11,r11,r10 /* Turn off MSR_ME */
263 b 1b
264 b . /* prevent speculative execution */
265 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
266
267 TRAMP_REAL_BEGIN(machine_check_pSeries)
268 .globl machine_check_fwnmi
269 machine_check_fwnmi:
270 SET_SCRATCH0(r13) /* save r13 */
271 EXCEPTION_PROLOG_0(PACA_EXMC)
272 machine_check_pSeries_0:
273 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST_PR, 0x200)
274 /*
275 * The following is essentially EXCEPTION_PROLOG_PSERIES_1 with the
276 * difference that MSR_RI is not enabled, because PACA_EXMC is being
277 * used, so nested machine check corrupts it. machine_check_common
278 * enables MSR_RI.
279 */
280 ld r10,PACAKMSR(r13)
281 xori r10,r10,MSR_RI
282 mfspr r11,SPRN_SRR0
283 LOAD_HANDLER(r12, machine_check_common)
284 mtspr SPRN_SRR0,r12
285 mfspr r12,SPRN_SRR1
286 mtspr SPRN_SRR1,r10
287 rfid
288 b . /* prevent speculative execution */
289
290 TRAMP_KVM_SKIP(PACA_EXMC, 0x200)
291
292 EXC_COMMON_BEGIN(machine_check_common)
293 /*
294 * Machine check is different because we use a different
295 * save area: PACA_EXMC instead of PACA_EXGEN.
296 */
297 mfspr r10,SPRN_DAR
298 std r10,PACA_EXMC+EX_DAR(r13)
299 mfspr r10,SPRN_DSISR
300 stw r10,PACA_EXMC+EX_DSISR(r13)
301 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
302 FINISH_NAP
303 RECONCILE_IRQ_STATE(r10, r11)
304 ld r3,PACA_EXMC+EX_DAR(r13)
305 lwz r4,PACA_EXMC+EX_DSISR(r13)
306 /* Enable MSR_RI when finished with PACA_EXMC */
307 li r10,MSR_RI
308 mtmsrd r10,1
309 std r3,_DAR(r1)
310 std r4,_DSISR(r1)
311 bl save_nvgprs
312 addi r3,r1,STACK_FRAME_OVERHEAD
313 bl machine_check_exception
314 b ret_from_except
315
316 #define MACHINE_CHECK_HANDLER_WINDUP \
317 /* Clear MSR_RI before setting SRR0 and SRR1. */\
318 li r0,MSR_RI; \
319 mfmsr r9; /* get MSR value */ \
320 andc r9,r9,r0; \
321 mtmsrd r9,1; /* Clear MSR_RI */ \
322 /* Move original SRR0 and SRR1 into the respective regs */ \
323 ld r9,_MSR(r1); \
324 mtspr SPRN_SRR1,r9; \
325 ld r3,_NIP(r1); \
326 mtspr SPRN_SRR0,r3; \
327 ld r9,_CTR(r1); \
328 mtctr r9; \
329 ld r9,_XER(r1); \
330 mtxer r9; \
331 ld r9,_LINK(r1); \
332 mtlr r9; \
333 REST_GPR(0, r1); \
334 REST_8GPRS(2, r1); \
335 REST_GPR(10, r1); \
336 ld r11,_CCR(r1); \
337 mtcr r11; \
338 /* Decrement paca->in_mce. */ \
339 lhz r12,PACA_IN_MCE(r13); \
340 subi r12,r12,1; \
341 sth r12,PACA_IN_MCE(r13); \
342 REST_GPR(11, r1); \
343 REST_2GPRS(12, r1); \
344 /* restore original r1. */ \
345 ld r1,GPR1(r1)
346
347 /*
348 * Handle machine check early in real mode. We come here with
349 * ME=1, MMU (IR=0 and DR=0) off and using MC emergency stack.
350 */
351 EXC_COMMON_BEGIN(machine_check_handle_early)
352 std r0,GPR0(r1) /* Save r0 */
353 EXCEPTION_PROLOG_COMMON_3(0x200)
354 bl save_nvgprs
355 addi r3,r1,STACK_FRAME_OVERHEAD
356 bl machine_check_early
357 std r3,RESULT(r1) /* Save result */
358 ld r12,_MSR(r1)
359 #ifdef CONFIG_PPC_P7_NAP
360 /*
361 * Check if thread was in power saving mode. We come here when any
362 * of the following is true:
363 * a. thread wasn't in power saving mode
364 * b. thread was in power saving mode with no state loss,
365 * supervisor state loss or hypervisor state loss.
366 *
367 * Go back to nap/sleep/winkle mode again if (b) is true.
368 */
369 rlwinm. r11,r12,47-31,30,31 /* Was it in power saving mode? */
370 beq 4f /* No, it wasn;t */
371 /* Thread was in power saving mode. Go back to nap again. */
372 cmpwi r11,2
373 blt 3f
374 /* Supervisor/Hypervisor state loss */
375 li r0,1
376 stb r0,PACA_NAPSTATELOST(r13)
377 3: bl machine_check_queue_event
378 MACHINE_CHECK_HANDLER_WINDUP
379 GET_PACA(r13)
380 ld r1,PACAR1(r13)
381 /*
382 * Check what idle state this CPU was in and go back to same mode
383 * again.
384 */
385 lbz r3,PACA_THREAD_IDLE_STATE(r13)
386 cmpwi r3,PNV_THREAD_NAP
387 bgt 10f
388 IDLE_STATE_ENTER_SEQ_NORET(PPC_NAP)
389 /* No return */
390 10:
391 cmpwi r3,PNV_THREAD_SLEEP
392 bgt 2f
393 IDLE_STATE_ENTER_SEQ_NORET(PPC_SLEEP)
394 /* No return */
395
396 2:
397 /*
398 * Go back to winkle. Please note that this thread was woken up in
399 * machine check from winkle and have not restored the per-subcore
400 * state. Hence before going back to winkle, set last bit of HSPRG0
401 * to 1. This will make sure that if this thread gets woken up
402 * again at reset vector 0x100 then it will get chance to restore
403 * the subcore state.
404 */
405 ori r13,r13,1
406 SET_PACA(r13)
407 IDLE_STATE_ENTER_SEQ_NORET(PPC_WINKLE)
408 /* No return */
409 4:
410 #endif
411 /*
412 * Check if we are coming from hypervisor userspace. If yes then we
413 * continue in host kernel in V mode to deliver the MC event.
414 */
415 rldicl. r11,r12,4,63 /* See if MC hit while in HV mode. */
416 beq 5f
417 andi. r11,r12,MSR_PR /* See if coming from user. */
418 bne 9f /* continue in V mode if we are. */
419
420 5:
421 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
422 /*
423 * We are coming from kernel context. Check if we are coming from
424 * guest. if yes, then we can continue. We will fall through
425 * do_kvm_200->kvmppc_interrupt to deliver the MC event to guest.
426 */
427 lbz r11,HSTATE_IN_GUEST(r13)
428 cmpwi r11,0 /* Check if coming from guest */
429 bne 9f /* continue if we are. */
430 #endif
431 /*
432 * At this point we are not sure about what context we come from.
433 * Queue up the MCE event and return from the interrupt.
434 * But before that, check if this is an un-recoverable exception.
435 * If yes, then stay on emergency stack and panic.
436 */
437 andi. r11,r12,MSR_RI
438 bne 2f
439 1: mfspr r11,SPRN_SRR0
440 LOAD_HANDLER(r10,unrecover_mce)
441 mtspr SPRN_SRR0,r10
442 ld r10,PACAKMSR(r13)
443 /*
444 * We are going down. But there are chances that we might get hit by
445 * another MCE during panic path and we may run into unstable state
446 * with no way out. Hence, turn ME bit off while going down, so that
447 * when another MCE is hit during panic path, system will checkstop
448 * and hypervisor will get restarted cleanly by SP.
449 */
450 li r3,MSR_ME
451 andc r10,r10,r3 /* Turn off MSR_ME */
452 mtspr SPRN_SRR1,r10
453 rfid
454 b .
455 2:
456 /*
457 * Check if we have successfully handled/recovered from error, if not
458 * then stay on emergency stack and panic.
459 */
460 ld r3,RESULT(r1) /* Load result */
461 cmpdi r3,0 /* see if we handled MCE successfully */
462
463 beq 1b /* if !handled then panic */
464 /*
465 * Return from MC interrupt.
466 * Queue up the MCE event so that we can log it later, while
467 * returning from kernel or opal call.
468 */
469 bl machine_check_queue_event
470 MACHINE_CHECK_HANDLER_WINDUP
471 rfid
472 9:
473 /* Deliver the machine check to host kernel in V mode. */
474 MACHINE_CHECK_HANDLER_WINDUP
475 b machine_check_pSeries
476
477 EXC_COMMON_BEGIN(unrecover_mce)
478 /* Invoke machine_check_exception to print MCE event and panic. */
479 addi r3,r1,STACK_FRAME_OVERHEAD
480 bl machine_check_exception
481 /*
482 * We will not reach here. Even if we did, there is no way out. Call
483 * unrecoverable_exception and die.
484 */
485 1: addi r3,r1,STACK_FRAME_OVERHEAD
486 bl unrecoverable_exception
487 b 1b
488
489
490 EXC_REAL(data_access, 0x300, 0x380)
491 EXC_VIRT(data_access, 0x4300, 0x4380, 0x300)
492 TRAMP_KVM_SKIP(PACA_EXGEN, 0x300)
493
494 EXC_COMMON_BEGIN(data_access_common)
495 /*
496 * Here r13 points to the paca, r9 contains the saved CR,
497 * SRR0 and SRR1 are saved in r11 and r12,
498 * r9 - r13 are saved in paca->exgen.
499 */
500 mfspr r10,SPRN_DAR
501 std r10,PACA_EXGEN+EX_DAR(r13)
502 mfspr r10,SPRN_DSISR
503 stw r10,PACA_EXGEN+EX_DSISR(r13)
504 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
505 RECONCILE_IRQ_STATE(r10, r11)
506 ld r12,_MSR(r1)
507 ld r3,PACA_EXGEN+EX_DAR(r13)
508 lwz r4,PACA_EXGEN+EX_DSISR(r13)
509 li r5,0x300
510 std r3,_DAR(r1)
511 std r4,_DSISR(r1)
512 BEGIN_MMU_FTR_SECTION
513 b do_hash_page /* Try to handle as hpte fault */
514 MMU_FTR_SECTION_ELSE
515 b handle_page_fault
516 ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
517
518
519 EXC_REAL_BEGIN(data_access_slb, 0x380, 0x400)
520 SET_SCRATCH0(r13)
521 EXCEPTION_PROLOG_0(PACA_EXSLB)
522 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
523 std r3,PACA_EXSLB+EX_R3(r13)
524 mfspr r3,SPRN_DAR
525 mfspr r12,SPRN_SRR1
526 crset 4*cr6+eq
527 #ifndef CONFIG_RELOCATABLE
528 b slb_miss_realmode
529 #else
530 /*
531 * We can't just use a direct branch to slb_miss_realmode
532 * because the distance from here to there depends on where
533 * the kernel ends up being put.
534 */
535 mfctr r11
536 LOAD_HANDLER(r10, slb_miss_realmode)
537 mtctr r10
538 bctr
539 #endif
540 EXC_REAL_END(data_access_slb, 0x380, 0x400)
541
542 EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x4400)
543 SET_SCRATCH0(r13)
544 EXCEPTION_PROLOG_0(PACA_EXSLB)
545 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
546 std r3,PACA_EXSLB+EX_R3(r13)
547 mfspr r3,SPRN_DAR
548 mfspr r12,SPRN_SRR1
549 crset 4*cr6+eq
550 #ifndef CONFIG_RELOCATABLE
551 b slb_miss_realmode
552 #else
553 /*
554 * We can't just use a direct branch to slb_miss_realmode
555 * because the distance from here to there depends on where
556 * the kernel ends up being put.
557 */
558 mfctr r11
559 LOAD_HANDLER(r10, slb_miss_realmode)
560 mtctr r10
561 bctr
562 #endif
563 EXC_VIRT_END(data_access_slb, 0x4380, 0x4400)
564 TRAMP_KVM_SKIP(PACA_EXSLB, 0x380)
565
566
567 EXC_REAL(instruction_access, 0x400, 0x480)
568 EXC_VIRT(instruction_access, 0x4400, 0x4480, 0x400)
569 TRAMP_KVM(PACA_EXGEN, 0x400)
570
571 EXC_COMMON_BEGIN(instruction_access_common)
572 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
573 RECONCILE_IRQ_STATE(r10, r11)
574 ld r12,_MSR(r1)
575 ld r3,_NIP(r1)
576 andis. r4,r12,0x5820
577 li r5,0x400
578 std r3,_DAR(r1)
579 std r4,_DSISR(r1)
580 BEGIN_MMU_FTR_SECTION
581 b do_hash_page /* Try to handle as hpte fault */
582 MMU_FTR_SECTION_ELSE
583 b handle_page_fault
584 ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
585
586
587 EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x500)
588 SET_SCRATCH0(r13)
589 EXCEPTION_PROLOG_0(PACA_EXSLB)
590 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
591 std r3,PACA_EXSLB+EX_R3(r13)
592 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
593 mfspr r12,SPRN_SRR1
594 crclr 4*cr6+eq
595 #ifndef CONFIG_RELOCATABLE
596 b slb_miss_realmode
597 #else
598 mfctr r11
599 LOAD_HANDLER(r10, slb_miss_realmode)
600 mtctr r10
601 bctr
602 #endif
603 EXC_REAL_END(instruction_access_slb, 0x480, 0x500)
604
605 EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x4500)
606 SET_SCRATCH0(r13)
607 EXCEPTION_PROLOG_0(PACA_EXSLB)
608 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
609 std r3,PACA_EXSLB+EX_R3(r13)
610 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
611 mfspr r12,SPRN_SRR1
612 crclr 4*cr6+eq
613 #ifndef CONFIG_RELOCATABLE
614 b slb_miss_realmode
615 #else
616 mfctr r11
617 LOAD_HANDLER(r10, slb_miss_realmode)
618 mtctr r10
619 bctr
620 #endif
621 EXC_VIRT_END(instruction_access_slb, 0x4480, 0x4500)
622 TRAMP_KVM(PACA_EXSLB, 0x480)
623
624
625 /* This handler is used by both 0x380 and 0x480 slb miss interrupts */
626 EXC_COMMON_BEGIN(slb_miss_realmode)
627 /*
628 * r13 points to the PACA, r9 contains the saved CR,
629 * r12 contain the saved SRR1, SRR0 is still ready for return
630 * r3 has the faulting address
631 * r9 - r13 are saved in paca->exslb.
632 * r3 is saved in paca->slb_r3
633 * cr6.eq is set for a D-SLB miss, clear for a I-SLB miss
634 * We assume we aren't going to take any exceptions during this
635 * procedure.
636 */
637 mflr r10
638 #ifdef CONFIG_RELOCATABLE
639 mtctr r11
640 #endif
641
642 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
643 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
644 std r3,PACA_EXSLB+EX_DAR(r13)
645
646 crset 4*cr0+eq
647 #ifdef CONFIG_PPC_STD_MMU_64
648 BEGIN_MMU_FTR_SECTION
649 bl slb_allocate_realmode
650 END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_RADIX)
651 #endif
652
653 ld r10,PACA_EXSLB+EX_LR(r13)
654 ld r3,PACA_EXSLB+EX_R3(r13)
655 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
656 mtlr r10
657
658 beq 8f /* if bad address, make full stack frame */
659
660 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
661 beq- 2f
662
663 /* All done -- return from exception. */
664
665 .machine push
666 .machine "power4"
667 mtcrf 0x80,r9
668 mtcrf 0x02,r9 /* I/D indication is in cr6 */
669 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
670 .machine pop
671
672 RESTORE_PPR_PACA(PACA_EXSLB, r9)
673 ld r9,PACA_EXSLB+EX_R9(r13)
674 ld r10,PACA_EXSLB+EX_R10(r13)
675 ld r11,PACA_EXSLB+EX_R11(r13)
676 ld r12,PACA_EXSLB+EX_R12(r13)
677 ld r13,PACA_EXSLB+EX_R13(r13)
678 rfid
679 b . /* prevent speculative execution */
680
681 2: mfspr r11,SPRN_SRR0
682 LOAD_HANDLER(r10,unrecov_slb)
683 mtspr SPRN_SRR0,r10
684 ld r10,PACAKMSR(r13)
685 mtspr SPRN_SRR1,r10
686 rfid
687 b .
688
689 8: mfspr r11,SPRN_SRR0
690 LOAD_HANDLER(r10,bad_addr_slb)
691 mtspr SPRN_SRR0,r10
692 ld r10,PACAKMSR(r13)
693 mtspr SPRN_SRR1,r10
694 rfid
695 b .
696
697 EXC_COMMON_BEGIN(unrecov_slb)
698 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
699 RECONCILE_IRQ_STATE(r10, r11)
700 bl save_nvgprs
701 1: addi r3,r1,STACK_FRAME_OVERHEAD
702 bl unrecoverable_exception
703 b 1b
704
705 EXC_COMMON_BEGIN(bad_addr_slb)
706 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXSLB)
707 RECONCILE_IRQ_STATE(r10, r11)
708 ld r3, PACA_EXSLB+EX_DAR(r13)
709 std r3, _DAR(r1)
710 beq cr6, 2f
711 li r10, 0x480 /* fix trap number for I-SLB miss */
712 std r10, _TRAP(r1)
713 2: bl save_nvgprs
714 addi r3, r1, STACK_FRAME_OVERHEAD
715 bl slb_miss_bad_addr
716 b ret_from_except
717
718 EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x600)
719 .globl hardware_interrupt_hv;
720 hardware_interrupt_hv:
721 BEGIN_FTR_SECTION
722 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
723 EXC_HV, SOFTEN_TEST_HV)
724 FTR_SECTION_ELSE
725 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
726 EXC_STD, SOFTEN_TEST_PR)
727 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
728 EXC_REAL_END(hardware_interrupt, 0x500, 0x600)
729
730 EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x4600)
731 .globl hardware_interrupt_relon_hv;
732 hardware_interrupt_relon_hv:
733 BEGIN_FTR_SECTION
734 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_HV, SOFTEN_TEST_HV)
735 FTR_SECTION_ELSE
736 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_STD, SOFTEN_TEST_PR)
737 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
738 EXC_VIRT_END(hardware_interrupt, 0x4500, 0x4600)
739
740 TRAMP_KVM(PACA_EXGEN, 0x500)
741 TRAMP_KVM_HV(PACA_EXGEN, 0x500)
742 EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
743
744
745 EXC_REAL(alignment, 0x600, 0x700)
746 EXC_VIRT(alignment, 0x4600, 0x4700, 0x600)
747 TRAMP_KVM(PACA_EXGEN, 0x600)
748 EXC_COMMON_BEGIN(alignment_common)
749 mfspr r10,SPRN_DAR
750 std r10,PACA_EXGEN+EX_DAR(r13)
751 mfspr r10,SPRN_DSISR
752 stw r10,PACA_EXGEN+EX_DSISR(r13)
753 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
754 ld r3,PACA_EXGEN+EX_DAR(r13)
755 lwz r4,PACA_EXGEN+EX_DSISR(r13)
756 std r3,_DAR(r1)
757 std r4,_DSISR(r1)
758 bl save_nvgprs
759 RECONCILE_IRQ_STATE(r10, r11)
760 addi r3,r1,STACK_FRAME_OVERHEAD
761 bl alignment_exception
762 b ret_from_except
763
764
765 EXC_REAL(program_check, 0x700, 0x800)
766 EXC_VIRT(program_check, 0x4700, 0x4800, 0x700)
767 TRAMP_KVM(PACA_EXGEN, 0x700)
768 EXC_COMMON_BEGIN(program_check_common)
769 /*
770 * It's possible to receive a TM Bad Thing type program check with
771 * userspace register values (in particular r1), but with SRR1 reporting
772 * that we came from the kernel. Normally that would confuse the bad
773 * stack logic, and we would report a bad kernel stack pointer. Instead
774 * we switch to the emergency stack if we're taking a TM Bad Thing from
775 * the kernel.
776 */
777 li r10,MSR_PR /* Build a mask of MSR_PR .. */
778 oris r10,r10,0x200000@h /* .. and SRR1_PROGTM */
779 and r10,r10,r12 /* Mask SRR1 with that. */
780 srdi r10,r10,8 /* Shift it so we can compare */
781 cmpldi r10,(0x200000 >> 8) /* .. with an immediate. */
782 bne 1f /* If != go to normal path. */
783
784 /* SRR1 had PR=0 and SRR1_PROGTM=1, so use the emergency stack */
785 andi. r10,r12,MSR_PR; /* Set CR0 correctly for label */
786 /* 3 in EXCEPTION_PROLOG_COMMON */
787 mr r10,r1 /* Save r1 */
788 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
789 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
790 b 3f /* Jump into the macro !! */
791 1: EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
792 bl save_nvgprs
793 RECONCILE_IRQ_STATE(r10, r11)
794 addi r3,r1,STACK_FRAME_OVERHEAD
795 bl program_check_exception
796 b ret_from_except
797
798
799 EXC_REAL(fp_unavailable, 0x800, 0x900)
800 EXC_VIRT(fp_unavailable, 0x4800, 0x4900, 0x800)
801 TRAMP_KVM(PACA_EXGEN, 0x800)
802 EXC_COMMON_BEGIN(fp_unavailable_common)
803 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
804 bne 1f /* if from user, just load it up */
805 bl save_nvgprs
806 RECONCILE_IRQ_STATE(r10, r11)
807 addi r3,r1,STACK_FRAME_OVERHEAD
808 bl kernel_fp_unavailable_exception
809 BUG_OPCODE
810 1:
811 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
812 BEGIN_FTR_SECTION
813 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
814 * transaction), go do TM stuff
815 */
816 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
817 bne- 2f
818 END_FTR_SECTION_IFSET(CPU_FTR_TM)
819 #endif
820 bl load_up_fpu
821 b fast_exception_return
822 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
823 2: /* User process was in a transaction */
824 bl save_nvgprs
825 RECONCILE_IRQ_STATE(r10, r11)
826 addi r3,r1,STACK_FRAME_OVERHEAD
827 bl fp_unavailable_tm
828 b ret_from_except
829 #endif
830
831
832 EXC_REAL_MASKABLE(decrementer, 0x900, 0x980)
833 EXC_VIRT_MASKABLE(decrementer, 0x4900, 0x4980, 0x900)
834 TRAMP_KVM(PACA_EXGEN, 0x900)
835 EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
836
837
838 EXC_REAL_HV(hdecrementer, 0x980, 0xa00)
839 EXC_VIRT_HV(hdecrementer, 0x4980, 0x4a00, 0x980)
840 TRAMP_KVM_HV(PACA_EXGEN, 0x980)
841 EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
842
843
844 EXC_REAL_MASKABLE(doorbell_super, 0xa00, 0xb00)
845 EXC_VIRT_MASKABLE(doorbell_super, 0x4a00, 0x4b00, 0xa00)
846 TRAMP_KVM(PACA_EXGEN, 0xa00)
847 #ifdef CONFIG_PPC_DOORBELL
848 EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
849 #else
850 EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
851 #endif
852
853
854 EXC_REAL(trap_0b, 0xb00, 0xc00)
855 EXC_VIRT(trap_0b, 0x4b00, 0x4c00, 0xb00)
856 TRAMP_KVM(PACA_EXGEN, 0xb00)
857 EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
858
859 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
860 /*
861 * If CONFIG_KVM_BOOK3S_64_HANDLER is set, save the PPR (on systems
862 * that support it) before changing to HMT_MEDIUM. That allows the KVM
863 * code to save that value into the guest state (it is the guest's PPR
864 * value). Otherwise just change to HMT_MEDIUM as userspace has
865 * already saved the PPR.
866 */
867 #define SYSCALL_KVMTEST \
868 SET_SCRATCH0(r13); \
869 GET_PACA(r13); \
870 std r9,PACA_EXGEN+EX_R9(r13); \
871 OPT_GET_SPR(r9, SPRN_PPR, CPU_FTR_HAS_PPR); \
872 HMT_MEDIUM; \
873 std r10,PACA_EXGEN+EX_R10(r13); \
874 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r9, CPU_FTR_HAS_PPR); \
875 mfcr r9; \
876 KVMTEST_PR(0xc00); \
877 GET_SCRATCH0(r13)
878
879 #else
880 #define SYSCALL_KVMTEST \
881 HMT_MEDIUM
882 #endif
883
884 #define LOAD_SYSCALL_HANDLER(reg) \
885 __LOAD_HANDLER(reg, system_call_common)
886
887 /* Syscall routine is used twice, in reloc-off and reloc-on paths */
888 #define SYSCALL_PSERIES_1 \
889 BEGIN_FTR_SECTION \
890 cmpdi r0,0x1ebe ; \
891 beq- 1f ; \
892 END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
893 mr r9,r13 ; \
894 GET_PACA(r13) ; \
895 mfspr r11,SPRN_SRR0 ; \
896 0:
897
898 #define SYSCALL_PSERIES_2_RFID \
899 mfspr r12,SPRN_SRR1 ; \
900 LOAD_SYSCALL_HANDLER(r10) ; \
901 mtspr SPRN_SRR0,r10 ; \
902 ld r10,PACAKMSR(r13) ; \
903 mtspr SPRN_SRR1,r10 ; \
904 rfid ; \
905 b . ; /* prevent speculative execution */
906
907 #define SYSCALL_PSERIES_3 \
908 /* Fast LE/BE switch system call */ \
909 1: mfspr r12,SPRN_SRR1 ; \
910 xori r12,r12,MSR_LE ; \
911 mtspr SPRN_SRR1,r12 ; \
912 rfid ; /* return to userspace */ \
913 b . ; /* prevent speculative execution */
914
915 #if defined(CONFIG_RELOCATABLE)
916 /*
917 * We can't branch directly so we do it via the CTR which
918 * is volatile across system calls.
919 */
920 #define SYSCALL_PSERIES_2_DIRECT \
921 LOAD_SYSCALL_HANDLER(r12) ; \
922 mtctr r12 ; \
923 mfspr r12,SPRN_SRR1 ; \
924 li r10,MSR_RI ; \
925 mtmsrd r10,1 ; \
926 bctr ;
927 #else
928 /* We can branch directly */
929 #define SYSCALL_PSERIES_2_DIRECT \
930 mfspr r12,SPRN_SRR1 ; \
931 li r10,MSR_RI ; \
932 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
933 b system_call_common ;
934 #endif
935
936 EXC_REAL_BEGIN(system_call, 0xc00, 0xd00)
937 SYSCALL_KVMTEST
938 SYSCALL_PSERIES_1
939 SYSCALL_PSERIES_2_RFID
940 SYSCALL_PSERIES_3
941 EXC_REAL_END(system_call, 0xc00, 0xd00)
942
943 EXC_VIRT_BEGIN(system_call, 0x4c00, 0x4d00)
944 SYSCALL_KVMTEST
945 SYSCALL_PSERIES_1
946 SYSCALL_PSERIES_2_DIRECT
947 SYSCALL_PSERIES_3
948 EXC_VIRT_END(system_call, 0x4c00, 0x4d00)
949
950 TRAMP_KVM(PACA_EXGEN, 0xc00)
951
952
953 EXC_REAL(single_step, 0xd00, 0xe00)
954 EXC_VIRT(single_step, 0x4d00, 0x4e00, 0xd00)
955 TRAMP_KVM(PACA_EXGEN, 0xd00)
956 EXC_COMMON(single_step_common, 0xd00, single_step_exception)
957
958 EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0xe20)
959 EXC_VIRT_OOL_HV(h_data_storage, 0x4e00, 0x4e20, 0xe00)
960 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
961 EXC_COMMON_BEGIN(h_data_storage_common)
962 mfspr r10,SPRN_HDAR
963 std r10,PACA_EXGEN+EX_DAR(r13)
964 mfspr r10,SPRN_HDSISR
965 stw r10,PACA_EXGEN+EX_DSISR(r13)
966 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
967 bl save_nvgprs
968 RECONCILE_IRQ_STATE(r10, r11)
969 addi r3,r1,STACK_FRAME_OVERHEAD
970 bl unknown_exception
971 b ret_from_except
972
973
974 EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0xe40)
975 EXC_VIRT_OOL_HV(h_instr_storage, 0x4e20, 0x4e40, 0xe20)
976 TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
977 EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
978
979
980 EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0xe60)
981 EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x4e60, 0xe40)
982 TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
983 EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
984
985
986 /*
987 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
988 * first, and then eventaully from there to the trampoline to get into virtual
989 * mode.
990 */
991 __EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0xe80, hmi_exception_early)
992 __TRAMP_REAL_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
993 EXC_VIRT_NONE(0x4e60, 0x4e80)
994 TRAMP_KVM_HV(PACA_EXGEN, 0xe60)
995 TRAMP_REAL_BEGIN(hmi_exception_early)
996 EXCEPTION_PROLOG_1(PACA_EXGEN, KVMTEST_HV, 0xe60)
997 mr r10,r1 /* Save r1 */
998 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
999 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
1000 std r9,_CCR(r1) /* save CR in stackframe */
1001 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
1002 std r11,_NIP(r1) /* save HSRR0 in stackframe */
1003 mfspr r12,SPRN_HSRR1 /* Save SRR1 */
1004 std r12,_MSR(r1) /* save SRR1 in stackframe */
1005 std r10,0(r1) /* make stack chain pointer */
1006 std r0,GPR0(r1) /* save r0 in stackframe */
1007 std r10,GPR1(r1) /* save r1 in stackframe */
1008 EXCEPTION_PROLOG_COMMON_2(PACA_EXGEN)
1009 EXCEPTION_PROLOG_COMMON_3(0xe60)
1010 addi r3,r1,STACK_FRAME_OVERHEAD
1011 BRANCH_LINK_TO_FAR(hmi_exception_realmode) /* Function call ABI */
1012 /* Windup the stack. */
1013 /* Move original HSRR0 and HSRR1 into the respective regs */
1014 ld r9,_MSR(r1)
1015 mtspr SPRN_HSRR1,r9
1016 ld r3,_NIP(r1)
1017 mtspr SPRN_HSRR0,r3
1018 ld r9,_CTR(r1)
1019 mtctr r9
1020 ld r9,_XER(r1)
1021 mtxer r9
1022 ld r9,_LINK(r1)
1023 mtlr r9
1024 REST_GPR(0, r1)
1025 REST_8GPRS(2, r1)
1026 REST_GPR(10, r1)
1027 ld r11,_CCR(r1)
1028 mtcr r11
1029 REST_GPR(11, r1)
1030 REST_2GPRS(12, r1)
1031 /* restore original r1. */
1032 ld r1,GPR1(r1)
1033
1034 /*
1035 * Go to virtual mode and pull the HMI event information from
1036 * firmware.
1037 */
1038 .globl hmi_exception_after_realmode
1039 hmi_exception_after_realmode:
1040 SET_SCRATCH0(r13)
1041 EXCEPTION_PROLOG_0(PACA_EXGEN)
1042 b tramp_real_hmi_exception
1043
1044 EXC_COMMON_ASYNC(hmi_exception_common, 0xe60, handle_hmi_exception)
1045
1046
1047 EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0xea0)
1048 EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x4ea0, 0xe80)
1049 TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1050 #ifdef CONFIG_PPC_DOORBELL
1051 EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1052 #else
1053 EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1054 #endif
1055
1056
1057 EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0xec0)
1058 EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x4ec0, 0xea0)
1059 TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
1060 EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1061
1062
1063 EXC_REAL_NONE(0xec0, 0xf00)
1064 EXC_VIRT_NONE(0x4ec0, 0x4f00)
1065
1066
1067 EXC_REAL_OOL(performance_monitor, 0xf00, 0xf20)
1068 EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x4f20, 0xf00)
1069 TRAMP_KVM(PACA_EXGEN, 0xf00)
1070 EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1071
1072
1073 EXC_REAL_OOL(altivec_unavailable, 0xf20, 0xf40)
1074 EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x4f40, 0xf20)
1075 TRAMP_KVM(PACA_EXGEN, 0xf20)
1076 EXC_COMMON_BEGIN(altivec_unavailable_common)
1077 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1078 #ifdef CONFIG_ALTIVEC
1079 BEGIN_FTR_SECTION
1080 beq 1f
1081 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1082 BEGIN_FTR_SECTION_NESTED(69)
1083 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1084 * transaction), go do TM stuff
1085 */
1086 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1087 bne- 2f
1088 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1089 #endif
1090 bl load_up_altivec
1091 b fast_exception_return
1092 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1093 2: /* User process was in a transaction */
1094 bl save_nvgprs
1095 RECONCILE_IRQ_STATE(r10, r11)
1096 addi r3,r1,STACK_FRAME_OVERHEAD
1097 bl altivec_unavailable_tm
1098 b ret_from_except
1099 #endif
1100 1:
1101 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1102 #endif
1103 bl save_nvgprs
1104 RECONCILE_IRQ_STATE(r10, r11)
1105 addi r3,r1,STACK_FRAME_OVERHEAD
1106 bl altivec_unavailable_exception
1107 b ret_from_except
1108
1109
1110 EXC_REAL_OOL(vsx_unavailable, 0xf40, 0xf60)
1111 EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x4f60, 0xf40)
1112 TRAMP_KVM(PACA_EXGEN, 0xf40)
1113 EXC_COMMON_BEGIN(vsx_unavailable_common)
1114 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1115 #ifdef CONFIG_VSX
1116 BEGIN_FTR_SECTION
1117 beq 1f
1118 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1119 BEGIN_FTR_SECTION_NESTED(69)
1120 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1121 * transaction), go do TM stuff
1122 */
1123 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1124 bne- 2f
1125 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1126 #endif
1127 b load_up_vsx
1128 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1129 2: /* User process was in a transaction */
1130 bl save_nvgprs
1131 RECONCILE_IRQ_STATE(r10, r11)
1132 addi r3,r1,STACK_FRAME_OVERHEAD
1133 bl vsx_unavailable_tm
1134 b ret_from_except
1135 #endif
1136 1:
1137 END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1138 #endif
1139 bl save_nvgprs
1140 RECONCILE_IRQ_STATE(r10, r11)
1141 addi r3,r1,STACK_FRAME_OVERHEAD
1142 bl vsx_unavailable_exception
1143 b ret_from_except
1144
1145
1146 EXC_REAL_OOL(facility_unavailable, 0xf60, 0xf80)
1147 EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x4f80, 0xf60)
1148 TRAMP_KVM(PACA_EXGEN, 0xf60)
1149 EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1150
1151
1152 EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0xfa0)
1153 EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x4fa0, 0xf80)
1154 TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
1155 EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1156
1157
1158 EXC_REAL_NONE(0xfa0, 0x1200)
1159 EXC_VIRT_NONE(0x4fa0, 0x5200)
1160
1161 #ifdef CONFIG_CBE_RAS
1162 EXC_REAL_HV(cbe_system_error, 0x1200, 0x1300)
1163 EXC_VIRT_NONE(0x5200, 0x5300)
1164 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
1165 EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
1166 #else /* CONFIG_CBE_RAS */
1167 EXC_REAL_NONE(0x1200, 0x1300)
1168 EXC_VIRT_NONE(0x5200, 0x5300)
1169 #endif
1170
1171
1172 EXC_REAL(instruction_breakpoint, 0x1300, 0x1400)
1173 EXC_VIRT(instruction_breakpoint, 0x5300, 0x5400, 0x1300)
1174 TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
1175 EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1176
1177 EXC_REAL_NONE(0x1400, 0x1500)
1178 EXC_VIRT_NONE(0x5400, 0x5500)
1179
1180 EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x1600)
1181 mtspr SPRN_SPRG_HSCRATCH0,r13
1182 EXCEPTION_PROLOG_0(PACA_EXGEN)
1183 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
1184
1185 #ifdef CONFIG_PPC_DENORMALISATION
1186 mfspr r10,SPRN_HSRR1
1187 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
1188 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1189 addi r11,r11,-4 /* HSRR0 is next instruction */
1190 bne+ denorm_assist
1191 #endif
1192
1193 KVMTEST_PR(0x1500)
1194 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
1195 EXC_REAL_END(denorm_exception_hv, 0x1500, 0x1600)
1196
1197 #ifdef CONFIG_PPC_DENORMALISATION
1198 EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x5600)
1199 b exc_real_0x1500_denorm_exception_hv
1200 EXC_VIRT_END(denorm_exception, 0x5500, 0x5600)
1201 #else
1202 EXC_VIRT_NONE(0x5500, 0x5600)
1203 #endif
1204
1205 TRAMP_KVM_SKIP(PACA_EXGEN, 0x1500)
1206
1207 #ifdef CONFIG_PPC_DENORMALISATION
1208 TRAMP_REAL_BEGIN(denorm_assist)
1209 BEGIN_FTR_SECTION
1210 /*
1211 * To denormalise we need to move a copy of the register to itself.
1212 * For POWER6 do that here for all FP regs.
1213 */
1214 mfmsr r10
1215 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1216 xori r10,r10,(MSR_FE0|MSR_FE1)
1217 mtmsrd r10
1218 sync
1219
1220 #define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1221 #define FMR4(n) FMR2(n) ; FMR2(n+2)
1222 #define FMR8(n) FMR4(n) ; FMR4(n+4)
1223 #define FMR16(n) FMR8(n) ; FMR8(n+8)
1224 #define FMR32(n) FMR16(n) ; FMR16(n+16)
1225 FMR32(0)
1226
1227 FTR_SECTION_ELSE
1228 /*
1229 * To denormalise we need to move a copy of the register to itself.
1230 * For POWER7 do that here for the first 32 VSX registers only.
1231 */
1232 mfmsr r10
1233 oris r10,r10,MSR_VSX@h
1234 mtmsrd r10
1235 sync
1236
1237 #define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1238 #define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1239 #define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1240 #define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1241 #define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1242 XVCPSGNDP32(0)
1243
1244 ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
1245
1246 BEGIN_FTR_SECTION
1247 b denorm_done
1248 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1249 /*
1250 * To denormalise we need to move a copy of the register to itself.
1251 * For POWER8 we need to do that for all 64 VSX registers
1252 */
1253 XVCPSGNDP32(32)
1254 denorm_done:
1255 mtspr SPRN_HSRR0,r11
1256 mtcrf 0x80,r9
1257 ld r9,PACA_EXGEN+EX_R9(r13)
1258 RESTORE_PPR_PACA(PACA_EXGEN, r10)
1259 BEGIN_FTR_SECTION
1260 ld r10,PACA_EXGEN+EX_CFAR(r13)
1261 mtspr SPRN_CFAR,r10
1262 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1263 ld r10,PACA_EXGEN+EX_R10(r13)
1264 ld r11,PACA_EXGEN+EX_R11(r13)
1265 ld r12,PACA_EXGEN+EX_R12(r13)
1266 ld r13,PACA_EXGEN+EX_R13(r13)
1267 HRFID
1268 b .
1269 #endif
1270
1271 EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
1272
1273
1274 #ifdef CONFIG_CBE_RAS
1275 EXC_REAL_HV(cbe_maintenance, 0x1600, 0x1700)
1276 EXC_VIRT_NONE(0x5600, 0x5700)
1277 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
1278 EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
1279 #else /* CONFIG_CBE_RAS */
1280 EXC_REAL_NONE(0x1600, 0x1700)
1281 EXC_VIRT_NONE(0x5600, 0x5700)
1282 #endif
1283
1284
1285 EXC_REAL(altivec_assist, 0x1700, 0x1800)
1286 EXC_VIRT(altivec_assist, 0x5700, 0x5800, 0x1700)
1287 TRAMP_KVM(PACA_EXGEN, 0x1700)
1288 #ifdef CONFIG_ALTIVEC
1289 EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1290 #else
1291 EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1292 #endif
1293
1294
1295 #ifdef CONFIG_CBE_RAS
1296 EXC_REAL_HV(cbe_thermal, 0x1800, 0x1900)
1297 EXC_VIRT_NONE(0x5800, 0x5900)
1298 TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
1299 EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
1300 #else /* CONFIG_CBE_RAS */
1301 EXC_REAL_NONE(0x1800, 0x1900)
1302 EXC_VIRT_NONE(0x5800, 0x5900)
1303 #endif
1304
1305
1306 /*
1307 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1308 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1309 * - If it was a doorbell we return immediately since doorbells are edge
1310 * triggered and won't automatically refire.
1311 * - If it was a HMI we return immediately since we handled it in realmode
1312 * and it won't refire.
1313 * - else we hard disable and return.
1314 * This is called with r10 containing the value to OR to the paca field.
1315 */
1316 #define MASKED_INTERRUPT(_H) \
1317 masked_##_H##interrupt: \
1318 std r11,PACA_EXGEN+EX_R11(r13); \
1319 lbz r11,PACAIRQHAPPENED(r13); \
1320 or r11,r11,r10; \
1321 stb r11,PACAIRQHAPPENED(r13); \
1322 cmpwi r10,PACA_IRQ_DEC; \
1323 bne 1f; \
1324 lis r10,0x7fff; \
1325 ori r10,r10,0xffff; \
1326 mtspr SPRN_DEC,r10; \
1327 b 2f; \
1328 1: cmpwi r10,PACA_IRQ_DBELL; \
1329 beq 2f; \
1330 cmpwi r10,PACA_IRQ_HMI; \
1331 beq 2f; \
1332 mfspr r10,SPRN_##_H##SRR1; \
1333 rldicl r10,r10,48,1; /* clear MSR_EE */ \
1334 rotldi r10,r10,16; \
1335 mtspr SPRN_##_H##SRR1,r10; \
1336 2: mtcrf 0x80,r9; \
1337 ld r9,PACA_EXGEN+EX_R9(r13); \
1338 ld r10,PACA_EXGEN+EX_R10(r13); \
1339 ld r11,PACA_EXGEN+EX_R11(r13); \
1340 GET_SCRATCH0(r13); \
1341 ##_H##rfid; \
1342 b .
1343
1344 /*
1345 * Real mode exceptions actually use this too, but alternate
1346 * instruction code patches (which end up in the common .text area)
1347 * cannot reach these if they are put there.
1348 */
1349 USE_FIXED_SECTION(virt_trampolines)
1350 MASKED_INTERRUPT()
1351 MASKED_INTERRUPT(H)
1352
1353 #ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1354 TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
1355 /*
1356 * Here all GPRs are unchanged from when the interrupt happened
1357 * except for r13, which is saved in SPRG_SCRATCH0.
1358 */
1359 mfspr r13, SPRN_SRR0
1360 addi r13, r13, 4
1361 mtspr SPRN_SRR0, r13
1362 GET_SCRATCH0(r13)
1363 rfid
1364 b .
1365
1366 TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
1367 /*
1368 * Here all GPRs are unchanged from when the interrupt happened
1369 * except for r13, which is saved in SPRG_SCRATCH0.
1370 */
1371 mfspr r13, SPRN_HSRR0
1372 addi r13, r13, 4
1373 mtspr SPRN_HSRR0, r13
1374 GET_SCRATCH0(r13)
1375 hrfid
1376 b .
1377 #endif
1378
1379 /*
1380 * Ensure that any handlers that get invoked from the exception prologs
1381 * above are below the first 64KB (0x10000) of the kernel image because
1382 * the prologs assemble the addresses of these handlers using the
1383 * LOAD_HANDLER macro, which uses an ori instruction.
1384 */
1385
1386 /*** Common interrupt handlers ***/
1387
1388
1389 /*
1390 * Relocation-on interrupts: A subset of the interrupts can be delivered
1391 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1392 * it. Addresses are the same as the original interrupt addresses, but
1393 * offset by 0xc000000000004000.
1394 * It's impossible to receive interrupts below 0x300 via this mechanism.
1395 * KVM: None of these traps are from the guest ; anything that escalated
1396 * to HV=1 from HV=0 is delivered via real mode handlers.
1397 */
1398
1399 /*
1400 * This uses the standard macro, since the original 0x300 vector
1401 * only has extra guff for STAB-based processors -- which never
1402 * come here.
1403 */
1404
1405 EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
1406 b __ppc64_runlatch_on
1407
1408 USE_FIXED_SECTION(virt_trampolines)
1409 /*
1410 * The __end_interrupts marker must be past the out-of-line (OOL)
1411 * handlers, so that they are copied to real address 0x100 when running
1412 * a relocatable kernel. This ensures they can be reached from the short
1413 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1414 * directly, without using LOAD_HANDLER().
1415 */
1416 .align 7
1417 .globl __end_interrupts
1418 __end_interrupts:
1419 DEFINE_FIXED_SYMBOL(__end_interrupts)
1420
1421 #ifdef CONFIG_PPC_970_NAP
1422 EXC_COMMON_BEGIN(power4_fixup_nap)
1423 andc r9,r9,r10
1424 std r9,TI_LOCAL_FLAGS(r11)
1425 ld r10,_LINK(r1) /* make idle task do the */
1426 std r10,_NIP(r1) /* equivalent of a blr */
1427 blr
1428 #endif
1429
1430 CLOSE_FIXED_SECTION(real_vectors);
1431 CLOSE_FIXED_SECTION(real_trampolines);
1432 CLOSE_FIXED_SECTION(virt_vectors);
1433 CLOSE_FIXED_SECTION(virt_trampolines);
1434
1435 USE_TEXT_SECTION()
1436
1437 /*
1438 * Hash table stuff
1439 */
1440 .balign IFETCH_ALIGN_BYTES
1441 do_hash_page:
1442 #ifdef CONFIG_PPC_STD_MMU_64
1443 andis. r0,r4,0xa410 /* weird error? */
1444 bne- handle_page_fault /* if not, try to insert a HPTE */
1445 andis. r0,r4,DSISR_DABRMATCH@h
1446 bne- handle_dabr_fault
1447 CURRENT_THREAD_INFO(r11, r1)
1448 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1449 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1450 bne 77f /* then don't call hash_page now */
1451
1452 /*
1453 * r3 contains the faulting address
1454 * r4 msr
1455 * r5 contains the trap number
1456 * r6 contains dsisr
1457 *
1458 * at return r3 = 0 for success, 1 for page fault, negative for error
1459 */
1460 mr r4,r12
1461 ld r6,_DSISR(r1)
1462 bl __hash_page /* build HPTE if possible */
1463 cmpdi r3,0 /* see if __hash_page succeeded */
1464
1465 /* Success */
1466 beq fast_exc_return_irq /* Return from exception on success */
1467
1468 /* Error */
1469 blt- 13f
1470 #endif /* CONFIG_PPC_STD_MMU_64 */
1471
1472 /* Here we have a page fault that hash_page can't handle. */
1473 handle_page_fault:
1474 11: ld r4,_DAR(r1)
1475 ld r5,_DSISR(r1)
1476 addi r3,r1,STACK_FRAME_OVERHEAD
1477 bl do_page_fault
1478 cmpdi r3,0
1479 beq+ 12f
1480 bl save_nvgprs
1481 mr r5,r3
1482 addi r3,r1,STACK_FRAME_OVERHEAD
1483 lwz r4,_DAR(r1)
1484 bl bad_page_fault
1485 b ret_from_except
1486
1487 /* We have a data breakpoint exception - handle it */
1488 handle_dabr_fault:
1489 bl save_nvgprs
1490 ld r4,_DAR(r1)
1491 ld r5,_DSISR(r1)
1492 addi r3,r1,STACK_FRAME_OVERHEAD
1493 bl do_break
1494 12: b ret_from_except_lite
1495
1496
1497 #ifdef CONFIG_PPC_STD_MMU_64
1498 /* We have a page fault that hash_page could handle but HV refused
1499 * the PTE insertion
1500 */
1501 13: bl save_nvgprs
1502 mr r5,r3
1503 addi r3,r1,STACK_FRAME_OVERHEAD
1504 ld r4,_DAR(r1)
1505 bl low_hash_fault
1506 b ret_from_except
1507 #endif
1508
1509 /*
1510 * We come here as a result of a DSI at a point where we don't want
1511 * to call hash_page, such as when we are accessing memory (possibly
1512 * user memory) inside a PMU interrupt that occurred while interrupts
1513 * were soft-disabled. We want to invoke the exception handler for
1514 * the access, or panic if there isn't a handler.
1515 */
1516 77: bl save_nvgprs
1517 mr r4,r3
1518 addi r3,r1,STACK_FRAME_OVERHEAD
1519 li r5,SIGSEGV
1520 bl bad_page_fault
1521 b ret_from_except
1522
1523 /*
1524 * Here we have detected that the kernel stack pointer is bad.
1525 * R9 contains the saved CR, r13 points to the paca,
1526 * r10 contains the (bad) kernel stack pointer,
1527 * r11 and r12 contain the saved SRR0 and SRR1.
1528 * We switch to using an emergency stack, save the registers there,
1529 * and call kernel_bad_stack(), which panics.
1530 */
1531 bad_stack:
1532 ld r1,PACAEMERGSP(r13)
1533 subi r1,r1,64+INT_FRAME_SIZE
1534 std r9,_CCR(r1)
1535 std r10,GPR1(r1)
1536 std r11,_NIP(r1)
1537 std r12,_MSR(r1)
1538 mfspr r11,SPRN_DAR
1539 mfspr r12,SPRN_DSISR
1540 std r11,_DAR(r1)
1541 std r12,_DSISR(r1)
1542 mflr r10
1543 mfctr r11
1544 mfxer r12
1545 std r10,_LINK(r1)
1546 std r11,_CTR(r1)
1547 std r12,_XER(r1)
1548 SAVE_GPR(0,r1)
1549 SAVE_GPR(2,r1)
1550 ld r10,EX_R3(r3)
1551 std r10,GPR3(r1)
1552 SAVE_GPR(4,r1)
1553 SAVE_4GPRS(5,r1)
1554 ld r9,EX_R9(r3)
1555 ld r10,EX_R10(r3)
1556 SAVE_2GPRS(9,r1)
1557 ld r9,EX_R11(r3)
1558 ld r10,EX_R12(r3)
1559 ld r11,EX_R13(r3)
1560 std r9,GPR11(r1)
1561 std r10,GPR12(r1)
1562 std r11,GPR13(r1)
1563 BEGIN_FTR_SECTION
1564 ld r10,EX_CFAR(r3)
1565 std r10,ORIG_GPR3(r1)
1566 END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1567 SAVE_8GPRS(14,r1)
1568 SAVE_10GPRS(22,r1)
1569 lhz r12,PACA_TRAP_SAVE(r13)
1570 std r12,_TRAP(r1)
1571 addi r11,r1,INT_FRAME_SIZE
1572 std r11,0(r1)
1573 li r12,0
1574 std r12,0(r11)
1575 ld r2,PACATOC(r13)
1576 ld r11,exception_marker@toc(r2)
1577 std r12,RESULT(r1)
1578 std r11,STACK_FRAME_OVERHEAD-16(r1)
1579 1: addi r3,r1,STACK_FRAME_OVERHEAD
1580 bl kernel_bad_stack
1581 b 1b
1582
1583 /*
1584 * Called from arch_local_irq_enable when an interrupt needs
1585 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1586 * which kind of interrupt. MSR:EE is already off. We generate a
1587 * stackframe like if a real interrupt had happened.
1588 *
1589 * Note: While MSR:EE is off, we need to make sure that _MSR
1590 * in the generated frame has EE set to 1 or the exception
1591 * handler will not properly re-enable them.
1592 */
1593 _GLOBAL(__replay_interrupt)
1594 /* We are going to jump to the exception common code which
1595 * will retrieve various register values from the PACA which
1596 * we don't give a damn about, so we don't bother storing them.
1597 */
1598 mfmsr r12
1599 mflr r11
1600 mfcr r9
1601 ori r12,r12,MSR_EE
1602 cmpwi r3,0x900
1603 beq decrementer_common
1604 cmpwi r3,0x500
1605 beq hardware_interrupt_common
1606 BEGIN_FTR_SECTION
1607 cmpwi r3,0xe80
1608 beq h_doorbell_common
1609 cmpwi r3,0xea0
1610 beq h_virt_irq_common
1611 cmpwi r3,0xe60
1612 beq hmi_exception_common
1613 FTR_SECTION_ELSE
1614 cmpwi r3,0xa00
1615 beq doorbell_super_common
1616 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1617 blr