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