blob: 3e1b0c9514052f5a502994da9edfb440b2bd5fe5 [file] [log] [blame]
wdenk5c952cf2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2004, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00006 */
7
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02008#include <asm-offsets.h>
wdenk5c952cf2004-10-10 21:27:30 +00009#include <config.h>
10#include <version.h>
11
Thomas Chou55e2b4d2015-10-09 20:09:17 +080012/*
13 * icache and dcache configuration used only for start.S.
14 * the values are chosen so that it will work for all configuration.
15 */
16#define ICACHE_LINE_SIZE 32 /* fixed 32 */
17#define ICACHE_SIZE_MAX 0x10000 /* 64k max */
18#define DCACHE_LINE_SIZE_MIN 4 /* 4, 16, 32 */
19#define DCACHE_SIZE_MAX 0x10000 /* 64k max */
20
Thomas Chou4a572fa2015-10-06 10:12:59 +080021 /* RESTART */
wdenk5c952cf2004-10-10 21:27:30 +000022 .text
Thomas Choub8112092015-10-06 14:09:19 +080023 .global _start, _except_start, _except_end
wdenk5c952cf2004-10-10 21:27:30 +000024
25_start:
Thomas Choufd2712d2010-04-20 11:01:11 +080026 wrctl status, r0 /* Disable interrupts */
Thomas Chou4a572fa2015-10-06 10:12:59 +080027 /*
28 * ICACHE INIT -- only the icache line at the reset address
wdenk5c952cf2004-10-10 21:27:30 +000029 * is invalidated at reset. So the init must stay within
30 * the cache line size (8 words). If GERMS is used, we'll
31 * just be invalidating the cache a second time. If cache
32 * is not implemented initi behaves as nop.
33 */
Thomas Chou55e2b4d2015-10-09 20:09:17 +080034 ori r4, r0, %lo(ICACHE_LINE_SIZE)
35 movhi r5, %hi(ICACHE_SIZE_MAX)
36 ori r5, r5, %lo(ICACHE_SIZE_MAX)
Thomas Choufd2712d2010-04-20 11:01:11 +0800370: initi r5
38 sub r5, r5, r4
39 bgt r5, r0, 0b
wdenk0c1c117c2005-03-30 23:28:18 +000040 br _except_end /* Skip the tramp */
41
Thomas Chou4a572fa2015-10-06 10:12:59 +080042 /*
43 * EXCEPTION TRAMPOLINE -- the following gets copied
wdenk0c1c117c2005-03-30 23:28:18 +000044 * to the exception address (below), but is otherwise at the
45 * default exception vector offset (0x0020).
46 */
47_except_start:
48 movhi et, %hi(_exception)
49 ori et, et, %lo(_exception)
50 jmp et
51_except_end:
wdenk5c952cf2004-10-10 21:27:30 +000052
Thomas Chou4a572fa2015-10-06 10:12:59 +080053 /*
54 * INTERRUPTS -- for now, all interrupts masked and globally
wdenk5c952cf2004-10-10 21:27:30 +000055 * disabled.
56 */
wdenk5c952cf2004-10-10 21:27:30 +000057 wrctl ienable, r0 /* All disabled */
58
Thomas Chou4a572fa2015-10-06 10:12:59 +080059 /*
60 * DCACHE INIT -- if dcache not implemented, initd behaves as
wdenk5c952cf2004-10-10 21:27:30 +000061 * nop.
62 */
Thomas Chou55e2b4d2015-10-09 20:09:17 +080063 ori r4, r0, %lo(DCACHE_LINE_SIZE_MIN)
64 movhi r5, %hi(DCACHE_SIZE_MAX)
65 ori r5, r5, %lo(DCACHE_SIZE_MAX)
wdenk5c952cf2004-10-10 21:27:30 +000066 mov r6, r0
671: initd 0(r6)
68 add r6, r6, r4
69 bltu r6, r5, 1b
70
Thomas Chou4a572fa2015-10-06 10:12:59 +080071 /*
72 * RELOCATE CODE, DATA & COMMAND TABLE -- the following code
wdenk5c952cf2004-10-10 21:27:30 +000073 * assumes code, data and the command table are all
74 * contiguous. This lets us relocate everything as a single
75 * block. Make sure the linker script matches this ;-)
76 */
77 nextpc r4
78_cur: movhi r5, %hi(_cur - _start)
79 ori r5, r5, %lo(_cur - _start)
80 sub r4, r4, r5 /* r4 <- cur _start */
81 mov r8, r4
82 movhi r5, %hi(_start)
83 ori r5, r5, %lo(_start) /* r5 <- linked _start */
Thomas Chou65af9f62015-11-03 13:47:02 +080084 mov sp, r5 /* initial stack below u-boot code */
wdenk5c952cf2004-10-10 21:27:30 +000085 beq r4, r5, 3f
86
Thomas Choue9002982015-09-04 16:39:16 +080087 movhi r6, %hi(CONFIG_SYS_MONITOR_LEN)
88 ori r6, r6, %lo(CONFIG_SYS_MONITOR_LEN)
89 add r6, r6, r5
wdenk5c952cf2004-10-10 21:27:30 +0000902: ldwio r7, 0(r4)
91 addi r4, r4, 4
92 stwio r7, 0(r5)
93 addi r5, r5, 4
94 bne r5, r6, 2b
953:
96
wdenk5c952cf2004-10-10 21:27:30 +000097 /* JUMP TO RELOC ADDR */
98 movhi r4, %hi(_reloc)
99 ori r4, r4, %lo(_reloc)
100 jmp r4
101_reloc:
102
Thomas Chou4a572fa2015-10-06 10:12:59 +0800103 /* STACK INIT -- zero top two words for call back chain. */
wdenk5c952cf2004-10-10 21:27:30 +0000104 addi sp, sp, -8
105 stw r0, 0(sp)
106 stw r0, 4(sp)
107 mov fp, sp
108
Thomas Choue4f348b2015-12-30 20:29:18 +0800109#ifdef CONFIG_DEBUG_UART
110 /* Set up the debug UART */
111 movhi r2, %hi(debug_uart_init@h)
112 ori r2, r2, %lo(debug_uart_init@h)
113 callr r2
114#endif
115
Albert ARIBAUDecc30662015-11-25 17:56:32 +0100116 /* Allocate and initialize reserved area, update SP */
Thomas Chou3e468e62015-09-09 15:09:43 +0800117 mov r4, sp
Albert ARIBAUDecc30662015-11-25 17:56:32 +0100118 movhi r2, %hi(board_init_f_alloc_reserve@h)
119 ori r2, r2, %lo(board_init_f_alloc_reserve@h)
120 callr r2
121 mov sp, r2
122 mov r4, sp
123 movhi r2, %hi(board_init_f_init_reserve@h)
124 ori r2, r2, %lo(board_init_f_init_reserve@h)
Thomas Chou3e468e62015-09-09 15:09:43 +0800125 callr r2
126
Albert ARIBAUDecc30662015-11-25 17:56:32 +0100127 /* Update frame-pointer */
Thomas Chou3e468e62015-09-09 15:09:43 +0800128 mov fp, sp
129
Thomas Chou4a572fa2015-10-06 10:12:59 +0800130 /* Call board_init_f -- never returns */
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800131 mov r4, r0
132 movhi r2, %hi(board_init_f@h)
133 ori r2, r2, %lo(board_init_f@h)
134 callr r2
wdenk5c952cf2004-10-10 21:27:30 +0000135
Thomas Chou4a572fa2015-10-06 10:12:59 +0800136 /*
137 * NEVER RETURNS -- but branch to the _start just
wdenk5c952cf2004-10-10 21:27:30 +0000138 * in case ;-)
139 */
140 br _start
141
Thomas Chou4a572fa2015-10-06 10:12:59 +0800142 /*
143 * relocate_code -- Nios2 handles the relocation above. But
144 * the generic board code monkeys with the heap, stack, etc.
145 * (it makes some assumptions that may not be appropriate
146 * for Nios). Nevertheless, we capitulate here.
147 *
148 * We'll call the board_init_r from here since this isn't
149 * supposed to return.
150 *
151 * void relocate_code (ulong sp, gd_t *global_data,
152 * ulong reloc_addr)
153 * __attribute__ ((noreturn));
154 */
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800155 .text
156 .global relocate_code
157
158relocate_code:
159 mov sp, r4 /* Set the new sp */
160 mov r4, r5
Thomas Chou4192b8c2015-09-07 08:57:14 +0800161
162 /*
163 * ZERO BSS/SBSS -- bss and sbss are assumed to be adjacent
164 * and between __bss_start and __bss_end.
165 */
166 movhi r5, %hi(__bss_start)
167 ori r5, r5, %lo(__bss_start)
168 movhi r6, %hi(__bss_end)
169 ori r6, r6, %lo(__bss_end)
170 beq r5, r6, 5f
171
Thomas Chou9208d7e2015-11-03 13:52:15 +08001724: stw r0, 0(r5)
Thomas Chou4192b8c2015-09-07 08:57:14 +0800173 addi r5, r5, 4
174 bne r5, r6, 4b
1755:
176
Thomas Chou5ff10aa2014-08-22 11:36:47 +0800177 movhi r8, %hi(board_init_r@h)
178 ori r8, r8, %lo(board_init_r@h)
179 callr r8
180 ret