blob: 99060141d883b40d27b05f5197fadb14f05bd5e1 [file] [log] [blame]
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001/*
2 * Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
3 * Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020024#include <asm-offsets.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050025#include <config.h>
26#include "version.h"
TsiChung Liewdd9f0542010-03-11 22:12:53 -060027#include <asm/cache.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050028
29#ifndef CONFIG_IDENT_STRING
30#define CONFIG_IDENT_STRING ""
31#endif
32
TsiChungLiew8ae158c2007-08-16 15:05:11 -050033#define _START _start
34#define _FAULT _fault
35
36#define SAVE_ALL \
37 move.w #0x2700,%sr; /* disable intrs */ \
38 subl #60,%sp; /* space for 15 regs */ \
39 moveml %d0-%d7/%a0-%a6,%sp@;
40
41#define RESTORE_ALL \
42 moveml %sp@,%d0-%d7/%a0-%a6; \
43 addl #60,%sp; /* space for 15 regs */ \
44 rte;
45
TsiChung Liew9f751552008-07-23 20:38:53 -050046#if defined(CONFIG_CF_SBF)
Wolfgang Denk14d0a022010-10-07 21:51:12 +020047#define ASM_DRAMINIT (asm_dram_init - CONFIG_SYS_TEXT_BASE + CONFIG_SYS_INIT_RAM_ADDR)
48#define ASM_SBF_IMG_HDR (asm_sbf_img_hdr - CONFIG_SYS_TEXT_BASE + CONFIG_SYS_INIT_RAM_ADDR)
TsiChung Liew9f751552008-07-23 20:38:53 -050049#endif
50
TsiChungLiew8ae158c2007-08-16 15:05:11 -050051.text
TsiChung Liew9f751552008-07-23 20:38:53 -050052
TsiChungLiew8ae158c2007-08-16 15:05:11 -050053/*
54 * Vector table. This is used for initial platform startup.
55 * These vectors are to catch any un-intended traps.
56 */
57_vectors:
TsiChung Liew9f751552008-07-23 20:38:53 -050058#if defined(CONFIG_CF_SBF)
TsiChungLiew8ae158c2007-08-16 15:05:11 -050059
TsiChung Liew9f751552008-07-23 20:38:53 -050060INITSP: .long 0 /* Initial SP */
61INITPC: .long ASM_DRAMINIT /* Initial PC */
62
63#else
64
65INITSP: .long 0 /* Initial SP */
66INITPC: .long _START /* Initial PC */
67
68#endif
69
TsiChungLiew8ae158c2007-08-16 15:05:11 -050070vector02: .long _FAULT /* Access Error */
71vector03: .long _FAULT /* Address Error */
72vector04: .long _FAULT /* Illegal Instruction */
73vector05: .long _FAULT /* Reserved */
74vector06: .long _FAULT /* Reserved */
75vector07: .long _FAULT /* Reserved */
76vector08: .long _FAULT /* Privilege Violation */
77vector09: .long _FAULT /* Trace */
78vector0A: .long _FAULT /* Unimplemented A-Line */
79vector0B: .long _FAULT /* Unimplemented F-Line */
80vector0C: .long _FAULT /* Debug Interrupt */
81vector0D: .long _FAULT /* Reserved */
82vector0E: .long _FAULT /* Format Error */
83vector0F: .long _FAULT /* Unitialized Int. */
84
85/* Reserved */
86vector10_17:
87.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
88
89vector18: .long _FAULT /* Spurious Interrupt */
90vector19: .long _FAULT /* Autovector Level 1 */
91vector1A: .long _FAULT /* Autovector Level 2 */
92vector1B: .long _FAULT /* Autovector Level 3 */
93vector1C: .long _FAULT /* Autovector Level 4 */
94vector1D: .long _FAULT /* Autovector Level 5 */
95vector1E: .long _FAULT /* Autovector Level 6 */
96vector1F: .long _FAULT /* Autovector Level 7 */
97
TsiChung Liew9f751552008-07-23 20:38:53 -050098#if !defined(CONFIG_CF_SBF)
99
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500100/* TRAP #0 - #15 */
101vector20_2F:
102.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
103.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
104
105/* Reserved */
106vector30_3F:
107.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
108.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
109
110vector64_127:
111.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
112.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
113.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
114.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
115.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
116.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
117.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
118.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
119
120vector128_191:
121.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
122.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
123.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
124.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
125.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
126.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
127.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
128.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
129
130vector192_255:
131.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
132.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
133.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
134.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
135.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
136.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
137.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
138.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
TsiChung Liew9f751552008-07-23 20:38:53 -0500139#endif
140
141#if defined(CONFIG_CF_SBF)
142 /* Image header: chksum 4 bytes, len 4 bytes, img dest 4 bytes */
143asm_sbf_img_hdr:
144 .long 0x00000000 /* checksum, not yet implemented */
145 .long 0x00030000 /* image length */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200146 .long CONFIG_SYS_TEXT_BASE /* image to be relocated at */
TsiChung Liew9f751552008-07-23 20:38:53 -0500147
148asm_dram_init:
TsiChung Liew709b3842009-06-11 15:39:57 +0000149 move.w #0x2700,%sr /* Mask off Interrupt */
150
151 move.l #CONFIG_SYS_INIT_RAM_ADDR, %d0
152 movec %d0, %VBR
153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
TsiChung Liew709b3842009-06-11 15:39:57 +0000155 movec %d0, %RAMBAR1
156
157 /* initialize general use internal ram */
158 move.l #0, %d0
TsiChung Liewdd9f0542010-03-11 22:12:53 -0600159 move.l #(ICACHE_STATUS), %a1 /* icache */
160 move.l #(DCACHE_STATUS), %a2 /* dcache */
TsiChung Liew709b3842009-06-11 15:39:57 +0000161 move.l %d0, (%a1)
162 move.l %d0, (%a2)
TsiChung Liew709b3842009-06-11 15:39:57 +0000163
164 /* invalidate and disable cache */
TsiChung Liewdd9f0542010-03-11 22:12:53 -0600165 move.l #(CONFIG_SYS_ICACHE_INV + CONFIG_SYS_DCACHE_INV), %d0
TsiChung Liew709b3842009-06-11 15:39:57 +0000166 movec %d0, %CACR /* Invalidate cache */
167 move.l #0, %d0
168 movec %d0, %ACR0
169 movec %d0, %ACR1
170 movec %d0, %ACR2
171 movec %d0, %ACR3
172
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET), %sp
TsiChung Liew9f751552008-07-23 20:38:53 -0500174 clr.l %sp@-
175
176 /* Must disable global address */
177 move.l #0xFC008000, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178 move.l #(CONFIG_SYS_CS0_BASE), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500179 move.l #0xFC008008, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180 move.l #(CONFIG_SYS_CS0_CTRL), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500181 move.l #0xFC008004, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200182 move.l #(CONFIG_SYS_CS0_MASK), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500183
TsiChung Liew709b3842009-06-11 15:39:57 +0000184 /* Dram Initialization a1, a2, and d0 */
TsiChung Liew9f751552008-07-23 20:38:53 -0500185 /* mscr sdram */
186 move.l #0xFC0A4074, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200187 move.b #(CONFIG_SYS_SDRAM_DRV_STRENGTH), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500188 nop
189
190 /* SDRAM Chip 0 and 1 */
191 move.l #0xFC0B8110, %a1
192 move.l #0xFC0B8114, %a2
193
194 /* calculate the size */
195 move.l #0x13, %d1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196 move.l #(CONFIG_SYS_SDRAM_SIZE), %d2
197#ifdef CONFIG_SYS_SDRAM_BASE1
TsiChung Liew9f751552008-07-23 20:38:53 -0500198 lsr.l #1, %d2
199#endif
200
201dramsz_loop:
202 lsr.l #1, %d2
203 add.l #1, %d1
204 cmp.l #1, %d2
205 bne dramsz_loop
206
207 /* SDRAM Chip 0 and 1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200208 move.l #(CONFIG_SYS_SDRAM_BASE), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500209 or.l %d1, (%a1)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200210#ifdef CONFIG_SYS_SDRAM_BASE1
211 move.l #(CONFIG_SYS_SDRAM_BASE1), (%a2)
TsiChung Liew9f751552008-07-23 20:38:53 -0500212 or.l %d1, (%a2)
213#endif
214 nop
215
216 /* dram cfg1 and cfg2 */
217 move.l #0xFC0B8008, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200218 move.l #(CONFIG_SYS_SDRAM_CFG1), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500219 nop
220 move.l #0xFC0B800C, %a2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200221 move.l #(CONFIG_SYS_SDRAM_CFG2), (%a2)
TsiChung Liew9f751552008-07-23 20:38:53 -0500222 nop
223
224 move.l #0xFC0B8000, %a1 /* Mode */
225 move.l #0xFC0B8004, %a2 /* Ctrl */
226
TsiChung Liew9f751552008-07-23 20:38:53 -0500227 /* Issue PALL */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 move.l #(CONFIG_SYS_SDRAM_CTRL + 2), (%a2)
TsiChung Liew9f751552008-07-23 20:38:53 -0500229 nop
230
TsiChung Liew709b3842009-06-11 15:39:57 +0000231#ifdef CONFIG_M54455EVB
TsiChung Liew9f751552008-07-23 20:38:53 -0500232 /* Issue LEMR */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200233 move.l #(CONFIG_SYS_SDRAM_EMOD + 0x408), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500234 nop
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235 move.l #(CONFIG_SYS_SDRAM_MODE + 0x300), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500236 nop
TsiChung Liew9f751552008-07-23 20:38:53 -0500237#endif
238
TsiChung Liew709b3842009-06-11 15:39:57 +0000239 move.l #1000, %d1
240 jsr asm_delay
241
TsiChung Liew9f751552008-07-23 20:38:53 -0500242 /* Issue PALL */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200243 move.l #(CONFIG_SYS_SDRAM_CTRL + 2), (%a2)
TsiChung Liew9f751552008-07-23 20:38:53 -0500244 nop
245
246 /* Perform two refresh cycles */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200247 move.l #(CONFIG_SYS_SDRAM_CTRL + 4), %d0
TsiChung Liew9f751552008-07-23 20:38:53 -0500248 nop
249 move.l %d0, (%a2)
250 move.l %d0, (%a2)
251 nop
252
253#ifdef CONFIG_M54455EVB
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200254 move.l #(CONFIG_SYS_SDRAM_MODE + 0x200), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500255 nop
256#elif defined(CONFIG_M54451EVB)
257 /* Issue LEMR */
TsiChung Liewc3a9e632009-02-18 11:49:31 +0000258 move.l #(CONFIG_SYS_SDRAM_MODE), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500259 nop
TsiChung Liewc3a9e632009-02-18 11:49:31 +0000260 move.l #(CONFIG_SYS_SDRAM_EMOD), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500261#endif
262
TsiChung Liew709b3842009-06-11 15:39:57 +0000263 move.l #500, %d1
264 jsr asm_delay
TsiChung Liew9f751552008-07-23 20:38:53 -0500265
TsiChung Liew709b3842009-06-11 15:39:57 +0000266 move.l #(CONFIG_SYS_SDRAM_CTRL), %d1
267 and.l #0x7FFFFFFF, %d1
TsiChung Liew9f751552008-07-23 20:38:53 -0500268#ifdef CONFIG_M54455EVB
TsiChung Liew709b3842009-06-11 15:39:57 +0000269 or.l #0x10000C00, %d1
TsiChung Liew9f751552008-07-23 20:38:53 -0500270#elif defined(CONFIG_M54451EVB)
TsiChung Liew709b3842009-06-11 15:39:57 +0000271 or.l #0x10000C00, %d1
TsiChung Liew9f751552008-07-23 20:38:53 -0500272#endif
TsiChung Liew709b3842009-06-11 15:39:57 +0000273 move.l %d1, (%a2)
TsiChung Liew9f751552008-07-23 20:38:53 -0500274 nop
275
TsiChung Liew709b3842009-06-11 15:39:57 +0000276 move.l #2000, %d1
277 jsr asm_delay
278
TsiChung Liew9f751552008-07-23 20:38:53 -0500279 /*
280 * DSPI Initialization
281 * a0 - general, sram - 0x80008000 - 32, see M54455EVB.h
282 * a1 - dspi status
283 * a2 - dtfr
284 * a3 - drfr
285 * a4 - Dst addr
286 */
287 /* Enable pins for DSPI mode - chip-selects are enabled later */
TsiChung Liew709b3842009-06-11 15:39:57 +0000288asm_dspi_init:
TsiChung Liew9f751552008-07-23 20:38:53 -0500289 move.l #0xFC0A4063, %a0
290 move.b #0x7F, (%a0)
291
292 /* Configure DSPI module */
293 move.l #0xFC05C000, %a0
294 move.l #0x80FF0C00, (%a0) /* Master, clear TX/RX FIFO */
295
296 move.l #0xFC05C00C, %a0
297 move.l #0x3E000011, (%a0)
298
299 move.l #0xFC05C034, %a2 /* dtfr */
300 move.l #0xFC05C03B, %a3 /* drfr */
301
302 move.l #(ASM_SBF_IMG_HDR + 4), %a1
303 move.l (%a1)+, %d5
304 move.l (%a1), %a4
305
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200306 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_SBFHDR_DATA_OFFSET), %a0
307 move.l #(CONFIG_SYS_SBFHDR_SIZE), %d4
TsiChung Liew9f751552008-07-23 20:38:53 -0500308
309 move.l #0xFC05C02C, %a1 /* dspi status */
310
311 /* Issue commands and address */
312 move.l #0x8002000B, %d2 /* Fast Read Cmd */
313 jsr asm_dspi_wr_status
314 jsr asm_dspi_rd_status
315
316 move.l #0x80020000, %d2 /* Address byte 2 */
317 jsr asm_dspi_wr_status
318 jsr asm_dspi_rd_status
319
320 move.l #0x80020000, %d2 /* Address byte 1 */
321 jsr asm_dspi_wr_status
322 jsr asm_dspi_rd_status
323
324 move.l #0x80020000, %d2 /* Address byte 0 */
325 jsr asm_dspi_wr_status
326 jsr asm_dspi_rd_status
327
328 move.l #0x80020000, %d2 /* Dummy Wr and Rd */
329 jsr asm_dspi_wr_status
330 jsr asm_dspi_rd_status
331
332 /* Transfer serial boot header to sram */
333asm_dspi_rd_loop1:
334 move.l #0x80020000, %d2
335 jsr asm_dspi_wr_status
336 jsr asm_dspi_rd_status
337
338 move.b %d1, (%a0) /* read, copy to dst */
339
340 add.l #1, %a0 /* inc dst by 1 */
341 sub.l #1, %d4 /* dec cnt by 1 */
342 bne asm_dspi_rd_loop1
343
344 /* Transfer u-boot from serial flash to memory */
345asm_dspi_rd_loop2:
346 move.l #0x80020000, %d2
347 jsr asm_dspi_wr_status
348 jsr asm_dspi_rd_status
349
350 move.b %d1, (%a4) /* read, copy to dst */
351
352 add.l #1, %a4 /* inc dst by 1 */
353 sub.l #1, %d5 /* dec cnt by 1 */
354 bne asm_dspi_rd_loop2
355
356 move.l #0x00020000, %d2 /* Terminate */
357 jsr asm_dspi_wr_status
358 jsr asm_dspi_rd_status
359
360 /* jump to memory and execute */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200361 move.l #(CONFIG_SYS_TEXT_BASE + 0x400), %a0
TsiChung Liew9f751552008-07-23 20:38:53 -0500362 jmp (%a0)
363
364asm_dspi_wr_status:
365 move.l (%a1), %d0 /* status */
366 and.l #0x0000F000, %d0
367 cmp.l #0x00003000, %d0
368 bgt asm_dspi_wr_status
369
370 move.l %d2, (%a2)
371 rts
372
373asm_dspi_rd_status:
374 move.l (%a1), %d0 /* status */
375 and.l #0x000000F0, %d0
376 lsr.l #4, %d0
377 cmp.l #0, %d0
378 beq asm_dspi_rd_status
379
380 move.b (%a3), %d1
381 rts
TsiChung Liew709b3842009-06-11 15:39:57 +0000382
383asm_delay:
384 nop
385 subq.l #1, %d1
386 bne asm_delay
387 rts
TsiChung Liew9f751552008-07-23 20:38:53 -0500388#endif /* CONFIG_CF_SBF */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500389
390 .text
TsiChung Liew9f751552008-07-23 20:38:53 -0500391 . = 0x400
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500392 .globl _start
393_start:
TsiChung Liew709b3842009-06-11 15:39:57 +0000394#if !defined(CONFIG_CF_SBF)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500395 nop
396 nop
397 move.w #0x2700,%sr /* Mask off Interrupt */
398
399 /* Set vector base register at the beginning of the Flash */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200400 move.l #CONFIG_SYS_FLASH_BASE, %d0
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500401 movec %d0, %VBR
402
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200403 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
TsiChungLiew225a24b2007-11-07 18:00:54 -0600404 movec %d0, %RAMBAR1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500405
406 /* initialize general use internal ram */
407 move.l #0, %d0
TsiChung Liewdd9f0542010-03-11 22:12:53 -0600408 move.l #(ICACHE_STATUS), %a1 /* icache */
409 move.l #(DCACHE_STATUS), %a2 /* dcache */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500410 move.l %d0, (%a1)
411 move.l %d0, (%a2)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500412
413 /* invalidate and disable cache */
TsiChung Liewdd9f0542010-03-11 22:12:53 -0600414 move.l #(CONFIG_SYS_ICACHE_INV + CONFIG_SYS_DCACHE_INV), %d0
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500415 movec %d0, %CACR /* Invalidate cache */
416 move.l #0, %d0
417 movec %d0, %ACR0
418 movec %d0, %ACR1
419 movec %d0, %ACR2
420 movec %d0, %ACR3
421
422 /* set stackpointer to end of internal ram to get some stackspace for
423 the first c-code */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200424 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET), %sp
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500425 clr.l %sp@-
TsiChung Liew709b3842009-06-11 15:39:57 +0000426#endif
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500427
428 move.l #__got_start, %a5 /* put relocation table address to a5 */
429
430 bsr cpu_init_f /* run low-level CPU init code (from flash) */
431 bsr board_init_f /* run low-level board init code (from flash) */
432
433 /* board_init_f() does not return */
434
435/*------------------------------------------------------------------------------*/
436
437/*
438 * void relocate_code (addr_sp, gd, addr_moni)
439 *
440 * This "function" does not return, instead it continues in RAM
441 * after relocating the monitor code.
442 *
443 * r3 = dest
444 * r4 = src
445 * r5 = length in bytes
446 * r6 = cachelinesize
447 */
448 .globl relocate_code
449relocate_code:
450 link.w %a6,#0
451 move.l 8(%a6), %sp /* set new stack pointer */
452
453 move.l 12(%a6), %d0 /* Save copy of Global Data pointer */
454 move.l 16(%a6), %a0 /* Save copy of Destination Address */
455
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200456 move.l #CONFIG_SYS_MONITOR_BASE, %a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500457 move.l #__init_end, %a2
458 move.l %a0, %a3
459
460 /* copy the code to RAM */
4611:
462 move.l (%a1)+, (%a3)+
463 cmp.l %a1,%a2
464 bgt.s 1b
465
466/*
467 * We are done. Do not return, instead branch to second part of board
468 * initialization, now running from RAM.
469 */
470 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200471 add.l #(in_ram - CONFIG_SYS_MONITOR_BASE), %a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500472 jmp (%a1)
473
474in_ram:
475
476clear_bss:
477 /*
478 * Now clear BSS segment
479 */
480 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200481 add.l #(_sbss - CONFIG_SYS_MONITOR_BASE),%a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500482 move.l %a0, %d1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200483 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1
TsiChungLiew8ae158c2007-08-16 15:05:11 -05004846:
485 clr.l (%a1)+
486 cmp.l %a1,%d1
487 bgt.s 6b
488
489 /*
490 * fix got table in RAM
491 */
492 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200493 add.l #(__got_start - CONFIG_SYS_MONITOR_BASE),%a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500494 move.l %a1,%a5 /* * fix got pointer register a5 */
495
496 move.l %a0, %a2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200497 add.l #(__got_end - CONFIG_SYS_MONITOR_BASE),%a2
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500498
4997:
500 move.l (%a1),%d1
501 sub.l #_start,%d1
502 add.l %a0,%d1
503 move.l %d1,(%a1)+
504 cmp.l %a2, %a1
505 bne 7b
506
507 /* calculate relative jump to board_init_r in ram */
508 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200509 add.l #(board_init_r - CONFIG_SYS_MONITOR_BASE), %a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500510
511 /* set parameters for board_init_r */
512 move.l %a0,-(%sp) /* dest_addr */
513 move.l %d0,-(%sp) /* gd */
514 jsr (%a1)
515
516/*------------------------------------------------------------------------------*/
517/* exception code */
518 .globl _fault
519_fault:
TsiChung Liew3b1e8ac2008-06-18 19:12:13 -0500520 bra _fault
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500521 .globl _exc_handler
522
523_exc_handler:
524 SAVE_ALL
525 movel %sp,%sp@-
526 bsr exc_handler
527 addql #4,%sp
528 RESTORE_ALL
529
530 .globl _int_handler
531_int_handler:
532 SAVE_ALL
533 movel %sp,%sp@-
534 bsr int_handler
535 addql #4,%sp
536 RESTORE_ALL
537
538/*------------------------------------------------------------------------------*/
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500539
540 .globl version_string
541version_string:
Andreas Bießmann09c2e902011-07-18 20:24:04 +0200542 .ascii U_BOOT_VERSION_STRING, "\0"
TsiChung Liew9b464322008-03-28 08:47:45 -0500543 .align 4