blob: db30b26c348e6058f4512c5ef1584da041ff437d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
TsiChungLiew8ae158c2007-08-16 15:05:11 -05002/*
3 * Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de>
4 * Based on code from Bernhard Kuhn <bkuhn@metrowerks.com>
5 *
Alison Wang45370e12012-10-18 19:25:51 +00006 * Copyright 2010-2012 Freescale Semiconductor, Inc.
7 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiew8ae158c2007-08-16 15:05:11 -05008 */
9
Alison Wang45370e12012-10-18 19:25:51 +000010#include <common.h>
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020011#include <asm-offsets.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050012#include <config.h>
Alison Wang45370e12012-10-18 19:25:51 +000013#include <timestamp.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050014#include "version.h"
TsiChung Liewdd9f0542010-03-11 22:12:53 -060015#include <asm/cache.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050016
TsiChungLiew8ae158c2007-08-16 15:05:11 -050017#define _START _start
18#define _FAULT _fault
19
20#define SAVE_ALL \
21 move.w #0x2700,%sr; /* disable intrs */ \
22 subl #60,%sp; /* space for 15 regs */ \
23 moveml %d0-%d7/%a0-%a6,%sp@;
24
25#define RESTORE_ALL \
26 moveml %sp@,%d0-%d7/%a0-%a6; \
27 addl #60,%sp; /* space for 15 regs */ \
28 rte;
29
Alison Wang45370e12012-10-18 19:25:51 +000030#if defined(CONFIG_SERIAL_BOOT)
Angelo Dureghello5c928d02016-05-22 00:14:29 +020031#define ASM_DRAMINIT (asm_dram_init - CONFIG_SYS_TEXT_BASE + \
32 CONFIG_SYS_INIT_RAM_ADDR)
Masahiro Yamada61a43922015-12-11 12:22:25 +090033#define ASM_DRAMINIT_N (asm_dram_init - CONFIG_SYS_TEXT_BASE)
Angelo Dureghello5c928d02016-05-22 00:14:29 +020034#define ASM_SBF_IMG_HDR (asm_sbf_img_hdr - CONFIG_SYS_TEXT_BASE + \
35 CONFIG_SYS_INIT_RAM_ADDR)
TsiChung Liew9f751552008-07-23 20:38:53 -050036#endif
37
TsiChungLiew8ae158c2007-08-16 15:05:11 -050038.text
TsiChung Liew9f751552008-07-23 20:38:53 -050039
TsiChungLiew8ae158c2007-08-16 15:05:11 -050040/*
Angelo Dureghello5c928d02016-05-22 00:14:29 +020041 * Vector table. This is used for initial platform startup.
42 * These vectors are to catch any un-intended traps.
TsiChungLiew8ae158c2007-08-16 15:05:11 -050043 */
44_vectors:
Alison Wang45370e12012-10-18 19:25:51 +000045#if defined(CONFIG_SERIAL_BOOT)
TsiChungLiew8ae158c2007-08-16 15:05:11 -050046
Angelo Dureghello5c928d02016-05-22 00:14:29 +020047INITSP: .long 0 /* Initial SP */
Alison Wang45370e12012-10-18 19:25:51 +000048#ifdef CONFIG_CF_SBF
Angelo Dureghello5c928d02016-05-22 00:14:29 +020049INITPC: .long ASM_DRAMINIT /* Initial PC */
Alison Wang45370e12012-10-18 19:25:51 +000050#endif
51#ifdef CONFIG_SYS_NAND_BOOT
Angelo Dureghello5c928d02016-05-22 00:14:29 +020052INITPC: .long ASM_DRAMINIT_N /* Initial PC */
Alison Wang45370e12012-10-18 19:25:51 +000053#endif
TsiChung Liew9f751552008-07-23 20:38:53 -050054
55#else
56
Angelo Dureghello5c928d02016-05-22 00:14:29 +020057INITSP: .long 0 /* Initial SP */
58INITPC: .long _START /* Initial PC */
TsiChung Liew9f751552008-07-23 20:38:53 -050059
60#endif
61
Angelo Dureghello5c928d02016-05-22 00:14:29 +020062vector02_0F:
63.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
64.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
TsiChungLiew8ae158c2007-08-16 15:05:11 -050065
66/* Reserved */
67vector10_17:
68.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
69
Angelo Dureghello5c928d02016-05-22 00:14:29 +020070vector18_1F:
71.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
TsiChungLiew8ae158c2007-08-16 15:05:11 -050072
Alison Wang45370e12012-10-18 19:25:51 +000073#if !defined(CONFIG_SERIAL_BOOT)
TsiChung Liew9f751552008-07-23 20:38:53 -050074
TsiChungLiew8ae158c2007-08-16 15:05:11 -050075/* TRAP #0 - #15 */
76vector20_2F:
77.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
78.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
79
80/* Reserved */
81vector30_3F:
82.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
83.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
84
85vector64_127:
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.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
90.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
91.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
92.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
93.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
94
95vector128_191:
96.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
97.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
98.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
99.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
100.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
101.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
102.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
103.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
104
105vector192_255:
106.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
107.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
108.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
109.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
110.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT
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
TsiChung Liew9f751552008-07-23 20:38:53 -0500114#endif
115
Alison Wang45370e12012-10-18 19:25:51 +0000116#if defined(CONFIG_SERIAL_BOOT)
TsiChung Liew9f751552008-07-23 20:38:53 -0500117 /* Image header: chksum 4 bytes, len 4 bytes, img dest 4 bytes */
118asm_sbf_img_hdr:
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200119 .long 0x00000000 /* checksum, not yet implemented */
120 .long 0x00040000 /* image length */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200121 .long CONFIG_SYS_TEXT_BASE /* image to be relocated at */
TsiChung Liew9f751552008-07-23 20:38:53 -0500122
123asm_dram_init:
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200124 move.w #0x2700,%sr /* Mask off Interrupt */
TsiChung Liew709b3842009-06-11 15:39:57 +0000125
Alison Wang45370e12012-10-18 19:25:51 +0000126#ifdef CONFIG_SYS_NAND_BOOT
127 /* for assembly stack */
128 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
129 movec %d0, %RAMBAR1
130
131 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET), %sp
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200132 clr.l %sp@-
Alison Wang45370e12012-10-18 19:25:51 +0000133#endif
134
135#ifdef CONFIG_CF_SBF
TsiChung Liew709b3842009-06-11 15:39:57 +0000136 move.l #CONFIG_SYS_INIT_RAM_ADDR, %d0
137 movec %d0, %VBR
138
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200139 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
TsiChung Liew709b3842009-06-11 15:39:57 +0000140 movec %d0, %RAMBAR1
141
142 /* initialize general use internal ram */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200143 move.l #0, %d0
144 move.l #(ICACHE_STATUS), %a1 /* icache */
145 move.l #(DCACHE_STATUS), %a2 /* dcache */
146 move.l %d0, (%a1)
147 move.l %d0, (%a2)
TsiChung Liew709b3842009-06-11 15:39:57 +0000148
149 /* invalidate and disable cache */
TsiChung Liewdd9f0542010-03-11 22:12:53 -0600150 move.l #(CONFIG_SYS_ICACHE_INV + CONFIG_SYS_DCACHE_INV), %d0
TsiChung Liew709b3842009-06-11 15:39:57 +0000151 movec %d0, %CACR /* Invalidate cache */
152 move.l #0, %d0
153 movec %d0, %ACR0
154 movec %d0, %ACR1
155 movec %d0, %ACR2
156 movec %d0, %ACR3
157
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET), %sp
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200159 clr.l %sp@-
TsiChung Liew9f751552008-07-23 20:38:53 -0500160
Angelo Dureghello02a6edd2017-05-15 00:17:48 +0200161#ifdef CONFIG_SYS_CS0_BASE
TsiChung Liew9f751552008-07-23 20:38:53 -0500162 /* Must disable global address */
163 move.l #0xFC008000, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200164 move.l #(CONFIG_SYS_CS0_BASE), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500165 move.l #0xFC008008, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166 move.l #(CONFIG_SYS_CS0_CTRL), (%a1)
TsiChung Liew9f751552008-07-23 20:38:53 -0500167 move.l #0xFC008004, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200168 move.l #(CONFIG_SYS_CS0_MASK), (%a1)
Angelo Dureghello02a6edd2017-05-15 00:17:48 +0200169#endif
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200170#endif /* CONFIG_CF_SBF */
TsiChung Liew9f751552008-07-23 20:38:53 -0500171
Alison Wang45370e12012-10-18 19:25:51 +0000172#ifdef CONFIG_MCF5441x
173 /* TC: enable all peripherals,
174 in the future only enable certain peripherals */
175 move.l #0xFC04002D, %a1
176
177#if defined(CONFIG_CF_SBF)
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200178 move.b #23, (%a1) /* dspi */
Alison Wang45370e12012-10-18 19:25:51 +0000179#endif
Angelo Dureghelloc74dda82017-05-14 21:42:27 +0200180#endif /* CONFIG_MCF5441x */
Alison Wang45370e12012-10-18 19:25:51 +0000181
Angelo Dureghelloc74dda82017-05-14 21:42:27 +0200182 /* mandatory board level ddr-sdram init,
183 * for both 5441x and 5445x
184 */
185 bsr sbf_dram_init
TsiChung Liew709b3842009-06-11 15:39:57 +0000186
Alison Wang45370e12012-10-18 19:25:51 +0000187#ifdef CONFIG_CF_SBF
TsiChung Liew9f751552008-07-23 20:38:53 -0500188 /*
189 * DSPI Initialization
190 * a0 - general, sram - 0x80008000 - 32, see M54455EVB.h
191 * a1 - dspi status
192 * a2 - dtfr
193 * a3 - drfr
194 * a4 - Dst addr
195 */
196 /* Enable pins for DSPI mode - chip-selects are enabled later */
TsiChung Liew709b3842009-06-11 15:39:57 +0000197asm_dspi_init:
Alison Wang45370e12012-10-18 19:25:51 +0000198#ifdef CONFIG_MCF5441x
199 move.l #0xEC09404E, %a1
200 move.l #0xEC09404F, %a2
201 move.b #0xFF, (%a1)
202 move.b #0x80, (%a2)
203#endif
204
205#ifdef CONFIG_MCF5445x
TsiChung Liew9f751552008-07-23 20:38:53 -0500206 move.l #0xFC0A4063, %a0
207 move.b #0x7F, (%a0)
Alison Wang45370e12012-10-18 19:25:51 +0000208#endif
TsiChung Liew9f751552008-07-23 20:38:53 -0500209 /* Configure DSPI module */
210 move.l #0xFC05C000, %a0
211 move.l #0x80FF0C00, (%a0) /* Master, clear TX/RX FIFO */
212
213 move.l #0xFC05C00C, %a0
Alison Wang45370e12012-10-18 19:25:51 +0000214#ifdef CONFIG_MCF5441x
215 move.l #0x3E000016, (%a0)
216#endif
217#ifdef CONFIG_MCF5445x
TsiChung Liew9f751552008-07-23 20:38:53 -0500218 move.l #0x3E000011, (%a0)
Alison Wang45370e12012-10-18 19:25:51 +0000219#endif
TsiChung Liew9f751552008-07-23 20:38:53 -0500220
221 move.l #0xFC05C034, %a2 /* dtfr */
222 move.l #0xFC05C03B, %a3 /* drfr */
223
224 move.l #(ASM_SBF_IMG_HDR + 4), %a1
225 move.l (%a1)+, %d5
226 move.l (%a1), %a4
227
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_SBFHDR_DATA_OFFSET), %a0
229 move.l #(CONFIG_SYS_SBFHDR_SIZE), %d4
TsiChung Liew9f751552008-07-23 20:38:53 -0500230
231 move.l #0xFC05C02C, %a1 /* dspi status */
232
233 /* Issue commands and address */
234 move.l #0x8002000B, %d2 /* Fast Read Cmd */
235 jsr asm_dspi_wr_status
236 jsr asm_dspi_rd_status
237
238 move.l #0x80020000, %d2 /* Address byte 2 */
239 jsr asm_dspi_wr_status
240 jsr asm_dspi_rd_status
241
242 move.l #0x80020000, %d2 /* Address byte 1 */
243 jsr asm_dspi_wr_status
244 jsr asm_dspi_rd_status
245
246 move.l #0x80020000, %d2 /* Address byte 0 */
247 jsr asm_dspi_wr_status
248 jsr asm_dspi_rd_status
249
250 move.l #0x80020000, %d2 /* Dummy Wr and Rd */
251 jsr asm_dspi_wr_status
252 jsr asm_dspi_rd_status
253
254 /* Transfer serial boot header to sram */
255asm_dspi_rd_loop1:
256 move.l #0x80020000, %d2
257 jsr asm_dspi_wr_status
258 jsr asm_dspi_rd_status
259
260 move.b %d1, (%a0) /* read, copy to dst */
261
262 add.l #1, %a0 /* inc dst by 1 */
263 sub.l #1, %d4 /* dec cnt by 1 */
264 bne asm_dspi_rd_loop1
265
266 /* Transfer u-boot from serial flash to memory */
267asm_dspi_rd_loop2:
268 move.l #0x80020000, %d2
269 jsr asm_dspi_wr_status
270 jsr asm_dspi_rd_status
271
272 move.b %d1, (%a4) /* read, copy to dst */
273
274 add.l #1, %a4 /* inc dst by 1 */
275 sub.l #1, %d5 /* dec cnt by 1 */
276 bne asm_dspi_rd_loop2
277
278 move.l #0x00020000, %d2 /* Terminate */
279 jsr asm_dspi_wr_status
280 jsr asm_dspi_rd_status
281
282 /* jump to memory and execute */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200283 move.l #(CONFIG_SYS_TEXT_BASE + 0x400), %a0
TsiChung Liew9f751552008-07-23 20:38:53 -0500284 jmp (%a0)
285
286asm_dspi_wr_status:
287 move.l (%a1), %d0 /* status */
288 and.l #0x0000F000, %d0
289 cmp.l #0x00003000, %d0
290 bgt asm_dspi_wr_status
291
292 move.l %d2, (%a2)
293 rts
294
295asm_dspi_rd_status:
296 move.l (%a1), %d0 /* status */
297 and.l #0x000000F0, %d0
298 lsr.l #4, %d0
299 cmp.l #0, %d0
300 beq asm_dspi_rd_status
301
302 move.b (%a3), %d1
303 rts
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200304#endif /* CONFIG_CF_SBF */
Alison Wang45370e12012-10-18 19:25:51 +0000305
306#ifdef CONFIG_SYS_NAND_BOOT
307 /* copy 4 boot pages to dram as soon as possible */
308 /* each page is 996 bytes (1056 total with 60 ECC bytes */
309 move.l #0x00000000, %a1 /* src */
Masahiro Yamada61a43922015-12-11 12:22:25 +0900310 move.l #CONFIG_SYS_TEXT_BASE, %a2 /* dst */
Alison Wang45370e12012-10-18 19:25:51 +0000311 move.l #0x3E0, %d0 /* sz in long */
312
313asm_boot_nand_copy:
314 move.l (%a1)+, (%a2)+
315 subq.l #1, %d0
316 bne asm_boot_nand_copy
317
318 /* jump to memory and execute */
319 move.l #(asm_nand_init), %a0
320 jmp (%a0)
321
322asm_nand_init:
323 /* exit nand boot-mode */
324 move.l #0xFC0FFF30, %a1
325 or.l #0x00000040, %d1
326 move.l %d1, (%a1)
327
328 /* initialize general use internal ram */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200329 move.l #0, %d0
330 move.l #(CACR_STATUS), %a1 /* CACR */
331 move.l #(ICACHE_STATUS), %a2 /* icache */
332 move.l #(DCACHE_STATUS), %a3 /* dcache */
333 move.l %d0, (%a1)
334 move.l %d0, (%a2)
335 move.l %d0, (%a3)
Alison Wang45370e12012-10-18 19:25:51 +0000336
337 /* invalidate and disable cache */
338 move.l #0x01004100, %d0 /* Invalidate cache cmd */
339 movec %d0, %CACR /* Invalidate cache */
340 move.l #0, %d0
341 movec %d0, %ACR0
342 movec %d0, %ACR1
343 movec %d0, %ACR2
344 movec %d0, %ACR3
345
Angelo Dureghello02a6edd2017-05-15 00:17:48 +0200346#ifdef CONFIG_SYS_CS0_BASE
Alison Wang45370e12012-10-18 19:25:51 +0000347 /* Must disable global address */
348 move.l #0xFC008000, %a1
349 move.l #(CONFIG_SYS_CS0_BASE), (%a1)
350 move.l #0xFC008008, %a1
351 move.l #(CONFIG_SYS_CS0_CTRL), (%a1)
352 move.l #0xFC008004, %a1
353 move.l #(CONFIG_SYS_CS0_MASK), (%a1)
Angelo Dureghello02a6edd2017-05-15 00:17:48 +0200354#endif
Alison Wang45370e12012-10-18 19:25:51 +0000355
356 /* NAND port configuration */
357 move.l #0xEC094048, %a1
358 move.b #0xFD, (%a1)+
359 move.b #0x5F, (%a1)+
360 move.b #0x04, (%a1)+
361
362 /* reset nand */
363 move.l #0xFC0FFF38, %a1 /* isr */
364 move.l #0x000e0000, (%a1)
365 move.l #0xFC0FFF08, %a2
366 move.l #0x00000000, (%a2)+ /* car */
367 move.l #0x11000000, (%a2)+ /* rar */
368 move.l #0x00000000, (%a2)+ /* rpt */
369 move.l #0x00000000, (%a2)+ /* rai */
370 move.l #0xFC0FFF2c, %a2 /* cfg */
371 move.l #0x00000000, (%a2)+ /* secsz */
372 move.l #0x000e0681, (%a2)+
373 move.l #0xFC0FFF04, %a2 /* cmd2 */
374 move.l #0xFF404001, (%a2)
375 move.l #0x000e0000, (%a1)
376
377 move.l #0x2000, %d1
Angelo Dureghelloc74dda82017-05-14 21:42:27 +0200378 bsr asm_delay
Alison Wang45370e12012-10-18 19:25:51 +0000379
380 /* setup nand */
381 move.l #0xFC0FFF00, %a1
382 move.l #0x30700000, (%a1)+ /* cmd1 */
383 move.l #0x007EF000, (%a1)+ /* cmd2 */
384
385 move.l #0xFC0FFF2C, %a1
386 move.l #0x00000841, (%a1)+ /* secsz */
387 move.l #0x000e0681, (%a1)+ /* cfg */
388
389 move.l #100, %d4 /* 100 pages ~200KB */
390 move.l #4, %d2 /* start at 4 */
391 move.l #0xFC0FFF04, %a0 /* cmd2 */
392 move.l #0xFC0FFF0C, %a1 /* rar */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200393 move.l #(CONFIG_SYS_TEXT_BASE + 0xF80), %a2
Alison Wang45370e12012-10-18 19:25:51 +0000394
395asm_nand_read:
396 move.l #0x11000000, %d0 /* rar */
397 or.l %d2, %d0
398 move.l %d0, (%a1)
399 add.l #1, %d2
400
401 move.l (%a0), %d0 /* cmd2 */
402 or.l #1, %d0
403 move.l %d0, (%a0)
404
405 move.l #0x200, %d1
Angelo Dureghelloc74dda82017-05-14 21:42:27 +0200406 bsr asm_delay
Alison Wang45370e12012-10-18 19:25:51 +0000407
408asm_nand_chk_status:
409 move.l #0xFC0FFF38, %a4 /* isr */
410 move.l (%a4), %d0
411 and.l #0x40000000, %d0
412 tst.l %d0
413 beq asm_nand_chk_status
414
415 move.l #0xFC0FFF38, %a4 /* isr */
416 move.l (%a4), %d0
417 or.l #0x000E0000, %d0
418 move.l %d0, (%a4)
419
420 move.l #0x200, %d3
421 move.l #0xFC0FC000, %a3 /* buf 1 */
422asm_nand_copy:
423 move.l (%a3)+, (%a2)+
424 subq.l #1, %d3
425 bgt asm_nand_copy
426
427 subq.l #1, %d4
428 bgt asm_nand_read
429
430 /* jump to memory and execute */
Masahiro Yamada61a43922015-12-11 12:22:25 +0900431 move.l #(CONFIG_SYS_TEXT_BASE + 0x400), %a0
Alison Wang45370e12012-10-18 19:25:51 +0000432 jmp (%a0)
433
434#endif /* CONFIG_SYS_NAND_BOOT */
TsiChung Liew709b3842009-06-11 15:39:57 +0000435
Angelo Dureghelloc74dda82017-05-14 21:42:27 +0200436.globl asm_delay
TsiChung Liew709b3842009-06-11 15:39:57 +0000437asm_delay:
438 nop
439 subq.l #1, %d1
440 bne asm_delay
441 rts
Alison Wang45370e12012-10-18 19:25:51 +0000442#endif /* CONFIG_CF_SBF || CONFIG_NAND_U_BOOT */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500443
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200444.text
TsiChung Liew9f751552008-07-23 20:38:53 -0500445 . = 0x400
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200446.globl _start
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500447_start:
Alison Wang45370e12012-10-18 19:25:51 +0000448#if !defined(CONFIG_SERIAL_BOOT)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500449 nop
450 nop
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200451 move.w #0x2700,%sr /* Mask off Interrupt */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500452
453 /* Set vector base register at the beginning of the Flash */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200454 move.l #CONFIG_SYS_FLASH_BASE, %d0
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500455 movec %d0, %VBR
456
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200457 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
TsiChungLiew225a24b2007-11-07 18:00:54 -0600458 movec %d0, %RAMBAR1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500459
460 /* initialize general use internal ram */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200461 move.l #0, %d0
462 move.l #(ICACHE_STATUS), %a1 /* icache */
463 move.l #(DCACHE_STATUS), %a2 /* dcache */
464 move.l %d0, (%a1)
465 move.l %d0, (%a2)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500466
467 /* invalidate and disable cache */
TsiChung Liewdd9f0542010-03-11 22:12:53 -0600468 move.l #(CONFIG_SYS_ICACHE_INV + CONFIG_SYS_DCACHE_INV), %d0
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500469 movec %d0, %CACR /* Invalidate cache */
470 move.l #0, %d0
471 movec %d0, %ACR0
472 movec %d0, %ACR1
473 movec %d0, %ACR2
474 movec %d0, %ACR3
Alison Wang45370e12012-10-18 19:25:51 +0000475#else
476 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0
477 movec %d0, %RAMBAR1
478#endif
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500479
angelo@sysam.it5044c9c2016-04-27 21:50:44 +0200480 /* put relocation table address to a5 */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200481 move.l #__got_start, %a5
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500482
angelo@sysam.it5044c9c2016-04-27 21:50:44 +0200483 /* setup stack initially on top of internal static ram */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200484 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE), %sp
angelo@sysam.it5044c9c2016-04-27 21:50:44 +0200485
486 /*
487 * if configured, malloc_f arena will be reserved first,
488 * then (and always) gd struct space will be reserved
489 */
490 move.l %sp, -(%sp)
491 move.l #board_init_f_alloc_reserve, %a1
492 jsr (%a1)
493
494 /* update stack and frame-pointers */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200495 move.l %d0, %sp
496 move.l %sp, %fp
angelo@sysam.it5044c9c2016-04-27 21:50:44 +0200497
498 /* initialize reserved area */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200499 move.l %d0, -(%sp)
angelo@sysam.it5044c9c2016-04-27 21:50:44 +0200500 move.l #board_init_f_init_reserve, %a1
501 jsr (%a1)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500502
angelo@sysam.it55ac54c2016-04-12 00:30:59 +0200503 /* run low-level CPU init code (from flash) */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200504 move.l #cpu_init_f, %a1
505 jsr (%a1)
506
angelo@sysam.it55ac54c2016-04-12 00:30:59 +0200507 /* run low-level board init code (from flash) */
angelo@sysam.it5044c9c2016-04-27 21:50:44 +0200508 clr.l %sp@-
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200509 move.l #board_init_f, %a1
510 jsr (%a1)
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500511
512 /* board_init_f() does not return */
513
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200514/******************************************************************************/
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500515
516/*
517 * void relocate_code (addr_sp, gd, addr_moni)
518 *
519 * This "function" does not return, instead it continues in RAM
520 * after relocating the monitor code.
521 *
522 * r3 = dest
523 * r4 = src
524 * r5 = length in bytes
525 * r6 = cachelinesize
526 */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200527.globl relocate_code
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500528relocate_code:
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200529 link.w %a6,#0
530 move.l 8(%a6), %sp /* set new stack pointer */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500531
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200532 move.l 12(%a6), %d0 /* Save copy of Global Data pointer */
533 move.l 16(%a6), %a0 /* Save copy of Destination Address */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500534
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200535 move.l #CONFIG_SYS_MONITOR_BASE, %a1
536 move.l #__init_end, %a2
537 move.l %a0, %a3
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500538
539 /* copy the code to RAM */
5401:
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200541 move.l (%a1)+, (%a3)+
542 cmp.l %a1,%a2
543 bgt.s 1b
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500544
545/*
546 * We are done. Do not return, instead branch to second part of board
547 * initialization, now running from RAM.
548 */
549 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200550 add.l #(in_ram - CONFIG_SYS_MONITOR_BASE), %a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500551 jmp (%a1)
552
553in_ram:
554
555clear_bss:
556 /*
557 * Now clear BSS segment
558 */
559 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200560 add.l #(_sbss - CONFIG_SYS_MONITOR_BASE),%a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500561 move.l %a0, %d1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200562 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1
TsiChungLiew8ae158c2007-08-16 15:05:11 -05005636:
564 clr.l (%a1)+
565 cmp.l %a1,%d1
566 bgt.s 6b
567
568 /*
569 * fix got table in RAM
570 */
571 move.l %a0, %a1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200572 add.l #(__got_start - CONFIG_SYS_MONITOR_BASE),%a1
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200573 move.l %a1,%a5 /* fix got pointer register a5 */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500574
575 move.l %a0, %a2
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200576 add.l #(__got_end - CONFIG_SYS_MONITOR_BASE),%a2
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500577
5787:
579 move.l (%a1),%d1
580 sub.l #_start,%d1
581 add.l %a0,%d1
582 move.l %d1,(%a1)+
583 cmp.l %a2, %a1
584 bne 7b
585
586 /* calculate relative jump to board_init_r in ram */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200587 move.l %a0, %a1
588 add.l #(board_init_r - CONFIG_SYS_MONITOR_BASE), %a1
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500589
590 /* set parameters for board_init_r */
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200591 move.l %a0,-(%sp) /* dest_addr */
592 move.l %d0,-(%sp) /* gd */
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500593 jsr (%a1)
594
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200595/******************************************************************************/
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500596
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200597/* exception code */
598.globl _fault
599_fault:
600 bra _fault
601
602.globl _exc_handler
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500603_exc_handler:
604 SAVE_ALL
605 movel %sp,%sp@-
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200606 bsr exc_handler
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500607 addql #4,%sp
608 RESTORE_ALL
609
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200610.globl _int_handler
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500611_int_handler:
612 SAVE_ALL
613 movel %sp,%sp@-
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200614 bsr int_handler
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500615 addql #4,%sp
616 RESTORE_ALL
617
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200618/******************************************************************************/
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500619
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200620.globl version_string
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500621version_string:
Angelo Dureghello5c928d02016-05-22 00:14:29 +0200622.ascii U_BOOT_VERSION_STRING, "\0"
623.align 4