1
2
3
4
5
6
7
8#include <asm-offsets.h>
9#include <config.h>
10#include "version.h"
11#include <asm/cache.h>
12
13#ifndef CONFIG_IDENT_STRING
14#define CONFIG_IDENT_STRING ""
15#endif
16
17#define _START _start
18#define _FAULT _fault
19
20
21.macro SAVE_ALL
22 move.w
23 subl
24 moveml %d0-%d7/%a0-%a6,%sp@
25.endm
26
27.macro RESTORE_ALL
28 moveml %sp@,%d0-%d7/%a0-%a6;
29 addl
30 rte
31.endm
32
33
34
35
36
37
38.text
39
40
41
42
43_vectors:
44
45
46.long 0x00000000
47
48 (CONFIG_SYS_TEXT_BASE == CONFIG_SYS_INT_FLASH_BASE)
49.long _start - CONFIG_SYS_TEXT_BASE
50#else
51.long _START
52#endif
53
54.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
55.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
56.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
57.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
58.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
59.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
60.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
61.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
62
63.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
64.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
65.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
66.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
67.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
68.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
69.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
70.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
71
72.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
73.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
74.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
75.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
76.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
77.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
78.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
79.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
80
81.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
82.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
83.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
84.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
85.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
86.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
87.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
88.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
89
90#endif
91
92 .text
93 .globl _start
94_start:
95 nop
96 nop
97 move.w
98
99
100 move.l
101 move.c %d0, %MBAR
102
103 move.l
104 move.c %d0, %RAMBAR
105
106
107 move.l
108 movec %d0, %CACR
109 move.l
110 movec %d0, %ACR0
111 movec %d0, %ACR1
112
113
114
115
116
117
118 move.l
119 movec %d0, %VBR
120#endif
121
122
123 move.l
124 move.l
125 move.l
126 move.l %d0, (%a1)
127 move.l %d0, (%a2)
128
129
130
131
132
133
134 move.l
135 clr.l %sp@-
136
137
138 move.l
139
140
141 bsr cpu_init_f
142
143
144 bsr board_init_f
145
146
147
148
149
150
151
152
153
154
155
156
157 .globl relocate_code
158relocate_code:
159 link.w %a6,
160 move.l 8(%a6), %sp
161 move.l 12(%a6), %d0
162 move.l 16(%a6), %a0
163
164 move.l
165 move.l
166 move.l %a0, %a3
167
1681:
169 move.l (%a1)+, (%a3)+
170 cmp.l %a1,%a2
171 bgt.s 1b
172
173
174
175
176
177 move.l %a0, %a1
178 add.l
179 jmp (%a1)
180
181in_ram:
182
183clear_bss:
184
185
186
187 move.l %a0, %a1
188 add.l
189 move.l %a0, %d1
190 add.l
1916:
192 clr.l (%a1)+
193 cmp.l %a1,%d1
194 bgt.s 6b
195
196
197
198
199 move.l %a0, %a1
200 add.l
201
202 move.l %a1,%a5
203
204 move.l %a0, %a2
205 add.l
206
2077:
208 move.l (%a1),%d1
209 sub.l
210 add.l %a0,%d1
211 move.l %d1,(%a1)+
212 cmp.l %a2, %a1
213 bne 7b
214
215
216 move.l %a0, %a1
217 add.l
218
219
220 move.l %a0,-(%sp)
221 move.l %d0,-(%sp)
222
223 defined(CONFIG_SYS_HALT_BEFOR_RAM_JUMP)
224 halt
225#endif
226 jsr (%a1)
227
228
229
230 .globl _fault
231_fault:
232 bra _fault
233
234 .globl _exc_handler
235_exc_handler:
236 SAVE_ALL
237 movel %sp,%sp@-
238 bsr exc_handler
239 addql
240 RESTORE_ALL
241
242 .globl _int_handler
243_int_handler:
244 SAVE_ALL
245 movel %sp,%sp@-
246 bsr int_handler
247 addql
248 RESTORE_ALL
249
250
251
252 .globl version_string
253version_string:
254 .ascii U_BOOT_VERSION
255 .ascii " (", U_BOOT_DATE, " - ", U_BOOT_TIME, ")"
256 .ascii CONFIG_IDENT_STRING, "\0"
257 .align 4
258