Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * This file contains the 64-bit "server" PowerPC variant
4 * of the low level exception handling including exception
5 * vectors, exception return, part of the slb and stab
6 * handling and other fixed offset specific things.
7 *
8 * This file is meant to be #included from head_64.S due to
9 * position dependent assembly.
10 *
11 * Most of this originates from head_64.S and thus has the same
12 * copyright history.
13 *
14 */
15
16#include <asm/hw_irq.h>
17#include <asm/exception-64s.h>
18#include <asm/ptrace.h>
19#include <asm/cpuidle.h>
20#include <asm/head-64.h>
21#include <asm/feature-fixups.h>
22#include <asm/kup.h>
23
24/*
25 * Following are fixed section helper macros.
26 *
27 * EXC_REAL_BEGIN/END - real, unrelocated exception vectors
28 * EXC_VIRT_BEGIN/END - virt (AIL), unrelocated exception vectors
29 * TRAMP_REAL_BEGIN - real, unrelocated helpers (virt may call these)
30 * TRAMP_VIRT_BEGIN - virt, unreloc helpers (in practice, real can use)
31 * EXC_COMMON - After switching to virtual, relocated mode.
32 */
33
34#define EXC_REAL_BEGIN(name, start, size) \
35 FIXED_SECTION_ENTRY_BEGIN_LOCATION(real_vectors, exc_real_##start##_##name, start, size)
36
37#define EXC_REAL_END(name, start, size) \
38 FIXED_SECTION_ENTRY_END_LOCATION(real_vectors, exc_real_##start##_##name, start, size)
39
40#define EXC_VIRT_BEGIN(name, start, size) \
41 FIXED_SECTION_ENTRY_BEGIN_LOCATION(virt_vectors, exc_virt_##start##_##name, start, size)
42
43#define EXC_VIRT_END(name, start, size) \
44 FIXED_SECTION_ENTRY_END_LOCATION(virt_vectors, exc_virt_##start##_##name, start, size)
45
46#define EXC_COMMON_BEGIN(name) \
47 USE_TEXT_SECTION(); \
48 .balign IFETCH_ALIGN_BYTES; \
49 .global name; \
50 _ASM_NOKPROBE_SYMBOL(name); \
51 DEFINE_FIXED_SYMBOL(name); \
52name:
53
54#define TRAMP_REAL_BEGIN(name) \
55 FIXED_SECTION_ENTRY_BEGIN(real_trampolines, name)
56
57#define TRAMP_VIRT_BEGIN(name) \
58 FIXED_SECTION_ENTRY_BEGIN(virt_trampolines, name)
59
60#define EXC_REAL_NONE(start, size) \
61 FIXED_SECTION_ENTRY_BEGIN_LOCATION(real_vectors, exc_real_##start##_##unused, start, size); \
62 FIXED_SECTION_ENTRY_END_LOCATION(real_vectors, exc_real_##start##_##unused, start, size)
63
64#define EXC_VIRT_NONE(start, size) \
65 FIXED_SECTION_ENTRY_BEGIN_LOCATION(virt_vectors, exc_virt_##start##_##unused, start, size); \
66 FIXED_SECTION_ENTRY_END_LOCATION(virt_vectors, exc_virt_##start##_##unused, start, size)
67
68/*
69 * We're short on space and time in the exception prolog, so we can't
70 * use the normal LOAD_REG_IMMEDIATE macro to load the address of label.
71 * Instead we get the base of the kernel from paca->kernelbase and or in the low
72 * part of label. This requires that the label be within 64KB of kernelbase, and
73 * that kernelbase be 64K aligned.
74 */
75#define LOAD_HANDLER(reg, label) \
76 ld reg,PACAKBASE(r13); /* get high part of &label */ \
77 ori reg,reg,FIXED_SYMBOL_ABS_ADDR(label)
78
79#define __LOAD_HANDLER(reg, label) \
80 ld reg,PACAKBASE(r13); \
81 ori reg,reg,(ABS_ADDR(label))@l
82
83/*
84 * Branches from unrelocated code (e.g., interrupts) to labels outside
85 * head-y require >64K offsets.
86 */
87#define __LOAD_FAR_HANDLER(reg, label) \
88 ld reg,PACAKBASE(r13); \
89 ori reg,reg,(ABS_ADDR(label))@l; \
90 addis reg,reg,(ABS_ADDR(label))@h
91
92/*
93 * Branch to label using its 0xC000 address. This results in instruction
94 * address suitable for MSR[IR]=0 or 1, which allows relocation to be turned
95 * on using mtmsr rather than rfid.
96 *
97 * This could set the 0xc bits for !RELOCATABLE as an immediate, rather than
98 * load KBASE for a slight optimisation.
99 */
100#define BRANCH_TO_C000(reg, label) \
101 __LOAD_FAR_HANDLER(reg, label); \
102 mtctr reg; \
103 bctr
104
105/*
106 * Interrupt code generation macros
107 */
108#define IVEC .L_IVEC_\name\() /* Interrupt vector address */
109#define IHSRR .L_IHSRR_\name\() /* Sets SRR or HSRR registers */
110#define IHSRR_IF_HVMODE .L_IHSRR_IF_HVMODE_\name\() /* HSRR if HV else SRR */
111#define IAREA .L_IAREA_\name\() /* PACA save area */
112#define IVIRT .L_IVIRT_\name\() /* Has virt mode entry point */
113#define IISIDE .L_IISIDE_\name\() /* Uses SRR0/1 not DAR/DSISR */
114#define IDAR .L_IDAR_\name\() /* Uses DAR (or SRR0) */
115#define IDSISR .L_IDSISR_\name\() /* Uses DSISR (or SRR1) */
116#define ISET_RI .L_ISET_RI_\name\() /* Run common code w/ MSR[RI]=1 */
117#define IBRANCH_TO_COMMON .L_IBRANCH_TO_COMMON_\name\() /* ENTRY branch to common */
118#define IREALMODE_COMMON .L_IREALMODE_COMMON_\name\() /* Common runs in realmode */
119#define IMASK .L_IMASK_\name\() /* IRQ soft-mask bit */
120#define IKVM_REAL .L_IKVM_REAL_\name\() /* Real entry tests KVM */
121#define __IKVM_REAL(name) .L_IKVM_REAL_ ## name
122#define IKVM_VIRT .L_IKVM_VIRT_\name\() /* Virt entry tests KVM */
123#define ISTACK .L_ISTACK_\name\() /* Set regular kernel stack */
124#define __ISTACK(name) .L_ISTACK_ ## name
125#define IKUAP .L_IKUAP_\name\() /* Do KUAP lock */
126
127#define INT_DEFINE_BEGIN(n) \
128.macro int_define_ ## n name
129
130#define INT_DEFINE_END(n) \
131.endm ; \
132int_define_ ## n n ; \
133do_define_int n
134
135.macro do_define_int name
136 .ifndef IVEC
137 .error "IVEC not defined"
138 .endif
139 .ifndef IHSRR
140 IHSRR=0
141 .endif
142 .ifndef IHSRR_IF_HVMODE
143 IHSRR_IF_HVMODE=0
144 .endif
145 .ifndef IAREA
146 IAREA=PACA_EXGEN
147 .endif
148 .ifndef IVIRT
149 IVIRT=1
150 .endif
151 .ifndef IISIDE
152 IISIDE=0
153 .endif
154 .ifndef IDAR
155 IDAR=0
156 .endif
157 .ifndef IDSISR
158 IDSISR=0
159 .endif
160 .ifndef ISET_RI
161 ISET_RI=1
162 .endif
163 .ifndef IBRANCH_TO_COMMON
164 IBRANCH_TO_COMMON=1
165 .endif
166 .ifndef IREALMODE_COMMON
167 IREALMODE_COMMON=0
168 .else
169 .if ! IBRANCH_TO_COMMON
170 .error "IREALMODE_COMMON=1 but IBRANCH_TO_COMMON=0"
171 .endif
172 .endif
173 .ifndef IMASK
174 IMASK=0
175 .endif
176 .ifndef IKVM_REAL
177 IKVM_REAL=0
178 .endif
179 .ifndef IKVM_VIRT
180 IKVM_VIRT=0
181 .endif
182 .ifndef ISTACK
183 ISTACK=1
184 .endif
185 .ifndef IKUAP
186 IKUAP=1
187 .endif
188.endm
189
190/*
191 * All interrupts which set HSRR registers, as well as SRESET and MCE and
192 * syscall when invoked with "sc 1" switch to MSR[HV]=1 (HVMODE) to be taken,
193 * so they all generally need to test whether they were taken in guest context.
194 *
195 * Note: SRESET and MCE may also be sent to the guest by the hypervisor, and be
196 * taken with MSR[HV]=0.
197 *
198 * Interrupts which set SRR registers (with the above exceptions) do not
199 * elevate to MSR[HV]=1 mode, though most can be taken when running with
200 * MSR[HV]=1 (e.g., bare metal kernel and userspace). So these interrupts do
201 * not need to test whether a guest is running because they get delivered to
202 * the guest directly, including nested HV KVM guests.
203 *
204 * The exception is PR KVM, where the guest runs with MSR[PR]=1 and the host
205 * runs with MSR[HV]=0, so the host takes all interrupts on behalf of the
206 * guest. PR KVM runs with LPCR[AIL]=0 which causes interrupts to always be
207 * delivered to the real-mode entry point, therefore such interrupts only test
208 * KVM in their real mode handlers, and only when PR KVM is possible.
209 *
210 * Interrupts that are taken in MSR[HV]=0 and escalate to MSR[HV]=1 are always
211 * delivered in real-mode when the MMU is in hash mode because the MMU
212 * registers are not set appropriately to translate host addresses. In nested
213 * radix mode these can be delivered in virt-mode as the host translations are
214 * used implicitly (see: effective LPID, effective PID).
215 */
216
217/*
218 * If an interrupt is taken while a guest is running, it is immediately routed
219 * to KVM to handle.
220 */
221
222.macro KVMTEST name handler
223#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
224 lbz r10,HSTATE_IN_GUEST(r13)
225 cmpwi r10,0
226 /* HSRR variants have the 0x2 bit added to their trap number */
227 .if IHSRR_IF_HVMODE
228 BEGIN_FTR_SECTION
229 li r10,(IVEC + 0x2)
230 FTR_SECTION_ELSE
231 li r10,(IVEC)
232 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
233 .elseif IHSRR
234 li r10,(IVEC + 0x2)
235 .else
236 li r10,(IVEC)
237 .endif
238 bne \handler
239#endif
240.endm
241
242/*
243 * This is the BOOK3S interrupt entry code macro.
244 *
245 * This can result in one of several things happening:
246 * - Branch to the _common handler, relocated, in virtual mode.
247 * These are normal interrupts (synchronous and asynchronous) handled by
248 * the kernel.
249 * - Branch to KVM, relocated but real mode interrupts remain in real mode.
250 * These occur when HSTATE_IN_GUEST is set. The interrupt may be caused by
251 * / intended for host or guest kernel, but KVM must always be involved
252 * because the machine state is set for guest execution.
253 * - Branch to the masked handler, unrelocated.
254 * These occur when maskable asynchronous interrupts are taken with the
255 * irq_soft_mask set.
256 * - Branch to an "early" handler in real mode but relocated.
257 * This is done if early=1. MCE and HMI use these to handle errors in real
258 * mode.
259 * - Fall through and continue executing in real, unrelocated mode.
260 * This is done if early=2.
261 */
262
263.macro GEN_BRANCH_TO_COMMON name, virt
264 .if IREALMODE_COMMON
265 LOAD_HANDLER(r10, \name\()_common)
266 mtctr r10
267 bctr
268 .else
269 .if \virt
270#ifndef CONFIG_RELOCATABLE
271 b \name\()_common_virt
272#else
273 LOAD_HANDLER(r10, \name\()_common_virt)
274 mtctr r10
275 bctr
276#endif
277 .else
278 LOAD_HANDLER(r10, \name\()_common_real)
279 mtctr r10
280 bctr
281 .endif
282 .endif
283.endm
284
285.macro GEN_INT_ENTRY name, virt, ool=0
286 SET_SCRATCH0(r13) /* save r13 */
287 GET_PACA(r13)
288 std r9,IAREA+EX_R9(r13) /* save r9 */
289BEGIN_FTR_SECTION
290 mfspr r9,SPRN_PPR
291END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
292 HMT_MEDIUM
293 std r10,IAREA+EX_R10(r13) /* save r10 - r12 */
294BEGIN_FTR_SECTION
295 mfspr r10,SPRN_CFAR
296END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
297 .if \ool
298 .if !\virt
299 b tramp_real_\name
300 .pushsection .text
301 TRAMP_REAL_BEGIN(tramp_real_\name)
302 .else
303 b tramp_virt_\name
304 .pushsection .text
305 TRAMP_VIRT_BEGIN(tramp_virt_\name)
306 .endif
307 .endif
308
309BEGIN_FTR_SECTION
310 std r9,IAREA+EX_PPR(r13)
311END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
312BEGIN_FTR_SECTION
313 std r10,IAREA+EX_CFAR(r13)
314END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
315 INTERRUPT_TO_KERNEL
316 mfctr r10
317 std r10,IAREA+EX_CTR(r13)
318 mfcr r9
319 std r11,IAREA+EX_R11(r13)
320 std r12,IAREA+EX_R12(r13)
321
322 /*
323 * DAR/DSISR, SCRATCH0 must be read before setting MSR[RI],
324 * because a d-side MCE will clobber those registers so is
325 * not recoverable if they are live.
326 */
327 GET_SCRATCH0(r10)
328 std r10,IAREA+EX_R13(r13)
329 .if IDAR && !IISIDE
330 .if IHSRR
331 mfspr r10,SPRN_HDAR
332 .else
333 mfspr r10,SPRN_DAR
334 .endif
335 std r10,IAREA+EX_DAR(r13)
336 .endif
337 .if IDSISR && !IISIDE
338 .if IHSRR
339 mfspr r10,SPRN_HDSISR
340 .else
341 mfspr r10,SPRN_DSISR
342 .endif
343 stw r10,IAREA+EX_DSISR(r13)
344 .endif
345
346 .if IHSRR_IF_HVMODE
347 BEGIN_FTR_SECTION
348 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
349 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
350 FTR_SECTION_ELSE
351 mfspr r11,SPRN_SRR0 /* save SRR0 */
352 mfspr r12,SPRN_SRR1 /* and SRR1 */
353 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
354 .elseif IHSRR
355 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
356 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
357 .else
358 mfspr r11,SPRN_SRR0 /* save SRR0 */
359 mfspr r12,SPRN_SRR1 /* and SRR1 */
360 .endif
361
362 .if IBRANCH_TO_COMMON
363 GEN_BRANCH_TO_COMMON \name \virt
364 .endif
365
366 .if \ool
367 .popsection
368 .endif
369.endm
370
371/*
372 * __GEN_COMMON_ENTRY is required to receive the branch from interrupt
373 * entry, except in the case of the real-mode handlers which require
374 * __GEN_REALMODE_COMMON_ENTRY.
375 *
376 * This switches to virtual mode and sets MSR[RI].
377 */
378.macro __GEN_COMMON_ENTRY name
379DEFINE_FIXED_SYMBOL(\name\()_common_real)
380\name\()_common_real:
381 .if IKVM_REAL
382 KVMTEST \name kvm_interrupt
383 .endif
384
385 ld r10,PACAKMSR(r13) /* get MSR value for kernel */
386 /* MSR[RI] is clear iff using SRR regs */
387 .if IHSRR_IF_HVMODE
388 BEGIN_FTR_SECTION
389 xori r10,r10,MSR_RI
390 END_FTR_SECTION_IFCLR(CPU_FTR_HVMODE)
391 .elseif ! IHSRR
392 xori r10,r10,MSR_RI
393 .endif
394 mtmsrd r10
395
396 .if IVIRT
397 .if IKVM_VIRT
398 b 1f /* skip the virt test coming from real */
399 .endif
400
401 .balign IFETCH_ALIGN_BYTES
402DEFINE_FIXED_SYMBOL(\name\()_common_virt)
403\name\()_common_virt:
404 .if IKVM_VIRT
405 KVMTEST \name kvm_interrupt
4061:
407 .endif
408 .endif /* IVIRT */
409.endm
410
411/*
412 * Don't switch to virt mode. Used for early MCE and HMI handlers that
413 * want to run in real mode.
414 */
415.macro __GEN_REALMODE_COMMON_ENTRY name
416DEFINE_FIXED_SYMBOL(\name\()_common_real)
417\name\()_common_real:
418 .if IKVM_REAL
419 KVMTEST \name kvm_interrupt
420 .endif
421.endm
422
423.macro __GEN_COMMON_BODY name
424 .if IMASK
425 .if ! ISTACK
426 .error "No support for masked interrupt to use custom stack"
427 .endif
428
429 /* If coming from user, skip soft-mask tests. */
430 andi. r10,r12,MSR_PR
431 bne 3f
432
433 /*
434 * Kernel code running below __end_soft_masked may be
435 * implicitly soft-masked if it is within the regions
436 * in the soft mask table.
437 */
438 LOAD_HANDLER(r10, __end_soft_masked)
439 cmpld r11,r10
440 bge+ 1f
441
442 /* SEARCH_SOFT_MASK_TABLE clobbers r9,r10,r12 */
443 mtctr r12
444 stw r9,PACA_EXGEN+EX_CCR(r13)
445 SEARCH_SOFT_MASK_TABLE
446 cmpdi r12,0
447 mfctr r12 /* Restore r12 to SRR1 */
448 lwz r9,PACA_EXGEN+EX_CCR(r13)
449 beq 1f /* Not in soft-mask table */
450 li r10,IMASK
451 b 2f /* In soft-mask table, always mask */
452
453 /* Test the soft mask state against our interrupt's bit */
4541: lbz r10,PACAIRQSOFTMASK(r13)
4552: andi. r10,r10,IMASK
456 /* Associate vector numbers with bits in paca->irq_happened */
457 .if IVEC == 0x500 || IVEC == 0xea0
458 li r10,PACA_IRQ_EE
459 .elseif IVEC == 0x900
460 li r10,PACA_IRQ_DEC
461 .elseif IVEC == 0xa00 || IVEC == 0xe80
462 li r10,PACA_IRQ_DBELL
463 .elseif IVEC == 0xe60
464 li r10,PACA_IRQ_HMI
465 .elseif IVEC == 0xf00
466 li r10,PACA_IRQ_PMI
467 .else
468 .abort "Bad maskable vector"
469 .endif
470
471 .if IHSRR_IF_HVMODE
472 BEGIN_FTR_SECTION
473 bne masked_Hinterrupt
474 FTR_SECTION_ELSE
475 bne masked_interrupt
476 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
477 .elseif IHSRR
478 bne masked_Hinterrupt
479 .else
480 bne masked_interrupt
481 .endif
482 .endif
483
484 .if ISTACK
485 andi. r10,r12,MSR_PR /* See if coming from user */
4863: mr r10,r1 /* Save r1 */
487 subi r1,r1,INT_FRAME_SIZE /* alloc frame on kernel stack */
488 beq- 100f
489 ld r1,PACAKSAVE(r13) /* kernel stack to use */
490100: tdgei r1,-INT_FRAME_SIZE /* trap if r1 is in userspace */
491 EMIT_BUG_ENTRY 100b,__FILE__,__LINE__,0
492 .endif
493
494 std r9,_CCR(r1) /* save CR in stackframe */
495 std r11,_NIP(r1) /* save SRR0 in stackframe */
496 std r12,_MSR(r1) /* save SRR1 in stackframe */
497 std r10,0(r1) /* make stack chain pointer */
498 std r0,GPR0(r1) /* save r0 in stackframe */
499 std r10,GPR1(r1) /* save r1 in stackframe */
500
501 /* Mark our [H]SRRs valid for return */
502 li r10,1
503 .if IHSRR_IF_HVMODE
504 BEGIN_FTR_SECTION
505 stb r10,PACAHSRR_VALID(r13)
506 FTR_SECTION_ELSE
507 stb r10,PACASRR_VALID(r13)
508 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
509 .elseif IHSRR
510 stb r10,PACAHSRR_VALID(r13)
511 .else
512 stb r10,PACASRR_VALID(r13)
513 .endif
514
515 .if ISET_RI
516 li r10,MSR_RI
517 mtmsrd r10,1 /* Set MSR_RI */
518 .endif
519
520 .if ISTACK
521 .if IKUAP
522 kuap_save_amr_and_lock r9, r10, cr1, cr0
523 .endif
524 beq 101f /* if from kernel mode */
525BEGIN_FTR_SECTION
526 ld r9,IAREA+EX_PPR(r13) /* Read PPR from paca */
527 std r9,_PPR(r1)
528END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
529101:
530 .else
531 .if IKUAP
532 kuap_save_amr_and_lock r9, r10, cr1
533 .endif
534 .endif
535
536 /* Save original regs values from save area to stack frame. */
537 ld r9,IAREA+EX_R9(r13) /* move r9, r10 to stackframe */
538 ld r10,IAREA+EX_R10(r13)
539 std r9,GPR9(r1)
540 std r10,GPR10(r1)
541 ld r9,IAREA+EX_R11(r13) /* move r11 - r13 to stackframe */
542 ld r10,IAREA+EX_R12(r13)
543 ld r11,IAREA+EX_R13(r13)
544 std r9,GPR11(r1)
545 std r10,GPR12(r1)
546 std r11,GPR13(r1)
547
548 SAVE_NVGPRS(r1)
549
550 .if IDAR
551 .if IISIDE
552 ld r10,_NIP(r1)
553 .else
554 ld r10,IAREA+EX_DAR(r13)
555 .endif
556 std r10,_DAR(r1)
557 .endif
558
559 .if IDSISR
560 .if IISIDE
561 ld r10,_MSR(r1)
562 lis r11,DSISR_SRR1_MATCH_64S@h
563 and r10,r10,r11
564 .else
565 lwz r10,IAREA+EX_DSISR(r13)
566 .endif
567 std r10,_DSISR(r1)
568 .endif
569
570BEGIN_FTR_SECTION
571 ld r10,IAREA+EX_CFAR(r13)
572 std r10,ORIG_GPR3(r1)
573END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
574 ld r10,IAREA+EX_CTR(r13)
575 std r10,_CTR(r1)
576 std r2,GPR2(r1) /* save r2 in stackframe */
577 SAVE_4GPRS(3, r1) /* save r3 - r6 in stackframe */
578 SAVE_2GPRS(7, r1) /* save r7, r8 in stackframe */
579 mflr r9 /* Get LR, later save to stack */
580 ld r2,PACATOC(r13) /* get kernel TOC into r2 */
581 std r9,_LINK(r1)
582 lbz r10,PACAIRQSOFTMASK(r13)
583 mfspr r11,SPRN_XER /* save XER in stackframe */
584 std r10,SOFTE(r1)
585 std r11,_XER(r1)
586 li r9,IVEC
587 std r9,_TRAP(r1) /* set trap number */
588 li r10,0
589 ld r11,exception_marker@toc(r2)
590 std r10,RESULT(r1) /* clear regs->result */
591 std r11,STACK_FRAME_OVERHEAD-16(r1) /* mark the frame */
592.endm
593
594/*
595 * On entry r13 points to the paca, r9-r13 are saved in the paca,
596 * r9 contains the saved CR, r11 and r12 contain the saved SRR0 and
597 * SRR1, and relocation is on.
598 *
599 * If stack=0, then the stack is already set in r1, and r1 is saved in r10.
600 * PPR save and CPU accounting is not done for the !stack case (XXX why not?)
601 */
602.macro GEN_COMMON name
603 __GEN_COMMON_ENTRY \name
604 __GEN_COMMON_BODY \name
605.endm
606
607.macro SEARCH_RESTART_TABLE
608#ifdef CONFIG_RELOCATABLE
609 mr r12,r2
610 ld r2,PACATOC(r13)
611 LOAD_REG_ADDR(r9, __start___restart_table)
612 LOAD_REG_ADDR(r10, __stop___restart_table)
613 mr r2,r12
614#else
615 LOAD_REG_IMMEDIATE_SYM(r9, r12, __start___restart_table)
616 LOAD_REG_IMMEDIATE_SYM(r10, r12, __stop___restart_table)
617#endif
618300:
619 cmpd r9,r10
620 beq 302f
621 ld r12,0(r9)
622 cmpld r11,r12
623 blt 301f
624 ld r12,8(r9)
625 cmpld r11,r12
626 bge 301f
627 ld r12,16(r9)
628 b 303f
629301:
630 addi r9,r9,24
631 b 300b
632302:
633 li r12,0
634303:
635.endm
636
637.macro SEARCH_SOFT_MASK_TABLE
638#ifdef CONFIG_RELOCATABLE
639 mr r12,r2
640 ld r2,PACATOC(r13)
641 LOAD_REG_ADDR(r9, __start___soft_mask_table)
642 LOAD_REG_ADDR(r10, __stop___soft_mask_table)
643 mr r2,r12
644#else
645 LOAD_REG_IMMEDIATE_SYM(r9, r12, __start___soft_mask_table)
646 LOAD_REG_IMMEDIATE_SYM(r10, r12, __stop___soft_mask_table)
647#endif
648300:
649 cmpd r9,r10
650 beq 302f
651 ld r12,0(r9)
652 cmpld r11,r12
653 blt 301f
654 ld r12,8(r9)
655 cmpld r11,r12
656 bge 301f
657 li r12,1
658 b 303f
659301:
660 addi r9,r9,16
661 b 300b
662302:
663 li r12,0
664303:
665.endm
666
667/*
668 * Restore all registers including H/SRR0/1 saved in a stack frame of a
669 * standard exception.
670 */
671.macro EXCEPTION_RESTORE_REGS hsrr=0
672 /* Move original SRR0 and SRR1 into the respective regs */
673 ld r9,_MSR(r1)
674 li r10,0
675 .if \hsrr
676 mtspr SPRN_HSRR1,r9
677 stb r10,PACAHSRR_VALID(r13)
678 .else
679 mtspr SPRN_SRR1,r9
680 stb r10,PACASRR_VALID(r13)
681 .endif
682 ld r9,_NIP(r1)
683 .if \hsrr
684 mtspr SPRN_HSRR0,r9
685 .else
686 mtspr SPRN_SRR0,r9
687 .endif
688 ld r9,_CTR(r1)
689 mtctr r9
690 ld r9,_XER(r1)
691 mtxer r9
692 ld r9,_LINK(r1)
693 mtlr r9
694 ld r9,_CCR(r1)
695 mtcr r9
696 REST_8GPRS(2, r1)
697 REST_4GPRS(10, r1)
698 REST_GPR(0, r1)
699 /* restore original r1. */
700 ld r1,GPR1(r1)
701.endm
702
703/*
704 * There are a few constraints to be concerned with.
705 * - Real mode exceptions code/data must be located at their physical location.
706 * - Virtual mode exceptions must be mapped at their 0xc000... location.
707 * - Fixed location code must not call directly beyond the __end_interrupts
708 * area when built with CONFIG_RELOCATABLE. LOAD_HANDLER / bctr sequence
709 * must be used.
710 * - LOAD_HANDLER targets must be within first 64K of physical 0 /
711 * virtual 0xc00...
712 * - Conditional branch targets must be within +/-32K of caller.
713 *
714 * "Virtual exceptions" run with relocation on (MSR_IR=1, MSR_DR=1), and
715 * therefore don't have to run in physically located code or rfid to
716 * virtual mode kernel code. However on relocatable kernels they do have
717 * to branch to KERNELBASE offset because the rest of the kernel (outside
718 * the exception vectors) may be located elsewhere.
719 *
720 * Virtual exceptions correspond with physical, except their entry points
721 * are offset by 0xc000000000000000 and also tend to get an added 0x4000
722 * offset applied. Virtual exceptions are enabled with the Alternate
723 * Interrupt Location (AIL) bit set in the LPCR. However this does not
724 * guarantee they will be delivered virtually. Some conditions (see the ISA)
725 * cause exceptions to be delivered in real mode.
726 *
727 * The scv instructions are a special case. They get a 0x3000 offset applied.
728 * scv exceptions have unique reentrancy properties, see below.
729 *
730 * It's impossible to receive interrupts below 0x300 via AIL.
731 *
732 * KVM: None of the virtual exceptions are from the guest. Anything that
733 * escalated to HV=1 from HV=0 is delivered via real mode handlers.
734 *
735 *
736 * We layout physical memory as follows:
737 * 0x0000 - 0x00ff : Secondary processor spin code
738 * 0x0100 - 0x18ff : Real mode pSeries interrupt vectors
739 * 0x1900 - 0x2fff : Real mode trampolines
740 * 0x3000 - 0x58ff : Relon (IR=1,DR=1) mode pSeries interrupt vectors
741 * 0x5900 - 0x6fff : Relon mode trampolines
742 * 0x7000 - 0x7fff : FWNMI data area
743 * 0x8000 - .... : Common interrupt handlers, remaining early
744 * setup code, rest of kernel.
745 *
746 * We could reclaim 0x4000-0x42ff for real mode trampolines if the space
747 * is necessary. Until then it's more consistent to explicitly put VIRT_NONE
748 * vectors there.
749 */
750OPEN_FIXED_SECTION(real_vectors, 0x0100, 0x1900)
751OPEN_FIXED_SECTION(real_trampolines, 0x1900, 0x3000)
752OPEN_FIXED_SECTION(virt_vectors, 0x3000, 0x5900)
753OPEN_FIXED_SECTION(virt_trampolines, 0x5900, 0x7000)
754
755#ifdef CONFIG_PPC_POWERNV
756 .globl start_real_trampolines
757 .globl end_real_trampolines
758 .globl start_virt_trampolines
759 .globl end_virt_trampolines
760#endif
761
762#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
763/*
764 * Data area reserved for FWNMI option.
765 * This address (0x7000) is fixed by the RPA.
766 * pseries and powernv need to keep the whole page from
767 * 0x7000 to 0x8000 free for use by the firmware
768 */
769ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
770OPEN_TEXT_SECTION(0x8000)
771#else
772OPEN_TEXT_SECTION(0x7000)
773#endif
774
775USE_FIXED_SECTION(real_vectors)
776
777/*
778 * This is the start of the interrupt handlers for pSeries
779 * This code runs with relocation off.
780 * Code from here to __end_interrupts gets copied down to real
781 * address 0x100 when we are running a relocatable kernel.
782 * Therefore any relative branches in this section must only
783 * branch to labels in this section.
784 */
785 .globl __start_interrupts
786__start_interrupts:
787
788/**
789 * Interrupt 0x3000 - System Call Vectored Interrupt (syscall).
790 * This is a synchronous interrupt invoked with the "scv" instruction. The
791 * system call does not alter the HV bit, so it is directed to the OS.
792 *
793 * Handling:
794 * scv instructions enter the kernel without changing EE, RI, ME, or HV.
795 * In particular, this means we can take a maskable interrupt at any point
796 * in the scv handler, which is unlike any other interrupt. This is solved
797 * by treating the instruction addresses in the handler as being soft-masked,
798 * by adding a SOFT_MASK_TABLE entry for them.
799 *
800 * AIL-0 mode scv exceptions go to 0x17000-0x17fff, but we set AIL-3 and
801 * ensure scv is never executed with relocation off, which means AIL-0
802 * should never happen.
803 *
804 * Before leaving the following inside-__end_soft_masked text, at least of the
805 * following must be true:
806 * - MSR[PR]=1 (i.e., return to userspace)
807 * - MSR_EE|MSR_RI is clear (no reentrant exceptions)
808 * - Standard kernel environment is set up (stack, paca, etc)
809 *
810 * Call convention:
811 *
812 * syscall register convention is in Documentation/powerpc/syscall64-abi.rst
813 */
814EXC_VIRT_BEGIN(system_call_vectored, 0x3000, 0x1000)
815 /* SCV 0 */
816 mr r9,r13
817 GET_PACA(r13)
818 mflr r11
819 mfctr r12
820 li r10,IRQS_ALL_DISABLED
821 stb r10,PACAIRQSOFTMASK(r13)
822#ifdef CONFIG_RELOCATABLE
823 b system_call_vectored_tramp
824#else
825 b system_call_vectored_common
826#endif
827 nop
828
829 /* SCV 1 - 127 */
830 .rept 127
831 mr r9,r13
832 GET_PACA(r13)
833 mflr r11
834 mfctr r12
835 li r10,IRQS_ALL_DISABLED
836 stb r10,PACAIRQSOFTMASK(r13)
837 li r0,-1 /* cause failure */
838#ifdef CONFIG_RELOCATABLE
839 b system_call_vectored_sigill_tramp
840#else
841 b system_call_vectored_sigill
842#endif
843 .endr
844EXC_VIRT_END(system_call_vectored, 0x3000, 0x1000)
845
846// Treat scv vectors as soft-masked, see comment above.
847// Use absolute values rather than labels here, so they don't get relocated,
848// because this code runs unrelocated.
849SOFT_MASK_TABLE(0xc000000000003000, 0xc000000000004000)
850
851#ifdef CONFIG_RELOCATABLE
852TRAMP_VIRT_BEGIN(system_call_vectored_tramp)
853 __LOAD_HANDLER(r10, system_call_vectored_common)
854 mtctr r10
855 bctr
856
857TRAMP_VIRT_BEGIN(system_call_vectored_sigill_tramp)
858 __LOAD_HANDLER(r10, system_call_vectored_sigill)
859 mtctr r10
860 bctr
861#endif
862
863
864/* No virt vectors corresponding with 0x0..0x100 */
865EXC_VIRT_NONE(0x4000, 0x100)
866
867
868/**
869 * Interrupt 0x100 - System Reset Interrupt (SRESET aka NMI).
870 * This is a non-maskable, asynchronous interrupt always taken in real-mode.
871 * It is caused by:
872 * - Wake from power-saving state, on powernv.
873 * - An NMI from another CPU, triggered by firmware or hypercall.
874 * - As crash/debug signal injected from BMC, firmware or hypervisor.
875 *
876 * Handling:
877 * Power-save wakeup is the only performance critical path, so this is
878 * determined quickly as possible first. In this case volatile registers
879 * can be discarded and SPRs like CFAR don't need to be read.
880 *
881 * If not a powersave wakeup, then it's run as a regular interrupt, however
882 * it uses its own stack and PACA save area to preserve the regular kernel
883 * environment for debugging.
884 *
885 * This interrupt is not maskable, so triggering it when MSR[RI] is clear,
886 * or SCRATCH0 is in use, etc. may cause a crash. It's also not entirely
887 * correct to switch to virtual mode to run the regular interrupt handler
888 * because it might be interrupted when the MMU is in a bad state (e.g., SLB
889 * is clear).
890 *
891 * FWNMI:
892 * PAPR specifies a "fwnmi" facility which sends the sreset to a different
893 * entry point with a different register set up. Some hypervisors will
894 * send the sreset to 0x100 in the guest if it is not fwnmi capable.
895 *
896 * KVM:
897 * Unlike most SRR interrupts, this may be taken by the host while executing
898 * in a guest, so a KVM test is required. KVM will pull the CPU out of guest
899 * mode and then raise the sreset.
900 */
901INT_DEFINE_BEGIN(system_reset)
902 IVEC=0x100
903 IAREA=PACA_EXNMI
904 IVIRT=0 /* no virt entry point */
905 /*
906 * MSR_RI is not enabled, because PACA_EXNMI and nmi stack is
907 * being used, so a nested NMI exception would corrupt it.
908 */
909 ISET_RI=0
910 ISTACK=0
911 IKVM_REAL=1
912INT_DEFINE_END(system_reset)
913
914EXC_REAL_BEGIN(system_reset, 0x100, 0x100)
915#ifdef CONFIG_PPC_P7_NAP
916 /*
917 * If running native on arch 2.06 or later, check if we are waking up
918 * from nap/sleep/winkle, and branch to idle handler. This tests SRR1
919 * bits 46:47. A non-0 value indicates that we are coming from a power
920 * saving state. The idle wakeup handler initially runs in real mode,
921 * but we branch to the 0xc000... address so we can turn on relocation
922 * with mtmsrd later, after SPRs are restored.
923 *
924 * Careful to minimise cost for the fast path (idle wakeup) while
925 * also avoiding clobbering CFAR for the debug path (non-idle).
926 *
927 * For the idle wake case volatile registers can be clobbered, which
928 * is why we use those initially. If it turns out to not be an idle
929 * wake, carefully put everything back the way it was, so we can use
930 * common exception macros to handle it.
931 */
932BEGIN_FTR_SECTION
933 SET_SCRATCH0(r13)
934 GET_PACA(r13)
935 std r3,PACA_EXNMI+0*8(r13)
936 std r4,PACA_EXNMI+1*8(r13)
937 std r5,PACA_EXNMI+2*8(r13)
938 mfspr r3,SPRN_SRR1
939 mfocrf r4,0x80
940 rlwinm. r5,r3,47-31,30,31
941 bne+ system_reset_idle_wake
942 /* Not powersave wakeup. Restore regs for regular interrupt handler. */
943 mtocrf 0x80,r4
944 ld r3,PACA_EXNMI+0*8(r13)
945 ld r4,PACA_EXNMI+1*8(r13)
946 ld r5,PACA_EXNMI+2*8(r13)
947 GET_SCRATCH0(r13)
948END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
949#endif
950
951 GEN_INT_ENTRY system_reset, virt=0
952 /*
953 * In theory, we should not enable relocation here if it was disabled
954 * in SRR1, because the MMU may not be configured to support it (e.g.,
955 * SLB may have been cleared). In practice, there should only be a few
956 * small windows where that's the case, and sreset is considered to
957 * be dangerous anyway.
958 */
959EXC_REAL_END(system_reset, 0x100, 0x100)
960EXC_VIRT_NONE(0x4100, 0x100)
961
962#ifdef CONFIG_PPC_P7_NAP
963TRAMP_REAL_BEGIN(system_reset_idle_wake)
964 /* We are waking up from idle, so may clobber any volatile register */
965 cmpwi cr1,r5,2
966 bltlr cr1 /* no state loss, return to idle caller with r3=SRR1 */
967 BRANCH_TO_C000(r12, DOTSYM(idle_return_gpr_loss))
968#endif
969
970#ifdef CONFIG_PPC_PSERIES
971/*
972 * Vectors for the FWNMI option. Share common code.
973 */
974TRAMP_REAL_BEGIN(system_reset_fwnmi)
975 GEN_INT_ENTRY system_reset, virt=0
976
977#endif /* CONFIG_PPC_PSERIES */
978
979EXC_COMMON_BEGIN(system_reset_common)
980 __GEN_COMMON_ENTRY system_reset
981 /*
982 * Increment paca->in_nmi then enable MSR_RI. SLB or MCE will be able
983 * to recover, but nested NMI will notice in_nmi and not recover
984 * because of the use of the NMI stack. in_nmi reentrancy is tested in
985 * system_reset_exception.
986 */
987 lhz r10,PACA_IN_NMI(r13)
988 addi r10,r10,1
989 sth r10,PACA_IN_NMI(r13)
990 li r10,MSR_RI
991 mtmsrd r10,1
992
993 mr r10,r1
994 ld r1,PACA_NMI_EMERG_SP(r13)
995 subi r1,r1,INT_FRAME_SIZE
996 __GEN_COMMON_BODY system_reset
997
998 addi r3,r1,STACK_FRAME_OVERHEAD
999 bl system_reset_exception
1000
1001 /* Clear MSR_RI before setting SRR0 and SRR1. */
1002 li r9,0
1003 mtmsrd r9,1
1004
1005 /*
1006 * MSR_RI is clear, now we can decrement paca->in_nmi.
1007 */
1008 lhz r10,PACA_IN_NMI(r13)
1009 subi r10,r10,1
1010 sth r10,PACA_IN_NMI(r13)
1011
1012 kuap_kernel_restore r9, r10
1013 EXCEPTION_RESTORE_REGS
1014 RFI_TO_USER_OR_KERNEL
1015
1016
1017/**
1018 * Interrupt 0x200 - Machine Check Interrupt (MCE).
1019 * This is a non-maskable interrupt always taken in real-mode. It can be
1020 * synchronous or asynchronous, caused by hardware or software, and it may be
1021 * taken in a power-saving state.
1022 *
1023 * Handling:
1024 * Similarly to system reset, this uses its own stack and PACA save area,
1025 * the difference is re-entrancy is allowed on the machine check stack.
1026 *
1027 * machine_check_early is run in real mode, and carefully decodes the
1028 * machine check and tries to handle it (e.g., flush the SLB if there was an
1029 * error detected there), determines if it was recoverable and logs the
1030 * event.
1031 *
1032 * This early code does not "reconcile" irq soft-mask state like SRESET or
1033 * regular interrupts do, so irqs_disabled() among other things may not work
1034 * properly (irq disable/enable already doesn't work because irq tracing can
1035 * not work in real mode).
1036 *
1037 * Then, depending on the execution context when the interrupt is taken, there
1038 * are 3 main actions:
1039 * - Executing in kernel mode. The event is queued with irq_work, which means
1040 * it is handled when it is next safe to do so (i.e., the kernel has enabled
1041 * interrupts), which could be immediately when the interrupt returns. This
1042 * avoids nasty issues like switching to virtual mode when the MMU is in a
1043 * bad state, or when executing OPAL code. (SRESET is exposed to such issues,
1044 * but it has different priorities). Check to see if the CPU was in power
1045 * save, and return via the wake up code if it was.
1046 *
1047 * - Executing in user mode. machine_check_exception is run like a normal
1048 * interrupt handler, which processes the data generated by the early handler.
1049 *
1050 * - Executing in guest mode. The interrupt is run with its KVM test, and
1051 * branches to KVM to deal with. KVM may queue the event for the host
1052 * to report later.
1053 *
1054 * This interrupt is not maskable, so if it triggers when MSR[RI] is clear,
1055 * or SCRATCH0 is in use, it may cause a crash.
1056 *
1057 * KVM:
1058 * See SRESET.
1059 */
1060INT_DEFINE_BEGIN(machine_check_early)
1061 IVEC=0x200
1062 IAREA=PACA_EXMC
1063 IVIRT=0 /* no virt entry point */
1064 IREALMODE_COMMON=1
1065 /*
1066 * MSR_RI is not enabled, because PACA_EXMC is being used, so a
1067 * nested machine check corrupts it. machine_check_common enables
1068 * MSR_RI.
1069 */
1070 ISET_RI=0
1071 ISTACK=0
1072 IDAR=1
1073 IDSISR=1
1074 IKUAP=0 /* We don't touch AMR here, we never go to virtual mode */
1075INT_DEFINE_END(machine_check_early)
1076
1077INT_DEFINE_BEGIN(machine_check)
1078 IVEC=0x200
1079 IAREA=PACA_EXMC
1080 IVIRT=0 /* no virt entry point */
1081 ISET_RI=0
1082 IDAR=1
1083 IDSISR=1
1084 IKVM_REAL=1
1085INT_DEFINE_END(machine_check)
1086
1087EXC_REAL_BEGIN(machine_check, 0x200, 0x100)
1088 GEN_INT_ENTRY machine_check_early, virt=0
1089EXC_REAL_END(machine_check, 0x200, 0x100)
1090EXC_VIRT_NONE(0x4200, 0x100)
1091
1092#ifdef CONFIG_PPC_PSERIES
1093TRAMP_REAL_BEGIN(machine_check_fwnmi)
1094 /* See comment at machine_check exception, don't turn on RI */
1095 GEN_INT_ENTRY machine_check_early, virt=0
1096#endif
1097
1098#define MACHINE_CHECK_HANDLER_WINDUP \
1099 /* Clear MSR_RI before setting SRR0 and SRR1. */\
1100 li r9,0; \
1101 mtmsrd r9,1; /* Clear MSR_RI */ \
1102 /* Decrement paca->in_mce now RI is clear. */ \
1103 lhz r12,PACA_IN_MCE(r13); \
1104 subi r12,r12,1; \
1105 sth r12,PACA_IN_MCE(r13); \
1106 EXCEPTION_RESTORE_REGS
1107
1108EXC_COMMON_BEGIN(machine_check_early_common)
1109 __GEN_REALMODE_COMMON_ENTRY machine_check_early
1110
1111 /*
1112 * Switch to mc_emergency stack and handle re-entrancy (we limit
1113 * the nested MCE upto level 4 to avoid stack overflow).
1114 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
1115 *
1116 * We use paca->in_mce to check whether this is the first entry or
1117 * nested machine check. We increment paca->in_mce to track nested
1118 * machine checks.
1119 *
1120 * If this is the first entry then set stack pointer to
1121 * paca->mc_emergency_sp, otherwise r1 is already pointing to
1122 * stack frame on mc_emergency stack.
1123 *
1124 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
1125 * checkstop if we get another machine check exception before we do
1126 * rfid with MSR_ME=1.
1127 *
1128 * This interrupt can wake directly from idle. If that is the case,
1129 * the machine check is handled then the idle wakeup code is called
1130 * to restore state.
1131 */
1132 lhz r10,PACA_IN_MCE(r13)
1133 cmpwi r10,0 /* Are we in nested machine check */
1134 cmpwi cr1,r10,MAX_MCE_DEPTH /* Are we at maximum nesting */
1135 addi r10,r10,1 /* increment paca->in_mce */
1136 sth r10,PACA_IN_MCE(r13)
1137
1138 mr r10,r1 /* Save r1 */
1139 bne 1f
1140 /* First machine check entry */
1141 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
11421: /* Limit nested MCE to level 4 to avoid stack overflow */
1143 bgt cr1,unrecoverable_mce /* Check if we hit limit of 4 */
1144 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
1145
1146 __GEN_COMMON_BODY machine_check_early
1147
1148BEGIN_FTR_SECTION
1149 bl enable_machine_check
1150END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
1151 li r10,MSR_RI
1152 mtmsrd r10,1
1153
1154 addi r3,r1,STACK_FRAME_OVERHEAD
1155 bl machine_check_early
1156 std r3,RESULT(r1) /* Save result */
1157 ld r12,_MSR(r1)
1158
1159#ifdef CONFIG_PPC_P7_NAP
1160 /*
1161 * Check if thread was in power saving mode. We come here when any
1162 * of the following is true:
1163 * a. thread wasn't in power saving mode
1164 * b. thread was in power saving mode with no state loss,
1165 * supervisor state loss or hypervisor state loss.
1166 *
1167 * Go back to nap/sleep/winkle mode again if (b) is true.
1168 */
1169BEGIN_FTR_SECTION
1170 rlwinm. r11,r12,47-31,30,31
1171 bne machine_check_idle_common
1172END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
1173#endif
1174
1175#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1176 /*
1177 * Check if we are coming from guest. If yes, then run the normal
1178 * exception handler which will take the
1179 * machine_check_kvm->kvm_interrupt branch to deliver the MC event
1180 * to guest.
1181 */
1182 lbz r11,HSTATE_IN_GUEST(r13)
1183 cmpwi r11,0 /* Check if coming from guest */
1184 bne mce_deliver /* continue if we are. */
1185#endif
1186
1187 /*
1188 * Check if we are coming from userspace. If yes, then run the normal
1189 * exception handler which will deliver the MC event to this kernel.
1190 */
1191 andi. r11,r12,MSR_PR /* See if coming from user. */
1192 bne mce_deliver /* continue in V mode if we are. */
1193
1194 /*
1195 * At this point we are coming from kernel context.
1196 * Queue up the MCE event and return from the interrupt.
1197 * But before that, check if this is an un-recoverable exception.
1198 * If yes, then stay on emergency stack and panic.
1199 */
1200 andi. r11,r12,MSR_RI
1201 beq unrecoverable_mce
1202
1203 /*
1204 * Check if we have successfully handled/recovered from error, if not
1205 * then stay on emergency stack and panic.
1206 */
1207 ld r3,RESULT(r1) /* Load result */
1208 cmpdi r3,0 /* see if we handled MCE successfully */
1209 beq unrecoverable_mce /* if !handled then panic */
1210
1211 /*
1212 * Return from MC interrupt.
1213 * Queue up the MCE event so that we can log it later, while
1214 * returning from kernel or opal call.
1215 */
1216 bl machine_check_queue_event
1217 MACHINE_CHECK_HANDLER_WINDUP
1218 RFI_TO_KERNEL
1219
1220mce_deliver:
1221 /*
1222 * This is a host user or guest MCE. Restore all registers, then
1223 * run the "late" handler. For host user, this will run the
1224 * machine_check_exception handler in virtual mode like a normal
1225 * interrupt handler. For guest, this will trigger the KVM test
1226 * and branch to the KVM interrupt similarly to other interrupts.
1227 */
1228BEGIN_FTR_SECTION
1229 ld r10,ORIG_GPR3(r1)
1230 mtspr SPRN_CFAR,r10
1231END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1232 MACHINE_CHECK_HANDLER_WINDUP
1233 GEN_INT_ENTRY machine_check, virt=0
1234
1235EXC_COMMON_BEGIN(machine_check_common)
1236 /*
1237 * Machine check is different because we use a different
1238 * save area: PACA_EXMC instead of PACA_EXGEN.
1239 */
1240 GEN_COMMON machine_check
1241
1242 /* Enable MSR_RI when finished with PACA_EXMC */
1243 li r10,MSR_RI
1244 mtmsrd r10,1
1245 addi r3,r1,STACK_FRAME_OVERHEAD
1246 bl machine_check_exception_async
1247 b interrupt_return_srr
1248
1249
1250#ifdef CONFIG_PPC_P7_NAP
1251/*
1252 * This is an idle wakeup. Low level machine check has already been
1253 * done. Queue the event then call the idle code to do the wake up.
1254 */
1255EXC_COMMON_BEGIN(machine_check_idle_common)
1256 bl machine_check_queue_event
1257
1258 /*
1259 * GPR-loss wakeups are relatively straightforward, because the
1260 * idle sleep code has saved all non-volatile registers on its
1261 * own stack, and r1 in PACAR1.
1262 *
1263 * For no-loss wakeups the r1 and lr registers used by the
1264 * early machine check handler have to be restored first. r2 is
1265 * the kernel TOC, so no need to restore it.
1266 *
1267 * Then decrement MCE nesting after finishing with the stack.
1268 */
1269 ld r3,_MSR(r1)
1270 ld r4,_LINK(r1)
1271 ld r1,GPR1(r1)
1272
1273 lhz r11,PACA_IN_MCE(r13)
1274 subi r11,r11,1
1275 sth r11,PACA_IN_MCE(r13)
1276
1277 mtlr r4
1278 rlwinm r10,r3,47-31,30,31
1279 cmpwi cr1,r10,2
1280 bltlr cr1 /* no state loss, return to idle caller with r3=SRR1 */
1281 b idle_return_gpr_loss
1282#endif
1283
1284EXC_COMMON_BEGIN(unrecoverable_mce)
1285 /*
1286 * We are going down. But there are chances that we might get hit by
1287 * another MCE during panic path and we may run into unstable state
1288 * with no way out. Hence, turn ME bit off while going down, so that
1289 * when another MCE is hit during panic path, system will checkstop
1290 * and hypervisor will get restarted cleanly by SP.
1291 */
1292BEGIN_FTR_SECTION
1293 li r10,0 /* clear MSR_RI */
1294 mtmsrd r10,1
1295 bl disable_machine_check
1296END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
1297 ld r10,PACAKMSR(r13)
1298 li r3,MSR_ME
1299 andc r10,r10,r3
1300 mtmsrd r10
1301
1302 lhz r12,PACA_IN_MCE(r13)
1303 subi r12,r12,1
1304 sth r12,PACA_IN_MCE(r13)
1305
1306 /*
1307 * Invoke machine_check_exception to print MCE event and panic.
1308 * This is the NMI version of the handler because we are called from
1309 * the early handler which is a true NMI.
1310 */
1311 addi r3,r1,STACK_FRAME_OVERHEAD
1312 bl machine_check_exception
1313
1314 /*
1315 * We will not reach here. Even if we did, there is no way out.
1316 * Call unrecoverable_exception and die.
1317 */
1318 addi r3,r1,STACK_FRAME_OVERHEAD
1319 bl unrecoverable_exception
1320 b .
1321
1322
1323/**
1324 * Interrupt 0x300 - Data Storage Interrupt (DSI).
1325 * This is a synchronous interrupt generated due to a data access exception,
1326 * e.g., a load orstore which does not have a valid page table entry with
1327 * permissions. DAWR matches also fault here, as do RC updates, and minor misc
1328 * errors e.g., copy/paste, AMO, certain invalid CI accesses, etc.
1329 *
1330 * Handling:
1331 * - Hash MMU
1332 * Go to do_hash_fault, which attempts to fill the HPT from an entry in the
1333 * Linux page table. Hash faults can hit in kernel mode in a fairly
1334 * arbitrary state (e.g., interrupts disabled, locks held) when accessing
1335 * "non-bolted" regions, e.g., vmalloc space. However these should always be
1336 * backed by Linux page table entries.
1337 *
1338 * If no entry is found the Linux page fault handler is invoked (by
1339 * do_hash_fault). Linux page faults can happen in kernel mode due to user
1340 * copy operations of course.
1341 *
1342 * KVM: The KVM HDSI handler may perform a load with MSR[DR]=1 in guest
1343 * MMU context, which may cause a DSI in the host, which must go to the
1344 * KVM handler. MSR[IR] is not enabled, so the real-mode handler will
1345 * always be used regardless of AIL setting.
1346 *
1347 * - Radix MMU
1348 * The hardware loads from the Linux page table directly, so a fault goes
1349 * immediately to Linux page fault.
1350 *
1351 * Conditions like DAWR match are handled on the way in to Linux page fault.
1352 */
1353INT_DEFINE_BEGIN(data_access)
1354 IVEC=0x300
1355 IDAR=1
1356 IDSISR=1
1357 IKVM_REAL=1
1358INT_DEFINE_END(data_access)
1359
1360EXC_REAL_BEGIN(data_access, 0x300, 0x80)
1361 GEN_INT_ENTRY data_access, virt=0
1362EXC_REAL_END(data_access, 0x300, 0x80)
1363EXC_VIRT_BEGIN(data_access, 0x4300, 0x80)
1364 GEN_INT_ENTRY data_access, virt=1
1365EXC_VIRT_END(data_access, 0x4300, 0x80)
1366EXC_COMMON_BEGIN(data_access_common)
1367 GEN_COMMON data_access
1368 ld r4,_DSISR(r1)
1369 addi r3,r1,STACK_FRAME_OVERHEAD
1370 andis. r0,r4,DSISR_DABRMATCH@h
1371 bne- 1f
1372BEGIN_MMU_FTR_SECTION
1373 bl do_hash_fault
1374MMU_FTR_SECTION_ELSE
1375 bl do_page_fault
1376ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1377 b interrupt_return_srr
1378
13791: bl do_break
1380 /*
1381 * do_break() may have changed the NV GPRS while handling a breakpoint.
1382 * If so, we need to restore them with their updated values.
1383 */
1384 REST_NVGPRS(r1)
1385 b interrupt_return_srr
1386
1387
1388/**
1389 * Interrupt 0x380 - Data Segment Interrupt (DSLB).
1390 * This is a synchronous interrupt in response to an MMU fault missing SLB
1391 * entry for HPT, or an address outside RPT translation range.
1392 *
1393 * Handling:
1394 * - HPT:
1395 * This refills the SLB, or reports an access fault similarly to a bad page
1396 * fault. When coming from user-mode, the SLB handler may access any kernel
1397 * data, though it may itself take a DSLB. When coming from kernel mode,
1398 * recursive faults must be avoided so access is restricted to the kernel
1399 * image text/data, kernel stack, and any data allocated below
1400 * ppc64_bolted_size (first segment). The kernel handler must avoid stomping
1401 * on user-handler data structures.
1402 *
1403 * KVM: Same as 0x300, DSLB must test for KVM guest.
1404 */
1405INT_DEFINE_BEGIN(data_access_slb)
1406 IVEC=0x380
1407 IDAR=1
1408 IKVM_REAL=1
1409INT_DEFINE_END(data_access_slb)
1410
1411EXC_REAL_BEGIN(data_access_slb, 0x380, 0x80)
1412 GEN_INT_ENTRY data_access_slb, virt=0
1413EXC_REAL_END(data_access_slb, 0x380, 0x80)
1414EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x80)
1415 GEN_INT_ENTRY data_access_slb, virt=1
1416EXC_VIRT_END(data_access_slb, 0x4380, 0x80)
1417EXC_COMMON_BEGIN(data_access_slb_common)
1418 GEN_COMMON data_access_slb
1419BEGIN_MMU_FTR_SECTION
1420 /* HPT case, do SLB fault */
1421 addi r3,r1,STACK_FRAME_OVERHEAD
1422 bl do_slb_fault
1423 cmpdi r3,0
1424 bne- 1f
1425 b fast_interrupt_return_srr
14261: /* Error case */
1427MMU_FTR_SECTION_ELSE
1428 /* Radix case, access is outside page table range */
1429 li r3,-EFAULT
1430ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1431 std r3,RESULT(r1)
1432 addi r3,r1,STACK_FRAME_OVERHEAD
1433 bl do_bad_slb_fault
1434 b interrupt_return_srr
1435
1436
1437/**
1438 * Interrupt 0x400 - Instruction Storage Interrupt (ISI).
1439 * This is a synchronous interrupt in response to an MMU fault due to an
1440 * instruction fetch.
1441 *
1442 * Handling:
1443 * Similar to DSI, though in response to fetch. The faulting address is found
1444 * in SRR0 (rather than DAR), and status in SRR1 (rather than DSISR).
1445 */
1446INT_DEFINE_BEGIN(instruction_access)
1447 IVEC=0x400
1448 IISIDE=1
1449 IDAR=1
1450 IDSISR=1
1451#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1452 IKVM_REAL=1
1453#endif
1454INT_DEFINE_END(instruction_access)
1455
1456EXC_REAL_BEGIN(instruction_access, 0x400, 0x80)
1457 GEN_INT_ENTRY instruction_access, virt=0
1458EXC_REAL_END(instruction_access, 0x400, 0x80)
1459EXC_VIRT_BEGIN(instruction_access, 0x4400, 0x80)
1460 GEN_INT_ENTRY instruction_access, virt=1
1461EXC_VIRT_END(instruction_access, 0x4400, 0x80)
1462EXC_COMMON_BEGIN(instruction_access_common)
1463 GEN_COMMON instruction_access
1464 addi r3,r1,STACK_FRAME_OVERHEAD
1465BEGIN_MMU_FTR_SECTION
1466 bl do_hash_fault
1467MMU_FTR_SECTION_ELSE
1468 bl do_page_fault
1469ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1470 b interrupt_return_srr
1471
1472
1473/**
1474 * Interrupt 0x480 - Instruction Segment Interrupt (ISLB).
1475 * This is a synchronous interrupt in response to an MMU fault due to an
1476 * instruction fetch.
1477 *
1478 * Handling:
1479 * Similar to DSLB, though in response to fetch. The faulting address is found
1480 * in SRR0 (rather than DAR).
1481 */
1482INT_DEFINE_BEGIN(instruction_access_slb)
1483 IVEC=0x480
1484 IISIDE=1
1485 IDAR=1
1486#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1487 IKVM_REAL=1
1488#endif
1489INT_DEFINE_END(instruction_access_slb)
1490
1491EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x80)
1492 GEN_INT_ENTRY instruction_access_slb, virt=0
1493EXC_REAL_END(instruction_access_slb, 0x480, 0x80)
1494EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x80)
1495 GEN_INT_ENTRY instruction_access_slb, virt=1
1496EXC_VIRT_END(instruction_access_slb, 0x4480, 0x80)
1497EXC_COMMON_BEGIN(instruction_access_slb_common)
1498 GEN_COMMON instruction_access_slb
1499BEGIN_MMU_FTR_SECTION
1500 /* HPT case, do SLB fault */
1501 addi r3,r1,STACK_FRAME_OVERHEAD
1502 bl do_slb_fault
1503 cmpdi r3,0
1504 bne- 1f
1505 b fast_interrupt_return_srr
15061: /* Error case */
1507MMU_FTR_SECTION_ELSE
1508 /* Radix case, access is outside page table range */
1509 li r3,-EFAULT
1510ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1511 std r3,RESULT(r1)
1512 addi r3,r1,STACK_FRAME_OVERHEAD
1513 bl do_bad_slb_fault
1514 b interrupt_return_srr
1515
1516
1517/**
1518 * Interrupt 0x500 - External Interrupt.
1519 * This is an asynchronous maskable interrupt in response to an "external
1520 * exception" from the interrupt controller or hypervisor (e.g., device
1521 * interrupt). It is maskable in hardware by clearing MSR[EE], and
1522 * soft-maskable with IRQS_DISABLED mask (i.e., local_irq_disable()).
1523 *
1524 * When running in HV mode, Linux sets up the LPCR[LPES] bit such that
1525 * interrupts are delivered with HSRR registers, guests use SRRs, which
1526 * reqiures IHSRR_IF_HVMODE.
1527 *
1528 * On bare metal POWER9 and later, Linux sets the LPCR[HVICE] bit such that
1529 * external interrupts are delivered as Hypervisor Virtualization Interrupts
1530 * rather than External Interrupts.
1531 *
1532 * Handling:
1533 * This calls into Linux IRQ handler. NVGPRs are not saved to reduce overhead,
1534 * because registers at the time of the interrupt are not so important as it is
1535 * asynchronous.
1536 *
1537 * If soft masked, the masked handler will note the pending interrupt for
1538 * replay, and clear MSR[EE] in the interrupted context.
1539 */
1540INT_DEFINE_BEGIN(hardware_interrupt)
1541 IVEC=0x500
1542 IHSRR_IF_HVMODE=1
1543 IMASK=IRQS_DISABLED
1544 IKVM_REAL=1
1545 IKVM_VIRT=1
1546INT_DEFINE_END(hardware_interrupt)
1547
1548EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x100)
1549 GEN_INT_ENTRY hardware_interrupt, virt=0
1550EXC_REAL_END(hardware_interrupt, 0x500, 0x100)
1551EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x100)
1552 GEN_INT_ENTRY hardware_interrupt, virt=1
1553EXC_VIRT_END(hardware_interrupt, 0x4500, 0x100)
1554EXC_COMMON_BEGIN(hardware_interrupt_common)
1555 GEN_COMMON hardware_interrupt
1556 addi r3,r1,STACK_FRAME_OVERHEAD
1557 bl do_IRQ
1558 BEGIN_FTR_SECTION
1559 b interrupt_return_hsrr
1560 FTR_SECTION_ELSE
1561 b interrupt_return_srr
1562 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
1563
1564
1565/**
1566 * Interrupt 0x600 - Alignment Interrupt
1567 * This is a synchronous interrupt in response to data alignment fault.
1568 */
1569INT_DEFINE_BEGIN(alignment)
1570 IVEC=0x600
1571 IDAR=1
1572 IDSISR=1
1573#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1574 IKVM_REAL=1
1575#endif
1576INT_DEFINE_END(alignment)
1577
1578EXC_REAL_BEGIN(alignment, 0x600, 0x100)
1579 GEN_INT_ENTRY alignment, virt=0
1580EXC_REAL_END(alignment, 0x600, 0x100)
1581EXC_VIRT_BEGIN(alignment, 0x4600, 0x100)
1582 GEN_INT_ENTRY alignment, virt=1
1583EXC_VIRT_END(alignment, 0x4600, 0x100)
1584EXC_COMMON_BEGIN(alignment_common)
1585 GEN_COMMON alignment
1586 addi r3,r1,STACK_FRAME_OVERHEAD
1587 bl alignment_exception
1588 REST_NVGPRS(r1) /* instruction emulation may change GPRs */
1589 b interrupt_return_srr
1590
1591
1592/**
1593 * Interrupt 0x700 - Program Interrupt (program check).
1594 * This is a synchronous interrupt in response to various instruction faults:
1595 * traps, privilege errors, TM errors, floating point exceptions.
1596 *
1597 * Handling:
1598 * This interrupt may use the "emergency stack" in some cases when being taken
1599 * from kernel context, which complicates handling.
1600 */
1601INT_DEFINE_BEGIN(program_check)
1602 IVEC=0x700
1603#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1604 IKVM_REAL=1
1605#endif
1606INT_DEFINE_END(program_check)
1607
1608EXC_REAL_BEGIN(program_check, 0x700, 0x100)
1609
1610#ifdef CONFIG_CPU_LITTLE_ENDIAN
1611 /*
1612 * There's a short window during boot where although the kernel is
1613 * running little endian, any exceptions will cause the CPU to switch
1614 * back to big endian. For example a WARN() boils down to a trap
1615 * instruction, which will cause a program check, and we end up here but
1616 * with the CPU in big endian mode. The first instruction of the program
1617 * check handler (in GEN_INT_ENTRY below) is an mtsprg, which when
1618 * executed in the wrong endian is an lhzu with a ~3GB displacement from
1619 * r3. The content of r3 is random, so that is a load from some random
1620 * location, and depending on the system can easily lead to a checkstop,
1621 * or an infinitely recursive page fault.
1622 *
1623 * So to handle that case we have a trampoline here that can detect we
1624 * are in the wrong endian and flip us back to the correct endian. We
1625 * can't flip MSR[LE] using mtmsr, so we have to use rfid. That requires
1626 * backing up SRR0/1 as well as a GPR. To do that we use SPRG0/2/3, as
1627 * SPRG1 is already used for the paca. SPRG3 is user readable, but this
1628 * trampoline is only active very early in boot, and SPRG3 will be
1629 * reinitialised in vdso_getcpu_init() before userspace starts.
1630 */
1631BEGIN_FTR_SECTION
1632 tdi 0,0,0x48 // Trap never, or in reverse endian: b . + 8
1633 b 1f // Skip trampoline if endian is correct
1634 .long 0xa643707d // mtsprg 0, r11 Backup r11
1635 .long 0xa6027a7d // mfsrr0 r11
1636 .long 0xa643727d // mtsprg 2, r11 Backup SRR0 in SPRG2
1637 .long 0xa6027b7d // mfsrr1 r11
1638 .long 0xa643737d // mtsprg 3, r11 Backup SRR1 in SPRG3
1639 .long 0xa600607d // mfmsr r11
1640 .long 0x01006b69 // xori r11, r11, 1 Invert MSR[LE]
1641 .long 0xa6037b7d // mtsrr1 r11
1642 .long 0x34076039 // li r11, 0x734
1643 .long 0xa6037a7d // mtsrr0 r11
1644 .long 0x2400004c // rfid
1645 mfsprg r11, 3
1646 mtsrr1 r11 // Restore SRR1
1647 mfsprg r11, 2
1648 mtsrr0 r11 // Restore SRR0
1649 mfsprg r11, 0 // Restore r11
16501:
1651END_FTR_SECTION(0, 1) // nop out after boot
1652#endif /* CONFIG_CPU_LITTLE_ENDIAN */
1653
1654 GEN_INT_ENTRY program_check, virt=0
1655EXC_REAL_END(program_check, 0x700, 0x100)
1656EXC_VIRT_BEGIN(program_check, 0x4700, 0x100)
1657 GEN_INT_ENTRY program_check, virt=1
1658EXC_VIRT_END(program_check, 0x4700, 0x100)
1659EXC_COMMON_BEGIN(program_check_common)
1660 __GEN_COMMON_ENTRY program_check
1661
1662 /*
1663 * It's possible to receive a TM Bad Thing type program check with
1664 * userspace register values (in particular r1), but with SRR1 reporting
1665 * that we came from the kernel. Normally that would confuse the bad
1666 * stack logic, and we would report a bad kernel stack pointer. Instead
1667 * we switch to the emergency stack if we're taking a TM Bad Thing from
1668 * the kernel.
1669 */
1670
1671 andi. r10,r12,MSR_PR
1672 bne .Lnormal_stack /* If userspace, go normal path */
1673
1674 andis. r10,r12,(SRR1_PROGTM)@h
1675 bne .Lemergency_stack /* If TM, emergency */
1676
1677 cmpdi r1,-INT_FRAME_SIZE /* check if r1 is in userspace */
1678 blt .Lnormal_stack /* normal path if not */
1679
1680 /* Use the emergency stack */
1681.Lemergency_stack:
1682 andi. r10,r12,MSR_PR /* Set CR0 correctly for label */
1683 /* 3 in EXCEPTION_PROLOG_COMMON */
1684 mr r10,r1 /* Save r1 */
1685 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
1686 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
1687 __ISTACK(program_check)=0
1688 __GEN_COMMON_BODY program_check
1689 b .Ldo_program_check
1690
1691.Lnormal_stack:
1692 __ISTACK(program_check)=1
1693 __GEN_COMMON_BODY program_check
1694
1695.Ldo_program_check:
1696 addi r3,r1,STACK_FRAME_OVERHEAD
1697 bl program_check_exception
1698 REST_NVGPRS(r1) /* instruction emulation may change GPRs */
1699 b interrupt_return_srr
1700
1701
1702/*
1703 * Interrupt 0x800 - Floating-Point Unavailable Interrupt.
1704 * This is a synchronous interrupt in response to executing an fp instruction
1705 * with MSR[FP]=0.
1706 *
1707 * Handling:
1708 * This will load FP registers and enable the FP bit if coming from userspace,
1709 * otherwise report a bad kernel use of FP.
1710 */
1711INT_DEFINE_BEGIN(fp_unavailable)
1712 IVEC=0x800
1713#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1714 IKVM_REAL=1
1715#endif
1716INT_DEFINE_END(fp_unavailable)
1717
1718EXC_REAL_BEGIN(fp_unavailable, 0x800, 0x100)
1719 GEN_INT_ENTRY fp_unavailable, virt=0
1720EXC_REAL_END(fp_unavailable, 0x800, 0x100)
1721EXC_VIRT_BEGIN(fp_unavailable, 0x4800, 0x100)
1722 GEN_INT_ENTRY fp_unavailable, virt=1
1723EXC_VIRT_END(fp_unavailable, 0x4800, 0x100)
1724EXC_COMMON_BEGIN(fp_unavailable_common)
1725 GEN_COMMON fp_unavailable
1726 bne 1f /* if from user, just load it up */
1727 addi r3,r1,STACK_FRAME_OVERHEAD
1728 bl kernel_fp_unavailable_exception
17290: trap
1730 EMIT_BUG_ENTRY 0b, __FILE__, __LINE__, 0
17311:
1732#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1733BEGIN_FTR_SECTION
1734 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1735 * transaction), go do TM stuff
1736 */
1737 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1738 bne- 2f
1739END_FTR_SECTION_IFSET(CPU_FTR_TM)
1740#endif
1741 bl load_up_fpu
1742 b fast_interrupt_return_srr
1743#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
17442: /* User process was in a transaction */
1745 addi r3,r1,STACK_FRAME_OVERHEAD
1746 bl fp_unavailable_tm
1747 b interrupt_return_srr
1748#endif
1749
1750
1751/**
1752 * Interrupt 0x900 - Decrementer Interrupt.
1753 * This is an asynchronous interrupt in response to a decrementer exception
1754 * (e.g., DEC has wrapped below zero). It is maskable in hardware by clearing
1755 * MSR[EE], and soft-maskable with IRQS_DISABLED mask (i.e.,
1756 * local_irq_disable()).
1757 *
1758 * Handling:
1759 * This calls into Linux timer handler. NVGPRs are not saved (see 0x500).
1760 *
1761 * If soft masked, the masked handler will note the pending interrupt for
1762 * replay, and bump the decrementer to a high value, leaving MSR[EE] enabled
1763 * in the interrupted context.
1764 * If PPC_WATCHDOG is configured, the soft masked handler will actually set
1765 * things back up to run soft_nmi_interrupt as a regular interrupt handler
1766 * on the emergency stack.
1767 */
1768INT_DEFINE_BEGIN(decrementer)
1769 IVEC=0x900
1770 IMASK=IRQS_DISABLED
1771#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1772 IKVM_REAL=1
1773#endif
1774INT_DEFINE_END(decrementer)
1775
1776EXC_REAL_BEGIN(decrementer, 0x900, 0x80)
1777 GEN_INT_ENTRY decrementer, virt=0
1778EXC_REAL_END(decrementer, 0x900, 0x80)
1779EXC_VIRT_BEGIN(decrementer, 0x4900, 0x80)
1780 GEN_INT_ENTRY decrementer, virt=1
1781EXC_VIRT_END(decrementer, 0x4900, 0x80)
1782EXC_COMMON_BEGIN(decrementer_common)
1783 GEN_COMMON decrementer
1784 addi r3,r1,STACK_FRAME_OVERHEAD
1785 bl timer_interrupt
1786 b interrupt_return_srr
1787
1788
1789/**
1790 * Interrupt 0x980 - Hypervisor Decrementer Interrupt.
1791 * This is an asynchronous interrupt, similar to 0x900 but for the HDEC
1792 * register.
1793 *
1794 * Handling:
1795 * Linux does not use this outside KVM where it's used to keep a host timer
1796 * while the guest is given control of DEC. It should normally be caught by
1797 * the KVM test and routed there.
1798 */
1799INT_DEFINE_BEGIN(hdecrementer)
1800 IVEC=0x980
1801 IHSRR=1
1802 ISTACK=0
1803 IKVM_REAL=1
1804 IKVM_VIRT=1
1805INT_DEFINE_END(hdecrementer)
1806
1807EXC_REAL_BEGIN(hdecrementer, 0x980, 0x80)
1808 GEN_INT_ENTRY hdecrementer, virt=0
1809EXC_REAL_END(hdecrementer, 0x980, 0x80)
1810EXC_VIRT_BEGIN(hdecrementer, 0x4980, 0x80)
1811 GEN_INT_ENTRY hdecrementer, virt=1
1812EXC_VIRT_END(hdecrementer, 0x4980, 0x80)
1813EXC_COMMON_BEGIN(hdecrementer_common)
1814 __GEN_COMMON_ENTRY hdecrementer
1815 /*
1816 * Hypervisor decrementer interrupts not caught by the KVM test
1817 * shouldn't occur but are sometimes left pending on exit from a KVM
1818 * guest. We don't need to do anything to clear them, as they are
1819 * edge-triggered.
1820 *
1821 * Be careful to avoid touching the kernel stack.
1822 */
1823 li r10,0
1824 stb r10,PACAHSRR_VALID(r13)
1825 ld r10,PACA_EXGEN+EX_CTR(r13)
1826 mtctr r10
1827 mtcrf 0x80,r9
1828 ld r9,PACA_EXGEN+EX_R9(r13)
1829 ld r10,PACA_EXGEN+EX_R10(r13)
1830 ld r11,PACA_EXGEN+EX_R11(r13)
1831 ld r12,PACA_EXGEN+EX_R12(r13)
1832 ld r13,PACA_EXGEN+EX_R13(r13)
1833 HRFI_TO_KERNEL
1834
1835
1836/**
1837 * Interrupt 0xa00 - Directed Privileged Doorbell Interrupt.
1838 * This is an asynchronous interrupt in response to a msgsndp doorbell.
1839 * It is maskable in hardware by clearing MSR[EE], and soft-maskable with
1840 * IRQS_DISABLED mask (i.e., local_irq_disable()).
1841 *
1842 * Handling:
1843 * Guests may use this for IPIs between threads in a core if the
1844 * hypervisor supports it. NVGPRS are not saved (see 0x500).
1845 *
1846 * If soft masked, the masked handler will note the pending interrupt for
1847 * replay, leaving MSR[EE] enabled in the interrupted context because the
1848 * doorbells are edge triggered.
1849 */
1850INT_DEFINE_BEGIN(doorbell_super)
1851 IVEC=0xa00
1852 IMASK=IRQS_DISABLED
1853#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
1854 IKVM_REAL=1
1855#endif
1856INT_DEFINE_END(doorbell_super)
1857
1858EXC_REAL_BEGIN(doorbell_super, 0xa00, 0x100)
1859 GEN_INT_ENTRY doorbell_super, virt=0
1860EXC_REAL_END(doorbell_super, 0xa00, 0x100)
1861EXC_VIRT_BEGIN(doorbell_super, 0x4a00, 0x100)
1862 GEN_INT_ENTRY doorbell_super, virt=1
1863EXC_VIRT_END(doorbell_super, 0x4a00, 0x100)
1864EXC_COMMON_BEGIN(doorbell_super_common)
1865 GEN_COMMON doorbell_super
1866 addi r3,r1,STACK_FRAME_OVERHEAD
1867#ifdef CONFIG_PPC_DOORBELL
1868 bl doorbell_exception
1869#else
1870 bl unknown_async_exception
1871#endif
1872 b interrupt_return_srr
1873
1874
1875EXC_REAL_NONE(0xb00, 0x100)
1876EXC_VIRT_NONE(0x4b00, 0x100)
1877
1878/**
1879 * Interrupt 0xc00 - System Call Interrupt (syscall, hcall).
1880 * This is a synchronous interrupt invoked with the "sc" instruction. The
1881 * system call is invoked with "sc 0" and does not alter the HV bit, so it
1882 * is directed to the currently running OS. The hypercall is invoked with
1883 * "sc 1" and it sets HV=1, so it elevates to hypervisor.
1884 *
1885 * In HPT, sc 1 always goes to 0xc00 real mode. In RADIX, sc 1 can go to
1886 * 0x4c00 virtual mode.
1887 *
1888 * Handling:
1889 * If the KVM test fires then it was due to a hypercall and is accordingly
1890 * routed to KVM. Otherwise this executes a normal Linux system call.
1891 *
1892 * Call convention:
1893 *
1894 * syscall and hypercalls register conventions are documented in
1895 * Documentation/powerpc/syscall64-abi.rst and
1896 * Documentation/powerpc/papr_hcalls.rst respectively.
1897 *
1898 * The intersection of volatile registers that don't contain possible
1899 * inputs is: cr0, xer, ctr. We may use these as scratch regs upon entry
1900 * without saving, though xer is not a good idea to use, as hardware may
1901 * interpret some bits so it may be costly to change them.
1902 */
1903INT_DEFINE_BEGIN(system_call)
1904 IVEC=0xc00
1905 IKVM_REAL=1
1906 IKVM_VIRT=1
1907INT_DEFINE_END(system_call)
1908
1909.macro SYSTEM_CALL virt
1910#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1911 /*
1912 * There is a little bit of juggling to get syscall and hcall
1913 * working well. Save r13 in ctr to avoid using SPRG scratch
1914 * register.
1915 *
1916 * Userspace syscalls have already saved the PPR, hcalls must save
1917 * it before setting HMT_MEDIUM.
1918 */
1919 mtctr r13
1920 GET_PACA(r13)
1921 std r10,PACA_EXGEN+EX_R10(r13)
1922 INTERRUPT_TO_KERNEL
1923 KVMTEST system_call kvm_hcall /* uses r10, branch to kvm_hcall */
1924 mfctr r9
1925#else
1926 mr r9,r13
1927 GET_PACA(r13)
1928 INTERRUPT_TO_KERNEL
1929#endif
1930
1931#ifdef CONFIG_PPC_FAST_ENDIAN_SWITCH
1932BEGIN_FTR_SECTION
1933 cmpdi r0,0x1ebe
1934 beq- 1f
1935END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)
1936#endif
1937
1938 /* We reach here with PACA in r13, r13 in r9. */
1939 mfspr r11,SPRN_SRR0
1940 mfspr r12,SPRN_SRR1
1941
1942 HMT_MEDIUM
1943
1944 .if ! \virt
1945 __LOAD_HANDLER(r10, system_call_common_real)
1946 mtctr r10
1947 bctr
1948 .else
1949#ifdef CONFIG_RELOCATABLE
1950 __LOAD_HANDLER(r10, system_call_common)
1951 mtctr r10
1952 bctr
1953#else
1954 b system_call_common
1955#endif
1956 .endif
1957
1958#ifdef CONFIG_PPC_FAST_ENDIAN_SWITCH
1959 /* Fast LE/BE switch system call */
19601: mfspr r12,SPRN_SRR1
1961 xori r12,r12,MSR_LE
1962 mtspr SPRN_SRR1,r12
1963 mr r13,r9
1964 RFI_TO_USER /* return to userspace */
1965 b . /* prevent speculative execution */
1966#endif
1967.endm
1968
1969EXC_REAL_BEGIN(system_call, 0xc00, 0x100)
1970 SYSTEM_CALL 0
1971EXC_REAL_END(system_call, 0xc00, 0x100)
1972EXC_VIRT_BEGIN(system_call, 0x4c00, 0x100)
1973 SYSTEM_CALL 1
1974EXC_VIRT_END(system_call, 0x4c00, 0x100)
1975
1976#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1977TRAMP_REAL_BEGIN(kvm_hcall)
1978 std r9,PACA_EXGEN+EX_R9(r13)
1979 std r11,PACA_EXGEN+EX_R11(r13)
1980 std r12,PACA_EXGEN+EX_R12(r13)
1981 mfcr r9
1982 mfctr r10
1983 std r10,PACA_EXGEN+EX_R13(r13)
1984 li r10,0
1985 std r10,PACA_EXGEN+EX_CFAR(r13)
1986 std r10,PACA_EXGEN+EX_CTR(r13)
1987 /*
1988 * Save the PPR (on systems that support it) before changing to
1989 * HMT_MEDIUM. That allows the KVM code to save that value into the
1990 * guest state (it is the guest's PPR value).
1991 */
1992BEGIN_FTR_SECTION
1993 mfspr r10,SPRN_PPR
1994 std r10,PACA_EXGEN+EX_PPR(r13)
1995END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
1996
1997 HMT_MEDIUM
1998
1999#ifdef CONFIG_RELOCATABLE
2000 /*
2001 * Requires __LOAD_FAR_HANDLER beause kvmppc_hcall lives
2002 * outside the head section.
2003 */
2004 __LOAD_FAR_HANDLER(r10, kvmppc_hcall)
2005 mtctr r10
2006 bctr
2007#else
2008 b kvmppc_hcall
2009#endif
2010#endif
2011
2012/**
2013 * Interrupt 0xd00 - Trace Interrupt.
2014 * This is a synchronous interrupt in response to instruction step or
2015 * breakpoint faults.
2016 */
2017INT_DEFINE_BEGIN(single_step)
2018 IVEC=0xd00
2019#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2020 IKVM_REAL=1
2021#endif
2022INT_DEFINE_END(single_step)
2023
2024EXC_REAL_BEGIN(single_step, 0xd00, 0x100)
2025 GEN_INT_ENTRY single_step, virt=0
2026EXC_REAL_END(single_step, 0xd00, 0x100)
2027EXC_VIRT_BEGIN(single_step, 0x4d00, 0x100)
2028 GEN_INT_ENTRY single_step, virt=1
2029EXC_VIRT_END(single_step, 0x4d00, 0x100)
2030EXC_COMMON_BEGIN(single_step_common)
2031 GEN_COMMON single_step
2032 addi r3,r1,STACK_FRAME_OVERHEAD
2033 bl single_step_exception
2034 b interrupt_return_srr
2035
2036
2037/**
2038 * Interrupt 0xe00 - Hypervisor Data Storage Interrupt (HDSI).
2039 * This is a synchronous interrupt in response to an MMU fault caused by a
2040 * guest data access.
2041 *
2042 * Handling:
2043 * This should always get routed to KVM. In radix MMU mode, this is caused
2044 * by a guest nested radix access that can't be performed due to the
2045 * partition scope page table. In hash mode, this can be caused by guests
2046 * running with translation disabled (virtual real mode) or with VPM enabled.
2047 * KVM will update the page table structures or disallow the access.
2048 */
2049INT_DEFINE_BEGIN(h_data_storage)
2050 IVEC=0xe00
2051 IHSRR=1
2052 IDAR=1
2053 IDSISR=1
2054 IKVM_REAL=1
2055 IKVM_VIRT=1
2056INT_DEFINE_END(h_data_storage)
2057
2058EXC_REAL_BEGIN(h_data_storage, 0xe00, 0x20)
2059 GEN_INT_ENTRY h_data_storage, virt=0, ool=1
2060EXC_REAL_END(h_data_storage, 0xe00, 0x20)
2061EXC_VIRT_BEGIN(h_data_storage, 0x4e00, 0x20)
2062 GEN_INT_ENTRY h_data_storage, virt=1, ool=1
2063EXC_VIRT_END(h_data_storage, 0x4e00, 0x20)
2064EXC_COMMON_BEGIN(h_data_storage_common)
2065 GEN_COMMON h_data_storage
2066 addi r3,r1,STACK_FRAME_OVERHEAD
2067BEGIN_MMU_FTR_SECTION
2068 bl do_bad_page_fault_segv
2069MMU_FTR_SECTION_ELSE
2070 bl unknown_exception
2071ALT_MMU_FTR_SECTION_END_IFSET(MMU_FTR_TYPE_RADIX)
2072 b interrupt_return_hsrr
2073
2074
2075/**
2076 * Interrupt 0xe20 - Hypervisor Instruction Storage Interrupt (HISI).
2077 * This is a synchronous interrupt in response to an MMU fault caused by a
2078 * guest instruction fetch, similar to HDSI.
2079 */
2080INT_DEFINE_BEGIN(h_instr_storage)
2081 IVEC=0xe20
2082 IHSRR=1
2083 IKVM_REAL=1
2084 IKVM_VIRT=1
2085INT_DEFINE_END(h_instr_storage)
2086
2087EXC_REAL_BEGIN(h_instr_storage, 0xe20, 0x20)
2088 GEN_INT_ENTRY h_instr_storage, virt=0, ool=1
2089EXC_REAL_END(h_instr_storage, 0xe20, 0x20)
2090EXC_VIRT_BEGIN(h_instr_storage, 0x4e20, 0x20)
2091 GEN_INT_ENTRY h_instr_storage, virt=1, ool=1
2092EXC_VIRT_END(h_instr_storage, 0x4e20, 0x20)
2093EXC_COMMON_BEGIN(h_instr_storage_common)
2094 GEN_COMMON h_instr_storage
2095 addi r3,r1,STACK_FRAME_OVERHEAD
2096 bl unknown_exception
2097 b interrupt_return_hsrr
2098
2099
2100/**
2101 * Interrupt 0xe40 - Hypervisor Emulation Assistance Interrupt.
2102 */
2103INT_DEFINE_BEGIN(emulation_assist)
2104 IVEC=0xe40
2105 IHSRR=1
2106 IKVM_REAL=1
2107 IKVM_VIRT=1
2108INT_DEFINE_END(emulation_assist)
2109
2110EXC_REAL_BEGIN(emulation_assist, 0xe40, 0x20)
2111 GEN_INT_ENTRY emulation_assist, virt=0, ool=1
2112EXC_REAL_END(emulation_assist, 0xe40, 0x20)
2113EXC_VIRT_BEGIN(emulation_assist, 0x4e40, 0x20)
2114 GEN_INT_ENTRY emulation_assist, virt=1, ool=1
2115EXC_VIRT_END(emulation_assist, 0x4e40, 0x20)
2116EXC_COMMON_BEGIN(emulation_assist_common)
2117 GEN_COMMON emulation_assist
2118 addi r3,r1,STACK_FRAME_OVERHEAD
2119 bl emulation_assist_interrupt
2120 REST_NVGPRS(r1) /* instruction emulation may change GPRs */
2121 b interrupt_return_hsrr
2122
2123
2124/**
2125 * Interrupt 0xe60 - Hypervisor Maintenance Interrupt (HMI).
2126 * This is an asynchronous interrupt caused by a Hypervisor Maintenance
2127 * Exception. It is always taken in real mode but uses HSRR registers
2128 * unlike SRESET and MCE.
2129 *
2130 * It is maskable in hardware by clearing MSR[EE], and partially soft-maskable
2131 * with IRQS_DISABLED mask (i.e., local_irq_disable()).
2132 *
2133 * Handling:
2134 * This is a special case, this is handled similarly to machine checks, with an
2135 * initial real mode handler that is not soft-masked, which attempts to fix the
2136 * problem. Then a regular handler which is soft-maskable and reports the
2137 * problem.
2138 *
2139 * The emergency stack is used for the early real mode handler.
2140 *
2141 * XXX: unclear why MCE and HMI schemes could not be made common, e.g.,
2142 * either use soft-masking for the MCE, or use irq_work for the HMI.
2143 *
2144 * KVM:
2145 * Unlike MCE, this calls into KVM without calling the real mode handler
2146 * first.
2147 */
2148INT_DEFINE_BEGIN(hmi_exception_early)
2149 IVEC=0xe60
2150 IHSRR=1
2151 IREALMODE_COMMON=1
2152 ISTACK=0
2153 IKUAP=0 /* We don't touch AMR here, we never go to virtual mode */
2154 IKVM_REAL=1
2155INT_DEFINE_END(hmi_exception_early)
2156
2157INT_DEFINE_BEGIN(hmi_exception)
2158 IVEC=0xe60
2159 IHSRR=1
2160 IMASK=IRQS_DISABLED
2161 IKVM_REAL=1
2162INT_DEFINE_END(hmi_exception)
2163
2164EXC_REAL_BEGIN(hmi_exception, 0xe60, 0x20)
2165 GEN_INT_ENTRY hmi_exception_early, virt=0, ool=1
2166EXC_REAL_END(hmi_exception, 0xe60, 0x20)
2167EXC_VIRT_NONE(0x4e60, 0x20)
2168
2169EXC_COMMON_BEGIN(hmi_exception_early_common)
2170 __GEN_REALMODE_COMMON_ENTRY hmi_exception_early
2171
2172 mr r10,r1 /* Save r1 */
2173 ld r1,PACAEMERGSP(r13) /* Use emergency stack for realmode */
2174 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
2175
2176 __GEN_COMMON_BODY hmi_exception_early
2177
2178 addi r3,r1,STACK_FRAME_OVERHEAD
2179 bl hmi_exception_realmode
2180 cmpdi cr0,r3,0
2181 bne 1f
2182
2183 EXCEPTION_RESTORE_REGS hsrr=1
2184 HRFI_TO_USER_OR_KERNEL
2185
21861:
2187 /*
2188 * Go to virtual mode and pull the HMI event information from
2189 * firmware.
2190 */
2191 EXCEPTION_RESTORE_REGS hsrr=1
2192 GEN_INT_ENTRY hmi_exception, virt=0
2193
2194EXC_COMMON_BEGIN(hmi_exception_common)
2195 GEN_COMMON hmi_exception
2196 addi r3,r1,STACK_FRAME_OVERHEAD
2197 bl handle_hmi_exception
2198 b interrupt_return_hsrr
2199
2200
2201/**
2202 * Interrupt 0xe80 - Directed Hypervisor Doorbell Interrupt.
2203 * This is an asynchronous interrupt in response to a msgsnd doorbell.
2204 * Similar to the 0xa00 doorbell but for host rather than guest.
2205 */
2206INT_DEFINE_BEGIN(h_doorbell)
2207 IVEC=0xe80
2208 IHSRR=1
2209 IMASK=IRQS_DISABLED
2210 IKVM_REAL=1
2211 IKVM_VIRT=1
2212INT_DEFINE_END(h_doorbell)
2213
2214EXC_REAL_BEGIN(h_doorbell, 0xe80, 0x20)
2215 GEN_INT_ENTRY h_doorbell, virt=0, ool=1
2216EXC_REAL_END(h_doorbell, 0xe80, 0x20)
2217EXC_VIRT_BEGIN(h_doorbell, 0x4e80, 0x20)
2218 GEN_INT_ENTRY h_doorbell, virt=1, ool=1
2219EXC_VIRT_END(h_doorbell, 0x4e80, 0x20)
2220EXC_COMMON_BEGIN(h_doorbell_common)
2221 GEN_COMMON h_doorbell
2222 addi r3,r1,STACK_FRAME_OVERHEAD
2223#ifdef CONFIG_PPC_DOORBELL
2224 bl doorbell_exception
2225#else
2226 bl unknown_async_exception
2227#endif
2228 b interrupt_return_hsrr
2229
2230
2231/**
2232 * Interrupt 0xea0 - Hypervisor Virtualization Interrupt.
2233 * This is an asynchronous interrupt in response to an "external exception".
2234 * Similar to 0x500 but for host only.
2235 */
2236INT_DEFINE_BEGIN(h_virt_irq)
2237 IVEC=0xea0
2238 IHSRR=1
2239 IMASK=IRQS_DISABLED
2240 IKVM_REAL=1
2241 IKVM_VIRT=1
2242INT_DEFINE_END(h_virt_irq)
2243
2244EXC_REAL_BEGIN(h_virt_irq, 0xea0, 0x20)
2245 GEN_INT_ENTRY h_virt_irq, virt=0, ool=1
2246EXC_REAL_END(h_virt_irq, 0xea0, 0x20)
2247EXC_VIRT_BEGIN(h_virt_irq, 0x4ea0, 0x20)
2248 GEN_INT_ENTRY h_virt_irq, virt=1, ool=1
2249EXC_VIRT_END(h_virt_irq, 0x4ea0, 0x20)
2250EXC_COMMON_BEGIN(h_virt_irq_common)
2251 GEN_COMMON h_virt_irq
2252 addi r3,r1,STACK_FRAME_OVERHEAD
2253 bl do_IRQ
2254 b interrupt_return_hsrr
2255
2256
2257EXC_REAL_NONE(0xec0, 0x20)
2258EXC_VIRT_NONE(0x4ec0, 0x20)
2259EXC_REAL_NONE(0xee0, 0x20)
2260EXC_VIRT_NONE(0x4ee0, 0x20)
2261
2262
2263/*
2264 * Interrupt 0xf00 - Performance Monitor Interrupt (PMI, PMU).
2265 * This is an asynchronous interrupt in response to a PMU exception.
2266 * It is maskable in hardware by clearing MSR[EE], and soft-maskable with
2267 * IRQS_PMI_DISABLED mask (NOTE: NOT local_irq_disable()).
2268 *
2269 * Handling:
2270 * This calls into the perf subsystem.
2271 *
2272 * Like the watchdog soft-nmi, it appears an NMI interrupt to Linux, in that it
2273 * runs under local_irq_disable. However it may be soft-masked in
2274 * powerpc-specific code.
2275 *
2276 * If soft masked, the masked handler will note the pending interrupt for
2277 * replay, and clear MSR[EE] in the interrupted context.
2278 */
2279INT_DEFINE_BEGIN(performance_monitor)
2280 IVEC=0xf00
2281 IMASK=IRQS_PMI_DISABLED
2282#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2283 IKVM_REAL=1
2284#endif
2285INT_DEFINE_END(performance_monitor)
2286
2287EXC_REAL_BEGIN(performance_monitor, 0xf00, 0x20)
2288 GEN_INT_ENTRY performance_monitor, virt=0, ool=1
2289EXC_REAL_END(performance_monitor, 0xf00, 0x20)
2290EXC_VIRT_BEGIN(performance_monitor, 0x4f00, 0x20)
2291 GEN_INT_ENTRY performance_monitor, virt=1, ool=1
2292EXC_VIRT_END(performance_monitor, 0x4f00, 0x20)
2293EXC_COMMON_BEGIN(performance_monitor_common)
2294 GEN_COMMON performance_monitor
2295 addi r3,r1,STACK_FRAME_OVERHEAD
2296 bl performance_monitor_exception
2297 b interrupt_return_srr
2298
2299
2300/**
2301 * Interrupt 0xf20 - Vector Unavailable Interrupt.
2302 * This is a synchronous interrupt in response to
2303 * executing a vector (or altivec) instruction with MSR[VEC]=0.
2304 * Similar to FP unavailable.
2305 */
2306INT_DEFINE_BEGIN(altivec_unavailable)
2307 IVEC=0xf20
2308#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2309 IKVM_REAL=1
2310#endif
2311INT_DEFINE_END(altivec_unavailable)
2312
2313EXC_REAL_BEGIN(altivec_unavailable, 0xf20, 0x20)
2314 GEN_INT_ENTRY altivec_unavailable, virt=0, ool=1
2315EXC_REAL_END(altivec_unavailable, 0xf20, 0x20)
2316EXC_VIRT_BEGIN(altivec_unavailable, 0x4f20, 0x20)
2317 GEN_INT_ENTRY altivec_unavailable, virt=1, ool=1
2318EXC_VIRT_END(altivec_unavailable, 0x4f20, 0x20)
2319EXC_COMMON_BEGIN(altivec_unavailable_common)
2320 GEN_COMMON altivec_unavailable
2321#ifdef CONFIG_ALTIVEC
2322BEGIN_FTR_SECTION
2323 beq 1f
2324#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2325 BEGIN_FTR_SECTION_NESTED(69)
2326 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
2327 * transaction), go do TM stuff
2328 */
2329 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
2330 bne- 2f
2331 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
2332#endif
2333 bl load_up_altivec
2334 b fast_interrupt_return_srr
2335#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
23362: /* User process was in a transaction */
2337 addi r3,r1,STACK_FRAME_OVERHEAD
2338 bl altivec_unavailable_tm
2339 b interrupt_return_srr
2340#endif
23411:
2342END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
2343#endif
2344 addi r3,r1,STACK_FRAME_OVERHEAD
2345 bl altivec_unavailable_exception
2346 b interrupt_return_srr
2347
2348
2349/**
2350 * Interrupt 0xf40 - VSX Unavailable Interrupt.
2351 * This is a synchronous interrupt in response to
2352 * executing a VSX instruction with MSR[VSX]=0.
2353 * Similar to FP unavailable.
2354 */
2355INT_DEFINE_BEGIN(vsx_unavailable)
2356 IVEC=0xf40
2357#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2358 IKVM_REAL=1
2359#endif
2360INT_DEFINE_END(vsx_unavailable)
2361
2362EXC_REAL_BEGIN(vsx_unavailable, 0xf40, 0x20)
2363 GEN_INT_ENTRY vsx_unavailable, virt=0, ool=1
2364EXC_REAL_END(vsx_unavailable, 0xf40, 0x20)
2365EXC_VIRT_BEGIN(vsx_unavailable, 0x4f40, 0x20)
2366 GEN_INT_ENTRY vsx_unavailable, virt=1, ool=1
2367EXC_VIRT_END(vsx_unavailable, 0x4f40, 0x20)
2368EXC_COMMON_BEGIN(vsx_unavailable_common)
2369 GEN_COMMON vsx_unavailable
2370#ifdef CONFIG_VSX
2371BEGIN_FTR_SECTION
2372 beq 1f
2373#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
2374 BEGIN_FTR_SECTION_NESTED(69)
2375 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
2376 * transaction), go do TM stuff
2377 */
2378 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
2379 bne- 2f
2380 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
2381#endif
2382 b load_up_vsx
2383#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
23842: /* User process was in a transaction */
2385 addi r3,r1,STACK_FRAME_OVERHEAD
2386 bl vsx_unavailable_tm
2387 b interrupt_return_srr
2388#endif
23891:
2390END_FTR_SECTION_IFSET(CPU_FTR_VSX)
2391#endif
2392 addi r3,r1,STACK_FRAME_OVERHEAD
2393 bl vsx_unavailable_exception
2394 b interrupt_return_srr
2395
2396
2397/**
2398 * Interrupt 0xf60 - Facility Unavailable Interrupt.
2399 * This is a synchronous interrupt in response to
2400 * executing an instruction without access to the facility that can be
2401 * resolved by the OS (e.g., FSCR, MSR).
2402 * Similar to FP unavailable.
2403 */
2404INT_DEFINE_BEGIN(facility_unavailable)
2405 IVEC=0xf60
2406#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2407 IKVM_REAL=1
2408#endif
2409INT_DEFINE_END(facility_unavailable)
2410
2411EXC_REAL_BEGIN(facility_unavailable, 0xf60, 0x20)
2412 GEN_INT_ENTRY facility_unavailable, virt=0, ool=1
2413EXC_REAL_END(facility_unavailable, 0xf60, 0x20)
2414EXC_VIRT_BEGIN(facility_unavailable, 0x4f60, 0x20)
2415 GEN_INT_ENTRY facility_unavailable, virt=1, ool=1
2416EXC_VIRT_END(facility_unavailable, 0x4f60, 0x20)
2417EXC_COMMON_BEGIN(facility_unavailable_common)
2418 GEN_COMMON facility_unavailable
2419 addi r3,r1,STACK_FRAME_OVERHEAD
2420 bl facility_unavailable_exception
2421 REST_NVGPRS(r1) /* instruction emulation may change GPRs */
2422 b interrupt_return_srr
2423
2424
2425/**
2426 * Interrupt 0xf60 - Hypervisor Facility Unavailable Interrupt.
2427 * This is a synchronous interrupt in response to
2428 * executing an instruction without access to the facility that can only
2429 * be resolved in HV mode (e.g., HFSCR).
2430 * Similar to FP unavailable.
2431 */
2432INT_DEFINE_BEGIN(h_facility_unavailable)
2433 IVEC=0xf80
2434 IHSRR=1
2435 IKVM_REAL=1
2436 IKVM_VIRT=1
2437INT_DEFINE_END(h_facility_unavailable)
2438
2439EXC_REAL_BEGIN(h_facility_unavailable, 0xf80, 0x20)
2440 GEN_INT_ENTRY h_facility_unavailable, virt=0, ool=1
2441EXC_REAL_END(h_facility_unavailable, 0xf80, 0x20)
2442EXC_VIRT_BEGIN(h_facility_unavailable, 0x4f80, 0x20)
2443 GEN_INT_ENTRY h_facility_unavailable, virt=1, ool=1
2444EXC_VIRT_END(h_facility_unavailable, 0x4f80, 0x20)
2445EXC_COMMON_BEGIN(h_facility_unavailable_common)
2446 GEN_COMMON h_facility_unavailable
2447 addi r3,r1,STACK_FRAME_OVERHEAD
2448 bl facility_unavailable_exception
2449 REST_NVGPRS(r1) /* XXX Shouldn't be necessary in practice */
2450 b interrupt_return_hsrr
2451
2452
2453EXC_REAL_NONE(0xfa0, 0x20)
2454EXC_VIRT_NONE(0x4fa0, 0x20)
2455EXC_REAL_NONE(0xfc0, 0x20)
2456EXC_VIRT_NONE(0x4fc0, 0x20)
2457EXC_REAL_NONE(0xfe0, 0x20)
2458EXC_VIRT_NONE(0x4fe0, 0x20)
2459
2460EXC_REAL_NONE(0x1000, 0x100)
2461EXC_VIRT_NONE(0x5000, 0x100)
2462EXC_REAL_NONE(0x1100, 0x100)
2463EXC_VIRT_NONE(0x5100, 0x100)
2464
2465#ifdef CONFIG_CBE_RAS
2466INT_DEFINE_BEGIN(cbe_system_error)
2467 IVEC=0x1200
2468 IHSRR=1
2469INT_DEFINE_END(cbe_system_error)
2470
2471EXC_REAL_BEGIN(cbe_system_error, 0x1200, 0x100)
2472 GEN_INT_ENTRY cbe_system_error, virt=0
2473EXC_REAL_END(cbe_system_error, 0x1200, 0x100)
2474EXC_VIRT_NONE(0x5200, 0x100)
2475EXC_COMMON_BEGIN(cbe_system_error_common)
2476 GEN_COMMON cbe_system_error
2477 addi r3,r1,STACK_FRAME_OVERHEAD
2478 bl cbe_system_error_exception
2479 b interrupt_return_hsrr
2480
2481#else /* CONFIG_CBE_RAS */
2482EXC_REAL_NONE(0x1200, 0x100)
2483EXC_VIRT_NONE(0x5200, 0x100)
2484#endif
2485
2486/**
2487 * Interrupt 0x1300 - Instruction Address Breakpoint Interrupt.
2488 * This has been removed from the ISA before 2.01, which is the earliest
2489 * 64-bit BookS ISA supported, however the G5 / 970 implements this
2490 * interrupt with a non-architected feature available through the support
2491 * processor interface.
2492 */
2493INT_DEFINE_BEGIN(instruction_breakpoint)
2494 IVEC=0x1300
2495#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2496 IKVM_REAL=1
2497#endif
2498INT_DEFINE_END(instruction_breakpoint)
2499
2500EXC_REAL_BEGIN(instruction_breakpoint, 0x1300, 0x100)
2501 GEN_INT_ENTRY instruction_breakpoint, virt=0
2502EXC_REAL_END(instruction_breakpoint, 0x1300, 0x100)
2503EXC_VIRT_BEGIN(instruction_breakpoint, 0x5300, 0x100)
2504 GEN_INT_ENTRY instruction_breakpoint, virt=1
2505EXC_VIRT_END(instruction_breakpoint, 0x5300, 0x100)
2506EXC_COMMON_BEGIN(instruction_breakpoint_common)
2507 GEN_COMMON instruction_breakpoint
2508 addi r3,r1,STACK_FRAME_OVERHEAD
2509 bl instruction_breakpoint_exception
2510 b interrupt_return_srr
2511
2512
2513EXC_REAL_NONE(0x1400, 0x100)
2514EXC_VIRT_NONE(0x5400, 0x100)
2515
2516/**
2517 * Interrupt 0x1500 - Soft Patch Interrupt
2518 *
2519 * Handling:
2520 * This is an implementation specific interrupt which can be used for a
2521 * range of exceptions.
2522 *
2523 * This interrupt handler is unique in that it runs the denormal assist
2524 * code even for guests (and even in guest context) without going to KVM,
2525 * for speed. POWER9 does not raise denorm exceptions, so this special case
2526 * could be phased out in future to reduce special cases.
2527 */
2528INT_DEFINE_BEGIN(denorm_exception)
2529 IVEC=0x1500
2530 IHSRR=1
2531 IBRANCH_TO_COMMON=0
2532 IKVM_REAL=1
2533INT_DEFINE_END(denorm_exception)
2534
2535EXC_REAL_BEGIN(denorm_exception, 0x1500, 0x100)
2536 GEN_INT_ENTRY denorm_exception, virt=0
2537#ifdef CONFIG_PPC_DENORMALISATION
2538 andis. r10,r12,(HSRR1_DENORM)@h /* denorm? */
2539 bne+ denorm_assist
2540#endif
2541 GEN_BRANCH_TO_COMMON denorm_exception, virt=0
2542EXC_REAL_END(denorm_exception, 0x1500, 0x100)
2543#ifdef CONFIG_PPC_DENORMALISATION
2544EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x100)
2545 GEN_INT_ENTRY denorm_exception, virt=1
2546 andis. r10,r12,(HSRR1_DENORM)@h /* denorm? */
2547 bne+ denorm_assist
2548 GEN_BRANCH_TO_COMMON denorm_exception, virt=1
2549EXC_VIRT_END(denorm_exception, 0x5500, 0x100)
2550#else
2551EXC_VIRT_NONE(0x5500, 0x100)
2552#endif
2553
2554#ifdef CONFIG_PPC_DENORMALISATION
2555TRAMP_REAL_BEGIN(denorm_assist)
2556BEGIN_FTR_SECTION
2557/*
2558 * To denormalise we need to move a copy of the register to itself.
2559 * For POWER6 do that here for all FP regs.
2560 */
2561 mfmsr r10
2562 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
2563 xori r10,r10,(MSR_FE0|MSR_FE1)
2564 mtmsrd r10
2565 sync
2566
2567 .Lreg=0
2568 .rept 32
2569 fmr .Lreg,.Lreg
2570 .Lreg=.Lreg+1
2571 .endr
2572
2573FTR_SECTION_ELSE
2574/*
2575 * To denormalise we need to move a copy of the register to itself.
2576 * For POWER7 do that here for the first 32 VSX registers only.
2577 */
2578 mfmsr r10
2579 oris r10,r10,MSR_VSX@h
2580 mtmsrd r10
2581 sync
2582
2583 .Lreg=0
2584 .rept 32
2585 XVCPSGNDP(.Lreg,.Lreg,.Lreg)
2586 .Lreg=.Lreg+1
2587 .endr
2588
2589ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
2590
2591BEGIN_FTR_SECTION
2592 b denorm_done
2593END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
2594/*
2595 * To denormalise we need to move a copy of the register to itself.
2596 * For POWER8 we need to do that for all 64 VSX registers
2597 */
2598 .Lreg=32
2599 .rept 32
2600 XVCPSGNDP(.Lreg,.Lreg,.Lreg)
2601 .Lreg=.Lreg+1
2602 .endr
2603
2604denorm_done:
2605 mfspr r11,SPRN_HSRR0
2606 subi r11,r11,4
2607 mtspr SPRN_HSRR0,r11
2608 mtcrf 0x80,r9
2609 ld r9,PACA_EXGEN+EX_R9(r13)
2610BEGIN_FTR_SECTION
2611 ld r10,PACA_EXGEN+EX_PPR(r13)
2612 mtspr SPRN_PPR,r10
2613END_FTR_SECTION_IFSET(CPU_FTR_HAS_PPR)
2614BEGIN_FTR_SECTION
2615 ld r10,PACA_EXGEN+EX_CFAR(r13)
2616 mtspr SPRN_CFAR,r10
2617END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
2618 li r10,0
2619 stb r10,PACAHSRR_VALID(r13)
2620 ld r10,PACA_EXGEN+EX_R10(r13)
2621 ld r11,PACA_EXGEN+EX_R11(r13)
2622 ld r12,PACA_EXGEN+EX_R12(r13)
2623 ld r13,PACA_EXGEN+EX_R13(r13)
2624 HRFI_TO_UNKNOWN
2625 b .
2626#endif
2627
2628EXC_COMMON_BEGIN(denorm_exception_common)
2629 GEN_COMMON denorm_exception
2630 addi r3,r1,STACK_FRAME_OVERHEAD
2631 bl unknown_exception
2632 b interrupt_return_hsrr
2633
2634
2635#ifdef CONFIG_CBE_RAS
2636INT_DEFINE_BEGIN(cbe_maintenance)
2637 IVEC=0x1600
2638 IHSRR=1
2639INT_DEFINE_END(cbe_maintenance)
2640
2641EXC_REAL_BEGIN(cbe_maintenance, 0x1600, 0x100)
2642 GEN_INT_ENTRY cbe_maintenance, virt=0
2643EXC_REAL_END(cbe_maintenance, 0x1600, 0x100)
2644EXC_VIRT_NONE(0x5600, 0x100)
2645EXC_COMMON_BEGIN(cbe_maintenance_common)
2646 GEN_COMMON cbe_maintenance
2647 addi r3,r1,STACK_FRAME_OVERHEAD
2648 bl cbe_maintenance_exception
2649 b interrupt_return_hsrr
2650
2651#else /* CONFIG_CBE_RAS */
2652EXC_REAL_NONE(0x1600, 0x100)
2653EXC_VIRT_NONE(0x5600, 0x100)
2654#endif
2655
2656
2657INT_DEFINE_BEGIN(altivec_assist)
2658 IVEC=0x1700
2659#ifdef CONFIG_KVM_BOOK3S_PR_POSSIBLE
2660 IKVM_REAL=1
2661#endif
2662INT_DEFINE_END(altivec_assist)
2663
2664EXC_REAL_BEGIN(altivec_assist, 0x1700, 0x100)
2665 GEN_INT_ENTRY altivec_assist, virt=0
2666EXC_REAL_END(altivec_assist, 0x1700, 0x100)
2667EXC_VIRT_BEGIN(altivec_assist, 0x5700, 0x100)
2668 GEN_INT_ENTRY altivec_assist, virt=1
2669EXC_VIRT_END(altivec_assist, 0x5700, 0x100)
2670EXC_COMMON_BEGIN(altivec_assist_common)
2671 GEN_COMMON altivec_assist
2672 addi r3,r1,STACK_FRAME_OVERHEAD
2673#ifdef CONFIG_ALTIVEC
2674 bl altivec_assist_exception
2675 REST_NVGPRS(r1) /* instruction emulation may change GPRs */
2676#else
2677 bl unknown_exception
2678#endif
2679 b interrupt_return_srr
2680
2681
2682#ifdef CONFIG_CBE_RAS
2683INT_DEFINE_BEGIN(cbe_thermal)
2684 IVEC=0x1800
2685 IHSRR=1
2686INT_DEFINE_END(cbe_thermal)
2687
2688EXC_REAL_BEGIN(cbe_thermal, 0x1800, 0x100)
2689 GEN_INT_ENTRY cbe_thermal, virt=0
2690EXC_REAL_END(cbe_thermal, 0x1800, 0x100)
2691EXC_VIRT_NONE(0x5800, 0x100)
2692EXC_COMMON_BEGIN(cbe_thermal_common)
2693 GEN_COMMON cbe_thermal
2694 addi r3,r1,STACK_FRAME_OVERHEAD
2695 bl cbe_thermal_exception
2696 b interrupt_return_hsrr
2697
2698#else /* CONFIG_CBE_RAS */
2699EXC_REAL_NONE(0x1800, 0x100)
2700EXC_VIRT_NONE(0x5800, 0x100)
2701#endif
2702
2703
2704#ifdef CONFIG_PPC_WATCHDOG
2705
2706INT_DEFINE_BEGIN(soft_nmi)
2707 IVEC=0x900
2708 ISTACK=0
2709INT_DEFINE_END(soft_nmi)
2710
2711/*
2712 * Branch to soft_nmi_interrupt using the emergency stack. The emergency
2713 * stack is one that is usable by maskable interrupts so long as MSR_EE
2714 * remains off. It is used for recovery when something has corrupted the
2715 * normal kernel stack, for example. The "soft NMI" must not use the process
2716 * stack because we want irq disabled sections to avoid touching the stack
2717 * at all (other than PMU interrupts), so use the emergency stack for this,
2718 * and run it entirely with interrupts hard disabled.
2719 */
2720EXC_COMMON_BEGIN(soft_nmi_common)
2721 mr r10,r1
2722 ld r1,PACAEMERGSP(r13)
2723 subi r1,r1,INT_FRAME_SIZE
2724 __GEN_COMMON_BODY soft_nmi
2725
2726 addi r3,r1,STACK_FRAME_OVERHEAD
2727 bl soft_nmi_interrupt
2728
2729 /* Clear MSR_RI before setting SRR0 and SRR1. */
2730 li r9,0
2731 mtmsrd r9,1
2732
2733 kuap_kernel_restore r9, r10
2734
2735 EXCEPTION_RESTORE_REGS hsrr=0
2736 RFI_TO_KERNEL
2737
2738#endif /* CONFIG_PPC_WATCHDOG */
2739
2740/*
2741 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
2742 * - If it was a decrementer interrupt, we bump the dec to max and and return.
2743 * - If it was a doorbell we return immediately since doorbells are edge
2744 * triggered and won't automatically refire.
2745 * - If it was a HMI we return immediately since we handled it in realmode
2746 * and it won't refire.
2747 * - Else it is one of PACA_IRQ_MUST_HARD_MASK, so hard disable and return.
2748 * This is called with r10 containing the value to OR to the paca field.
2749 */
2750.macro MASKED_INTERRUPT hsrr=0
2751 .if \hsrr
2752masked_Hinterrupt:
2753 .else
2754masked_interrupt:
2755 .endif
2756 stw r9,PACA_EXGEN+EX_CCR(r13)
2757 lbz r9,PACAIRQHAPPENED(r13)
2758 or r9,r9,r10
2759 stb r9,PACAIRQHAPPENED(r13)
2760
2761 .if ! \hsrr
2762 cmpwi r10,PACA_IRQ_DEC
2763 bne 1f
2764 LOAD_REG_IMMEDIATE(r9, 0x7fffffff)
2765 mtspr SPRN_DEC,r9
2766#ifdef CONFIG_PPC_WATCHDOG
2767 lwz r9,PACA_EXGEN+EX_CCR(r13)
2768 b soft_nmi_common
2769#else
2770 b 2f
2771#endif
2772 .endif
2773
27741: andi. r10,r10,PACA_IRQ_MUST_HARD_MASK
2775 beq 2f
2776 xori r12,r12,MSR_EE /* clear MSR_EE */
2777 .if \hsrr
2778 mtspr SPRN_HSRR1,r12
2779 .else
2780 mtspr SPRN_SRR1,r12
2781 .endif
2782 ori r9,r9,PACA_IRQ_HARD_DIS
2783 stb r9,PACAIRQHAPPENED(r13)
27842: /* done */
2785 li r9,0
2786 .if \hsrr
2787 stb r9,PACAHSRR_VALID(r13)
2788 .else
2789 stb r9,PACASRR_VALID(r13)
2790 .endif
2791
2792 SEARCH_RESTART_TABLE
2793 cmpdi r12,0
2794 beq 3f
2795 .if \hsrr
2796 mtspr SPRN_HSRR0,r12
2797 .else
2798 mtspr SPRN_SRR0,r12
2799 .endif
28003:
2801
2802 ld r9,PACA_EXGEN+EX_CTR(r13)
2803 mtctr r9
2804 lwz r9,PACA_EXGEN+EX_CCR(r13)
2805 mtcrf 0x80,r9
2806 std r1,PACAR1(r13)
2807 ld r9,PACA_EXGEN+EX_R9(r13)
2808 ld r10,PACA_EXGEN+EX_R10(r13)
2809 ld r11,PACA_EXGEN+EX_R11(r13)
2810 ld r12,PACA_EXGEN+EX_R12(r13)
2811 ld r13,PACA_EXGEN+EX_R13(r13)
2812 /* May return to masked low address where r13 is not set up */
2813 .if \hsrr
2814 HRFI_TO_KERNEL
2815 .else
2816 RFI_TO_KERNEL
2817 .endif
2818 b .
2819.endm
2820
2821TRAMP_REAL_BEGIN(stf_barrier_fallback)
2822 std r9,PACA_EXRFI+EX_R9(r13)
2823 std r10,PACA_EXRFI+EX_R10(r13)
2824 sync
2825 ld r9,PACA_EXRFI+EX_R9(r13)
2826 ld r10,PACA_EXRFI+EX_R10(r13)
2827 ori 31,31,0
2828 .rept 14
2829 b 1f
28301:
2831 .endr
2832 blr
2833
2834/* Clobbers r10, r11, ctr */
2835.macro L1D_DISPLACEMENT_FLUSH
2836 ld r10,PACA_RFI_FLUSH_FALLBACK_AREA(r13)
2837 ld r11,PACA_L1D_FLUSH_SIZE(r13)
2838 srdi r11,r11,(7 + 3) /* 128 byte lines, unrolled 8x */
2839 mtctr r11
2840 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r11) /* Stop prefetch streams */
2841
2842 /* order ld/st prior to dcbt stop all streams with flushing */
2843 sync
2844
2845 /*
2846 * The load addresses are at staggered offsets within cachelines,
2847 * which suits some pipelines better (on others it should not
2848 * hurt).
2849 */
28501:
2851 ld r11,(0x80 + 8)*0(r10)
2852 ld r11,(0x80 + 8)*1(r10)
2853 ld r11,(0x80 + 8)*2(r10)
2854 ld r11,(0x80 + 8)*3(r10)
2855 ld r11,(0x80 + 8)*4(r10)
2856 ld r11,(0x80 + 8)*5(r10)
2857 ld r11,(0x80 + 8)*6(r10)
2858 ld r11,(0x80 + 8)*7(r10)
2859 addi r10,r10,0x80*8
2860 bdnz 1b
2861.endm
2862
2863TRAMP_REAL_BEGIN(entry_flush_fallback)
2864 std r9,PACA_EXRFI+EX_R9(r13)
2865 std r10,PACA_EXRFI+EX_R10(r13)
2866 std r11,PACA_EXRFI+EX_R11(r13)
2867 mfctr r9
2868 L1D_DISPLACEMENT_FLUSH
2869 mtctr r9
2870 ld r9,PACA_EXRFI+EX_R9(r13)
2871 ld r10,PACA_EXRFI+EX_R10(r13)
2872 ld r11,PACA_EXRFI+EX_R11(r13)
2873 blr
2874
2875/*
2876 * The SCV entry flush happens with interrupts enabled, so it must disable
2877 * to prevent EXRFI being clobbered by NMIs (e.g., soft_nmi_common). r10
2878 * (containing LR) does not need to be preserved here because scv entry
2879 * puts 0 in the pt_regs, CTR can be clobbered for the same reason.
2880 */
2881TRAMP_REAL_BEGIN(scv_entry_flush_fallback)
2882 li r10,0
2883 mtmsrd r10,1
2884 lbz r10,PACAIRQHAPPENED(r13)
2885 ori r10,r10,PACA_IRQ_HARD_DIS
2886 stb r10,PACAIRQHAPPENED(r13)
2887 std r11,PACA_EXRFI+EX_R11(r13)
2888 L1D_DISPLACEMENT_FLUSH
2889 ld r11,PACA_EXRFI+EX_R11(r13)
2890 li r10,MSR_RI
2891 mtmsrd r10,1
2892 blr
2893
2894TRAMP_REAL_BEGIN(rfi_flush_fallback)
2895 SET_SCRATCH0(r13);
2896 GET_PACA(r13);
2897 std r1,PACA_EXRFI+EX_R12(r13)
2898 ld r1,PACAKSAVE(r13)
2899 std r9,PACA_EXRFI+EX_R9(r13)
2900 std r10,PACA_EXRFI+EX_R10(r13)
2901 std r11,PACA_EXRFI+EX_R11(r13)
2902 mfctr r9
2903 L1D_DISPLACEMENT_FLUSH
2904 mtctr r9
2905 ld r9,PACA_EXRFI+EX_R9(r13)
2906 ld r10,PACA_EXRFI+EX_R10(r13)
2907 ld r11,PACA_EXRFI+EX_R11(r13)
2908 ld r1,PACA_EXRFI+EX_R12(r13)
2909 GET_SCRATCH0(r13);
2910 rfid
2911
2912TRAMP_REAL_BEGIN(hrfi_flush_fallback)
2913 SET_SCRATCH0(r13);
2914 GET_PACA(r13);
2915 std r1,PACA_EXRFI+EX_R12(r13)
2916 ld r1,PACAKSAVE(r13)
2917 std r9,PACA_EXRFI+EX_R9(r13)
2918 std r10,PACA_EXRFI+EX_R10(r13)
2919 std r11,PACA_EXRFI+EX_R11(r13)
2920 mfctr r9
2921 L1D_DISPLACEMENT_FLUSH
2922 mtctr r9
2923 ld r9,PACA_EXRFI+EX_R9(r13)
2924 ld r10,PACA_EXRFI+EX_R10(r13)
2925 ld r11,PACA_EXRFI+EX_R11(r13)
2926 ld r1,PACA_EXRFI+EX_R12(r13)
2927 GET_SCRATCH0(r13);
2928 hrfid
2929
2930TRAMP_REAL_BEGIN(rfscv_flush_fallback)
2931 /* system call volatile */
2932 mr r7,r13
2933 GET_PACA(r13);
2934 mr r8,r1
2935 ld r1,PACAKSAVE(r13)
2936 mfctr r9
2937 ld r10,PACA_RFI_FLUSH_FALLBACK_AREA(r13)
2938 ld r11,PACA_L1D_FLUSH_SIZE(r13)
2939 srdi r11,r11,(7 + 3) /* 128 byte lines, unrolled 8x */
2940 mtctr r11
2941 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r11) /* Stop prefetch streams */
2942
2943 /* order ld/st prior to dcbt stop all streams with flushing */
2944 sync
2945
2946 /*
2947 * The load adresses are at staggered offsets within cachelines,
2948 * which suits some pipelines better (on others it should not
2949 * hurt).
2950 */
29511:
2952 ld r11,(0x80 + 8)*0(r10)
2953 ld r11,(0x80 + 8)*1(r10)
2954 ld r11,(0x80 + 8)*2(r10)
2955 ld r11,(0x80 + 8)*3(r10)
2956 ld r11,(0x80 + 8)*4(r10)
2957 ld r11,(0x80 + 8)*5(r10)
2958 ld r11,(0x80 + 8)*6(r10)
2959 ld r11,(0x80 + 8)*7(r10)
2960 addi r10,r10,0x80*8
2961 bdnz 1b
2962
2963 mtctr r9
2964 li r9,0
2965 li r10,0
2966 li r11,0
2967 mr r1,r8
2968 mr r13,r7
2969 RFSCV
2970
2971USE_TEXT_SECTION()
2972
2973#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
2974kvm_interrupt:
2975 /*
2976 * The conditional branch in KVMTEST can't reach all the way,
2977 * make a stub.
2978 */
2979 b kvmppc_interrupt
2980#endif
2981
2982_GLOBAL(do_uaccess_flush)
2983 UACCESS_FLUSH_FIXUP_SECTION
2984 nop
2985 nop
2986 nop
2987 blr
2988 L1D_DISPLACEMENT_FLUSH
2989 blr
2990_ASM_NOKPROBE_SYMBOL(do_uaccess_flush)
2991EXPORT_SYMBOL(do_uaccess_flush)
2992
2993
2994MASKED_INTERRUPT
2995MASKED_INTERRUPT hsrr=1
2996
2997 /*
2998 * Relocation-on interrupts: A subset of the interrupts can be delivered
2999 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
3000 * it. Addresses are the same as the original interrupt addresses, but
3001 * offset by 0xc000000000004000.
3002 * It's impossible to receive interrupts below 0x300 via this mechanism.
3003 * KVM: None of these traps are from the guest ; anything that escalated
3004 * to HV=1 from HV=0 is delivered via real mode handlers.
3005 */
3006
3007 /*
3008 * This uses the standard macro, since the original 0x300 vector
3009 * only has extra guff for STAB-based processors -- which never
3010 * come here.
3011 */
3012
3013USE_FIXED_SECTION(virt_trampolines)
3014 /*
3015 * All code below __end_soft_masked is treated as soft-masked. If
3016 * any code runs here with MSR[EE]=1, it must then cope with pending
3017 * soft interrupt being raised (i.e., by ensuring it is replayed).
3018 *
3019 * The __end_interrupts marker must be past the out-of-line (OOL)
3020 * handlers, so that they are copied to real address 0x100 when running
3021 * a relocatable kernel. This ensures they can be reached from the short
3022 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
3023 * directly, without using LOAD_HANDLER().
3024 */
3025 .align 7
3026 .globl __end_interrupts
3027__end_interrupts:
3028DEFINE_FIXED_SYMBOL(__end_interrupts)
3029
3030CLOSE_FIXED_SECTION(real_vectors);
3031CLOSE_FIXED_SECTION(real_trampolines);
3032CLOSE_FIXED_SECTION(virt_vectors);
3033CLOSE_FIXED_SECTION(virt_trampolines);
3034
3035USE_TEXT_SECTION()
3036
3037/* MSR[RI] should be clear because this uses SRR[01] */
3038enable_machine_check:
3039 mflr r0
3040 bcl 20,31,$+4
30410: mflr r3
3042 addi r3,r3,(1f - 0b)
3043 mtspr SPRN_SRR0,r3
3044 mfmsr r3
3045 ori r3,r3,MSR_ME
3046 mtspr SPRN_SRR1,r3
3047 RFI_TO_KERNEL
30481: mtlr r0
3049 blr
3050
3051/* MSR[RI] should be clear because this uses SRR[01] */
3052disable_machine_check:
3053 mflr r0
3054 bcl 20,31,$+4
30550: mflr r3
3056 addi r3,r3,(1f - 0b)
3057 mtspr SPRN_SRR0,r3
3058 mfmsr r3
3059 li r4,MSR_ME
3060 andc r3,r3,r4
3061 mtspr SPRN_SRR1,r3
3062 RFI_TO_KERNEL
30631: mtlr r0
3064 blr
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * This file contains the 64-bit "server" PowerPC variant
4 * of the low level exception handling including exception
5 * vectors, exception return, part of the slb and stab
6 * handling and other fixed offset specific things.
7 *
8 * This file is meant to be #included from head_64.S due to
9 * position dependent assembly.
10 *
11 * Most of this originates from head_64.S and thus has the same
12 * copyright history.
13 *
14 */
15
16#include <asm/hw_irq.h>
17#include <asm/exception-64s.h>
18#include <asm/ptrace.h>
19#include <asm/cpuidle.h>
20#include <asm/head-64.h>
21#include <asm/feature-fixups.h>
22#include <asm/kup.h>
23
24/* PACA save area offsets (exgen, exmc, etc) */
25#define EX_R9 0
26#define EX_R10 8
27#define EX_R11 16
28#define EX_R12 24
29#define EX_R13 32
30#define EX_DAR 40
31#define EX_DSISR 48
32#define EX_CCR 52
33#define EX_CFAR 56
34#define EX_PPR 64
35#if defined(CONFIG_RELOCATABLE)
36#define EX_CTR 72
37.if EX_SIZE != 10
38 .error "EX_SIZE is wrong"
39.endif
40#else
41.if EX_SIZE != 9
42 .error "EX_SIZE is wrong"
43.endif
44#endif
45
46/*
47 * Following are fixed section helper macros.
48 *
49 * EXC_REAL_BEGIN/END - real, unrelocated exception vectors
50 * EXC_VIRT_BEGIN/END - virt (AIL), unrelocated exception vectors
51 * TRAMP_REAL_BEGIN - real, unrelocated helpers (virt may call these)
52 * TRAMP_VIRT_BEGIN - virt, unreloc helpers (in practice, real can use)
53 * TRAMP_KVM_BEGIN - KVM handlers, these are put into real, unrelocated
54 * EXC_COMMON - After switching to virtual, relocated mode.
55 */
56
57#define EXC_REAL_BEGIN(name, start, size) \
58 FIXED_SECTION_ENTRY_BEGIN_LOCATION(real_vectors, exc_real_##start##_##name, start, size)
59
60#define EXC_REAL_END(name, start, size) \
61 FIXED_SECTION_ENTRY_END_LOCATION(real_vectors, exc_real_##start##_##name, start, size)
62
63#define EXC_VIRT_BEGIN(name, start, size) \
64 FIXED_SECTION_ENTRY_BEGIN_LOCATION(virt_vectors, exc_virt_##start##_##name, start, size)
65
66#define EXC_VIRT_END(name, start, size) \
67 FIXED_SECTION_ENTRY_END_LOCATION(virt_vectors, exc_virt_##start##_##name, start, size)
68
69#define EXC_COMMON_BEGIN(name) \
70 USE_TEXT_SECTION(); \
71 .balign IFETCH_ALIGN_BYTES; \
72 .global name; \
73 _ASM_NOKPROBE_SYMBOL(name); \
74 DEFINE_FIXED_SYMBOL(name); \
75name:
76
77#define TRAMP_REAL_BEGIN(name) \
78 FIXED_SECTION_ENTRY_BEGIN(real_trampolines, name)
79
80#define TRAMP_VIRT_BEGIN(name) \
81 FIXED_SECTION_ENTRY_BEGIN(virt_trampolines, name)
82
83#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
84#define TRAMP_KVM_BEGIN(name) \
85 TRAMP_VIRT_BEGIN(name)
86#else
87#define TRAMP_KVM_BEGIN(name)
88#endif
89
90#define EXC_REAL_NONE(start, size) \
91 FIXED_SECTION_ENTRY_BEGIN_LOCATION(real_vectors, exc_real_##start##_##unused, start, size); \
92 FIXED_SECTION_ENTRY_END_LOCATION(real_vectors, exc_real_##start##_##unused, start, size)
93
94#define EXC_VIRT_NONE(start, size) \
95 FIXED_SECTION_ENTRY_BEGIN_LOCATION(virt_vectors, exc_virt_##start##_##unused, start, size); \
96 FIXED_SECTION_ENTRY_END_LOCATION(virt_vectors, exc_virt_##start##_##unused, start, size)
97
98/*
99 * We're short on space and time in the exception prolog, so we can't
100 * use the normal LOAD_REG_IMMEDIATE macro to load the address of label.
101 * Instead we get the base of the kernel from paca->kernelbase and or in the low
102 * part of label. This requires that the label be within 64KB of kernelbase, and
103 * that kernelbase be 64K aligned.
104 */
105#define LOAD_HANDLER(reg, label) \
106 ld reg,PACAKBASE(r13); /* get high part of &label */ \
107 ori reg,reg,FIXED_SYMBOL_ABS_ADDR(label)
108
109#define __LOAD_HANDLER(reg, label) \
110 ld reg,PACAKBASE(r13); \
111 ori reg,reg,(ABS_ADDR(label))@l
112
113/*
114 * Branches from unrelocated code (e.g., interrupts) to labels outside
115 * head-y require >64K offsets.
116 */
117#define __LOAD_FAR_HANDLER(reg, label) \
118 ld reg,PACAKBASE(r13); \
119 ori reg,reg,(ABS_ADDR(label))@l; \
120 addis reg,reg,(ABS_ADDR(label))@h
121
122/* Exception register prefixes */
123#define EXC_HV_OR_STD 2 /* depends on HVMODE */
124#define EXC_HV 1
125#define EXC_STD 0
126
127#if defined(CONFIG_RELOCATABLE)
128/*
129 * If we support interrupts with relocation on AND we're a relocatable kernel,
130 * we need to use CTR to get to the 2nd level handler. So, save/restore it
131 * when required.
132 */
133#define SAVE_CTR(reg, area) mfctr reg ; std reg,area+EX_CTR(r13)
134#define GET_CTR(reg, area) ld reg,area+EX_CTR(r13)
135#define RESTORE_CTR(reg, area) ld reg,area+EX_CTR(r13) ; mtctr reg
136#else
137/* ...else CTR is unused and in register. */
138#define SAVE_CTR(reg, area)
139#define GET_CTR(reg, area) mfctr reg
140#define RESTORE_CTR(reg, area)
141#endif
142
143/*
144 * PPR save/restore macros used in exceptions-64s.S
145 * Used for P7 or later processors
146 */
147#define SAVE_PPR(area, ra) \
148BEGIN_FTR_SECTION_NESTED(940) \
149 ld ra,area+EX_PPR(r13); /* Read PPR from paca */ \
150 std ra,_PPR(r1); \
151END_FTR_SECTION_NESTED(CPU_FTR_HAS_PPR,CPU_FTR_HAS_PPR,940)
152
153#define RESTORE_PPR_PACA(area, ra) \
154BEGIN_FTR_SECTION_NESTED(941) \
155 ld ra,area+EX_PPR(r13); \
156 mtspr SPRN_PPR,ra; \
157END_FTR_SECTION_NESTED(CPU_FTR_HAS_PPR,CPU_FTR_HAS_PPR,941)
158
159/*
160 * Get an SPR into a register if the CPU has the given feature
161 */
162#define OPT_GET_SPR(ra, spr, ftr) \
163BEGIN_FTR_SECTION_NESTED(943) \
164 mfspr ra,spr; \
165END_FTR_SECTION_NESTED(ftr,ftr,943)
166
167/*
168 * Set an SPR from a register if the CPU has the given feature
169 */
170#define OPT_SET_SPR(ra, spr, ftr) \
171BEGIN_FTR_SECTION_NESTED(943) \
172 mtspr spr,ra; \
173END_FTR_SECTION_NESTED(ftr,ftr,943)
174
175/*
176 * Save a register to the PACA if the CPU has the given feature
177 */
178#define OPT_SAVE_REG_TO_PACA(offset, ra, ftr) \
179BEGIN_FTR_SECTION_NESTED(943) \
180 std ra,offset(r13); \
181END_FTR_SECTION_NESTED(ftr,ftr,943)
182
183/*
184 * Branch to label using its 0xC000 address. This results in instruction
185 * address suitable for MSR[IR]=0 or 1, which allows relocation to be turned
186 * on using mtmsr rather than rfid.
187 *
188 * This could set the 0xc bits for !RELOCATABLE as an immediate, rather than
189 * load KBASE for a slight optimisation.
190 */
191#define BRANCH_TO_C000(reg, label) \
192 __LOAD_FAR_HANDLER(reg, label); \
193 mtctr reg; \
194 bctr
195
196.macro INT_KVM_HANDLER name, vec, hsrr, area, skip
197 TRAMP_KVM_BEGIN(\name\()_kvm)
198 KVM_HANDLER \vec, \hsrr, \area, \skip
199.endm
200
201#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
202#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
203/*
204 * If hv is possible, interrupts come into to the hv version
205 * of the kvmppc_interrupt code, which then jumps to the PR handler,
206 * kvmppc_interrupt_pr, if the guest is a PR guest.
207 */
208#define kvmppc_interrupt kvmppc_interrupt_hv
209#else
210#define kvmppc_interrupt kvmppc_interrupt_pr
211#endif
212
213.macro KVMTEST name, hsrr, n
214 lbz r10,HSTATE_IN_GUEST(r13)
215 cmpwi r10,0
216 bne \name\()_kvm
217.endm
218
219.macro KVM_HANDLER vec, hsrr, area, skip
220 .if \skip
221 cmpwi r10,KVM_GUEST_MODE_SKIP
222 beq 89f
223 .else
224BEGIN_FTR_SECTION_NESTED(947)
225 ld r10,\area+EX_CFAR(r13)
226 std r10,HSTATE_CFAR(r13)
227END_FTR_SECTION_NESTED(CPU_FTR_CFAR,CPU_FTR_CFAR,947)
228 .endif
229
230BEGIN_FTR_SECTION_NESTED(948)
231 ld r10,\area+EX_PPR(r13)
232 std r10,HSTATE_PPR(r13)
233END_FTR_SECTION_NESTED(CPU_FTR_HAS_PPR,CPU_FTR_HAS_PPR,948)
234 ld r10,\area+EX_R10(r13)
235 std r12,HSTATE_SCRATCH0(r13)
236 sldi r12,r9,32
237 /* HSRR variants have the 0x2 bit added to their trap number */
238 .if \hsrr == EXC_HV_OR_STD
239 BEGIN_FTR_SECTION
240 ori r12,r12,(\vec + 0x2)
241 FTR_SECTION_ELSE
242 ori r12,r12,(\vec)
243 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
244 .elseif \hsrr
245 ori r12,r12,(\vec + 0x2)
246 .else
247 ori r12,r12,(\vec)
248 .endif
249
250#ifdef CONFIG_RELOCATABLE
251 /*
252 * KVM requires __LOAD_FAR_HANDLER beause kvmppc_interrupt lives
253 * outside the head section. CONFIG_RELOCATABLE KVM expects CTR
254 * to be saved in HSTATE_SCRATCH1.
255 */
256 mfctr r9
257 std r9,HSTATE_SCRATCH1(r13)
258 __LOAD_FAR_HANDLER(r9, kvmppc_interrupt)
259 mtctr r9
260 ld r9,\area+EX_R9(r13)
261 bctr
262#else
263 ld r9,\area+EX_R9(r13)
264 b kvmppc_interrupt
265#endif
266
267
268 .if \skip
26989: mtocrf 0x80,r9
270 ld r9,\area+EX_R9(r13)
271 ld r10,\area+EX_R10(r13)
272 .if \hsrr == EXC_HV_OR_STD
273 BEGIN_FTR_SECTION
274 b kvmppc_skip_Hinterrupt
275 FTR_SECTION_ELSE
276 b kvmppc_skip_interrupt
277 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
278 .elseif \hsrr
279 b kvmppc_skip_Hinterrupt
280 .else
281 b kvmppc_skip_interrupt
282 .endif
283 .endif
284.endm
285
286#else
287.macro KVMTEST name, hsrr, n
288.endm
289.macro KVM_HANDLER name, vec, hsrr, area, skip
290.endm
291#endif
292
293.macro INT_SAVE_SRR_AND_JUMP label, hsrr, set_ri
294 ld r10,PACAKMSR(r13) /* get MSR value for kernel */
295 .if ! \set_ri
296 xori r10,r10,MSR_RI /* Clear MSR_RI */
297 .endif
298 .if \hsrr == EXC_HV_OR_STD
299 BEGIN_FTR_SECTION
300 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
301 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
302 mtspr SPRN_HSRR1,r10
303 FTR_SECTION_ELSE
304 mfspr r11,SPRN_SRR0 /* save SRR0 */
305 mfspr r12,SPRN_SRR1 /* and SRR1 */
306 mtspr SPRN_SRR1,r10
307 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
308 .elseif \hsrr
309 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
310 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
311 mtspr SPRN_HSRR1,r10
312 .else
313 mfspr r11,SPRN_SRR0 /* save SRR0 */
314 mfspr r12,SPRN_SRR1 /* and SRR1 */
315 mtspr SPRN_SRR1,r10
316 .endif
317 LOAD_HANDLER(r10, \label\())
318 .if \hsrr == EXC_HV_OR_STD
319 BEGIN_FTR_SECTION
320 mtspr SPRN_HSRR0,r10
321 HRFI_TO_KERNEL
322 FTR_SECTION_ELSE
323 mtspr SPRN_SRR0,r10
324 RFI_TO_KERNEL
325 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
326 .elseif \hsrr
327 mtspr SPRN_HSRR0,r10
328 HRFI_TO_KERNEL
329 .else
330 mtspr SPRN_SRR0,r10
331 RFI_TO_KERNEL
332 .endif
333 b . /* prevent speculative execution */
334.endm
335
336/* INT_SAVE_SRR_AND_JUMP works for real or virt, this is faster but virt only */
337.macro INT_VIRT_SAVE_SRR_AND_JUMP label, hsrr
338#ifdef CONFIG_RELOCATABLE
339 .if \hsrr == EXC_HV_OR_STD
340 BEGIN_FTR_SECTION
341 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
342 FTR_SECTION_ELSE
343 mfspr r11,SPRN_SRR0 /* save SRR0 */
344 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
345 .elseif \hsrr
346 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
347 .else
348 mfspr r11,SPRN_SRR0 /* save SRR0 */
349 .endif
350 LOAD_HANDLER(r12, \label\())
351 mtctr r12
352 .if \hsrr == EXC_HV_OR_STD
353 BEGIN_FTR_SECTION
354 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
355 FTR_SECTION_ELSE
356 mfspr r12,SPRN_SRR1 /* and HSRR1 */
357 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
358 .elseif \hsrr
359 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
360 .else
361 mfspr r12,SPRN_SRR1 /* and HSRR1 */
362 .endif
363 li r10,MSR_RI
364 mtmsrd r10,1 /* Set RI (EE=0) */
365 bctr
366#else
367 .if \hsrr == EXC_HV_OR_STD
368 BEGIN_FTR_SECTION
369 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
370 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
371 FTR_SECTION_ELSE
372 mfspr r11,SPRN_SRR0 /* save SRR0 */
373 mfspr r12,SPRN_SRR1 /* and SRR1 */
374 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
375 .elseif \hsrr
376 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
377 mfspr r12,SPRN_HSRR1 /* and HSRR1 */
378 .else
379 mfspr r11,SPRN_SRR0 /* save SRR0 */
380 mfspr r12,SPRN_SRR1 /* and SRR1 */
381 .endif
382 li r10,MSR_RI
383 mtmsrd r10,1 /* Set RI (EE=0) */
384 b \label
385#endif
386.endm
387
388/*
389 * This is the BOOK3S interrupt entry code macro.
390 *
391 * This can result in one of several things happening:
392 * - Branch to the _common handler, relocated, in virtual mode.
393 * These are normal interrupts (synchronous and asynchronous) handled by
394 * the kernel.
395 * - Branch to KVM, relocated but real mode interrupts remain in real mode.
396 * These occur when HSTATE_IN_GUEST is set. The interrupt may be caused by
397 * / intended for host or guest kernel, but KVM must always be involved
398 * because the machine state is set for guest execution.
399 * - Branch to the masked handler, unrelocated.
400 * These occur when maskable asynchronous interrupts are taken with the
401 * irq_soft_mask set.
402 * - Branch to an "early" handler in real mode but relocated.
403 * This is done if early=1. MCE and HMI use these to handle errors in real
404 * mode.
405 * - Fall through and continue executing in real, unrelocated mode.
406 * This is done if early=2.
407 */
408.macro INT_HANDLER name, vec, ool=0, early=0, virt=0, hsrr=0, area=PACA_EXGEN, ri=1, dar=0, dsisr=0, bitmask=0, kvm=0
409 SET_SCRATCH0(r13) /* save r13 */
410 GET_PACA(r13)
411 std r9,\area\()+EX_R9(r13) /* save r9 */
412 OPT_GET_SPR(r9, SPRN_PPR, CPU_FTR_HAS_PPR)
413 HMT_MEDIUM
414 std r10,\area\()+EX_R10(r13) /* save r10 - r12 */
415 OPT_GET_SPR(r10, SPRN_CFAR, CPU_FTR_CFAR)
416 .if \ool
417 .if !\virt
418 b tramp_real_\name
419 .pushsection .text
420 TRAMP_REAL_BEGIN(tramp_real_\name)
421 .else
422 b tramp_virt_\name
423 .pushsection .text
424 TRAMP_VIRT_BEGIN(tramp_virt_\name)
425 .endif
426 .endif
427
428 OPT_SAVE_REG_TO_PACA(\area\()+EX_PPR, r9, CPU_FTR_HAS_PPR)
429 OPT_SAVE_REG_TO_PACA(\area\()+EX_CFAR, r10, CPU_FTR_CFAR)
430 INTERRUPT_TO_KERNEL
431 SAVE_CTR(r10, \area\())
432 mfcr r9
433 .if \kvm
434 KVMTEST \name \hsrr \vec
435 .endif
436 .if \bitmask
437 lbz r10,PACAIRQSOFTMASK(r13)
438 andi. r10,r10,\bitmask
439 /* Associate vector numbers with bits in paca->irq_happened */
440 .if \vec == 0x500 || \vec == 0xea0
441 li r10,PACA_IRQ_EE
442 .elseif \vec == 0x900
443 li r10,PACA_IRQ_DEC
444 .elseif \vec == 0xa00 || \vec == 0xe80
445 li r10,PACA_IRQ_DBELL
446 .elseif \vec == 0xe60
447 li r10,PACA_IRQ_HMI
448 .elseif \vec == 0xf00
449 li r10,PACA_IRQ_PMI
450 .else
451 .abort "Bad maskable vector"
452 .endif
453
454 .if \hsrr == EXC_HV_OR_STD
455 BEGIN_FTR_SECTION
456 bne masked_Hinterrupt
457 FTR_SECTION_ELSE
458 bne masked_interrupt
459 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
460 .elseif \hsrr
461 bne masked_Hinterrupt
462 .else
463 bne masked_interrupt
464 .endif
465 .endif
466
467 std r11,\area\()+EX_R11(r13)
468 std r12,\area\()+EX_R12(r13)
469
470 /*
471 * DAR/DSISR, SCRATCH0 must be read before setting MSR[RI],
472 * because a d-side MCE will clobber those registers so is
473 * not recoverable if they are live.
474 */
475 GET_SCRATCH0(r10)
476 std r10,\area\()+EX_R13(r13)
477 .if \dar
478 .if \hsrr
479 mfspr r10,SPRN_HDAR
480 .else
481 mfspr r10,SPRN_DAR
482 .endif
483 std r10,\area\()+EX_DAR(r13)
484 .endif
485 .if \dsisr
486 .if \hsrr
487 mfspr r10,SPRN_HDSISR
488 .else
489 mfspr r10,SPRN_DSISR
490 .endif
491 stw r10,\area\()+EX_DSISR(r13)
492 .endif
493
494 .if \early == 2
495 /* nothing more */
496 .elseif \early
497 mfctr r10 /* save ctr, even for !RELOCATABLE */
498 BRANCH_TO_C000(r11, \name\()_early_common)
499 .elseif !\virt
500 INT_SAVE_SRR_AND_JUMP \name\()_common, \hsrr, \ri
501 .else
502 INT_VIRT_SAVE_SRR_AND_JUMP \name\()_common, \hsrr
503 .endif
504 .if \ool
505 .popsection
506 .endif
507.endm
508
509/*
510 * On entry r13 points to the paca, r9-r13 are saved in the paca,
511 * r9 contains the saved CR, r11 and r12 contain the saved SRR0 and
512 * SRR1, and relocation is on.
513 *
514 * If stack=0, then the stack is already set in r1, and r1 is saved in r10.
515 * PPR save and CPU accounting is not done for the !stack case (XXX why not?)
516 */
517.macro INT_COMMON vec, area, stack, kaup, reconcile, dar, dsisr
518 .if \stack
519 andi. r10,r12,MSR_PR /* See if coming from user */
520 mr r10,r1 /* Save r1 */
521 subi r1,r1,INT_FRAME_SIZE /* alloc frame on kernel stack */
522 beq- 100f
523 ld r1,PACAKSAVE(r13) /* kernel stack to use */
524100: tdgei r1,-INT_FRAME_SIZE /* trap if r1 is in userspace */
525 EMIT_BUG_ENTRY 100b,__FILE__,__LINE__,0
526 .endif
527
528 std r9,_CCR(r1) /* save CR in stackframe */
529 std r11,_NIP(r1) /* save SRR0 in stackframe */
530 std r12,_MSR(r1) /* save SRR1 in stackframe */
531 std r10,0(r1) /* make stack chain pointer */
532 std r0,GPR0(r1) /* save r0 in stackframe */
533 std r10,GPR1(r1) /* save r1 in stackframe */
534
535 .if \stack
536 .if \kaup
537 kuap_save_amr_and_lock r9, r10, cr1, cr0
538 .endif
539 beq 101f /* if from kernel mode */
540 ACCOUNT_CPU_USER_ENTRY(r13, r9, r10)
541 SAVE_PPR(\area, r9)
542101:
543 .else
544 .if \kaup
545 kuap_save_amr_and_lock r9, r10, cr1
546 .endif
547 .endif
548
549 /* Save original regs values from save area to stack frame. */
550 ld r9,\area+EX_R9(r13) /* move r9, r10 to stackframe */
551 ld r10,\area+EX_R10(r13)
552 std r9,GPR9(r1)
553 std r10,GPR10(r1)
554 ld r9,\area+EX_R11(r13) /* move r11 - r13 to stackframe */
555 ld r10,\area+EX_R12(r13)
556 ld r11,\area+EX_R13(r13)
557 std r9,GPR11(r1)
558 std r10,GPR12(r1)
559 std r11,GPR13(r1)
560 .if \dar
561 .if \dar == 2
562 ld r10,_NIP(r1)
563 .else
564 ld r10,\area+EX_DAR(r13)
565 .endif
566 std r10,_DAR(r1)
567 .endif
568 .if \dsisr
569 .if \dsisr == 2
570 ld r10,_MSR(r1)
571 lis r11,DSISR_SRR1_MATCH_64S@h
572 and r10,r10,r11
573 .else
574 lwz r10,\area+EX_DSISR(r13)
575 .endif
576 std r10,_DSISR(r1)
577 .endif
578BEGIN_FTR_SECTION_NESTED(66)
579 ld r10,\area+EX_CFAR(r13)
580 std r10,ORIG_GPR3(r1)
581END_FTR_SECTION_NESTED(CPU_FTR_CFAR, CPU_FTR_CFAR, 66)
582 GET_CTR(r10, \area)
583 std r10,_CTR(r1)
584 std r2,GPR2(r1) /* save r2 in stackframe */
585 SAVE_4GPRS(3, r1) /* save r3 - r6 in stackframe */
586 SAVE_2GPRS(7, r1) /* save r7, r8 in stackframe */
587 mflr r9 /* Get LR, later save to stack */
588 ld r2,PACATOC(r13) /* get kernel TOC into r2 */
589 std r9,_LINK(r1)
590 lbz r10,PACAIRQSOFTMASK(r13)
591 mfspr r11,SPRN_XER /* save XER in stackframe */
592 std r10,SOFTE(r1)
593 std r11,_XER(r1)
594 li r9,(\vec)+1
595 std r9,_TRAP(r1) /* set trap number */
596 li r10,0
597 ld r11,exception_marker@toc(r2)
598 std r10,RESULT(r1) /* clear regs->result */
599 std r11,STACK_FRAME_OVERHEAD-16(r1) /* mark the frame */
600
601 .if \stack
602 ACCOUNT_STOLEN_TIME
603 .endif
604
605 .if \reconcile
606 RECONCILE_IRQ_STATE(r10, r11)
607 .endif
608.endm
609
610/*
611 * Restore all registers including H/SRR0/1 saved in a stack frame of a
612 * standard exception.
613 */
614.macro EXCEPTION_RESTORE_REGS hsrr
615 /* Move original SRR0 and SRR1 into the respective regs */
616 ld r9,_MSR(r1)
617 .if \hsrr == EXC_HV_OR_STD
618 .error "EXC_HV_OR_STD Not implemented for EXCEPTION_RESTORE_REGS"
619 .endif
620 .if \hsrr
621 mtspr SPRN_HSRR1,r9
622 .else
623 mtspr SPRN_SRR1,r9
624 .endif
625 ld r9,_NIP(r1)
626 .if \hsrr
627 mtspr SPRN_HSRR0,r9
628 .else
629 mtspr SPRN_SRR0,r9
630 .endif
631 ld r9,_CTR(r1)
632 mtctr r9
633 ld r9,_XER(r1)
634 mtxer r9
635 ld r9,_LINK(r1)
636 mtlr r9
637 ld r9,_CCR(r1)
638 mtcr r9
639 REST_8GPRS(2, r1)
640 REST_4GPRS(10, r1)
641 REST_GPR(0, r1)
642 /* restore original r1. */
643 ld r1,GPR1(r1)
644.endm
645
646#define RUNLATCH_ON \
647BEGIN_FTR_SECTION \
648 ld r3, PACA_THREAD_INFO(r13); \
649 ld r4,TI_LOCAL_FLAGS(r3); \
650 andi. r0,r4,_TLF_RUNLATCH; \
651 beql ppc64_runlatch_on_trampoline; \
652END_FTR_SECTION_IFSET(CPU_FTR_CTRL)
653
654/*
655 * When the idle code in power4_idle puts the CPU into NAP mode,
656 * it has to do so in a loop, and relies on the external interrupt
657 * and decrementer interrupt entry code to get it out of the loop.
658 * It sets the _TLF_NAPPING bit in current_thread_info()->local_flags
659 * to signal that it is in the loop and needs help to get out.
660 */
661#ifdef CONFIG_PPC_970_NAP
662#define FINISH_NAP \
663BEGIN_FTR_SECTION \
664 ld r11, PACA_THREAD_INFO(r13); \
665 ld r9,TI_LOCAL_FLAGS(r11); \
666 andi. r10,r9,_TLF_NAPPING; \
667 bnel power4_fixup_nap; \
668END_FTR_SECTION_IFSET(CPU_FTR_CAN_NAP)
669#else
670#define FINISH_NAP
671#endif
672
673#define EXC_COMMON(name, realvec, hdlr) \
674 EXC_COMMON_BEGIN(name); \
675 INT_COMMON realvec, PACA_EXGEN, 1, 1, 1, 0, 0 ; \
676 bl save_nvgprs; \
677 addi r3,r1,STACK_FRAME_OVERHEAD; \
678 bl hdlr; \
679 b ret_from_except
680
681/*
682 * Like EXC_COMMON, but for exceptions that can occur in the idle task and
683 * therefore need the special idle handling (finish nap and runlatch)
684 */
685#define EXC_COMMON_ASYNC(name, realvec, hdlr) \
686 EXC_COMMON_BEGIN(name); \
687 INT_COMMON realvec, PACA_EXGEN, 1, 1, 1, 0, 0 ; \
688 FINISH_NAP; \
689 RUNLATCH_ON; \
690 addi r3,r1,STACK_FRAME_OVERHEAD; \
691 bl hdlr; \
692 b ret_from_except_lite
693
694
695/*
696 * There are a few constraints to be concerned with.
697 * - Real mode exceptions code/data must be located at their physical location.
698 * - Virtual mode exceptions must be mapped at their 0xc000... location.
699 * - Fixed location code must not call directly beyond the __end_interrupts
700 * area when built with CONFIG_RELOCATABLE. LOAD_HANDLER / bctr sequence
701 * must be used.
702 * - LOAD_HANDLER targets must be within first 64K of physical 0 /
703 * virtual 0xc00...
704 * - Conditional branch targets must be within +/-32K of caller.
705 *
706 * "Virtual exceptions" run with relocation on (MSR_IR=1, MSR_DR=1), and
707 * therefore don't have to run in physically located code or rfid to
708 * virtual mode kernel code. However on relocatable kernels they do have
709 * to branch to KERNELBASE offset because the rest of the kernel (outside
710 * the exception vectors) may be located elsewhere.
711 *
712 * Virtual exceptions correspond with physical, except their entry points
713 * are offset by 0xc000000000000000 and also tend to get an added 0x4000
714 * offset applied. Virtual exceptions are enabled with the Alternate
715 * Interrupt Location (AIL) bit set in the LPCR. However this does not
716 * guarantee they will be delivered virtually. Some conditions (see the ISA)
717 * cause exceptions to be delivered in real mode.
718 *
719 * It's impossible to receive interrupts below 0x300 via AIL.
720 *
721 * KVM: None of the virtual exceptions are from the guest. Anything that
722 * escalated to HV=1 from HV=0 is delivered via real mode handlers.
723 *
724 *
725 * We layout physical memory as follows:
726 * 0x0000 - 0x00ff : Secondary processor spin code
727 * 0x0100 - 0x18ff : Real mode pSeries interrupt vectors
728 * 0x1900 - 0x3fff : Real mode trampolines
729 * 0x4000 - 0x58ff : Relon (IR=1,DR=1) mode pSeries interrupt vectors
730 * 0x5900 - 0x6fff : Relon mode trampolines
731 * 0x7000 - 0x7fff : FWNMI data area
732 * 0x8000 - .... : Common interrupt handlers, remaining early
733 * setup code, rest of kernel.
734 *
735 * We could reclaim 0x4000-0x42ff for real mode trampolines if the space
736 * is necessary. Until then it's more consistent to explicitly put VIRT_NONE
737 * vectors there.
738 */
739OPEN_FIXED_SECTION(real_vectors, 0x0100, 0x1900)
740OPEN_FIXED_SECTION(real_trampolines, 0x1900, 0x4000)
741OPEN_FIXED_SECTION(virt_vectors, 0x4000, 0x5900)
742OPEN_FIXED_SECTION(virt_trampolines, 0x5900, 0x7000)
743
744#ifdef CONFIG_PPC_POWERNV
745 .globl start_real_trampolines
746 .globl end_real_trampolines
747 .globl start_virt_trampolines
748 .globl end_virt_trampolines
749#endif
750
751#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
752/*
753 * Data area reserved for FWNMI option.
754 * This address (0x7000) is fixed by the RPA.
755 * pseries and powernv need to keep the whole page from
756 * 0x7000 to 0x8000 free for use by the firmware
757 */
758ZERO_FIXED_SECTION(fwnmi_page, 0x7000, 0x8000)
759OPEN_TEXT_SECTION(0x8000)
760#else
761OPEN_TEXT_SECTION(0x7000)
762#endif
763
764USE_FIXED_SECTION(real_vectors)
765
766/*
767 * This is the start of the interrupt handlers for pSeries
768 * This code runs with relocation off.
769 * Code from here to __end_interrupts gets copied down to real
770 * address 0x100 when we are running a relocatable kernel.
771 * Therefore any relative branches in this section must only
772 * branch to labels in this section.
773 */
774 .globl __start_interrupts
775__start_interrupts:
776
777/* No virt vectors corresponding with 0x0..0x100 */
778EXC_VIRT_NONE(0x4000, 0x100)
779
780
781EXC_REAL_BEGIN(system_reset, 0x100, 0x100)
782#ifdef CONFIG_PPC_P7_NAP
783 /*
784 * If running native on arch 2.06 or later, check if we are waking up
785 * from nap/sleep/winkle, and branch to idle handler. This tests SRR1
786 * bits 46:47. A non-0 value indicates that we are coming from a power
787 * saving state. The idle wakeup handler initially runs in real mode,
788 * but we branch to the 0xc000... address so we can turn on relocation
789 * with mtmsrd later, after SPRs are restored.
790 *
791 * Careful to minimise cost for the fast path (idle wakeup) while
792 * also avoiding clobbering CFAR for the debug path (non-idle).
793 *
794 * For the idle wake case volatile registers can be clobbered, which
795 * is why we use those initially. If it turns out to not be an idle
796 * wake, carefully put everything back the way it was, so we can use
797 * common exception macros to handle it.
798 */
799BEGIN_FTR_SECTION
800 SET_SCRATCH0(r13)
801 GET_PACA(r13)
802 std r3,PACA_EXNMI+0*8(r13)
803 std r4,PACA_EXNMI+1*8(r13)
804 std r5,PACA_EXNMI+2*8(r13)
805 mfspr r3,SPRN_SRR1
806 mfocrf r4,0x80
807 rlwinm. r5,r3,47-31,30,31
808 bne+ system_reset_idle_wake
809 /* Not powersave wakeup. Restore regs for regular interrupt handler. */
810 mtocrf 0x80,r4
811 ld r3,PACA_EXNMI+0*8(r13)
812 ld r4,PACA_EXNMI+1*8(r13)
813 ld r5,PACA_EXNMI+2*8(r13)
814 GET_SCRATCH0(r13)
815END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
816#endif
817
818 INT_HANDLER system_reset, 0x100, area=PACA_EXNMI, ri=0, kvm=1
819 /*
820 * MSR_RI is not enabled, because PACA_EXNMI and nmi stack is
821 * being used, so a nested NMI exception would corrupt it.
822 *
823 * In theory, we should not enable relocation here if it was disabled
824 * in SRR1, because the MMU may not be configured to support it (e.g.,
825 * SLB may have been cleared). In practice, there should only be a few
826 * small windows where that's the case, and sreset is considered to
827 * be dangerous anyway.
828 */
829EXC_REAL_END(system_reset, 0x100, 0x100)
830EXC_VIRT_NONE(0x4100, 0x100)
831INT_KVM_HANDLER system_reset 0x100, EXC_STD, PACA_EXNMI, 0
832
833#ifdef CONFIG_PPC_P7_NAP
834TRAMP_REAL_BEGIN(system_reset_idle_wake)
835 /* We are waking up from idle, so may clobber any volatile register */
836 cmpwi cr1,r5,2
837 bltlr cr1 /* no state loss, return to idle caller with r3=SRR1 */
838 BRANCH_TO_C000(r12, DOTSYM(idle_return_gpr_loss))
839#endif
840
841#ifdef CONFIG_PPC_PSERIES
842/*
843 * Vectors for the FWNMI option. Share common code.
844 */
845TRAMP_REAL_BEGIN(system_reset_fwnmi)
846 /* See comment at system_reset exception, don't turn on RI */
847 INT_HANDLER system_reset, 0x100, area=PACA_EXNMI, ri=0
848
849#endif /* CONFIG_PPC_PSERIES */
850
851EXC_COMMON_BEGIN(system_reset_common)
852 /*
853 * Increment paca->in_nmi then enable MSR_RI. SLB or MCE will be able
854 * to recover, but nested NMI will notice in_nmi and not recover
855 * because of the use of the NMI stack. in_nmi reentrancy is tested in
856 * system_reset_exception.
857 */
858 lhz r10,PACA_IN_NMI(r13)
859 addi r10,r10,1
860 sth r10,PACA_IN_NMI(r13)
861 li r10,MSR_RI
862 mtmsrd r10,1
863
864 mr r10,r1
865 ld r1,PACA_NMI_EMERG_SP(r13)
866 subi r1,r1,INT_FRAME_SIZE
867 INT_COMMON 0x100, PACA_EXNMI, 0, 1, 0, 0, 0
868 bl save_nvgprs
869 /*
870 * Set IRQS_ALL_DISABLED unconditionally so arch_irqs_disabled does
871 * the right thing. We do not want to reconcile because that goes
872 * through irq tracing which we don't want in NMI.
873 *
874 * Save PACAIRQHAPPENED because some code will do a hard disable
875 * (e.g., xmon). So we want to restore this back to where it was
876 * when we return. DAR is unused in the stack, so save it there.
877 */
878 li r10,IRQS_ALL_DISABLED
879 stb r10,PACAIRQSOFTMASK(r13)
880 lbz r10,PACAIRQHAPPENED(r13)
881 std r10,_DAR(r1)
882
883 addi r3,r1,STACK_FRAME_OVERHEAD
884 bl system_reset_exception
885
886 /* Clear MSR_RI before setting SRR0 and SRR1. */
887 li r9,0
888 mtmsrd r9,1
889
890 /*
891 * MSR_RI is clear, now we can decrement paca->in_nmi.
892 */
893 lhz r10,PACA_IN_NMI(r13)
894 subi r10,r10,1
895 sth r10,PACA_IN_NMI(r13)
896
897 /*
898 * Restore soft mask settings.
899 */
900 ld r10,_DAR(r1)
901 stb r10,PACAIRQHAPPENED(r13)
902 ld r10,SOFTE(r1)
903 stb r10,PACAIRQSOFTMASK(r13)
904
905 EXCEPTION_RESTORE_REGS EXC_STD
906 RFI_TO_USER_OR_KERNEL
907
908
909EXC_REAL_BEGIN(machine_check, 0x200, 0x100)
910 INT_HANDLER machine_check, 0x200, early=1, area=PACA_EXMC, dar=1, dsisr=1
911 /*
912 * MSR_RI is not enabled, because PACA_EXMC is being used, so a
913 * nested machine check corrupts it. machine_check_common enables
914 * MSR_RI.
915 */
916EXC_REAL_END(machine_check, 0x200, 0x100)
917EXC_VIRT_NONE(0x4200, 0x100)
918
919#ifdef CONFIG_PPC_PSERIES
920TRAMP_REAL_BEGIN(machine_check_fwnmi)
921 /* See comment at machine_check exception, don't turn on RI */
922 INT_HANDLER machine_check, 0x200, early=1, area=PACA_EXMC, dar=1, dsisr=1
923#endif
924
925INT_KVM_HANDLER machine_check 0x200, EXC_STD, PACA_EXMC, 1
926
927#define MACHINE_CHECK_HANDLER_WINDUP \
928 /* Clear MSR_RI before setting SRR0 and SRR1. */\
929 li r9,0; \
930 mtmsrd r9,1; /* Clear MSR_RI */ \
931 /* Decrement paca->in_mce now RI is clear. */ \
932 lhz r12,PACA_IN_MCE(r13); \
933 subi r12,r12,1; \
934 sth r12,PACA_IN_MCE(r13); \
935 EXCEPTION_RESTORE_REGS EXC_STD
936
937EXC_COMMON_BEGIN(machine_check_early_common)
938 mtctr r10 /* Restore ctr */
939 mfspr r11,SPRN_SRR0
940 mfspr r12,SPRN_SRR1
941
942 /*
943 * Switch to mc_emergency stack and handle re-entrancy (we limit
944 * the nested MCE upto level 4 to avoid stack overflow).
945 * Save MCE registers srr1, srr0, dar and dsisr and then set ME=1
946 *
947 * We use paca->in_mce to check whether this is the first entry or
948 * nested machine check. We increment paca->in_mce to track nested
949 * machine checks.
950 *
951 * If this is the first entry then set stack pointer to
952 * paca->mc_emergency_sp, otherwise r1 is already pointing to
953 * stack frame on mc_emergency stack.
954 *
955 * NOTE: We are here with MSR_ME=0 (off), which means we risk a
956 * checkstop if we get another machine check exception before we do
957 * rfid with MSR_ME=1.
958 *
959 * This interrupt can wake directly from idle. If that is the case,
960 * the machine check is handled then the idle wakeup code is called
961 * to restore state.
962 */
963 lhz r10,PACA_IN_MCE(r13)
964 cmpwi r10,0 /* Are we in nested machine check */
965 cmpwi cr1,r10,MAX_MCE_DEPTH /* Are we at maximum nesting */
966 addi r10,r10,1 /* increment paca->in_mce */
967 sth r10,PACA_IN_MCE(r13)
968
969 mr r10,r1 /* Save r1 */
970 bne 1f
971 /* First machine check entry */
972 ld r1,PACAMCEMERGSP(r13) /* Use MC emergency stack */
9731: /* Limit nested MCE to level 4 to avoid stack overflow */
974 bgt cr1,unrecoverable_mce /* Check if we hit limit of 4 */
975 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
976
977 /* We don't touch AMR here, we never go to virtual mode */
978 INT_COMMON 0x200, PACA_EXMC, 0, 0, 0, 1, 1
979
980BEGIN_FTR_SECTION
981 bl enable_machine_check
982END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
983 li r10,MSR_RI
984 mtmsrd r10,1
985
986 bl save_nvgprs
987 addi r3,r1,STACK_FRAME_OVERHEAD
988 bl machine_check_early
989 std r3,RESULT(r1) /* Save result */
990 ld r12,_MSR(r1)
991
992#ifdef CONFIG_PPC_P7_NAP
993 /*
994 * Check if thread was in power saving mode. We come here when any
995 * of the following is true:
996 * a. thread wasn't in power saving mode
997 * b. thread was in power saving mode with no state loss,
998 * supervisor state loss or hypervisor state loss.
999 *
1000 * Go back to nap/sleep/winkle mode again if (b) is true.
1001 */
1002BEGIN_FTR_SECTION
1003 rlwinm. r11,r12,47-31,30,31
1004 bne machine_check_idle_common
1005END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
1006#endif
1007
1008#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1009 /*
1010 * Check if we are coming from guest. If yes, then run the normal
1011 * exception handler which will take the
1012 * machine_check_kvm->kvmppc_interrupt branch to deliver the MC event
1013 * to guest.
1014 */
1015 lbz r11,HSTATE_IN_GUEST(r13)
1016 cmpwi r11,0 /* Check if coming from guest */
1017 bne mce_deliver /* continue if we are. */
1018#endif
1019
1020 /*
1021 * Check if we are coming from userspace. If yes, then run the normal
1022 * exception handler which will deliver the MC event to this kernel.
1023 */
1024 andi. r11,r12,MSR_PR /* See if coming from user. */
1025 bne mce_deliver /* continue in V mode if we are. */
1026
1027 /*
1028 * At this point we are coming from kernel context.
1029 * Queue up the MCE event and return from the interrupt.
1030 * But before that, check if this is an un-recoverable exception.
1031 * If yes, then stay on emergency stack and panic.
1032 */
1033 andi. r11,r12,MSR_RI
1034 beq unrecoverable_mce
1035
1036 /*
1037 * Check if we have successfully handled/recovered from error, if not
1038 * then stay on emergency stack and panic.
1039 */
1040 ld r3,RESULT(r1) /* Load result */
1041 cmpdi r3,0 /* see if we handled MCE successfully */
1042 beq unrecoverable_mce /* if !handled then panic */
1043
1044 /*
1045 * Return from MC interrupt.
1046 * Queue up the MCE event so that we can log it later, while
1047 * returning from kernel or opal call.
1048 */
1049 bl machine_check_queue_event
1050 MACHINE_CHECK_HANDLER_WINDUP
1051 RFI_TO_KERNEL
1052
1053mce_deliver:
1054 /*
1055 * This is a host user or guest MCE. Restore all registers, then
1056 * run the "late" handler. For host user, this will run the
1057 * machine_check_exception handler in virtual mode like a normal
1058 * interrupt handler. For guest, this will trigger the KVM test
1059 * and branch to the KVM interrupt similarly to other interrupts.
1060 */
1061BEGIN_FTR_SECTION
1062 ld r10,ORIG_GPR3(r1)
1063 mtspr SPRN_CFAR,r10
1064END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1065 MACHINE_CHECK_HANDLER_WINDUP
1066 /* See comment at machine_check exception, don't turn on RI */
1067 INT_HANDLER machine_check, 0x200, area=PACA_EXMC, ri=0, dar=1, dsisr=1, kvm=1
1068
1069EXC_COMMON_BEGIN(machine_check_common)
1070 /*
1071 * Machine check is different because we use a different
1072 * save area: PACA_EXMC instead of PACA_EXGEN.
1073 */
1074 INT_COMMON 0x200, PACA_EXMC, 1, 1, 1, 1, 1
1075 FINISH_NAP
1076 /* Enable MSR_RI when finished with PACA_EXMC */
1077 li r10,MSR_RI
1078 mtmsrd r10,1
1079 bl save_nvgprs
1080 addi r3,r1,STACK_FRAME_OVERHEAD
1081 bl machine_check_exception
1082 b ret_from_except
1083
1084#ifdef CONFIG_PPC_P7_NAP
1085/*
1086 * This is an idle wakeup. Low level machine check has already been
1087 * done. Queue the event then call the idle code to do the wake up.
1088 */
1089EXC_COMMON_BEGIN(machine_check_idle_common)
1090 bl machine_check_queue_event
1091
1092 /*
1093 * We have not used any non-volatile GPRs here, and as a rule
1094 * most exception code including machine check does not.
1095 * Therefore PACA_NAPSTATELOST does not need to be set. Idle
1096 * wakeup will restore volatile registers.
1097 *
1098 * Load the original SRR1 into r3 for pnv_powersave_wakeup_mce.
1099 *
1100 * Then decrement MCE nesting after finishing with the stack.
1101 */
1102 ld r3,_MSR(r1)
1103 ld r4,_LINK(r1)
1104
1105 lhz r11,PACA_IN_MCE(r13)
1106 subi r11,r11,1
1107 sth r11,PACA_IN_MCE(r13)
1108
1109 mtlr r4
1110 rlwinm r10,r3,47-31,30,31
1111 cmpwi cr1,r10,2
1112 bltlr cr1 /* no state loss, return to idle caller */
1113 b idle_return_gpr_loss
1114#endif
1115
1116EXC_COMMON_BEGIN(unrecoverable_mce)
1117 /*
1118 * We are going down. But there are chances that we might get hit by
1119 * another MCE during panic path and we may run into unstable state
1120 * with no way out. Hence, turn ME bit off while going down, so that
1121 * when another MCE is hit during panic path, system will checkstop
1122 * and hypervisor will get restarted cleanly by SP.
1123 */
1124BEGIN_FTR_SECTION
1125 li r10,0 /* clear MSR_RI */
1126 mtmsrd r10,1
1127 bl disable_machine_check
1128END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
1129 ld r10,PACAKMSR(r13)
1130 li r3,MSR_ME
1131 andc r10,r10,r3
1132 mtmsrd r10
1133
1134 /* Invoke machine_check_exception to print MCE event and panic. */
1135 addi r3,r1,STACK_FRAME_OVERHEAD
1136 bl machine_check_exception
1137
1138 /*
1139 * We will not reach here. Even if we did, there is no way out.
1140 * Call unrecoverable_exception and die.
1141 */
1142 addi r3,r1,STACK_FRAME_OVERHEAD
1143 bl unrecoverable_exception
1144 b .
1145
1146
1147EXC_REAL_BEGIN(data_access, 0x300, 0x80)
1148 INT_HANDLER data_access, 0x300, ool=1, dar=1, dsisr=1, kvm=1
1149EXC_REAL_END(data_access, 0x300, 0x80)
1150EXC_VIRT_BEGIN(data_access, 0x4300, 0x80)
1151 INT_HANDLER data_access, 0x300, virt=1, dar=1, dsisr=1
1152EXC_VIRT_END(data_access, 0x4300, 0x80)
1153INT_KVM_HANDLER data_access, 0x300, EXC_STD, PACA_EXGEN, 1
1154EXC_COMMON_BEGIN(data_access_common)
1155 /*
1156 * Here r13 points to the paca, r9 contains the saved CR,
1157 * SRR0 and SRR1 are saved in r11 and r12,
1158 * r9 - r13 are saved in paca->exgen.
1159 * EX_DAR and EX_DSISR have saved DAR/DSISR
1160 */
1161 INT_COMMON 0x300, PACA_EXGEN, 1, 1, 1, 1, 1
1162 ld r4,_DAR(r1)
1163 ld r5,_DSISR(r1)
1164BEGIN_MMU_FTR_SECTION
1165 ld r6,_MSR(r1)
1166 li r3,0x300
1167 b do_hash_page /* Try to handle as hpte fault */
1168MMU_FTR_SECTION_ELSE
1169 b handle_page_fault
1170ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1171
1172
1173EXC_REAL_BEGIN(data_access_slb, 0x380, 0x80)
1174 INT_HANDLER data_access_slb, 0x380, ool=1, area=PACA_EXSLB, dar=1, kvm=1
1175EXC_REAL_END(data_access_slb, 0x380, 0x80)
1176EXC_VIRT_BEGIN(data_access_slb, 0x4380, 0x80)
1177 INT_HANDLER data_access_slb, 0x380, virt=1, area=PACA_EXSLB, dar=1
1178EXC_VIRT_END(data_access_slb, 0x4380, 0x80)
1179INT_KVM_HANDLER data_access_slb, 0x380, EXC_STD, PACA_EXSLB, 1
1180EXC_COMMON_BEGIN(data_access_slb_common)
1181 INT_COMMON 0x380, PACA_EXSLB, 1, 1, 0, 1, 0
1182 ld r4,_DAR(r1)
1183 addi r3,r1,STACK_FRAME_OVERHEAD
1184BEGIN_MMU_FTR_SECTION
1185 /* HPT case, do SLB fault */
1186 bl do_slb_fault
1187 cmpdi r3,0
1188 bne- 1f
1189 b fast_exception_return
11901: /* Error case */
1191MMU_FTR_SECTION_ELSE
1192 /* Radix case, access is outside page table range */
1193 li r3,-EFAULT
1194ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1195 std r3,RESULT(r1)
1196 bl save_nvgprs
1197 RECONCILE_IRQ_STATE(r10, r11)
1198 ld r4,_DAR(r1)
1199 ld r5,RESULT(r1)
1200 addi r3,r1,STACK_FRAME_OVERHEAD
1201 bl do_bad_slb_fault
1202 b ret_from_except
1203
1204
1205EXC_REAL_BEGIN(instruction_access, 0x400, 0x80)
1206 INT_HANDLER instruction_access, 0x400, kvm=1
1207EXC_REAL_END(instruction_access, 0x400, 0x80)
1208EXC_VIRT_BEGIN(instruction_access, 0x4400, 0x80)
1209 INT_HANDLER instruction_access, 0x400, virt=1
1210EXC_VIRT_END(instruction_access, 0x4400, 0x80)
1211INT_KVM_HANDLER instruction_access, 0x400, EXC_STD, PACA_EXGEN, 0
1212EXC_COMMON_BEGIN(instruction_access_common)
1213 INT_COMMON 0x400, PACA_EXGEN, 1, 1, 1, 2, 2
1214 ld r4,_DAR(r1)
1215 ld r5,_DSISR(r1)
1216BEGIN_MMU_FTR_SECTION
1217 ld r6,_MSR(r1)
1218 li r3,0x400
1219 b do_hash_page /* Try to handle as hpte fault */
1220MMU_FTR_SECTION_ELSE
1221 b handle_page_fault
1222ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1223
1224
1225EXC_REAL_BEGIN(instruction_access_slb, 0x480, 0x80)
1226 INT_HANDLER instruction_access_slb, 0x480, area=PACA_EXSLB, kvm=1
1227EXC_REAL_END(instruction_access_slb, 0x480, 0x80)
1228EXC_VIRT_BEGIN(instruction_access_slb, 0x4480, 0x80)
1229 INT_HANDLER instruction_access_slb, 0x480, virt=1, area=PACA_EXSLB
1230EXC_VIRT_END(instruction_access_slb, 0x4480, 0x80)
1231INT_KVM_HANDLER instruction_access_slb, 0x480, EXC_STD, PACA_EXSLB, 0
1232EXC_COMMON_BEGIN(instruction_access_slb_common)
1233 INT_COMMON 0x480, PACA_EXSLB, 1, 1, 0, 2, 0
1234 ld r4,_DAR(r1)
1235 addi r3,r1,STACK_FRAME_OVERHEAD
1236BEGIN_MMU_FTR_SECTION
1237 /* HPT case, do SLB fault */
1238 bl do_slb_fault
1239 cmpdi r3,0
1240 bne- 1f
1241 b fast_exception_return
12421: /* Error case */
1243MMU_FTR_SECTION_ELSE
1244 /* Radix case, access is outside page table range */
1245 li r3,-EFAULT
1246ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_TYPE_RADIX)
1247 std r3,RESULT(r1)
1248 bl save_nvgprs
1249 RECONCILE_IRQ_STATE(r10, r11)
1250 ld r4,_DAR(r1)
1251 ld r5,RESULT(r1)
1252 addi r3,r1,STACK_FRAME_OVERHEAD
1253 bl do_bad_slb_fault
1254 b ret_from_except
1255
1256EXC_REAL_BEGIN(hardware_interrupt, 0x500, 0x100)
1257 INT_HANDLER hardware_interrupt, 0x500, hsrr=EXC_HV_OR_STD, bitmask=IRQS_DISABLED, kvm=1
1258EXC_REAL_END(hardware_interrupt, 0x500, 0x100)
1259EXC_VIRT_BEGIN(hardware_interrupt, 0x4500, 0x100)
1260 INT_HANDLER hardware_interrupt, 0x500, virt=1, hsrr=EXC_HV_OR_STD, bitmask=IRQS_DISABLED, kvm=1
1261EXC_VIRT_END(hardware_interrupt, 0x4500, 0x100)
1262INT_KVM_HANDLER hardware_interrupt, 0x500, EXC_HV_OR_STD, PACA_EXGEN, 0
1263EXC_COMMON_ASYNC(hardware_interrupt_common, 0x500, do_IRQ)
1264
1265
1266EXC_REAL_BEGIN(alignment, 0x600, 0x100)
1267 INT_HANDLER alignment, 0x600, dar=1, dsisr=1, kvm=1
1268EXC_REAL_END(alignment, 0x600, 0x100)
1269EXC_VIRT_BEGIN(alignment, 0x4600, 0x100)
1270 INT_HANDLER alignment, 0x600, virt=1, dar=1, dsisr=1
1271EXC_VIRT_END(alignment, 0x4600, 0x100)
1272INT_KVM_HANDLER alignment, 0x600, EXC_STD, PACA_EXGEN, 0
1273EXC_COMMON_BEGIN(alignment_common)
1274 INT_COMMON 0x600, PACA_EXGEN, 1, 1, 1, 1, 1
1275 bl save_nvgprs
1276 addi r3,r1,STACK_FRAME_OVERHEAD
1277 bl alignment_exception
1278 b ret_from_except
1279
1280
1281EXC_REAL_BEGIN(program_check, 0x700, 0x100)
1282 INT_HANDLER program_check, 0x700, kvm=1
1283EXC_REAL_END(program_check, 0x700, 0x100)
1284EXC_VIRT_BEGIN(program_check, 0x4700, 0x100)
1285 INT_HANDLER program_check, 0x700, virt=1
1286EXC_VIRT_END(program_check, 0x4700, 0x100)
1287INT_KVM_HANDLER program_check, 0x700, EXC_STD, PACA_EXGEN, 0
1288EXC_COMMON_BEGIN(program_check_common)
1289 /*
1290 * It's possible to receive a TM Bad Thing type program check with
1291 * userspace register values (in particular r1), but with SRR1 reporting
1292 * that we came from the kernel. Normally that would confuse the bad
1293 * stack logic, and we would report a bad kernel stack pointer. Instead
1294 * we switch to the emergency stack if we're taking a TM Bad Thing from
1295 * the kernel.
1296 */
1297
1298 andi. r10,r12,MSR_PR
1299 bne 2f /* If userspace, go normal path */
1300
1301 andis. r10,r12,(SRR1_PROGTM)@h
1302 bne 1f /* If TM, emergency */
1303
1304 cmpdi r1,-INT_FRAME_SIZE /* check if r1 is in userspace */
1305 blt 2f /* normal path if not */
1306
1307 /* Use the emergency stack */
13081: andi. r10,r12,MSR_PR /* Set CR0 correctly for label */
1309 /* 3 in EXCEPTION_PROLOG_COMMON */
1310 mr r10,r1 /* Save r1 */
1311 ld r1,PACAEMERGSP(r13) /* Use emergency stack */
1312 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
1313 INT_COMMON 0x700, PACA_EXGEN, 0, 1, 1, 0, 0
1314 b 3f
13152:
1316 INT_COMMON 0x700, PACA_EXGEN, 1, 1, 1, 0, 0
13173:
1318 bl save_nvgprs
1319 addi r3,r1,STACK_FRAME_OVERHEAD
1320 bl program_check_exception
1321 b ret_from_except
1322
1323
1324EXC_REAL_BEGIN(fp_unavailable, 0x800, 0x100)
1325 INT_HANDLER fp_unavailable, 0x800, kvm=1
1326EXC_REAL_END(fp_unavailable, 0x800, 0x100)
1327EXC_VIRT_BEGIN(fp_unavailable, 0x4800, 0x100)
1328 INT_HANDLER fp_unavailable, 0x800, virt=1
1329EXC_VIRT_END(fp_unavailable, 0x4800, 0x100)
1330INT_KVM_HANDLER fp_unavailable, 0x800, EXC_STD, PACA_EXGEN, 0
1331EXC_COMMON_BEGIN(fp_unavailable_common)
1332 INT_COMMON 0x800, PACA_EXGEN, 1, 1, 0, 0, 0
1333 bne 1f /* if from user, just load it up */
1334 bl save_nvgprs
1335 RECONCILE_IRQ_STATE(r10, r11)
1336 addi r3,r1,STACK_FRAME_OVERHEAD
1337 bl kernel_fp_unavailable_exception
13380: trap
1339 EMIT_BUG_ENTRY 0b, __FILE__, __LINE__, 0
13401:
1341#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1342BEGIN_FTR_SECTION
1343 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1344 * transaction), go do TM stuff
1345 */
1346 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1347 bne- 2f
1348END_FTR_SECTION_IFSET(CPU_FTR_TM)
1349#endif
1350 bl load_up_fpu
1351 b fast_exception_return
1352#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
13532: /* User process was in a transaction */
1354 bl save_nvgprs
1355 RECONCILE_IRQ_STATE(r10, r11)
1356 addi r3,r1,STACK_FRAME_OVERHEAD
1357 bl fp_unavailable_tm
1358 b ret_from_except
1359#endif
1360
1361
1362EXC_REAL_BEGIN(decrementer, 0x900, 0x80)
1363 INT_HANDLER decrementer, 0x900, ool=1, bitmask=IRQS_DISABLED, kvm=1
1364EXC_REAL_END(decrementer, 0x900, 0x80)
1365EXC_VIRT_BEGIN(decrementer, 0x4900, 0x80)
1366 INT_HANDLER decrementer, 0x900, virt=1, bitmask=IRQS_DISABLED
1367EXC_VIRT_END(decrementer, 0x4900, 0x80)
1368INT_KVM_HANDLER decrementer, 0x900, EXC_STD, PACA_EXGEN, 0
1369EXC_COMMON_ASYNC(decrementer_common, 0x900, timer_interrupt)
1370
1371
1372EXC_REAL_BEGIN(hdecrementer, 0x980, 0x80)
1373 INT_HANDLER hdecrementer, 0x980, hsrr=EXC_HV, kvm=1
1374EXC_REAL_END(hdecrementer, 0x980, 0x80)
1375EXC_VIRT_BEGIN(hdecrementer, 0x4980, 0x80)
1376 INT_HANDLER hdecrementer, 0x980, virt=1, hsrr=EXC_HV, kvm=1
1377EXC_VIRT_END(hdecrementer, 0x4980, 0x80)
1378INT_KVM_HANDLER hdecrementer, 0x980, EXC_HV, PACA_EXGEN, 0
1379EXC_COMMON(hdecrementer_common, 0x980, hdec_interrupt)
1380
1381
1382EXC_REAL_BEGIN(doorbell_super, 0xa00, 0x100)
1383 INT_HANDLER doorbell_super, 0xa00, bitmask=IRQS_DISABLED, kvm=1
1384EXC_REAL_END(doorbell_super, 0xa00, 0x100)
1385EXC_VIRT_BEGIN(doorbell_super, 0x4a00, 0x100)
1386 INT_HANDLER doorbell_super, 0xa00, virt=1, bitmask=IRQS_DISABLED
1387EXC_VIRT_END(doorbell_super, 0x4a00, 0x100)
1388INT_KVM_HANDLER doorbell_super, 0xa00, EXC_STD, PACA_EXGEN, 0
1389#ifdef CONFIG_PPC_DOORBELL
1390EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, doorbell_exception)
1391#else
1392EXC_COMMON_ASYNC(doorbell_super_common, 0xa00, unknown_exception)
1393#endif
1394
1395
1396EXC_REAL_NONE(0xb00, 0x100)
1397EXC_VIRT_NONE(0x4b00, 0x100)
1398
1399/*
1400 * system call / hypercall (0xc00, 0x4c00)
1401 *
1402 * The system call exception is invoked with "sc 0" and does not alter HV bit.
1403 *
1404 * The hypercall is invoked with "sc 1" and sets HV=1.
1405 *
1406 * In HPT, sc 1 always goes to 0xc00 real mode. In RADIX, sc 1 can go to
1407 * 0x4c00 virtual mode.
1408 *
1409 * Call convention:
1410 *
1411 * syscall register convention is in Documentation/powerpc/syscall64-abi.rst
1412 *
1413 * For hypercalls, the register convention is as follows:
1414 * r0 volatile
1415 * r1-2 nonvolatile
1416 * r3 volatile parameter and return value for status
1417 * r4-r10 volatile input and output value
1418 * r11 volatile hypercall number and output value
1419 * r12 volatile input and output value
1420 * r13-r31 nonvolatile
1421 * LR nonvolatile
1422 * CTR volatile
1423 * XER volatile
1424 * CR0-1 CR5-7 volatile
1425 * CR2-4 nonvolatile
1426 * Other registers nonvolatile
1427 *
1428 * The intersection of volatile registers that don't contain possible
1429 * inputs is: cr0, xer, ctr. We may use these as scratch regs upon entry
1430 * without saving, though xer is not a good idea to use, as hardware may
1431 * interpret some bits so it may be costly to change them.
1432 */
1433.macro SYSTEM_CALL virt
1434#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1435 /*
1436 * There is a little bit of juggling to get syscall and hcall
1437 * working well. Save r13 in ctr to avoid using SPRG scratch
1438 * register.
1439 *
1440 * Userspace syscalls have already saved the PPR, hcalls must save
1441 * it before setting HMT_MEDIUM.
1442 */
1443 mtctr r13
1444 GET_PACA(r13)
1445 std r10,PACA_EXGEN+EX_R10(r13)
1446 INTERRUPT_TO_KERNEL
1447 KVMTEST system_call EXC_STD 0xc00 /* uses r10, branch to system_call_kvm */
1448 mfctr r9
1449#else
1450 mr r9,r13
1451 GET_PACA(r13)
1452 INTERRUPT_TO_KERNEL
1453#endif
1454
1455#ifdef CONFIG_PPC_FAST_ENDIAN_SWITCH
1456BEGIN_FTR_SECTION
1457 cmpdi r0,0x1ebe
1458 beq- 1f
1459END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)
1460#endif
1461
1462 /* We reach here with PACA in r13, r13 in r9. */
1463 mfspr r11,SPRN_SRR0
1464 mfspr r12,SPRN_SRR1
1465
1466 HMT_MEDIUM
1467
1468 .if ! \virt
1469 __LOAD_HANDLER(r10, system_call_common)
1470 mtspr SPRN_SRR0,r10
1471 ld r10,PACAKMSR(r13)
1472 mtspr SPRN_SRR1,r10
1473 RFI_TO_KERNEL
1474 b . /* prevent speculative execution */
1475 .else
1476 li r10,MSR_RI
1477 mtmsrd r10,1 /* Set RI (EE=0) */
1478#ifdef CONFIG_RELOCATABLE
1479 __LOAD_HANDLER(r10, system_call_common)
1480 mtctr r10
1481 bctr
1482#else
1483 b system_call_common
1484#endif
1485 .endif
1486
1487#ifdef CONFIG_PPC_FAST_ENDIAN_SWITCH
1488 /* Fast LE/BE switch system call */
14891: mfspr r12,SPRN_SRR1
1490 xori r12,r12,MSR_LE
1491 mtspr SPRN_SRR1,r12
1492 mr r13,r9
1493 RFI_TO_USER /* return to userspace */
1494 b . /* prevent speculative execution */
1495#endif
1496.endm
1497
1498EXC_REAL_BEGIN(system_call, 0xc00, 0x100)
1499 SYSTEM_CALL 0
1500EXC_REAL_END(system_call, 0xc00, 0x100)
1501EXC_VIRT_BEGIN(system_call, 0x4c00, 0x100)
1502 SYSTEM_CALL 1
1503EXC_VIRT_END(system_call, 0x4c00, 0x100)
1504
1505#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
1506 /*
1507 * This is a hcall, so register convention is as above, with these
1508 * differences:
1509 * r13 = PACA
1510 * ctr = orig r13
1511 * orig r10 saved in PACA
1512 */
1513TRAMP_KVM_BEGIN(system_call_kvm)
1514 /*
1515 * Save the PPR (on systems that support it) before changing to
1516 * HMT_MEDIUM. That allows the KVM code to save that value into the
1517 * guest state (it is the guest's PPR value).
1518 */
1519 OPT_GET_SPR(r10, SPRN_PPR, CPU_FTR_HAS_PPR)
1520 HMT_MEDIUM
1521 OPT_SAVE_REG_TO_PACA(PACA_EXGEN+EX_PPR, r10, CPU_FTR_HAS_PPR)
1522 mfctr r10
1523 SET_SCRATCH0(r10)
1524 std r9,PACA_EXGEN+EX_R9(r13)
1525 mfcr r9
1526 KVM_HANDLER 0xc00, EXC_STD, PACA_EXGEN, 0
1527#endif
1528
1529
1530EXC_REAL_BEGIN(single_step, 0xd00, 0x100)
1531 INT_HANDLER single_step, 0xd00, kvm=1
1532EXC_REAL_END(single_step, 0xd00, 0x100)
1533EXC_VIRT_BEGIN(single_step, 0x4d00, 0x100)
1534 INT_HANDLER single_step, 0xd00, virt=1
1535EXC_VIRT_END(single_step, 0x4d00, 0x100)
1536INT_KVM_HANDLER single_step, 0xd00, EXC_STD, PACA_EXGEN, 0
1537EXC_COMMON(single_step_common, 0xd00, single_step_exception)
1538
1539
1540EXC_REAL_BEGIN(h_data_storage, 0xe00, 0x20)
1541 INT_HANDLER h_data_storage, 0xe00, ool=1, hsrr=EXC_HV, dar=1, dsisr=1, kvm=1
1542EXC_REAL_END(h_data_storage, 0xe00, 0x20)
1543EXC_VIRT_BEGIN(h_data_storage, 0x4e00, 0x20)
1544 INT_HANDLER h_data_storage, 0xe00, ool=1, virt=1, hsrr=EXC_HV, dar=1, dsisr=1, kvm=1
1545EXC_VIRT_END(h_data_storage, 0x4e00, 0x20)
1546INT_KVM_HANDLER h_data_storage, 0xe00, EXC_HV, PACA_EXGEN, 1
1547EXC_COMMON_BEGIN(h_data_storage_common)
1548 INT_COMMON 0xe00, PACA_EXGEN, 1, 1, 1, 1, 1
1549 bl save_nvgprs
1550 addi r3,r1,STACK_FRAME_OVERHEAD
1551BEGIN_MMU_FTR_SECTION
1552 ld r4,_DAR(r1)
1553 li r5,SIGSEGV
1554 bl bad_page_fault
1555MMU_FTR_SECTION_ELSE
1556 bl unknown_exception
1557ALT_MMU_FTR_SECTION_END_IFSET(MMU_FTR_TYPE_RADIX)
1558 b ret_from_except
1559
1560
1561EXC_REAL_BEGIN(h_instr_storage, 0xe20, 0x20)
1562 INT_HANDLER h_instr_storage, 0xe20, ool=1, hsrr=EXC_HV, kvm=1
1563EXC_REAL_END(h_instr_storage, 0xe20, 0x20)
1564EXC_VIRT_BEGIN(h_instr_storage, 0x4e20, 0x20)
1565 INT_HANDLER h_instr_storage, 0xe20, ool=1, virt=1, hsrr=EXC_HV, kvm=1
1566EXC_VIRT_END(h_instr_storage, 0x4e20, 0x20)
1567INT_KVM_HANDLER h_instr_storage, 0xe20, EXC_HV, PACA_EXGEN, 0
1568EXC_COMMON(h_instr_storage_common, 0xe20, unknown_exception)
1569
1570
1571EXC_REAL_BEGIN(emulation_assist, 0xe40, 0x20)
1572 INT_HANDLER emulation_assist, 0xe40, ool=1, hsrr=EXC_HV, kvm=1
1573EXC_REAL_END(emulation_assist, 0xe40, 0x20)
1574EXC_VIRT_BEGIN(emulation_assist, 0x4e40, 0x20)
1575 INT_HANDLER emulation_assist, 0xe40, ool=1, virt=1, hsrr=EXC_HV, kvm=1
1576EXC_VIRT_END(emulation_assist, 0x4e40, 0x20)
1577INT_KVM_HANDLER emulation_assist, 0xe40, EXC_HV, PACA_EXGEN, 0
1578EXC_COMMON(emulation_assist_common, 0xe40, emulation_assist_interrupt)
1579
1580
1581/*
1582 * hmi_exception trampoline is a special case. It jumps to hmi_exception_early
1583 * first, and then eventaully from there to the trampoline to get into virtual
1584 * mode.
1585 */
1586EXC_REAL_BEGIN(hmi_exception, 0xe60, 0x20)
1587 INT_HANDLER hmi_exception, 0xe60, ool=1, early=1, hsrr=EXC_HV, ri=0, kvm=1
1588EXC_REAL_END(hmi_exception, 0xe60, 0x20)
1589EXC_VIRT_NONE(0x4e60, 0x20)
1590INT_KVM_HANDLER hmi_exception, 0xe60, EXC_HV, PACA_EXGEN, 0
1591EXC_COMMON_BEGIN(hmi_exception_early_common)
1592 mtctr r10 /* Restore ctr */
1593 mfspr r11,SPRN_HSRR0 /* Save HSRR0 */
1594 mfspr r12,SPRN_HSRR1 /* Save HSRR1 */
1595 mr r10,r1 /* Save r1 */
1596 ld r1,PACAEMERGSP(r13) /* Use emergency stack for realmode */
1597 subi r1,r1,INT_FRAME_SIZE /* alloc stack frame */
1598
1599 /* We don't touch AMR here, we never go to virtual mode */
1600 INT_COMMON 0xe60, PACA_EXGEN, 0, 0, 0, 0, 0
1601
1602 addi r3,r1,STACK_FRAME_OVERHEAD
1603 bl hmi_exception_realmode
1604 cmpdi cr0,r3,0
1605 bne 1f
1606
1607 EXCEPTION_RESTORE_REGS EXC_HV
1608 HRFI_TO_USER_OR_KERNEL
1609
16101:
1611 /*
1612 * Go to virtual mode and pull the HMI event information from
1613 * firmware.
1614 */
1615 EXCEPTION_RESTORE_REGS EXC_HV
1616 INT_HANDLER hmi_exception, 0xe60, hsrr=EXC_HV, bitmask=IRQS_DISABLED, kvm=1
1617
1618EXC_COMMON_BEGIN(hmi_exception_common)
1619 INT_COMMON 0xe60, PACA_EXGEN, 1, 1, 1, 0, 0
1620 FINISH_NAP
1621 RUNLATCH_ON
1622 bl save_nvgprs
1623 addi r3,r1,STACK_FRAME_OVERHEAD
1624 bl handle_hmi_exception
1625 b ret_from_except
1626
1627
1628EXC_REAL_BEGIN(h_doorbell, 0xe80, 0x20)
1629 INT_HANDLER h_doorbell, 0xe80, ool=1, hsrr=EXC_HV, bitmask=IRQS_DISABLED, kvm=1
1630EXC_REAL_END(h_doorbell, 0xe80, 0x20)
1631EXC_VIRT_BEGIN(h_doorbell, 0x4e80, 0x20)
1632 INT_HANDLER h_doorbell, 0xe80, ool=1, virt=1, hsrr=EXC_HV, bitmask=IRQS_DISABLED, kvm=1
1633EXC_VIRT_END(h_doorbell, 0x4e80, 0x20)
1634INT_KVM_HANDLER h_doorbell, 0xe80, EXC_HV, PACA_EXGEN, 0
1635#ifdef CONFIG_PPC_DOORBELL
1636EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, doorbell_exception)
1637#else
1638EXC_COMMON_ASYNC(h_doorbell_common, 0xe80, unknown_exception)
1639#endif
1640
1641
1642EXC_REAL_BEGIN(h_virt_irq, 0xea0, 0x20)
1643 INT_HANDLER h_virt_irq, 0xea0, ool=1, hsrr=EXC_HV, bitmask=IRQS_DISABLED, kvm=1
1644EXC_REAL_END(h_virt_irq, 0xea0, 0x20)
1645EXC_VIRT_BEGIN(h_virt_irq, 0x4ea0, 0x20)
1646 INT_HANDLER h_virt_irq, 0xea0, ool=1, virt=1, hsrr=EXC_HV, bitmask=IRQS_DISABLED, kvm=1
1647EXC_VIRT_END(h_virt_irq, 0x4ea0, 0x20)
1648INT_KVM_HANDLER h_virt_irq, 0xea0, EXC_HV, PACA_EXGEN, 0
1649EXC_COMMON_ASYNC(h_virt_irq_common, 0xea0, do_IRQ)
1650
1651
1652EXC_REAL_NONE(0xec0, 0x20)
1653EXC_VIRT_NONE(0x4ec0, 0x20)
1654EXC_REAL_NONE(0xee0, 0x20)
1655EXC_VIRT_NONE(0x4ee0, 0x20)
1656
1657
1658EXC_REAL_BEGIN(performance_monitor, 0xf00, 0x20)
1659 INT_HANDLER performance_monitor, 0xf00, ool=1, bitmask=IRQS_PMI_DISABLED, kvm=1
1660EXC_REAL_END(performance_monitor, 0xf00, 0x20)
1661EXC_VIRT_BEGIN(performance_monitor, 0x4f00, 0x20)
1662 INT_HANDLER performance_monitor, 0xf00, ool=1, virt=1, bitmask=IRQS_PMI_DISABLED
1663EXC_VIRT_END(performance_monitor, 0x4f00, 0x20)
1664INT_KVM_HANDLER performance_monitor, 0xf00, EXC_STD, PACA_EXGEN, 0
1665EXC_COMMON_ASYNC(performance_monitor_common, 0xf00, performance_monitor_exception)
1666
1667
1668EXC_REAL_BEGIN(altivec_unavailable, 0xf20, 0x20)
1669 INT_HANDLER altivec_unavailable, 0xf20, ool=1, kvm=1
1670EXC_REAL_END(altivec_unavailable, 0xf20, 0x20)
1671EXC_VIRT_BEGIN(altivec_unavailable, 0x4f20, 0x20)
1672 INT_HANDLER altivec_unavailable, 0xf20, ool=1, virt=1
1673EXC_VIRT_END(altivec_unavailable, 0x4f20, 0x20)
1674INT_KVM_HANDLER altivec_unavailable, 0xf20, EXC_STD, PACA_EXGEN, 0
1675EXC_COMMON_BEGIN(altivec_unavailable_common)
1676 INT_COMMON 0xf20, PACA_EXGEN, 1, 1, 0, 0, 0
1677#ifdef CONFIG_ALTIVEC
1678BEGIN_FTR_SECTION
1679 beq 1f
1680#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1681 BEGIN_FTR_SECTION_NESTED(69)
1682 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1683 * transaction), go do TM stuff
1684 */
1685 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1686 bne- 2f
1687 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1688#endif
1689 bl load_up_altivec
1690 b fast_exception_return
1691#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
16922: /* User process was in a transaction */
1693 bl save_nvgprs
1694 RECONCILE_IRQ_STATE(r10, r11)
1695 addi r3,r1,STACK_FRAME_OVERHEAD
1696 bl altivec_unavailable_tm
1697 b ret_from_except
1698#endif
16991:
1700END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1701#endif
1702 bl save_nvgprs
1703 RECONCILE_IRQ_STATE(r10, r11)
1704 addi r3,r1,STACK_FRAME_OVERHEAD
1705 bl altivec_unavailable_exception
1706 b ret_from_except
1707
1708
1709EXC_REAL_BEGIN(vsx_unavailable, 0xf40, 0x20)
1710 INT_HANDLER vsx_unavailable, 0xf40, ool=1, kvm=1
1711EXC_REAL_END(vsx_unavailable, 0xf40, 0x20)
1712EXC_VIRT_BEGIN(vsx_unavailable, 0x4f40, 0x20)
1713 INT_HANDLER vsx_unavailable, 0xf40, ool=1, virt=1
1714EXC_VIRT_END(vsx_unavailable, 0x4f40, 0x20)
1715INT_KVM_HANDLER vsx_unavailable, 0xf40, EXC_STD, PACA_EXGEN, 0
1716EXC_COMMON_BEGIN(vsx_unavailable_common)
1717 INT_COMMON 0xf40, PACA_EXGEN, 1, 1, 0, 0, 0
1718#ifdef CONFIG_VSX
1719BEGIN_FTR_SECTION
1720 beq 1f
1721#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1722 BEGIN_FTR_SECTION_NESTED(69)
1723 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1724 * transaction), go do TM stuff
1725 */
1726 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1727 bne- 2f
1728 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1729#endif
1730 b load_up_vsx
1731#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
17322: /* User process was in a transaction */
1733 bl save_nvgprs
1734 RECONCILE_IRQ_STATE(r10, r11)
1735 addi r3,r1,STACK_FRAME_OVERHEAD
1736 bl vsx_unavailable_tm
1737 b ret_from_except
1738#endif
17391:
1740END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1741#endif
1742 bl save_nvgprs
1743 RECONCILE_IRQ_STATE(r10, r11)
1744 addi r3,r1,STACK_FRAME_OVERHEAD
1745 bl vsx_unavailable_exception
1746 b ret_from_except
1747
1748
1749EXC_REAL_BEGIN(facility_unavailable, 0xf60, 0x20)
1750 INT_HANDLER facility_unavailable, 0xf60, ool=1, kvm=1
1751EXC_REAL_END(facility_unavailable, 0xf60, 0x20)
1752EXC_VIRT_BEGIN(facility_unavailable, 0x4f60, 0x20)
1753 INT_HANDLER facility_unavailable, 0xf60, ool=1, virt=1
1754EXC_VIRT_END(facility_unavailable, 0x4f60, 0x20)
1755INT_KVM_HANDLER facility_unavailable, 0xf60, EXC_STD, PACA_EXGEN, 0
1756EXC_COMMON(facility_unavailable_common, 0xf60, facility_unavailable_exception)
1757
1758
1759EXC_REAL_BEGIN(h_facility_unavailable, 0xf80, 0x20)
1760 INT_HANDLER h_facility_unavailable, 0xf80, ool=1, hsrr=EXC_HV, kvm=1
1761EXC_REAL_END(h_facility_unavailable, 0xf80, 0x20)
1762EXC_VIRT_BEGIN(h_facility_unavailable, 0x4f80, 0x20)
1763 INT_HANDLER h_facility_unavailable, 0xf80, ool=1, virt=1, hsrr=EXC_HV, kvm=1
1764EXC_VIRT_END(h_facility_unavailable, 0x4f80, 0x20)
1765INT_KVM_HANDLER h_facility_unavailable, 0xf80, EXC_HV, PACA_EXGEN, 0
1766EXC_COMMON(h_facility_unavailable_common, 0xf80, facility_unavailable_exception)
1767
1768
1769EXC_REAL_NONE(0xfa0, 0x20)
1770EXC_VIRT_NONE(0x4fa0, 0x20)
1771EXC_REAL_NONE(0xfc0, 0x20)
1772EXC_VIRT_NONE(0x4fc0, 0x20)
1773EXC_REAL_NONE(0xfe0, 0x20)
1774EXC_VIRT_NONE(0x4fe0, 0x20)
1775
1776EXC_REAL_NONE(0x1000, 0x100)
1777EXC_VIRT_NONE(0x5000, 0x100)
1778EXC_REAL_NONE(0x1100, 0x100)
1779EXC_VIRT_NONE(0x5100, 0x100)
1780
1781#ifdef CONFIG_CBE_RAS
1782EXC_REAL_BEGIN(cbe_system_error, 0x1200, 0x100)
1783 INT_HANDLER cbe_system_error, 0x1200, ool=1, hsrr=EXC_HV, kvm=1
1784EXC_REAL_END(cbe_system_error, 0x1200, 0x100)
1785EXC_VIRT_NONE(0x5200, 0x100)
1786INT_KVM_HANDLER cbe_system_error, 0x1200, EXC_HV, PACA_EXGEN, 1
1787EXC_COMMON(cbe_system_error_common, 0x1200, cbe_system_error_exception)
1788#else /* CONFIG_CBE_RAS */
1789EXC_REAL_NONE(0x1200, 0x100)
1790EXC_VIRT_NONE(0x5200, 0x100)
1791#endif
1792
1793
1794EXC_REAL_BEGIN(instruction_breakpoint, 0x1300, 0x100)
1795 INT_HANDLER instruction_breakpoint, 0x1300, kvm=1
1796EXC_REAL_END(instruction_breakpoint, 0x1300, 0x100)
1797EXC_VIRT_BEGIN(instruction_breakpoint, 0x5300, 0x100)
1798 INT_HANDLER instruction_breakpoint, 0x1300, virt=1
1799EXC_VIRT_END(instruction_breakpoint, 0x5300, 0x100)
1800INT_KVM_HANDLER instruction_breakpoint, 0x1300, EXC_STD, PACA_EXGEN, 1
1801EXC_COMMON(instruction_breakpoint_common, 0x1300, instruction_breakpoint_exception)
1802
1803
1804EXC_REAL_NONE(0x1400, 0x100)
1805EXC_VIRT_NONE(0x5400, 0x100)
1806
1807EXC_REAL_BEGIN(denorm_exception_hv, 0x1500, 0x100)
1808 INT_HANDLER denorm_exception_hv, 0x1500, early=2, hsrr=EXC_HV
1809#ifdef CONFIG_PPC_DENORMALISATION
1810 mfspr r10,SPRN_HSRR1
1811 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1812 bne+ denorm_assist
1813#endif
1814 KVMTEST denorm_exception_hv, EXC_HV 0x1500
1815 INT_SAVE_SRR_AND_JUMP denorm_common, EXC_HV, 1
1816EXC_REAL_END(denorm_exception_hv, 0x1500, 0x100)
1817
1818#ifdef CONFIG_PPC_DENORMALISATION
1819EXC_VIRT_BEGIN(denorm_exception, 0x5500, 0x100)
1820 INT_HANDLER denorm_exception, 0x1500, 0, 2, 1, EXC_HV, PACA_EXGEN, 1, 0, 0, 0, 0
1821 mfspr r10,SPRN_HSRR1
1822 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
1823 bne+ denorm_assist
1824 INT_VIRT_SAVE_SRR_AND_JUMP denorm_common, EXC_HV
1825EXC_VIRT_END(denorm_exception, 0x5500, 0x100)
1826#else
1827EXC_VIRT_NONE(0x5500, 0x100)
1828#endif
1829
1830INT_KVM_HANDLER denorm_exception_hv, 0x1500, EXC_HV, PACA_EXGEN, 0
1831
1832#ifdef CONFIG_PPC_DENORMALISATION
1833TRAMP_REAL_BEGIN(denorm_assist)
1834BEGIN_FTR_SECTION
1835/*
1836 * To denormalise we need to move a copy of the register to itself.
1837 * For POWER6 do that here for all FP regs.
1838 */
1839 mfmsr r10
1840 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
1841 xori r10,r10,(MSR_FE0|MSR_FE1)
1842 mtmsrd r10
1843 sync
1844
1845 .Lreg=0
1846 .rept 32
1847 fmr .Lreg,.Lreg
1848 .Lreg=.Lreg+1
1849 .endr
1850
1851FTR_SECTION_ELSE
1852/*
1853 * To denormalise we need to move a copy of the register to itself.
1854 * For POWER7 do that here for the first 32 VSX registers only.
1855 */
1856 mfmsr r10
1857 oris r10,r10,MSR_VSX@h
1858 mtmsrd r10
1859 sync
1860
1861 .Lreg=0
1862 .rept 32
1863 XVCPSGNDP(.Lreg,.Lreg,.Lreg)
1864 .Lreg=.Lreg+1
1865 .endr
1866
1867ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
1868
1869BEGIN_FTR_SECTION
1870 b denorm_done
1871END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_207S)
1872/*
1873 * To denormalise we need to move a copy of the register to itself.
1874 * For POWER8 we need to do that for all 64 VSX registers
1875 */
1876 .Lreg=32
1877 .rept 32
1878 XVCPSGNDP(.Lreg,.Lreg,.Lreg)
1879 .Lreg=.Lreg+1
1880 .endr
1881
1882denorm_done:
1883 mfspr r11,SPRN_HSRR0
1884 subi r11,r11,4
1885 mtspr SPRN_HSRR0,r11
1886 mtcrf 0x80,r9
1887 ld r9,PACA_EXGEN+EX_R9(r13)
1888 RESTORE_PPR_PACA(PACA_EXGEN, r10)
1889BEGIN_FTR_SECTION
1890 ld r10,PACA_EXGEN+EX_CFAR(r13)
1891 mtspr SPRN_CFAR,r10
1892END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1893 ld r10,PACA_EXGEN+EX_R10(r13)
1894 ld r11,PACA_EXGEN+EX_R11(r13)
1895 ld r12,PACA_EXGEN+EX_R12(r13)
1896 ld r13,PACA_EXGEN+EX_R13(r13)
1897 HRFI_TO_UNKNOWN
1898 b .
1899#endif
1900
1901EXC_COMMON(denorm_common, 0x1500, unknown_exception)
1902
1903
1904#ifdef CONFIG_CBE_RAS
1905EXC_REAL_BEGIN(cbe_maintenance, 0x1600, 0x100)
1906 INT_HANDLER cbe_maintenance, 0x1600, ool=1, hsrr=EXC_HV, kvm=1
1907EXC_REAL_END(cbe_maintenance, 0x1600, 0x100)
1908EXC_VIRT_NONE(0x5600, 0x100)
1909INT_KVM_HANDLER cbe_maintenance, 0x1600, EXC_HV, PACA_EXGEN, 1
1910EXC_COMMON(cbe_maintenance_common, 0x1600, cbe_maintenance_exception)
1911#else /* CONFIG_CBE_RAS */
1912EXC_REAL_NONE(0x1600, 0x100)
1913EXC_VIRT_NONE(0x5600, 0x100)
1914#endif
1915
1916
1917EXC_REAL_BEGIN(altivec_assist, 0x1700, 0x100)
1918 INT_HANDLER altivec_assist, 0x1700, kvm=1
1919EXC_REAL_END(altivec_assist, 0x1700, 0x100)
1920EXC_VIRT_BEGIN(altivec_assist, 0x5700, 0x100)
1921 INT_HANDLER altivec_assist, 0x1700, virt=1
1922EXC_VIRT_END(altivec_assist, 0x5700, 0x100)
1923INT_KVM_HANDLER altivec_assist, 0x1700, EXC_STD, PACA_EXGEN, 0
1924#ifdef CONFIG_ALTIVEC
1925EXC_COMMON(altivec_assist_common, 0x1700, altivec_assist_exception)
1926#else
1927EXC_COMMON(altivec_assist_common, 0x1700, unknown_exception)
1928#endif
1929
1930
1931#ifdef CONFIG_CBE_RAS
1932EXC_REAL_BEGIN(cbe_thermal, 0x1800, 0x100)
1933 INT_HANDLER cbe_thermal, 0x1800, ool=1, hsrr=EXC_HV, kvm=1
1934EXC_REAL_END(cbe_thermal, 0x1800, 0x100)
1935EXC_VIRT_NONE(0x5800, 0x100)
1936INT_KVM_HANDLER cbe_thermal, 0x1800, EXC_HV, PACA_EXGEN, 1
1937EXC_COMMON(cbe_thermal_common, 0x1800, cbe_thermal_exception)
1938#else /* CONFIG_CBE_RAS */
1939EXC_REAL_NONE(0x1800, 0x100)
1940EXC_VIRT_NONE(0x5800, 0x100)
1941#endif
1942
1943
1944#ifdef CONFIG_PPC_WATCHDOG
1945
1946#define MASKED_DEC_HANDLER_LABEL 3f
1947
1948#define MASKED_DEC_HANDLER(_H) \
19493: /* soft-nmi */ \
1950 std r12,PACA_EXGEN+EX_R12(r13); \
1951 GET_SCRATCH0(r10); \
1952 std r10,PACA_EXGEN+EX_R13(r13); \
1953 INT_SAVE_SRR_AND_JUMP soft_nmi_common, _H, 1
1954
1955/*
1956 * Branch to soft_nmi_interrupt using the emergency stack. The emergency
1957 * stack is one that is usable by maskable interrupts so long as MSR_EE
1958 * remains off. It is used for recovery when something has corrupted the
1959 * normal kernel stack, for example. The "soft NMI" must not use the process
1960 * stack because we want irq disabled sections to avoid touching the stack
1961 * at all (other than PMU interrupts), so use the emergency stack for this,
1962 * and run it entirely with interrupts hard disabled.
1963 */
1964EXC_COMMON_BEGIN(soft_nmi_common)
1965 mr r10,r1
1966 ld r1,PACAEMERGSP(r13)
1967 subi r1,r1,INT_FRAME_SIZE
1968 INT_COMMON 0x900, PACA_EXGEN, 0, 1, 1, 0, 0
1969 bl save_nvgprs
1970 addi r3,r1,STACK_FRAME_OVERHEAD
1971 bl soft_nmi_interrupt
1972 b ret_from_except
1973
1974#else /* CONFIG_PPC_WATCHDOG */
1975#define MASKED_DEC_HANDLER_LABEL 2f /* normal return */
1976#define MASKED_DEC_HANDLER(_H)
1977#endif /* CONFIG_PPC_WATCHDOG */
1978
1979/*
1980 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
1981 * - If it was a decrementer interrupt, we bump the dec to max and and return.
1982 * - If it was a doorbell we return immediately since doorbells are edge
1983 * triggered and won't automatically refire.
1984 * - If it was a HMI we return immediately since we handled it in realmode
1985 * and it won't refire.
1986 * - Else it is one of PACA_IRQ_MUST_HARD_MASK, so hard disable and return.
1987 * This is called with r10 containing the value to OR to the paca field.
1988 */
1989.macro MASKED_INTERRUPT hsrr
1990 .if \hsrr
1991masked_Hinterrupt:
1992 .else
1993masked_interrupt:
1994 .endif
1995 std r11,PACA_EXGEN+EX_R11(r13)
1996 lbz r11,PACAIRQHAPPENED(r13)
1997 or r11,r11,r10
1998 stb r11,PACAIRQHAPPENED(r13)
1999 cmpwi r10,PACA_IRQ_DEC
2000 bne 1f
2001 lis r10,0x7fff
2002 ori r10,r10,0xffff
2003 mtspr SPRN_DEC,r10
2004 b MASKED_DEC_HANDLER_LABEL
20051: andi. r10,r10,PACA_IRQ_MUST_HARD_MASK
2006 beq 2f
2007 .if \hsrr
2008 mfspr r10,SPRN_HSRR1
2009 xori r10,r10,MSR_EE /* clear MSR_EE */
2010 mtspr SPRN_HSRR1,r10
2011 .else
2012 mfspr r10,SPRN_SRR1
2013 xori r10,r10,MSR_EE /* clear MSR_EE */
2014 mtspr SPRN_SRR1,r10
2015 .endif
2016 ori r11,r11,PACA_IRQ_HARD_DIS
2017 stb r11,PACAIRQHAPPENED(r13)
20182: /* done */
2019 mtcrf 0x80,r9
2020 std r1,PACAR1(r13)
2021 ld r9,PACA_EXGEN+EX_R9(r13)
2022 ld r10,PACA_EXGEN+EX_R10(r13)
2023 ld r11,PACA_EXGEN+EX_R11(r13)
2024 /* returns to kernel where r13 must be set up, so don't restore it */
2025 .if \hsrr
2026 HRFI_TO_KERNEL
2027 .else
2028 RFI_TO_KERNEL
2029 .endif
2030 b .
2031 MASKED_DEC_HANDLER(\hsrr\())
2032.endm
2033
2034TRAMP_REAL_BEGIN(stf_barrier_fallback)
2035 std r9,PACA_EXRFI+EX_R9(r13)
2036 std r10,PACA_EXRFI+EX_R10(r13)
2037 sync
2038 ld r9,PACA_EXRFI+EX_R9(r13)
2039 ld r10,PACA_EXRFI+EX_R10(r13)
2040 ori 31,31,0
2041 .rept 14
2042 b 1f
20431:
2044 .endr
2045 blr
2046
2047TRAMP_REAL_BEGIN(rfi_flush_fallback)
2048 SET_SCRATCH0(r13);
2049 GET_PACA(r13);
2050 std r1,PACA_EXRFI+EX_R12(r13)
2051 ld r1,PACAKSAVE(r13)
2052 std r9,PACA_EXRFI+EX_R9(r13)
2053 std r10,PACA_EXRFI+EX_R10(r13)
2054 std r11,PACA_EXRFI+EX_R11(r13)
2055 mfctr r9
2056 ld r10,PACA_RFI_FLUSH_FALLBACK_AREA(r13)
2057 ld r11,PACA_L1D_FLUSH_SIZE(r13)
2058 srdi r11,r11,(7 + 3) /* 128 byte lines, unrolled 8x */
2059 mtctr r11
2060 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r11) /* Stop prefetch streams */
2061
2062 /* order ld/st prior to dcbt stop all streams with flushing */
2063 sync
2064
2065 /*
2066 * The load adresses are at staggered offsets within cachelines,
2067 * which suits some pipelines better (on others it should not
2068 * hurt).
2069 */
20701:
2071 ld r11,(0x80 + 8)*0(r10)
2072 ld r11,(0x80 + 8)*1(r10)
2073 ld r11,(0x80 + 8)*2(r10)
2074 ld r11,(0x80 + 8)*3(r10)
2075 ld r11,(0x80 + 8)*4(r10)
2076 ld r11,(0x80 + 8)*5(r10)
2077 ld r11,(0x80 + 8)*6(r10)
2078 ld r11,(0x80 + 8)*7(r10)
2079 addi r10,r10,0x80*8
2080 bdnz 1b
2081
2082 mtctr r9
2083 ld r9,PACA_EXRFI+EX_R9(r13)
2084 ld r10,PACA_EXRFI+EX_R10(r13)
2085 ld r11,PACA_EXRFI+EX_R11(r13)
2086 ld r1,PACA_EXRFI+EX_R12(r13)
2087 GET_SCRATCH0(r13);
2088 rfid
2089
2090TRAMP_REAL_BEGIN(hrfi_flush_fallback)
2091 SET_SCRATCH0(r13);
2092 GET_PACA(r13);
2093 std r1,PACA_EXRFI+EX_R12(r13)
2094 ld r1,PACAKSAVE(r13)
2095 std r9,PACA_EXRFI+EX_R9(r13)
2096 std r10,PACA_EXRFI+EX_R10(r13)
2097 std r11,PACA_EXRFI+EX_R11(r13)
2098 mfctr r9
2099 ld r10,PACA_RFI_FLUSH_FALLBACK_AREA(r13)
2100 ld r11,PACA_L1D_FLUSH_SIZE(r13)
2101 srdi r11,r11,(7 + 3) /* 128 byte lines, unrolled 8x */
2102 mtctr r11
2103 DCBT_BOOK3S_STOP_ALL_STREAM_IDS(r11) /* Stop prefetch streams */
2104
2105 /* order ld/st prior to dcbt stop all streams with flushing */
2106 sync
2107
2108 /*
2109 * The load adresses are at staggered offsets within cachelines,
2110 * which suits some pipelines better (on others it should not
2111 * hurt).
2112 */
21131:
2114 ld r11,(0x80 + 8)*0(r10)
2115 ld r11,(0x80 + 8)*1(r10)
2116 ld r11,(0x80 + 8)*2(r10)
2117 ld r11,(0x80 + 8)*3(r10)
2118 ld r11,(0x80 + 8)*4(r10)
2119 ld r11,(0x80 + 8)*5(r10)
2120 ld r11,(0x80 + 8)*6(r10)
2121 ld r11,(0x80 + 8)*7(r10)
2122 addi r10,r10,0x80*8
2123 bdnz 1b
2124
2125 mtctr r9
2126 ld r9,PACA_EXRFI+EX_R9(r13)
2127 ld r10,PACA_EXRFI+EX_R10(r13)
2128 ld r11,PACA_EXRFI+EX_R11(r13)
2129 ld r1,PACA_EXRFI+EX_R12(r13)
2130 GET_SCRATCH0(r13);
2131 hrfid
2132
2133/*
2134 * Real mode exceptions actually use this too, but alternate
2135 * instruction code patches (which end up in the common .text area)
2136 * cannot reach these if they are put there.
2137 */
2138USE_FIXED_SECTION(virt_trampolines)
2139 MASKED_INTERRUPT EXC_STD
2140 MASKED_INTERRUPT EXC_HV
2141
2142#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
2143TRAMP_REAL_BEGIN(kvmppc_skip_interrupt)
2144 /*
2145 * Here all GPRs are unchanged from when the interrupt happened
2146 * except for r13, which is saved in SPRG_SCRATCH0.
2147 */
2148 mfspr r13, SPRN_SRR0
2149 addi r13, r13, 4
2150 mtspr SPRN_SRR0, r13
2151 GET_SCRATCH0(r13)
2152 RFI_TO_KERNEL
2153 b .
2154
2155TRAMP_REAL_BEGIN(kvmppc_skip_Hinterrupt)
2156 /*
2157 * Here all GPRs are unchanged from when the interrupt happened
2158 * except for r13, which is saved in SPRG_SCRATCH0.
2159 */
2160 mfspr r13, SPRN_HSRR0
2161 addi r13, r13, 4
2162 mtspr SPRN_HSRR0, r13
2163 GET_SCRATCH0(r13)
2164 HRFI_TO_KERNEL
2165 b .
2166#endif
2167
2168/*
2169 * Ensure that any handlers that get invoked from the exception prologs
2170 * above are below the first 64KB (0x10000) of the kernel image because
2171 * the prologs assemble the addresses of these handlers using the
2172 * LOAD_HANDLER macro, which uses an ori instruction.
2173 */
2174
2175/*** Common interrupt handlers ***/
2176
2177
2178 /*
2179 * Relocation-on interrupts: A subset of the interrupts can be delivered
2180 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
2181 * it. Addresses are the same as the original interrupt addresses, but
2182 * offset by 0xc000000000004000.
2183 * It's impossible to receive interrupts below 0x300 via this mechanism.
2184 * KVM: None of these traps are from the guest ; anything that escalated
2185 * to HV=1 from HV=0 is delivered via real mode handlers.
2186 */
2187
2188 /*
2189 * This uses the standard macro, since the original 0x300 vector
2190 * only has extra guff for STAB-based processors -- which never
2191 * come here.
2192 */
2193
2194EXC_COMMON_BEGIN(ppc64_runlatch_on_trampoline)
2195 b __ppc64_runlatch_on
2196
2197USE_FIXED_SECTION(virt_trampolines)
2198 /*
2199 * The __end_interrupts marker must be past the out-of-line (OOL)
2200 * handlers, so that they are copied to real address 0x100 when running
2201 * a relocatable kernel. This ensures they can be reached from the short
2202 * trampoline handlers (like 0x4f00, 0x4f20, etc.) which branch
2203 * directly, without using LOAD_HANDLER().
2204 */
2205 .align 7
2206 .globl __end_interrupts
2207__end_interrupts:
2208DEFINE_FIXED_SYMBOL(__end_interrupts)
2209
2210#ifdef CONFIG_PPC_970_NAP
2211EXC_COMMON_BEGIN(power4_fixup_nap)
2212 andc r9,r9,r10
2213 std r9,TI_LOCAL_FLAGS(r11)
2214 ld r10,_LINK(r1) /* make idle task do the */
2215 std r10,_NIP(r1) /* equivalent of a blr */
2216 blr
2217#endif
2218
2219CLOSE_FIXED_SECTION(real_vectors);
2220CLOSE_FIXED_SECTION(real_trampolines);
2221CLOSE_FIXED_SECTION(virt_vectors);
2222CLOSE_FIXED_SECTION(virt_trampolines);
2223
2224USE_TEXT_SECTION()
2225
2226/* MSR[RI] should be clear because this uses SRR[01] */
2227enable_machine_check:
2228 mflr r0
2229 bcl 20,31,$+4
22300: mflr r3
2231 addi r3,r3,(1f - 0b)
2232 mtspr SPRN_SRR0,r3
2233 mfmsr r3
2234 ori r3,r3,MSR_ME
2235 mtspr SPRN_SRR1,r3
2236 RFI_TO_KERNEL
22371: mtlr r0
2238 blr
2239
2240/* MSR[RI] should be clear because this uses SRR[01] */
2241disable_machine_check:
2242 mflr r0
2243 bcl 20,31,$+4
22440: mflr r3
2245 addi r3,r3,(1f - 0b)
2246 mtspr SPRN_SRR0,r3
2247 mfmsr r3
2248 li r4,MSR_ME
2249 andc r3,r3,r4
2250 mtspr SPRN_SRR1,r3
2251 RFI_TO_KERNEL
22521: mtlr r0
2253 blr
2254
2255/*
2256 * Hash table stuff
2257 */
2258 .balign IFETCH_ALIGN_BYTES
2259do_hash_page:
2260#ifdef CONFIG_PPC_BOOK3S_64
2261 lis r0,(DSISR_BAD_FAULT_64S | DSISR_DABRMATCH | DSISR_KEYFAULT)@h
2262 ori r0,r0,DSISR_BAD_FAULT_64S@l
2263 and. r0,r5,r0 /* weird error? */
2264 bne- handle_page_fault /* if not, try to insert a HPTE */
2265 ld r11, PACA_THREAD_INFO(r13)
2266 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
2267 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
2268 bne 77f /* then don't call hash_page now */
2269
2270 /*
2271 * r3 contains the trap number
2272 * r4 contains the faulting address
2273 * r5 contains dsisr
2274 * r6 msr
2275 *
2276 * at return r3 = 0 for success, 1 for page fault, negative for error
2277 */
2278 bl __hash_page /* build HPTE if possible */
2279 cmpdi r3,0 /* see if __hash_page succeeded */
2280
2281 /* Success */
2282 beq fast_exc_return_irq /* Return from exception on success */
2283
2284 /* Error */
2285 blt- 13f
2286
2287 /* Reload DAR/DSISR into r4/r5 for the DABR check below */
2288 ld r4,_DAR(r1)
2289 ld r5,_DSISR(r1)
2290#endif /* CONFIG_PPC_BOOK3S_64 */
2291
2292/* Here we have a page fault that hash_page can't handle. */
2293handle_page_fault:
229411: andis. r0,r5,DSISR_DABRMATCH@h
2295 bne- handle_dabr_fault
2296 addi r3,r1,STACK_FRAME_OVERHEAD
2297 bl do_page_fault
2298 cmpdi r3,0
2299 beq+ ret_from_except_lite
2300 bl save_nvgprs
2301 mr r5,r3
2302 addi r3,r1,STACK_FRAME_OVERHEAD
2303 ld r4,_DAR(r1)
2304 bl bad_page_fault
2305 b ret_from_except
2306
2307/* We have a data breakpoint exception - handle it */
2308handle_dabr_fault:
2309 bl save_nvgprs
2310 ld r4,_DAR(r1)
2311 ld r5,_DSISR(r1)
2312 addi r3,r1,STACK_FRAME_OVERHEAD
2313 bl do_break
2314 /*
2315 * do_break() may have changed the NV GPRS while handling a breakpoint.
2316 * If so, we need to restore them with their updated values. Don't use
2317 * ret_from_except_lite here.
2318 */
2319 b ret_from_except
2320
2321
2322#ifdef CONFIG_PPC_BOOK3S_64
2323/* We have a page fault that hash_page could handle but HV refused
2324 * the PTE insertion
2325 */
232613: bl save_nvgprs
2327 mr r5,r3
2328 addi r3,r1,STACK_FRAME_OVERHEAD
2329 ld r4,_DAR(r1)
2330 bl low_hash_fault
2331 b ret_from_except
2332#endif
2333
2334/*
2335 * We come here as a result of a DSI at a point where we don't want
2336 * to call hash_page, such as when we are accessing memory (possibly
2337 * user memory) inside a PMU interrupt that occurred while interrupts
2338 * were soft-disabled. We want to invoke the exception handler for
2339 * the access, or panic if there isn't a handler.
2340 */
234177: bl save_nvgprs
2342 addi r3,r1,STACK_FRAME_OVERHEAD
2343 li r5,SIGSEGV
2344 bl bad_page_fault
2345 b ret_from_except
2346
2347/*
2348 * When doorbell is triggered from system reset wakeup, the message is
2349 * not cleared, so it would fire again when EE is enabled.
2350 *
2351 * When coming from local_irq_enable, there may be the same problem if
2352 * we were hard disabled.
2353 *
2354 * Execute msgclr to clear pending exceptions before handling it.
2355 */
2356h_doorbell_common_msgclr:
2357 LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
2358 PPC_MSGCLR(3)
2359 b h_doorbell_common
2360
2361doorbell_super_common_msgclr:
2362 LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
2363 PPC_MSGCLRP(3)
2364 b doorbell_super_common
2365
2366/*
2367 * Called from arch_local_irq_enable when an interrupt needs
2368 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
2369 * which kind of interrupt. MSR:EE is already off. We generate a
2370 * stackframe like if a real interrupt had happened.
2371 *
2372 * Note: While MSR:EE is off, we need to make sure that _MSR
2373 * in the generated frame has EE set to 1 or the exception
2374 * handler will not properly re-enable them.
2375 *
2376 * Note that we don't specify LR as the NIP (return address) for
2377 * the interrupt because that would unbalance the return branch
2378 * predictor.
2379 */
2380_GLOBAL(__replay_interrupt)
2381 /* We are going to jump to the exception common code which
2382 * will retrieve various register values from the PACA which
2383 * we don't give a damn about, so we don't bother storing them.
2384 */
2385 mfmsr r12
2386 LOAD_REG_ADDR(r11, replay_interrupt_return)
2387 mfcr r9
2388 ori r12,r12,MSR_EE
2389 cmpwi r3,0x900
2390 beq decrementer_common
2391 cmpwi r3,0x500
2392BEGIN_FTR_SECTION
2393 beq h_virt_irq_common
2394FTR_SECTION_ELSE
2395 beq hardware_interrupt_common
2396ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_300)
2397 cmpwi r3,0xf00
2398 beq performance_monitor_common
2399BEGIN_FTR_SECTION
2400 cmpwi r3,0xa00
2401 beq h_doorbell_common_msgclr
2402 cmpwi r3,0xe60
2403 beq hmi_exception_common
2404FTR_SECTION_ELSE
2405 cmpwi r3,0xa00
2406 beq doorbell_super_common_msgclr
2407ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
2408replay_interrupt_return:
2409 blr
2410
2411_ASM_NOKPROBE_SYMBOL(__replay_interrupt)