Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / arm / arm32 / exception.S
blob1d358b315acedbe709b1c737c6f6dacfd010337d
1 /*      $NetBSD$        */
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  */
48 #include "assym.h"
49 #include <machine/asm.h>
50 #include <machine/cpu.h>
51 #include <machine/frame.h>
53         RCSID("$NetBSD$")
55         .text   
56         .align  0
58 AST_ALIGNMENT_FAULT_LOCALS
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
75  * swi_entry
76  *
77  *      Handler for the Software Interrupt exception.
78  */
79 ASENTRY_NP(swi_entry)
80         PUSHFRAME
81         ENABLE_ALIGNMENT_FAULTS
83         mov     r0, sp                  /* Pass the frame to any function */
84         bl      _C_LABEL(swi_handler)   /* It's a SWI ! */
86         DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
87         PULLFRAME
88         movs    pc, lr                  /* Exit */
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 */
102         PUSHFRAMEINSVC
103         ENABLE_ALIGNMENT_FAULTS
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]
110 Lprefetch_abort_handler_address:
111         .word   _C_LABEL(prefetch_abort_handler_address)
113         .data
114         .global _C_LABEL(prefetch_abort_handler_address)
116 _C_LABEL(prefetch_abort_handler_address):
117         .word   abortprefetch
119         .text
120 abortprefetch:
121         adr     r0, abortprefetchmsg
122         b       _C_LABEL(panic)
124 abortprefetchmsg:
125         .asciz  "abortprefetch"
126         .align  0
129  * data_abort_entry:
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 */
140         PUSHFRAMEINSVC                  /* Push trap frame and switch */
141                                         /* to SVC32 mode */
142         ENABLE_ALIGNMENT_FAULTS
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]
149 Ldata_abort_handler_address:
150         .word   _C_LABEL(data_abort_handler_address)
152         .data
153         .global _C_LABEL(data_abort_handler_address)
154 _C_LABEL(data_abort_handler_address):
155         .word   abortdata
157         .text
158 abortdata:
159         adr     r0, abortdatamsg
160         b       _C_LABEL(panic)
162 abortdatamsg:
163         .asciz  "abortdata"
164         .align  0
167  * address_exception_entry:
169  *      Handler for the Address Exception exception.
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
187  * General exception exit handler
188  * (Placed here to be within range of all the references to it)
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.
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  */
201 exception_exit:
202         DO_AST_AND_RESTORE_ALIGNMENT_FAULTS
203         PULLFRAMEFROMSVCANDEXIT
206  * undefined_entry:
208  *      Handler for the Undefined Instruction exception.
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}
223 Lundefined_handler_indirection:
224         .word   Lundefined_handler_indirection_data
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  */
232 ENTRY_NP(undefinedinstruction_bounce)
233         PUSHFRAMEINSVC
234         ENABLE_ALIGNMENT_FAULTS
236         mov     r0, sp
237         adr     lr, exception_exit
238         b       _C_LABEL(undefinedinstruction)
240         .data
241         .align  0
244  * Indirection data
245  * 2 words use for preserving r0 and r1
246  * 3rd word contains the undefined handler address.
247  */
249 Lundefined_handler_indirection_data:
250         .word   0
251         .word   0
253         .global _C_LABEL(undefined_handler_address)
254 _C_LABEL(undefined_handler_address):
255         .word   _C_LABEL(undefinedinstruction_bounce)