]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/kernel/exceptions-64s.S
powerpc/64s: Consolidate Trace 0xd00 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
BH
909
910 /* At 0xe??? we have a bunch of hypervisor exceptions, we branch
911 * out of line to handle them
912 */
da2bc464 913__EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0xe20)
1707dd16 914
da2bc464 915__EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0xe40)
1707dd16 916
da2bc464 917__EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0xe60)
1707dd16 918
da2bc464 919__EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0xe80, hmi_exception_early)
1707dd16 920
da2bc464 921__EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0xea0)
0ebc4cda 922
da2bc464 923__EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0xec0)
9baaef0a 924
da2bc464 925EXC_REAL_NONE(0xec0, 0xf00)
0ebc4cda 926
da2bc464 927__EXC_REAL_OOL(performance_monitor, 0xf00, 0xf20)
0ebc4cda 928
da2bc464 929__EXC_REAL_OOL(altivec_unavailable, 0xf20, 0xf40)
0ebc4cda 930
da2bc464
ME
931__EXC_REAL_OOL(vsx_unavailable, 0xf40, 0xf60)
932
933__EXC_REAL_OOL(facility_unavailable, 0xf60, 0xf80)
934
935__EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0xfa0)
936
937EXC_REAL_NONE(0xfa0, 0x1200)
d0c0c9a1 938
0ebc4cda 939#ifdef CONFIG_CBE_RAS
da2bc464
ME
940EXC_REAL_HV(cbe_system_error, 0x1200, 0x1300)
941
942TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
943
944#else /* CONFIG_CBE_RAS */
945EXC_REAL_NONE(0x1200, 0x1300)
946#endif
b01c8b54 947
da2bc464 948EXC_REAL(instruction_breakpoint, 0x1300, 0x1400)
b01c8b54 949
da2bc464
ME
950TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
951
952EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x1600)
b92a66a6 953 mtspr SPRN_SPRG_HSCRATCH0,r13
1707dd16 954 EXCEPTION_PROLOG_0(PACA_EXGEN)
630573c1 955 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
b92a66a6
MN
956
957#ifdef CONFIG_PPC_DENORMALISATION
958 mfspr r10,SPRN_HSRR1
959 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
afcf0095
NP
960 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
961 addi r11,r11,-4 /* HSRR0 is next instruction */
962 bne+ denorm_assist
963#endif
1e9b4507 964
afcf0095
NP
965 KVMTEST_PR(0x1500)
966 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
967EXC_REAL_END(denorm_exception_hv, 0x1500, 0x1600)
a74599a5 968
afcf0095 969TRAMP_KVM_SKIP(PACA_EXGEN, 0x1500)
da2bc464 970
afcf0095
NP
971#ifdef CONFIG_CBE_RAS
972EXC_REAL_HV(cbe_maintenance, 0x1600, 0x1700)
973
974TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
975
976#else /* CONFIG_CBE_RAS */
977EXC_REAL_NONE(0x1600, 0x1700)
978#endif
979
980EXC_REAL(altivec_assist, 0x1700, 0x1800)
981
982TRAMP_KVM(PACA_EXGEN, 0x1700)
983
984#ifdef CONFIG_CBE_RAS
985EXC_REAL_HV(cbe_thermal, 0x1800, 0x1900)
986
987TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
988
989#else /* CONFIG_CBE_RAS */
990EXC_REAL_NONE(0x1800, 0x1900)
991#endif
992
993
994/*** Out of line interrupts support ***/
995
996 /* moved from 0x200 */
b01c8b54 997
b92a66a6 998#ifdef CONFIG_PPC_DENORMALISATION
da2bc464 999TRAMP_REAL_BEGIN(denorm_assist)
b92a66a6
MN
1000BEGIN_FTR_SECTION
1001/*
1002 * To denormalise we need to move a copy of the register to itself.
1003 * For POWER6 do that here for all FP regs.
1004 */
1005 mfmsr r10
1006 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1007 xori r10,r10,(MSR_FE0|MSR_FE1)
1008 mtmsrd r10
1009 sync
d7c67fb1
MN
1010
1011#define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1012#define FMR4(n) FMR2(n) ; FMR2(n+2)
1013#define FMR8(n) FMR4(n) ; FMR4(n+4)
1014#define FMR16(n) FMR8(n) ; FMR8(n+8)
1015#define FMR32(n) FMR16(n) ; FMR16(n+16)
1016 FMR32(0)
1017
b92a66a6
MN
1018FTR_SECTION_ELSE
1019/*
1020 * To denormalise we need to move a copy of the register to itself.
1021 * For POWER7 do that here for the first 32 VSX registers only.
1022 */
1023 mfmsr r10
1024 oris r10,r10,MSR_VSX@h
1025 mtmsrd r10
1026 sync
d7c67fb1
MN
1027
1028#define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1029#define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1030#define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1031#define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1032#define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1033 XVCPSGNDP32(0)
1034
b92a66a6 1035ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
fb0fce3e
MN
1036
1037BEGIN_FTR_SECTION
1038 b denorm_done
1039END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1040/*
1041 * To denormalise we need to move a copy of the register to itself.
1042 * For POWER8 we need to do that for all 64 VSX registers
1043 */
1044 XVCPSGNDP32(32)
1045denorm_done:
b92a66a6
MN
1046 mtspr SPRN_HSRR0,r11
1047 mtcrf 0x80,r9
1048 ld r9,PACA_EXGEN+EX_R9(r13)
44e9309f 1049 RESTORE_PPR_PACA(PACA_EXGEN, r10)
630573c1
PM
1050BEGIN_FTR_SECTION
1051 ld r10,PACA_EXGEN+EX_CFAR(r13)
1052 mtspr SPRN_CFAR,r10
1053END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
b92a66a6
MN
1054 ld r10,PACA_EXGEN+EX_R10(r13)
1055 ld r11,PACA_EXGEN+EX_R11(r13)
1056 ld r12,PACA_EXGEN+EX_R12(r13)
1057 ld r13,PACA_EXGEN+EX_R13(r13)
1058 HRFID
1059 b .
1060#endif
1061
b3e6b5df 1062 /* moved from 0xe00 */
da2bc464
ME
1063__TRAMP_REAL_REAL_OOL_HV(h_data_storage, 0xe00)
1064TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
1065
1066__TRAMP_REAL_REAL_OOL_HV(h_instr_storage, 0xe20)
1067TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
1068
1069__TRAMP_REAL_REAL_OOL_HV(emulation_assist, 0xe40)
1070TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
0869b6fd 1071
da2bc464
ME
1072__TRAMP_REAL_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
1073TRAMP_KVM_HV(PACA_EXGEN, 0xe60)
0ebc4cda 1074
da2bc464
ME
1075__TRAMP_REAL_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80)
1076TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1077
1078__TRAMP_REAL_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0)
1079TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
9baaef0a 1080
0ebc4cda 1081 /* moved from 0xf00 */
da2bc464
ME
1082__TRAMP_REAL_REAL_OOL(performance_monitor, 0xf00)
1083TRAMP_KVM(PACA_EXGEN, 0xf00)
1084
1085__TRAMP_REAL_REAL_OOL(altivec_unavailable, 0xf20)
1086TRAMP_KVM(PACA_EXGEN, 0xf20)
1087
1088__TRAMP_REAL_REAL_OOL(vsx_unavailable, 0xf40)
1089TRAMP_KVM(PACA_EXGEN, 0xf40)
1090
1091__TRAMP_REAL_REAL_OOL(facility_unavailable, 0xf60)
1092TRAMP_KVM(PACA_EXGEN, 0xf60)
1093
1094__TRAMP_REAL_REAL_OOL_HV(h_facility_unavailable, 0xf80)
1095TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
0ebc4cda
BH
1096
1097/*
fe9e1d54
IM
1098 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1099 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1100 * - If it was a doorbell we return immediately since doorbells are edge
1101 * triggered and won't automatically refire.
0869b6fd
MS
1102 * - If it was a HMI we return immediately since we handled it in realmode
1103 * and it won't refire.
fe9e1d54
IM
1104 * - else we hard disable and return.
1105 * This is called with r10 containing the value to OR to the paca field.
0ebc4cda 1106 */
7230c564
BH
1107#define MASKED_INTERRUPT(_H) \
1108masked_##_H##interrupt: \
1109 std r11,PACA_EXGEN+EX_R11(r13); \
1110 lbz r11,PACAIRQHAPPENED(r13); \
1111 or r11,r11,r10; \
1112 stb r11,PACAIRQHAPPENED(r13); \
fe9e1d54
IM
1113 cmpwi r10,PACA_IRQ_DEC; \
1114 bne 1f; \
7230c564
BH
1115 lis r10,0x7fff; \
1116 ori r10,r10,0xffff; \
1117 mtspr SPRN_DEC,r10; \
1118 b 2f; \
fe9e1d54 11191: cmpwi r10,PACA_IRQ_DBELL; \
0869b6fd
MS
1120 beq 2f; \
1121 cmpwi r10,PACA_IRQ_HMI; \
fe9e1d54
IM
1122 beq 2f; \
1123 mfspr r10,SPRN_##_H##SRR1; \
7230c564
BH
1124 rldicl r10,r10,48,1; /* clear MSR_EE */ \
1125 rotldi r10,r10,16; \
1126 mtspr SPRN_##_H##SRR1,r10; \
11272: mtcrf 0x80,r9; \
1128 ld r9,PACA_EXGEN+EX_R9(r13); \
1129 ld r10,PACA_EXGEN+EX_R10(r13); \
1130 ld r11,PACA_EXGEN+EX_R11(r13); \
1131 GET_SCRATCH0(r13); \
1132 ##_H##rfid; \
0ebc4cda 1133 b .
57f26649
NP
1134
1135/*
1136 * Real mode exceptions actually use this too, but alternate
1137 * instruction code patches (which end up in the common .text area)
1138 * cannot reach these if they are put there.
1139 */
1140USE_FIXED_SECTION(virt_trampolines)
7230c564
BH
1141 MASKED_INTERRUPT()
1142 MASKED_INTERRUPT(H)
0ebc4cda 1143
7230c564
BH
1144/*
1145 * Called from arch_local_irq_enable when an interrupt needs
fe9e1d54
IM
1146 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1147 * which kind of interrupt. MSR:EE is already off. We generate a
7230c564
BH
1148 * stackframe like if a real interrupt had happened.
1149 *
1150 * Note: While MSR:EE is off, we need to make sure that _MSR
1151 * in the generated frame has EE set to 1 or the exception
1152 * handler will not properly re-enable them.
1153 */
57f26649 1154USE_TEXT_SECTION()
7230c564
BH
1155_GLOBAL(__replay_interrupt)
1156 /* We are going to jump to the exception common code which
1157 * will retrieve various register values from the PACA which
1158 * we don't give a damn about, so we don't bother storing them.
1159 */
1160 mfmsr r12
1161 mflr r11
1162 mfcr r9
1163 ori r12,r12,MSR_EE
fe9e1d54
IM
1164 cmpwi r3,0x900
1165 beq decrementer_common
1166 cmpwi r3,0x500
1167 beq hardware_interrupt_common
1168BEGIN_FTR_SECTION
1169 cmpwi r3,0xe80
1170 beq h_doorbell_common
9baaef0a
BH
1171 cmpwi r3,0xea0
1172 beq h_virt_irq_common
fd7bacbc
MS
1173 cmpwi r3,0xe60
1174 beq hmi_exception_common
fe9e1d54
IM
1175FTR_SECTION_ELSE
1176 cmpwi r3,0xa00
1177 beq doorbell_super_common
1178ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1179 blr
a5d4f3ad 1180
4f6c11db 1181#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
da2bc464 1182TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
4f6c11db
PM
1183 /*
1184 * Here all GPRs are unchanged from when the interrupt happened
1185 * except for r13, which is saved in SPRG_SCRATCH0.
1186 */
1187 mfspr r13, SPRN_SRR0
1188 addi r13, r13, 4
1189 mtspr SPRN_SRR0, r13
1190 GET_SCRATCH0(r13)
1191 rfid
1192 b .
1193
da2bc464 1194TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
4f6c11db
PM
1195 /*
1196 * Here all GPRs are unchanged from when the interrupt happened
1197 * except for r13, which is saved in SPRG_SCRATCH0.
1198 */
1199 mfspr r13, SPRN_HSRR0
1200 addi r13, r13, 4
1201 mtspr SPRN_HSRR0, r13
1202 GET_SCRATCH0(r13)
1203 hrfid
1204 b .
1205#endif
1206
0ebc4cda 1207/*
057b6d7e
HB
1208 * Ensure that any handlers that get invoked from the exception prologs
1209 * above are below the first 64KB (0x10000) of the kernel image because
1210 * the prologs assemble the addresses of these handlers using the
1211 * LOAD_HANDLER macro, which uses an ori instruction.
0ebc4cda
BH
1212 */
1213
1214/*** Common interrupt handlers ***/
1215
0ebc4cda 1216
da2bc464 1217EXC_COMMON(trap_0e_common, 0xe00, unknown_exception)
da2bc464 1218EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
da2bc464 1219EXC_COMMON_ASYNC(hmi_exception_common, 0xe60, handle_hmi_exception)
655bb3f4 1220#ifdef CONFIG_PPC_DOORBELL
da2bc464 1221EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
655bb3f4 1222#else
da2bc464 1223EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
655bb3f4 1224#endif
da2bc464 1225EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
da2bc464 1226EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
da2bc464 1227EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
da2bc464 1228EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
0ebc4cda 1229#ifdef CONFIG_ALTIVEC
da2bc464 1230EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
0ebc4cda 1231#else
da2bc464 1232EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
0ebc4cda 1233#endif
0ebc4cda 1234
c1fb6816
MN
1235 /*
1236 * Relocation-on interrupts: A subset of the interrupts can be delivered
1237 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1238 * it. Addresses are the same as the original interrupt addresses, but
1239 * offset by 0xc000000000004000.
1240 * It's impossible to receive interrupts below 0x300 via this mechanism.
1241 * KVM: None of these traps are from the guest ; anything that escalated
1242 * to HV=1 from HV=0 is delivered via real mode handlers.
1243 */
1244
1245 /*
1246 * This uses the standard macro, since the original 0x300 vector
1247 * only has extra guff for STAB-based processors -- which never
1248 * come here.
1249 */
da2bc464 1250
da2bc464
ME
1251EXC_VIRT_BEGIN(unused, 0x4e00, 0x4e20)
1252 b . /* Can't happen, see v2.07 Book III-S section 6.5 */
1253EXC_VIRT_END(unused, 0x4e00, 0x4e20)
c1fb6816 1254
da2bc464
ME
1255EXC_VIRT_BEGIN(unused, 0x4e20, 0x4e40)
1256 b . /* Can't happen, see v2.07 Book III-S section 6.5 */
1257EXC_VIRT_END(unused, 0x4e20, 0x4e40)
c1fb6816 1258
da2bc464 1259__EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x4e60)
c1fb6816 1260
da2bc464
ME
1261EXC_VIRT_BEGIN(unused, 0x4e60, 0x4e80)
1262 b . /* Can't happen, see v2.07 Book III-S section 6.5 */
1263EXC_VIRT_END(unused, 0x4e60, 0x4e80)
c1fb6816 1264
da2bc464 1265__EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x4ea0)
c1fb6816 1266
da2bc464 1267__EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x4ec0)
9baaef0a 1268
da2bc464 1269EXC_VIRT_NONE(0x4ec0, 0x4f00)
c1fb6816 1270
da2bc464 1271__EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x4f20)
c1fb6816 1272
da2bc464 1273__EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x4f40)
c1fb6816 1274
da2bc464 1275__EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x4f60)
d0c0c9a1 1276
da2bc464
ME
1277__EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x4f80)
1278
1279__EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x4fa0)
1280
1281EXC_VIRT_NONE(0x4fa0, 0x5200)
1282
1283EXC_VIRT_NONE(0x5200, 0x5300)
1284
1285EXC_VIRT(instruction_breakpoint, 0x5300, 0x5400, 0x1300)
b14b6260 1286
c1fb6816 1287#ifdef CONFIG_PPC_DENORMALISATION
da2bc464
ME
1288EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x5600)
1289 b exc_real_0x1500_denorm_exception_hv
1290EXC_VIRT_END(denorm_exception, 0x5500, 0x5600)
1291#else
1292EXC_VIRT_NONE(0x5500, 0x5600)
c1fb6816 1293#endif
c1fb6816 1294
da2bc464
ME
1295EXC_VIRT_NONE(0x5600, 0x5700)
1296
1297EXC_VIRT(altivec_assist, 0x5700, 0x5800, 0x1700)
1298
1299EXC_VIRT_NONE(0x5800, 0x5900)
1300
57f26649 1301EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
b1576fec 1302 b __ppc64_runlatch_on
fe1952fc 1303
da2bc464 1304EXC_COMMON_BEGIN(h_data_storage_common)
278a6cdc
MN
1305 mfspr r10,SPRN_HDAR
1306 std r10,PACA_EXGEN+EX_DAR(r13)
1307 mfspr r10,SPRN_HDSISR
1308 stw r10,PACA_EXGEN+EX_DSISR(r13)
1309 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
b1576fec 1310 bl save_nvgprs
9daf112b 1311 RECONCILE_IRQ_STATE(r10, r11)
278a6cdc 1312 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1313 bl unknown_exception
1314 b ret_from_except
b3e6b5df 1315
0ebc4cda 1316
da2bc464 1317EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
b3e6b5df 1318
da2bc464 1319EXC_COMMON_BEGIN(altivec_unavailable_common)
0ebc4cda
BH
1320 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1321#ifdef CONFIG_ALTIVEC
1322BEGIN_FTR_SECTION
1323 beq 1f
bc2a9408
MN
1324#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1325 BEGIN_FTR_SECTION_NESTED(69)
1326 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1327 * transaction), go do TM stuff
1328 */
1329 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1330 bne- 2f
1331 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1332#endif
b1576fec 1333 bl load_up_altivec
0ebc4cda 1334 b fast_exception_return
bc2a9408
MN
1335#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
13362: /* User process was in a transaction */
b1576fec 1337 bl save_nvgprs
9daf112b 1338 RECONCILE_IRQ_STATE(r10, r11)
bc2a9408 1339 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1340 bl altivec_unavailable_tm
1341 b ret_from_except
bc2a9408 1342#endif
0ebc4cda
BH
13431:
1344END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1345#endif
b1576fec 1346 bl save_nvgprs
9daf112b 1347 RECONCILE_IRQ_STATE(r10, r11)
0ebc4cda 1348 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1349 bl altivec_unavailable_exception
1350 b ret_from_except
0ebc4cda 1351
da2bc464 1352EXC_COMMON_BEGIN(vsx_unavailable_common)
0ebc4cda
BH
1353 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1354#ifdef CONFIG_VSX
1355BEGIN_FTR_SECTION
7230c564 1356 beq 1f
bc2a9408
MN
1357#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1358 BEGIN_FTR_SECTION_NESTED(69)
1359 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1360 * transaction), go do TM stuff
1361 */
1362 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1363 bne- 2f
1364 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1365#endif
b1576fec 1366 b load_up_vsx
bc2a9408
MN
1367#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
13682: /* User process was in a transaction */
b1576fec 1369 bl save_nvgprs
9daf112b 1370 RECONCILE_IRQ_STATE(r10, r11)
bc2a9408 1371 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1372 bl vsx_unavailable_tm
1373 b ret_from_except
bc2a9408 1374#endif
0ebc4cda
BH
13751:
1376END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1377#endif
b1576fec 1378 bl save_nvgprs
9daf112b 1379 RECONCILE_IRQ_STATE(r10, r11)
0ebc4cda 1380 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1381 bl vsx_unavailable_exception
1382 b ret_from_except
0ebc4cda 1383
61383407 1384 /* Equivalents to the above handlers for relocation-on interrupt vectors */
da2bc464
ME
1385__TRAMP_REAL_VIRT_OOL_HV(emulation_assist, 0xe40)
1386__TRAMP_REAL_VIRT_OOL_MASKABLE_HV(h_doorbell, 0xe80)
1387__TRAMP_REAL_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0xea0)
1388__TRAMP_REAL_VIRT_OOL(performance_monitor, 0xf00)
1389__TRAMP_REAL_VIRT_OOL(altivec_unavailable, 0xf20)
1390__TRAMP_REAL_VIRT_OOL(vsx_unavailable, 0xf40)
1391__TRAMP_REAL_VIRT_OOL(facility_unavailable, 0xf60)
1392__TRAMP_REAL_VIRT_OOL_HV(h_facility_unavailable, 0xf80)
61383407 1393
57f26649 1394USE_FIXED_SECTION(virt_trampolines)
8ed8ab40
HB
1395 /*
1396 * The __end_interrupts marker must be past the out-of-line (OOL)
1397 * handlers, so that they are copied to real address 0x100 when running
1398 * a relocatable kernel. This ensures they can be reached from the short
1399 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1400 * directly, without using LOAD_HANDLER().
1401 */
1402 .align 7
1403 .globl __end_interrupts
1404__end_interrupts:
57f26649 1405DEFINE_FIXED_SYMBOL(__end_interrupts)
61383407 1406
da2bc464 1407EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
da2bc464 1408EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
b88d4bce
BH
1409
1410#ifdef CONFIG_CBE_RAS
da2bc464 1411EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
da2bc464 1412EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
da2bc464 1413EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
b88d4bce
BH
1414#endif /* CONFIG_CBE_RAS */
1415
da2bc464 1416
57f26649 1417TRAMP_REAL_BEGIN(hmi_exception_early)
da2bc464 1418 EXCEPTION_PROLOG_1(PACA_EXGEN, KVMTEST_HV, 0xe60)
11d54904
GR
1419 mr r10,r1 /* Save r1 */
1420 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
1421 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
1422 std r9,_CCR(r1) /* save CR in stackframe */
1423 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
1424 std r11,_NIP(r1) /* save HSRR0 in stackframe */
1425 mfspr r12,SPRN_HSRR1 /* Save SRR1 */
1426 std r12,_MSR(r1) /* save SRR1 in stackframe */
1427 std r10,0(r1) /* make stack chain pointer */
1428 std r0,GPR0(r1) /* save r0 in stackframe */
1429 std r10,GPR1(r1) /* save r1 in stackframe */
1430 EXCEPTION_PROLOG_COMMON_2(PACA_EXGEN)
1431 EXCEPTION_PROLOG_COMMON_3(0xe60)
1432 addi r3,r1,STACK_FRAME_OVERHEAD
1433 bl hmi_exception_realmode
1434 /* Windup the stack. */
11d54904
GR
1435 /* Move original HSRR0 and HSRR1 into the respective regs */
1436 ld r9,_MSR(r1)
1437 mtspr SPRN_HSRR1,r9
1438 ld r3,_NIP(r1)
1439 mtspr SPRN_HSRR0,r3
1440 ld r9,_CTR(r1)
1441 mtctr r9
1442 ld r9,_XER(r1)
1443 mtxer r9
1444 ld r9,_LINK(r1)
1445 mtlr r9
1446 REST_GPR(0, r1)
1447 REST_8GPRS(2, r1)
1448 REST_GPR(10, r1)
1449 ld r11,_CCR(r1)
1450 mtcr r11
1451 REST_GPR(11, r1)
1452 REST_2GPRS(12, r1)
1453 /* restore original r1. */
1454 ld r1,GPR1(r1)
1455
1456 /*
1457 * Go to virtual mode and pull the HMI event information from
1458 * firmware.
1459 */
1460 .globl hmi_exception_after_realmode
1461hmi_exception_after_realmode:
1462 SET_SCRATCH0(r13)
1463 EXCEPTION_PROLOG_0(PACA_EXGEN)
da2bc464 1464 b tramp_real_hmi_exception
11d54904 1465
087aa036 1466#ifdef CONFIG_PPC_970_NAP
da2bc464 1467TRAMP_REAL_BEGIN(power4_fixup_nap)
087aa036
CG
1468 andc r9,r9,r10
1469 std r9,TI_LOCAL_FLAGS(r11)
1470 ld r10,_LINK(r1) /* make idle task do the */
1471 std r10,_NIP(r1) /* equivalent of a blr */
1472 blr
1473#endif
1474
57f26649
NP
1475CLOSE_FIXED_SECTION(real_vectors);
1476CLOSE_FIXED_SECTION(real_trampolines);
1477CLOSE_FIXED_SECTION(virt_vectors);
1478CLOSE_FIXED_SECTION(virt_trampolines);
1479
1480USE_TEXT_SECTION()
1481
0ebc4cda
BH
1482/*
1483 * Hash table stuff
1484 */
1485 .align 7
6a3bab90 1486do_hash_page:
caca285e 1487#ifdef CONFIG_PPC_STD_MMU_64
9c7cc234 1488 andis. r0,r4,0xa410 /* weird error? */
0ebc4cda 1489 bne- handle_page_fault /* if not, try to insert a HPTE */
9c7cc234
P
1490 andis. r0,r4,DSISR_DABRMATCH@h
1491 bne- handle_dabr_fault
9778b696 1492 CURRENT_THREAD_INFO(r11, r1)
9c1e1052
PM
1493 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1494 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1495 bne 77f /* then don't call hash_page now */
0ebc4cda
BH
1496
1497 /*
1498 * r3 contains the faulting address
106713a1 1499 * r4 msr
0ebc4cda 1500 * r5 contains the trap number
aefa5688 1501 * r6 contains dsisr
0ebc4cda 1502 *
7230c564 1503 * at return r3 = 0 for success, 1 for page fault, negative for error
0ebc4cda 1504 */
106713a1 1505 mr r4,r12
aefa5688 1506 ld r6,_DSISR(r1)
106713a1
AK
1507 bl __hash_page /* build HPTE if possible */
1508 cmpdi r3,0 /* see if __hash_page succeeded */
0ebc4cda 1509
7230c564 1510 /* Success */
0ebc4cda 1511 beq fast_exc_return_irq /* Return from exception on success */
0ebc4cda 1512
7230c564
BH
1513 /* Error */
1514 blt- 13f
caca285e 1515#endif /* CONFIG_PPC_STD_MMU_64 */
9c7cc234 1516
0ebc4cda
BH
1517/* Here we have a page fault that hash_page can't handle. */
1518handle_page_fault:
0ebc4cda
BH
151911: ld r4,_DAR(r1)
1520 ld r5,_DSISR(r1)
1521 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec 1522 bl do_page_fault
0ebc4cda 1523 cmpdi r3,0
a546498f 1524 beq+ 12f
b1576fec 1525 bl save_nvgprs
0ebc4cda
BH
1526 mr r5,r3
1527 addi r3,r1,STACK_FRAME_OVERHEAD
1528 lwz r4,_DAR(r1)
b1576fec
AB
1529 bl bad_page_fault
1530 b ret_from_except
0ebc4cda 1531
a546498f
BH
1532/* We have a data breakpoint exception - handle it */
1533handle_dabr_fault:
b1576fec 1534 bl save_nvgprs
a546498f
BH
1535 ld r4,_DAR(r1)
1536 ld r5,_DSISR(r1)
1537 addi r3,r1,STACK_FRAME_OVERHEAD
b1576fec
AB
1538 bl do_break
153912: b ret_from_except_lite
a546498f 1540
0ebc4cda 1541
caca285e 1542#ifdef CONFIG_PPC_STD_MMU_64
0ebc4cda
BH
1543/* We have a page fault that hash_page could handle but HV refused
1544 * the PTE insertion
1545 */
b1576fec 154613: bl save_nvgprs
0ebc4cda
BH
1547 mr r5,r3
1548 addi r3,r1,STACK_FRAME_OVERHEAD
1549 ld r4,_DAR(r1)
b1576fec
AB
1550 bl low_hash_fault
1551 b ret_from_except
caca285e 1552#endif
0ebc4cda 1553
9c1e1052
PM
1554/*
1555 * We come here as a result of a DSI at a point where we don't want
1556 * to call hash_page, such as when we are accessing memory (possibly
1557 * user memory) inside a PMU interrupt that occurred while interrupts
1558 * were soft-disabled. We want to invoke the exception handler for
1559 * the access, or panic if there isn't a handler.
1560 */
b1576fec 156177: bl save_nvgprs
9c1e1052
PM
1562 mr r4,r3
1563 addi r3,r1,STACK_FRAME_OVERHEAD
1564 li r5,SIGSEGV
b1576fec
AB
1565 bl bad_page_fault
1566 b ret_from_except
4e2bf01b
ME
1567
1568/*
1569 * Here we have detected that the kernel stack pointer is bad.
1570 * R9 contains the saved CR, r13 points to the paca,
1571 * r10 contains the (bad) kernel stack pointer,
1572 * r11 and r12 contain the saved SRR0 and SRR1.
1573 * We switch to using an emergency stack, save the registers there,
1574 * and call kernel_bad_stack(), which panics.
1575 */
1576bad_stack:
1577 ld r1,PACAEMERGSP(r13)
1578 subi r1,r1,64+INT_FRAME_SIZE
1579 std r9,_CCR(r1)
1580 std r10,GPR1(r1)
1581 std r11,_NIP(r1)
1582 std r12,_MSR(r1)
1583 mfspr r11,SPRN_DAR
1584 mfspr r12,SPRN_DSISR
1585 std r11,_DAR(r1)
1586 std r12,_DSISR(r1)
1587 mflr r10
1588 mfctr r11
1589 mfxer r12
1590 std r10,_LINK(r1)
1591 std r11,_CTR(r1)
1592 std r12,_XER(r1)
1593 SAVE_GPR(0,r1)
1594 SAVE_GPR(2,r1)
1595 ld r10,EX_R3(r3)
1596 std r10,GPR3(r1)
1597 SAVE_GPR(4,r1)
1598 SAVE_4GPRS(5,r1)
1599 ld r9,EX_R9(r3)
1600 ld r10,EX_R10(r3)
1601 SAVE_2GPRS(9,r1)
1602 ld r9,EX_R11(r3)
1603 ld r10,EX_R12(r3)
1604 ld r11,EX_R13(r3)
1605 std r9,GPR11(r1)
1606 std r10,GPR12(r1)
1607 std r11,GPR13(r1)
1608BEGIN_FTR_SECTION
1609 ld r10,EX_CFAR(r3)
1610 std r10,ORIG_GPR3(r1)
1611END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1612 SAVE_8GPRS(14,r1)
1613 SAVE_10GPRS(22,r1)
1614 lhz r12,PACA_TRAP_SAVE(r13)
1615 std r12,_TRAP(r1)
1616 addi r11,r1,INT_FRAME_SIZE
1617 std r11,0(r1)
1618 li r12,0
1619 std r12,0(r11)
1620 ld r2,PACATOC(r13)
1621 ld r11,exception_marker@toc(r2)
1622 std r12,RESULT(r1)
1623 std r11,STACK_FRAME_OVERHEAD-16(r1)
16241: addi r3,r1,STACK_FRAME_OVERHEAD
1625 bl kernel_bad_stack
1626 b 1b