powerpc/mce: Hookup derror (load/store) UE errors
[linux-2.6-block.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 95/* No virt vectors corresponding with 0x0..0x100 */
1a6822d1 96EXC_VIRT_NONE(0x4000, 0x100)
e0319829 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
ba6d334a
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 ; \
b51351e2 114 BRANCH_TO_C000(r10, system_reset_idle_common) ; \
fb479e44
NP
1151: \
116 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
117#else
118#define IDLETEST NOTEST
119#endif
371fefd6 120
1a6822d1 121EXC_REAL_BEGIN(system_reset, 0x100, 0x100)
fb479e44 122 SET_SCRATCH0(r13)
c4f3b52c
NP
123 /*
124 * MSR_RI is not enabled, because PACA_EXNMI and nmi stack is
125 * being used, so a nested NMI exception would corrupt it.
126 */
127 EXCEPTION_PROLOG_PSERIES_NORI(PACA_EXNMI, system_reset_common, EXC_STD,
fb479e44
NP
128 IDLETEST, 0x100)
129
1a6822d1
NP
130EXC_REAL_END(system_reset, 0x100, 0x100)
131EXC_VIRT_NONE(0x4100, 0x100)
fb479e44
NP
132
133#ifdef CONFIG_PPC_P7_NAP
134EXC_COMMON_BEGIN(system_reset_idle_common)
9d292501 135 mfspr r12,SPRN_SRR1
bf0153c1 136 b pnv_powersave_wakeup
371fefd6
PM
137#endif
138
a3d96f70 139EXC_COMMON_BEGIN(system_reset_common)
c4f3b52c
NP
140 /*
141 * Increment paca->in_nmi then enable MSR_RI. SLB or MCE will be able
142 * to recover, but nested NMI will notice in_nmi and not recover
143 * because of the use of the NMI stack. in_nmi reentrancy is tested in
144 * system_reset_exception.
145 */
146 lhz r10,PACA_IN_NMI(r13)
147 addi r10,r10,1
148 sth r10,PACA_IN_NMI(r13)
149 li r10,MSR_RI
150 mtmsrd r10,1
aca79d2b 151
b1ee8a3d
NP
152 mr r10,r1
153 ld r1,PACA_NMI_EMERG_SP(r13)
154 subi r1,r1,INT_FRAME_SIZE
155 EXCEPTION_COMMON_NORET_STACK(PACA_EXNMI, 0x100,
156 system_reset, system_reset_exception,
c4f3b52c 157 ADD_NVGPRS;ADD_RECONCILE)
c4f3b52c
NP
158
159 /*
160 * The stack is no longer in use, decrement in_nmi.
161 */
162 lhz r10,PACA_IN_NMI(r13)
163 subi r10,r10,1
164 sth r10,PACA_IN_NMI(r13)
165
166 b ret_from_except
582baf44
NP
167
168#ifdef CONFIG_PPC_PSERIES
169/*
170 * Vectors for the FWNMI option. Share common code.
171 */
172TRAMP_REAL_BEGIN(system_reset_fwnmi)
173 SET_SCRATCH0(r13) /* save r13 */
c4f3b52c
NP
174 /* See comment at system_reset exception */
175 EXCEPTION_PROLOG_PSERIES_NORI(PACA_EXNMI, system_reset_common,
176 EXC_STD, NOTEST, 0x100)
582baf44
NP
177#endif /* CONFIG_PPC_PSERIES */
178
0ebc4cda 179
1a6822d1 180EXC_REAL_BEGIN(machine_check, 0x200, 0x100)
b01c8b54
PM
181 /* This is moved out of line as it can be patched by FW, but
182 * some code path might still want to branch into the original
183 * vector
184 */
1707dd16
PM
185 SET_SCRATCH0(r13) /* save r13 */
186 EXCEPTION_PROLOG_0(PACA_EXMC)
1e9b4507 187BEGIN_FTR_SECTION
2513767d 188 b machine_check_powernv_early
1e9b4507 189FTR_SECTION_ELSE
1707dd16 190 b machine_check_pSeries_0
1e9b4507 191ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1a6822d1
NP
192EXC_REAL_END(machine_check, 0x200, 0x100)
193EXC_VIRT_NONE(0x4200, 0x100)
afcf0095
NP
194TRAMP_REAL_BEGIN(machine_check_powernv_early)
195BEGIN_FTR_SECTION
196 EXCEPTION_PROLOG_1(PACA_EXMC, NOTEST, 0x200)
197 /*
198 * Register contents:
199 * R13 = PACA
200 * R9 = CR
201 * Original R9 to R13 is saved on PACA_EXMC
202 *
203 * Switch to mc_emergency stack and handle re-entrancy (we limit
204 * the nested MCE upto level 4 to avoid stack overflow).
205 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
206 *
207 * We use paca->in_mce to check whether this is the first entry or
208 * nested machine check. We increment paca->in_mce to track nested
209 * machine checks.
210 *
211 * If this is the first entry then set stack pointer to
212 * paca->mc_emergency_sp, otherwise r1 is already pointing to
213 * stack frame on mc_emergency stack.
214 *
215 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
216 * checkstop if we get another machine check exception before we do
217 * rfid with MSR_ME=1.
1945bc45
NP
218 *
219 * This interrupt can wake directly from idle. If that is the case,
220 * the machine check is handled then the idle wakeup code is called
221 * to restore state. In that case, the POWER9 DD1 idle PACA workaround
222 * is not applied in the early machine check code, which will cause
223 * bugs.
afcf0095
NP
224 */
225 mr r11,r1 /* Save r1 */
226 lhz r10,PACA_IN_MCE(r13)
227 cmpwi r10,0 /* Are we in nested machine check */
228 bne 0f /* Yes, we are. */
229 /* First machine check entry */
230 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
2310: subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
232 addi r10,r10,1 /* increment paca->in_mce */
233 sth r10,PACA_IN_MCE(r13)
234 /* Limit nested MCE to level 4 to avoid stack overflow */
ba41e1e1 235 cmpwi r10,MAX_MCE_DEPTH
afcf0095
NP
236 bgt 2f /* Check if we hit limit of 4 */
237 std r11,GPR1(r1) /* Save r1 on the stack. */
238 std r11,0(r1) /* make stack chain pointer */
239 mfspr r11,SPRN_SRR0 /* Save SRR0 */
240 std r11,_NIP(r1)
241 mfspr r11,SPRN_SRR1 /* Save SRR1 */
242 std r11,_MSR(r1)
243 mfspr r11,SPRN_DAR /* Save DAR */
244 std r11,_DAR(r1)
245 mfspr r11,SPRN_DSISR /* Save DSISR */
246 std r11,_DSISR(r1)
247 std r9,_CCR(r1) /* Save CR in stackframe */
248 /* Save r9 through r13 from EXMC save area to stack frame. */
249 EXCEPTION_PROLOG_COMMON_2(PACA_EXMC)
250 mfmsr r11 /* get MSR value */
251 ori r11,r11,MSR_ME /* turn on ME bit */
252 ori r11,r11,MSR_RI /* turn on RI bit */
253 LOAD_HANDLER(r12, machine_check_handle_early)
2541: mtspr SPRN_SRR0,r12
255 mtspr SPRN_SRR1,r11
256 rfid
257 b . /* prevent speculative execution */
2582:
259 /* Stack overflow. Stay on emergency stack and panic.
260 * Keep the ME bit off while panic-ing, so that if we hit
261 * another machine check we checkstop.
262 */
263 addi r1,r1,INT_FRAME_SIZE /* go back to previous stack frame */
264 ld r11,PACAKMSR(r13)
265 LOAD_HANDLER(r12, unrecover_mce)
266 li r10,MSR_ME
267 andc r11,r11,r10 /* Turn off MSR_ME */
268 b 1b
269 b . /* prevent speculative execution */
270END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
271
272TRAMP_REAL_BEGIN(machine_check_pSeries)
273 .globl machine_check_fwnmi
274machine_check_fwnmi:
275 SET_SCRATCH0(r13) /* save r13 */
276 EXCEPTION_PROLOG_0(PACA_EXMC)
277machine_check_pSeries_0:
278 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST_PR, 0x200)
279 /*
83a980f7
NP
280 * MSR_RI is not enabled, because PACA_EXMC is being used, so a
281 * nested machine check corrupts it. machine_check_common enables
282 * MSR_RI.
afcf0095 283 */
83a980f7 284 EXCEPTION_PROLOG_PSERIES_1_NORI(machine_check_common, EXC_STD)
afcf0095
NP
285
286TRAMP_KVM_SKIP(PACA_EXMC, 0x200)
287
288EXC_COMMON_BEGIN(machine_check_common)
289 /*
290 * Machine check is different because we use a different
291 * save area: PACA_EXMC instead of PACA_EXGEN.
292 */
293 mfspr r10,SPRN_DAR
294 std r10,PACA_EXMC+EX_DAR(r13)
295 mfspr r10,SPRN_DSISR
296 stw r10,PACA_EXMC+EX_DSISR(r13)
297 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
298 FINISH_NAP
299 RECONCILE_IRQ_STATE(r10, r11)
300 ld r3,PACA_EXMC+EX_DAR(r13)
301 lwz r4,PACA_EXMC+EX_DSISR(r13)
302 /* Enable MSR_RI when finished with PACA_EXMC */
303 li r10,MSR_RI
304 mtmsrd r10,1
305 std r3,_DAR(r1)
306 std r4,_DSISR(r1)
307 bl save_nvgprs
308 addi r3,r1,STACK_FRAME_OVERHEAD
309 bl machine_check_exception
310 b ret_from_except
311
312#define MACHINE_CHECK_HANDLER_WINDUP \
313 /* Clear MSR_RI before setting SRR0 and SRR1. */\
314 li r0,MSR_RI; \
315 mfmsr r9; /* get MSR value */ \
316 andc r9,r9,r0; \
317 mtmsrd r9,1; /* Clear MSR_RI */ \
318 /* Move original SRR0 and SRR1 into the respective regs */ \
319 ld r9,_MSR(r1); \
320 mtspr SPRN_SRR1,r9; \
321 ld r3,_NIP(r1); \
322 mtspr SPRN_SRR0,r3; \
323 ld r9,_CTR(r1); \
324 mtctr r9; \
325 ld r9,_XER(r1); \
326 mtxer r9; \
327 ld r9,_LINK(r1); \
328 mtlr r9; \
329 REST_GPR(0, r1); \
330 REST_8GPRS(2, r1); \
331 REST_GPR(10, r1); \
332 ld r11,_CCR(r1); \
333 mtcr r11; \
334 /* Decrement paca->in_mce. */ \
335 lhz r12,PACA_IN_MCE(r13); \
336 subi r12,r12,1; \
337 sth r12,PACA_IN_MCE(r13); \
338 REST_GPR(11, r1); \
339 REST_2GPRS(12, r1); \
340 /* restore original r1. */ \
341 ld r1,GPR1(r1)
342
1945bc45
NP
343#ifdef CONFIG_PPC_P7_NAP
344/*
345 * This is an idle wakeup. Low level machine check has already been
346 * done. Queue the event then call the idle code to do the wake up.
347 */
348EXC_COMMON_BEGIN(machine_check_idle_common)
349 bl machine_check_queue_event
350
351 /*
352 * We have not used any non-volatile GPRs here, and as a rule
353 * most exception code including machine check does not.
354 * Therefore PACA_NAPSTATELOST does not need to be set. Idle
355 * wakeup will restore volatile registers.
356 *
357 * Load the original SRR1 into r3 for pnv_powersave_wakeup_mce.
358 *
359 * Then decrement MCE nesting after finishing with the stack.
360 */
361 ld r3,_MSR(r1)
362
363 lhz r11,PACA_IN_MCE(r13)
364 subi r11,r11,1
365 sth r11,PACA_IN_MCE(r13)
366
367 /* Turn off the RI bit because SRR1 is used by idle wakeup code. */
368 /* Recoverability could be improved by reducing the use of SRR1. */
369 li r11,0
370 mtmsrd r11,1
371
372 b pnv_powersave_wakeup_mce
373#endif
afcf0095
NP
374 /*
375 * Handle machine check early in real mode. We come here with
376 * ME=1, MMU (IR=0 and DR=0) off and using MC emergency stack.
377 */
378EXC_COMMON_BEGIN(machine_check_handle_early)
379 std r0,GPR0(r1) /* Save r0 */
380 EXCEPTION_PROLOG_COMMON_3(0x200)
381 bl save_nvgprs
382 addi r3,r1,STACK_FRAME_OVERHEAD
383 bl machine_check_early
384 std r3,RESULT(r1) /* Save result */
385 ld r12,_MSR(r1)
1945bc45 386
afcf0095
NP
387#ifdef CONFIG_PPC_P7_NAP
388 /*
389 * Check if thread was in power saving mode. We come here when any
390 * of the following is true:
391 * a. thread wasn't in power saving mode
392 * b. thread was in power saving mode with no state loss,
393 * supervisor state loss or hypervisor state loss.
394 *
395 * Go back to nap/sleep/winkle mode again if (b) is true.
396 */
1945bc45
NP
397 BEGIN_FTR_SECTION
398 rlwinm. r11,r12,47-31,30,31
6102c005 399 bne machine_check_idle_common
1945bc45 400 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
afcf0095 401#endif
1945bc45 402
afcf0095
NP
403 /*
404 * Check if we are coming from hypervisor userspace. If yes then we
405 * continue in host kernel in V mode to deliver the MC event.
406 */
407 rldicl. r11,r12,4,63 /* See if MC hit while in HV mode. */
408 beq 5f
409 andi. r11,r12,MSR_PR /* See if coming from user. */
410 bne 9f /* continue in V mode if we are. */
411
4125:
413#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
414 /*
415 * We are coming from kernel context. Check if we are coming from
416 * guest. if yes, then we can continue. We will fall through
417 * do_kvm_200->kvmppc_interrupt to deliver the MC event to guest.
418 */
419 lbz r11,HSTATE_IN_GUEST(r13)
420 cmpwi r11,0 /* Check if coming from guest */
421 bne 9f /* continue if we are. */
422#endif
423 /*
424 * At this point we are not sure about what context we come from.
425 * Queue up the MCE event and return from the interrupt.
426 * But before that, check if this is an un-recoverable exception.
427 * If yes, then stay on emergency stack and panic.
428 */
429 andi. r11,r12,MSR_RI
430 bne 2f
4311: mfspr r11,SPRN_SRR0
432 LOAD_HANDLER(r10,unrecover_mce)
433 mtspr SPRN_SRR0,r10
434 ld r10,PACAKMSR(r13)
435 /*
436 * We are going down. But there are chances that we might get hit by
437 * another MCE during panic path and we may run into unstable state
438 * with no way out. Hence, turn ME bit off while going down, so that
439 * when another MCE is hit during panic path, system will checkstop
440 * and hypervisor will get restarted cleanly by SP.
441 */
442 li r3,MSR_ME
443 andc r10,r10,r3 /* Turn off MSR_ME */
444 mtspr SPRN_SRR1,r10
445 rfid
446 b .
4472:
448 /*
449 * Check if we have successfully handled/recovered from error, if not
450 * then stay on emergency stack and panic.
451 */
452 ld r3,RESULT(r1) /* Load result */
453 cmpdi r3,0 /* see if we handled MCE successfully */
454
455 beq 1b /* if !handled then panic */
456 /*
457 * Return from MC interrupt.
458 * Queue up the MCE event so that we can log it later, while
459 * returning from kernel or opal call.
460 */
461 bl machine_check_queue_event
462 MACHINE_CHECK_HANDLER_WINDUP
463 rfid
4649:
465 /* Deliver the machine check to host kernel in V mode. */
466 MACHINE_CHECK_HANDLER_WINDUP
467 b machine_check_pSeries
468
469EXC_COMMON_BEGIN(unrecover_mce)
470 /* Invoke machine_check_exception to print MCE event and panic. */
471 addi r3,r1,STACK_FRAME_OVERHEAD
472 bl machine_check_exception
473 /*
474 * We will not reach here. Even if we did, there is no way out. Call
475 * unrecoverable_exception and die.
476 */
4771: addi r3,r1,STACK_FRAME_OVERHEAD
478 bl unrecoverable_exception
479 b 1b
480
0ebc4cda 481
1a6822d1
NP
482EXC_REAL(data_access, 0x300, 0x80)
483EXC_VIRT(data_access, 0x4300, 0x80, 0x300)
80795e6c
NP
484TRAMP_KVM_SKIP(PACA_EXGEN, 0x300)
485
486EXC_COMMON_BEGIN(data_access_common)
487 /*
488 * Here r13 points to the paca, r9 contains the saved CR,
489 * SRR0 and SRR1 are saved in r11 and r12,
490 * r9 - r13 are saved in paca->exgen.
491 */
492 mfspr r10,SPRN_DAR
493 std r10,PACA_EXGEN+EX_DAR(r13)
494 mfspr r10,SPRN_DSISR
495 stw r10,PACA_EXGEN+EX_DSISR(r13)
496 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
497 RECONCILE_IRQ_STATE(r10, r11)
498 ld r12,_MSR(r1)
499 ld r3,PACA_EXGEN+EX_DAR(r13)
500 lwz r4,PACA_EXGEN+EX_DSISR(r13)
501 li r5,0x300
502 std r3,_DAR(r1)
503 std r4,_DSISR(r1)
504BEGIN_MMU_FTR_SECTION
505 b do_hash_page /* Try to handle as hpte fault */
506MMU_FTR_SECTION_ELSE
507 b handle_page_fault
508ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
509
0ebc4cda 510
1a6822d1 511EXC_REAL_BEGIN(data_access_slb, 0x380, 0x80)
673b189a 512 SET_SCRATCH0(r13)
1707dd16 513 EXCEPTION_PROLOG_0(PACA_EXSLB)
da2bc464 514 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
4d7cd3b9 515 mr r12,r3 /* save r3 */
0ebc4cda 516 mfspr r3,SPRN_DAR
4d7cd3b9 517 mfspr r11,SPRN_SRR1
f0f558b1 518 crset 4*cr6+eq
442b6e8e 519 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 520EXC_REAL_END(data_access_slb, 0x380, 0x80)
0ebc4cda 521
1a6822d1 522EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x80)
2b9af6e4
NP
523 SET_SCRATCH0(r13)
524 EXCEPTION_PROLOG_0(PACA_EXSLB)
525 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
4d7cd3b9 526 mr r12,r3 /* save r3 */
2b9af6e4 527 mfspr r3,SPRN_DAR
4d7cd3b9 528 mfspr r11,SPRN_SRR1
2b9af6e4 529 crset 4*cr6+eq
442b6e8e 530 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 531EXC_VIRT_END(data_access_slb, 0x4380, 0x80)
2b9af6e4
NP
532TRAMP_KVM_SKIP(PACA_EXSLB, 0x380)
533
534
1a6822d1
NP
535EXC_REAL(instruction_access, 0x400, 0x80)
536EXC_VIRT(instruction_access, 0x4400, 0x80, 0x400)
27ce77df
NP
537TRAMP_KVM(PACA_EXGEN, 0x400)
538
539EXC_COMMON_BEGIN(instruction_access_common)
540 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
541 RECONCILE_IRQ_STATE(r10, r11)
542 ld r12,_MSR(r1)
543 ld r3,_NIP(r1)
b4c001dc 544 andis. r4,r12,DSISR_BAD_FAULT_64S@h
27ce77df
NP
545 li r5,0x400
546 std r3,_DAR(r1)
547 std r4,_DSISR(r1)
548BEGIN_MMU_FTR_SECTION
549 b do_hash_page /* Try to handle as hpte fault */
550MMU_FTR_SECTION_ELSE
551 b handle_page_fault
552ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
553
0ebc4cda 554
1a6822d1 555EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x80)
673b189a 556 SET_SCRATCH0(r13)
1707dd16 557 EXCEPTION_PROLOG_0(PACA_EXSLB)
da2bc464 558 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
4d7cd3b9 559 mr r12,r3 /* save r3 */
0ebc4cda 560 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
4d7cd3b9 561 mfspr r11,SPRN_SRR1
f0f558b1 562 crclr 4*cr6+eq
442b6e8e 563 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 564EXC_REAL_END(instruction_access_slb, 0x480, 0x80)
0ebc4cda 565
1a6822d1 566EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x80)
8d04631a
NP
567 SET_SCRATCH0(r13)
568 EXCEPTION_PROLOG_0(PACA_EXSLB)
569 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
4d7cd3b9 570 mr r12,r3 /* save r3 */
8d04631a 571 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
4d7cd3b9 572 mfspr r11,SPRN_SRR1
8d04631a 573 crclr 4*cr6+eq
442b6e8e 574 BRANCH_TO_COMMON(r10, slb_miss_common)
1a6822d1 575EXC_VIRT_END(instruction_access_slb, 0x4480, 0x80)
8d04631a
NP
576TRAMP_KVM(PACA_EXSLB, 0x480)
577
578
442b6e8e
ME
579/*
580 * This handler is used by the 0x380 and 0x480 SLB miss interrupts, as well as
581 * the virtual mode 0x4380 and 0x4480 interrupts if AIL is enabled.
582 */
583EXC_COMMON_BEGIN(slb_miss_common)
8d04631a
NP
584 /*
585 * r13 points to the PACA, r9 contains the saved CR,
4d7cd3b9
NP
586 * r12 contains the saved r3,
587 * r11 contain the saved SRR1, SRR0 is still ready for return
8d04631a
NP
588 * r3 has the faulting address
589 * r9 - r13 are saved in paca->exslb.
8d04631a
NP
590 * cr6.eq is set for a D-SLB miss, clear for a I-SLB miss
591 * We assume we aren't going to take any exceptions during this
592 * procedure.
593 */
594 mflr r10
8d04631a
NP
595 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
596 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
8d04631a 597
4d7cd3b9
NP
598 /*
599 * Test MSR_RI before calling slb_allocate_realmode, because the
600 * MSR in r11 gets clobbered. However we still want to allocate
601 * SLB in case MSR_RI=0, to minimise the risk of getting stuck in
602 * recursive SLB faults. So use cr5 for this, which is preserved.
603 */
604 andi. r11,r11,MSR_RI /* check for unrecoverable exception */
605 cmpdi cr5,r11,MSR_RI
606
8d04631a
NP
607 crset 4*cr0+eq
608#ifdef CONFIG_PPC_STD_MMU_64
609BEGIN_MMU_FTR_SECTION
fd88b945 610 bl slb_allocate
8d04631a
NP
611END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_RADIX)
612#endif
613
614 ld r10,PACA_EXSLB+EX_LR(r13)
8d04631a
NP
615 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
616 mtlr r10
617
7c28f048 618 beq- 8f /* if bad address, make full stack frame */
8d04631a 619
4d7cd3b9 620 bne- cr5,2f /* if unrecoverable exception, oops */
8d04631a
NP
621
622 /* All done -- return from exception. */
623
624.machine push
625.machine "power4"
626 mtcrf 0x80,r9
4d7cd3b9 627 mtcrf 0x04,r9 /* MSR[RI] indication is in cr5 */
8d04631a
NP
628 mtcrf 0x02,r9 /* I/D indication is in cr6 */
629 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
630.machine pop
631
fe5482c0 632 RESTORE_CTR(r9, PACA_EXSLB)
8d04631a 633 RESTORE_PPR_PACA(PACA_EXSLB, r9)
4d7cd3b9 634 mr r3,r12
8d04631a
NP
635 ld r9,PACA_EXSLB+EX_R9(r13)
636 ld r10,PACA_EXSLB+EX_R10(r13)
637 ld r11,PACA_EXSLB+EX_R11(r13)
638 ld r12,PACA_EXSLB+EX_R12(r13)
639 ld r13,PACA_EXSLB+EX_R13(r13)
640 rfid
641 b . /* prevent speculative execution */
642
7c28f048 6432: std r3,PACA_EXSLB+EX_DAR(r13)
4d7cd3b9 644 mr r3,r12
7c28f048 645 mfspr r11,SPRN_SRR0
4d7cd3b9 646 mfspr r12,SPRN_SRR1
8d04631a
NP
647 LOAD_HANDLER(r10,unrecov_slb)
648 mtspr SPRN_SRR0,r10
649 ld r10,PACAKMSR(r13)
650 mtspr SPRN_SRR1,r10
651 rfid
652 b .
653
7c28f048 6548: std r3,PACA_EXSLB+EX_DAR(r13)
4d7cd3b9 655 mr r3,r12
7c28f048 656 mfspr r11,SPRN_SRR0
4d7cd3b9 657 mfspr r12,SPRN_SRR1
8d04631a
NP
658 LOAD_HANDLER(r10,bad_addr_slb)
659 mtspr SPRN_SRR0,r10
660 ld r10,PACAKMSR(r13)
661 mtspr SPRN_SRR1,r10
662 rfid
663 b .
664
665EXC_COMMON_BEGIN(unrecov_slb)
666 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
667 RECONCILE_IRQ_STATE(r10, r11)
668 bl save_nvgprs
6691: addi r3,r1,STACK_FRAME_OVERHEAD
670 bl unrecoverable_exception
671 b 1b
672
673EXC_COMMON_BEGIN(bad_addr_slb)
674 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXSLB)
675 RECONCILE_IRQ_STATE(r10, r11)
676 ld r3, PACA_EXSLB+EX_DAR(r13)
677 std r3, _DAR(r1)
678 beq cr6, 2f
679 li r10, 0x480 /* fix trap number for I-SLB miss */
680 std r10, _TRAP(r1)
6812: bl save_nvgprs
682 addi r3, r1, STACK_FRAME_OVERHEAD
683 bl slb_miss_bad_addr
684 b ret_from_except
685
1a6822d1 686EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x100)
b3e6b5df 687 .globl hardware_interrupt_hv;
b3e6b5df 688hardware_interrupt_hv:
a5d4f3ad 689 BEGIN_FTR_SECTION
da2bc464 690 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
b01c8b54 691 EXC_HV, SOFTEN_TEST_HV)
de56a948 692 FTR_SECTION_ELSE
da2bc464 693 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
31a40e2b 694 EXC_STD, SOFTEN_TEST_PR)
969391c5 695 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
1a6822d1 696EXC_REAL_END(hardware_interrupt, 0x500, 0x100)
da2bc464 697
1a6822d1 698EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x100)
c138e588
NP
699 .globl hardware_interrupt_relon_hv;
700hardware_interrupt_relon_hv:
701 BEGIN_FTR_SECTION
702 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_HV, SOFTEN_TEST_HV)
703 FTR_SECTION_ELSE
704 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_STD, SOFTEN_TEST_PR)
705 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1a6822d1 706EXC_VIRT_END(hardware_interrupt, 0x4500, 0x100)
c138e588 707
7ede5317
NP
708TRAMP_KVM(PACA_EXGEN, 0x500)
709TRAMP_KVM_HV(PACA_EXGEN, 0x500)
c138e588
NP
710EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
711
712
1a6822d1
NP
713EXC_REAL(alignment, 0x600, 0x100)
714EXC_VIRT(alignment, 0x4600, 0x100, 0x600)
da2bc464 715TRAMP_KVM(PACA_EXGEN, 0x600)
f9aa6714
NP
716EXC_COMMON_BEGIN(alignment_common)
717 mfspr r10,SPRN_DAR
718 std r10,PACA_EXGEN+EX_DAR(r13)
719 mfspr r10,SPRN_DSISR
720 stw r10,PACA_EXGEN+EX_DSISR(r13)
721 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
722 ld r3,PACA_EXGEN+EX_DAR(r13)
723 lwz r4,PACA_EXGEN+EX_DSISR(r13)
724 std r3,_DAR(r1)
725 std r4,_DSISR(r1)
726 bl save_nvgprs
727 RECONCILE_IRQ_STATE(r10, r11)
728 addi r3,r1,STACK_FRAME_OVERHEAD
729 bl alignment_exception
730 b ret_from_except
731
da2bc464 732
1a6822d1
NP
733EXC_REAL(program_check, 0x700, 0x100)
734EXC_VIRT(program_check, 0x4700, 0x100, 0x700)
da2bc464 735TRAMP_KVM(PACA_EXGEN, 0x700)
11e87346
NP
736EXC_COMMON_BEGIN(program_check_common)
737 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
738 bl save_nvgprs
739 RECONCILE_IRQ_STATE(r10, r11)
740 addi r3,r1,STACK_FRAME_OVERHEAD
741 bl program_check_exception
742 b ret_from_except
743
b01c8b54 744
1a6822d1
NP
745EXC_REAL(fp_unavailable, 0x800, 0x100)
746EXC_VIRT(fp_unavailable, 0x4800, 0x100, 0x800)
da2bc464 747TRAMP_KVM(PACA_EXGEN, 0x800)
c78d9b97
NP
748EXC_COMMON_BEGIN(fp_unavailable_common)
749 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
750 bne 1f /* if from user, just load it up */
751 bl save_nvgprs
752 RECONCILE_IRQ_STATE(r10, r11)
753 addi r3,r1,STACK_FRAME_OVERHEAD
754 bl kernel_fp_unavailable_exception
755 BUG_OPCODE
7561:
757#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
758BEGIN_FTR_SECTION
759 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
760 * transaction), go do TM stuff
761 */
762 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
763 bne- 2f
764END_FTR_SECTION_IFSET(CPU_FTR_TM)
765#endif
766 bl load_up_fpu
767 b fast_exception_return
768#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
7692: /* User process was in a transaction */
770 bl save_nvgprs
771 RECONCILE_IRQ_STATE(r10, r11)
772 addi r3,r1,STACK_FRAME_OVERHEAD
773 bl fp_unavailable_tm
774 b ret_from_except
775#endif
776
a5d4f3ad 777
1a6822d1
NP
778EXC_REAL_MASKABLE(decrementer, 0x900, 0x80)
779EXC_VIRT_MASKABLE(decrementer, 0x4900, 0x80, 0x900)
39c0da57
NP
780TRAMP_KVM(PACA_EXGEN, 0x900)
781EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
782
a485c709 783
1a6822d1
NP
784EXC_REAL_HV(hdecrementer, 0x980, 0x80)
785EXC_VIRT_HV(hdecrementer, 0x4980, 0x80, 0x980)
facc6d74
NP
786TRAMP_KVM_HV(PACA_EXGEN, 0x980)
787EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
788
a5d4f3ad 789
1a6822d1
NP
790EXC_REAL_MASKABLE(doorbell_super, 0xa00, 0x100)
791EXC_VIRT_MASKABLE(doorbell_super, 0x4a00, 0x100, 0xa00)
da2bc464 792TRAMP_KVM(PACA_EXGEN, 0xa00)
ca243163
NP
793#ifdef CONFIG_PPC_DOORBELL
794EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
795#else
796EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
797#endif
798
0ebc4cda 799
1a6822d1
NP
800EXC_REAL(trap_0b, 0xb00, 0x100)
801EXC_VIRT(trap_0b, 0x4b00, 0x100, 0xb00)
da2bc464 802TRAMP_KVM(PACA_EXGEN, 0xb00)
341215dc
NP
803EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
804
acd7d8ce
NP
805/*
806 * system call / hypercall (0xc00, 0x4c00)
807 *
808 * The system call exception is invoked with "sc 0" and does not alter HV bit.
809 * There is support for kernel code to invoke system calls but there are no
810 * in-tree users.
811 *
812 * The hypercall is invoked with "sc 1" and sets HV=1.
813 *
814 * In HPT, sc 1 always goes to 0xc00 real mode. In RADIX, sc 1 can go to
815 * 0x4c00 virtual mode.
816 *
817 * Call convention:
818 *
819 * syscall register convention is in Documentation/powerpc/syscall64-abi.txt
820 *
821 * For hypercalls, the register convention is as follows:
822 * r0 volatile
823 * r1-2 nonvolatile
824 * r3 volatile parameter and return value for status
825 * r4-r10 volatile input and output value
826 * r11 volatile hypercall number and output value
76fc0cfc 827 * r12 volatile input and output value
acd7d8ce
NP
828 * r13-r31 nonvolatile
829 * LR nonvolatile
830 * CTR volatile
831 * XER volatile
832 * CR0-1 CR5-7 volatile
833 * CR2-4 nonvolatile
834 * Other registers nonvolatile
835 *
836 * The intersection of volatile registers that don't contain possible
76fc0cfc
NP
837 * inputs is: cr0, xer, ctr. We may use these as scratch regs upon entry
838 * without saving, though xer is not a good idea to use, as hardware may
839 * interpret some bits so it may be costly to change them.
acd7d8ce 840 */
bc355125 841#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
acd7d8ce
NP
842 /*
843 * There is a little bit of juggling to get syscall and hcall
76fc0cfc
NP
844 * working well. Save r13 in ctr to avoid using SPRG scratch
845 * register.
acd7d8ce
NP
846 *
847 * Userspace syscalls have already saved the PPR, hcalls must save
848 * it before setting HMT_MEDIUM.
849 */
bc355125 850#define SYSCALL_KVMTEST \
76fc0cfc 851 mtctr r13; \
bc355125 852 GET_PACA(r13); \
76fc0cfc 853 std r10,PACA_EXGEN+EX_R10(r13); \
acd7d8ce 854 KVMTEST_PR(0xc00); /* uses r10, branch to do_kvm_0xc00_system_call */ \
bc355125 855 HMT_MEDIUM; \
76fc0cfc 856 mfctr r9;
bc355125
PM
857
858#else
859#define SYSCALL_KVMTEST \
acd7d8ce
NP
860 HMT_MEDIUM; \
861 mr r9,r13; \
862 GET_PACA(r13);
bc355125
PM
863#endif
864
fb479e44
NP
865#define LOAD_SYSCALL_HANDLER(reg) \
866 __LOAD_HANDLER(reg, system_call_common)
d807ad37 867
acd7d8ce 868#define SYSCALL_FASTENDIAN_TEST \
d807ad37
NP
869BEGIN_FTR_SECTION \
870 cmpdi r0,0x1ebe ; \
871 beq- 1f ; \
872END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
d807ad37 873
acd7d8ce
NP
874/*
875 * After SYSCALL_KVMTEST, we reach here with PACA in r13, r13 in r9,
876 * and HMT_MEDIUM.
877 */
878#define SYSCALL_REAL \
879 mfspr r11,SPRN_SRR0 ; \
d807ad37
NP
880 mfspr r12,SPRN_SRR1 ; \
881 LOAD_SYSCALL_HANDLER(r10) ; \
882 mtspr SPRN_SRR0,r10 ; \
883 ld r10,PACAKMSR(r13) ; \
884 mtspr SPRN_SRR1,r10 ; \
885 rfid ; \
886 b . ; /* prevent speculative execution */
887
acd7d8ce 888#define SYSCALL_FASTENDIAN \
d807ad37
NP
889 /* Fast LE/BE switch system call */ \
8901: mfspr r12,SPRN_SRR1 ; \
891 xori r12,r12,MSR_LE ; \
892 mtspr SPRN_SRR1,r12 ; \
acd7d8ce 893 mr r13,r9 ; \
d807ad37
NP
894 rfid ; /* return to userspace */ \
895 b . ; /* prevent speculative execution */
896
897#if defined(CONFIG_RELOCATABLE)
898 /*
899 * We can't branch directly so we do it via the CTR which
900 * is volatile across system calls.
901 */
acd7d8ce
NP
902#define SYSCALL_VIRT \
903 LOAD_SYSCALL_HANDLER(r10) ; \
904 mtctr r10 ; \
905 mfspr r11,SPRN_SRR0 ; \
d807ad37
NP
906 mfspr r12,SPRN_SRR1 ; \
907 li r10,MSR_RI ; \
908 mtmsrd r10,1 ; \
909 bctr ;
910#else
911 /* We can branch directly */
acd7d8ce
NP
912#define SYSCALL_VIRT \
913 mfspr r11,SPRN_SRR0 ; \
d807ad37
NP
914 mfspr r12,SPRN_SRR1 ; \
915 li r10,MSR_RI ; \
916 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
917 b system_call_common ;
918#endif
919
1a6822d1 920EXC_REAL_BEGIN(system_call, 0xc00, 0x100)
acd7d8ce
NP
921 SYSCALL_KVMTEST /* loads PACA into r13, and saves r13 to r9 */
922 SYSCALL_FASTENDIAN_TEST
923 SYSCALL_REAL
924 SYSCALL_FASTENDIAN
1a6822d1 925EXC_REAL_END(system_call, 0xc00, 0x100)
da2bc464 926
1a6822d1 927EXC_VIRT_BEGIN(system_call, 0x4c00, 0x100)
acd7d8ce
NP
928 SYSCALL_KVMTEST /* loads PACA into r13, and saves r13 to r9 */
929 SYSCALL_FASTENDIAN_TEST
930 SYSCALL_VIRT
931 SYSCALL_FASTENDIAN
1a6822d1 932EXC_VIRT_END(system_call, 0x4c00, 0x100)
d807ad37 933
acd7d8ce
NP
934#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
935 /*
936 * This is a hcall, so register convention is as above, with these
937 * differences:
938 * r13 = PACA
76fc0cfc
NP
939 * ctr = orig r13
940 * orig r10 saved in PACA
acd7d8ce
NP
941 */
942TRAMP_KVM_BEGIN(do_kvm_0xc00)
943 /*
944 * Save the PPR (on systems that support it) before changing to
945 * HMT_MEDIUM. That allows the KVM code to save that value into the
946 * guest state (it is the guest's PPR value).
947 */
76fc0cfc 948 OPT_GET_SPR(r10, SPRN_PPR, CPU_FTR_HAS_PPR)
acd7d8ce 949 HMT_MEDIUM
76fc0cfc 950 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r10, CPU_FTR_HAS_PPR)
acd7d8ce 951 mfctr r10
76fc0cfc 952 SET_SCRATCH0(r10)
acd7d8ce
NP
953 std r9,PACA_EXGEN+EX_R9(r13)
954 mfcr r9
acd7d8ce
NP
955 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0xc00)
956#endif
da2bc464 957
d807ad37 958
1a6822d1
NP
959EXC_REAL(single_step, 0xd00, 0x100)
960EXC_VIRT(single_step, 0x4d00, 0x100, 0xd00)
da2bc464 961TRAMP_KVM(PACA_EXGEN, 0xd00)
bc6675c6 962EXC_COMMON(single_step_common, 0xd00, single_step_exception)
b01c8b54 963
1a6822d1 964EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0x20)
da0e7e62 965EXC_VIRT_OOL_HV(h_data_storage, 0x4e00, 0x20, 0xe00)
f5c32c1d
NP
966TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
967EXC_COMMON_BEGIN(h_data_storage_common)
968 mfspr r10,SPRN_HDAR
969 std r10,PACA_EXGEN+EX_DAR(r13)
970 mfspr r10,SPRN_HDSISR
971 stw r10,PACA_EXGEN+EX_DSISR(r13)
972 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
973 bl save_nvgprs
974 RECONCILE_IRQ_STATE(r10, r11)
975 addi r3,r1,STACK_FRAME_OVERHEAD
976 bl unknown_exception
977 b ret_from_except
f5c32c1d 978
1707dd16 979
1a6822d1 980EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0x20)
da0e7e62 981EXC_VIRT_OOL_HV(h_instr_storage, 0x4e20, 0x20, 0xe20)
82517cab
NP
982TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
983EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
984
1707dd16 985
1a6822d1
NP
986EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0x20)
987EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x20, 0xe40)
031b4026
NP
988TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
989EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
990
1707dd16 991
e0319829
NP
992/*
993 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
994 * first, and then eventaully from there to the trampoline to get into virtual
995 * mode.
996 */
1a6822d1 997__EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0x20, hmi_exception_early)
852e5da9 998__TRAMP_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
1a6822d1 999EXC_VIRT_NONE(0x4e60, 0x20)
62f9b03b
NP
1000TRAMP_KVM_HV(PACA_EXGEN, 0xe60)
1001TRAMP_REAL_BEGIN(hmi_exception_early)
1002 EXCEPTION_PROLOG_1(PACA_EXGEN, KVMTEST_HV, 0xe60)
a4087a4d
NP
1003 mr r10,r1 /* Save r1 */
1004 ld r1,PACAEMERGSP(r13) /* Use emergency stack for realmode */
62f9b03b 1005 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
62f9b03b 1006 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
a4087a4d
NP
1007 mfspr r12,SPRN_HSRR1 /* Save HSRR1 */
1008 EXCEPTION_PROLOG_COMMON_1()
62f9b03b
NP
1009 EXCEPTION_PROLOG_COMMON_2(PACA_EXGEN)
1010 EXCEPTION_PROLOG_COMMON_3(0xe60)
1011 addi r3,r1,STACK_FRAME_OVERHEAD
be5c5e84 1012 BRANCH_LINK_TO_FAR(hmi_exception_realmode) /* Function call ABI */
5080332c
MN
1013 cmpdi cr0,r3,0
1014
62f9b03b
NP
1015 /* Windup the stack. */
1016 /* Move original HSRR0 and HSRR1 into the respective regs */
1017 ld r9,_MSR(r1)
1018 mtspr SPRN_HSRR1,r9
1019 ld r3,_NIP(r1)
1020 mtspr SPRN_HSRR0,r3
1021 ld r9,_CTR(r1)
1022 mtctr r9
1023 ld r9,_XER(r1)
1024 mtxer r9
1025 ld r9,_LINK(r1)
1026 mtlr r9
1027 REST_GPR(0, r1)
1028 REST_8GPRS(2, r1)
1029 REST_GPR(10, r1)
1030 ld r11,_CCR(r1)
5080332c
MN
1031 REST_2GPRS(12, r1)
1032 bne 1f
62f9b03b
NP
1033 mtcr r11
1034 REST_GPR(11, r1)
5080332c
MN
1035 ld r1,GPR1(r1)
1036 hrfid
1037
10381: mtcr r11
1039 REST_GPR(11, r1)
62f9b03b
NP
1040 ld r1,GPR1(r1)
1041
1042 /*
1043 * Go to virtual mode and pull the HMI event information from
1044 * firmware.
1045 */
1046 .globl hmi_exception_after_realmode
1047hmi_exception_after_realmode:
1048 SET_SCRATCH0(r13)
1049 EXCEPTION_PROLOG_0(PACA_EXGEN)
1050 b tramp_real_hmi_exception
1051
5080332c
MN
1052EXC_COMMON_BEGIN(hmi_exception_common)
1053EXCEPTION_COMMON(PACA_EXGEN, 0xe60, hmi_exception_common, handle_hmi_exception,
1054 ret_from_except, FINISH_NAP;ADD_NVGPRS;ADD_RECONCILE;RUNLATCH_ON)
1707dd16 1055
1a6822d1
NP
1056EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0x20)
1057EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x20, 0xe80)
9bcb81bf
NP
1058TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1059#ifdef CONFIG_PPC_DOORBELL
1060EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1061#else
1062EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1063#endif
1064
0ebc4cda 1065
1a6822d1
NP
1066EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0x20)
1067EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x20, 0xea0)
74408776
NP
1068TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
1069EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1070
9baaef0a 1071
1a6822d1
NP
1072EXC_REAL_NONE(0xec0, 0x20)
1073EXC_VIRT_NONE(0x4ec0, 0x20)
1074EXC_REAL_NONE(0xee0, 0x20)
1075EXC_VIRT_NONE(0x4ee0, 0x20)
bda7fea2 1076
0ebc4cda 1077
1a6822d1
NP
1078EXC_REAL_OOL(performance_monitor, 0xf00, 0x20)
1079EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x20, 0xf00)
b1c7f150
NP
1080TRAMP_KVM(PACA_EXGEN, 0xf00)
1081EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1082
0ebc4cda 1083
1a6822d1
NP
1084EXC_REAL_OOL(altivec_unavailable, 0xf20, 0x20)
1085EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x20, 0xf20)
d1a0ca9c
NP
1086TRAMP_KVM(PACA_EXGEN, 0xf20)
1087EXC_COMMON_BEGIN(altivec_unavailable_common)
1088 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1089#ifdef CONFIG_ALTIVEC
1090BEGIN_FTR_SECTION
1091 beq 1f
1092#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1093 BEGIN_FTR_SECTION_NESTED(69)
1094 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1095 * transaction), go do TM stuff
1096 */
1097 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1098 bne- 2f
1099 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1100#endif
1101 bl load_up_altivec
1102 b fast_exception_return
1103#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
11042: /* User process was in a transaction */
1105 bl save_nvgprs
1106 RECONCILE_IRQ_STATE(r10, r11)
1107 addi r3,r1,STACK_FRAME_OVERHEAD
1108 bl altivec_unavailable_tm
1109 b ret_from_except
1110#endif
11111:
1112END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1113#endif
1114 bl save_nvgprs
1115 RECONCILE_IRQ_STATE(r10, r11)
1116 addi r3,r1,STACK_FRAME_OVERHEAD
1117 bl altivec_unavailable_exception
1118 b ret_from_except
1119
0ebc4cda 1120
1a6822d1
NP
1121EXC_REAL_OOL(vsx_unavailable, 0xf40, 0x20)
1122EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x20, 0xf40)
792cbddd
NP
1123TRAMP_KVM(PACA_EXGEN, 0xf40)
1124EXC_COMMON_BEGIN(vsx_unavailable_common)
1125 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1126#ifdef CONFIG_VSX
1127BEGIN_FTR_SECTION
1128 beq 1f
1129#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1130 BEGIN_FTR_SECTION_NESTED(69)
1131 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1132 * transaction), go do TM stuff
1133 */
1134 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1135 bne- 2f
1136 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1137#endif
1138 b load_up_vsx
1139#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
11402: /* User process was in a transaction */
1141 bl save_nvgprs
1142 RECONCILE_IRQ_STATE(r10, r11)
1143 addi r3,r1,STACK_FRAME_OVERHEAD
1144 bl vsx_unavailable_tm
1145 b ret_from_except
1146#endif
11471:
1148END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1149#endif
1150 bl save_nvgprs
1151 RECONCILE_IRQ_STATE(r10, r11)
1152 addi r3,r1,STACK_FRAME_OVERHEAD
1153 bl vsx_unavailable_exception
1154 b ret_from_except
1155
da2bc464 1156
1a6822d1
NP
1157EXC_REAL_OOL(facility_unavailable, 0xf60, 0x20)
1158EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x20, 0xf60)
1134713c
NP
1159TRAMP_KVM(PACA_EXGEN, 0xf60)
1160EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1161
da2bc464 1162
1a6822d1
NP
1163EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0x20)
1164EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x20, 0xf80)
14b0072c
NP
1165TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
1166EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1167
da2bc464 1168
1a6822d1
NP
1169EXC_REAL_NONE(0xfa0, 0x20)
1170EXC_VIRT_NONE(0x4fa0, 0x20)
1171EXC_REAL_NONE(0xfc0, 0x20)
1172EXC_VIRT_NONE(0x4fc0, 0x20)
1173EXC_REAL_NONE(0xfe0, 0x20)
1174EXC_VIRT_NONE(0x4fe0, 0x20)
1175
1176EXC_REAL_NONE(0x1000, 0x100)
1177EXC_VIRT_NONE(0x5000, 0x100)
1178EXC_REAL_NONE(0x1100, 0x100)
1179EXC_VIRT_NONE(0x5100, 0x100)
d0c0c9a1 1180
0ebc4cda 1181#ifdef CONFIG_CBE_RAS
1a6822d1
NP
1182EXC_REAL_HV(cbe_system_error, 0x1200, 0x100)
1183EXC_VIRT_NONE(0x5200, 0x100)
da2bc464 1184TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
ff1b3206 1185EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
da2bc464 1186#else /* CONFIG_CBE_RAS */
1a6822d1
NP
1187EXC_REAL_NONE(0x1200, 0x100)
1188EXC_VIRT_NONE(0x5200, 0x100)
da2bc464 1189#endif
b01c8b54 1190
ff1b3206 1191
1a6822d1
NP
1192EXC_REAL(instruction_breakpoint, 0x1300, 0x100)
1193EXC_VIRT(instruction_breakpoint, 0x5300, 0x100, 0x1300)
da2bc464 1194TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
4e96dbbf
NP
1195EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1196
1a6822d1
NP
1197EXC_REAL_NONE(0x1400, 0x100)
1198EXC_VIRT_NONE(0x5400, 0x100)
da2bc464 1199
1a6822d1 1200EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x100)
b92a66a6 1201 mtspr SPRN_SPRG_HSCRATCH0,r13
1707dd16 1202 EXCEPTION_PROLOG_0(PACA_EXGEN)
630573c1 1203 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
b92a66a6
MN
1204
1205#ifdef CONFIG_PPC_DENORMALISATION
1206 mfspr r10,SPRN_HSRR1
1207 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
afcf0095
NP
1208 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1209 addi r11,r11,-4 /* HSRR0 is next instruction */
1210 bne+ denorm_assist
1211#endif
1e9b4507 1212
afcf0095
NP
1213 KVMTEST_PR(0x1500)
1214 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
1a6822d1 1215EXC_REAL_END(denorm_exception_hv, 0x1500, 0x100)
a74599a5 1216
d7e89849 1217#ifdef CONFIG_PPC_DENORMALISATION
1a6822d1 1218EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x100)
d7e89849 1219 b exc_real_0x1500_denorm_exception_hv
1a6822d1 1220EXC_VIRT_END(denorm_exception, 0x5500, 0x100)
d7e89849 1221#else
1a6822d1 1222EXC_VIRT_NONE(0x5500, 0x100)
afcf0095
NP
1223#endif
1224
d7e89849 1225TRAMP_KVM_SKIP(PACA_EXGEN, 0x1500)
b01c8b54 1226
b92a66a6 1227#ifdef CONFIG_PPC_DENORMALISATION
da2bc464 1228TRAMP_REAL_BEGIN(denorm_assist)
b92a66a6
MN
1229BEGIN_FTR_SECTION
1230/*
1231 * To denormalise we need to move a copy of the register to itself.
1232 * For POWER6 do that here for all FP regs.
1233 */
1234 mfmsr r10
1235 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1236 xori r10,r10,(MSR_FE0|MSR_FE1)
1237 mtmsrd r10
1238 sync
d7c67fb1
MN
1239
1240#define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1241#define FMR4(n) FMR2(n) ; FMR2(n+2)
1242#define FMR8(n) FMR4(n) ; FMR4(n+4)
1243#define FMR16(n) FMR8(n) ; FMR8(n+8)
1244#define FMR32(n) FMR16(n) ; FMR16(n+16)
1245 FMR32(0)
1246
b92a66a6
MN
1247FTR_SECTION_ELSE
1248/*
1249 * To denormalise we need to move a copy of the register to itself.
1250 * For POWER7 do that here for the first 32 VSX registers only.
1251 */
1252 mfmsr r10
1253 oris r10,r10,MSR_VSX@h
1254 mtmsrd r10
1255 sync
d7c67fb1
MN
1256
1257#define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1258#define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1259#define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1260#define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1261#define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1262 XVCPSGNDP32(0)
1263
b92a66a6 1264ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
fb0fce3e
MN
1265
1266BEGIN_FTR_SECTION
1267 b denorm_done
1268END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1269/*
1270 * To denormalise we need to move a copy of the register to itself.
1271 * For POWER8 we need to do that for all 64 VSX registers
1272 */
1273 XVCPSGNDP32(32)
1274denorm_done:
b92a66a6
MN
1275 mtspr SPRN_HSRR0,r11
1276 mtcrf 0x80,r9
1277 ld r9,PACA_EXGEN+EX_R9(r13)
44e9309f 1278 RESTORE_PPR_PACA(PACA_EXGEN, r10)
630573c1
PM
1279BEGIN_FTR_SECTION
1280 ld r10,PACA_EXGEN+EX_CFAR(r13)
1281 mtspr SPRN_CFAR,r10
1282END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
b92a66a6
MN
1283 ld r10,PACA_EXGEN+EX_R10(r13)
1284 ld r11,PACA_EXGEN+EX_R11(r13)
1285 ld r12,PACA_EXGEN+EX_R12(r13)
1286 ld r13,PACA_EXGEN+EX_R13(r13)
1287 HRFID
1288 b .
1289#endif
1290
d7e89849
NP
1291EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
1292
1293
1294#ifdef CONFIG_CBE_RAS
1a6822d1
NP
1295EXC_REAL_HV(cbe_maintenance, 0x1600, 0x100)
1296EXC_VIRT_NONE(0x5600, 0x100)
d7e89849 1297TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
69a79344 1298EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
d7e89849 1299#else /* CONFIG_CBE_RAS */
1a6822d1
NP
1300EXC_REAL_NONE(0x1600, 0x100)
1301EXC_VIRT_NONE(0x5600, 0x100)
d7e89849
NP
1302#endif
1303
69a79344 1304
1a6822d1
NP
1305EXC_REAL(altivec_assist, 0x1700, 0x100)
1306EXC_VIRT(altivec_assist, 0x5700, 0x100, 0x1700)
d7e89849 1307TRAMP_KVM(PACA_EXGEN, 0x1700)
b51c079e
NP
1308#ifdef CONFIG_ALTIVEC
1309EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1310#else
1311EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1312#endif
1313
d7e89849
NP
1314
1315#ifdef CONFIG_CBE_RAS
1a6822d1
NP
1316EXC_REAL_HV(cbe_thermal, 0x1800, 0x100)
1317EXC_VIRT_NONE(0x5800, 0x100)
d7e89849 1318TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
3965f8ab 1319EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
d7e89849 1320#else /* CONFIG_CBE_RAS */
1a6822d1
NP
1321EXC_REAL_NONE(0x1800, 0x100)
1322EXC_VIRT_NONE(0x5800, 0x100)
d7e89849
NP
1323#endif
1324
75eb767e 1325#ifdef CONFIG_PPC_WATCHDOG
2104180a
NP
1326
1327#define MASKED_DEC_HANDLER_LABEL 3f
1328
1329#define MASKED_DEC_HANDLER(_H) \
13303: /* soft-nmi */ \
1331 std r12,PACA_EXGEN+EX_R12(r13); \
1332 GET_SCRATCH0(r10); \
1333 std r10,PACA_EXGEN+EX_R13(r13); \
1334 EXCEPTION_PROLOG_PSERIES_1(soft_nmi_common, _H)
1335
cc491f1d
NP
1336/*
1337 * Branch to soft_nmi_interrupt using the emergency stack. The emergency
1338 * stack is one that is usable by maskable interrupts so long as MSR_EE
1339 * remains off. It is used for recovery when something has corrupted the
1340 * normal kernel stack, for example. The "soft NMI" must not use the process
1341 * stack because we want irq disabled sections to avoid touching the stack
1342 * at all (other than PMU interrupts), so use the emergency stack for this,
1343 * and run it entirely with interrupts hard disabled.
1344 */
2104180a
NP
1345EXC_COMMON_BEGIN(soft_nmi_common)
1346 mr r10,r1
1347 ld r1,PACAEMERGSP(r13)
2104180a
NP
1348 subi r1,r1,INT_FRAME_SIZE
1349 EXCEPTION_COMMON_NORET_STACK(PACA_EXGEN, 0x900,
1350 system_reset, soft_nmi_interrupt,
1351 ADD_NVGPRS;ADD_RECONCILE)
1352 b ret_from_except
1353
75eb767e 1354#else /* CONFIG_PPC_WATCHDOG */
2104180a
NP
1355#define MASKED_DEC_HANDLER_LABEL 2f /* normal return */
1356#define MASKED_DEC_HANDLER(_H)
75eb767e 1357#endif /* CONFIG_PPC_WATCHDOG */
d7e89849 1358
0ebc4cda 1359/*
fe9e1d54
IM
1360 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1361 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1362 * - If it was a doorbell we return immediately since doorbells are edge
1363 * triggered and won't automatically refire.
0869b6fd
MS
1364 * - If it was a HMI we return immediately since we handled it in realmode
1365 * and it won't refire.
fe9e1d54
IM
1366 * - else we hard disable and return.
1367 * This is called with r10 containing the value to OR to the paca field.
0ebc4cda 1368 */
7230c564
BH
1369#define MASKED_INTERRUPT(_H) \
1370masked_##_H##interrupt: \
1371 std r11,PACA_EXGEN+EX_R11(r13); \
1372 lbz r11,PACAIRQHAPPENED(r13); \
1373 or r11,r11,r10; \
1374 stb r11,PACAIRQHAPPENED(r13); \
fe9e1d54
IM
1375 cmpwi r10,PACA_IRQ_DEC; \
1376 bne 1f; \
7230c564
BH
1377 lis r10,0x7fff; \
1378 ori r10,r10,0xffff; \
1379 mtspr SPRN_DEC,r10; \
2104180a 1380 b MASKED_DEC_HANDLER_LABEL; \
e0c827c0
NP
13811: andi. r10,r10,(PACA_IRQ_DBELL|PACA_IRQ_HMI); \
1382 bne 2f; \
fe9e1d54 1383 mfspr r10,SPRN_##_H##SRR1; \
6e9a2f6e 1384 xori r10,r10,MSR_EE; /* clear MSR_EE */ \
7230c564
BH
1385 mtspr SPRN_##_H##SRR1,r10; \
13862: mtcrf 0x80,r9; \
1387 ld r9,PACA_EXGEN+EX_R9(r13); \
1388 ld r10,PACA_EXGEN+EX_R10(r13); \
1389 ld r11,PACA_EXGEN+EX_R11(r13); \
c05f0be8 1390 /* returns to kernel where r13 must be set up, so don't restore it */ \
7230c564 1391 ##_H##rfid; \
2104180a
NP
1392 b .; \
1393 MASKED_DEC_HANDLER(_H)
57f26649
NP
1394
1395/*
1396 * Real mode exceptions actually use this too, but alternate
1397 * instruction code patches (which end up in the common .text area)
1398 * cannot reach these if they are put there.
1399 */
1400USE_FIXED_SECTION(virt_trampolines)
7230c564
BH
1401 MASKED_INTERRUPT()
1402 MASKED_INTERRUPT(H)
0ebc4cda 1403
4f6c11db 1404#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
da2bc464 1405TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
4f6c11db
PM
1406 /*
1407 * Here all GPRs are unchanged from when the interrupt happened
1408 * except for r13, which is saved in SPRG_SCRATCH0.
1409 */
1410 mfspr r13, SPRN_SRR0
1411 addi r13, r13, 4
1412 mtspr SPRN_SRR0, r13
1413 GET_SCRATCH0(r13)
1414 rfid
1415 b .
1416
da2bc464 1417TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
4f6c11db
PM
1418 /*
1419 * Here all GPRs are unchanged from when the interrupt happened
1420 * except for r13, which is saved in SPRG_SCRATCH0.
1421 */
1422 mfspr r13, SPRN_HSRR0
1423 addi r13, r13, 4
1424 mtspr SPRN_HSRR0, r13
1425 GET_SCRATCH0(r13)
1426 hrfid
1427 b .
1428#endif
1429
0ebc4cda 1430/*
057b6d7e
HB
1431 * Ensure that any handlers that get invoked from the exception prologs
1432 * above are below the first 64KB (0x10000) of the kernel image because
1433 * the prologs assemble the addresses of these handlers using the
1434 * LOAD_HANDLER macro, which uses an ori instruction.
0ebc4cda
BH
1435 */
1436
1437/*** Common interrupt handlers ***/
1438
0ebc4cda 1439
c1fb6816
MN
1440 /*
1441 * Relocation-on interrupts: A subset of the interrupts can be delivered
1442 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1443 * it. Addresses are the same as the original interrupt addresses, but
1444 * offset by 0xc000000000004000.
1445 * It's impossible to receive interrupts below 0x300 via this mechanism.
1446 * KVM: None of these traps are from the guest ; anything that escalated
1447 * to HV=1 from HV=0 is delivered via real mode handlers.
1448 */
1449
1450 /*
1451 * This uses the standard macro, since the original 0x300 vector
1452 * only has extra guff for STAB-based processors -- which never
1453 * come here.
1454 */
da2bc464 1455
57f26649 1456EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
b1576fec 1457 b __ppc64_runlatch_on
fe1952fc 1458
57f26649 1459USE_FIXED_SECTION(virt_trampolines)
8ed8ab40
HB
1460 /*
1461 * The __end_interrupts marker must be past the out-of-line (OOL)
1462 * handlers, so that they are copied to real address 0x100 when running
1463 * a relocatable kernel. This ensures they can be reached from the short
1464 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1465 * directly, without using LOAD_HANDLER().
1466 */
1467 .align 7
1468 .globl __end_interrupts
1469__end_interrupts:
57f26649 1470DEFINE_FIXED_SYMBOL(__end_interrupts)
61383407 1471
087aa036 1472#ifdef CONFIG_PPC_970_NAP
7c8cb4b5 1473EXC_COMMON_BEGIN(power4_fixup_nap)
087aa036
CG
1474 andc r9,r9,r10
1475 std r9,TI_LOCAL_FLAGS(r11)
1476 ld r10,_LINK(r1) /* make idle task do the */
1477 std r10,_NIP(r1) /* equivalent of a blr */
1478 blr
1479#endif
1480
57f26649
NP
1481CLOSE_FIXED_SECTION(real_vectors);
1482CLOSE_FIXED_SECTION(real_trampolines);
1483CLOSE_FIXED_SECTION(virt_vectors);
1484CLOSE_FIXED_SECTION(virt_trampolines);
1485
1486USE_TEXT_SECTION()
1487
0ebc4cda
BH
1488/*
1489 * Hash table stuff
1490 */
f4329f2e 1491 .balign IFETCH_ALIGN_BYTES
6a3bab90 1492do_hash_page:
398a719d
BH
1493 #ifdef CONFIG_PPC_STD_MMU_64
1494 lis r0,DSISR_BAD_FAULT_64S@h
1495 ori r0,r0,DSISR_BAD_FAULT_64S@l
1496 and. r0,r4,r0 /* weird error? */
0ebc4cda 1497 bne- handle_page_fault /* if not, try to insert a HPTE */
9778b696 1498 CURRENT_THREAD_INFO(r11, r1)
9c1e1052
PM
1499 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1500 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1501 bne 77f /* then don't call hash_page now */
0ebc4cda
BH
1502
1503 /*
1504 * r3 contains the faulting address
106713a1 1505 * r4 msr
0ebc4cda 1506 * r5 contains the trap number
aefa5688 1507 * r6 contains dsisr
0ebc4cda 1508 *
7230c564 1509 * at return r3 = 0 for success, 1 for page fault, negative for error
0ebc4cda 1510 */
106713a1 1511 mr r4,r12
aefa5688 1512 ld r6,_DSISR(r1)
106713a1
AK
1513 bl __hash_page /* build HPTE if possible */
1514 cmpdi r3,0 /* see if __hash_page succeeded */
0ebc4cda 1515
7230c564 1516 /* Success */
0ebc4cda 1517 beq fast_exc_return_irq /* Return from exception on success */
0ebc4cda 1518
7230c564
BH
1519 /* Error */
1520 blt- 13f
d89ba535
NR
1521
1522 /* Reload DSISR into r4 for the DABR check below */
1523 ld r4,_DSISR(r1)
caca285e 1524#endif /* CONFIG_PPC_STD_MMU_64 */
9c7cc234 1525
0ebc4cda
BH
1526/* Here we have a page fault that hash_page can't handle. */
1527handle_page_fault:
d89ba535
NR
152811: andis. r0,r4,DSISR_DABRMATCH@h
1529 bne- handle_dabr_fault
1530 ld r4,_DAR(r1)
0ebc4cda
BH
1531 ld r5,_DSISR(r1)
1532 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 1533 bl do_page_fault
0ebc4cda 1534 cmpdi r3,0
a546498f 1535 beq+ 12f
b1576fec 1536 bl save_nvgprs
0ebc4cda
BH
1537 mr r5,r3
1538 addi r3,r1,STACK_FRAME_OVERHEAD
1539 lwz r4,_DAR(r1)
b1576fec
AB
1540 bl bad_page_fault
1541 b ret_from_except
0ebc4cda 1542
a546498f
BH
1543/* We have a data breakpoint exception - handle it */
1544handle_dabr_fault:
b1576fec 1545 bl save_nvgprs
a546498f
BH
1546 ld r4,_DAR(r1)
1547 ld r5,_DSISR(r1)
1548 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1549 bl do_break
155012: b ret_from_except_lite
a546498f 1551
0ebc4cda 1552
caca285e 1553#ifdef CONFIG_PPC_STD_MMU_64
0ebc4cda
BH
1554/* We have a page fault that hash_page could handle but HV refused
1555 * the PTE insertion
1556 */
b1576fec 155713: bl save_nvgprs
0ebc4cda
BH
1558 mr r5,r3
1559 addi r3,r1,STACK_FRAME_OVERHEAD
1560 ld r4,_DAR(r1)
b1576fec
AB
1561 bl low_hash_fault
1562 b ret_from_except
caca285e 1563#endif
0ebc4cda 1564
9c1e1052
PM
1565/*
1566 * We come here as a result of a DSI at a point where we don't want
1567 * to call hash_page, such as when we are accessing memory (possibly
1568 * user memory) inside a PMU interrupt that occurred while interrupts
1569 * were soft-disabled. We want to invoke the exception handler for
1570 * the access, or panic if there isn't a handler.
1571 */
b1576fec 157277: bl save_nvgprs
9c1e1052
PM
1573 mr r4,r3
1574 addi r3,r1,STACK_FRAME_OVERHEAD
1575 li r5,SIGSEGV
b1576fec
AB
1576 bl bad_page_fault
1577 b ret_from_except
4e2bf01b
ME
1578
1579/*
1580 * Here we have detected that the kernel stack pointer is bad.
1581 * R9 contains the saved CR, r13 points to the paca,
1582 * r10 contains the (bad) kernel stack pointer,
1583 * r11 and r12 contain the saved SRR0 and SRR1.
1584 * We switch to using an emergency stack, save the registers there,
1585 * and call kernel_bad_stack(), which panics.
1586 */
1587bad_stack:
1588 ld r1,PACAEMERGSP(r13)
1589 subi r1,r1,64+INT_FRAME_SIZE
1590 std r9,_CCR(r1)
1591 std r10,GPR1(r1)
1592 std r11,_NIP(r1)
1593 std r12,_MSR(r1)
1594 mfspr r11,SPRN_DAR
1595 mfspr r12,SPRN_DSISR
1596 std r11,_DAR(r1)
1597 std r12,_DSISR(r1)
1598 mflr r10
1599 mfctr r11
1600 mfxer r12
1601 std r10,_LINK(r1)
1602 std r11,_CTR(r1)
1603 std r12,_XER(r1)
1604 SAVE_GPR(0,r1)
1605 SAVE_GPR(2,r1)
1606 ld r10,EX_R3(r3)
1607 std r10,GPR3(r1)
1608 SAVE_GPR(4,r1)
1609 SAVE_4GPRS(5,r1)
1610 ld r9,EX_R9(r3)
1611 ld r10,EX_R10(r3)
1612 SAVE_2GPRS(9,r1)
1613 ld r9,EX_R11(r3)
1614 ld r10,EX_R12(r3)
1615 ld r11,EX_R13(r3)
1616 std r9,GPR11(r1)
1617 std r10,GPR12(r1)
1618 std r11,GPR13(r1)
1619BEGIN_FTR_SECTION
1620 ld r10,EX_CFAR(r3)
1621 std r10,ORIG_GPR3(r1)
1622END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1623 SAVE_8GPRS(14,r1)
1624 SAVE_10GPRS(22,r1)
1625 lhz r12,PACA_TRAP_SAVE(r13)
1626 std r12,_TRAP(r1)
1627 addi r11,r1,INT_FRAME_SIZE
1628 std r11,0(r1)
1629 li r12,0
1630 std r12,0(r11)
1631 ld r2,PACATOC(r13)
1632 ld r11,exception_marker@toc(r2)
1633 std r12,RESULT(r1)
1634 std r11,STACK_FRAME_OVERHEAD-16(r1)
16351: addi r3,r1,STACK_FRAME_OVERHEAD
1636 bl kernel_bad_stack
1637 b 1b
15770a13 1638_ASM_NOKPROBE_SYMBOL(bad_stack);
0f0c6ca1 1639
a9af97aa
NP
1640/*
1641 * When doorbell is triggered from system reset wakeup, the message is
1642 * not cleared, so it would fire again when EE is enabled.
1643 *
1644 * When coming from local_irq_enable, there may be the same problem if
1645 * we were hard disabled.
1646 *
1647 * Execute msgclr to clear pending exceptions before handling it.
1648 */
1649h_doorbell_common_msgclr:
1650 LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
1651 PPC_MSGCLR(3)
1652 b h_doorbell_common
1653
1654doorbell_super_common_msgclr:
1655 LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
1656 PPC_MSGCLRP(3)
1657 b doorbell_super_common
1658
0f0c6ca1
NP
1659/*
1660 * Called from arch_local_irq_enable when an interrupt needs
1661 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1662 * which kind of interrupt. MSR:EE is already off. We generate a
1663 * stackframe like if a real interrupt had happened.
1664 *
1665 * Note: While MSR:EE is off, we need to make sure that _MSR
1666 * in the generated frame has EE set to 1 or the exception
1667 * handler will not properly re-enable them.
b48bbb82
NP
1668 *
1669 * Note that we don't specify LR as the NIP (return address) for
1670 * the interrupt because that would unbalance the return branch
1671 * predictor.
0f0c6ca1
NP
1672 */
1673_GLOBAL(__replay_interrupt)
1674 /* We are going to jump to the exception common code which
1675 * will retrieve various register values from the PACA which
1676 * we don't give a damn about, so we don't bother storing them.
1677 */
1678 mfmsr r12
3e23a12b 1679 LOAD_REG_ADDR(r11, replay_interrupt_return)
0f0c6ca1
NP
1680 mfcr r9
1681 ori r12,r12,MSR_EE
1682 cmpwi r3,0x900
1683 beq decrementer_common
1684 cmpwi r3,0x500
e6c1203d
NP
1685BEGIN_FTR_SECTION
1686 beq h_virt_irq_common
1687FTR_SECTION_ELSE
0f0c6ca1 1688 beq hardware_interrupt_common
e6c1203d 1689ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_300)
0f0c6ca1 1690BEGIN_FTR_SECTION
d6f73fc6 1691 cmpwi r3,0xa00
a9af97aa 1692 beq h_doorbell_common_msgclr
0f0c6ca1
NP
1693 cmpwi r3,0xe60
1694 beq hmi_exception_common
1695FTR_SECTION_ELSE
1696 cmpwi r3,0xa00
a9af97aa 1697 beq doorbell_super_common_msgclr
0f0c6ca1 1698ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
3e23a12b 1699replay_interrupt_return:
0f0c6ca1 1700 blr
b48bbb82 1701
15770a13 1702_ASM_NOKPROBE_SYMBOL(__replay_interrupt)