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