blob: 1b22a8dea399687b6692b94186d377212e544aea [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Becky Bruce63dafe52006-01-14 16:57:39 -06002#ifndef __HEAD_BOOKE_H__
3#define __HEAD_BOOKE_H__
4
Torez Smith471c70f2010-03-05 10:43:01 +00005#include <asm/ptrace.h> /* for STACK_FRAME_REGS_MARKER */
Scott Woodcfac5782011-12-20 15:34:40 +00006#include <asm/kvm_asm.h>
Scott Woodd30f6e42011-12-20 15:34:43 +00007#include <asm/kvm_booke_hv_asm.h>
Scott Woodcfac5782011-12-20 15:34:40 +00008
Becky Bruce63dafe52006-01-14 16:57:39 -06009/*
10 * Macros used for common Book-e exception handling
11 */
12
13#define SET_IVOR(vector_number, vector_label) \
14 li r26,vector_label@l; \
15 mtspr SPRN_IVOR##vector_number,r26; \
16 sync
17
Yuri Tikhonove1240122009-01-29 01:40:44 +000018#if (THREAD_SHIFT < 15)
19#define ALLOC_STACK_FRAME(reg, val) \
20 addi reg,reg,val
21#else
22#define ALLOC_STACK_FRAME(reg, val) \
23 addis reg,reg,val@ha; \
24 addi reg,reg,val@l
25#endif
26
Ashish Kalra1325a682011-04-22 16:48:27 -050027/*
28 * Macro used to get to thread save registers.
29 * Note that entries 0-3 are used for the prolog code, and the remaining
30 * entries are available for specific exception use in the event a handler
31 * requires more than 4 scratch registers.
32 */
33#define THREAD_NORMSAVE(offset) (THREAD_NORMSAVES + (offset * 4))
34
Diana Craciun039daac2018-12-23 22:34:25 +020035#ifdef CONFIG_PPC_FSL_BOOK3E
36#define BOOKE_CLEAR_BTB(reg) \
37START_BTB_FLUSH_SECTION \
38 BTB_FLUSH(reg) \
39END_BTB_FLUSH_SECTION
40#else
41#define BOOKE_CLEAR_BTB(reg)
42#endif
43
44
Scott Woodcfac5782011-12-20 15:34:40 +000045#define NORMAL_EXCEPTION_PROLOG(intno) \
Ashish Kalra1325a682011-04-22 16:48:27 -050046 mtspr SPRN_SPRG_WSCRATCH0, r10; /* save one register */ \
47 mfspr r10, SPRN_SPRG_THREAD; \
48 stw r11, THREAD_NORMSAVE(0)(r10); \
49 stw r13, THREAD_NORMSAVE(2)(r10); \
50 mfcr r13; /* save CR in r13 for now */\
Scott Woodd30f6e42011-12-20 15:34:43 +000051 mfspr r11, SPRN_SRR1; \
52 DO_KVM BOOKE_INTERRUPT_##intno SPRN_SRR1; \
53 andi. r11, r11, MSR_PR; /* check whether user or kernel */\
Ashish Kalra1325a682011-04-22 16:48:27 -050054 mr r11, r1; \
Becky Bruce63dafe52006-01-14 16:57:39 -060055 beq 1f; \
Diana Craciun039daac2018-12-23 22:34:25 +020056 BOOKE_CLEAR_BTB(r11) \
Ashish Kalra1325a682011-04-22 16:48:27 -050057 /* if from user, start at top of this thread's kernel stack */ \
Christophe Leroy8c1fc5a2019-01-31 10:08:54 +000058 lwz r11, TASK_STACK - THREAD(r10); \
Ashish Kalra1325a682011-04-22 16:48:27 -050059 ALLOC_STACK_FRAME(r11, THREAD_SIZE); \
601 : subi r11, r11, INT_FRAME_SIZE; /* Allocate exception frame */ \
61 stw r13, _CCR(r11); /* save various registers */ \
Becky Bruce63dafe52006-01-14 16:57:39 -060062 stw r12,GPR12(r11); \
63 stw r9,GPR9(r11); \
Ashish Kalra1325a682011-04-22 16:48:27 -050064 mfspr r13, SPRN_SPRG_RSCRATCH0; \
65 stw r13, GPR10(r11); \
66 lwz r12, THREAD_NORMSAVE(0)(r10); \
Becky Bruce63dafe52006-01-14 16:57:39 -060067 stw r12,GPR11(r11); \
Ashish Kalra1325a682011-04-22 16:48:27 -050068 lwz r13, THREAD_NORMSAVE(2)(r10); /* restore r13 */ \
Becky Bruce63dafe52006-01-14 16:57:39 -060069 mflr r10; \
70 stw r10,_LINK(r11); \
Becky Bruce63dafe52006-01-14 16:57:39 -060071 mfspr r12,SPRN_SRR0; \
Ashish Kalra1325a682011-04-22 16:48:27 -050072 stw r1, GPR1(r11); \
Becky Bruce63dafe52006-01-14 16:57:39 -060073 mfspr r9,SPRN_SRR1; \
Ashish Kalra1325a682011-04-22 16:48:27 -050074 stw r1, 0(r11); \
75 mr r1, r11; \
Becky Bruce63dafe52006-01-14 16:57:39 -060076 rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\
77 stw r0,GPR0(r11); \
Torez Smith471c70f2010-03-05 10:43:01 +000078 lis r10, STACK_FRAME_REGS_MARKER@ha;/* exception frame marker */ \
79 addi r10, r10, STACK_FRAME_REGS_MARKER@l; \
80 stw r10, 8(r11); \
Becky Bruce63dafe52006-01-14 16:57:39 -060081 SAVE_4GPRS(3, r11); \
82 SAVE_2GPRS(7, r11)
83
84/* To handle the additional exception priority levels on 40x and Book-E
Kumar Galabcf0b082008-04-30 03:49:55 -050085 * processors we allocate a stack per additional priority level.
Becky Bruce63dafe52006-01-14 16:57:39 -060086 *
87 * On 40x critical is the only additional level
88 * On 44x/e500 we have critical and machine check
89 * On e200 we have critical and debug (machine check occurs via critical)
90 *
91 * Additionally we reserve a SPRG for each priority level so we can free up a
92 * GPR to use as the base for indirect access to the exception stacks. This
93 * is necessary since the MMU is always on, for Book-E parts, and the stacks
94 * are offset from KERNELBASE.
95 *
Kumar Galaeb0cd5fd2008-04-09 06:06:11 -050096 * There is some space optimization to be had here if desired. However
97 * to allow for a common kernel with support for debug exceptions either
98 * going to critical or their own debug level we aren't currently
99 * providing configurations that micro-optimize space usage.
Becky Bruce63dafe52006-01-14 16:57:39 -0600100 */
Becky Bruce63dafe52006-01-14 16:57:39 -0600101
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000102#define MC_STACK_BASE mcheckirq_ctx
Kumar Galabcf0b082008-04-30 03:49:55 -0500103#define CRIT_STACK_BASE critirq_ctx
Becky Bruce63dafe52006-01-14 16:57:39 -0600104
Kumar Gala3dfa8772008-06-16 09:41:32 -0500105/* only on e500mc/e200 */
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000106#define DBG_STACK_BASE dbgirq_ctx
Becky Bruce63dafe52006-01-14 16:57:39 -0600107
Kumar Galafca622c2008-04-30 05:23:21 -0500108#define EXC_LVL_FRAME_OVERHEAD (THREAD_SIZE - INT_FRAME_SIZE - EXC_LVL_SIZE)
Kumar Gala369e7572008-04-30 04:17:22 -0500109
Becky Bruce63dafe52006-01-14 16:57:39 -0600110#ifdef CONFIG_SMP
111#define BOOKE_LOAD_EXC_LEVEL_STACK(level) \
112 mfspr r8,SPRN_PIR; \
Kumar Galabcf0b082008-04-30 03:49:55 -0500113 slwi r8,r8,2; \
114 addis r8,r8,level##_STACK_BASE@ha; \
115 lwz r8,level##_STACK_BASE@l(r8); \
Kumar Gala369e7572008-04-30 04:17:22 -0500116 addi r8,r8,EXC_LVL_FRAME_OVERHEAD;
Becky Bruce63dafe52006-01-14 16:57:39 -0600117#else
118#define BOOKE_LOAD_EXC_LEVEL_STACK(level) \
Kumar Galabcf0b082008-04-30 03:49:55 -0500119 lis r8,level##_STACK_BASE@ha; \
120 lwz r8,level##_STACK_BASE@l(r8); \
Kumar Gala369e7572008-04-30 04:17:22 -0500121 addi r8,r8,EXC_LVL_FRAME_OVERHEAD;
Becky Bruce63dafe52006-01-14 16:57:39 -0600122#endif
123
124/*
125 * Exception prolog for critical/machine check exceptions. This is a
126 * little different from the normal exception prolog above since a
127 * critical/machine check exception can potentially occur at any point
128 * during normal exception processing. Thus we cannot use the same SPRG
129 * registers as the normal prolog above. Instead we use a portion of the
130 * critical/machine check exception stack at low physical addresses.
131 */
Scott Woodcfac5782011-12-20 15:34:40 +0000132#define EXC_LEVEL_EXCEPTION_PROLOG(exc_level, intno, exc_level_srr0, exc_level_srr1) \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000133 mtspr SPRN_SPRG_WSCRATCH_##exc_level,r8; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600134 BOOKE_LOAD_EXC_LEVEL_STACK(exc_level);/* r8 points to the exc_level stack*/ \
Kumar Gala369e7572008-04-30 04:17:22 -0500135 stw r9,GPR9(r8); /* save various registers */\
136 mfcr r9; /* save CR in r9 for now */\
137 stw r10,GPR10(r8); \
138 stw r11,GPR11(r8); \
139 stw r9,_CCR(r8); /* save CR on stack */\
Scott Woodd30f6e42011-12-20 15:34:43 +0000140 mfspr r11,exc_level_srr1; /* check whether user or kernel */\
141 DO_KVM BOOKE_INTERRUPT_##intno exc_level_srr1; \
Diana Craciun039daac2018-12-23 22:34:25 +0200142 BOOKE_CLEAR_BTB(r10) \
Scott Woodd30f6e42011-12-20 15:34:43 +0000143 andi. r11,r11,MSR_PR; \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000144 mfspr r11,SPRN_SPRG_THREAD; /* if from user, start at top of */\
Christophe Leroy8c1fc5a2019-01-31 10:08:54 +0000145 lwz r11, TASK_STACK - THREAD(r11); /* this thread's kernel stack */\
Kumar Gala369e7572008-04-30 04:17:22 -0500146 addi r11,r11,EXC_LVL_FRAME_OVERHEAD; /* allocate stack frame */\
147 beq 1f; \
148 /* COMING FROM USER MODE */ \
149 stw r9,_CCR(r11); /* save CR */\
150 lwz r10,GPR10(r8); /* copy regs from exception stack */\
151 lwz r9,GPR9(r8); \
152 stw r10,GPR10(r11); \
153 lwz r10,GPR11(r8); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600154 stw r9,GPR9(r11); \
Kumar Gala369e7572008-04-30 04:17:22 -0500155 stw r10,GPR11(r11); \
156 b 2f; \
157 /* COMING FROM PRIV MODE */ \
Christophe Leroyed1cd6d2019-01-31 10:08:58 +00001581: mr r11, r8; \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +00001592: mfspr r8,SPRN_SPRG_RSCRATCH_##exc_level; \
Kumar Gala369e7572008-04-30 04:17:22 -0500160 stw r12,GPR12(r11); /* save various registers */\
Becky Bruce63dafe52006-01-14 16:57:39 -0600161 mflr r10; \
162 stw r10,_LINK(r11); \
163 mfspr r12,SPRN_DEAR; /* save DEAR and ESR in the frame */\
164 stw r12,_DEAR(r11); /* since they may have had stuff */\
165 mfspr r9,SPRN_ESR; /* in them at the point where the */\
166 stw r9,_ESR(r11); /* exception was taken */\
167 mfspr r12,exc_level_srr0; \
168 stw r1,GPR1(r11); \
169 mfspr r9,exc_level_srr1; \
170 stw r1,0(r11); \
171 mr r1,r11; \
172 rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\
173 stw r0,GPR0(r11); \
174 SAVE_4GPRS(3, r11); \
175 SAVE_2GPRS(7, r11)
176
Scott Woodcfac5782011-12-20 15:34:40 +0000177#define CRITICAL_EXCEPTION_PROLOG(intno) \
178 EXC_LEVEL_EXCEPTION_PROLOG(CRIT, intno, SPRN_CSRR0, SPRN_CSRR1)
Becky Bruce63dafe52006-01-14 16:57:39 -0600179#define DEBUG_EXCEPTION_PROLOG \
Scott Woodcfac5782011-12-20 15:34:40 +0000180 EXC_LEVEL_EXCEPTION_PROLOG(DBG, DEBUG, SPRN_DSRR0, SPRN_DSRR1)
Becky Bruce63dafe52006-01-14 16:57:39 -0600181#define MCHECK_EXCEPTION_PROLOG \
Scott Woodcfac5782011-12-20 15:34:40 +0000182 EXC_LEVEL_EXCEPTION_PROLOG(MC, MACHINE_CHECK, \
183 SPRN_MCSRR0, SPRN_MCSRR1)
Becky Bruce63dafe52006-01-14 16:57:39 -0600184
185/*
Scott Woodd30f6e42011-12-20 15:34:43 +0000186 * Guest Doorbell -- this is a bit odd in that uses GSRR0/1 despite
187 * being delivered to the host. This exception can only happen
188 * inside a KVM guest -- so we just handle up to the DO_KVM rather
189 * than try to fit this into one of the existing prolog macros.
190 */
191#define GUEST_DOORBELL_EXCEPTION \
192 START_EXCEPTION(GuestDoorbell); \
193 mtspr SPRN_SPRG_WSCRATCH0, r10; /* save one register */ \
194 mfspr r10, SPRN_SPRG_THREAD; \
195 stw r11, THREAD_NORMSAVE(0)(r10); \
196 mfspr r11, SPRN_SRR1; \
197 stw r13, THREAD_NORMSAVE(2)(r10); \
198 mfcr r13; /* save CR in r13 for now */\
199 DO_KVM BOOKE_INTERRUPT_GUEST_DBELL SPRN_GSRR1; \
200 trap
201
202/*
Becky Bruce63dafe52006-01-14 16:57:39 -0600203 * Exception vectors.
204 */
205#define START_EXCEPTION(label) \
206 .align 5; \
207label:
208
Scott Woodcfac5782011-12-20 15:34:40 +0000209#define EXCEPTION(n, intno, label, hdlr, xfer) \
Becky Bruce63dafe52006-01-14 16:57:39 -0600210 START_EXCEPTION(label); \
Scott Woodcfac5782011-12-20 15:34:40 +0000211 NORMAL_EXCEPTION_PROLOG(intno); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600212 addi r3,r1,STACK_FRAME_OVERHEAD; \
213 xfer(n, hdlr)
214
Scott Woodcfac5782011-12-20 15:34:40 +0000215#define CRITICAL_EXCEPTION(n, intno, label, hdlr) \
216 START_EXCEPTION(label); \
217 CRITICAL_EXCEPTION_PROLOG(intno); \
218 addi r3,r1,STACK_FRAME_OVERHEAD; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600219 EXC_XFER_TEMPLATE(hdlr, n+2, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
220 NOCOPY, crit_transfer_to_handler, \
221 ret_from_crit_exc)
222
223#define MCHECK_EXCEPTION(n, label, hdlr) \
224 START_EXCEPTION(label); \
225 MCHECK_EXCEPTION_PROLOG; \
226 mfspr r5,SPRN_ESR; \
227 stw r5,_ESR(r11); \
228 addi r3,r1,STACK_FRAME_OVERHEAD; \
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100229 EXC_XFER_TEMPLATE(hdlr, n+4, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
Becky Bruce63dafe52006-01-14 16:57:39 -0600230 NOCOPY, mcheck_transfer_to_handler, \
231 ret_from_mcheck_exc)
232
233#define EXC_XFER_TEMPLATE(hdlr, trap, msr, copyee, tfer, ret) \
234 li r10,trap; \
235 stw r10,_TRAP(r11); \
236 lis r10,msr@h; \
237 ori r10,r10,msr@l; \
238 copyee(r10, r9); \
239 bl tfer; \
240 .long hdlr; \
241 .long ret
242
243#define COPY_EE(d, s) rlwimi d,s,0,16,16
244#define NOCOPY(d, s)
245
246#define EXC_XFER_STD(n, hdlr) \
247 EXC_XFER_TEMPLATE(hdlr, n, MSR_KERNEL, NOCOPY, transfer_to_handler_full, \
248 ret_from_except_full)
249
250#define EXC_XFER_LITE(n, hdlr) \
251 EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, NOCOPY, transfer_to_handler, \
252 ret_from_except)
253
254#define EXC_XFER_EE(n, hdlr) \
255 EXC_XFER_TEMPLATE(hdlr, n, MSR_KERNEL, COPY_EE, transfer_to_handler_full, \
256 ret_from_except_full)
257
258#define EXC_XFER_EE_LITE(n, hdlr) \
259 EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, COPY_EE, transfer_to_handler, \
260 ret_from_except)
261
262/* Check for a single step debug exception while in an exception
263 * handler before state has been saved. This is to catch the case
264 * where an instruction that we are trying to single step causes
265 * an exception (eg ITLB/DTLB miss) and thus the first instruction of
266 * the exception handler generates a single step debug exception.
267 *
268 * If we get a debug trap on the first instruction of an exception handler,
269 * we reset the MSR_DE in the _exception handler's_ MSR (the debug trap is
270 * a critical exception, so we are using SPRN_CSRR1 to manipulate the MSR).
271 * The exception handler was handling a non-critical interrupt, so it will
272 * save (and later restore) the MSR via SPRN_CSRR1, which will still have
273 * the MSR_DE bit set.
274 */
Kumar Galaeb0cd5fd2008-04-09 06:06:11 -0500275#define DEBUG_DEBUG_EXCEPTION \
276 START_EXCEPTION(DebugDebug); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600277 DEBUG_EXCEPTION_PROLOG; \
278 \
279 /* \
280 * If there is a single step or branch-taken exception in an \
281 * exception entry sequence, it was probably meant to apply to \
282 * the code where the exception occurred (since exception entry \
283 * doesn't turn off DE automatically). We simulate the effect \
284 * of turning off DE on entry to an exception handler by turning \
Kumar Galafec6a822008-06-11 13:07:26 -0500285 * off DE in the DSRR1 value and clearing the debug status. \
Becky Bruce63dafe52006-01-14 16:57:39 -0600286 */ \
287 mfspr r10,SPRN_DBSR; /* check single-step/branch taken */ \
Roland McGrathec097c82009-05-28 21:26:38 +0000288 andis. r10,r10,(DBSR_IC|DBSR_BT)@h; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600289 beq+ 2f; \
290 \
Bharat Bhushanfc2a6cfe2013-04-29 22:18:11 +0000291 lis r10,interrupt_base@h; /* check if exception in vectors */ \
292 ori r10,r10,interrupt_base@l; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600293 cmplw r12,r10; \
294 blt+ 2f; /* addr below exception vectors */ \
295 \
Bharat Bhushanfc2a6cfe2013-04-29 22:18:11 +0000296 lis r10,interrupt_end@h; \
297 ori r10,r10,interrupt_end@l; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600298 cmplw r12,r10; \
299 bgt+ 2f; /* addr above exception vectors */ \
300 \
301 /* here it looks like we got an inappropriate debug exception. */ \
3021: rlwinm r9,r9,0,~MSR_DE; /* clear DE in the CDRR1 value */ \
Roland McGrathec097c82009-05-28 21:26:38 +0000303 lis r10,(DBSR_IC|DBSR_BT)@h; /* clear the IC event */ \
Becky Bruce63dafe52006-01-14 16:57:39 -0600304 mtspr SPRN_DBSR,r10; \
305 /* restore state and get out */ \
306 lwz r10,_CCR(r11); \
307 lwz r0,GPR0(r11); \
308 lwz r1,GPR1(r11); \
309 mtcrf 0x80,r10; \
310 mtspr SPRN_DSRR0,r12; \
311 mtspr SPRN_DSRR1,r9; \
312 lwz r9,GPR9(r11); \
313 lwz r12,GPR12(r11); \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000314 mtspr SPRN_SPRG_WSCRATCH_DBG,r8; \
315 BOOKE_LOAD_EXC_LEVEL_STACK(DBG); /* r8 points to the debug stack */ \
Kumar Gala369e7572008-04-30 04:17:22 -0500316 lwz r10,GPR10(r8); \
317 lwz r11,GPR11(r8); \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000318 mfspr r8,SPRN_SPRG_RSCRATCH_DBG; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600319 \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000320 PPC_RFDI; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600321 b .; \
322 \
Kumar Galafec6a822008-06-11 13:07:26 -0500323 /* continue normal handling for a debug exception... */ \
Becky Bruce63dafe52006-01-14 16:57:39 -06003242: mfspr r4,SPRN_DBSR; \
325 addi r3,r1,STACK_FRAME_OVERHEAD; \
Kumar Gala663276b2008-04-30 20:44:53 +1000326 EXC_XFER_TEMPLATE(DebugException, 0x2008, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), NOCOPY, debug_transfer_to_handler, ret_from_debug_exc)
Kumar Galaeb0cd5fd2008-04-09 06:06:11 -0500327
328#define DEBUG_CRIT_EXCEPTION \
329 START_EXCEPTION(DebugCrit); \
Scott Woodcfac5782011-12-20 15:34:40 +0000330 CRITICAL_EXCEPTION_PROLOG(DEBUG); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600331 \
332 /* \
333 * If there is a single step or branch-taken exception in an \
334 * exception entry sequence, it was probably meant to apply to \
335 * the code where the exception occurred (since exception entry \
336 * doesn't turn off DE automatically). We simulate the effect \
337 * of turning off DE on entry to an exception handler by turning \
338 * off DE in the CSRR1 value and clearing the debug status. \
339 */ \
340 mfspr r10,SPRN_DBSR; /* check single-step/branch taken */ \
Roland McGrathec097c82009-05-28 21:26:38 +0000341 andis. r10,r10,(DBSR_IC|DBSR_BT)@h; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600342 beq+ 2f; \
343 \
Bharat Bhushanfc2a6cfe2013-04-29 22:18:11 +0000344 lis r10,interrupt_base@h; /* check if exception in vectors */ \
345 ori r10,r10,interrupt_base@l; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600346 cmplw r12,r10; \
347 blt+ 2f; /* addr below exception vectors */ \
348 \
Bharat Bhushanfc2a6cfe2013-04-29 22:18:11 +0000349 lis r10,interrupt_end@h; \
350 ori r10,r10,interrupt_end@l; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600351 cmplw r12,r10; \
352 bgt+ 2f; /* addr above exception vectors */ \
353 \
354 /* here it looks like we got an inappropriate debug exception. */ \
3551: rlwinm r9,r9,0,~MSR_DE; /* clear DE in the CSRR1 value */ \
Roland McGrathec097c82009-05-28 21:26:38 +0000356 lis r10,(DBSR_IC|DBSR_BT)@h; /* clear the IC event */ \
Becky Bruce63dafe52006-01-14 16:57:39 -0600357 mtspr SPRN_DBSR,r10; \
358 /* restore state and get out */ \
359 lwz r10,_CCR(r11); \
360 lwz r0,GPR0(r11); \
361 lwz r1,GPR1(r11); \
362 mtcrf 0x80,r10; \
363 mtspr SPRN_CSRR0,r12; \
364 mtspr SPRN_CSRR1,r9; \
365 lwz r9,GPR9(r11); \
366 lwz r12,GPR12(r11); \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000367 mtspr SPRN_SPRG_WSCRATCH_CRIT,r8; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600368 BOOKE_LOAD_EXC_LEVEL_STACK(CRIT); /* r8 points to the debug stack */ \
Kumar Gala369e7572008-04-30 04:17:22 -0500369 lwz r10,GPR10(r8); \
370 lwz r11,GPR11(r8); \
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000371 mfspr r8,SPRN_SPRG_RSCRATCH_CRIT; \
Becky Bruce63dafe52006-01-14 16:57:39 -0600372 \
373 rfci; \
374 b .; \
375 \
376 /* continue normal handling for a critical exception... */ \
3772: mfspr r4,SPRN_DBSR; \
378 addi r3,r1,STACK_FRAME_OVERHEAD; \
379 EXC_XFER_TEMPLATE(DebugException, 0x2002, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), NOCOPY, crit_transfer_to_handler, ret_from_crit_exc)
Becky Bruce63dafe52006-01-14 16:57:39 -0600380
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000381#define DATA_STORAGE_EXCEPTION \
382 START_EXCEPTION(DataStorage) \
Scott Woodcfac5782011-12-20 15:34:40 +0000383 NORMAL_EXCEPTION_PROLOG(DATA_STORAGE); \
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000384 mfspr r5,SPRN_ESR; /* Grab the ESR and save it */ \
385 stw r5,_ESR(r11); \
386 mfspr r4,SPRN_DEAR; /* Grab the DEAR */ \
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +1100387 EXC_XFER_LITE(0x0300, handle_page_fault)
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000388
Becky Bruce63dafe52006-01-14 16:57:39 -0600389#define INSTRUCTION_STORAGE_EXCEPTION \
390 START_EXCEPTION(InstructionStorage) \
Scott Woodcfac5782011-12-20 15:34:40 +0000391 NORMAL_EXCEPTION_PROLOG(INST_STORAGE); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600392 mfspr r5,SPRN_ESR; /* Grab the ESR and save it */ \
393 stw r5,_ESR(r11); \
394 mr r4,r12; /* Pass SRR0 as arg2 */ \
395 li r5,0; /* Pass zero as arg3 */ \
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +1100396 EXC_XFER_LITE(0x0400, handle_page_fault)
Becky Bruce63dafe52006-01-14 16:57:39 -0600397
398#define ALIGNMENT_EXCEPTION \
399 START_EXCEPTION(Alignment) \
Scott Woodcfac5782011-12-20 15:34:40 +0000400 NORMAL_EXCEPTION_PROLOG(ALIGNMENT); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600401 mfspr r4,SPRN_DEAR; /* Grab the DEAR and save it */ \
402 stw r4,_DEAR(r11); \
403 addi r3,r1,STACK_FRAME_OVERHEAD; \
404 EXC_XFER_EE(0x0600, alignment_exception)
405
406#define PROGRAM_EXCEPTION \
407 START_EXCEPTION(Program) \
Scott Woodcfac5782011-12-20 15:34:40 +0000408 NORMAL_EXCEPTION_PROLOG(PROGRAM); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600409 mfspr r4,SPRN_ESR; /* Grab the ESR and save it */ \
410 stw r4,_ESR(r11); \
411 addi r3,r1,STACK_FRAME_OVERHEAD; \
412 EXC_XFER_STD(0x0700, program_check_exception)
413
414#define DECREMENTER_EXCEPTION \
415 START_EXCEPTION(Decrementer) \
Scott Woodcfac5782011-12-20 15:34:40 +0000416 NORMAL_EXCEPTION_PROLOG(DECREMENTER); \
Becky Bruce63dafe52006-01-14 16:57:39 -0600417 lis r0,TSR_DIS@h; /* Setup the DEC interrupt mask */ \
418 mtspr SPRN_TSR,r0; /* Clear the DEC interrupt */ \
419 addi r3,r1,STACK_FRAME_OVERHEAD; \
420 EXC_XFER_LITE(0x0900, timer_interrupt)
421
422#define FP_UNAVAILABLE_EXCEPTION \
423 START_EXCEPTION(FloatingPointUnavailable) \
Scott Woodcfac5782011-12-20 15:34:40 +0000424 NORMAL_EXCEPTION_PROLOG(FP_UNAVAIL); \
Michael Neuling6f3d8e62008-06-25 14:07:18 +1000425 beq 1f; \
426 bl load_up_fpu; /* if from user, just load it up */ \
427 b fast_exception_return; \
4281: addi r3,r1,STACK_FRAME_OVERHEAD; \
Becky Bruce66f2d022006-01-31 17:52:59 -0600429 EXC_XFER_EE_LITE(0x800, kernel_fp_unavailable_exception)
Becky Bruce63dafe52006-01-14 16:57:39 -0600430
Kumar Galafca622c2008-04-30 05:23:21 -0500431#ifndef __ASSEMBLY__
432struct exception_regs {
433 unsigned long mas0;
434 unsigned long mas1;
435 unsigned long mas2;
436 unsigned long mas3;
437 unsigned long mas6;
438 unsigned long mas7;
439 unsigned long srr0;
440 unsigned long srr1;
441 unsigned long csrr0;
442 unsigned long csrr1;
443 unsigned long dsrr0;
444 unsigned long dsrr1;
445 unsigned long saved_ksp_limit;
446};
447
448/* ensure this structure is always sized to a multiple of the stack alignment */
449#define STACK_EXC_LVL_FRAME_SIZE _ALIGN_UP(sizeof (struct exception_regs), 16)
450
451#endif /* __ASSEMBLY__ */
Becky Bruce63dafe52006-01-14 16:57:39 -0600452#endif /* __HEAD_BOOKE_H__ */