blob: 6740fdf9ed272eda6bc7213ad02db57fc68f7d7b [file] [log] [blame]
wdenkbb1b8262003-03-27 12:09:35 +00001/*
2 * Startup Code for MIPS32 CPU-core
3 *
4 * Copyright (c) 2003 Wolfgang Denk <wd@denx.de>
5 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
wdenkbb1b8262003-03-27 12:09:35 +00007 */
8
Wolfgang Denk0191e472010-10-26 14:34:52 +02009#include <asm-offsets.h>
wdenkbb1b8262003-03-27 12:09:35 +000010#include <config.h>
Paul Burtonce14da22015-01-29 10:04:08 +000011#include <asm/asm.h>
wdenkbb1b8262003-03-27 12:09:35 +000012#include <asm/regdef.h>
13#include <asm/mipsregs.h>
14
Daniel Schwierzeck28144592015-01-18 22:18:38 +010015#ifndef CONFIG_SYS_INIT_SP_ADDR
16#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
17 CONFIG_SYS_INIT_SP_OFFSET)
18#endif
19
Paul Burtoncb2ab2f2015-01-29 10:04:09 +000020#ifdef CONFIG_32BIT
21# define MIPS_RELOC 3
Paul Burtondebf0e02015-01-29 10:04:10 +000022# define STATUS_SET 0
Paul Burtoncb2ab2f2015-01-29 10:04:09 +000023#endif
24
25#ifdef CONFIG_64BIT
26# ifdef CONFIG_SYS_LITTLE_ENDIAN
27# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
28 (((r_type) << 24) | ((r_type2) << 16) | ((r_type3) << 8) | (ssym))
29# else
30# define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \
31 ((r_type) | ((r_type2) << 8) | ((r_type3) << 16) | (ssym) << 24)
32# endif
33# define MIPS_RELOC MIPS64_R_INFO(0x00, 0x00, 0x12, 0x03)
Paul Burtondebf0e02015-01-29 10:04:10 +000034# define STATUS_SET ST0_KX
Paul Burtoncb2ab2f2015-01-29 10:04:09 +000035#endif
36
wdenkbb1b8262003-03-27 12:09:35 +000037 .set noreorder
38
Daniel Schwierzeckecf0d792016-02-08 00:37:59 +010039 .macro init_wr sel
40 MTC0 zero, CP0_WATCHLO,\sel
41 mtc0 t1, CP0_WATCHHI,\sel
42 mfc0 t0, CP0_WATCHHI,\sel
43 bgez t0, wr_done
44 nop
45 .endm
46
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +010047 .macro uhi_mips_exception
48 move k0, t9 # preserve t9 in k0
49 move k1, a0 # preserve a0 in k1
50 li t9, 15 # UHI exception operation
51 li a0, 0 # Use hard register context
52 sdbbp 1 # Invoke UHI operation
53 .endm
54
Daniel Schwierzeck993a1222016-09-25 18:36:38 +020055 .macro setup_stack_gd
56 li t0, -16
57 PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR
58 and sp, t1, t0 # force 16 byte alignment
59 PTR_SUBU \
60 sp, sp, GD_SIZE # reserve space for gd
61 and sp, sp, t0 # force 16 byte alignment
62 move k0, sp # save gd pointer
63#ifdef CONFIG_SYS_MALLOC_F_LEN
64 li t2, CONFIG_SYS_MALLOC_F_LEN
65 PTR_SUBU \
66 sp, sp, t2 # reserve space for early malloc
67 and sp, sp, t0 # force 16 byte alignment
68#endif
69 move fp, sp
70
71 /* Clear gd */
72 move t0, k0
731:
74 PTR_S zero, 0(t0)
75 blt t0, t1, 1b
76 PTR_ADDIU t0, PTRSIZE
77
78#ifdef CONFIG_SYS_MALLOC_F_LEN
79 PTR_S sp, GD_MALLOC_BASE(k0) # gd->malloc_base offset
80#endif
81 .endm
82
Daniel Schwierzeck7509b572015-12-19 20:20:45 +010083ENTRY(_start)
Bin Meng75574052016-02-05 19:30:11 -080084 /* U-Boot entry point */
Daniel Schwierzeckec443162013-02-12 22:22:12 +010085 b reset
Daniel Schwierzeckecf0d792016-02-08 00:37:59 +010086 mtc0 zero, CP0_COUNT # clear cp0 count for most accurate boot timing
Daniel Schwierzeckec443162013-02-12 22:22:12 +010087
Gabor Juhosb6be59a2013-05-22 03:57:46 +000088#if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG)
Daniel Schwierzeck6ff8ae02011-07-27 13:22:37 +020089 /*
90 * Almost all Lantiq XWAY SoC devices have an external bus unit (EBU) to
91 * access external NOR flashes. If the board boots from NOR flash the
92 * internal BootROM does a blind read at address 0xB0000010 to read the
93 * initial configuration for that EBU in order to access the flash
94 * device with correct parameters. This config option is board-specific.
95 */
Daniel Schwierzeck754cd052016-02-14 18:52:57 +010096 .org 0x10
Daniel Schwierzeck6ff8ae02011-07-27 13:22:37 +020097 .word CONFIG_SYS_XWAY_EBU_BOOTCFG
Daniel Schwierzeckec443162013-02-12 22:22:12 +010098 .word 0x0
Daniel Schwierzeck754cd052016-02-14 18:52:57 +010099#endif
100#if defined(CONFIG_MALTA)
Gabor Juhosb6be59a2013-05-22 03:57:46 +0000101 /*
102 * Linux expects the Board ID here.
103 */
Daniel Schwierzeck754cd052016-02-14 18:52:57 +0100104 .org 0x10
Gabor Juhosb6be59a2013-05-22 03:57:46 +0000105 .word 0x00000420 # 0x420 (Malta Board with CoreLV)
106 .word 0x00000000
wdenkbb1b8262003-03-27 12:09:35 +0000107#endif
wdenk57b2d802003-06-27 21:31:46 +0000108
Daniel Schwierzeck754cd052016-02-14 18:52:57 +0100109#if defined(CONFIG_ROM_EXCEPTION_VECTORS)
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100110 /*
111 * Exception vector entry points. When running from ROM, an exception
112 * cannot be handled. Halt execution and transfer control to debugger,
113 * if one is attached.
114 */
Daniel Schwierzeckec443162013-02-12 22:22:12 +0100115 .org 0x200
116 /* TLB refill, 32 bit task */
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100117 uhi_mips_exception
Daniel Schwierzeckec443162013-02-12 22:22:12 +0100118
119 .org 0x280
120 /* XTLB refill, 64 bit task */
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100121 uhi_mips_exception
Daniel Schwierzeckec443162013-02-12 22:22:12 +0100122
123 .org 0x300
124 /* Cache error exception */
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100125 uhi_mips_exception
Daniel Schwierzeckec443162013-02-12 22:22:12 +0100126
127 .org 0x380
128 /* General exception */
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100129 uhi_mips_exception
Daniel Schwierzeckec443162013-02-12 22:22:12 +0100130
131 .org 0x400
132 /* Catch interrupt exceptions */
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100133 uhi_mips_exception
Daniel Schwierzeckec443162013-02-12 22:22:12 +0100134
135 .org 0x480
136 /* EJTAG debug exception */
1371: b 1b
138 nop
139
Daniel Schwierzeck754cd052016-02-14 18:52:57 +0100140 .org 0x500
141#endif
142
wdenkbb1b8262003-03-27 12:09:35 +0000143reset:
Paul Burtonfcdc1fb2016-09-21 14:59:54 +0100144#if __mips_isa_rev >= 6
145 mfc0 t0, CP0_CONFIG, 5
146 and t0, t0, MIPS_CONF5_VP
147 beqz t0, 1f
148 nop
149
150 b 2f
151 mfc0 t0, CP0_GLOBALNUMBER
152#endif
153
1541: mfc0 t0, CP0_EBASE
155 and t0, t0, EBASE_CPUNUM
156
157 /* Hang if this isn't the first CPU in the system */
1582: beqz t0, 4f
159 nop
1603: wait
161 b 3b
162 nop
wdenkbb1b8262003-03-27 12:09:35 +0000163
Daniel Schwierzeckecf0d792016-02-08 00:37:59 +0100164 /* Init CP0 Status */
1654: mfc0 t0, CP0_STATUS
166 and t0, ST0_IMPL
167 or t0, ST0_BEV | ST0_ERL | STATUS_SET
168 mtc0 t0, CP0_STATUS
169
170 /*
171 * Check whether CP0 Config1 is implemented. If not continue
172 * with legacy Watch register initialization.
173 */
174 mfc0 t0, CP0_CONFIG
175 bgez t0, wr_legacy
176 nop
177
178 /*
179 * Check WR bit in CP0 Config1 to determine if Watch registers
180 * are implemented.
181 */
182 mfc0 t0, CP0_CONFIG, 1
183 andi t0, (1 << 3)
184 beqz t0, wr_done
185 nop
186
187 /* Clear Watch Status bits and disable watch exceptions */
188 li t1, 0x7 # Clear I, R and W conditions
189 init_wr 0
190 init_wr 1
191 init_wr 2
192 init_wr 3
193 init_wr 4
194 init_wr 5
195 init_wr 6
196 init_wr 7
197 b wr_done
198 nop
199
200wr_legacy:
201 MTC0 zero, CP0_WATCHLO
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100202 mtc0 zero, CP0_WATCHHI
wdenkbb1b8262003-03-27 12:09:35 +0000203
Daniel Schwierzeckecf0d792016-02-08 00:37:59 +0100204wr_done:
205 /* Clear WP, IV and SW interrupts */
Shinya Kuribayashi79727f82008-03-25 21:30:07 +0900206 mtc0 zero, CP0_CAUSE
207
Daniel Schwierzeckecf0d792016-02-08 00:37:59 +0100208 /* Clear timer interrupt (CP0_COUNT cleared on branch to 'reset') */
wdenkbb1b8262003-03-27 12:09:35 +0000209 mtc0 zero, CP0_COMPARE
210
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900211#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Paul Burton4f5561c2016-09-21 11:18:50 +0100212 mfc0 t0, CP0_CONFIG
213 and t0, t0, MIPS_CONF_IMPL
214 or t0, t0, CONF_CM_UNCACHED
wdenkbb1b8262003-03-27 12:09:35 +0000215 mtc0 t0, CP0_CONFIG
Paul Burton82c9d892016-09-21 11:18:57 +0100216 ehb
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900217#endif
wdenkbb1b8262003-03-27 12:09:35 +0000218
Paul Burtonce14da22015-01-29 10:04:08 +0000219 /*
220 * Initialize $gp, force pointer sized alignment of bal instruction to
221 * forbid the compiler to put nop's between bal and _gp. This is
222 * required to keep _gp and ra aligned to 8 byte.
223 */
224 .align PTRLOG
Shinya Kuribayashic7faac52007-10-27 15:27:06 +0900225 bal 1f
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900226 nop
Paul Burtonce14da22015-01-29 10:04:08 +0000227 PTR _gp
Shinya Kuribayashic7faac52007-10-27 15:27:06 +09002281:
Paul Burtonce14da22015-01-29 10:04:08 +0000229 PTR_L gp, 0(ra)
Wolfgang Denk117b0b12005-12-01 02:15:07 +0100230
Paul Burton79ac1742016-09-21 11:18:53 +0100231#ifdef CONFIG_MIPS_CM
232 PTR_LA t9, mips_cm_map
233 jalr t9
234 nop
235#endif
236
Daniel Schwierzeck41dc35e2016-06-04 16:13:21 +0200237#ifdef CONFIG_MIPS_INIT_STACK_IN_SRAM
238 /* Set up initial stack and global data */
239 setup_stack_gd
240#endif
241
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900242#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Paul Burton68b4c752016-09-21 11:18:51 +0100243# ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900244 /* Initialize any external memory */
Paul Burtonce14da22015-01-29 10:04:08 +0000245 PTR_LA t9, lowlevel_init
Shinya Kuribayashic7faac52007-10-27 15:27:06 +0900246 jalr t9
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900247 nop
Paul Burton68b4c752016-09-21 11:18:51 +0100248# endif
wdenkbb1b8262003-03-27 12:09:35 +0000249
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900250 /* Initialize caches... */
Paul Burtonce14da22015-01-29 10:04:08 +0000251 PTR_LA t9, mips_cache_reset
Shinya Kuribayashic7faac52007-10-27 15:27:06 +0900252 jalr t9
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900253 nop
Paul Burton68b4c752016-09-21 11:18:51 +0100254
255# ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
256 /* Initialize any external memory */
257 PTR_LA t9, lowlevel_init
258 jalr t9
259 nop
260# endif
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900261#endif
wdenkbb1b8262003-03-27 12:09:35 +0000262
Daniel Schwierzeck41dc35e2016-06-04 16:13:21 +0200263#ifndef CONFIG_MIPS_INIT_STACK_IN_SRAM
Daniel Schwierzeck993a1222016-09-25 18:36:38 +0200264 /* Set up initial stack and global data */
265 setup_stack_gd
Daniel Schwierzeck41dc35e2016-06-04 16:13:21 +0200266#endif
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100267
Purna Chandra Mandal5c8cdf42016-01-21 20:02:51 +0530268 move a0, zero # a0 <-- boot_flags = 0
Paul Burtonce14da22015-01-29 10:04:08 +0000269 PTR_LA t9, board_init_f
Daniel Schwierzeck8b2fd072016-02-07 19:39:58 +0100270
Shinya Kuribayashi9dabea12008-04-17 23:35:13 +0900271 jr t9
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100272 move ra, zero
wdenkbb1b8262003-03-27 12:09:35 +0000273
Daniel Schwierzeck7509b572015-12-19 20:20:45 +0100274 END(_start)
275
wdenkbb1b8262003-03-27 12:09:35 +0000276/*
277 * void relocate_code (addr_sp, gd, addr_moni)
278 *
279 * This "function" does not return, instead it continues in RAM
280 * after relocating the monitor code.
281 *
282 * a0 = addr_sp
283 * a1 = gd
284 * a2 = destination address
285 */
Daniel Schwierzeck7509b572015-12-19 20:20:45 +0100286ENTRY(relocate_code)
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900287 move sp, a0 # set new stack pointer
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100288 move fp, sp
wdenkbb1b8262003-03-27 12:09:35 +0000289
Gabor Juhosf902d462013-01-24 06:27:53 +0000290 move s0, a1 # save gd in s0
291 move s2, a2 # save destination address in s2
292
Paul Burtonce14da22015-01-29 10:04:08 +0000293 PTR_LI t0, CONFIG_SYS_MONITOR_BASE
294 PTR_SUB s1, s2, t0 # s1 <-- relocation offset
Gabor Juhosfac2f652013-01-24 06:27:54 +0000295
Paul Burton92a06ee2016-09-21 11:11:06 +0100296 PTR_LA t2, __image_copy_end
wdenk874ac262003-07-24 23:38:38 +0000297 move t1, a2
298
wdenkbb1b8262003-03-27 12:09:35 +0000299 /*
300 * t0 = source address
301 * t1 = target address
302 * t2 = source end address
303 */
3041:
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100305 PTR_L t3, 0(t0)
306 PTR_S t3, 0(t1)
307 PTR_ADDU t0, PTRSIZE
Gabor Juhos9a081ab2013-01-24 06:27:51 +0000308 blt t0, t2, 1b
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100309 PTR_ADDU t1, PTRSIZE
wdenkbb1b8262003-03-27 12:09:35 +0000310
Shinya Kuribayashi7cb56762007-10-21 10:55:36 +0900311 /*
312 * Now we want to update GOT.
313 *
314 * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object
315 * generated by GNU ld. Skip these reserved entries from relocation.
wdenkbb1b8262003-03-27 12:09:35 +0000316 */
Paul Burton92a06ee2016-09-21 11:11:06 +0100317 PTR_LA t3, num_got_entries
318 PTR_LA t8, _GLOBAL_OFFSET_TABLE_
Paul Burtonce14da22015-01-29 10:04:08 +0000319 PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_
Paul Burton53c98262016-05-16 10:52:10 +0100320 PTR_ADDIU t8, t8, 2 * PTRSIZE # skipping first two entries
Paul Burtonce14da22015-01-29 10:04:08 +0000321 PTR_LI t2, 2
wdenkbb1b8262003-03-27 12:09:35 +00003221:
Paul Burtonce14da22015-01-29 10:04:08 +0000323 PTR_L t1, 0(t8)
wdenkbb1b8262003-03-27 12:09:35 +0000324 beqz t1, 2f
Paul Burtonce14da22015-01-29 10:04:08 +0000325 PTR_ADD t1, s1
326 PTR_S t1, 0(t8)
wdenkbb1b8262003-03-27 12:09:35 +00003272:
Paul Burton53c98262016-05-16 10:52:10 +0100328 PTR_ADDIU t2, 1
wdenkbb1b8262003-03-27 12:09:35 +0000329 blt t2, t3, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100330 PTR_ADDIU t8, PTRSIZE
wdenkbb1b8262003-03-27 12:09:35 +0000331
Gabor Juhos84937ab2013-02-12 22:22:13 +0100332 /* Update dynamic relocations */
Paul Burton92a06ee2016-09-21 11:11:06 +0100333 PTR_LA t1, __rel_dyn_start
334 PTR_LA t2, __rel_dyn_end
Gabor Juhos84937ab2013-02-12 22:22:13 +0100335
336 b 2f # skip first reserved entry
Paul Burton53c98262016-05-16 10:52:10 +0100337 PTR_ADDIU t1, 2 * PTRSIZE
Gabor Juhos84937ab2013-02-12 22:22:13 +0100338
3391:
Gabor Juhosb8478792013-06-13 12:59:28 +0200340 lw t8, -4(t1) # t8 <-- relocation info
Gabor Juhos84937ab2013-02-12 22:22:13 +0100341
Paul Burtoncb2ab2f2015-01-29 10:04:09 +0000342 PTR_LI t3, MIPS_RELOC
343 bne t8, t3, 2f # skip non-MIPS_RELOC entries
Gabor Juhos84937ab2013-02-12 22:22:13 +0100344 nop
345
Paul Burtonce14da22015-01-29 10:04:08 +0000346 PTR_L t3, -(2 * PTRSIZE)(t1) # t3 <-- location to fix up in FLASH
Gabor Juhos84937ab2013-02-12 22:22:13 +0100347
Paul Burtonce14da22015-01-29 10:04:08 +0000348 PTR_L t8, 0(t3) # t8 <-- original pointer
349 PTR_ADD t8, s1 # t8 <-- adjusted pointer
Gabor Juhos84937ab2013-02-12 22:22:13 +0100350
Paul Burtonce14da22015-01-29 10:04:08 +0000351 PTR_ADD t3, s1 # t3 <-- location to fix up in RAM
352 PTR_S t8, 0(t3)
Gabor Juhos84937ab2013-02-12 22:22:13 +0100353
3542:
355 blt t1, t2, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100356 PTR_ADDIU t1, 2 * PTRSIZE # each rel.dyn entry is 2*PTRSIZE bytes
Gabor Juhos84937ab2013-02-12 22:22:13 +0100357
Daniel Schwierzeck0de9cc52013-02-12 22:22:13 +0100358 /*
Paul Burton92a06ee2016-09-21 11:11:06 +0100359 * Flush caches to ensure our newly modified instructions are visible
360 * to the instruction cache. We're still running with the old GOT, so
361 * apply the reloc offset to the start address.
362 */
363 PTR_LA a0, __text_start
364 PTR_LA a1, __text_end
365 PTR_SUB a1, a1, a0
366 PTR_LA t9, flush_cache
367 jalr t9
368 PTR_ADD a0, s1
369
370 PTR_ADD gp, s1 # adjust gp
371
372 /*
Daniel Schwierzeck0de9cc52013-02-12 22:22:13 +0100373 * Clear BSS
374 *
375 * GOT is now relocated. Thus __bss_start and __bss_end can be
376 * accessed directly via $gp.
377 */
Paul Burtonce14da22015-01-29 10:04:08 +0000378 PTR_LA t1, __bss_start # t1 <-- __bss_start
379 PTR_LA t2, __bss_end # t2 <-- __bss_end
wdenkbb1b8262003-03-27 12:09:35 +0000380
Shinya Kuribayashic7faac52007-10-27 15:27:06 +09003811:
Paul Burtonce14da22015-01-29 10:04:08 +0000382 PTR_S zero, 0(t1)
Daniel Schwierzeck0de9cc52013-02-12 22:22:13 +0100383 blt t1, t2, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100384 PTR_ADDIU t1, PTRSIZE
wdenk57b2d802003-06-27 21:31:46 +0000385
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900386 move a0, s0 # a0 <-- gd
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100387 move a1, s2
Paul Burtonce14da22015-01-29 10:04:08 +0000388 PTR_LA t9, board_init_r
Shinya Kuribayashi9dabea12008-04-17 23:35:13 +0900389 jr t9
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100390 move ra, zero
wdenkbb1b8262003-03-27 12:09:35 +0000391
Daniel Schwierzeck7509b572015-12-19 20:20:45 +0100392 END(relocate_code)