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