1 /****************************************************************************
2 * Copyright (c) 2006 by Michael Fischer. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the author nor the names of its contributors may
14 * be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21 * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
24 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 ****************************************************************************
34 * 18.12.06 mifi First Version
35 * The hardware initialization is based on the startup file
36 * crtat91sam7x256_rom.S from NutOS 4.2.1.
37 * Therefore partial copyright by egnite Software GmbH.
38 ****************************************************************************/
41 * Some defines for the program status registers
43 ARM_MODE_USER
= 0x10 /* Normal User Mode */
44 ARM_MODE_FIQ
= 0x11 /* FIQ Fast Interrupts Mode */
45 ARM_MODE_IRQ
= 0x12 /* IRQ Standard Interrupts Mode */
46 ARM_MODE_SVC
= 0x13 /* Supervisor Interrupts Mode */
47 ARM_MODE_ABORT
= 0x17 /* Abort Processing memory Faults Mode */
48 ARM_MODE_UNDEF
= 0x1B /* Undefined Instructions Mode */
49 ARM_MODE_SYS
= 0x1F /* System Running in Priviledged Operating Mode */
52 I_BIT
= 0x80 /* disable IRQ when I bit is set */
53 F_BIT
= 0x40 /* disable IRQ when I bit is set */
56 * Register Base Address
64 RSTC_URSTEN
= 0x00000001
67 WDT_MR_OFF
= 0x00000004
68 WDT_WDDIS
= 0x00008000
71 MC_FMR_OFF
= 0x00000060
72 MC_FWS_1FWS
= 0x00480100
74 .section .vectors,"ax"
77 /****************************************************************************/
78 /* Vector table and reset entry */
79 /****************************************************************************/
81 ldr pc
, ResetAddr
/* Reset */
82 ldr pc
, UndefAddr
/* Undefined instruction */
83 ldr pc
, SWIAddr
/* Software interrupt */
84 ldr pc
, PAbortAddr
/* Prefetch abort */
85 ldr pc
, DAbortAddr
/* Data abort */
86 ldr pc
, ReservedAddr
/* Reserved */
87 ldr pc
, IRQAddr
/* IRQ interrupt */
88 ldr pc
, FIQAddr
/* FIQ interrupt */
91 ResetAddr
: .word ResetHandler
92 UndefAddr
: .word UndefHandler
93 SWIAddr
: .word SWIHandler
94 PAbortAddr
: .word PAbortHandler
95 DAbortAddr
: .word DAbortHandler
97 IRQAddr
: .word IRQHandler
98 FIQAddr
: .word FIQHandler
108 /****************************************************************************/
110 /****************************************************************************/
113 * The watchdog is enabled after processor reset. Disable it.
117 str
r0, [r1, #WDT_MR_OFF]
121 * Enable user reset: assertion length programmed to 1ms
123 ldr
r0, =(RSTC_KEY | RSTC_URSTEN |
(4 << 8))
129 * Use 2 cycles for flash access.
133 str
r0, [r1, #MC_FMR_OFF]
137 * Disable all interrupts. Useful for debugging w/o target reset.
141 str
r0, [r1, #AIC_EOICR_OFF]
142 str
r0, [r1, #AIC_IDCR_OFF]
146 * Setup a stack for each mode
148 msr CPSR_c
, #ARM_MODE_UNDEF | I_BIT | F_BIT /* Undefined Instruction Mode */
149 ldr sp
, =__stack_und_end
151 msr CPSR_c
, #ARM_MODE_ABORT | I_BIT | F_BIT /* Abort Mode */
152 ldr sp
, =__stack_abt_end
154 msr CPSR_c
, #ARM_MODE_FIQ | I_BIT | F_BIT /* FIQ Mode */
155 ldr sp
, =__stack_fiq_end
157 msr CPSR_c
, #ARM_MODE_IRQ | I_BIT | F_BIT /* IRQ Mode */
158 ldr sp
, =__stack_irq_end
160 msr CPSR_c
, #ARM_MODE_SVC | I_BIT | F_BIT /* Supervisor Mode */
161 ldr sp
, =__stack_svc_end
180 bic
r0, r0, #I_BIT | F_BIT /* Enable FIQ and IRQ interrupt */
183 mov
r0, #0 /* No arguments */
184 mov
r1, #0 /* No arguments */
187 bx
r2 /* And jump... */
196 /****************************************************************************/
197 /* Default interrupt handler */
198 /****************************************************************************/
219 .weak UndefHandler, PAbortHandler, DAbortHandler
220 .weak IRQHandler, FIQHandler