wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Startup Code for MIPS32 CPU-core |
| 3 | * |
| 4 | * Copyright (c) 2003 Wolfgang Denk <wd@denx.de> |
| 5 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Wolfgang Denk | 0191e47 | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 9 | #include <asm-offsets.h> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 10 | #include <config.h> |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 11 | #include <asm/asm.h> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 12 | #include <asm/regdef.h> |
| 13 | #include <asm/mipsregs.h> |
| 14 | |
Daniel Schwierzeck | 2814459 | 2015-01-18 22:18:38 +0100 | [diff] [blame] | 15 | #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 Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 20 | #ifdef CONFIG_32BIT |
| 21 | # define MIPS_RELOC 3 |
Paul Burton | debf0e0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 22 | # define STATUS_SET 0 |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 23 | #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 Burton | debf0e0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 34 | # define STATUS_SET ST0_KX |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 35 | #endif |
| 36 | |
Shinya Kuribayashi | 2300af1 | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 37 | /* |
| 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 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 53 | .set noreorder |
| 54 | |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 55 | ENTRY(_start) |
Bin Meng | 7557405 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 56 | /* U-Boot entry point */ |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 57 | b reset |
| 58 | nop |
| 59 | |
| 60 | .org 0x10 |
Gabor Juhos | b6be59a | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 61 | #if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG) |
Daniel Schwierzeck | 6ff8ae0 | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 62 | /* |
| 63 | * Almost all Lantiq XWAY SoC devices have an external bus unit (EBU) to |
| 64 | * access external NOR flashes. If the board boots from NOR flash the |
| 65 | * internal BootROM does a blind read at address 0xB0000010 to read the |
| 66 | * initial configuration for that EBU in order to access the flash |
| 67 | * device with correct parameters. This config option is board-specific. |
| 68 | */ |
| 69 | .word CONFIG_SYS_XWAY_EBU_BOOTCFG |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 70 | .word 0x0 |
Paul Burton | 10a74b5 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 71 | #elif defined(CONFIG_MALTA) |
Gabor Juhos | b6be59a | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 72 | /* |
| 73 | * Linux expects the Board ID here. |
| 74 | */ |
| 75 | .word 0x00000420 # 0x420 (Malta Board with CoreLV) |
| 76 | .word 0x00000000 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 77 | #endif |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 78 | |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 79 | .org 0x200 |
| 80 | /* TLB refill, 32 bit task */ |
| 81 | 1: b 1b |
| 82 | nop |
| 83 | |
| 84 | .org 0x280 |
| 85 | /* XTLB refill, 64 bit task */ |
| 86 | 1: b 1b |
| 87 | nop |
| 88 | |
| 89 | .org 0x300 |
| 90 | /* Cache error exception */ |
| 91 | 1: b 1b |
| 92 | nop |
| 93 | |
| 94 | .org 0x380 |
| 95 | /* General exception */ |
| 96 | 1: b 1b |
| 97 | nop |
| 98 | |
| 99 | .org 0x400 |
| 100 | /* Catch interrupt exceptions */ |
| 101 | 1: b 1b |
| 102 | nop |
| 103 | |
| 104 | .org 0x480 |
| 105 | /* EJTAG debug exception */ |
| 106 | 1: b 1b |
| 107 | nop |
| 108 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 109 | .align 4 |
| 110 | reset: |
| 111 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 112 | /* Clear watch registers */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 113 | MTC0 zero, CP0_WATCHLO |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 114 | mtc0 zero, CP0_WATCHHI |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 115 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 116 | /* WP(Watch Pending), SW0/1 should be cleared */ |
Shinya Kuribayashi | 79727f8 | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 117 | mtc0 zero, CP0_CAUSE |
| 118 | |
Paul Burton | debf0e0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 119 | setup_c0_status STATUS_SET 0 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 120 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 121 | /* Init Timer */ |
| 122 | mtc0 zero, CP0_COUNT |
| 123 | mtc0 zero, CP0_COMPARE |
| 124 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 125 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 4f5561c | 2016-09-21 11:18:50 +0100 | [diff] [blame] | 126 | mfc0 t0, CP0_CONFIG |
| 127 | and t0, t0, MIPS_CONF_IMPL |
| 128 | or t0, t0, CONF_CM_UNCACHED |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 129 | mtc0 t0, CP0_CONFIG |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 130 | #endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 131 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 132 | /* |
| 133 | * Initialize $gp, force pointer sized alignment of bal instruction to |
| 134 | * forbid the compiler to put nop's between bal and _gp. This is |
| 135 | * required to keep _gp and ra aligned to 8 byte. |
| 136 | */ |
| 137 | .align PTRLOG |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 138 | bal 1f |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 139 | nop |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 140 | PTR _gp |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 141 | 1: |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 142 | PTR_L gp, 0(ra) |
Wolfgang Denk | 117b0b1 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 143 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 144 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 145 | # ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 146 | /* Initialize any external memory */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 147 | PTR_LA t9, lowlevel_init |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 148 | jalr t9 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 149 | nop |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 150 | # endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 151 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 152 | /* Initialize caches... */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 153 | PTR_LA t9, mips_cache_reset |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 154 | jalr t9 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 155 | nop |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 156 | |
| 157 | # ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
| 158 | /* Initialize any external memory */ |
| 159 | PTR_LA t9, lowlevel_init |
| 160 | jalr t9 |
| 161 | nop |
| 162 | # endif |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 163 | #endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 164 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 165 | /* Set up temporary stack */ |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 166 | li t0, -16 |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 167 | PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 168 | and sp, t1, t0 # force 16 byte alignment |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 169 | PTR_SUBU \ |
| 170 | sp, sp, GD_SIZE # reserve space for gd |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 171 | and sp, sp, t0 # force 16 byte alignment |
| 172 | move k0, sp # save gd pointer |
| 173 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 174 | li t2, CONFIG_SYS_MALLOC_F_LEN |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 175 | PTR_SUBU \ |
| 176 | sp, sp, t2 # reserve space for early malloc |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 177 | and sp, sp, t0 # force 16 byte alignment |
| 178 | #endif |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 179 | move fp, sp |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 180 | |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 181 | /* Clear gd */ |
| 182 | move t0, k0 |
| 183 | 1: |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 184 | PTR_S zero, 0(t0) |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 185 | blt t0, t1, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 186 | PTR_ADDIU t0, PTRSIZE |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 187 | |
| 188 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 189 | PTR_S sp, GD_MALLOC_BASE(k0) # gd->malloc_base offset |
Daniel Schwierzeck | 01cab27 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 190 | #endif |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 191 | |
Purna Chandra Mandal | 5c8cdf4 | 2016-01-21 20:02:51 +0530 | [diff] [blame] | 192 | move a0, zero # a0 <-- boot_flags = 0 |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 193 | PTR_LA t9, board_init_f |
Shinya Kuribayashi | 9dabea1 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 194 | jr t9 |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 195 | move ra, zero |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 196 | |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 197 | END(_start) |
| 198 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 199 | /* |
| 200 | * void relocate_code (addr_sp, gd, addr_moni) |
| 201 | * |
| 202 | * This "function" does not return, instead it continues in RAM |
| 203 | * after relocating the monitor code. |
| 204 | * |
| 205 | * a0 = addr_sp |
| 206 | * a1 = gd |
| 207 | * a2 = destination address |
| 208 | */ |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 209 | ENTRY(relocate_code) |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 210 | move sp, a0 # set new stack pointer |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 211 | move fp, sp |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 212 | |
Gabor Juhos | f902d46 | 2013-01-24 06:27:53 +0000 | [diff] [blame] | 213 | move s0, a1 # save gd in s0 |
| 214 | move s2, a2 # save destination address in s2 |
| 215 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 216 | PTR_LI t0, CONFIG_SYS_MONITOR_BASE |
| 217 | PTR_SUB s1, s2, t0 # s1 <-- relocation offset |
Gabor Juhos | fac2f65 | 2013-01-24 06:27:54 +0000 | [diff] [blame] | 218 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 219 | PTR_LA t3, in_ram |
| 220 | PTR_L t2, -(3 * PTRSIZE)(t3) # t2 <-- __image_copy_end |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 221 | move t1, a2 |
| 222 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 223 | PTR_ADD gp, s1 # adjust gp |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 224 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 225 | /* |
| 226 | * t0 = source address |
| 227 | * t1 = target address |
| 228 | * t2 = source end address |
| 229 | */ |
| 230 | 1: |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 231 | PTR_L t3, 0(t0) |
| 232 | PTR_S t3, 0(t1) |
| 233 | PTR_ADDU t0, PTRSIZE |
Gabor Juhos | 9a081ab | 2013-01-24 06:27:51 +0000 | [diff] [blame] | 234 | blt t0, t2, 1b |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 235 | PTR_ADDU t1, PTRSIZE |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 236 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 237 | /* If caches were enabled, we would have to flush them here. */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 238 | PTR_SUB a1, t1, s2 # a1 <-- size |
| 239 | PTR_LA t9, flush_cache |
Stefan Roese | aed3f50 | 2008-11-18 16:36:12 +0100 | [diff] [blame] | 240 | jalr t9 |
Gabor Juhos | eb59024 | 2013-01-24 06:27:55 +0000 | [diff] [blame] | 241 | move a0, s2 # a0 <-- destination address |
Stefan Roese | aed3f50 | 2008-11-18 16:36:12 +0100 | [diff] [blame] | 242 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 243 | /* Jump to where we've relocated ourselves */ |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 244 | PTR_ADDIU t0, s2, in_ram - _start |
Shinya Kuribayashi | 9dabea1 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 245 | jr t0 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 246 | nop |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 247 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 248 | PTR __rel_dyn_end |
| 249 | PTR __rel_dyn_start |
| 250 | PTR __image_copy_end |
| 251 | PTR _GLOBAL_OFFSET_TABLE_ |
| 252 | PTR num_got_entries |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 253 | |
| 254 | in_ram: |
Shinya Kuribayashi | 7cb5676 | 2007-10-21 10:55:36 +0900 | [diff] [blame] | 255 | /* |
| 256 | * Now we want to update GOT. |
| 257 | * |
| 258 | * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object |
| 259 | * generated by GNU ld. Skip these reserved entries from relocation. |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 260 | */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 261 | PTR_L t3, -(1 * PTRSIZE)(t0) # t3 <-- num_got_entries |
| 262 | PTR_L t8, -(2 * PTRSIZE)(t0) # t8 <-- _GLOBAL_OFFSET_TABLE_ |
| 263 | PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_ |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 264 | PTR_ADDIU t8, t8, 2 * PTRSIZE # skipping first two entries |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 265 | PTR_LI t2, 2 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 266 | 1: |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 267 | PTR_L t1, 0(t8) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 268 | beqz t1, 2f |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 269 | PTR_ADD t1, s1 |
| 270 | PTR_S t1, 0(t8) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 271 | 2: |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 272 | PTR_ADDIU t2, 1 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 273 | blt t2, t3, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 274 | PTR_ADDIU t8, PTRSIZE |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 275 | |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 276 | /* Update dynamic relocations */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 277 | PTR_L t1, -(4 * PTRSIZE)(t0) # t1 <-- __rel_dyn_start |
| 278 | PTR_L t2, -(5 * PTRSIZE)(t0) # t2 <-- __rel_dyn_end |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 279 | |
| 280 | b 2f # skip first reserved entry |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 281 | PTR_ADDIU t1, 2 * PTRSIZE |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 282 | |
| 283 | 1: |
Gabor Juhos | b847879 | 2013-06-13 12:59:28 +0200 | [diff] [blame] | 284 | lw t8, -4(t1) # t8 <-- relocation info |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 285 | |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 286 | PTR_LI t3, MIPS_RELOC |
| 287 | bne t8, t3, 2f # skip non-MIPS_RELOC entries |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 288 | nop |
| 289 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 290 | PTR_L t3, -(2 * PTRSIZE)(t1) # t3 <-- location to fix up in FLASH |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 291 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 292 | PTR_L t8, 0(t3) # t8 <-- original pointer |
| 293 | PTR_ADD t8, s1 # t8 <-- adjusted pointer |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 294 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 295 | PTR_ADD t3, s1 # t3 <-- location to fix up in RAM |
| 296 | PTR_S t8, 0(t3) |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 297 | |
| 298 | 2: |
| 299 | blt t1, t2, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 300 | PTR_ADDIU t1, 2 * PTRSIZE # each rel.dyn entry is 2*PTRSIZE bytes |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 301 | |
Daniel Schwierzeck | 0de9cc5 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 302 | /* |
| 303 | * Clear BSS |
| 304 | * |
| 305 | * GOT is now relocated. Thus __bss_start and __bss_end can be |
| 306 | * accessed directly via $gp. |
| 307 | */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 308 | PTR_LA t1, __bss_start # t1 <-- __bss_start |
| 309 | PTR_LA t2, __bss_end # t2 <-- __bss_end |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 310 | |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 311 | 1: |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 312 | PTR_S zero, 0(t1) |
Daniel Schwierzeck | 0de9cc5 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 313 | blt t1, t2, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 314 | PTR_ADDIU t1, PTRSIZE |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 315 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 316 | move a0, s0 # a0 <-- gd |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 317 | move a1, s2 |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 318 | PTR_LA t9, board_init_r |
Shinya Kuribayashi | 9dabea1 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 319 | jr t9 |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 320 | move ra, zero |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 321 | |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 322 | END(relocate_code) |