]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/powerpc/kernel/exceptions-64s.S
powerpc/pseries: Add /proc interface to control topology updates
[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>
8aa34ab8 18
0ebc4cda
BH
19/*
20 * We layout physical memory as follows:
21 * 0x0000 - 0x00ff : Secondary processor spin code
c1fb6816
MN
22 * 0x0100 - 0x17ff : pSeries Interrupt prologs
23 * 0x1800 - 0x4000 : interrupt support common interrupt prologs
24 * 0x4000 - 0x5fff : pSeries interrupts with IR=1,DR=1
25 * 0x6000 - 0x6fff : more interrupt support including for IR=1,DR=1
0ebc4cda 26 * 0x7000 - 0x7fff : FWNMI data area
c1fb6816
MN
27 * 0x8000 - 0x8fff : Initial (CPU0) segment table
28 * 0x9000 - : Early init and support code
0ebc4cda 29 */
742415d6
MN
30 /* Syscall routine is used twice, in reloc-off and reloc-on paths */
31#define SYSCALL_PSERIES_1 \
32BEGIN_FTR_SECTION \
33 cmpdi r0,0x1ebe ; \
34 beq- 1f ; \
35END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE) \
36 mr r9,r13 ; \
37 GET_PACA(r13) ; \
38 mfspr r11,SPRN_SRR0 ; \
390:
40
41#define SYSCALL_PSERIES_2_RFID \
42 mfspr r12,SPRN_SRR1 ; \
43 ld r10,PACAKBASE(r13) ; \
44 LOAD_HANDLER(r10, system_call_entry) ; \
45 mtspr SPRN_SRR0,r10 ; \
46 ld r10,PACAKMSR(r13) ; \
47 mtspr SPRN_SRR1,r10 ; \
48 rfid ; \
49 b . ; /* prevent speculative execution */
50
51#define SYSCALL_PSERIES_3 \
52 /* Fast LE/BE switch system call */ \
531: mfspr r12,SPRN_SRR1 ; \
54 xori r12,r12,MSR_LE ; \
55 mtspr SPRN_SRR1,r12 ; \
56 rfid ; /* return to userspace */ \
57 b . ; \
582: mfspr r12,SPRN_SRR1 ; \
59 andi. r12,r12,MSR_PR ; \
60 bne 0b ; \
61 mtspr SPRN_SRR0,r3 ; \
62 mtspr SPRN_SRR1,r4 ; \
63 mtspr SPRN_SDR1,r5 ; \
64 rfid ; \
65 b . ; /* prevent speculative execution */
66
4700dfaf
MN
67#if defined(CONFIG_RELOCATABLE)
68 /*
69 * We can't branch directly; in the direct case we use LR
70 * and system_call_entry restores LR. (We thus need to move
71 * LR to r10 in the RFID case too.)
72 */
73#define SYSCALL_PSERIES_2_DIRECT \
74 mflr r10 ; \
75 ld r12,PACAKBASE(r13) ; \
76 LOAD_HANDLER(r12, system_call_entry_direct) ; \
6a404806 77 mtctr r12 ; \
4700dfaf
MN
78 mfspr r12,SPRN_SRR1 ; \
79 /* Re-use of r13... No spare regs to do this */ \
80 li r13,MSR_RI ; \
81 mtmsrd r13,1 ; \
82 GET_PACA(r13) ; /* get r13 back */ \
6a404806 83 bctr ;
4700dfaf
MN
84#else
85 /* We can branch directly */
86#define SYSCALL_PSERIES_2_DIRECT \
87 mfspr r12,SPRN_SRR1 ; \
88 li r10,MSR_RI ; \
89 mtmsrd r10,1 ; /* Set RI (EE=0) */ \
90 b system_call_entry_direct ;
91#endif
0ebc4cda 92
0ebc4cda
BH
93/*
94 * This is the start of the interrupt handlers for pSeries
95 * This code runs with relocation off.
96 * Code from here to __end_interrupts gets copied down to real
97 * address 0x100 when we are running a relocatable kernel.
98 * Therefore any relative branches in this section must only
99 * branch to labels in this section.
100 */
101 . = 0x100
102 .globl __start_interrupts
103__start_interrupts:
104
948cf67c
BH
105 .globl system_reset_pSeries;
106system_reset_pSeries:
44e9309f 107 HMT_MEDIUM_PPR_DISCARD
948cf67c
BH
108 SET_SCRATCH0(r13)
109#ifdef CONFIG_PPC_P7_NAP
110BEGIN_FTR_SECTION
111 /* Running native on arch 2.06 or later, check if we are
112 * waking up from nap. We only handle no state loss and
113 * supervisor state loss. We do -not- handle hypervisor
114 * state loss at this time.
115 */
116 mfspr r13,SPRN_SRR1
371fefd6
PM
117 rlwinm. r13,r13,47-31,30,31
118 beq 9f
119
120 /* waking up from powersave (nap) state */
121 cmpwi cr1,r13,2
948cf67c
BH
122 /* Total loss of HV state is fatal, we could try to use the
123 * PIR to locate a PACA, then use an emergency stack etc...
124 * but for now, let's just stay stuck here
125 */
371fefd6
PM
126 bgt cr1,.
127 GET_PACA(r13)
128
129#ifdef CONFIG_KVM_BOOK3S_64_HV
f0888f70
PM
130 li r0,KVM_HWTHREAD_IN_KERNEL
131 stb r0,HSTATE_HWTHREAD_STATE(r13)
132 /* Order setting hwthread_state vs. testing hwthread_req */
133 sync
134 lbz r0,HSTATE_HWTHREAD_REQ(r13)
135 cmpwi r0,0
136 beq 1f
371fefd6
PM
137 b kvm_start_guest
1381:
139#endif
140
141 beq cr1,2f
142 b .power7_wakeup_noloss
1432: b .power7_wakeup_loss
1449:
969391c5 145END_FTR_SECTION_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
948cf67c 146#endif /* CONFIG_PPC_P7_NAP */
b01c8b54
PM
147 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
148 NOTEST, 0x100)
0ebc4cda
BH
149
150 . = 0x200
b01c8b54
PM
151machine_check_pSeries_1:
152 /* This is moved out of line as it can be patched by FW, but
153 * some code path might still want to branch into the original
154 * vector
155 */
1707dd16
PM
156 HMT_MEDIUM_PPR_DISCARD
157 SET_SCRATCH0(r13) /* save r13 */
158 EXCEPTION_PROLOG_0(PACA_EXMC)
159 b machine_check_pSeries_0
0ebc4cda
BH
160
161 . = 0x300
162 .globl data_access_pSeries
163data_access_pSeries:
44e9309f 164 HMT_MEDIUM_PPR_DISCARD
673b189a 165 SET_SCRATCH0(r13)
0ebc4cda 166BEGIN_FTR_SECTION
b01c8b54
PM
167 b data_access_check_stab
168data_access_not_stab:
169END_MMU_FTR_SECTION_IFCLR(MMU_FTR_SLB)
b01c8b54 170 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, data_access_common, EXC_STD,
697d3899 171 KVMTEST, 0x300)
0ebc4cda
BH
172
173 . = 0x380
174 .globl data_access_slb_pSeries
175data_access_slb_pSeries:
44e9309f 176 HMT_MEDIUM_PPR_DISCARD
673b189a 177 SET_SCRATCH0(r13)
1707dd16 178 EXCEPTION_PROLOG_0(PACA_EXSLB)
697d3899 179 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST, 0x380)
0ebc4cda
BH
180 std r3,PACA_EXSLB+EX_R3(r13)
181 mfspr r3,SPRN_DAR
0ebc4cda
BH
182#ifdef __DISABLED__
183 /* Keep that around for when we re-implement dynamic VSIDs */
184 cmpdi r3,0
185 bge slb_miss_user_pseries
186#endif /* __DISABLED__ */
b01c8b54 187 mfspr r12,SPRN_SRR1
0ebc4cda
BH
188#ifndef CONFIG_RELOCATABLE
189 b .slb_miss_realmode
190#else
191 /*
192 * We can't just use a direct branch to .slb_miss_realmode
193 * because the distance from here to there depends on where
194 * the kernel ends up being put.
195 */
196 mfctr r11
197 ld r10,PACAKBASE(r13)
198 LOAD_HANDLER(r10, .slb_miss_realmode)
199 mtctr r10
200 bctr
201#endif
202
b3e6b5df 203 STD_EXCEPTION_PSERIES(0x400, 0x400, instruction_access)
0ebc4cda
BH
204
205 . = 0x480
206 .globl instruction_access_slb_pSeries
207instruction_access_slb_pSeries:
44e9309f 208 HMT_MEDIUM_PPR_DISCARD
673b189a 209 SET_SCRATCH0(r13)
1707dd16 210 EXCEPTION_PROLOG_0(PACA_EXSLB)
de56a948 211 EXCEPTION_PROLOG_1(PACA_EXSLB, KVMTEST_PR, 0x480)
0ebc4cda
BH
212 std r3,PACA_EXSLB+EX_R3(r13)
213 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
0ebc4cda
BH
214#ifdef __DISABLED__
215 /* Keep that around for when we re-implement dynamic VSIDs */
216 cmpdi r3,0
217 bge slb_miss_user_pseries
218#endif /* __DISABLED__ */
b01c8b54 219 mfspr r12,SPRN_SRR1
0ebc4cda
BH
220#ifndef CONFIG_RELOCATABLE
221 b .slb_miss_realmode
222#else
223 mfctr r11
224 ld r10,PACAKBASE(r13)
225 LOAD_HANDLER(r10, .slb_miss_realmode)
226 mtctr r10
227 bctr
228#endif
229
b3e6b5df
BH
230 /* We open code these as we can't have a ". = x" (even with
231 * x = "." within a feature section
232 */
a5d4f3ad 233 . = 0x500;
b3e6b5df
BH
234 .globl hardware_interrupt_pSeries;
235 .globl hardware_interrupt_hv;
a5d4f3ad 236hardware_interrupt_pSeries:
b3e6b5df 237hardware_interrupt_hv:
a5d4f3ad 238 BEGIN_FTR_SECTION
b01c8b54
PM
239 _MASKABLE_EXCEPTION_PSERIES(0x502, hardware_interrupt,
240 EXC_HV, SOFTEN_TEST_HV)
241 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x502)
de56a948
PM
242 FTR_SECTION_ELSE
243 _MASKABLE_EXCEPTION_PSERIES(0x500, hardware_interrupt,
9e368f29 244 EXC_STD, SOFTEN_TEST_HV_201)
de56a948 245 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0x500)
969391c5 246 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_206)
a5d4f3ad 247
b3e6b5df 248 STD_EXCEPTION_PSERIES(0x600, 0x600, alignment)
de56a948 249 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x600)
b01c8b54 250
b3e6b5df 251 STD_EXCEPTION_PSERIES(0x700, 0x700, program_check)
de56a948 252 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x700)
b01c8b54 253
b3e6b5df 254 STD_EXCEPTION_PSERIES(0x800, 0x800, fp_unavailable)
de56a948 255 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x800)
a5d4f3ad 256
b3e6b5df 257 MASKABLE_EXCEPTION_PSERIES(0x900, 0x900, decrementer)
dabe859e 258 STD_EXCEPTION_HV(0x980, 0x982, hdecrementer)
a5d4f3ad 259
1dbdafec 260 MASKABLE_EXCEPTION_PSERIES(0xa00, 0xa00, doorbell_super)
de56a948 261 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xa00)
b01c8b54 262
b3e6b5df 263 STD_EXCEPTION_PSERIES(0xb00, 0xb00, trap_0b)
de56a948 264 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xb00)
0ebc4cda
BH
265
266 . = 0xc00
267 .globl system_call_pSeries
268system_call_pSeries:
269 HMT_MEDIUM
b01c8b54
PM
270#ifdef CONFIG_KVM_BOOK3S_64_HANDLER
271 SET_SCRATCH0(r13)
272 GET_PACA(r13)
273 std r9,PACA_EXGEN+EX_R9(r13)
274 std r10,PACA_EXGEN+EX_R10(r13)
275 mfcr r9
276 KVMTEST(0xc00)
277 GET_SCRATCH0(r13)
278#endif
742415d6
MN
279 SYSCALL_PSERIES_1
280 SYSCALL_PSERIES_2_RFID
281 SYSCALL_PSERIES_3
b01c8b54
PM
282 KVM_HANDLER(PACA_EXGEN, EXC_STD, 0xc00)
283
b3e6b5df 284 STD_EXCEPTION_PSERIES(0xd00, 0xd00, single_step)
de56a948 285 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xd00)
b3e6b5df
BH
286
287 /* At 0xe??? we have a bunch of hypervisor exceptions, we branch
288 * out of line to handle them
289 */
290 . = 0xe00
e6a74c6e 291hv_exception_trampoline:
1707dd16
PM
292 SET_SCRATCH0(r13)
293 EXCEPTION_PROLOG_0(PACA_EXGEN)
b3e6b5df 294 b h_data_storage_hv
1707dd16 295
b3e6b5df 296 . = 0xe20
1707dd16
PM
297 SET_SCRATCH0(r13)
298 EXCEPTION_PROLOG_0(PACA_EXGEN)
b3e6b5df 299 b h_instr_storage_hv
1707dd16 300
b3e6b5df 301 . = 0xe40
1707dd16
PM
302 SET_SCRATCH0(r13)
303 EXCEPTION_PROLOG_0(PACA_EXGEN)
b3e6b5df 304 b emulation_assist_hv
1707dd16 305
b3e6b5df 306 . = 0xe60
1707dd16
PM
307 SET_SCRATCH0(r13)
308 EXCEPTION_PROLOG_0(PACA_EXGEN)
b3e6b5df 309 b hmi_exception_hv
1707dd16 310
655bb3f4 311 . = 0xe80
1707dd16
PM
312 SET_SCRATCH0(r13)
313 EXCEPTION_PROLOG_0(PACA_EXGEN)
655bb3f4 314 b h_doorbell_hv
0ebc4cda
BH
315
316 /* We need to deal with the Altivec unavailable exception
317 * here which is at 0xf20, thus in the middle of the
318 * prolog code of the PerformanceMonitor one. A little
319 * trickery is thus necessary
320 */
c86e2ead 321performance_monitor_pSeries_1:
0ebc4cda 322 . = 0xf00
1707dd16
PM
323 SET_SCRATCH0(r13)
324 EXCEPTION_PROLOG_0(PACA_EXGEN)
0ebc4cda
BH
325 b performance_monitor_pSeries
326
c86e2ead 327altivec_unavailable_pSeries_1:
0ebc4cda 328 . = 0xf20
1707dd16
PM
329 SET_SCRATCH0(r13)
330 EXCEPTION_PROLOG_0(PACA_EXGEN)
0ebc4cda
BH
331 b altivec_unavailable_pSeries
332
c86e2ead 333vsx_unavailable_pSeries_1:
0ebc4cda 334 . = 0xf40
1707dd16
PM
335 SET_SCRATCH0(r13)
336 EXCEPTION_PROLOG_0(PACA_EXGEN)
0ebc4cda
BH
337 b vsx_unavailable_pSeries
338
d0c0c9a1
MN
339 . = 0xf60
340 SET_SCRATCH0(r13)
341 EXCEPTION_PROLOG_0(PACA_EXGEN)
342 b tm_unavailable_pSeries
343
0ebc4cda 344#ifdef CONFIG_CBE_RAS
b3e6b5df 345 STD_EXCEPTION_HV(0x1200, 0x1202, cbe_system_error)
5ccf55dd 346 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1202)
0ebc4cda 347#endif /* CONFIG_CBE_RAS */
b01c8b54 348
b3e6b5df 349 STD_EXCEPTION_PSERIES(0x1300, 0x1300, instruction_breakpoint)
de56a948 350 KVM_HANDLER_PR_SKIP(PACA_EXGEN, EXC_STD, 0x1300)
b01c8b54 351
b92a66a6 352 . = 0x1500
51cf2b30 353 .global denorm_exception_hv
b92a66a6 354denorm_exception_hv:
44e9309f 355 HMT_MEDIUM_PPR_DISCARD
b92a66a6 356 mtspr SPRN_SPRG_HSCRATCH0,r13
1707dd16 357 EXCEPTION_PROLOG_0(PACA_EXGEN)
b92a66a6
MN
358 std r11,PACA_EXGEN+EX_R11(r13)
359 std r12,PACA_EXGEN+EX_R12(r13)
360 mfspr r9,SPRN_SPRG_HSCRATCH0
361 std r9,PACA_EXGEN+EX_R13(r13)
362 mfcr r9
363
364#ifdef CONFIG_PPC_DENORMALISATION
365 mfspr r10,SPRN_HSRR1
366 mfspr r11,SPRN_HSRR0 /* save HSRR0 */
367 andis. r10,r10,(HSRR1_DENORM)@h /* denorm? */
368 addi r11,r11,-4 /* HSRR0 is next instruction */
369 bne+ denorm_assist
370#endif
371
372 EXCEPTION_PROLOG_PSERIES_1(denorm_common, EXC_HV)
373 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_STD, 0x1500)
374
0ebc4cda 375#ifdef CONFIG_CBE_RAS
b3e6b5df 376 STD_EXCEPTION_HV(0x1600, 0x1602, cbe_maintenance)
5ccf55dd 377 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1602)
0ebc4cda 378#endif /* CONFIG_CBE_RAS */
b01c8b54 379
b3e6b5df 380 STD_EXCEPTION_PSERIES(0x1700, 0x1700, altivec_assist)
de56a948 381 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x1700)
b01c8b54 382
0ebc4cda 383#ifdef CONFIG_CBE_RAS
b3e6b5df 384 STD_EXCEPTION_HV(0x1800, 0x1802, cbe_thermal)
5ccf55dd 385 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0x1802)
faab4dd2
MN
386#else
387 . = 0x1800
0ebc4cda
BH
388#endif /* CONFIG_CBE_RAS */
389
0ebc4cda 390
b3e6b5df
BH
391/*** Out of line interrupts support ***/
392
faab4dd2 393 .align 7
b01c8b54
PM
394 /* moved from 0x200 */
395machine_check_pSeries:
396 .globl machine_check_fwnmi
397machine_check_fwnmi:
44e9309f 398 HMT_MEDIUM_PPR_DISCARD
b01c8b54 399 SET_SCRATCH0(r13) /* save r13 */
1707dd16
PM
400 EXCEPTION_PROLOG_0(PACA_EXMC)
401machine_check_pSeries_0:
402 EXCEPTION_PROLOG_1(PACA_EXMC, KVMTEST, 0x200)
403 EXCEPTION_PROLOG_PSERIES_1(machine_check_common, EXC_STD)
b01c8b54
PM
404 KVM_HANDLER_SKIP(PACA_EXMC, EXC_STD, 0x200)
405
b01c8b54
PM
406 /* moved from 0x300 */
407data_access_check_stab:
408 GET_PACA(r13)
409 std r9,PACA_EXSLB+EX_R9(r13)
410 std r10,PACA_EXSLB+EX_R10(r13)
411 mfspr r10,SPRN_DAR
412 mfspr r9,SPRN_DSISR
413 srdi r10,r10,60
414 rlwimi r10,r9,16,0x20
de56a948 415#ifdef CONFIG_KVM_BOOK3S_PR
3c42bf8a 416 lbz r9,HSTATE_IN_GUEST(r13)
b01c8b54
PM
417 rlwimi r10,r9,8,0x300
418#endif
419 mfcr r9
420 cmpwi r10,0x2c
421 beq do_stab_bolted_pSeries
422 mtcrf 0x80,r9
423 ld r9,PACA_EXSLB+EX_R9(r13)
424 ld r10,PACA_EXSLB+EX_R10(r13)
425 b data_access_not_stab
426do_stab_bolted_pSeries:
427 std r11,PACA_EXSLB+EX_R11(r13)
428 std r12,PACA_EXSLB+EX_R12(r13)
429 GET_SCRATCH0(r10)
430 std r10,PACA_EXSLB+EX_R13(r13)
431 EXCEPTION_PROLOG_PSERIES_1(.do_stab_bolted, EXC_STD)
b01c8b54 432
697d3899
PM
433 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_STD, 0x300)
434 KVM_HANDLER_SKIP(PACA_EXSLB, EXC_STD, 0x380)
de56a948
PM
435 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x400)
436 KVM_HANDLER_PR(PACA_EXSLB, EXC_STD, 0x480)
437 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0x900)
b01c8b54
PM
438 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0x982)
439
b92a66a6
MN
440#ifdef CONFIG_PPC_DENORMALISATION
441denorm_assist:
442BEGIN_FTR_SECTION
443/*
444 * To denormalise we need to move a copy of the register to itself.
445 * For POWER6 do that here for all FP regs.
446 */
447 mfmsr r10
448 ori r10,r10,(MSR_FP|MSR_FE0|MSR_FE1)
449 xori r10,r10,(MSR_FE0|MSR_FE1)
450 mtmsrd r10
451 sync
452 fmr 0,0
453 fmr 1,1
454 fmr 2,2
455 fmr 3,3
456 fmr 4,4
457 fmr 5,5
458 fmr 6,6
459 fmr 7,7
460 fmr 8,8
461 fmr 9,9
462 fmr 10,10
463 fmr 11,11
464 fmr 12,12
465 fmr 13,13
466 fmr 14,14
467 fmr 15,15
468 fmr 16,16
469 fmr 17,17
470 fmr 18,18
471 fmr 19,19
472 fmr 20,20
473 fmr 21,21
474 fmr 22,22
475 fmr 23,23
476 fmr 24,24
477 fmr 25,25
478 fmr 26,26
479 fmr 27,27
480 fmr 28,28
481 fmr 29,29
482 fmr 30,30
483 fmr 31,31
484FTR_SECTION_ELSE
485/*
486 * To denormalise we need to move a copy of the register to itself.
487 * For POWER7 do that here for the first 32 VSX registers only.
488 */
489 mfmsr r10
490 oris r10,r10,MSR_VSX@h
491 mtmsrd r10
492 sync
493 XVCPSGNDP(0,0,0)
494 XVCPSGNDP(1,1,1)
495 XVCPSGNDP(2,2,2)
496 XVCPSGNDP(3,3,3)
497 XVCPSGNDP(4,4,4)
498 XVCPSGNDP(5,5,5)
499 XVCPSGNDP(6,6,6)
500 XVCPSGNDP(7,7,7)
501 XVCPSGNDP(8,8,8)
502 XVCPSGNDP(9,9,9)
503 XVCPSGNDP(10,10,10)
504 XVCPSGNDP(11,11,11)
505 XVCPSGNDP(12,12,12)
506 XVCPSGNDP(13,13,13)
507 XVCPSGNDP(14,14,14)
508 XVCPSGNDP(15,15,15)
509 XVCPSGNDP(16,16,16)
510 XVCPSGNDP(17,17,17)
511 XVCPSGNDP(18,18,18)
512 XVCPSGNDP(19,19,19)
513 XVCPSGNDP(20,20,20)
514 XVCPSGNDP(21,21,21)
515 XVCPSGNDP(22,22,22)
516 XVCPSGNDP(23,23,23)
517 XVCPSGNDP(24,24,24)
518 XVCPSGNDP(25,25,25)
519 XVCPSGNDP(26,26,26)
520 XVCPSGNDP(27,27,27)
521 XVCPSGNDP(28,28,28)
522 XVCPSGNDP(29,29,29)
523 XVCPSGNDP(30,30,30)
524 XVCPSGNDP(31,31,31)
525ALT_FTR_SECTION_END_IFCLR(CPU_FTR_ARCH_206)
526 mtspr SPRN_HSRR0,r11
527 mtcrf 0x80,r9
528 ld r9,PACA_EXGEN+EX_R9(r13)
44e9309f 529 RESTORE_PPR_PACA(PACA_EXGEN, r10)
b92a66a6
MN
530 ld r10,PACA_EXGEN+EX_R10(r13)
531 ld r11,PACA_EXGEN+EX_R11(r13)
532 ld r12,PACA_EXGEN+EX_R12(r13)
533 ld r13,PACA_EXGEN+EX_R13(r13)
534 HRFID
535 b .
536#endif
537
b01c8b54 538 .align 7
b3e6b5df 539 /* moved from 0xe00 */
1707dd16 540 STD_EXCEPTION_HV_OOL(0xe02, h_data_storage)
b01c8b54 541 KVM_HANDLER_SKIP(PACA_EXGEN, EXC_HV, 0xe02)
1707dd16 542 STD_EXCEPTION_HV_OOL(0xe22, h_instr_storage)
b01c8b54 543 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe22)
1707dd16 544 STD_EXCEPTION_HV_OOL(0xe42, emulation_assist)
b01c8b54 545 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe42)
1707dd16 546 STD_EXCEPTION_HV_OOL(0xe62, hmi_exception) /* need to flush cache ? */
b01c8b54 547 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe62)
1707dd16 548 MASKABLE_EXCEPTION_HV_OOL(0xe82, h_doorbell)
655bb3f4 549 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe82)
0ebc4cda
BH
550
551 /* moved from 0xf00 */
1707dd16 552 STD_EXCEPTION_PSERIES_OOL(0xf00, performance_monitor)
de56a948 553 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf00)
1707dd16 554 STD_EXCEPTION_PSERIES_OOL(0xf20, altivec_unavailable)
de56a948 555 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf20)
1707dd16 556 STD_EXCEPTION_PSERIES_OOL(0xf40, vsx_unavailable)
de56a948 557 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf40)
d0c0c9a1
MN
558 STD_EXCEPTION_PSERIES_OOL(0xf60, tm_unavailable)
559 KVM_HANDLER_PR(PACA_EXGEN, EXC_STD, 0xf60)
0ebc4cda
BH
560
561/*
fe9e1d54
IM
562 * An interrupt came in while soft-disabled. We set paca->irq_happened, then:
563 * - If it was a decrementer interrupt, we bump the dec to max and and return.
564 * - If it was a doorbell we return immediately since doorbells are edge
565 * triggered and won't automatically refire.
566 * - else we hard disable and return.
567 * This is called with r10 containing the value to OR to the paca field.
0ebc4cda 568 */
7230c564
BH
569#define MASKED_INTERRUPT(_H) \
570masked_##_H##interrupt: \
571 std r11,PACA_EXGEN+EX_R11(r13); \
572 lbz r11,PACAIRQHAPPENED(r13); \
573 or r11,r11,r10; \
574 stb r11,PACAIRQHAPPENED(r13); \
fe9e1d54
IM
575 cmpwi r10,PACA_IRQ_DEC; \
576 bne 1f; \
7230c564
BH
577 lis r10,0x7fff; \
578 ori r10,r10,0xffff; \
579 mtspr SPRN_DEC,r10; \
580 b 2f; \
fe9e1d54
IM
5811: cmpwi r10,PACA_IRQ_DBELL; \
582 beq 2f; \
583 mfspr r10,SPRN_##_H##SRR1; \
7230c564
BH
584 rldicl r10,r10,48,1; /* clear MSR_EE */ \
585 rotldi r10,r10,16; \
586 mtspr SPRN_##_H##SRR1,r10; \
5872: mtcrf 0x80,r9; \
588 ld r9,PACA_EXGEN+EX_R9(r13); \
589 ld r10,PACA_EXGEN+EX_R10(r13); \
590 ld r11,PACA_EXGEN+EX_R11(r13); \
591 GET_SCRATCH0(r13); \
592 ##_H##rfid; \
0ebc4cda 593 b .
7230c564
BH
594
595 MASKED_INTERRUPT()
596 MASKED_INTERRUPT(H)
0ebc4cda 597
7230c564
BH
598/*
599 * Called from arch_local_irq_enable when an interrupt needs
fe9e1d54
IM
600 * to be resent. r3 contains 0x500, 0x900, 0xa00 or 0xe80 to indicate
601 * which kind of interrupt. MSR:EE is already off. We generate a
7230c564
BH
602 * stackframe like if a real interrupt had happened.
603 *
604 * Note: While MSR:EE is off, we need to make sure that _MSR
605 * in the generated frame has EE set to 1 or the exception
606 * handler will not properly re-enable them.
607 */
608_GLOBAL(__replay_interrupt)
609 /* We are going to jump to the exception common code which
610 * will retrieve various register values from the PACA which
611 * we don't give a damn about, so we don't bother storing them.
612 */
613 mfmsr r12
614 mflr r11
615 mfcr r9
616 ori r12,r12,MSR_EE
fe9e1d54
IM
617 cmpwi r3,0x900
618 beq decrementer_common
619 cmpwi r3,0x500
620 beq hardware_interrupt_common
621BEGIN_FTR_SECTION
622 cmpwi r3,0xe80
623 beq h_doorbell_common
624FTR_SECTION_ELSE
625 cmpwi r3,0xa00
626 beq doorbell_super_common
627ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
628 blr
a5d4f3ad 629
0ebc4cda
BH
630#ifdef CONFIG_PPC_PSERIES
631/*
632 * Vectors for the FWNMI option. Share common code.
633 */
634 .globl system_reset_fwnmi
635 .align 7
636system_reset_fwnmi:
44e9309f 637 HMT_MEDIUM_PPR_DISCARD
673b189a 638 SET_SCRATCH0(r13) /* save r13 */
b01c8b54
PM
639 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, system_reset_common, EXC_STD,
640 NOTEST, 0x100)
0ebc4cda
BH
641
642#endif /* CONFIG_PPC_PSERIES */
643
644#ifdef __DISABLED__
645/*
646 * This is used for when the SLB miss handler has to go virtual,
647 * which doesn't happen for now anymore but will once we re-implement
648 * dynamic VSIDs for shared page tables
649 */
650slb_miss_user_pseries:
651 std r10,PACA_EXGEN+EX_R10(r13)
652 std r11,PACA_EXGEN+EX_R11(r13)
653 std r12,PACA_EXGEN+EX_R12(r13)
673b189a 654 GET_SCRATCH0(r10)
0ebc4cda
BH
655 ld r11,PACA_EXSLB+EX_R9(r13)
656 ld r12,PACA_EXSLB+EX_R3(r13)
657 std r10,PACA_EXGEN+EX_R13(r13)
658 std r11,PACA_EXGEN+EX_R9(r13)
659 std r12,PACA_EXGEN+EX_R3(r13)
660 clrrdi r12,r13,32
661 mfmsr r10
662 mfspr r11,SRR0 /* save SRR0 */
663 ori r12,r12,slb_miss_user_common@l /* virt addr of handler */
664 ori r10,r10,MSR_IR|MSR_DR|MSR_RI
665 mtspr SRR0,r12
666 mfspr r12,SRR1 /* and SRR1 */
667 mtspr SRR1,r10
668 rfid
669 b . /* prevent spec. execution */
670#endif /* __DISABLED__ */
671
0ebc4cda
BH
672/*
673 * Code from here down to __end_handlers is invoked from the
674 * exception prologs above. Because the prologs assemble the
675 * addresses of these handlers using the LOAD_HANDLER macro,
61e2390e
MN
676 * which uses an ori instruction, these handlers must be in
677 * the first 64k of the kernel image.
0ebc4cda
BH
678 */
679
680/*** Common interrupt handlers ***/
681
682 STD_EXCEPTION_COMMON(0x100, system_reset, .system_reset_exception)
683
684 /*
685 * Machine check is different because we use a different
686 * save area: PACA_EXMC instead of PACA_EXGEN.
687 */
688 .align 7
689 .globl machine_check_common
690machine_check_common:
691 EXCEPTION_PROLOG_COMMON(0x200, PACA_EXMC)
692 FINISH_NAP
693 DISABLE_INTS
694 bl .save_nvgprs
695 addi r3,r1,STACK_FRAME_OVERHEAD
696 bl .machine_check_exception
697 b .ret_from_except
698
7450f6f0
BH
699 STD_EXCEPTION_COMMON_ASYNC(0x500, hardware_interrupt, do_IRQ)
700 STD_EXCEPTION_COMMON_ASYNC(0x900, decrementer, .timer_interrupt)
dabe859e 701 STD_EXCEPTION_COMMON(0x980, hdecrementer, .hdec_interrupt)
1dbdafec
IM
702#ifdef CONFIG_PPC_DOORBELL
703 STD_EXCEPTION_COMMON_ASYNC(0xa00, doorbell_super, .doorbell_exception)
704#else
705 STD_EXCEPTION_COMMON_ASYNC(0xa00, doorbell_super, .unknown_exception)
706#endif
0ebc4cda
BH
707 STD_EXCEPTION_COMMON(0xb00, trap_0b, .unknown_exception)
708 STD_EXCEPTION_COMMON(0xd00, single_step, .single_step_exception)
709 STD_EXCEPTION_COMMON(0xe00, trap_0e, .unknown_exception)
278a6cdc
MN
710 STD_EXCEPTION_COMMON(0xe40, emulation_assist, .program_check_exception)
711 STD_EXCEPTION_COMMON(0xe60, hmi_exception, .unknown_exception)
655bb3f4
IM
712#ifdef CONFIG_PPC_DOORBELL
713 STD_EXCEPTION_COMMON_ASYNC(0xe80, h_doorbell, .doorbell_exception)
714#else
715 STD_EXCEPTION_COMMON_ASYNC(0xe80, h_doorbell, .unknown_exception)
716#endif
7450f6f0 717 STD_EXCEPTION_COMMON_ASYNC(0xf00, performance_monitor, .performance_monitor_exception)
0ebc4cda 718 STD_EXCEPTION_COMMON(0x1300, instruction_breakpoint, .instruction_breakpoint_exception)
b92a66a6 719 STD_EXCEPTION_COMMON(0x1502, denorm, .unknown_exception)
0ebc4cda
BH
720#ifdef CONFIG_ALTIVEC
721 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .altivec_assist_exception)
722#else
723 STD_EXCEPTION_COMMON(0x1700, altivec_assist, .unknown_exception)
724#endif
725#ifdef CONFIG_CBE_RAS
726 STD_EXCEPTION_COMMON(0x1200, cbe_system_error, .cbe_system_error_exception)
727 STD_EXCEPTION_COMMON(0x1600, cbe_maintenance, .cbe_maintenance_exception)
728 STD_EXCEPTION_COMMON(0x1800, cbe_thermal, .cbe_thermal_exception)
729#endif /* CONFIG_CBE_RAS */
730
c1fb6816
MN
731 /*
732 * Relocation-on interrupts: A subset of the interrupts can be delivered
733 * with IR=1/DR=1, if AIL==2 and MSR.HV won't be changed by delivering
734 * it. Addresses are the same as the original interrupt addresses, but
735 * offset by 0xc000000000004000.
736 * It's impossible to receive interrupts below 0x300 via this mechanism.
737 * KVM: None of these traps are from the guest ; anything that escalated
738 * to HV=1 from HV=0 is delivered via real mode handlers.
739 */
740
741 /*
742 * This uses the standard macro, since the original 0x300 vector
743 * only has extra guff for STAB-based processors -- which never
744 * come here.
745 */
746 STD_RELON_EXCEPTION_PSERIES(0x4300, 0x300, data_access)
747 . = 0x4380
748 .globl data_access_slb_relon_pSeries
749data_access_slb_relon_pSeries:
c1fb6816 750 SET_SCRATCH0(r13)
1707dd16 751 EXCEPTION_PROLOG_0(PACA_EXSLB)
c1fb6816
MN
752 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x380)
753 std r3,PACA_EXSLB+EX_R3(r13)
754 mfspr r3,SPRN_DAR
755 mfspr r12,SPRN_SRR1
756#ifndef CONFIG_RELOCATABLE
757 b .slb_miss_realmode
758#else
759 /*
760 * We can't just use a direct branch to .slb_miss_realmode
761 * because the distance from here to there depends on where
762 * the kernel ends up being put.
763 */
764 mfctr r11
765 ld r10,PACAKBASE(r13)
766 LOAD_HANDLER(r10, .slb_miss_realmode)
767 mtctr r10
768 bctr
769#endif
770
771 STD_RELON_EXCEPTION_PSERIES(0x4400, 0x400, instruction_access)
772 . = 0x4480
773 .globl instruction_access_slb_relon_pSeries
774instruction_access_slb_relon_pSeries:
c1fb6816 775 SET_SCRATCH0(r13)
1707dd16 776 EXCEPTION_PROLOG_0(PACA_EXSLB)
c1fb6816
MN
777 EXCEPTION_PROLOG_1(PACA_EXSLB, NOTEST, 0x480)
778 std r3,PACA_EXSLB+EX_R3(r13)
779 mfspr r3,SPRN_SRR0 /* SRR0 is faulting address */
780 mfspr r12,SPRN_SRR1
781#ifndef CONFIG_RELOCATABLE
782 b .slb_miss_realmode
783#else
784 mfctr r11
785 ld r10,PACAKBASE(r13)
786 LOAD_HANDLER(r10, .slb_miss_realmode)
787 mtctr r10
788 bctr
789#endif
790
791 . = 0x4500
792 .globl hardware_interrupt_relon_pSeries;
793 .globl hardware_interrupt_relon_hv;
794hardware_interrupt_relon_pSeries:
795hardware_interrupt_relon_hv:
796 BEGIN_FTR_SECTION
797 _MASKABLE_RELON_EXCEPTION_PSERIES(0x502, hardware_interrupt, EXC_HV, SOFTEN_TEST_HV)
798 FTR_SECTION_ELSE
799 _MASKABLE_RELON_EXCEPTION_PSERIES(0x500, hardware_interrupt, EXC_STD, SOFTEN_TEST_PR)
3e96ca7f 800 ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE)
c1fb6816
MN
801 STD_RELON_EXCEPTION_PSERIES(0x4600, 0x600, alignment)
802 STD_RELON_EXCEPTION_PSERIES(0x4700, 0x700, program_check)
803 STD_RELON_EXCEPTION_PSERIES(0x4800, 0x800, fp_unavailable)
804 MASKABLE_RELON_EXCEPTION_PSERIES(0x4900, 0x900, decrementer)
805 STD_RELON_EXCEPTION_HV(0x4980, 0x982, hdecrementer)
1dbdafec 806 MASKABLE_RELON_EXCEPTION_PSERIES(0x4a00, 0xa00, doorbell_super)
c1fb6816
MN
807 STD_RELON_EXCEPTION_PSERIES(0x4b00, 0xb00, trap_0b)
808
809 . = 0x4c00
810 .globl system_call_relon_pSeries
811system_call_relon_pSeries:
812 HMT_MEDIUM
813 SYSCALL_PSERIES_1
814 SYSCALL_PSERIES_2_DIRECT
815 SYSCALL_PSERIES_3
816
817 STD_RELON_EXCEPTION_PSERIES(0x4d00, 0xd00, single_step)
818
819 . = 0x4e00
1707dd16
PM
820 SET_SCRATCH0(r13)
821 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
822 b h_data_storage_relon_hv
823
824 . = 0x4e20
1707dd16
PM
825 SET_SCRATCH0(r13)
826 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
827 b h_instr_storage_relon_hv
828
829 . = 0x4e40
1707dd16
PM
830 SET_SCRATCH0(r13)
831 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
832 b emulation_assist_relon_hv
833
c1fb6816 834 . = 0x4e60
1707dd16
PM
835 SET_SCRATCH0(r13)
836 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
837 b hmi_exception_relon_hv
838
655bb3f4 839 . = 0x4e80
1707dd16
PM
840 SET_SCRATCH0(r13)
841 EXCEPTION_PROLOG_0(PACA_EXGEN)
655bb3f4 842 b h_doorbell_relon_hv
c1fb6816
MN
843
844performance_monitor_relon_pSeries_1:
845 . = 0x4f00
1707dd16
PM
846 SET_SCRATCH0(r13)
847 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
848 b performance_monitor_relon_pSeries
849
850altivec_unavailable_relon_pSeries_1:
851 . = 0x4f20
1707dd16
PM
852 SET_SCRATCH0(r13)
853 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
854 b altivec_unavailable_relon_pSeries
855
856vsx_unavailable_relon_pSeries_1:
857 . = 0x4f40
1707dd16
PM
858 SET_SCRATCH0(r13)
859 EXCEPTION_PROLOG_0(PACA_EXGEN)
c1fb6816
MN
860 b vsx_unavailable_relon_pSeries
861
d0c0c9a1
MN
862tm_unavailable_relon_pSeries_1:
863 . = 0x4f60
864 SET_SCRATCH0(r13)
865 EXCEPTION_PROLOG_0(PACA_EXGEN)
866 b tm_unavailable_relon_pSeries
867
c1fb6816
MN
868 STD_RELON_EXCEPTION_PSERIES(0x5300, 0x1300, instruction_breakpoint)
869#ifdef CONFIG_PPC_DENORMALISATION
870 . = 0x5500
871 b denorm_exception_hv
872#endif
c1fb6816 873 STD_RELON_EXCEPTION_PSERIES(0x5700, 0x1700, altivec_assist)
c1fb6816
MN
874
875 /* Other future vectors */
876 .align 7
877 .globl __end_interrupts
878__end_interrupts:
879
0ebc4cda 880 .align 7
c1fb6816
MN
881system_call_entry_direct:
882#if defined(CONFIG_RELOCATABLE)
883 /* The first level prologue may have used LR to get here, saving
884 * orig in r10. To save hacking/ifdeffing common code, restore here.
885 */
886 mtlr r10
887#endif
0ebc4cda
BH
888system_call_entry:
889 b system_call_common
890
fe1952fc
BH
891ppc64_runlatch_on_trampoline:
892 b .__ppc64_runlatch_on
893
0ebc4cda
BH
894/*
895 * Here we have detected that the kernel stack pointer is bad.
896 * R9 contains the saved CR, r13 points to the paca,
897 * r10 contains the (bad) kernel stack pointer,
898 * r11 and r12 contain the saved SRR0 and SRR1.
899 * We switch to using an emergency stack, save the registers there,
900 * and call kernel_bad_stack(), which panics.
901 */
902bad_stack:
903 ld r1,PACAEMERGSP(r13)
904 subi r1,r1,64+INT_FRAME_SIZE
905 std r9,_CCR(r1)
906 std r10,GPR1(r1)
907 std r11,_NIP(r1)
908 std r12,_MSR(r1)
909 mfspr r11,SPRN_DAR
910 mfspr r12,SPRN_DSISR
911 std r11,_DAR(r1)
912 std r12,_DSISR(r1)
913 mflr r10
914 mfctr r11
915 mfxer r12
916 std r10,_LINK(r1)
917 std r11,_CTR(r1)
918 std r12,_XER(r1)
919 SAVE_GPR(0,r1)
920 SAVE_GPR(2,r1)
1977b502
PM
921 ld r10,EX_R3(r3)
922 std r10,GPR3(r1)
923 SAVE_GPR(4,r1)
924 SAVE_4GPRS(5,r1)
925 ld r9,EX_R9(r3)
926 ld r10,EX_R10(r3)
927 SAVE_2GPRS(9,r1)
928 ld r9,EX_R11(r3)
929 ld r10,EX_R12(r3)
930 ld r11,EX_R13(r3)
931 std r9,GPR11(r1)
932 std r10,GPR12(r1)
933 std r11,GPR13(r1)
48404f2e
PM
934BEGIN_FTR_SECTION
935 ld r10,EX_CFAR(r3)
936 std r10,ORIG_GPR3(r1)
937END_FTR_SECTION_IFSET(CPU_FTR_CFAR)
1977b502 938 SAVE_8GPRS(14,r1)
0ebc4cda
BH
939 SAVE_10GPRS(22,r1)
940 lhz r12,PACA_TRAP_SAVE(r13)
941 std r12,_TRAP(r1)
942 addi r11,r1,INT_FRAME_SIZE
943 std r11,0(r1)
944 li r12,0
945 std r12,0(r11)
946 ld r2,PACATOC(r13)
1977b502
PM
947 ld r11,exception_marker@toc(r2)
948 std r12,RESULT(r1)
949 std r11,STACK_FRAME_OVERHEAD-16(r1)
0ebc4cda
BH
9501: addi r3,r1,STACK_FRAME_OVERHEAD
951 bl .kernel_bad_stack
952 b 1b
953
954/*
955 * Here r13 points to the paca, r9 contains the saved CR,
956 * SRR0 and SRR1 are saved in r11 and r12,
957 * r9 - r13 are saved in paca->exgen.
958 */
959 .align 7
960 .globl data_access_common
961data_access_common:
962 mfspr r10,SPRN_DAR
963 std r10,PACA_EXGEN+EX_DAR(r13)
964 mfspr r10,SPRN_DSISR
965 stw r10,PACA_EXGEN+EX_DSISR(r13)
966 EXCEPTION_PROLOG_COMMON(0x300, PACA_EXGEN)
a546498f
BH
967 DISABLE_INTS
968 ld r12,_MSR(r1)
0ebc4cda
BH
969 ld r3,PACA_EXGEN+EX_DAR(r13)
970 lwz r4,PACA_EXGEN+EX_DSISR(r13)
971 li r5,0x300
278a6cdc 972 b .do_hash_page /* Try to handle as hpte fault */
0ebc4cda 973
b3e6b5df 974 .align 7
278a6cdc 975 .globl h_data_storage_common
b3e6b5df 976h_data_storage_common:
278a6cdc
MN
977 mfspr r10,SPRN_HDAR
978 std r10,PACA_EXGEN+EX_DAR(r13)
979 mfspr r10,SPRN_HDSISR
980 stw r10,PACA_EXGEN+EX_DSISR(r13)
981 EXCEPTION_PROLOG_COMMON(0xe00, PACA_EXGEN)
982 bl .save_nvgprs
a546498f 983 DISABLE_INTS
278a6cdc
MN
984 addi r3,r1,STACK_FRAME_OVERHEAD
985 bl .unknown_exception
986 b .ret_from_except
b3e6b5df 987
0ebc4cda
BH
988 .align 7
989 .globl instruction_access_common
990instruction_access_common:
991 EXCEPTION_PROLOG_COMMON(0x400, PACA_EXGEN)
a546498f
BH
992 DISABLE_INTS
993 ld r12,_MSR(r1)
0ebc4cda
BH
994 ld r3,_NIP(r1)
995 andis. r4,r12,0x5820
996 li r5,0x400
997 b .do_hash_page /* Try to handle as hpte fault */
998
278a6cdc 999 STD_EXCEPTION_COMMON(0xe20, h_instr_storage, .unknown_exception)
b3e6b5df 1000
0ebc4cda
BH
1001/*
1002 * Here is the common SLB miss user that is used when going to virtual
1003 * mode for SLB misses, that is currently not used
1004 */
1005#ifdef __DISABLED__
1006 .align 7
1007 .globl slb_miss_user_common
1008slb_miss_user_common:
1009 mflr r10
1010 std r3,PACA_EXGEN+EX_DAR(r13)
1011 stw r9,PACA_EXGEN+EX_CCR(r13)
1012 std r10,PACA_EXGEN+EX_LR(r13)
1013 std r11,PACA_EXGEN+EX_SRR0(r13)
1014 bl .slb_allocate_user
1015
1016 ld r10,PACA_EXGEN+EX_LR(r13)
1017 ld r3,PACA_EXGEN+EX_R3(r13)
1018 lwz r9,PACA_EXGEN+EX_CCR(r13)
1019 ld r11,PACA_EXGEN+EX_SRR0(r13)
1020 mtlr r10
1021 beq- slb_miss_fault
1022
1023 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
1024 beq- unrecov_user_slb
1025 mfmsr r10
1026
1027.machine push
1028.machine "power4"
1029 mtcrf 0x80,r9
1030.machine pop
1031
1032 clrrdi r10,r10,2 /* clear RI before setting SRR0/1 */
1033 mtmsrd r10,1
1034
1035 mtspr SRR0,r11
1036 mtspr SRR1,r12
1037
1038 ld r9,PACA_EXGEN+EX_R9(r13)
1039 ld r10,PACA_EXGEN+EX_R10(r13)
1040 ld r11,PACA_EXGEN+EX_R11(r13)
1041 ld r12,PACA_EXGEN+EX_R12(r13)
1042 ld r13,PACA_EXGEN+EX_R13(r13)
1043 rfid
1044 b .
1045
1046slb_miss_fault:
1047 EXCEPTION_PROLOG_COMMON(0x380, PACA_EXGEN)
1048 ld r4,PACA_EXGEN+EX_DAR(r13)
1049 li r5,0
1050 std r4,_DAR(r1)
1051 std r5,_DSISR(r1)
1052 b handle_page_fault
1053
1054unrecov_user_slb:
1055 EXCEPTION_PROLOG_COMMON(0x4200, PACA_EXGEN)
1056 DISABLE_INTS
1057 bl .save_nvgprs
10581: addi r3,r1,STACK_FRAME_OVERHEAD
1059 bl .unrecoverable_exception
1060 b 1b
1061
1062#endif /* __DISABLED__ */
1063
1064
0ebc4cda
BH
1065 .align 7
1066 .globl alignment_common
1067alignment_common:
1068 mfspr r10,SPRN_DAR
1069 std r10,PACA_EXGEN+EX_DAR(r13)
1070 mfspr r10,SPRN_DSISR
1071 stw r10,PACA_EXGEN+EX_DSISR(r13)
1072 EXCEPTION_PROLOG_COMMON(0x600, PACA_EXGEN)
1073 ld r3,PACA_EXGEN+EX_DAR(r13)
1074 lwz r4,PACA_EXGEN+EX_DSISR(r13)
1075 std r3,_DAR(r1)
1076 std r4,_DSISR(r1)
1077 bl .save_nvgprs
a3512b2d 1078 DISABLE_INTS
0ebc4cda 1079 addi r3,r1,STACK_FRAME_OVERHEAD
0ebc4cda
BH
1080 bl .alignment_exception
1081 b .ret_from_except
1082
1083 .align 7
1084 .globl program_check_common
1085program_check_common:
1086 EXCEPTION_PROLOG_COMMON(0x700, PACA_EXGEN)
1087 bl .save_nvgprs
54321242 1088 DISABLE_INTS
922b9f86 1089 addi r3,r1,STACK_FRAME_OVERHEAD
0ebc4cda
BH
1090 bl .program_check_exception
1091 b .ret_from_except
1092
1093 .align 7
1094 .globl fp_unavailable_common
1095fp_unavailable_common:
1096 EXCEPTION_PROLOG_COMMON(0x800, PACA_EXGEN)
1097 bne 1f /* if from user, just load it up */
1098 bl .save_nvgprs
9f2f79e3 1099 DISABLE_INTS
0ebc4cda 1100 addi r3,r1,STACK_FRAME_OVERHEAD
0ebc4cda
BH
1101 bl .kernel_fp_unavailable_exception
1102 BUG_OPCODE
bc2a9408
MN
11031:
1104#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1105BEGIN_FTR_SECTION
1106 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1107 * transaction), go do TM stuff
1108 */
1109 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1110 bne- 2f
1111END_FTR_SECTION_IFSET(CPU_FTR_TM)
1112#endif
1113 bl .load_up_fpu
0ebc4cda 1114 b fast_exception_return
bc2a9408
MN
1115#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
11162: /* User process was in a transaction */
1117 bl .save_nvgprs
1118 DISABLE_INTS
1119 addi r3,r1,STACK_FRAME_OVERHEAD
1120 bl .fp_unavailable_tm
1121 b .ret_from_except
1122#endif
0ebc4cda
BH
1123 .align 7
1124 .globl altivec_unavailable_common
1125altivec_unavailable_common:
1126 EXCEPTION_PROLOG_COMMON(0xf20, PACA_EXGEN)
1127#ifdef CONFIG_ALTIVEC
1128BEGIN_FTR_SECTION
1129 beq 1f
bc2a9408
MN
1130#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1131 BEGIN_FTR_SECTION_NESTED(69)
1132 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1133 * transaction), go do TM stuff
1134 */
1135 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1136 bne- 2f
1137 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1138#endif
0ebc4cda
BH
1139 bl .load_up_altivec
1140 b fast_exception_return
bc2a9408
MN
1141#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
11422: /* User process was in a transaction */
1143 bl .save_nvgprs
1144 DISABLE_INTS
1145 addi r3,r1,STACK_FRAME_OVERHEAD
1146 bl .altivec_unavailable_tm
1147 b .ret_from_except
1148#endif
0ebc4cda
BH
11491:
1150END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
1151#endif
1152 bl .save_nvgprs
9f2f79e3 1153 DISABLE_INTS
0ebc4cda 1154 addi r3,r1,STACK_FRAME_OVERHEAD
0ebc4cda
BH
1155 bl .altivec_unavailable_exception
1156 b .ret_from_except
1157
1158 .align 7
1159 .globl vsx_unavailable_common
1160vsx_unavailable_common:
1161 EXCEPTION_PROLOG_COMMON(0xf40, PACA_EXGEN)
1162#ifdef CONFIG_VSX
1163BEGIN_FTR_SECTION
7230c564 1164 beq 1f
bc2a9408
MN
1165#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1166 BEGIN_FTR_SECTION_NESTED(69)
1167 /* Test if 2 TM state bits are zero. If non-zero (ie. userspace was in
1168 * transaction), go do TM stuff
1169 */
1170 rldicl. r0, r12, (64-MSR_TS_LG), (64-2)
1171 bne- 2f
1172 END_FTR_SECTION_NESTED(CPU_FTR_TM, CPU_FTR_TM, 69)
1173#endif
7230c564 1174 b .load_up_vsx
bc2a9408
MN
1175#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
11762: /* User process was in a transaction */
1177 bl .save_nvgprs
1178 DISABLE_INTS
1179 addi r3,r1,STACK_FRAME_OVERHEAD
1180 bl .vsx_unavailable_tm
1181 b .ret_from_except
1182#endif
0ebc4cda
BH
11831:
1184END_FTR_SECTION_IFSET(CPU_FTR_VSX)
1185#endif
1186 bl .save_nvgprs
9f2f79e3 1187 DISABLE_INTS
0ebc4cda 1188 addi r3,r1,STACK_FRAME_OVERHEAD
0ebc4cda
BH
1189 bl .vsx_unavailable_exception
1190 b .ret_from_except
1191
d0c0c9a1
MN
1192 .align 7
1193 .globl tm_unavailable_common
1194tm_unavailable_common:
1195 EXCEPTION_PROLOG_COMMON(0xf60, PACA_EXGEN)
1196 bl .save_nvgprs
bc2a9408 1197 DISABLE_INTS
d0c0c9a1
MN
1198 addi r3,r1,STACK_FRAME_OVERHEAD
1199 bl .tm_unavailable_exception
1200 b .ret_from_except
1201
0ebc4cda
BH
1202 .align 7
1203 .globl __end_handlers
1204__end_handlers:
1205
61383407 1206 /* Equivalents to the above handlers for relocation-on interrupt vectors */
1707dd16 1207 STD_RELON_EXCEPTION_HV_OOL(0xe00, h_data_storage)
61383407 1208 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe00)
1707dd16 1209 STD_RELON_EXCEPTION_HV_OOL(0xe20, h_instr_storage)
61383407 1210 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe20)
1707dd16 1211 STD_RELON_EXCEPTION_HV_OOL(0xe40, emulation_assist)
61383407 1212 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe40)
1707dd16 1213 STD_RELON_EXCEPTION_HV_OOL(0xe60, hmi_exception)
61383407 1214 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe60)
1707dd16 1215 MASKABLE_RELON_EXCEPTION_HV_OOL(0xe80, h_doorbell)
61383407
BH
1216 KVM_HANDLER(PACA_EXGEN, EXC_HV, 0xe80)
1217
1707dd16
PM
1218 STD_RELON_EXCEPTION_PSERIES_OOL(0xf00, performance_monitor)
1219 STD_RELON_EXCEPTION_PSERIES_OOL(0xf20, altivec_unavailable)
1220 STD_RELON_EXCEPTION_PSERIES_OOL(0xf40, vsx_unavailable)
d0c0c9a1 1221 STD_RELON_EXCEPTION_PSERIES_OOL(0xf60, tm_unavailable)
61383407
BH
1222
1223#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV)
1224/*
1225 * Data area reserved for FWNMI option.
1226 * This address (0x7000) is fixed by the RPA.
1227 */
1228 .= 0x7000
1229 .globl fwnmi_data_area
1230fwnmi_data_area:
1231
1232 /* pseries and powernv need to keep the whole page from
1233 * 0x7000 to 0x8000 free for use by the firmware
1234 */
1235 . = 0x8000
1236#endif /* defined(CONFIG_PPC_PSERIES) || defined(CONFIG_PPC_POWERNV) */
1237
1238/* Space for CPU0's segment table */
1239 .balign 4096
1240 .globl initial_stab
1241initial_stab:
1242 .space 4096
1243
1244#ifdef CONFIG_PPC_POWERNV
1245_GLOBAL(opal_mc_secondary_handler)
1246 HMT_MEDIUM_PPR_DISCARD
1247 SET_SCRATCH0(r13)
1248 GET_PACA(r13)
1249 clrldi r3,r3,2
1250 tovirt(r3,r3)
1251 std r3,PACA_OPAL_MC_EVT(r13)
1252 ld r13,OPAL_MC_SRR0(r3)
1253 mtspr SPRN_SRR0,r13
1254 ld r13,OPAL_MC_SRR1(r3)
1255 mtspr SPRN_SRR1,r13
1256 ld r3,OPAL_MC_GPR3(r3)
1257 GET_SCRATCH0(r13)
1258 b machine_check_pSeries
1259#endif /* CONFIG_PPC_POWERNV */
1260
1261
087aa036
CG
1262/*
1263 * r13 points to the PACA, r9 contains the saved CR,
1264 * r12 contain the saved SRR1, SRR0 is still ready for return
1265 * r3 has the faulting address
1266 * r9 - r13 are saved in paca->exslb.
1267 * r3 is saved in paca->slb_r3
1268 * We assume we aren't going to take any exceptions during this procedure.
1269 */
1270_GLOBAL(slb_miss_realmode)
1271 mflr r10
1272#ifdef CONFIG_RELOCATABLE
1273 mtctr r11
1274#endif
1275
1276 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
1277 std r10,PACA_EXSLB+EX_LR(r13) /* save LR */
1278
1279 bl .slb_allocate_realmode
1280
1281 /* All done -- return from exception. */
1282
1283 ld r10,PACA_EXSLB+EX_LR(r13)
1284 ld r3,PACA_EXSLB+EX_R3(r13)
1285 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1286
1287 mtlr r10
1288
1289 andi. r10,r12,MSR_RI /* check for unrecoverable exception */
1290 beq- 2f
1291
1292.machine push
1293.machine "power4"
1294 mtcrf 0x80,r9
1295 mtcrf 0x01,r9 /* slb_allocate uses cr0 and cr7 */
1296.machine pop
1297
1298 RESTORE_PPR_PACA(PACA_EXSLB, r9)
1299 ld r9,PACA_EXSLB+EX_R9(r13)
1300 ld r10,PACA_EXSLB+EX_R10(r13)
1301 ld r11,PACA_EXSLB+EX_R11(r13)
1302 ld r12,PACA_EXSLB+EX_R12(r13)
1303 ld r13,PACA_EXSLB+EX_R13(r13)
1304 rfid
1305 b . /* prevent speculative execution */
1306
13072: mfspr r11,SPRN_SRR0
1308 ld r10,PACAKBASE(r13)
1309 LOAD_HANDLER(r10,unrecov_slb)
1310 mtspr SPRN_SRR0,r10
1311 ld r10,PACAKMSR(r13)
1312 mtspr SPRN_SRR1,r10
1313 rfid
1314 b .
1315
1316unrecov_slb:
1317 EXCEPTION_PROLOG_COMMON(0x4100, PACA_EXSLB)
1318 DISABLE_INTS
1319 bl .save_nvgprs
13201: addi r3,r1,STACK_FRAME_OVERHEAD
1321 bl .unrecoverable_exception
1322 b 1b
1323
1324
1325#ifdef CONFIG_PPC_970_NAP
1326power4_fixup_nap:
1327 andc r9,r9,r10
1328 std r9,TI_LOCAL_FLAGS(r11)
1329 ld r10,_LINK(r1) /* make idle task do the */
1330 std r10,_NIP(r1) /* equivalent of a blr */
1331 blr
1332#endif
1333
0ebc4cda
BH
1334/*
1335 * Hash table stuff
1336 */
1337 .align 7
1338_STATIC(do_hash_page)
1339 std r3,_DAR(r1)
1340 std r4,_DSISR(r1)
1341
9c7cc234 1342 andis. r0,r4,0xa410 /* weird error? */
0ebc4cda 1343 bne- handle_page_fault /* if not, try to insert a HPTE */
9c7cc234
P
1344 andis. r0,r4,DSISR_DABRMATCH@h
1345 bne- handle_dabr_fault
1346
0ebc4cda
BH
1347BEGIN_FTR_SECTION
1348 andis. r0,r4,0x0020 /* Is it a segment table fault? */
1349 bne- do_ste_alloc /* If so handle it */
44ae3ab3 1350END_MMU_FTR_SECTION_IFCLR(MMU_FTR_SLB)
0ebc4cda 1351
9778b696 1352 CURRENT_THREAD_INFO(r11, r1)
9c1e1052
PM
1353 lwz r0,TI_PREEMPT(r11) /* If we're in an "NMI" */
1354 andis. r0,r0,NMI_MASK@h /* (i.e. an irq when soft-disabled) */
1355 bne 77f /* then don't call hash_page now */
0ebc4cda
BH
1356 /*
1357 * We need to set the _PAGE_USER bit if MSR_PR is set or if we are
1358 * accessing a userspace segment (even from the kernel). We assume
1359 * kernel addresses always have the high bit set.
1360 */
1361 rlwinm r4,r4,32-25+9,31-9,31-9 /* DSISR_STORE -> _PAGE_RW */
1362 rotldi r0,r3,15 /* Move high bit into MSR_PR posn */
1363 orc r0,r12,r0 /* MSR_PR | ~high_bit */
1364 rlwimi r4,r0,32-13,30,30 /* becomes _PAGE_USER access bit */
1365 ori r4,r4,1 /* add _PAGE_PRESENT */
1366 rlwimi r4,r5,22+2,31-2,31-2 /* Set _PAGE_EXEC if trap is 0x400 */
1367
1368 /*
1369 * r3 contains the faulting address
1370 * r4 contains the required access permissions
1371 * r5 contains the trap number
1372 *
7230c564 1373 * at return r3 = 0 for success, 1 for page fault, negative for error
0ebc4cda
BH
1374 */
1375 bl .hash_page /* build HPTE if possible */
1376 cmpdi r3,0 /* see if hash_page succeeded */
1377
7230c564 1378 /* Success */
0ebc4cda 1379 beq fast_exc_return_irq /* Return from exception on success */
0ebc4cda 1380
7230c564
BH
1381 /* Error */
1382 blt- 13f
9c7cc234 1383
0ebc4cda
BH
1384/* Here we have a page fault that hash_page can't handle. */
1385handle_page_fault:
0ebc4cda
BH
138611: ld r4,_DAR(r1)
1387 ld r5,_DSISR(r1)
1388 addi r3,r1,STACK_FRAME_OVERHEAD
1389 bl .do_page_fault
1390 cmpdi r3,0
a546498f 1391 beq+ 12f
0ebc4cda
BH
1392 bl .save_nvgprs
1393 mr r5,r3
1394 addi r3,r1,STACK_FRAME_OVERHEAD
1395 lwz r4,_DAR(r1)
1396 bl .bad_page_fault
1397 b .ret_from_except
1398
a546498f
BH
1399/* We have a data breakpoint exception - handle it */
1400handle_dabr_fault:
1401 bl .save_nvgprs
1402 ld r4,_DAR(r1)
1403 ld r5,_DSISR(r1)
1404 addi r3,r1,STACK_FRAME_OVERHEAD
9422de3e 1405 bl .do_break
a546498f
BH
140612: b .ret_from_except_lite
1407
0ebc4cda
BH
1408
1409/* We have a page fault that hash_page could handle but HV refused
1410 * the PTE insertion
1411 */
a546498f 141213: bl .save_nvgprs
0ebc4cda
BH
1413 mr r5,r3
1414 addi r3,r1,STACK_FRAME_OVERHEAD
1415 ld r4,_DAR(r1)
1416 bl .low_hash_fault
1417 b .ret_from_except
1418
9c1e1052
PM
1419/*
1420 * We come here as a result of a DSI at a point where we don't want
1421 * to call hash_page, such as when we are accessing memory (possibly
1422 * user memory) inside a PMU interrupt that occurred while interrupts
1423 * were soft-disabled. We want to invoke the exception handler for
1424 * the access, or panic if there isn't a handler.
1425 */
142677: bl .save_nvgprs
1427 mr r4,r3
1428 addi r3,r1,STACK_FRAME_OVERHEAD
1429 li r5,SIGSEGV
1430 bl .bad_page_fault
1431 b .ret_from_except
1432
0ebc4cda
BH
1433 /* here we have a segment miss */
1434do_ste_alloc:
1435 bl .ste_allocate /* try to insert stab entry */
1436 cmpdi r3,0
1437 bne- handle_page_fault
1438 b fast_exception_return
1439
1440/*
1441 * r13 points to the PACA, r9 contains the saved CR,
1442 * r11 and r12 contain the saved SRR0 and SRR1.
1443 * r9 - r13 are saved in paca->exslb.
1444 * We assume we aren't going to take any exceptions during this procedure.
1445 * We assume (DAR >> 60) == 0xc.
1446 */
1447 .align 7
1448_GLOBAL(do_stab_bolted)
1449 stw r9,PACA_EXSLB+EX_CCR(r13) /* save CR in exc. frame */
1450 std r11,PACA_EXSLB+EX_SRR0(r13) /* save SRR0 in exc. frame */
c60ac569 1451 mfspr r11,SPRN_DAR /* ea */
0ebc4cda 1452
c60ac569
AK
1453 /*
1454 * check for bad kernel/user address
1455 * (ea & ~REGION_MASK) >= PGTABLE_RANGE
1456 */
1457 rldicr. r9,r11,4,(63 - 46 - 4)
1458 li r9,0 /* VSID = 0 for bad address */
1459 bne- 0f
1460
1461 /*
1462 * Calculate VSID:
1463 * This is the kernel vsid, we take the top for context from
1464 * the range. context = (MAX_USER_CONTEXT) + ((ea >> 60) - 0xc) + 1
1465 * Here we know that (ea >> 60) == 0xc
1466 */
1467 lis r9,(MAX_USER_CONTEXT + 1)@ha
1468 addi r9,r9,(MAX_USER_CONTEXT + 1)@l
1469
1470 srdi r10,r11,SID_SHIFT
af81d787 1471 rldimi r10,r9,ESID_BITS,0 /* proto vsid */
c60ac569
AK
1472 ASM_VSID_SCRAMBLE(r10, r9, 256M)
1473 rldic r9,r10,12,16 /* r9 = vsid << 12 */
1474
14750:
0ebc4cda
BH
1476 /* Hash to the primary group */
1477 ld r10,PACASTABVIRT(r13)
c60ac569 1478 srdi r11,r11,SID_SHIFT
0ebc4cda
BH
1479 rldimi r10,r11,7,52 /* r10 = first ste of the group */
1480
0ebc4cda
BH
1481 /* Search the primary group for a free entry */
14821: ld r11,0(r10) /* Test valid bit of the current ste */
1483 andi. r11,r11,0x80
1484 beq 2f
1485 addi r10,r10,16
1486 andi. r11,r10,0x70
1487 bne 1b
1488
1489 /* Stick for only searching the primary group for now. */
1490 /* At least for now, we use a very simple random castout scheme */
1491 /* Use the TB as a random number ; OR in 1 to avoid entry 0 */
1492 mftb r11
1493 rldic r11,r11,4,57 /* r11 = (r11 << 4) & 0x70 */
1494 ori r11,r11,0x10
1495
1496 /* r10 currently points to an ste one past the group of interest */
1497 /* make it point to the randomly selected entry */
1498 subi r10,r10,128
1499 or r10,r10,r11 /* r10 is the entry to invalidate */
1500
1501 isync /* mark the entry invalid */
1502 ld r11,0(r10)
1503 rldicl r11,r11,56,1 /* clear the valid bit */
1504 rotldi r11,r11,8
1505 std r11,0(r10)
1506 sync
1507
1508 clrrdi r11,r11,28 /* Get the esid part of the ste */
1509 slbie r11
1510
15112: std r9,8(r10) /* Store the vsid part of the ste */
1512 eieio
1513
1514 mfspr r11,SPRN_DAR /* Get the new esid */
1515 clrrdi r11,r11,28 /* Permits a full 32b of ESID */
1516 ori r11,r11,0x90 /* Turn on valid and kp */
1517 std r11,0(r10) /* Put new entry back into the stab */
1518
1519 sync
1520
1521 /* All done -- return from exception. */
1522 lwz r9,PACA_EXSLB+EX_CCR(r13) /* get saved CR */
1523 ld r11,PACA_EXSLB+EX_SRR0(r13) /* get saved SRR0 */
1524
1525 andi. r10,r12,MSR_RI
1526 beq- unrecov_slb
1527
1528 mtcrf 0x80,r9 /* restore CR */
1529
1530 mfmsr r10
1531 clrrdi r10,r10,2
1532 mtmsrd r10,1
1533
1534 mtspr SPRN_SRR0,r11
1535 mtspr SPRN_SRR1,r12
1536 ld r9,PACA_EXSLB+EX_R9(r13)
1537 ld r10,PACA_EXSLB+EX_R10(r13)
1538 ld r11,PACA_EXSLB+EX_R11(r13)
1539 ld r12,PACA_EXSLB+EX_R12(r13)
1540 ld r13,PACA_EXSLB+EX_R13(r13)
1541 rfid
1542 b . /* prevent speculative execution */