1 #ifndef _ASM_POWERPC_EXCEPTION_H
2 #define _ASM_POWERPC_EXCEPTION_H
4 * Extracted from head_64.S
7 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
9 * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
10 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
11 * Adapted for Power Macintosh by Paul Mackerras.
12 * Low-level exception handlers and MMU support
13 * rewritten by Paul Mackerras.
14 * Copyright (C) 1996 Paul Mackerras.
16 * Adapted for 64bit PowerPC by Dave Engebretsen, Peter Bergner, and
17 * Mike Corrigan {engebret|bergner|mikejc}@us.ibm.com
19 * This file contains the low-level support and setup for the
20 * PowerPC-64 platform, including trap and interrupt dispatch.
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License
24 * as published by the Free Software Foundation; either version
25 * 2 of the License, or (at your option) any later version.
28 * The following macros define the code that appears as
29 * the prologue to each of the exception handlers. They
30 * are split into two parts to allow a single kernel binary
31 * to be used for pSeries and iSeries.
33 * We make as much of the exception code common between native
34 * exception handlers (including pSeries LPAR) and iSeries LPAR
35 * implementations as possible.
51 * We're short on space and time in the exception prolog, so we can't
52 * use the normal SET_REG_IMMEDIATE macro. Normally we just need the
53 * low halfword of the address, but for Kdump we need the whole low
56 #define LOAD_HANDLER(reg, label) \
57 addi reg,reg,(label)-_stext; /* virt addr of handler ... */
59 #define EXCEPTION_PROLOG_1(area) \
60 mfspr r13,SPRN_SPRG_PACA; /* get paca address into r13 */ \
61 std r9,area+EX_R9(r13); /* save r9 - r12 */ \
62 std r10,area+EX_R10(r13); \
63 std r11,area+EX_R11(r13); \
64 std r12,area+EX_R12(r13); \
65 mfspr r9,SPRN_SPRG_SCRATCH0; \
66 std r9,area+EX_R13(r13); \
69 #define EXCEPTION_PROLOG_PSERIES_1(label) \
70 ld r12,PACAKBASE(r13); /* get high part of &label */ \
71 ld r10,PACAKMSR(r13); /* get MSR value for kernel */ \
72 mfspr r11,SPRN_SRR0; /* save SRR0 */ \
73 LOAD_HANDLER(r12,label) \
74 mtspr SPRN_SRR0,r12; \
75 mfspr r12,SPRN_SRR1; /* and SRR1 */ \
76 mtspr SPRN_SRR1,r10; \
78 b . /* prevent speculative execution */
80 #define EXCEPTION_PROLOG_PSERIES(area, label) \
81 EXCEPTION_PROLOG_1(area); \
82 EXCEPTION_PROLOG_PSERIES_1(label);
85 * The common exception prolog is used for all except a few exceptions
86 * such as a segment miss on a kernel address. We have to be prepared
87 * to take another exception from the point where we first touch the
88 * kernel stack onwards.
90 * On entry r13 points to the paca, r9-r13 are saved in the paca,
91 * r9 contains the saved CR, r11 and r12 contain the saved SRR0 and
92 * SRR1, and relocation is on.
94 #define EXCEPTION_PROLOG_COMMON(n, area) \
95 andi. r10,r12,MSR_PR; /* See if coming from user */ \
96 mr r10,r1; /* Save r1 */ \
97 subi r1,r1,INT_FRAME_SIZE; /* alloc frame on kernel stack */ \
99 ld r1,PACAKSAVE(r13); /* kernel stack to use */ \
100 1: cmpdi cr1,r1,0; /* check if r1 is in userspace */ \
101 bge- cr1,2f; /* abort if it is */ \
103 2: li r1,(n); /* will be reloaded later */ \
104 sth r1,PACA_TRAP_SAVE(r13); \
106 3: std r9,_CCR(r1); /* save CR in stackframe */ \
107 std r11,_NIP(r1); /* save SRR0 in stackframe */ \
108 std r12,_MSR(r1); /* save SRR1 in stackframe */ \
109 std r10,0(r1); /* make stack chain pointer */ \
110 std r0,GPR0(r1); /* save r0 in stackframe */ \
111 std r10,GPR1(r1); /* save r1 in stackframe */ \
112 ACCOUNT_CPU_USER_ENTRY(r9, r10); \
113 std r2,GPR2(r1); /* save r2 in stackframe */ \
114 SAVE_4GPRS(3, r1); /* save r3 - r6 in stackframe */ \
115 SAVE_2GPRS(7, r1); /* save r7, r8 in stackframe */ \
116 ld r9,area+EX_R9(r13); /* move r9, r10 to stackframe */ \
117 ld r10,area+EX_R10(r13); \
120 ld r9,area+EX_R11(r13); /* move r11 - r13 to stackframe */ \
121 ld r10,area+EX_R12(r13); \
122 ld r11,area+EX_R13(r13); \
126 ld r2,PACATOC(r13); /* get kernel TOC into r2 */ \
127 mflr r9; /* save LR in stackframe */ \
129 mfctr r10; /* save CTR in stackframe */ \
131 lbz r10,PACASOFTIRQEN(r13); \
132 mfspr r11,SPRN_XER; /* save XER in stackframe */ \
136 std r9,_TRAP(r1); /* set trap number */ \
138 ld r11,exception_marker@toc(r2); \
139 std r10,RESULT(r1); /* clear regs->result */ \
140 std r11,STACK_FRAME_OVERHEAD-16(r1); /* mark the frame */
145 #define STD_EXCEPTION_PSERIES(n, label) \
147 .globl label##_pSeries; \
150 mtspr SPRN_SPRG_SCRATCH0,r13; /* save r13 */ \
151 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, label##_common)
153 #define HSTD_EXCEPTION_PSERIES(n, label) \
155 .globl label##_pSeries; \
158 mtspr SPRN_SPRG_SCRATCH0,r20; /* save r20 */ \
159 mfspr r20,SPRN_HSRR0; /* copy HSRR0 to SRR0 */ \
160 mtspr SPRN_SRR0,r20; \
161 mfspr r20,SPRN_HSRR1; /* copy HSRR0 to SRR0 */ \
162 mtspr SPRN_SRR1,r20; \
163 mfspr r20,SPRN_SPRG_SCRATCH0; /* restore r20 */ \
164 mtspr SPRN_SPRG_SCRATCH0,r13; /* save r13 */ \
165 EXCEPTION_PROLOG_PSERIES(PACA_EXGEN, label##_common)
168 #define MASKABLE_EXCEPTION_PSERIES(n, label) \
170 .globl label##_pSeries; \
173 mtspr SPRN_SPRG_SCRATCH0,r13; /* save r13 */ \
174 mfspr r13,SPRN_SPRG_PACA; /* get paca address into r13 */ \
175 std r9,PACA_EXGEN+EX_R9(r13); /* save r9, r10 */ \
176 std r10,PACA_EXGEN+EX_R10(r13); \
177 lbz r10,PACASOFTIRQEN(r13); \
180 beq masked_interrupt; \
181 mfspr r10,SPRN_SPRG_SCRATCH0; \
182 std r10,PACA_EXGEN+EX_R13(r13); \
183 std r11,PACA_EXGEN+EX_R11(r13); \
184 std r12,PACA_EXGEN+EX_R12(r13); \
185 ld r12,PACAKBASE(r13); /* get high part of &label */ \
186 ld r10,PACAKMSR(r13); /* get MSR value for kernel */ \
187 mfspr r11,SPRN_SRR0; /* save SRR0 */ \
188 LOAD_HANDLER(r12,label##_common) \
189 mtspr SPRN_SRR0,r12; \
190 mfspr r12,SPRN_SRR1; /* and SRR1 */ \
191 mtspr SPRN_SRR1,r10; \
193 b . /* prevent speculative execution */
195 #ifdef CONFIG_PPC_ISERIES
196 #define DISABLE_INTS \
198 stb r11,PACASOFTIRQEN(r13); \
199 BEGIN_FW_FTR_SECTION; \
200 stb r11,PACAHARDIRQEN(r13); \
201 END_FW_FTR_SECTION_IFCLR(FW_FEATURE_ISERIES); \
202 TRACE_DISABLE_INTS; \
203 BEGIN_FW_FTR_SECTION; \
205 ori r10,r10,MSR_EE; \
207 END_FW_FTR_SECTION_IFSET(FW_FEATURE_ISERIES)
209 #define DISABLE_INTS \
211 stb r11,PACASOFTIRQEN(r13); \
212 stb r11,PACAHARDIRQEN(r13); \
214 #endif /* CONFIG_PPC_ISERIES */
216 #define ENABLE_INTS \
219 rlwimi r11,r12,0,MSR_EE; \
222 #define STD_EXCEPTION_COMMON(trap, label, hdlr) \
224 .globl label##_common; \
226 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
229 addi r3,r1,STACK_FRAME_OVERHEAD; \
234 * Like STD_EXCEPTION_COMMON, but for exceptions that can occur
235 * in the idle task and therefore need the special idle handling.
237 #define STD_EXCEPTION_COMMON_IDLE(trap, label, hdlr) \
239 .globl label##_common; \
241 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
245 addi r3,r1,STACK_FRAME_OVERHEAD; \
249 #define STD_EXCEPTION_COMMON_LITE(trap, label, hdlr) \
251 .globl label##_common; \
253 EXCEPTION_PROLOG_COMMON(trap, PACA_EXGEN); \
257 bl .ppc64_runlatch_on; \
258 END_FTR_SECTION_IFSET(CPU_FTR_CTRL) \
259 addi r3,r1,STACK_FRAME_OVERHEAD; \
261 b .ret_from_except_lite
264 * When the idle code in power4_idle puts the CPU into NAP mode,
265 * it has to do so in a loop, and relies on the external interrupt
266 * and decrementer interrupt entry code to get it out of the loop.
267 * It sets the _TLF_NAPPING bit in current_thread_info()->local_flags
268 * to signal that it is in the loop and needs help to get out.
270 #ifdef CONFIG_PPC_970_NAP
273 clrrdi r11,r1,THREAD_SHIFT; \
274 ld r9,TI_LOCAL_FLAGS(r11); \
275 andi. r10,r9,_TLF_NAPPING; \
276 bnel power4_fixup_nap; \
277 END_FTR_SECTION_IFSET(CPU_FTR_CAN_NAP)
282 #endif /* _ASM_POWERPC_EXCEPTION_H */