blob: 108d2df38adb104cfef652353c70097471191fcd [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
Shinya Kuribayashi2300af12008-03-25 21:30:07 +090037 /*
38 * For the moment disable interrupts, mark the kernel mode and
39 * set ST0_KX so that the CPU does not spit fire when using
40 * 64-bit addresses.
41 */
42 .macro setup_c0_status set clr
43 .set push
44 mfc0 t0, CP0_STATUS
45 or t0, ST0_CU0 | \set | 0x1f | \clr
46 xor t0, 0x1f | \clr
47 mtc0 t0, CP0_STATUS
48 .set noreorder
49 sll zero, 3 # ehb
50 .set pop
51 .endm
52
wdenkbb1b8262003-03-27 12:09:35 +000053 .set noreorder
54
Daniel Schwierzeck7509b572015-12-19 20:20:45 +010055ENTRY(_start)
Bin Meng75574052016-02-05 19:30:11 -080056 /* U-Boot entry point */
Daniel Schwierzeckec443162013-02-12 22:22:12 +010057 b reset
58 nop
59
Gabor Juhosb6be59a2013-05-22 03:57:46 +000060#if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG)
Daniel Schwierzeck6ff8ae02011-07-27 13:22:37 +020061 /*
62 * Almost all Lantiq XWAY SoC devices have an external bus unit (EBU) to
63 * access external NOR flashes. If the board boots from NOR flash the
64 * internal BootROM does a blind read at address 0xB0000010 to read the
65 * initial configuration for that EBU in order to access the flash
66 * device with correct parameters. This config option is board-specific.
67 */
Daniel Schwierzeck754cd052016-02-14 18:52:57 +010068 .org 0x10
Daniel Schwierzeck6ff8ae02011-07-27 13:22:37 +020069 .word CONFIG_SYS_XWAY_EBU_BOOTCFG
Daniel Schwierzeckec443162013-02-12 22:22:12 +010070 .word 0x0
Daniel Schwierzeck754cd052016-02-14 18:52:57 +010071#endif
72#if defined(CONFIG_MALTA)
Gabor Juhosb6be59a2013-05-22 03:57:46 +000073 /*
74 * Linux expects the Board ID here.
75 */
Daniel Schwierzeck754cd052016-02-14 18:52:57 +010076 .org 0x10
Gabor Juhosb6be59a2013-05-22 03:57:46 +000077 .word 0x00000420 # 0x420 (Malta Board with CoreLV)
78 .word 0x00000000
wdenkbb1b8262003-03-27 12:09:35 +000079#endif
wdenk57b2d802003-06-27 21:31:46 +000080
Daniel Schwierzeck754cd052016-02-14 18:52:57 +010081#if defined(CONFIG_ROM_EXCEPTION_VECTORS)
Daniel Schwierzeckec443162013-02-12 22:22:12 +010082 .org 0x200
83 /* TLB refill, 32 bit task */
841: b 1b
85 nop
86
87 .org 0x280
88 /* XTLB refill, 64 bit task */
891: b 1b
90 nop
91
92 .org 0x300
93 /* Cache error exception */
941: b 1b
95 nop
96
97 .org 0x380
98 /* General exception */
991: b 1b
100 nop
101
102 .org 0x400
103 /* Catch interrupt exceptions */
1041: b 1b
105 nop
106
107 .org 0x480
108 /* EJTAG debug exception */
1091: b 1b
110 nop
111
Daniel Schwierzeck754cd052016-02-14 18:52:57 +0100112 .org 0x500
113#endif
114
wdenkbb1b8262003-03-27 12:09:35 +0000115reset:
Paul Burtonfcdc1fb2016-09-21 14:59:54 +0100116#if __mips_isa_rev >= 6
117 mfc0 t0, CP0_CONFIG, 5
118 and t0, t0, MIPS_CONF5_VP
119 beqz t0, 1f
120 nop
121
122 b 2f
123 mfc0 t0, CP0_GLOBALNUMBER
124#endif
125
1261: mfc0 t0, CP0_EBASE
127 and t0, t0, EBASE_CPUNUM
128
129 /* Hang if this isn't the first CPU in the system */
1302: beqz t0, 4f
131 nop
1323: wait
133 b 3b
134 nop
wdenkbb1b8262003-03-27 12:09:35 +0000135
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900136 /* Clear watch registers */
Paul Burtonfcdc1fb2016-09-21 14:59:54 +01001374: MTC0 zero, CP0_WATCHLO
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100138 mtc0 zero, CP0_WATCHHI
wdenkbb1b8262003-03-27 12:09:35 +0000139
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900140 /* WP(Watch Pending), SW0/1 should be cleared */
Shinya Kuribayashi79727f82008-03-25 21:30:07 +0900141 mtc0 zero, CP0_CAUSE
142
Paul Burtondebf0e02015-01-29 10:04:10 +0000143 setup_c0_status STATUS_SET 0
wdenkbb1b8262003-03-27 12:09:35 +0000144
wdenkbb1b8262003-03-27 12:09:35 +0000145 /* Init Timer */
146 mtc0 zero, CP0_COUNT
147 mtc0 zero, CP0_COMPARE
148
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900149#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Paul Burton4f5561c2016-09-21 11:18:50 +0100150 mfc0 t0, CP0_CONFIG
151 and t0, t0, MIPS_CONF_IMPL
152 or t0, t0, CONF_CM_UNCACHED
wdenkbb1b8262003-03-27 12:09:35 +0000153 mtc0 t0, CP0_CONFIG
Paul Burton82c9d892016-09-21 11:18:57 +0100154 ehb
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900155#endif
wdenkbb1b8262003-03-27 12:09:35 +0000156
Paul Burtonce14da22015-01-29 10:04:08 +0000157 /*
158 * Initialize $gp, force pointer sized alignment of bal instruction to
159 * forbid the compiler to put nop's between bal and _gp. This is
160 * required to keep _gp and ra aligned to 8 byte.
161 */
162 .align PTRLOG
Shinya Kuribayashic7faac52007-10-27 15:27:06 +0900163 bal 1f
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900164 nop
Paul Burtonce14da22015-01-29 10:04:08 +0000165 PTR _gp
Shinya Kuribayashic7faac52007-10-27 15:27:06 +09001661:
Paul Burtonce14da22015-01-29 10:04:08 +0000167 PTR_L gp, 0(ra)
Wolfgang Denk117b0b12005-12-01 02:15:07 +0100168
Paul Burton79ac1742016-09-21 11:18:53 +0100169#ifdef CONFIG_MIPS_CM
170 PTR_LA t9, mips_cm_map
171 jalr t9
172 nop
173#endif
174
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900175#ifndef CONFIG_SKIP_LOWLEVEL_INIT
Paul Burton68b4c752016-09-21 11:18:51 +0100176# ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900177 /* Initialize any external memory */
Paul Burtonce14da22015-01-29 10:04:08 +0000178 PTR_LA t9, lowlevel_init
Shinya Kuribayashic7faac52007-10-27 15:27:06 +0900179 jalr t9
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900180 nop
Paul Burton68b4c752016-09-21 11:18:51 +0100181# endif
wdenkbb1b8262003-03-27 12:09:35 +0000182
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900183 /* Initialize caches... */
Paul Burtonce14da22015-01-29 10:04:08 +0000184 PTR_LA t9, mips_cache_reset
Shinya Kuribayashic7faac52007-10-27 15:27:06 +0900185 jalr t9
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900186 nop
Paul Burton68b4c752016-09-21 11:18:51 +0100187
188# ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD
189 /* Initialize any external memory */
190 PTR_LA t9, lowlevel_init
191 jalr t9
192 nop
193# endif
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900194#endif
wdenkbb1b8262003-03-27 12:09:35 +0000195
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900196 /* Set up temporary stack */
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100197 li t0, -16
Paul Burtonce14da22015-01-29 10:04:08 +0000198 PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100199 and sp, t1, t0 # force 16 byte alignment
Paul Burton53c98262016-05-16 10:52:10 +0100200 PTR_SUBU \
201 sp, sp, GD_SIZE # reserve space for gd
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100202 and sp, sp, t0 # force 16 byte alignment
203 move k0, sp # save gd pointer
204#ifdef CONFIG_SYS_MALLOC_F_LEN
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100205 li t2, CONFIG_SYS_MALLOC_F_LEN
Paul Burton53c98262016-05-16 10:52:10 +0100206 PTR_SUBU \
207 sp, sp, t2 # reserve space for early malloc
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100208 and sp, sp, t0 # force 16 byte alignment
209#endif
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100210 move fp, sp
wdenkbb1b8262003-03-27 12:09:35 +0000211
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100212 /* Clear gd */
213 move t0, k0
2141:
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100215 PTR_S zero, 0(t0)
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100216 blt t0, t1, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100217 PTR_ADDIU t0, PTRSIZE
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100218
219#ifdef CONFIG_SYS_MALLOC_F_LEN
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100220 PTR_S sp, GD_MALLOC_BASE(k0) # gd->malloc_base offset
Daniel Schwierzeck01cab272015-01-18 22:18:39 +0100221#endif
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100222
Purna Chandra Mandal5c8cdf42016-01-21 20:02:51 +0530223 move a0, zero # a0 <-- boot_flags = 0
Paul Burtonce14da22015-01-29 10:04:08 +0000224 PTR_LA t9, board_init_f
Shinya Kuribayashi9dabea12008-04-17 23:35:13 +0900225 jr t9
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100226 move ra, zero
wdenkbb1b8262003-03-27 12:09:35 +0000227
Daniel Schwierzeck7509b572015-12-19 20:20:45 +0100228 END(_start)
229
wdenkbb1b8262003-03-27 12:09:35 +0000230/*
231 * void relocate_code (addr_sp, gd, addr_moni)
232 *
233 * This "function" does not return, instead it continues in RAM
234 * after relocating the monitor code.
235 *
236 * a0 = addr_sp
237 * a1 = gd
238 * a2 = destination address
239 */
Daniel Schwierzeck7509b572015-12-19 20:20:45 +0100240ENTRY(relocate_code)
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900241 move sp, a0 # set new stack pointer
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100242 move fp, sp
wdenkbb1b8262003-03-27 12:09:35 +0000243
Gabor Juhosf902d462013-01-24 06:27:53 +0000244 move s0, a1 # save gd in s0
245 move s2, a2 # save destination address in s2
246
Paul Burtonce14da22015-01-29 10:04:08 +0000247 PTR_LI t0, CONFIG_SYS_MONITOR_BASE
248 PTR_SUB s1, s2, t0 # s1 <-- relocation offset
Gabor Juhosfac2f652013-01-24 06:27:54 +0000249
Paul Burton92a06ee2016-09-21 11:11:06 +0100250 PTR_LA t2, __image_copy_end
wdenk874ac262003-07-24 23:38:38 +0000251 move t1, a2
252
wdenkbb1b8262003-03-27 12:09:35 +0000253 /*
254 * t0 = source address
255 * t1 = target address
256 * t2 = source end address
257 */
2581:
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100259 PTR_L t3, 0(t0)
260 PTR_S t3, 0(t1)
261 PTR_ADDU t0, PTRSIZE
Gabor Juhos9a081ab2013-01-24 06:27:51 +0000262 blt t0, t2, 1b
Daniel Schwierzeck7aa71642016-01-09 22:24:47 +0100263 PTR_ADDU t1, PTRSIZE
wdenkbb1b8262003-03-27 12:09:35 +0000264
Shinya Kuribayashi7cb56762007-10-21 10:55:36 +0900265 /*
266 * Now we want to update GOT.
267 *
268 * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object
269 * generated by GNU ld. Skip these reserved entries from relocation.
wdenkbb1b8262003-03-27 12:09:35 +0000270 */
Paul Burton92a06ee2016-09-21 11:11:06 +0100271 PTR_LA t3, num_got_entries
272 PTR_LA t8, _GLOBAL_OFFSET_TABLE_
Paul Burtonce14da22015-01-29 10:04:08 +0000273 PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_
Paul Burton53c98262016-05-16 10:52:10 +0100274 PTR_ADDIU t8, t8, 2 * PTRSIZE # skipping first two entries
Paul Burtonce14da22015-01-29 10:04:08 +0000275 PTR_LI t2, 2
wdenkbb1b8262003-03-27 12:09:35 +00002761:
Paul Burtonce14da22015-01-29 10:04:08 +0000277 PTR_L t1, 0(t8)
wdenkbb1b8262003-03-27 12:09:35 +0000278 beqz t1, 2f
Paul Burtonce14da22015-01-29 10:04:08 +0000279 PTR_ADD t1, s1
280 PTR_S t1, 0(t8)
wdenkbb1b8262003-03-27 12:09:35 +00002812:
Paul Burton53c98262016-05-16 10:52:10 +0100282 PTR_ADDIU t2, 1
wdenkbb1b8262003-03-27 12:09:35 +0000283 blt t2, t3, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100284 PTR_ADDIU t8, PTRSIZE
wdenkbb1b8262003-03-27 12:09:35 +0000285
Gabor Juhos84937ab2013-02-12 22:22:13 +0100286 /* Update dynamic relocations */
Paul Burton92a06ee2016-09-21 11:11:06 +0100287 PTR_LA t1, __rel_dyn_start
288 PTR_LA t2, __rel_dyn_end
Gabor Juhos84937ab2013-02-12 22:22:13 +0100289
290 b 2f # skip first reserved entry
Paul Burton53c98262016-05-16 10:52:10 +0100291 PTR_ADDIU t1, 2 * PTRSIZE
Gabor Juhos84937ab2013-02-12 22:22:13 +0100292
2931:
Gabor Juhosb8478792013-06-13 12:59:28 +0200294 lw t8, -4(t1) # t8 <-- relocation info
Gabor Juhos84937ab2013-02-12 22:22:13 +0100295
Paul Burtoncb2ab2f2015-01-29 10:04:09 +0000296 PTR_LI t3, MIPS_RELOC
297 bne t8, t3, 2f # skip non-MIPS_RELOC entries
Gabor Juhos84937ab2013-02-12 22:22:13 +0100298 nop
299
Paul Burtonce14da22015-01-29 10:04:08 +0000300 PTR_L t3, -(2 * PTRSIZE)(t1) # t3 <-- location to fix up in FLASH
Gabor Juhos84937ab2013-02-12 22:22:13 +0100301
Paul Burtonce14da22015-01-29 10:04:08 +0000302 PTR_L t8, 0(t3) # t8 <-- original pointer
303 PTR_ADD t8, s1 # t8 <-- adjusted pointer
Gabor Juhos84937ab2013-02-12 22:22:13 +0100304
Paul Burtonce14da22015-01-29 10:04:08 +0000305 PTR_ADD t3, s1 # t3 <-- location to fix up in RAM
306 PTR_S t8, 0(t3)
Gabor Juhos84937ab2013-02-12 22:22:13 +0100307
3082:
309 blt t1, t2, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100310 PTR_ADDIU t1, 2 * PTRSIZE # each rel.dyn entry is 2*PTRSIZE bytes
Gabor Juhos84937ab2013-02-12 22:22:13 +0100311
Daniel Schwierzeck0de9cc52013-02-12 22:22:13 +0100312 /*
Paul Burton92a06ee2016-09-21 11:11:06 +0100313 * Flush caches to ensure our newly modified instructions are visible
314 * to the instruction cache. We're still running with the old GOT, so
315 * apply the reloc offset to the start address.
316 */
317 PTR_LA a0, __text_start
318 PTR_LA a1, __text_end
319 PTR_SUB a1, a1, a0
320 PTR_LA t9, flush_cache
321 jalr t9
322 PTR_ADD a0, s1
323
324 PTR_ADD gp, s1 # adjust gp
325
326 /*
Daniel Schwierzeck0de9cc52013-02-12 22:22:13 +0100327 * Clear BSS
328 *
329 * GOT is now relocated. Thus __bss_start and __bss_end can be
330 * accessed directly via $gp.
331 */
Paul Burtonce14da22015-01-29 10:04:08 +0000332 PTR_LA t1, __bss_start # t1 <-- __bss_start
333 PTR_LA t2, __bss_end # t2 <-- __bss_end
wdenkbb1b8262003-03-27 12:09:35 +0000334
Shinya Kuribayashic7faac52007-10-27 15:27:06 +09003351:
Paul Burtonce14da22015-01-29 10:04:08 +0000336 PTR_S zero, 0(t1)
Daniel Schwierzeck0de9cc52013-02-12 22:22:13 +0100337 blt t1, t2, 1b
Paul Burton53c98262016-05-16 10:52:10 +0100338 PTR_ADDIU t1, PTRSIZE
wdenk57b2d802003-06-27 21:31:46 +0000339
Shinya Kuribayashi6911d0a2011-05-07 00:18:13 +0900340 move a0, s0 # a0 <-- gd
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100341 move a1, s2
Paul Burtonce14da22015-01-29 10:04:08 +0000342 PTR_LA t9, board_init_r
Shinya Kuribayashi9dabea12008-04-17 23:35:13 +0900343 jr t9
Daniel Schwierzeckf224c1a2014-11-20 23:55:32 +0100344 move ra, zero
wdenkbb1b8262003-03-27 12:09:35 +0000345
Daniel Schwierzeck7509b572015-12-19 20:20:45 +0100346 END(relocate_code)