]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/kernel/exceptions-64s.S
UBUNTU: [Config] CONFIG_SATA_HIGHBANK=y
[mirror_ubuntu-zesty-kernel.git] / arch / powerpc / kernel / exceptions-64s.S
CommitLineData
0ebc4cda
BH
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
25985edc 8 * position dependent assembly.
0ebc4cda
BH
9 *
10 * Most of this originates from head_64.S and thus has the same
11 * copyright history.
12 *
13 */
14
7230c564 15#include <asm/hw_irq.h>
8aa34ab8 16#include <asm/exception-64s.h>
46f52210 17#include <asm/ptrace.h>
7cba160a 18#include <asm/cpuidle.h>
da2bc464 19#include <asm/head-64.h>
8aa34ab8 20
0ebc4cda 21/*
57f26649
NP
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 *
0ebc4cda
BH
51 * We layout physical memory as follows:
52 * 0x0000 - 0x00ff : Secondary processor spin code
57f26649
NP
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
0ebc4cda 57 * 0x7000 - 0x7fff : FWNMI data area
57f26649
NP
58 * 0x8000 - .... : Common interrupt handlers, remaining early
59 * setup code, rest of kernel.
e0319829
NP
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.
57f26649
NP
64 */
65OPEN_FIXED_SECTION(real_vectors, 0x0100, 0x1900)
66OPEN_FIXED_SECTION(real_trampolines, 0x1900, 0x4000)
67OPEN_FIXED_SECTION(virt_vectors, 0x4000, 0x5900)
68OPEN_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
0ebc4cda 75 */
57f26649
NP
76ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
77OPEN_TEXT_SECTION(0x8000)
78#else
79OPEN_TEXT_SECTION(0x7000)
80#endif
81
82USE_FIXED_SECTION(real_vectors)
83
0ebc4cda
BH
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 */
0ebc4cda
BH
92 .globl __start_interrupts
93__start_interrupts:
94
e0319829
NP
95/* No virt vectors corresponding with 0x0..0x100 */
96EXC_VIRT_NONE(0x4000, 0x4100)
97
fb479e44 98
948cf67c 99#ifdef CONFIG_PPC_P7_NAP
fb479e44
NP
100 /*
101 * If running native on arch 2.06 or later, check if we are waking up
a37c15c3
BH
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.
948cf67c 107 */
fb479e44
NP
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) ; \
1151: \
116 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
117#else
118#define IDLETEST NOTEST
119#endif
371fefd6 120
fb479e44
NP
121EXC_REAL_BEGIN(system_reset, 0x100, 0x200)
122 SET_SCRATCH0(r13)
f23ed166
NP
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,
fb479e44
NP
126 IDLETEST, 0x100)
127
128EXC_REAL_END(system_reset, 0x100, 0x200)
129EXC_VIRT_NONE(0x4100, 0x4200)
130
131#ifdef CONFIG_PPC_P7_NAP
132EXC_COMMON_BEGIN(system_reset_idle_common)
f23ed166
NP
133BEGIN_FTR_SECTION
134 GET_PACA(r13) /* Restore HSPRG0 to get the winkle bit in r13 */
135END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300)
5fa6b6bd 136 bl pnv_restore_hyp_resource
77b54e9f 137
7cba160a
SP
138 li r0,PNV_THREAD_RUNNING
139 stb r0,PACA_THREAD_IDLE_STATE(r13) /* Clear thread state */
371fefd6 140
3a167bea 141#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
f0888f70
PM
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
f148cf06 149 BRANCH_TO_KVM(r10, kvm_start_guest)
371fefd6
PM
1501:
151#endif
152
56548fc0
PM
153 /* Return SRR1 from power7_nap() */
154 mfspr r3,SPRN_SRR1
17065671 155 blt cr3,2f
5fa6b6bd
SP
156 b pnv_wakeup_loss
1572: b pnv_wakeup_noloss
fb479e44 158#endif
aca79d2b 159
582baf44
NP
160EXC_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 */
166TRAMP_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
0ebc4cda 172
da2bc464 173EXC_REAL_BEGIN(machine_check, 0x200, 0x300)
b01c8b54
PM
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 */
1707dd16 178 SET_SCRATCH0(r13) /* save r13 */
bc14c491
MS
179 /*
180 * Running native on arch 2.06 or later, we may wakeup from winkle
f23ed166 181 * inside machine check. If yes, then last bit of HSPRG0 would be set
bc14c491 182 * to 1. Hence clear it unconditionally.
1c51089f 183 */
bc14c491
MS
184 GET_PACA(r13)
185 clrrdi r13,r13,1
186 SET_PACA(r13)
1707dd16 187 EXCEPTION_PROLOG_0(PACA_EXMC)
1e9b4507 188BEGIN_FTR_SECTION
2513767d 189 b machine_check_powernv_early
1e9b4507 190FTR_SECTION_ELSE
1707dd16 191 b machine_check_pSeries_0
1e9b4507 192ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
da2bc464 193EXC_REAL_END(machine_check, 0x200, 0x300)
afcf0095
NP
194EXC_VIRT_NONE(0x4200, 0x4300)
195TRAMP_REAL_BEGIN(machine_check_powernv_early)
196BEGIN_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 */
2260: 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)
2491: mtspr SPRN_SRR0,r12
250 mtspr SPRN_SRR1,r11
251 rfid
252 b . /* prevent speculative execution */
2532:
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 */
265END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
266
267TRAMP_REAL_BEGIN(machine_check_pSeries)
268 .globl machine_check_fwnmi
269machine_check_fwnmi:
270 SET_SCRATCH0(r13) /* save r13 */
271 EXCEPTION_PROLOG_0(PACA_EXMC)
272machine_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
290TRAMP_KVM_SKIP(PACA_EXMC, 0x200)
291
292EXC_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 */
351EXC_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)
3773: 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
407ac19b 388 IDLE_STATE_ENTER_SEQ_NORET(PPC_NAP)
afcf0095
NP
389 /* No return */
39010:
391 cmpwi r3,PNV_THREAD_SLEEP
392 bgt 2f
407ac19b 393 IDLE_STATE_ENTER_SEQ_NORET(PPC_SLEEP)
afcf0095
NP
394 /* No return */
395
3962:
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
f23ed166 400 * state. Hence before going back to winkle, set last bit of HSPRG0
afcf0095
NP
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)
407ac19b 407 IDLE_STATE_ENTER_SEQ_NORET(PPC_WINKLE)
afcf0095
NP
408 /* No return */
4094:
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
4205:
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
4391: 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 .
4552:
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
4729:
473 /* Deliver the machine check to host kernel in V mode. */
474 MACHINE_CHECK_HANDLER_WINDUP
475 b machine_check_pSeries
476
477EXC_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 */
4851: addi r3,r1,STACK_FRAME_OVERHEAD
486 bl unrecoverable_exception
487 b 1b
488
0ebc4cda 489
da2bc464 490EXC_REAL(data_access, 0x300, 0x380)
80795e6c
NP
491EXC_VIRT(data_access, 0x4300, 0x4380, 0x300)
492TRAMP_KVM_SKIP(PACA_EXGEN, 0x300)
493
494EXC_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)
512BEGIN_MMU_FTR_SECTION
513 b do_hash_page /* Try to handle as hpte fault */
514MMU_FTR_SECTION_ELSE
515 b handle_page_fault
516ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
517
0ebc4cda 518
da2bc464 519EXC_REAL_BEGIN(data_access_slb, 0x380, 0x400)
673b189a 520 SET_SCRATCH0(r13)
1707dd16 521 EXCEPTION_PROLOG_0(PACA_EXSLB)
da2bc464 522 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
0ebc4cda
BH
523 std r3,PACA_EXSLB+EX_R3(r13)
524 mfspr r3,SPRN_DAR
b01c8b54 525 mfspr r12,SPRN_SRR1
f0f558b1 526 crset 4*cr6+eq
0ebc4cda 527#ifndef CONFIG_RELOCATABLE
b1576fec 528 b slb_miss_realmode
0ebc4cda
BH
529#else
530 /*
ad0289e4 531 * We can't just use a direct branch to slb_miss_realmode
0ebc4cda
BH
532 * because the distance from here to there depends on where
533 * the kernel ends up being put.
534 */
535 mfctr r11
ad0289e4 536 LOAD_HANDLER(r10, slb_miss_realmode)
0ebc4cda
BH
537 mtctr r10
538 bctr
539#endif
da2bc464 540EXC_REAL_END(data_access_slb, 0x380, 0x400)
0ebc4cda 541
2b9af6e4
NP
542EXC_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
563EXC_VIRT_END(data_access_slb, 0x4380, 0x4400)
564TRAMP_KVM_SKIP(PACA_EXSLB, 0x380)
565
566
da2bc464 567EXC_REAL(instruction_access, 0x400, 0x480)
27ce77df
NP
568EXC_VIRT(instruction_access, 0x4400, 0x4480, 0x400)
569TRAMP_KVM(PACA_EXGEN, 0x400)
570
571EXC_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)
580BEGIN_MMU_FTR_SECTION
581 b do_hash_page /* Try to handle as hpte fault */
582MMU_FTR_SECTION_ELSE
583 b handle_page_fault
584ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
585
0ebc4cda 586
da2bc464 587EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x500)
673b189a 588 SET_SCRATCH0(r13)
1707dd16 589 EXCEPTION_PROLOG_0(PACA_EXSLB)
da2bc464 590 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
0ebc4cda
BH
591 std r3,PACA_EXSLB+EX_R3(r13)
592 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
b01c8b54 593 mfspr r12,SPRN_SRR1
f0f558b1 594 crclr 4*cr6+eq
0ebc4cda 595#ifndef CONFIG_RELOCATABLE
b1576fec 596 b slb_miss_realmode
0ebc4cda
BH
597#else
598 mfctr r11
ad0289e4 599 LOAD_HANDLER(r10, slb_miss_realmode)
0ebc4cda
BH
600 mtctr r10
601 bctr
602#endif
da2bc464 603EXC_REAL_END(instruction_access_slb, 0x480, 0x500)
0ebc4cda 604
8d04631a
NP
605EXC_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
621EXC_VIRT_END(instruction_access_slb, 0x4480, 0x4500)
622TRAMP_KVM(PACA_EXSLB, 0x480)
623
624
625/* This handler is used by both 0x380 and 0x480 slb miss interrupts */
626EXC_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
648BEGIN_MMU_FTR_SECTION
649 bl slb_allocate_realmode
650END_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
6812: 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
6898: 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
697EXC_COMMON_BEGIN(unrecov_slb)
698 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
699 RECONCILE_IRQ_STATE(r10, r11)
700 bl save_nvgprs
7011: addi r3,r1,STACK_FRAME_OVERHEAD
702 bl unrecoverable_exception
703 b 1b
704
705EXC_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)
7132: bl save_nvgprs
714 addi r3, r1, STACK_FRAME_OVERHEAD
715 bl slb_miss_bad_addr
716 b ret_from_except
717
da2bc464 718EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x600)
b3e6b5df 719 .globl hardware_interrupt_hv;
b3e6b5df 720hardware_interrupt_hv:
a5d4f3ad 721 BEGIN_FTR_SECTION
da2bc464 722 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
b01c8b54 723 EXC_HV, SOFTEN_TEST_HV)
de56a948 724 FTR_SECTION_ELSE
da2bc464 725 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
31a40e2b 726 EXC_STD, SOFTEN_TEST_PR)
969391c5 727 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
da2bc464
ME
728EXC_REAL_END(hardware_interrupt, 0x500, 0x600)
729
c138e588
NP
730EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x4600)
731 .globl hardware_interrupt_relon_hv;
732hardware_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)
738EXC_VIRT_END(hardware_interrupt, 0x4500, 0x4600)
739
13ed73eb
NP
740TRAMP_KVM(PACA_EXGEN, 0x500)
741TRAMP_KVM_HV(PACA_EXGEN, 0x500)
c138e588
NP
742EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
743
744
da2bc464 745EXC_REAL(alignment, 0x600, 0x700)
f9aa6714 746EXC_VIRT(alignment, 0x4600, 0x4700, 0x600)
da2bc464 747TRAMP_KVM(PACA_EXGEN, 0x600)
f9aa6714
NP
748EXC_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
da2bc464
ME
764
765EXC_REAL(program_check, 0x700, 0x800)
11e87346 766EXC_VIRT(program_check, 0x4700, 0x4800, 0x700)
da2bc464 767TRAMP_KVM(PACA_EXGEN, 0x700)
11e87346
NP
768EXC_COMMON_BEGIN(program_check_common)
769 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
770 bl save_nvgprs
771 RECONCILE_IRQ_STATE(r10, r11)
772 addi r3,r1,STACK_FRAME_OVERHEAD
773 bl program_check_exception
774 b ret_from_except
775
b01c8b54 776
da2bc464 777EXC_REAL(fp_unavailable, 0x800, 0x900)
c78d9b97 778EXC_VIRT(fp_unavailable, 0x4800, 0x4900, 0x800)
da2bc464 779TRAMP_KVM(PACA_EXGEN, 0x800)
c78d9b97
NP
780EXC_COMMON_BEGIN(fp_unavailable_common)
781 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
782 bne 1f /* if from user, just load it up */
783 bl save_nvgprs
784 RECONCILE_IRQ_STATE(r10, r11)
785 addi r3,r1,STACK_FRAME_OVERHEAD
786 bl kernel_fp_unavailable_exception
787 BUG_OPCODE
7881:
789#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
790BEGIN_FTR_SECTION
791 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
792 * transaction), go do TM stuff
793 */
794 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
795 bne- 2f
796END_FTR_SECTION_IFSET(CPU_FTR_TM)
797#endif
798 bl load_up_fpu
799 b fast_exception_return
800#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
8012: /* User process was in a transaction */
802 bl save_nvgprs
803 RECONCILE_IRQ_STATE(r10, r11)
804 addi r3,r1,STACK_FRAME_OVERHEAD
805 bl fp_unavailable_tm
806 b ret_from_except
807#endif
808
a5d4f3ad 809
da2bc464 810EXC_REAL_MASKABLE(decrementer, 0x900, 0x980)
39c0da57
NP
811EXC_VIRT_MASKABLE(decrementer, 0x4900, 0x4980, 0x900)
812TRAMP_KVM(PACA_EXGEN, 0x900)
813EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
814
a485c709 815
da2bc464 816EXC_REAL_HV(hdecrementer, 0x980, 0xa00)
facc6d74
NP
817EXC_VIRT_HV(hdecrementer, 0x4980, 0x4a00, 0x980)
818TRAMP_KVM_HV(PACA_EXGEN, 0x980)
819EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
820
a5d4f3ad 821
da2bc464 822EXC_REAL_MASKABLE(doorbell_super, 0xa00, 0xb00)
ca243163 823EXC_VIRT_MASKABLE(doorbell_super, 0x4a00, 0x4b00, 0xa00)
da2bc464 824TRAMP_KVM(PACA_EXGEN, 0xa00)
ca243163
NP
825#ifdef CONFIG_PPC_DOORBELL
826EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
827#else
828EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
829#endif
830
0ebc4cda 831
da2bc464 832EXC_REAL(trap_0b, 0xb00, 0xc00)
341215dc 833EXC_VIRT(trap_0b, 0x4b00, 0x4c00, 0xb00)
da2bc464 834TRAMP_KVM(PACA_EXGEN, 0xb00)
341215dc
NP
835EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
836
40a6d878
PM
837#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
838 /*
839 * If CONFIG_KVM_BOOK3S_64_HANDLER is set, save the PPR (on systems
840 * that support it) before changing to HMT_MEDIUM. That allows the KVM
841 * code to save that value into the guest state (it is the guest's PPR
842 * value). Otherwise just change to HMT_MEDIUM as userspace has
843 * already saved the PPR.
844 */
845#define SYSCALL_KVMTEST \
846 SET_SCRATCH0(r13); \
847 GET_PACA(r13); \
848 std r9,PACA_EXGEN+EX_R9(r13); \
849 OPT_GET_SPR(r9, SPRN_PPR, CPU_FTR_HAS_PPR); \
850 HMT_MEDIUM; \
851 std r10,PACA_EXGEN+EX_R10(r13); \
852 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r9, CPU_FTR_HAS_PPR); \
853 mfcr r9; \
854 KVMTEST_PR(0xc00); \
855 GET_SCRATCH0(r13)
856
857#else
858#define SYSCALL_KVMTEST \
859 HMT_MEDIUM
860#endif
861
fb479e44
NP
862#define LOAD_SYSCALL_HANDLER(reg) \
863 __LOAD_HANDLER(reg, system_call_common)
d807ad37
NP
864
865/* Syscall routine is used twice, in reloc-off and reloc-on paths */
866#define SYSCALL_PSERIES_1 \
867BEGIN_FTR_SECTION \
868 cmpdi r0,0x1ebe ; \
869 beq- 1f ; \
870END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
871 mr r9,r13 ; \
872 GET_PACA(r13) ; \
873 mfspr r11,SPRN_SRR0 ; \
8740:
875
876#define SYSCALL_PSERIES_2_RFID \
877 mfspr r12,SPRN_SRR1 ; \
878 LOAD_SYSCALL_HANDLER(r10) ; \
879 mtspr SPRN_SRR0,r10 ; \
880 ld r10,PACAKMSR(r13) ; \
881 mtspr SPRN_SRR1,r10 ; \
882 rfid ; \
883 b . ; /* prevent speculative execution */
884
885#define SYSCALL_PSERIES_3 \
886 /* Fast LE/BE switch system call */ \
8871: mfspr r12,SPRN_SRR1 ; \
888 xori r12,r12,MSR_LE ; \
889 mtspr SPRN_SRR1,r12 ; \
890 rfid ; /* return to userspace */ \
891 b . ; /* prevent speculative execution */
892
893#if defined(CONFIG_RELOCATABLE)
894 /*
895 * We can't branch directly so we do it via the CTR which
896 * is volatile across system calls.
897 */
898#define SYSCALL_PSERIES_2_DIRECT \
899 LOAD_SYSCALL_HANDLER(r12) ; \
900 mtctr r12 ; \
901 mfspr r12,SPRN_SRR1 ; \
902 li r10,MSR_RI ; \
903 mtmsrd r10,1 ; \
904 bctr ;
905#else
906 /* We can branch directly */
907#define SYSCALL_PSERIES_2_DIRECT \
908 mfspr r12,SPRN_SRR1 ; \
909 li r10,MSR_RI ; \
910 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
911 b system_call_common ;
912#endif
913
da2bc464 914EXC_REAL_BEGIN(system_call, 0xc00, 0xd00)
40a6d878 915 SYSCALL_KVMTEST
742415d6
MN
916 SYSCALL_PSERIES_1
917 SYSCALL_PSERIES_2_RFID
918 SYSCALL_PSERIES_3
da2bc464
ME
919EXC_REAL_END(system_call, 0xc00, 0xd00)
920
d807ad37 921EXC_VIRT_BEGIN(system_call, 0x4c00, 0x4d00)
40a6d878 922 SYSCALL_KVMTEST
d807ad37
NP
923 SYSCALL_PSERIES_1
924 SYSCALL_PSERIES_2_DIRECT
925 SYSCALL_PSERIES_3
926EXC_VIRT_END(system_call, 0x4c00, 0x4d00)
927
da2bc464
ME
928TRAMP_KVM(PACA_EXGEN, 0xc00)
929
d807ad37 930
da2bc464 931EXC_REAL(single_step, 0xd00, 0xe00)
bc6675c6 932EXC_VIRT(single_step, 0x4d00, 0x4e00, 0xd00)
da2bc464 933TRAMP_KVM(PACA_EXGEN, 0xd00)
bc6675c6 934EXC_COMMON(single_step_common, 0xd00, single_step_exception)
b01c8b54 935
a33532af 936EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0xe20)
40a6d878 937EXC_VIRT_OOL_HV(h_data_storage, 0x4e00, 0x4e20, 0xe00)
f5c32c1d
NP
938TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
939EXC_COMMON_BEGIN(h_data_storage_common)
940 mfspr r10,SPRN_HDAR
941 std r10,PACA_EXGEN+EX_DAR(r13)
942 mfspr r10,SPRN_HDSISR
943 stw r10,PACA_EXGEN+EX_DSISR(r13)
944 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
945 bl save_nvgprs
946 RECONCILE_IRQ_STATE(r10, r11)
947 addi r3,r1,STACK_FRAME_OVERHEAD
948 bl unknown_exception
949 b ret_from_except
f5c32c1d 950
1707dd16 951
a33532af 952EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0xe40)
40a6d878 953EXC_VIRT_OOL_HV(h_instr_storage, 0x4e20, 0x4e40, 0xe20)
82517cab
NP
954TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
955EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
956
1707dd16 957
a33532af
NP
958EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0xe60)
959EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x4e60, 0xe40)
031b4026
NP
960TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
961EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
962
1707dd16 963
e0319829
NP
964/*
965 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
966 * first, and then eventaully from there to the trampoline to get into virtual
967 * mode.
968 */
da2bc464 969__EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0xe80, hmi_exception_early)
62f9b03b 970__TRAMP_REAL_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
e0319829 971EXC_VIRT_NONE(0x4e60, 0x4e80)
62f9b03b
NP
972TRAMP_KVM_HV(PACA_EXGEN, 0xe60)
973TRAMP_REAL_BEGIN(hmi_exception_early)
974 EXCEPTION_PROLOG_1(PACA_EXGEN, KVMTEST_HV, 0xe60)
975 mr r10,r1 /* Save r1 */
976 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
977 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
978 std r9,_CCR(r1) /* save CR in stackframe */
979 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
980 std r11,_NIP(r1) /* save HSRR0 in stackframe */
981 mfspr r12,SPRN_HSRR1 /* Save SRR1 */
982 std r12,_MSR(r1) /* save SRR1 in stackframe */
983 std r10,0(r1) /* make stack chain pointer */
984 std r0,GPR0(r1) /* save r0 in stackframe */
985 std r10,GPR1(r1) /* save r1 in stackframe */
986 EXCEPTION_PROLOG_COMMON_2(PACA_EXGEN)
987 EXCEPTION_PROLOG_COMMON_3(0xe60)
988 addi r3,r1,STACK_FRAME_OVERHEAD
1fca7627 989 BRANCH_LINK_TO_FAR(r4, hmi_exception_realmode)
62f9b03b
NP
990 /* Windup the stack. */
991 /* Move original HSRR0 and HSRR1 into the respective regs */
992 ld r9,_MSR(r1)
993 mtspr SPRN_HSRR1,r9
994 ld r3,_NIP(r1)
995 mtspr SPRN_HSRR0,r3
996 ld r9,_CTR(r1)
997 mtctr r9
998 ld r9,_XER(r1)
999 mtxer r9
1000 ld r9,_LINK(r1)
1001 mtlr r9
1002 REST_GPR(0, r1)
1003 REST_8GPRS(2, r1)
1004 REST_GPR(10, r1)
1005 ld r11,_CCR(r1)
1006 mtcr r11
1007 REST_GPR(11, r1)
1008 REST_2GPRS(12, r1)
1009 /* restore original r1. */
1010 ld r1,GPR1(r1)
1011
1012 /*
1013 * Go to virtual mode and pull the HMI event information from
1014 * firmware.
1015 */
1016 .globl hmi_exception_after_realmode
1017hmi_exception_after_realmode:
1018 SET_SCRATCH0(r13)
1019 EXCEPTION_PROLOG_0(PACA_EXGEN)
1020 b tramp_real_hmi_exception
1021
1022EXC_COMMON_ASYNC(hmi_exception_common, 0xe60, handle_hmi_exception)
1023
1707dd16 1024
a33532af
NP
1025EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0xea0)
1026EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x4ea0, 0xe80)
9bcb81bf
NP
1027TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1028#ifdef CONFIG_PPC_DOORBELL
1029EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1030#else
1031EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1032#endif
1033
0ebc4cda 1034
a33532af
NP
1035EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0xec0)
1036EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x4ec0, 0xea0)
74408776
NP
1037TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
1038EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1039
9baaef0a 1040
da2bc464 1041EXC_REAL_NONE(0xec0, 0xf00)
bda7fea2
NP
1042EXC_VIRT_NONE(0x4ec0, 0x4f00)
1043
0ebc4cda 1044
a33532af
NP
1045EXC_REAL_OOL(performance_monitor, 0xf00, 0xf20)
1046EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x4f20, 0xf00)
b1c7f150
NP
1047TRAMP_KVM(PACA_EXGEN, 0xf00)
1048EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1049
0ebc4cda 1050
a33532af
NP
1051EXC_REAL_OOL(altivec_unavailable, 0xf20, 0xf40)
1052EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x4f40, 0xf20)
d1a0ca9c
NP
1053TRAMP_KVM(PACA_EXGEN, 0xf20)
1054EXC_COMMON_BEGIN(altivec_unavailable_common)
1055 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1056#ifdef CONFIG_ALTIVEC
1057BEGIN_FTR_SECTION
1058 beq 1f
1059#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1060 BEGIN_FTR_SECTION_NESTED(69)
1061 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1062 * transaction), go do TM stuff
1063 */
1064 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1065 bne- 2f
1066 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1067#endif
1068 bl load_up_altivec
1069 b fast_exception_return
1070#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
10712: /* User process was in a transaction */
1072 bl save_nvgprs
1073 RECONCILE_IRQ_STATE(r10, r11)
1074 addi r3,r1,STACK_FRAME_OVERHEAD
1075 bl altivec_unavailable_tm
1076 b ret_from_except
1077#endif
10781:
1079END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1080#endif
1081 bl save_nvgprs
1082 RECONCILE_IRQ_STATE(r10, r11)
1083 addi r3,r1,STACK_FRAME_OVERHEAD
1084 bl altivec_unavailable_exception
1085 b ret_from_except
1086
0ebc4cda 1087
a33532af
NP
1088EXC_REAL_OOL(vsx_unavailable, 0xf40, 0xf60)
1089EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x4f60, 0xf40)
792cbddd
NP
1090TRAMP_KVM(PACA_EXGEN, 0xf40)
1091EXC_COMMON_BEGIN(vsx_unavailable_common)
1092 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1093#ifdef CONFIG_VSX
1094BEGIN_FTR_SECTION
1095 beq 1f
1096#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1097 BEGIN_FTR_SECTION_NESTED(69)
1098 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1099 * transaction), go do TM stuff
1100 */
1101 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1102 bne- 2f
1103 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1104#endif
1105 b load_up_vsx
1106#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
11072: /* User process was in a transaction */
1108 bl save_nvgprs
1109 RECONCILE_IRQ_STATE(r10, r11)
1110 addi r3,r1,STACK_FRAME_OVERHEAD
1111 bl vsx_unavailable_tm
1112 b ret_from_except
1113#endif
11141:
1115END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1116#endif
1117 bl save_nvgprs
1118 RECONCILE_IRQ_STATE(r10, r11)
1119 addi r3,r1,STACK_FRAME_OVERHEAD
1120 bl vsx_unavailable_exception
1121 b ret_from_except
1122
da2bc464 1123
a33532af
NP
1124EXC_REAL_OOL(facility_unavailable, 0xf60, 0xf80)
1125EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x4f80, 0xf60)
1134713c
NP
1126TRAMP_KVM(PACA_EXGEN, 0xf60)
1127EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1128
da2bc464 1129
a33532af
NP
1130EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0xfa0)
1131EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x4fa0, 0xf80)
14b0072c
NP
1132TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
1133EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1134
da2bc464
ME
1135
1136EXC_REAL_NONE(0xfa0, 0x1200)
e46b964c 1137EXC_VIRT_NONE(0x4fa0, 0x5200)
d0c0c9a1 1138
0ebc4cda 1139#ifdef CONFIG_CBE_RAS
da2bc464 1140EXC_REAL_HV(cbe_system_error, 0x1200, 0x1300)
ff1b3206 1141EXC_VIRT_NONE(0x5200, 0x5300)
da2bc464 1142TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
ff1b3206 1143EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
da2bc464
ME
1144#else /* CONFIG_CBE_RAS */
1145EXC_REAL_NONE(0x1200, 0x1300)
e0319829 1146EXC_VIRT_NONE(0x5200, 0x5300)
da2bc464 1147#endif
b01c8b54 1148
ff1b3206 1149
da2bc464 1150EXC_REAL(instruction_breakpoint, 0x1300, 0x1400)
4e96dbbf 1151EXC_VIRT(instruction_breakpoint, 0x5300, 0x5400, 0x1300)
da2bc464 1152TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
4e96dbbf
NP
1153EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1154
e0319829
NP
1155EXC_REAL_NONE(0x1400, 0x1500)
1156EXC_VIRT_NONE(0x5400, 0x5500)
da2bc464
ME
1157
1158EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x1600)
b92a66a6 1159 mtspr SPRN_SPRG_HSCRATCH0,r13
1707dd16 1160 EXCEPTION_PROLOG_0(PACA_EXGEN)
630573c1 1161 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
b92a66a6
MN
1162
1163#ifdef CONFIG_PPC_DENORMALISATION
1164 mfspr r10,SPRN_HSRR1
1165 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
afcf0095
NP
1166 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1167 addi r11,r11,-4 /* HSRR0 is next instruction */
1168 bne+ denorm_assist
1169#endif
1e9b4507 1170
afcf0095
NP
1171 KVMTEST_PR(0x1500)
1172 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
1173EXC_REAL_END(denorm_exception_hv, 0x1500, 0x1600)
a74599a5 1174
d7e89849
NP
1175#ifdef CONFIG_PPC_DENORMALISATION
1176EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x5600)
1177 b exc_real_0x1500_denorm_exception_hv
1178EXC_VIRT_END(denorm_exception, 0x5500, 0x5600)
1179#else
1180EXC_VIRT_NONE(0x5500, 0x5600)
afcf0095
NP
1181#endif
1182
d7e89849 1183TRAMP_KVM_SKIP(PACA_EXGEN, 0x1500)
b01c8b54 1184
b92a66a6 1185#ifdef CONFIG_PPC_DENORMALISATION
da2bc464 1186TRAMP_REAL_BEGIN(denorm_assist)
b92a66a6
MN
1187BEGIN_FTR_SECTION
1188/*
1189 * To denormalise we need to move a copy of the register to itself.
1190 * For POWER6 do that here for all FP regs.
1191 */
1192 mfmsr r10
1193 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1194 xori r10,r10,(MSR_FE0|MSR_FE1)
1195 mtmsrd r10
1196 sync
d7c67fb1
MN
1197
1198#define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1199#define FMR4(n) FMR2(n) ; FMR2(n+2)
1200#define FMR8(n) FMR4(n) ; FMR4(n+4)
1201#define FMR16(n) FMR8(n) ; FMR8(n+8)
1202#define FMR32(n) FMR16(n) ; FMR16(n+16)
1203 FMR32(0)
1204
b92a66a6
MN
1205FTR_SECTION_ELSE
1206/*
1207 * To denormalise we need to move a copy of the register to itself.
1208 * For POWER7 do that here for the first 32 VSX registers only.
1209 */
1210 mfmsr r10
1211 oris r10,r10,MSR_VSX@h
1212 mtmsrd r10
1213 sync
d7c67fb1
MN
1214
1215#define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1216#define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1217#define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1218#define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1219#define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1220 XVCPSGNDP32(0)
1221
b92a66a6 1222ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
fb0fce3e
MN
1223
1224BEGIN_FTR_SECTION
1225 b denorm_done
1226END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1227/*
1228 * To denormalise we need to move a copy of the register to itself.
1229 * For POWER8 we need to do that for all 64 VSX registers
1230 */
1231 XVCPSGNDP32(32)
1232denorm_done:
b92a66a6
MN
1233 mtspr SPRN_HSRR0,r11
1234 mtcrf 0x80,r9
1235 ld r9,PACA_EXGEN+EX_R9(r13)
44e9309f 1236 RESTORE_PPR_PACA(PACA_EXGEN, r10)
630573c1
PM
1237BEGIN_FTR_SECTION
1238 ld r10,PACA_EXGEN+EX_CFAR(r13)
1239 mtspr SPRN_CFAR,r10
1240END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
b92a66a6
MN
1241 ld r10,PACA_EXGEN+EX_R10(r13)
1242 ld r11,PACA_EXGEN+EX_R11(r13)
1243 ld r12,PACA_EXGEN+EX_R12(r13)
1244 ld r13,PACA_EXGEN+EX_R13(r13)
1245 HRFID
1246 b .
1247#endif
1248
d7e89849
NP
1249EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
1250
1251
1252#ifdef CONFIG_CBE_RAS
1253EXC_REAL_HV(cbe_maintenance, 0x1600, 0x1700)
69a79344 1254EXC_VIRT_NONE(0x5600, 0x5700)
d7e89849 1255TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
69a79344 1256EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
d7e89849
NP
1257#else /* CONFIG_CBE_RAS */
1258EXC_REAL_NONE(0x1600, 0x1700)
e0319829 1259EXC_VIRT_NONE(0x5600, 0x5700)
d7e89849
NP
1260#endif
1261
69a79344 1262
d7e89849 1263EXC_REAL(altivec_assist, 0x1700, 0x1800)
b51c079e 1264EXC_VIRT(altivec_assist, 0x5700, 0x5800, 0x1700)
d7e89849 1265TRAMP_KVM(PACA_EXGEN, 0x1700)
b51c079e
NP
1266#ifdef CONFIG_ALTIVEC
1267EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1268#else
1269EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1270#endif
1271
d7e89849
NP
1272
1273#ifdef CONFIG_CBE_RAS
1274EXC_REAL_HV(cbe_thermal, 0x1800, 0x1900)
3965f8ab 1275EXC_VIRT_NONE(0x5800, 0x5900)
d7e89849 1276TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
3965f8ab 1277EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
d7e89849
NP
1278#else /* CONFIG_CBE_RAS */
1279EXC_REAL_NONE(0x1800, 0x1900)
e0319829 1280EXC_VIRT_NONE(0x5800, 0x5900)
d7e89849
NP
1281#endif
1282
1283
0ebc4cda 1284/*
fe9e1d54
IM
1285 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1286 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1287 * - If it was a doorbell we return immediately since doorbells are edge
1288 * triggered and won't automatically refire.
0869b6fd
MS
1289 * - If it was a HMI we return immediately since we handled it in realmode
1290 * and it won't refire.
fe9e1d54
IM
1291 * - else we hard disable and return.
1292 * This is called with r10 containing the value to OR to the paca field.
0ebc4cda 1293 */
7230c564
BH
1294#define MASKED_INTERRUPT(_H) \
1295masked_##_H##interrupt: \
1296 std r11,PACA_EXGEN+EX_R11(r13); \
1297 lbz r11,PACAIRQHAPPENED(r13); \
1298 or r11,r11,r10; \
1299 stb r11,PACAIRQHAPPENED(r13); \
fe9e1d54
IM
1300 cmpwi r10,PACA_IRQ_DEC; \
1301 bne 1f; \
7230c564
BH
1302 lis r10,0x7fff; \
1303 ori r10,r10,0xffff; \
1304 mtspr SPRN_DEC,r10; \
1305 b 2f; \
fe9e1d54 13061: cmpwi r10,PACA_IRQ_DBELL; \
0869b6fd
MS
1307 beq 2f; \
1308 cmpwi r10,PACA_IRQ_HMI; \
fe9e1d54
IM
1309 beq 2f; \
1310 mfspr r10,SPRN_##_H##SRR1; \
7230c564
BH
1311 rldicl r10,r10,48,1; /* clear MSR_EE */ \
1312 rotldi r10,r10,16; \
1313 mtspr SPRN_##_H##SRR1,r10; \
13142: mtcrf 0x80,r9; \
1315 ld r9,PACA_EXGEN+EX_R9(r13); \
1316 ld r10,PACA_EXGEN+EX_R10(r13); \
1317 ld r11,PACA_EXGEN+EX_R11(r13); \
1318 GET_SCRATCH0(r13); \
1319 ##_H##rfid; \
0ebc4cda 1320 b .
57f26649
NP
1321
1322/*
1323 * Real mode exceptions actually use this too, but alternate
1324 * instruction code patches (which end up in the common .text area)
1325 * cannot reach these if they are put there.
1326 */
1327USE_FIXED_SECTION(virt_trampolines)
7230c564
BH
1328 MASKED_INTERRUPT()
1329 MASKED_INTERRUPT(H)
0ebc4cda 1330
4f6c11db 1331#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
da2bc464 1332TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
4f6c11db
PM
1333 /*
1334 * Here all GPRs are unchanged from when the interrupt happened
1335 * except for r13, which is saved in SPRG_SCRATCH0.
1336 */
1337 mfspr r13, SPRN_SRR0
1338 addi r13, r13, 4
1339 mtspr SPRN_SRR0, r13
1340 GET_SCRATCH0(r13)
1341 rfid
1342 b .
1343
da2bc464 1344TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
4f6c11db
PM
1345 /*
1346 * Here all GPRs are unchanged from when the interrupt happened
1347 * except for r13, which is saved in SPRG_SCRATCH0.
1348 */
1349 mfspr r13, SPRN_HSRR0
1350 addi r13, r13, 4
1351 mtspr SPRN_HSRR0, r13
1352 GET_SCRATCH0(r13)
1353 hrfid
1354 b .
1355#endif
1356
0ebc4cda 1357/*
057b6d7e
HB
1358 * Ensure that any handlers that get invoked from the exception prologs
1359 * above are below the first 64KB (0x10000) of the kernel image because
1360 * the prologs assemble the addresses of these handlers using the
1361 * LOAD_HANDLER macro, which uses an ori instruction.
0ebc4cda
BH
1362 */
1363
1364/*** Common interrupt handlers ***/
1365
0ebc4cda 1366
c1fb6816
MN
1367 /*
1368 * Relocation-on interrupts: A subset of the interrupts can be delivered
1369 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1370 * it. Addresses are the same as the original interrupt addresses, but
1371 * offset by 0xc000000000004000.
1372 * It's impossible to receive interrupts below 0x300 via this mechanism.
1373 * KVM: None of these traps are from the guest ; anything that escalated
1374 * to HV=1 from HV=0 is delivered via real mode handlers.
1375 */
1376
1377 /*
1378 * This uses the standard macro, since the original 0x300 vector
1379 * only has extra guff for STAB-based processors -- which never
1380 * come here.
1381 */
da2bc464 1382
57f26649 1383EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
b1576fec 1384 b __ppc64_runlatch_on
fe1952fc 1385
57f26649 1386USE_FIXED_SECTION(virt_trampolines)
8ed8ab40
HB
1387 /*
1388 * The __end_interrupts marker must be past the out-of-line (OOL)
1389 * handlers, so that they are copied to real address 0x100 when running
1390 * a relocatable kernel. This ensures they can be reached from the short
1391 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1392 * directly, without using LOAD_HANDLER().
1393 */
1394 .align 7
1395 .globl __end_interrupts
1396__end_interrupts:
57f26649 1397DEFINE_FIXED_SYMBOL(__end_interrupts)
61383407 1398
087aa036 1399#ifdef CONFIG_PPC_970_NAP
7c8cb4b5 1400EXC_COMMON_BEGIN(power4_fixup_nap)
087aa036
CG
1401 andc r9,r9,r10
1402 std r9,TI_LOCAL_FLAGS(r11)
1403 ld r10,_LINK(r1) /* make idle task do the */
1404 std r10,_NIP(r1) /* equivalent of a blr */
1405 blr
1406#endif
1407
57f26649
NP
1408CLOSE_FIXED_SECTION(real_vectors);
1409CLOSE_FIXED_SECTION(real_trampolines);
1410CLOSE_FIXED_SECTION(virt_vectors);
1411CLOSE_FIXED_SECTION(virt_trampolines);
1412
1413USE_TEXT_SECTION()
1414
0ebc4cda
BH
1415/*
1416 * Hash table stuff
1417 */
f4329f2e 1418 .balign IFETCH_ALIGN_BYTES
6a3bab90 1419do_hash_page:
caca285e 1420#ifdef CONFIG_PPC_STD_MMU_64
9c7cc234 1421 andis. r0,r4,0xa410 /* weird error? */
0ebc4cda 1422 bne- handle_page_fault /* if not, try to insert a HPTE */
9c7cc234
P
1423 andis. r0,r4,DSISR_DABRMATCH@h
1424 bne- handle_dabr_fault
9778b696 1425 CURRENT_THREAD_INFO(r11, r1)
9c1e1052
PM
1426 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1427 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1428 bne 77f /* then don't call hash_page now */
0ebc4cda
BH
1429
1430 /*
1431 * r3 contains the faulting address
106713a1 1432 * r4 msr
0ebc4cda 1433 * r5 contains the trap number
aefa5688 1434 * r6 contains dsisr
0ebc4cda 1435 *
7230c564 1436 * at return r3 = 0 for success, 1 for page fault, negative for error
0ebc4cda 1437 */
106713a1 1438 mr r4,r12
aefa5688 1439 ld r6,_DSISR(r1)
106713a1
AK
1440 bl __hash_page /* build HPTE if possible */
1441 cmpdi r3,0 /* see if __hash_page succeeded */
0ebc4cda 1442
7230c564 1443 /* Success */
0ebc4cda 1444 beq fast_exc_return_irq /* Return from exception on success */
0ebc4cda 1445
7230c564
BH
1446 /* Error */
1447 blt- 13f
caca285e 1448#endif /* CONFIG_PPC_STD_MMU_64 */
9c7cc234 1449
0ebc4cda
BH
1450/* Here we have a page fault that hash_page can't handle. */
1451handle_page_fault:
0ebc4cda
BH
145211: ld r4,_DAR(r1)
1453 ld r5,_DSISR(r1)
1454 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 1455 bl do_page_fault
0ebc4cda 1456 cmpdi r3,0
a546498f 1457 beq+ 12f
b1576fec 1458 bl save_nvgprs
0ebc4cda
BH
1459 mr r5,r3
1460 addi r3,r1,STACK_FRAME_OVERHEAD
1461 lwz r4,_DAR(r1)
b1576fec
AB
1462 bl bad_page_fault
1463 b ret_from_except
0ebc4cda 1464
a546498f
BH
1465/* We have a data breakpoint exception - handle it */
1466handle_dabr_fault:
b1576fec 1467 bl save_nvgprs
a546498f
BH
1468 ld r4,_DAR(r1)
1469 ld r5,_DSISR(r1)
1470 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1471 bl do_break
147212: b ret_from_except_lite
a546498f 1473
0ebc4cda 1474
caca285e 1475#ifdef CONFIG_PPC_STD_MMU_64
0ebc4cda
BH
1476/* We have a page fault that hash_page could handle but HV refused
1477 * the PTE insertion
1478 */
b1576fec 147913: bl save_nvgprs
0ebc4cda
BH
1480 mr r5,r3
1481 addi r3,r1,STACK_FRAME_OVERHEAD
1482 ld r4,_DAR(r1)
b1576fec
AB
1483 bl low_hash_fault
1484 b ret_from_except
caca285e 1485#endif
0ebc4cda 1486
9c1e1052
PM
1487/*
1488 * We come here as a result of a DSI at a point where we don't want
1489 * to call hash_page, such as when we are accessing memory (possibly
1490 * user memory) inside a PMU interrupt that occurred while interrupts
1491 * were soft-disabled. We want to invoke the exception handler for
1492 * the access, or panic if there isn't a handler.
1493 */
b1576fec 149477: bl save_nvgprs
9c1e1052
PM
1495 mr r4,r3
1496 addi r3,r1,STACK_FRAME_OVERHEAD
1497 li r5,SIGSEGV
b1576fec
AB
1498 bl bad_page_fault
1499 b ret_from_except
4e2bf01b
ME
1500
1501/*
1502 * Here we have detected that the kernel stack pointer is bad.
1503 * R9 contains the saved CR, r13 points to the paca,
1504 * r10 contains the (bad) kernel stack pointer,
1505 * r11 and r12 contain the saved SRR0 and SRR1.
1506 * We switch to using an emergency stack, save the registers there,
1507 * and call kernel_bad_stack(), which panics.
1508 */
1509bad_stack:
1510 ld r1,PACAEMERGSP(r13)
1511 subi r1,r1,64+INT_FRAME_SIZE
1512 std r9,_CCR(r1)
1513 std r10,GPR1(r1)
1514 std r11,_NIP(r1)
1515 std r12,_MSR(r1)
1516 mfspr r11,SPRN_DAR
1517 mfspr r12,SPRN_DSISR
1518 std r11,_DAR(r1)
1519 std r12,_DSISR(r1)
1520 mflr r10
1521 mfctr r11
1522 mfxer r12
1523 std r10,_LINK(r1)
1524 std r11,_CTR(r1)
1525 std r12,_XER(r1)
1526 SAVE_GPR(0,r1)
1527 SAVE_GPR(2,r1)
1528 ld r10,EX_R3(r3)
1529 std r10,GPR3(r1)
1530 SAVE_GPR(4,r1)
1531 SAVE_4GPRS(5,r1)
1532 ld r9,EX_R9(r3)
1533 ld r10,EX_R10(r3)
1534 SAVE_2GPRS(9,r1)
1535 ld r9,EX_R11(r3)
1536 ld r10,EX_R12(r3)
1537 ld r11,EX_R13(r3)
1538 std r9,GPR11(r1)
1539 std r10,GPR12(r1)
1540 std r11,GPR13(r1)
1541BEGIN_FTR_SECTION
1542 ld r10,EX_CFAR(r3)
1543 std r10,ORIG_GPR3(r1)
1544END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1545 SAVE_8GPRS(14,r1)
1546 SAVE_10GPRS(22,r1)
1547 lhz r12,PACA_TRAP_SAVE(r13)
1548 std r12,_TRAP(r1)
1549 addi r11,r1,INT_FRAME_SIZE
1550 std r11,0(r1)
1551 li r12,0
1552 std r12,0(r11)
1553 ld r2,PACATOC(r13)
1554 ld r11,exception_marker@toc(r2)
1555 std r12,RESULT(r1)
1556 std r11,STACK_FRAME_OVERHEAD-16(r1)
15571: addi r3,r1,STACK_FRAME_OVERHEAD
1558 bl kernel_bad_stack
1559 b 1b
0f0c6ca1
NP
1560
1561/*
1562 * Called from arch_local_irq_enable when an interrupt needs
1563 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1564 * which kind of interrupt. MSR:EE is already off. We generate a
1565 * stackframe like if a real interrupt had happened.
1566 *
1567 * Note: While MSR:EE is off, we need to make sure that _MSR
1568 * in the generated frame has EE set to 1 or the exception
1569 * handler will not properly re-enable them.
1570 */
1571_GLOBAL(__replay_interrupt)
1572 /* We are going to jump to the exception common code which
1573 * will retrieve various register values from the PACA which
1574 * we don't give a damn about, so we don't bother storing them.
1575 */
1576 mfmsr r12
1577 mflr r11
1578 mfcr r9
1579 ori r12,r12,MSR_EE
1580 cmpwi r3,0x900
1581 beq decrementer_common
1582 cmpwi r3,0x500
1583 beq hardware_interrupt_common
1584BEGIN_FTR_SECTION
1585 cmpwi r3,0xe80
1586 beq h_doorbell_common
1587 cmpwi r3,0xea0
1588 beq h_virt_irq_common
1589 cmpwi r3,0xe60
1590 beq hmi_exception_common
1591FTR_SECTION_ELSE
1592 cmpwi r3,0xa00
1593 beq doorbell_super_common
1594ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1595 blr