exception.S revision 1.15.10.1 1 /* $NetBSD: exception.S,v 1.15.10.1 2008/05/16 02:21:56 yamt Exp $ */
2
3 /*
4 * Copyright (c) 1994-1997 Mark Brinicombe.
5 * Copyright (c) 1994 Brini.
6 * All rights reserved.
7 *
8 * This code is derived from software written for Brini by Mark Brinicombe
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by Brini.
21 * 4. The name of the company nor the name of the author may be used to
22 * endorse or promote products derived from this software without specific
23 * prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
29 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * RiscBSD kernel project
38 *
39 * exception.S
40 *
41 * Low level handlers for exception vectors
42 *
43 * Created : 24/09/94
44 *
45 * Based on kate/display/abort.s
46 */
47
48 #include "assym.h"
49 #include <machine/asm.h>
50 #include <machine/cpu.h>
51 #include <machine/frame.h>
52
53 RCSID("$NetBSD: exception.S,v 1.15.10.1 2008/05/16 02:21:56 yamt Exp $")
54
55 .text
56 .align 0
57
58 AST_ALIGNMENT_FAULT_LOCALS
59
60 /*
61 * reset_entry:
62 *
63 * Handler for Reset exception.
64 */
65 ASENTRY_NP(reset_entry)
66 adr r0, Lreset_panicmsg
67 mov r1, lr
68 bl _C_LABEL(panic)
69 /* NOTREACHED */
70 Lreset_panicmsg:
71 .asciz "Reset vector called, LR = 0x%08x"
72 .balign 4
73
74 /*
75 * swi_entry
76 *
77 * Handler for the Software Interrupt exception.
78 */
79 ASENTRY_NP(swi_entry)
80 PUSHFRAME
81 ENABLE_ALIGNMENT_FAULTS
82
83 mov r0, sp /* Pass the frame to any function */
84 bl _C_LABEL(swi_handler) /* It's a SWI ! */
85
86 DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
87 PULLFRAME
88 movs pc, lr /* Exit */
89
90 /*
91 * prefetch_abort_entry:
92 *
93 * Handler for the Prefetch Abort exception.
94 */
95 ASENTRY_NP(prefetch_abort_entry)
96 #ifdef __XSCALE__
97 nop /* Make absolutely sure any pending */
98 nop /* imprecise aborts have occurred. */
99 #endif
100 sub lr, lr, #0x00000004 /* Adjust the lr */
101
102 PUSHFRAMEINSVC
103 ENABLE_ALIGNMENT_FAULTS
104
105 ldr r1, Lprefetch_abort_handler_address
106 adr lr, exception_exit
107 mov r0, sp /* pass the stack pointer as r0 */
108 ldr pc, [r1]
109
110 Lprefetch_abort_handler_address:
111 .word _C_LABEL(prefetch_abort_handler_address)
112
113 .data
114 .global _C_LABEL(prefetch_abort_handler_address)
115
116 _C_LABEL(prefetch_abort_handler_address):
117 .word abortprefetch
118
119 .text
120 abortprefetch:
121 adr r0, abortprefetchmsg
122 b _C_LABEL(panic)
123
124 abortprefetchmsg:
125 .asciz "abortprefetch"
126 .align 0
127
128 /*
129 * data_abort_entry:
130 *
131 * Handler for the Data Abort exception.
132 */
133 ASENTRY_NP(data_abort_entry)
134 #ifdef __XSCALE__
135 nop /* Make absolutely sure any pending */
136 nop /* imprecise aborts have occurred. */
137 #endif
138 sub lr, lr, #0x00000008 /* Adjust the lr */
139
140 PUSHFRAMEINSVC /* Push trap frame and switch */
141 /* to SVC32 mode */
142 ENABLE_ALIGNMENT_FAULTS
143
144 ldr r1, Ldata_abort_handler_address
145 adr lr, exception_exit
146 mov r0, sp /* pass the stack pointer as r0 */
147 ldr pc, [r1]
148
149 Ldata_abort_handler_address:
150 .word _C_LABEL(data_abort_handler_address)
151
152 .data
153 .global _C_LABEL(data_abort_handler_address)
154 _C_LABEL(data_abort_handler_address):
155 .word abortdata
156
157 .text
158 abortdata:
159 adr r0, abortdatamsg
160 b _C_LABEL(panic)
161
162 abortdatamsg:
163 .asciz "abortdata"
164 .align 0
165
166 /*
167 * address_exception_entry:
168 *
169 * Handler for the Address Exception exception.
170 *
171 * NOTE: This exception isn't really used on arm32. We
172 * print a warning message to the console and then treat
173 * it like a Data Abort.
174 */
175 ASENTRY_NP(address_exception_entry)
176 mrs r1, cpsr_all
177 mrs r2, spsr_all
178 mov r3, lr
179 adr r0, Laddress_exception_msg
180 bl _C_LABEL(printf) /* XXX CLOBBERS LR!! */
181 b data_abort_entry
182 Laddress_exception_msg:
183 .asciz "Address Exception CPSR=0x%08x SPSR=0x%08x LR=0x%08x\n"
184 .balign 4
185
186 /*
187 * General exception exit handler
188 * (Placed here to be within range of all the references to it)
189 *
190 * It exits straight away if not returning to USR mode.
191 * This loops around delivering any pending ASTs.
192 * Interrupts are disabled at suitable points to avoid ASTs
193 * being posted between testing and exit to user mode.
194 *
195 * This function uses PULLFRAMEFROMSVCANDEXIT and
196 * DO_AST_AND_RESTORE_ALIGNMENT_FAULTS thus should
197 * only be called if the exception handler used PUSHFRAMEINSVC
198 * followed by ENABLE_ALIGNMENT_FAULTS.
199 */
200
201 exception_exit:
202 DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
203 PULLFRAMEFROMSVCANDEXIT
204
205 /*
206 * undefined_entry:
207 *
208 * Handler for the Undefined Instruction exception.
209 *
210 * We indirect the undefined vector via the handler address
211 * in the data area. Entry to the undefined handler must
212 * look like direct entry from the vector.
213 */
214 ASENTRY_NP(undefined_entry)
215 stmfd sp!, {r0, r1}
216 ldr r0, Lundefined_handler_indirection
217 ldr r1, [sp], #0x0004
218 str r1, [r0, #0x0000]
219 ldr r1, [sp], #0x0004
220 str r1, [r0, #0x0004]
221 ldmia r0, {r0, r1, pc}
222
223 Lundefined_handler_indirection:
224 .word Lundefined_handler_indirection_data
225
226 /*
227 * assembly bounce code for calling the kernel
228 * undefined instruction handler. This uses
229 * a standard trap frame and is called in SVC mode.
230 */
231
232 ENTRY_NP(undefinedinstruction_bounce)
233 PUSHFRAMEINSVC
234 ENABLE_ALIGNMENT_FAULTS
235
236 mov r0, sp
237 adr lr, exception_exit
238 b _C_LABEL(undefinedinstruction)
239
240 .data
241 .align 0
242
243 /*
244 * Indirection data
245 * 2 words use for preserving r0 and r1
246 * 3rd word contains the undefined handler address.
247 */
248
249 Lundefined_handler_indirection_data:
250 .word 0
251 .word 0
252
253 .global _C_LABEL(undefined_handler_address)
254 _C_LABEL(undefined_handler_address):
255 .word _C_LABEL(undefinedinstruction_bounce)
256