blob: f129408c602290d7ccf5870e2b12b46b0380bea5 [file] [log] [blame]
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001/*
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
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008 * position dependent assembly.
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00009 *
10 * Most of this originates from head_64.S and thus has the same
11 * copyright history.
12 *
13 */
14
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110015#include <asm/hw_irq.h>
Benjamin Herrenschmidt8aa34ab2009-07-14 20:52:52 +000016#include <asm/exception-64s.h>
Stephen Rothwell46f52212010-11-18 15:06:17 +000017#include <asm/ptrace.h>
Shreyas B. Prabhu7cba1602014-12-10 00:26:52 +053018#include <asm/cpuidle.h>
Michael Ellermanda2bc462016-09-30 19:43:18 +100019#include <asm/head-64.h>
Benjamin Herrenschmidt8aa34ab2009-07-14 20:52:52 +000020
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000021/*
Nicholas Piggin57f26642016-09-28 11:31:48 +100022 * 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 *
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000051 * We layout physical memory as follows:
52 * 0x0000 - 0x00ff : Secondary processor spin code
Nicholas Piggin57f26642016-09-28 11:31:48 +100053 * 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
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000057 * 0x7000 - 0x7fff : FWNMI data area
Nicholas Piggin57f26642016-09-28 11:31:48 +100058 * 0x8000 - .... : Common interrupt handlers, remaining early
59 * setup code, rest of kernel.
Nicholas Piggine0319822016-09-21 17:44:07 +100060 *
61 * We could reclaim 0x4000-0x42ff for real mode trampolines if the space
62 * is necessary. Until then it's more consistent to explicitly put VIRT_NONE
63 * vectors there.
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000064 */
Nicholas Piggin57f26642016-09-28 11:31:48 +100065OPEN_FIXED_SECTION(real_vectors, 0x0100, 0x1900)
66OPEN_FIXED_SECTION(real_trampolines, 0x1900, 0x4000)
67OPEN_FIXED_SECTION(virt_vectors, 0x4000, 0x5900)
68OPEN_FIXED_SECTION(virt_trampolines, 0x5900, 0x7000)
69#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
70/*
71 * Data area reserved for FWNMI option.
72 * This address (0x7000) is fixed by the RPA.
73 * pseries and powernv need to keep the whole page from
74 * 0x7000 to 0x8000 free for use by the firmware
75 */
76ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
77OPEN_TEXT_SECTION(0x8000)
78#else
79OPEN_TEXT_SECTION(0x7000)
80#endif
81
82USE_FIXED_SECTION(real_vectors)
83
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000084/*
85 * This is the start of the interrupt handlers for pSeries
86 * This code runs with relocation off.
87 * Code from here to __end_interrupts gets copied down to real
88 * address 0x100 when we are running a relocatable kernel.
89 * Therefore any relative branches in this section must only
90 * branch to labels in this section.
91 */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +000092 .globl __start_interrupts
93__start_interrupts:
94
Nicholas Piggine0319822016-09-21 17:44:07 +100095/* No virt vectors corresponding with 0x0..0x100 */
96EXC_VIRT_NONE(0x4000, 0x4100)
97
Michael Ellermanda2bc462016-09-30 19:43:18 +100098EXC_REAL_BEGIN(system_reset, 0x100, 0x200)
Benjamin Herrenschmidt948cf672011-01-24 18:42:41 +110099 SET_SCRATCH0(r13)
100#ifdef CONFIG_PPC_P7_NAP
101BEGIN_FTR_SECTION
102 /* Running native on arch 2.06 or later, check if we are
Shreyas B. Prabhu77b54e92014-12-10 00:26:53 +0530103 * waking up from nap/sleep/winkle.
Benjamin Herrenschmidt948cf672011-01-24 18:42:41 +1100104 */
105 mfspr r13,SPRN_SRR1
Paul Mackerras371fefd2011-06-29 00:23:08 +0000106 rlwinm. r13,r13,47-31,30,31
107 beq 9f
108
Shreyas B. Prabhu7cba1602014-12-10 00:26:52 +0530109 cmpwi cr3,r13,2
Paul Mackerras371fefd2011-06-29 00:23:08 +0000110 GET_PACA(r13)
Shreyas B. Prabhu5fa6b6b2016-07-08 11:50:46 +0530111 bl pnv_restore_hyp_resource
Shreyas B. Prabhu77b54e92014-12-10 00:26:53 +0530112
Shreyas B. Prabhu7cba1602014-12-10 00:26:52 +0530113 li r0,PNV_THREAD_RUNNING
114 stb r0,PACA_THREAD_IDLE_STATE(r13) /* Clear thread state */
Paul Mackerras371fefd2011-06-29 00:23:08 +0000115
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530116#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
Paul Mackerrasf0888f72012-02-03 00:54:17 +0000117 li r0,KVM_HWTHREAD_IN_KERNEL
118 stb r0,HSTATE_HWTHREAD_STATE(r13)
119 /* Order setting hwthread_state vs. testing hwthread_req */
120 sync
121 lbz r0,HSTATE_HWTHREAD_REQ(r13)
122 cmpwi r0,0
123 beq 1f
Paul Mackerras371fefd2011-06-29 00:23:08 +0000124 b kvm_start_guest
1251:
126#endif
127
Paul Mackerras56548fc2014-12-03 14:48:40 +1100128 /* Return SRR1 from power7_nap() */
129 mfspr r3,SPRN_SRR1
Shreyas B. Prabhu17065672016-07-08 11:50:44 +0530130 blt cr3,2f
Shreyas B. Prabhu5fa6b6b2016-07-08 11:50:46 +0530131 b pnv_wakeup_loss
1322: b pnv_wakeup_noloss
Vaidyanathan Srinivasanaca79d22014-02-26 05:38:25 +0530133
Paul Mackerras371fefd2011-06-29 00:23:08 +00001349:
Paul Mackerras969391c2011-06-29 00:26:11 +0000135END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
Benjamin Herrenschmidt948cf672011-01-24 18:42:41 +1100136#endif /* CONFIG_PPC_P7_NAP */
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000137 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
138 NOTEST, 0x100)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000139EXC_REAL_END(system_reset, 0x100, 0x200)
Nicholas Piggin582baf42016-09-21 17:43:30 +1000140EXC_VIRT_NONE(0x4100, 0x4200)
141EXC_COMMON(system_reset_common, 0x100, system_reset_exception)
142
143#ifdef CONFIG_PPC_PSERIES
144/*
145 * Vectors for the FWNMI option. Share common code.
146 */
147TRAMP_REAL_BEGIN(system_reset_fwnmi)
148 SET_SCRATCH0(r13) /* save r13 */
149 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
150 NOTEST, 0x100)
151#endif /* CONFIG_PPC_PSERIES */
152
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000153
Michael Ellermanda2bc462016-09-30 19:43:18 +1000154EXC_REAL_BEGIN(machine_check, 0x200, 0x300)
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000155 /* This is moved out of line as it can be patched by FW, but
156 * some code path might still want to branch into the original
157 * vector
158 */
Paul Mackerras1707dd12013-02-04 18:10:15 +0000159 SET_SCRATCH0(r13) /* save r13 */
Mahesh Salgaonkarbc14c492016-08-05 17:34:13 +0530160 /*
161 * Running native on arch 2.06 or later, we may wakeup from winkle
162 * inside machine check. If yes, then last bit of HSPGR0 would be set
163 * to 1. Hence clear it unconditionally.
Mahesh Salgaonkar1c510892013-10-30 20:04:31 +0530164 */
Mahesh Salgaonkarbc14c492016-08-05 17:34:13 +0530165 GET_PACA(r13)
166 clrrdi r13,r13,1
167 SET_PACA(r13)
Paul Mackerras1707dd12013-02-04 18:10:15 +0000168 EXCEPTION_PROLOG_0(PACA_EXMC)
Mahesh Salgaonkar1e9b4502013-10-30 20:04:08 +0530169BEGIN_FTR_SECTION
Mahesh Salgaonkar25137672016-03-01 11:17:46 +0530170 b machine_check_powernv_early
Mahesh Salgaonkar1e9b4502013-10-30 20:04:08 +0530171FTR_SECTION_ELSE
Paul Mackerras1707dd12013-02-04 18:10:15 +0000172 b machine_check_pSeries_0
Mahesh Salgaonkar1e9b4502013-10-30 20:04:08 +0530173ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000174EXC_REAL_END(machine_check, 0x200, 0x300)
Nicholas Pigginafcf0092016-09-21 17:43:31 +1000175EXC_VIRT_NONE(0x4200, 0x4300)
176TRAMP_REAL_BEGIN(machine_check_powernv_early)
177BEGIN_FTR_SECTION
178 EXCEPTION_PROLOG_1(PACA_EXMC, NOTEST, 0x200)
179 /*
180 * Register contents:
181 * R13 = PACA
182 * R9 = CR
183 * Original R9 to R13 is saved on PACA_EXMC
184 *
185 * Switch to mc_emergency stack and handle re-entrancy (we limit
186 * the nested MCE upto level 4 to avoid stack overflow).
187 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
188 *
189 * We use paca->in_mce to check whether this is the first entry or
190 * nested machine check. We increment paca->in_mce to track nested
191 * machine checks.
192 *
193 * If this is the first entry then set stack pointer to
194 * paca->mc_emergency_sp, otherwise r1 is already pointing to
195 * stack frame on mc_emergency stack.
196 *
197 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
198 * checkstop if we get another machine check exception before we do
199 * rfid with MSR_ME=1.
200 */
201 mr r11,r1 /* Save r1 */
202 lhz r10,PACA_IN_MCE(r13)
203 cmpwi r10,0 /* Are we in nested machine check */
204 bne 0f /* Yes, we are. */
205 /* First machine check entry */
206 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
2070: subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
208 addi r10,r10,1 /* increment paca->in_mce */
209 sth r10,PACA_IN_MCE(r13)
210 /* Limit nested MCE to level 4 to avoid stack overflow */
211 cmpwi r10,4
212 bgt 2f /* Check if we hit limit of 4 */
213 std r11,GPR1(r1) /* Save r1 on the stack. */
214 std r11,0(r1) /* make stack chain pointer */
215 mfspr r11,SPRN_SRR0 /* Save SRR0 */
216 std r11,_NIP(r1)
217 mfspr r11,SPRN_SRR1 /* Save SRR1 */
218 std r11,_MSR(r1)
219 mfspr r11,SPRN_DAR /* Save DAR */
220 std r11,_DAR(r1)
221 mfspr r11,SPRN_DSISR /* Save DSISR */
222 std r11,_DSISR(r1)
223 std r9,_CCR(r1) /* Save CR in stackframe */
224 /* Save r9 through r13 from EXMC save area to stack frame. */
225 EXCEPTION_PROLOG_COMMON_2(PACA_EXMC)
226 mfmsr r11 /* get MSR value */
227 ori r11,r11,MSR_ME /* turn on ME bit */
228 ori r11,r11,MSR_RI /* turn on RI bit */
229 LOAD_HANDLER(r12, machine_check_handle_early)
2301: mtspr SPRN_SRR0,r12
231 mtspr SPRN_SRR1,r11
232 rfid
233 b . /* prevent speculative execution */
2342:
235 /* Stack overflow. Stay on emergency stack and panic.
236 * Keep the ME bit off while panic-ing, so that if we hit
237 * another machine check we checkstop.
238 */
239 addi r1,r1,INT_FRAME_SIZE /* go back to previous stack frame */
240 ld r11,PACAKMSR(r13)
241 LOAD_HANDLER(r12, unrecover_mce)
242 li r10,MSR_ME
243 andc r11,r11,r10 /* Turn off MSR_ME */
244 b 1b
245 b . /* prevent speculative execution */
246END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
247
248TRAMP_REAL_BEGIN(machine_check_pSeries)
249 .globl machine_check_fwnmi
250machine_check_fwnmi:
251 SET_SCRATCH0(r13) /* save r13 */
252 EXCEPTION_PROLOG_0(PACA_EXMC)
253machine_check_pSeries_0:
254 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST_PR, 0x200)
255 /*
256 * The following is essentially EXCEPTION_PROLOG_PSERIES_1 with the
257 * difference that MSR_RI is not enabled, because PACA_EXMC is being
258 * used, so nested machine check corrupts it. machine_check_common
259 * enables MSR_RI.
260 */
261 ld r10,PACAKMSR(r13)
262 xori r10,r10,MSR_RI
263 mfspr r11,SPRN_SRR0
264 LOAD_HANDLER(r12, machine_check_common)
265 mtspr SPRN_SRR0,r12
266 mfspr r12,SPRN_SRR1
267 mtspr SPRN_SRR1,r10
268 rfid
269 b . /* prevent speculative execution */
270
271TRAMP_KVM_SKIP(PACA_EXMC, 0x200)
272
273EXC_COMMON_BEGIN(machine_check_common)
274 /*
275 * Machine check is different because we use a different
276 * save area: PACA_EXMC instead of PACA_EXGEN.
277 */
278 mfspr r10,SPRN_DAR
279 std r10,PACA_EXMC+EX_DAR(r13)
280 mfspr r10,SPRN_DSISR
281 stw r10,PACA_EXMC+EX_DSISR(r13)
282 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
283 FINISH_NAP
284 RECONCILE_IRQ_STATE(r10, r11)
285 ld r3,PACA_EXMC+EX_DAR(r13)
286 lwz r4,PACA_EXMC+EX_DSISR(r13)
287 /* Enable MSR_RI when finished with PACA_EXMC */
288 li r10,MSR_RI
289 mtmsrd r10,1
290 std r3,_DAR(r1)
291 std r4,_DSISR(r1)
292 bl save_nvgprs
293 addi r3,r1,STACK_FRAME_OVERHEAD
294 bl machine_check_exception
295 b ret_from_except
296
297#define MACHINE_CHECK_HANDLER_WINDUP \
298 /* Clear MSR_RI before setting SRR0 and SRR1. */\
299 li r0,MSR_RI; \
300 mfmsr r9; /* get MSR value */ \
301 andc r9,r9,r0; \
302 mtmsrd r9,1; /* Clear MSR_RI */ \
303 /* Move original SRR0 and SRR1 into the respective regs */ \
304 ld r9,_MSR(r1); \
305 mtspr SPRN_SRR1,r9; \
306 ld r3,_NIP(r1); \
307 mtspr SPRN_SRR0,r3; \
308 ld r9,_CTR(r1); \
309 mtctr r9; \
310 ld r9,_XER(r1); \
311 mtxer r9; \
312 ld r9,_LINK(r1); \
313 mtlr r9; \
314 REST_GPR(0, r1); \
315 REST_8GPRS(2, r1); \
316 REST_GPR(10, r1); \
317 ld r11,_CCR(r1); \
318 mtcr r11; \
319 /* Decrement paca->in_mce. */ \
320 lhz r12,PACA_IN_MCE(r13); \
321 subi r12,r12,1; \
322 sth r12,PACA_IN_MCE(r13); \
323 REST_GPR(11, r1); \
324 REST_2GPRS(12, r1); \
325 /* restore original r1. */ \
326 ld r1,GPR1(r1)
327
328 /*
329 * Handle machine check early in real mode. We come here with
330 * ME=1, MMU (IR=0 and DR=0) off and using MC emergency stack.
331 */
332EXC_COMMON_BEGIN(machine_check_handle_early)
333 std r0,GPR0(r1) /* Save r0 */
334 EXCEPTION_PROLOG_COMMON_3(0x200)
335 bl save_nvgprs
336 addi r3,r1,STACK_FRAME_OVERHEAD
337 bl machine_check_early
338 std r3,RESULT(r1) /* Save result */
339 ld r12,_MSR(r1)
340#ifdef CONFIG_PPC_P7_NAP
341 /*
342 * Check if thread was in power saving mode. We come here when any
343 * of the following is true:
344 * a. thread wasn't in power saving mode
345 * b. thread was in power saving mode with no state loss,
346 * supervisor state loss or hypervisor state loss.
347 *
348 * Go back to nap/sleep/winkle mode again if (b) is true.
349 */
350 rlwinm. r11,r12,47-31,30,31 /* Was it in power saving mode? */
351 beq 4f /* No, it wasn;t */
352 /* Thread was in power saving mode. Go back to nap again. */
353 cmpwi r11,2
354 blt 3f
355 /* Supervisor/Hypervisor state loss */
356 li r0,1
357 stb r0,PACA_NAPSTATELOST(r13)
3583: bl machine_check_queue_event
359 MACHINE_CHECK_HANDLER_WINDUP
360 GET_PACA(r13)
361 ld r1,PACAR1(r13)
362 /*
363 * Check what idle state this CPU was in and go back to same mode
364 * again.
365 */
366 lbz r3,PACA_THREAD_IDLE_STATE(r13)
367 cmpwi r3,PNV_THREAD_NAP
368 bgt 10f
369 IDLE_STATE_ENTER_SEQ(PPC_NAP)
370 /* No return */
37110:
372 cmpwi r3,PNV_THREAD_SLEEP
373 bgt 2f
374 IDLE_STATE_ENTER_SEQ(PPC_SLEEP)
375 /* No return */
376
3772:
378 /*
379 * Go back to winkle. Please note that this thread was woken up in
380 * machine check from winkle and have not restored the per-subcore
381 * state. Hence before going back to winkle, set last bit of HSPGR0
382 * to 1. This will make sure that if this thread gets woken up
383 * again at reset vector 0x100 then it will get chance to restore
384 * the subcore state.
385 */
386 ori r13,r13,1
387 SET_PACA(r13)
388 IDLE_STATE_ENTER_SEQ(PPC_WINKLE)
389 /* No return */
3904:
391#endif
392 /*
393 * Check if we are coming from hypervisor userspace. If yes then we
394 * continue in host kernel in V mode to deliver the MC event.
395 */
396 rldicl. r11,r12,4,63 /* See if MC hit while in HV mode. */
397 beq 5f
398 andi. r11,r12,MSR_PR /* See if coming from user. */
399 bne 9f /* continue in V mode if we are. */
400
4015:
402#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
403 /*
404 * We are coming from kernel context. Check if we are coming from
405 * guest. if yes, then we can continue. We will fall through
406 * do_kvm_200->kvmppc_interrupt to deliver the MC event to guest.
407 */
408 lbz r11,HSTATE_IN_GUEST(r13)
409 cmpwi r11,0 /* Check if coming from guest */
410 bne 9f /* continue if we are. */
411#endif
412 /*
413 * At this point we are not sure about what context we come from.
414 * Queue up the MCE event and return from the interrupt.
415 * But before that, check if this is an un-recoverable exception.
416 * If yes, then stay on emergency stack and panic.
417 */
418 andi. r11,r12,MSR_RI
419 bne 2f
4201: mfspr r11,SPRN_SRR0
421 LOAD_HANDLER(r10,unrecover_mce)
422 mtspr SPRN_SRR0,r10
423 ld r10,PACAKMSR(r13)
424 /*
425 * We are going down. But there are chances that we might get hit by
426 * another MCE during panic path and we may run into unstable state
427 * with no way out. Hence, turn ME bit off while going down, so that
428 * when another MCE is hit during panic path, system will checkstop
429 * and hypervisor will get restarted cleanly by SP.
430 */
431 li r3,MSR_ME
432 andc r10,r10,r3 /* Turn off MSR_ME */
433 mtspr SPRN_SRR1,r10
434 rfid
435 b .
4362:
437 /*
438 * Check if we have successfully handled/recovered from error, if not
439 * then stay on emergency stack and panic.
440 */
441 ld r3,RESULT(r1) /* Load result */
442 cmpdi r3,0 /* see if we handled MCE successfully */
443
444 beq 1b /* if !handled then panic */
445 /*
446 * Return from MC interrupt.
447 * Queue up the MCE event so that we can log it later, while
448 * returning from kernel or opal call.
449 */
450 bl machine_check_queue_event
451 MACHINE_CHECK_HANDLER_WINDUP
452 rfid
4539:
454 /* Deliver the machine check to host kernel in V mode. */
455 MACHINE_CHECK_HANDLER_WINDUP
456 b machine_check_pSeries
457
458EXC_COMMON_BEGIN(unrecover_mce)
459 /* Invoke machine_check_exception to print MCE event and panic. */
460 addi r3,r1,STACK_FRAME_OVERHEAD
461 bl machine_check_exception
462 /*
463 * We will not reach here. Even if we did, there is no way out. Call
464 * unrecoverable_exception and die.
465 */
4661: addi r3,r1,STACK_FRAME_OVERHEAD
467 bl unrecoverable_exception
468 b 1b
469
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000470
Michael Ellermanda2bc462016-09-30 19:43:18 +1000471EXC_REAL(data_access, 0x300, 0x380)
Nicholas Piggin80795e62016-09-21 17:43:32 +1000472EXC_VIRT(data_access, 0x4300, 0x4380, 0x300)
473TRAMP_KVM_SKIP(PACA_EXGEN, 0x300)
474
475EXC_COMMON_BEGIN(data_access_common)
476 /*
477 * Here r13 points to the paca, r9 contains the saved CR,
478 * SRR0 and SRR1 are saved in r11 and r12,
479 * r9 - r13 are saved in paca->exgen.
480 */
481 mfspr r10,SPRN_DAR
482 std r10,PACA_EXGEN+EX_DAR(r13)
483 mfspr r10,SPRN_DSISR
484 stw r10,PACA_EXGEN+EX_DSISR(r13)
485 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
486 RECONCILE_IRQ_STATE(r10, r11)
487 ld r12,_MSR(r1)
488 ld r3,PACA_EXGEN+EX_DAR(r13)
489 lwz r4,PACA_EXGEN+EX_DSISR(r13)
490 li r5,0x300
491 std r3,_DAR(r1)
492 std r4,_DSISR(r1)
493BEGIN_MMU_FTR_SECTION
494 b do_hash_page /* Try to handle as hpte fault */
495MMU_FTR_SECTION_ELSE
496 b handle_page_fault
497ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
498
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000499
Michael Ellermanda2bc462016-09-30 19:43:18 +1000500EXC_REAL_BEGIN(data_access_slb, 0x380, 0x400)
Paul Mackerras673b1892011-04-05 13:59:58 +1000501 SET_SCRATCH0(r13)
Paul Mackerras1707dd12013-02-04 18:10:15 +0000502 EXCEPTION_PROLOG_0(PACA_EXSLB)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000503 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x380)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000504 std r3,PACA_EXSLB+EX_R3(r13)
505 mfspr r3,SPRN_DAR
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000506 mfspr r12,SPRN_SRR1
Paul Mackerrasf0f558b2016-09-02 21:49:21 +1000507 crset 4*cr6+eq
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000508#ifndef CONFIG_RELOCATABLE
Anton Blanchardb1576fe2014-02-04 16:04:35 +1100509 b slb_miss_realmode
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000510#else
511 /*
Anton Blanchardad0289e2014-02-04 16:04:52 +1100512 * We can't just use a direct branch to slb_miss_realmode
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000513 * because the distance from here to there depends on where
514 * the kernel ends up being put.
515 */
516 mfctr r11
Anton Blanchardad0289e2014-02-04 16:04:52 +1100517 LOAD_HANDLER(r10, slb_miss_realmode)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000518 mtctr r10
519 bctr
520#endif
Michael Ellermanda2bc462016-09-30 19:43:18 +1000521EXC_REAL_END(data_access_slb, 0x380, 0x400)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000522
Nicholas Piggin2b9af6e2016-09-21 17:43:33 +1000523EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x4400)
524 SET_SCRATCH0(r13)
525 EXCEPTION_PROLOG_0(PACA_EXSLB)
526 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
527 std r3,PACA_EXSLB+EX_R3(r13)
528 mfspr r3,SPRN_DAR
529 mfspr r12,SPRN_SRR1
530 crset 4*cr6+eq
531#ifndef CONFIG_RELOCATABLE
532 b slb_miss_realmode
533#else
534 /*
535 * We can't just use a direct branch to slb_miss_realmode
536 * because the distance from here to there depends on where
537 * the kernel ends up being put.
538 */
539 mfctr r11
540 LOAD_HANDLER(r10, slb_miss_realmode)
541 mtctr r10
542 bctr
543#endif
544EXC_VIRT_END(data_access_slb, 0x4380, 0x4400)
545TRAMP_KVM_SKIP(PACA_EXSLB, 0x380)
546
547
Michael Ellermanda2bc462016-09-30 19:43:18 +1000548EXC_REAL(instruction_access, 0x400, 0x480)
Nicholas Piggin27ce77d2016-09-21 17:43:34 +1000549EXC_VIRT(instruction_access, 0x4400, 0x4480, 0x400)
550TRAMP_KVM(PACA_EXGEN, 0x400)
551
552EXC_COMMON_BEGIN(instruction_access_common)
553 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
554 RECONCILE_IRQ_STATE(r10, r11)
555 ld r12,_MSR(r1)
556 ld r3,_NIP(r1)
557 andis. r4,r12,0x5820
558 li r5,0x400
559 std r3,_DAR(r1)
560 std r4,_DSISR(r1)
561BEGIN_MMU_FTR_SECTION
562 b do_hash_page /* Try to handle as hpte fault */
563MMU_FTR_SECTION_ELSE
564 b handle_page_fault
565ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
566
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000567
Michael Ellermanda2bc462016-09-30 19:43:18 +1000568EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x500)
Paul Mackerras673b1892011-04-05 13:59:58 +1000569 SET_SCRATCH0(r13)
Paul Mackerras1707dd12013-02-04 18:10:15 +0000570 EXCEPTION_PROLOG_0(PACA_EXSLB)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000571 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000572 std r3,PACA_EXSLB+EX_R3(r13)
573 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000574 mfspr r12,SPRN_SRR1
Paul Mackerrasf0f558b2016-09-02 21:49:21 +1000575 crclr 4*cr6+eq
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000576#ifndef CONFIG_RELOCATABLE
Anton Blanchardb1576fe2014-02-04 16:04:35 +1100577 b slb_miss_realmode
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000578#else
579 mfctr r11
Anton Blanchardad0289e2014-02-04 16:04:52 +1100580 LOAD_HANDLER(r10, slb_miss_realmode)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000581 mtctr r10
582 bctr
583#endif
Michael Ellermanda2bc462016-09-30 19:43:18 +1000584EXC_REAL_END(instruction_access_slb, 0x480, 0x500)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000585
Nicholas Piggin8d046312016-09-21 17:43:35 +1000586EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x4500)
587 SET_SCRATCH0(r13)
588 EXCEPTION_PROLOG_0(PACA_EXSLB)
589 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
590 std r3,PACA_EXSLB+EX_R3(r13)
591 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
592 mfspr r12,SPRN_SRR1
593 crclr 4*cr6+eq
594#ifndef CONFIG_RELOCATABLE
595 b slb_miss_realmode
596#else
597 mfctr r11
598 LOAD_HANDLER(r10, slb_miss_realmode)
599 mtctr r10
600 bctr
601#endif
602EXC_VIRT_END(instruction_access_slb, 0x4480, 0x4500)
603TRAMP_KVM(PACA_EXSLB, 0x480)
604
605
606/* This handler is used by both 0x380 and 0x480 slb miss interrupts */
607EXC_COMMON_BEGIN(slb_miss_realmode)
608 /*
609 * r13 points to the PACA, r9 contains the saved CR,
610 * r12 contain the saved SRR1, SRR0 is still ready for return
611 * r3 has the faulting address
612 * r9 - r13 are saved in paca->exslb.
613 * r3 is saved in paca->slb_r3
614 * cr6.eq is set for a D-SLB miss, clear for a I-SLB miss
615 * We assume we aren't going to take any exceptions during this
616 * procedure.
617 */
618 mflr r10
619#ifdef CONFIG_RELOCATABLE
620 mtctr r11
621#endif
622
623 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
624 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
625 std r3,PACA_EXSLB+EX_DAR(r13)
626
627 crset 4*cr0+eq
628#ifdef CONFIG_PPC_STD_MMU_64
629BEGIN_MMU_FTR_SECTION
630 bl slb_allocate_realmode
631END_MMU_FTR_SECTION_IFCLR(MMU_FTR_TYPE_RADIX)
632#endif
633
634 ld r10,PACA_EXSLB+EX_LR(r13)
635 ld r3,PACA_EXSLB+EX_R3(r13)
636 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
637 mtlr r10
638
639 beq 8f /* if bad address, make full stack frame */
640
641 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
642 beq- 2f
643
644 /* All done -- return from exception. */
645
646.machine push
647.machine "power4"
648 mtcrf 0x80,r9
649 mtcrf 0x02,r9 /* I/D indication is in cr6 */
650 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
651.machine pop
652
653 RESTORE_PPR_PACA(PACA_EXSLB, r9)
654 ld r9,PACA_EXSLB+EX_R9(r13)
655 ld r10,PACA_EXSLB+EX_R10(r13)
656 ld r11,PACA_EXSLB+EX_R11(r13)
657 ld r12,PACA_EXSLB+EX_R12(r13)
658 ld r13,PACA_EXSLB+EX_R13(r13)
659 rfid
660 b . /* prevent speculative execution */
661
6622: mfspr r11,SPRN_SRR0
663 LOAD_HANDLER(r10,unrecov_slb)
664 mtspr SPRN_SRR0,r10
665 ld r10,PACAKMSR(r13)
666 mtspr SPRN_SRR1,r10
667 rfid
668 b .
669
6708: mfspr r11,SPRN_SRR0
671 LOAD_HANDLER(r10,bad_addr_slb)
672 mtspr SPRN_SRR0,r10
673 ld r10,PACAKMSR(r13)
674 mtspr SPRN_SRR1,r10
675 rfid
676 b .
677
678EXC_COMMON_BEGIN(unrecov_slb)
679 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
680 RECONCILE_IRQ_STATE(r10, r11)
681 bl save_nvgprs
6821: addi r3,r1,STACK_FRAME_OVERHEAD
683 bl unrecoverable_exception
684 b 1b
685
686EXC_COMMON_BEGIN(bad_addr_slb)
687 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXSLB)
688 RECONCILE_IRQ_STATE(r10, r11)
689 ld r3, PACA_EXSLB+EX_DAR(r13)
690 std r3, _DAR(r1)
691 beq cr6, 2f
692 li r10, 0x480 /* fix trap number for I-SLB miss */
693 std r10, _TRAP(r1)
6942: bl save_nvgprs
695 addi r3, r1, STACK_FRAME_OVERHEAD
696 bl slb_miss_bad_addr
697 b ret_from_except
698
Michael Ellermanda2bc462016-09-30 19:43:18 +1000699EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x600)
Benjamin Herrenschmidtb3e6b5d2011-04-05 14:27:11 +1000700 .globl hardware_interrupt_hv;
Benjamin Herrenschmidtb3e6b5d2011-04-05 14:27:11 +1000701hardware_interrupt_hv:
Benjamin Herrenschmidta5d4f3a2011-04-05 14:20:31 +1000702 BEGIN_FTR_SECTION
Michael Ellermanda2bc462016-09-30 19:43:18 +1000703 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000704 EXC_HV, SOFTEN_TEST_HV)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000705do_kvm_H0x500:
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000706 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x502)
Paul Mackerrasde56a942011-06-29 00:21:34 +0000707 FTR_SECTION_ELSE
Michael Ellermanda2bc462016-09-30 19:43:18 +1000708 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt_common,
Paul Mackerras31a40e22015-11-12 16:44:42 +1100709 EXC_STD, SOFTEN_TEST_PR)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000710do_kvm_0x500:
Paul Mackerrasde56a942011-06-29 00:21:34 +0000711 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0x500)
Paul Mackerras969391c2011-06-29 00:26:11 +0000712 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000713EXC_REAL_END(hardware_interrupt, 0x500, 0x600)
Benjamin Herrenschmidta5d4f3a2011-04-05 14:20:31 +1000714
Nicholas Pigginc138e582016-09-21 17:43:36 +1000715EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x4600)
716 .globl hardware_interrupt_relon_hv;
717hardware_interrupt_relon_hv:
718 BEGIN_FTR_SECTION
719 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_HV, SOFTEN_TEST_HV)
720 FTR_SECTION_ELSE
721 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt_common, EXC_STD, SOFTEN_TEST_PR)
722 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
723EXC_VIRT_END(hardware_interrupt, 0x4500, 0x4600)
724
725EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
726
727
Michael Ellermanda2bc462016-09-30 19:43:18 +1000728EXC_REAL(alignment, 0x600, 0x700)
Nicholas Pigginf9aa6712016-09-21 17:43:37 +1000729EXC_VIRT(alignment, 0x4600, 0x4700, 0x600)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000730TRAMP_KVM(PACA_EXGEN, 0x600)
Nicholas Pigginf9aa6712016-09-21 17:43:37 +1000731EXC_COMMON_BEGIN(alignment_common)
732 mfspr r10,SPRN_DAR
733 std r10,PACA_EXGEN+EX_DAR(r13)
734 mfspr r10,SPRN_DSISR
735 stw r10,PACA_EXGEN+EX_DSISR(r13)
736 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
737 ld r3,PACA_EXGEN+EX_DAR(r13)
738 lwz r4,PACA_EXGEN+EX_DSISR(r13)
739 std r3,_DAR(r1)
740 std r4,_DSISR(r1)
741 bl save_nvgprs
742 RECONCILE_IRQ_STATE(r10, r11)
743 addi r3,r1,STACK_FRAME_OVERHEAD
744 bl alignment_exception
745 b ret_from_except
746
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000747
Michael Ellermanda2bc462016-09-30 19:43:18 +1000748EXC_REAL(program_check, 0x700, 0x800)
Nicholas Piggin11e87342016-09-21 17:43:38 +1000749EXC_VIRT(program_check, 0x4700, 0x4800, 0x700)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000750TRAMP_KVM(PACA_EXGEN, 0x700)
Nicholas Piggin11e87342016-09-21 17:43:38 +1000751EXC_COMMON_BEGIN(program_check_common)
752 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
753 bl save_nvgprs
754 RECONCILE_IRQ_STATE(r10, r11)
755 addi r3,r1,STACK_FRAME_OVERHEAD
756 bl program_check_exception
757 b ret_from_except
758
Paul Mackerrasa485c702013-04-25 17:51:40 +0000759
Michael Ellermanda2bc462016-09-30 19:43:18 +1000760EXC_REAL(fp_unavailable, 0x800, 0x900)
Nicholas Pigginc78d9b92016-09-21 17:43:39 +1000761EXC_VIRT(fp_unavailable, 0x4800, 0x4900, 0x800)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000762TRAMP_KVM(PACA_EXGEN, 0x800)
Nicholas Pigginc78d9b92016-09-21 17:43:39 +1000763EXC_COMMON_BEGIN(fp_unavailable_common)
764 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
765 bne 1f /* if from user, just load it up */
766 bl save_nvgprs
767 RECONCILE_IRQ_STATE(r10, r11)
768 addi r3,r1,STACK_FRAME_OVERHEAD
769 bl kernel_fp_unavailable_exception
770 BUG_OPCODE
7711:
772#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
773BEGIN_FTR_SECTION
774 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
775 * transaction), go do TM stuff
776 */
777 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
778 bne- 2f
779END_FTR_SECTION_IFSET(CPU_FTR_TM)
780#endif
781 bl load_up_fpu
782 b fast_exception_return
783#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
7842: /* User process was in a transaction */
785 bl save_nvgprs
786 RECONCILE_IRQ_STATE(r10, r11)
787 addi r3,r1,STACK_FRAME_OVERHEAD
788 bl fp_unavailable_tm
789 b ret_from_except
790#endif
791
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000792
Michael Ellermanda2bc462016-09-30 19:43:18 +1000793EXC_REAL_MASKABLE(decrementer, 0x900, 0x980)
Nicholas Piggin39c0da52016-09-21 17:43:40 +1000794EXC_VIRT_MASKABLE(decrementer, 0x4900, 0x4980, 0x900)
795TRAMP_KVM(PACA_EXGEN, 0x900)
796EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
797
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +0000798
Michael Ellermanda2bc462016-09-30 19:43:18 +1000799EXC_REAL_HV(hdecrementer, 0x980, 0xa00)
Nicholas Pigginfacc6d72016-09-21 17:43:41 +1000800EXC_VIRT_HV(hdecrementer, 0x4980, 0x4a00, 0x980)
801TRAMP_KVM_HV(PACA_EXGEN, 0x980)
802EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
803
Michael Ellermanda2bc462016-09-30 19:43:18 +1000804
805EXC_REAL_MASKABLE(doorbell_super, 0xa00, 0xb00)
Nicholas Pigginca243162016-09-21 17:43:42 +1000806EXC_VIRT_MASKABLE(doorbell_super, 0x4a00, 0x4b00, 0xa00)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000807TRAMP_KVM(PACA_EXGEN, 0xa00)
Nicholas Pigginca243162016-09-21 17:43:42 +1000808#ifdef CONFIG_PPC_DOORBELL
809EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
810#else
811EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
812#endif
813
Michael Ellermanda2bc462016-09-30 19:43:18 +1000814
815EXC_REAL(trap_0b, 0xb00, 0xc00)
Nicholas Piggin341215d2016-09-21 17:43:43 +1000816EXC_VIRT(trap_0b, 0x4b00, 0x4c00, 0xb00)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000817TRAMP_KVM(PACA_EXGEN, 0xb00)
Nicholas Piggin341215d2016-09-21 17:43:43 +1000818EXC_COMMON(trap_0b_common, 0xb00, unknown_exception)
819
Michael Ellermanda2bc462016-09-30 19:43:18 +1000820
Nicholas Piggind807ad32016-09-21 17:43:44 +1000821#define LOAD_SYSCALL_HANDLER(reg) \
822 ld reg,PACAKBASE(r13); \
823 ori reg,reg,(ABS_ADDR(system_call_common))@l;
824
825/* Syscall routine is used twice, in reloc-off and reloc-on paths */
826#define SYSCALL_PSERIES_1 \
827BEGIN_FTR_SECTION \
828 cmpdi r0,0x1ebe ; \
829 beq- 1f ; \
830END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
831 mr r9,r13 ; \
832 GET_PACA(r13) ; \
833 mfspr r11,SPRN_SRR0 ; \
8340:
835
836#define SYSCALL_PSERIES_2_RFID \
837 mfspr r12,SPRN_SRR1 ; \
838 LOAD_SYSCALL_HANDLER(r10) ; \
839 mtspr SPRN_SRR0,r10 ; \
840 ld r10,PACAKMSR(r13) ; \
841 mtspr SPRN_SRR1,r10 ; \
842 rfid ; \
843 b . ; /* prevent speculative execution */
844
845#define SYSCALL_PSERIES_3 \
846 /* Fast LE/BE switch system call */ \
8471: mfspr r12,SPRN_SRR1 ; \
848 xori r12,r12,MSR_LE ; \
849 mtspr SPRN_SRR1,r12 ; \
850 rfid ; /* return to userspace */ \
851 b . ; /* prevent speculative execution */
852
853#if defined(CONFIG_RELOCATABLE)
854 /*
855 * We can't branch directly so we do it via the CTR which
856 * is volatile across system calls.
857 */
858#define SYSCALL_PSERIES_2_DIRECT \
859 LOAD_SYSCALL_HANDLER(r12) ; \
860 mtctr r12 ; \
861 mfspr r12,SPRN_SRR1 ; \
862 li r10,MSR_RI ; \
863 mtmsrd r10,1 ; \
864 bctr ;
865#else
866 /* We can branch directly */
867#define SYSCALL_PSERIES_2_DIRECT \
868 mfspr r12,SPRN_SRR1 ; \
869 li r10,MSR_RI ; \
870 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
871 b system_call_common ;
872#endif
873
Michael Ellermanda2bc462016-09-30 19:43:18 +1000874EXC_REAL_BEGIN(system_call, 0xc00, 0xd00)
Suresh E. Warrier8b91a252014-11-03 15:46:42 +1100875 /*
876 * If CONFIG_KVM_BOOK3S_64_HANDLER is set, save the PPR (on systems
877 * that support it) before changing to HMT_MEDIUM. That allows the KVM
878 * code to save that value into the guest state (it is the guest's PPR
879 * value). Otherwise just change to HMT_MEDIUM as userspace has
880 * already saved the PPR.
881 */
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000882#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
883 SET_SCRATCH0(r13)
884 GET_PACA(r13)
885 std r9,PACA_EXGEN+EX_R9(r13)
Suresh E. Warrier8b91a252014-11-03 15:46:42 +1100886 OPT_GET_SPR(r9, SPRN_PPR, CPU_FTR_HAS_PPR);
887 HMT_MEDIUM;
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000888 std r10,PACA_EXGEN+EX_R10(r13)
Suresh E. Warrier8b91a252014-11-03 15:46:42 +1100889 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r9, CPU_FTR_HAS_PPR);
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000890 mfcr r9
Michael Ellermanda2bc462016-09-30 19:43:18 +1000891 KVMTEST_PR(0xc00)
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000892 GET_SCRATCH0(r13)
Suresh E. Warrier8b91a252014-11-03 15:46:42 +1100893#else
894 HMT_MEDIUM;
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000895#endif
Michael Neuling742415d2012-11-02 17:16:01 +1100896 SYSCALL_PSERIES_1
897 SYSCALL_PSERIES_2_RFID
898 SYSCALL_PSERIES_3
Michael Ellermanda2bc462016-09-30 19:43:18 +1000899EXC_REAL_END(system_call, 0xc00, 0xd00)
Paul Mackerrasb01c8b52011-06-29 00:18:26 +0000900
Nicholas Piggind807ad32016-09-21 17:43:44 +1000901EXC_VIRT_BEGIN(system_call, 0x4c00, 0x4d00)
902 HMT_MEDIUM
903 SYSCALL_PSERIES_1
904 SYSCALL_PSERIES_2_DIRECT
905 SYSCALL_PSERIES_3
906EXC_VIRT_END(system_call, 0x4c00, 0x4d00)
907
Michael Ellermanda2bc462016-09-30 19:43:18 +1000908TRAMP_KVM(PACA_EXGEN, 0xc00)
909
Nicholas Piggind807ad32016-09-21 17:43:44 +1000910
Michael Ellermanda2bc462016-09-30 19:43:18 +1000911EXC_REAL(single_step, 0xd00, 0xe00)
Nicholas Pigginbc6675c2016-09-21 17:43:45 +1000912EXC_VIRT(single_step, 0x4d00, 0x4e00, 0xd00)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000913TRAMP_KVM(PACA_EXGEN, 0xd00)
Nicholas Pigginbc6675c2016-09-21 17:43:45 +1000914EXC_COMMON(single_step_common, 0xd00, single_step_exception)
Michael Ellermanda2bc462016-09-30 19:43:18 +1000915
Nicholas Piggina33532a2016-09-21 17:44:06 +1000916EXC_REAL_OOL_HV(h_data_storage, 0xe00, 0xe20)
Nicholas Piggine0319822016-09-21 17:44:07 +1000917EXC_VIRT_NONE(0x4e00, 0x4e20)
Nicholas Pigginf5c32c12016-09-21 17:43:46 +1000918TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0xe00)
919EXC_COMMON_BEGIN(h_data_storage_common)
920 mfspr r10,SPRN_HDAR
921 std r10,PACA_EXGEN+EX_DAR(r13)
922 mfspr r10,SPRN_HDSISR
923 stw r10,PACA_EXGEN+EX_DSISR(r13)
924 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
925 bl save_nvgprs
926 RECONCILE_IRQ_STATE(r10, r11)
927 addi r3,r1,STACK_FRAME_OVERHEAD
928 bl unknown_exception
929 b ret_from_except
Nicholas Pigginf5c32c12016-09-21 17:43:46 +1000930
Paul Mackerras1707dd12013-02-04 18:10:15 +0000931
Nicholas Piggina33532a2016-09-21 17:44:06 +1000932EXC_REAL_OOL_HV(h_instr_storage, 0xe20, 0xe40)
Nicholas Piggine0319822016-09-21 17:44:07 +1000933EXC_VIRT_NONE(0x4e20, 0x4e40)
Nicholas Piggin82517ca2016-09-21 17:43:47 +1000934TRAMP_KVM_HV(PACA_EXGEN, 0xe20)
935EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
936
Paul Mackerras1707dd12013-02-04 18:10:15 +0000937
Nicholas Piggina33532a2016-09-21 17:44:06 +1000938EXC_REAL_OOL_HV(emulation_assist, 0xe40, 0xe60)
939EXC_VIRT_OOL_HV(emulation_assist, 0x4e40, 0x4e60, 0xe40)
Nicholas Piggin031b4022016-09-21 17:43:48 +1000940TRAMP_KVM_HV(PACA_EXGEN, 0xe40)
941EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
942
Paul Mackerras1707dd12013-02-04 18:10:15 +0000943
Nicholas Piggine0319822016-09-21 17:44:07 +1000944/*
945 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
946 * first, and then eventaully from there to the trampoline to get into virtual
947 * mode.
948 */
Michael Ellermanda2bc462016-09-30 19:43:18 +1000949__EXC_REAL_OOL_HV_DIRECT(hmi_exception, 0xe60, 0xe80, hmi_exception_early)
Nicholas Piggin62f9b032016-09-21 17:43:49 +1000950__TRAMP_REAL_REAL_OOL_MASKABLE_HV(hmi_exception, 0xe60)
Nicholas Piggine0319822016-09-21 17:44:07 +1000951EXC_VIRT_NONE(0x4e60, 0x4e80)
Nicholas Piggin62f9b032016-09-21 17:43:49 +1000952TRAMP_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
Paul Mackerras1707dd12013-02-04 18:10:15 +00001004
Nicholas Piggina33532a2016-09-21 17:44:06 +10001005EXC_REAL_OOL_MASKABLE_HV(h_doorbell, 0xe80, 0xea0)
1006EXC_VIRT_OOL_MASKABLE_HV(h_doorbell, 0x4e80, 0x4ea0, 0xe80)
Nicholas Piggin9bcb81b2016-09-21 17:43:50 +10001007TRAMP_KVM_HV(PACA_EXGEN, 0xe80)
1008#ifdef CONFIG_PPC_DOORBELL
1009EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1010#else
1011EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1012#endif
1013
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001014
Nicholas Piggina33532a2016-09-21 17:44:06 +10001015EXC_REAL_OOL_MASKABLE_HV(h_virt_irq, 0xea0, 0xec0)
1016EXC_VIRT_OOL_MASKABLE_HV(h_virt_irq, 0x4ea0, 0x4ec0, 0xea0)
Nicholas Piggin74408772016-09-21 17:43:51 +10001017TRAMP_KVM_HV(PACA_EXGEN, 0xea0)
1018EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1019
Benjamin Herrenschmidt9baaef0a2016-07-08 16:37:06 +10001020
Michael Ellermanda2bc462016-09-30 19:43:18 +10001021EXC_REAL_NONE(0xec0, 0xf00)
Nicholas Pigginbda7fea2016-09-21 17:43:52 +10001022EXC_VIRT_NONE(0x4ec0, 0x4f00)
1023
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001024
Nicholas Piggina33532a2016-09-21 17:44:06 +10001025EXC_REAL_OOL(performance_monitor, 0xf00, 0xf20)
1026EXC_VIRT_OOL(performance_monitor, 0x4f00, 0x4f20, 0xf00)
Nicholas Pigginb1c7f152016-09-21 17:43:53 +10001027TRAMP_KVM(PACA_EXGEN, 0xf00)
1028EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1029
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001030
Nicholas Piggina33532a2016-09-21 17:44:06 +10001031EXC_REAL_OOL(altivec_unavailable, 0xf20, 0xf40)
1032EXC_VIRT_OOL(altivec_unavailable, 0x4f20, 0x4f40, 0xf20)
Nicholas Piggind1a0ca92016-09-21 17:43:54 +10001033TRAMP_KVM(PACA_EXGEN, 0xf20)
1034EXC_COMMON_BEGIN(altivec_unavailable_common)
1035 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1036#ifdef CONFIG_ALTIVEC
1037BEGIN_FTR_SECTION
1038 beq 1f
1039#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1040 BEGIN_FTR_SECTION_NESTED(69)
1041 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1042 * transaction), go do TM stuff
1043 */
1044 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1045 bne- 2f
1046 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1047#endif
1048 bl load_up_altivec
1049 b fast_exception_return
1050#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
10512: /* User process was in a transaction */
1052 bl save_nvgprs
1053 RECONCILE_IRQ_STATE(r10, r11)
1054 addi r3,r1,STACK_FRAME_OVERHEAD
1055 bl altivec_unavailable_tm
1056 b ret_from_except
1057#endif
10581:
1059END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1060#endif
1061 bl save_nvgprs
1062 RECONCILE_IRQ_STATE(r10, r11)
1063 addi r3,r1,STACK_FRAME_OVERHEAD
1064 bl altivec_unavailable_exception
1065 b ret_from_except
1066
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001067
Nicholas Piggina33532a2016-09-21 17:44:06 +10001068EXC_REAL_OOL(vsx_unavailable, 0xf40, 0xf60)
1069EXC_VIRT_OOL(vsx_unavailable, 0x4f40, 0x4f60, 0xf40)
Nicholas Piggin792cbdd2016-09-21 17:43:55 +10001070TRAMP_KVM(PACA_EXGEN, 0xf40)
1071EXC_COMMON_BEGIN(vsx_unavailable_common)
1072 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1073#ifdef CONFIG_VSX
1074BEGIN_FTR_SECTION
1075 beq 1f
1076#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1077 BEGIN_FTR_SECTION_NESTED(69)
1078 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1079 * transaction), go do TM stuff
1080 */
1081 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1082 bne- 2f
1083 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1084#endif
1085 b load_up_vsx
1086#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
10872: /* User process was in a transaction */
1088 bl save_nvgprs
1089 RECONCILE_IRQ_STATE(r10, r11)
1090 addi r3,r1,STACK_FRAME_OVERHEAD
1091 bl vsx_unavailable_tm
1092 b ret_from_except
1093#endif
10941:
1095END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1096#endif
1097 bl save_nvgprs
1098 RECONCILE_IRQ_STATE(r10, r11)
1099 addi r3,r1,STACK_FRAME_OVERHEAD
1100 bl vsx_unavailable_exception
1101 b ret_from_except
1102
Michael Neulingd0c0c9a2013-02-13 16:21:38 +00001103
Nicholas Piggina33532a2016-09-21 17:44:06 +10001104EXC_REAL_OOL(facility_unavailable, 0xf60, 0xf80)
1105EXC_VIRT_OOL(facility_unavailable, 0x4f60, 0x4f80, 0xf60)
Nicholas Piggin11347132016-09-21 17:43:56 +10001106TRAMP_KVM(PACA_EXGEN, 0xf60)
1107EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1108
Michael Ellermanda2bc462016-09-30 19:43:18 +10001109
Nicholas Piggina33532a2016-09-21 17:44:06 +10001110EXC_REAL_OOL_HV(h_facility_unavailable, 0xf80, 0xfa0)
1111EXC_VIRT_OOL_HV(h_facility_unavailable, 0x4f80, 0x4fa0, 0xf80)
Nicholas Piggin14b00722016-09-21 17:43:57 +10001112TRAMP_KVM_HV(PACA_EXGEN, 0xf80)
1113EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1114
Michael Ellermanda2bc462016-09-30 19:43:18 +10001115
1116EXC_REAL_NONE(0xfa0, 0x1200)
Nicholas Piggine46b9642016-09-21 17:43:58 +10001117EXC_VIRT_NONE(0x4fa0, 0x5200)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001118
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001119#ifdef CONFIG_CBE_RAS
Michael Ellermanda2bc462016-09-30 19:43:18 +10001120EXC_REAL_HV(cbe_system_error, 0x1200, 0x1300)
Nicholas Pigginff1b3202016-09-21 17:43:59 +10001121EXC_VIRT_NONE(0x5200, 0x5300)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001122TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1200)
Nicholas Pigginff1b3202016-09-21 17:43:59 +10001123EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001124#else /* CONFIG_CBE_RAS */
1125EXC_REAL_NONE(0x1200, 0x1300)
Nicholas Piggine0319822016-09-21 17:44:07 +10001126EXC_VIRT_NONE(0x5200, 0x5300)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001127#endif
1128
Nicholas Pigginff1b3202016-09-21 17:43:59 +10001129
Michael Ellermanda2bc462016-09-30 19:43:18 +10001130EXC_REAL(instruction_breakpoint, 0x1300, 0x1400)
Nicholas Piggin4e96dbb2016-09-21 17:44:00 +10001131EXC_VIRT(instruction_breakpoint, 0x5300, 0x5400, 0x1300)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001132TRAMP_KVM_SKIP(PACA_EXGEN, 0x1300)
Nicholas Piggin4e96dbb2016-09-21 17:44:00 +10001133EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1134
Nicholas Piggine0319822016-09-21 17:44:07 +10001135EXC_REAL_NONE(0x1400, 0x1500)
1136EXC_VIRT_NONE(0x5400, 0x5500)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001137
1138EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x1600)
Michael Neulingb92a66a2012-09-10 00:35:26 +00001139 mtspr SPRN_SPRG_HSCRATCH0,r13
Paul Mackerras1707dd12013-02-04 18:10:15 +00001140 EXCEPTION_PROLOG_0(PACA_EXGEN)
Paul Mackerras630573c2013-08-12 16:12:06 +10001141 EXCEPTION_PROLOG_1(PACA_EXGEN, NOTEST, 0x1500)
Michael Neulingb92a66a2012-09-10 00:35:26 +00001142
1143#ifdef CONFIG_PPC_DENORMALISATION
1144 mfspr r10,SPRN_HSRR1
1145 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
1146 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1147 addi r11,r11,-4 /* HSRR0 is next instruction */
1148 bne+ denorm_assist
1149#endif
1150
Michael Ellermanda2bc462016-09-30 19:43:18 +10001151 KVMTEST_PR(0x1500)
Michael Neulingb92a66a2012-09-10 00:35:26 +00001152 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
Michael Ellermanda2bc462016-09-30 19:43:18 +10001153EXC_REAL_END(denorm_exception_hv, 0x1500, 0x1600)
1154
Nicholas Piggind7e89842016-09-21 17:44:01 +10001155#ifdef CONFIG_PPC_DENORMALISATION
1156EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x5600)
1157 b exc_real_0x1500_denorm_exception_hv
1158EXC_VIRT_END(denorm_exception, 0x5500, 0x5600)
1159#else
1160EXC_VIRT_NONE(0x5500, 0x5600)
1161#endif
1162
Michael Ellermanda2bc462016-09-30 19:43:18 +10001163TRAMP_KVM_SKIP(PACA_EXGEN, 0x1500)
Michael Neulingb92a66a2012-09-10 00:35:26 +00001164
Michael Neulingb92a66a2012-09-10 00:35:26 +00001165#ifdef CONFIG_PPC_DENORMALISATION
Michael Ellermanda2bc462016-09-30 19:43:18 +10001166TRAMP_REAL_BEGIN(denorm_assist)
Michael Neulingb92a66a2012-09-10 00:35:26 +00001167BEGIN_FTR_SECTION
1168/*
1169 * To denormalise we need to move a copy of the register to itself.
1170 * For POWER6 do that here for all FP regs.
1171 */
1172 mfmsr r10
1173 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1174 xori r10,r10,(MSR_FE0|MSR_FE1)
1175 mtmsrd r10
1176 sync
Michael Neulingd7c67fb2013-05-29 21:33:18 +00001177
1178#define FMR2(n) fmr (n), (n) ; fmr n+1, n+1
1179#define FMR4(n) FMR2(n) ; FMR2(n+2)
1180#define FMR8(n) FMR4(n) ; FMR4(n+4)
1181#define FMR16(n) FMR8(n) ; FMR8(n+8)
1182#define FMR32(n) FMR16(n) ; FMR16(n+16)
1183 FMR32(0)
1184
Michael Neulingb92a66a2012-09-10 00:35:26 +00001185FTR_SECTION_ELSE
1186/*
1187 * To denormalise we need to move a copy of the register to itself.
1188 * For POWER7 do that here for the first 32 VSX registers only.
1189 */
1190 mfmsr r10
1191 oris r10,r10,MSR_VSX@h
1192 mtmsrd r10
1193 sync
Michael Neulingd7c67fb2013-05-29 21:33:18 +00001194
1195#define XVCPSGNDP2(n) XVCPSGNDP(n,n,n) ; XVCPSGNDP(n+1,n+1,n+1)
1196#define XVCPSGNDP4(n) XVCPSGNDP2(n) ; XVCPSGNDP2(n+2)
1197#define XVCPSGNDP8(n) XVCPSGNDP4(n) ; XVCPSGNDP4(n+4)
1198#define XVCPSGNDP16(n) XVCPSGNDP8(n) ; XVCPSGNDP8(n+8)
1199#define XVCPSGNDP32(n) XVCPSGNDP16(n) ; XVCPSGNDP16(n+16)
1200 XVCPSGNDP32(0)
1201
Michael Neulingb92a66a2012-09-10 00:35:26 +00001202ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
Michael Neulingfb0fce32013-05-29 21:33:19 +00001203
1204BEGIN_FTR_SECTION
1205 b denorm_done
1206END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1207/*
1208 * To denormalise we need to move a copy of the register to itself.
1209 * For POWER8 we need to do that for all 64 VSX registers
1210 */
1211 XVCPSGNDP32(32)
1212denorm_done:
Michael Neulingb92a66a2012-09-10 00:35:26 +00001213 mtspr SPRN_HSRR0,r11
1214 mtcrf 0x80,r9
1215 ld r9,PACA_EXGEN+EX_R9(r13)
Haren Myneni44e93092012-12-06 21:51:04 +00001216 RESTORE_PPR_PACA(PACA_EXGEN, r10)
Paul Mackerras630573c2013-08-12 16:12:06 +10001217BEGIN_FTR_SECTION
1218 ld r10,PACA_EXGEN+EX_CFAR(r13)
1219 mtspr SPRN_CFAR,r10
1220END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
Michael Neulingb92a66a2012-09-10 00:35:26 +00001221 ld r10,PACA_EXGEN+EX_R10(r13)
1222 ld r11,PACA_EXGEN+EX_R11(r13)
1223 ld r12,PACA_EXGEN+EX_R12(r13)
1224 ld r13,PACA_EXGEN+EX_R13(r13)
1225 HRFID
1226 b .
1227#endif
1228
Nicholas Piggind7e89842016-09-21 17:44:01 +10001229EXC_COMMON_HV(denorm_common, 0x1500, unknown_exception)
1230
1231
1232#ifdef CONFIG_CBE_RAS
1233EXC_REAL_HV(cbe_maintenance, 0x1600, 0x1700)
Nicholas Piggin69a79342016-09-21 17:44:02 +10001234EXC_VIRT_NONE(0x5600, 0x5700)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001235TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1600)
Nicholas Piggin69a79342016-09-21 17:44:02 +10001236EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001237#else /* CONFIG_CBE_RAS */
1238EXC_REAL_NONE(0x1600, 0x1700)
Nicholas Piggine0319822016-09-21 17:44:07 +10001239EXC_VIRT_NONE(0x5600, 0x5700)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001240#endif
1241
Nicholas Piggin69a79342016-09-21 17:44:02 +10001242
Nicholas Piggind7e89842016-09-21 17:44:01 +10001243EXC_REAL(altivec_assist, 0x1700, 0x1800)
Nicholas Pigginb51c0792016-09-21 17:44:03 +10001244EXC_VIRT(altivec_assist, 0x5700, 0x5800, 0x1700)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001245TRAMP_KVM(PACA_EXGEN, 0x1700)
Nicholas Pigginb51c0792016-09-21 17:44:03 +10001246#ifdef CONFIG_ALTIVEC
1247EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1248#else
1249EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1250#endif
1251
Nicholas Piggind7e89842016-09-21 17:44:01 +10001252
1253#ifdef CONFIG_CBE_RAS
1254EXC_REAL_HV(cbe_thermal, 0x1800, 0x1900)
Nicholas Piggin3965f8a2016-09-21 17:44:04 +10001255EXC_VIRT_NONE(0x5800, 0x5900)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001256TRAMP_KVM_HV_SKIP(PACA_EXGEN, 0x1800)
Nicholas Piggin3965f8a2016-09-21 17:44:04 +10001257EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001258#else /* CONFIG_CBE_RAS */
1259EXC_REAL_NONE(0x1800, 0x1900)
Nicholas Piggine0319822016-09-21 17:44:07 +10001260EXC_VIRT_NONE(0x5800, 0x5900)
Nicholas Piggind7e89842016-09-21 17:44:01 +10001261#endif
1262
1263
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001264/*
Ian Munsiefe9e1d52012-11-14 18:49:48 +00001265 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1266 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1267 * - If it was a doorbell we return immediately since doorbells are edge
1268 * triggered and won't automatically refire.
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +05301269 * - If it was a HMI we return immediately since we handled it in realmode
1270 * and it won't refire.
Ian Munsiefe9e1d52012-11-14 18:49:48 +00001271 * - else we hard disable and return.
1272 * This is called with r10 containing the value to OR to the paca field.
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001273 */
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001274#define MASKED_INTERRUPT(_H) \
1275masked_##_H##interrupt: \
1276 std r11,PACA_EXGEN+EX_R11(r13); \
1277 lbz r11,PACAIRQHAPPENED(r13); \
1278 or r11,r11,r10; \
1279 stb r11,PACAIRQHAPPENED(r13); \
Ian Munsiefe9e1d52012-11-14 18:49:48 +00001280 cmpwi r10,PACA_IRQ_DEC; \
1281 bne 1f; \
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001282 lis r10,0x7fff; \
1283 ori r10,r10,0xffff; \
1284 mtspr SPRN_DEC,r10; \
1285 b 2f; \
Ian Munsiefe9e1d52012-11-14 18:49:48 +000012861: cmpwi r10,PACA_IRQ_DBELL; \
1287 beq 2f; \
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +05301288 cmpwi r10,PACA_IRQ_HMI; \
1289 beq 2f; \
Ian Munsiefe9e1d52012-11-14 18:49:48 +00001290 mfspr r10,SPRN_##_H##SRR1; \
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001291 rldicl r10,r10,48,1; /* clear MSR_EE */ \
1292 rotldi r10,r10,16; \
1293 mtspr SPRN_##_H##SRR1,r10; \
12942: mtcrf 0x80,r9; \
1295 ld r9,PACA_EXGEN+EX_R9(r13); \
1296 ld r10,PACA_EXGEN+EX_R10(r13); \
1297 ld r11,PACA_EXGEN+EX_R11(r13); \
1298 GET_SCRATCH0(r13); \
1299 ##_H##rfid; \
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001300 b .
Nicholas Piggin57f26642016-09-28 11:31:48 +10001301
1302/*
1303 * Real mode exceptions actually use this too, but alternate
1304 * instruction code patches (which end up in the common .text area)
1305 * cannot reach these if they are put there.
1306 */
1307USE_FIXED_SECTION(virt_trampolines)
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001308 MASKED_INTERRUPT()
1309 MASKED_INTERRUPT(H)
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001310
Paul Mackerras4f6c11d2013-09-20 14:52:50 +10001311#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
Michael Ellermanda2bc462016-09-30 19:43:18 +10001312TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
Paul Mackerras4f6c11d2013-09-20 14:52:50 +10001313 /*
1314 * Here all GPRs are unchanged from when the interrupt happened
1315 * except for r13, which is saved in SPRG_SCRATCH0.
1316 */
1317 mfspr r13, SPRN_SRR0
1318 addi r13, r13, 4
1319 mtspr SPRN_SRR0, r13
1320 GET_SCRATCH0(r13)
1321 rfid
1322 b .
1323
Michael Ellermanda2bc462016-09-30 19:43:18 +10001324TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
Paul Mackerras4f6c11d2013-09-20 14:52:50 +10001325 /*
1326 * Here all GPRs are unchanged from when the interrupt happened
1327 * except for r13, which is saved in SPRG_SCRATCH0.
1328 */
1329 mfspr r13, SPRN_HSRR0
1330 addi r13, r13, 4
1331 mtspr SPRN_HSRR0, r13
1332 GET_SCRATCH0(r13)
1333 hrfid
1334 b .
1335#endif
1336
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001337/*
Hari Bathini057b6d72016-04-08 03:30:34 +05301338 * Ensure that any handlers that get invoked from the exception prologs
1339 * above are below the first 64KB (0x10000) of the kernel image because
1340 * the prologs assemble the addresses of these handlers using the
1341 * LOAD_HANDLER macro, which uses an ori instruction.
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001342 */
1343
1344/*** Common interrupt handlers ***/
1345
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001346
Michael Neulingc1fb6812012-11-02 17:21:43 +11001347 /*
1348 * Relocation-on interrupts: A subset of the interrupts can be delivered
1349 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
1350 * it. Addresses are the same as the original interrupt addresses, but
1351 * offset by 0xc000000000004000.
1352 * It's impossible to receive interrupts below 0x300 via this mechanism.
1353 * KVM: None of these traps are from the guest ; anything that escalated
1354 * to HV=1 from HV=0 is delivered via real mode handlers.
1355 */
1356
1357 /*
1358 * This uses the standard macro, since the original 0x300 vector
1359 * only has extra guff for STAB-based processors -- which never
1360 * come here.
1361 */
Michael Ellermanda2bc462016-09-30 19:43:18 +10001362
Nicholas Piggin57f26642016-09-28 11:31:48 +10001363EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001364 b __ppc64_runlatch_on
Benjamin Herrenschmidtfe1952f2012-03-01 12:45:27 +11001365
Nicholas Piggin57f26642016-09-28 11:31:48 +10001366USE_FIXED_SECTION(virt_trampolines)
Hari Bathini8ed8ab42016-04-15 22:48:02 +10001367 /*
1368 * The __end_interrupts marker must be past the out-of-line (OOL)
1369 * handlers, so that they are copied to real address 0x100 when running
1370 * a relocatable kernel. This ensures they can be reached from the short
1371 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
1372 * directly, without using LOAD_HANDLER().
1373 */
1374 .align 7
1375 .globl __end_interrupts
1376__end_interrupts:
Nicholas Piggin57f26642016-09-28 11:31:48 +10001377DEFINE_FIXED_SYMBOL(__end_interrupts)
Benjamin Herrenschmidt61383402013-01-10 17:44:19 +11001378
Chen Gang087aa032013-03-25 09:31:31 +08001379#ifdef CONFIG_PPC_970_NAP
Nicholas Piggin7c8cb4b2016-10-11 18:47:56 +11001380EXC_COMMON_BEGIN(power4_fixup_nap)
Chen Gang087aa032013-03-25 09:31:31 +08001381 andc r9,r9,r10
1382 std r9,TI_LOCAL_FLAGS(r11)
1383 ld r10,_LINK(r1) /* make idle task do the */
1384 std r10,_NIP(r1) /* equivalent of a blr */
1385 blr
1386#endif
1387
Nicholas Piggin57f26642016-09-28 11:31:48 +10001388CLOSE_FIXED_SECTION(real_vectors);
1389CLOSE_FIXED_SECTION(real_trampolines);
1390CLOSE_FIXED_SECTION(virt_vectors);
1391CLOSE_FIXED_SECTION(virt_trampolines);
1392
1393USE_TEXT_SECTION()
1394
Chen Gang087aa032013-03-25 09:31:31 +08001395/*
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001396 * Hash table stuff
1397 */
1398 .align 7
Anton Blanchard6a3bab92014-02-04 16:06:11 +11001399do_hash_page:
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10001400#ifdef CONFIG_PPC_STD_MMU_64
K.Prasad9c7cc232010-03-29 23:59:25 +00001401 andis. r0,r4,0xa410 /* weird error? */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001402 bne- handle_page_fault /* if not, try to insert a HPTE */
K.Prasad9c7cc232010-03-29 23:59:25 +00001403 andis. r0,r4,DSISR_DABRMATCH@h
1404 bne- handle_dabr_fault
Stuart Yoder9778b692012-07-05 04:41:35 +00001405 CURRENT_THREAD_INFO(r11, r1)
Paul Mackerras9c1e1052009-08-17 15:17:54 +10001406 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1407 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1408 bne 77f /* then don't call hash_page now */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001409
1410 /*
1411 * r3 contains the faulting address
Aneesh Kumar K.V106713a2015-12-01 09:06:44 +05301412 * r4 msr
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001413 * r5 contains the trap number
Aneesh Kumar K.Vaefa5682014-12-04 11:00:14 +05301414 * r6 contains dsisr
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001415 *
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001416 * at return r3 = 0 for success, 1 for page fault, negative for error
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001417 */
Aneesh Kumar K.V106713a2015-12-01 09:06:44 +05301418 mr r4,r12
Aneesh Kumar K.Vaefa5682014-12-04 11:00:14 +05301419 ld r6,_DSISR(r1)
Aneesh Kumar K.V106713a2015-12-01 09:06:44 +05301420 bl __hash_page /* build HPTE if possible */
1421 cmpdi r3,0 /* see if __hash_page succeeded */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001422
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001423 /* Success */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001424 beq fast_exc_return_irq /* Return from exception on success */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001425
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +11001426 /* Error */
1427 blt- 13f
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10001428#endif /* CONFIG_PPC_STD_MMU_64 */
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001429
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +11001430/* Here we have a page fault that hash_page can't handle. */
1431handle_page_fault:
143211: ld r4,_DAR(r1)
1433 ld r5,_DSISR(r1)
1434 addi r3,r1,STACK_FRAME_OVERHEAD
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001435 bl do_page_fault
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +11001436 cmpdi r3,0
1437 beq+ 12f
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001438 bl save_nvgprs
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +11001439 mr r5,r3
1440 addi r3,r1,STACK_FRAME_OVERHEAD
1441 lwz r4,_DAR(r1)
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001442 bl bad_page_fault
1443 b ret_from_except
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001444
K.Prasad9c7cc232010-03-29 23:59:25 +00001445/* We have a data breakpoint exception - handle it */
1446handle_dabr_fault:
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001447 bl save_nvgprs
K.Prasad9c7cc232010-03-29 23:59:25 +00001448 ld r4,_DAR(r1)
1449 ld r5,_DSISR(r1)
1450 addi r3,r1,STACK_FRAME_OVERHEAD
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001451 bl do_break
145212: b ret_from_except_lite
K.Prasad9c7cc232010-03-29 23:59:25 +00001453
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001454
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10001455#ifdef CONFIG_PPC_STD_MMU_64
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001456/* We have a page fault that hash_page could handle but HV refused
1457 * the PTE insertion
1458 */
Anton Blanchardb1576fe2014-02-04 16:04:35 +1100145913: bl save_nvgprs
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001460 mr r5,r3
1461 addi r3,r1,STACK_FRAME_OVERHEAD
1462 ld r4,_DAR(r1)
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001463 bl low_hash_fault
1464 b ret_from_except
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +10001465#endif
Benjamin Herrenschmidt0ebc4cd2009-06-02 21:17:38 +00001466
Paul Mackerras9c1e1052009-08-17 15:17:54 +10001467/*
1468 * We come here as a result of a DSI at a point where we don't want
1469 * to call hash_page, such as when we are accessing memory (possibly
1470 * user memory) inside a PMU interrupt that occurred while interrupts
1471 * were soft-disabled. We want to invoke the exception handler for
1472 * the access, or panic if there isn't a handler.
1473 */
Anton Blanchardb1576fe2014-02-04 16:04:35 +1100147477: bl save_nvgprs
Paul Mackerras9c1e1052009-08-17 15:17:54 +10001475 mr r4,r3
1476 addi r3,r1,STACK_FRAME_OVERHEAD
1477 li r5,SIGSEGV
Anton Blanchardb1576fe2014-02-04 16:04:35 +11001478 bl bad_page_fault
1479 b ret_from_except
Michael Ellerman4e2bf012014-07-15 20:25:02 +10001480
1481/*
1482 * Here we have detected that the kernel stack pointer is bad.
1483 * R9 contains the saved CR, r13 points to the paca,
1484 * r10 contains the (bad) kernel stack pointer,
1485 * r11 and r12 contain the saved SRR0 and SRR1.
1486 * We switch to using an emergency stack, save the registers there,
1487 * and call kernel_bad_stack(), which panics.
1488 */
1489bad_stack:
1490 ld r1,PACAEMERGSP(r13)
1491 subi r1,r1,64+INT_FRAME_SIZE
1492 std r9,_CCR(r1)
1493 std r10,GPR1(r1)
1494 std r11,_NIP(r1)
1495 std r12,_MSR(r1)
1496 mfspr r11,SPRN_DAR
1497 mfspr r12,SPRN_DSISR
1498 std r11,_DAR(r1)
1499 std r12,_DSISR(r1)
1500 mflr r10
1501 mfctr r11
1502 mfxer r12
1503 std r10,_LINK(r1)
1504 std r11,_CTR(r1)
1505 std r12,_XER(r1)
1506 SAVE_GPR(0,r1)
1507 SAVE_GPR(2,r1)
1508 ld r10,EX_R3(r3)
1509 std r10,GPR3(r1)
1510 SAVE_GPR(4,r1)
1511 SAVE_4GPRS(5,r1)
1512 ld r9,EX_R9(r3)
1513 ld r10,EX_R10(r3)
1514 SAVE_2GPRS(9,r1)
1515 ld r9,EX_R11(r3)
1516 ld r10,EX_R12(r3)
1517 ld r11,EX_R13(r3)
1518 std r9,GPR11(r1)
1519 std r10,GPR12(r1)
1520 std r11,GPR13(r1)
1521BEGIN_FTR_SECTION
1522 ld r10,EX_CFAR(r3)
1523 std r10,ORIG_GPR3(r1)
1524END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1525 SAVE_8GPRS(14,r1)
1526 SAVE_10GPRS(22,r1)
1527 lhz r12,PACA_TRAP_SAVE(r13)
1528 std r12,_TRAP(r1)
1529 addi r11,r1,INT_FRAME_SIZE
1530 std r11,0(r1)
1531 li r12,0
1532 std r12,0(r11)
1533 ld r2,PACATOC(r13)
1534 ld r11,exception_marker@toc(r2)
1535 std r12,RESULT(r1)
1536 std r11,STACK_FRAME_OVERHEAD-16(r1)
15371: addi r3,r1,STACK_FRAME_OVERHEAD
1538 bl kernel_bad_stack
1539 b 1b
Nicholas Piggin0f0c6ca2016-09-21 17:44:05 +10001540
1541/*
1542 * Called from arch_local_irq_enable when an interrupt needs
1543 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
1544 * which kind of interrupt. MSR:EE is already off. We generate a
1545 * stackframe like if a real interrupt had happened.
1546 *
1547 * Note: While MSR:EE is off, we need to make sure that _MSR
1548 * in the generated frame has EE set to 1 or the exception
1549 * handler will not properly re-enable them.
1550 */
1551_GLOBAL(__replay_interrupt)
1552 /* We are going to jump to the exception common code which
1553 * will retrieve various register values from the PACA which
1554 * we don't give a damn about, so we don't bother storing them.
1555 */
1556 mfmsr r12
1557 mflr r11
1558 mfcr r9
1559 ori r12,r12,MSR_EE
1560 cmpwi r3,0x900
1561 beq decrementer_common
1562 cmpwi r3,0x500
1563 beq hardware_interrupt_common
1564BEGIN_FTR_SECTION
1565 cmpwi r3,0xe80
1566 beq h_doorbell_common
1567 cmpwi r3,0xea0
1568 beq h_virt_irq_common
1569 cmpwi r3,0xe60
1570 beq hmi_exception_common
1571FTR_SECTION_ELSE
1572 cmpwi r3,0xa00
1573 beq doorbell_super_common
1574ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
1575 blr