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