wdenk | c021880 | 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 | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 9 | #include <asm-offsets.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 10 | #include <config.h> |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 11 | #include <asm/asm.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 12 | #include <asm/regdef.h> |
| 13 | #include <asm/mipsregs.h> |
| 14 | |
Daniel Schwierzeck | dd82128 | 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 | ab0d002 | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 20 | #ifdef CONFIG_32BIT |
| 21 | # define MIPS_RELOC 3 |
Paul Burton | f1c64a0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 22 | # define STATUS_SET 0 |
Paul Burton | ab0d002 | 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 | f1c64a0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 34 | # define STATUS_SET ST0_KX |
Paul Burton | ab0d002 | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 35 | #endif |
| 36 | |
Shinya Kuribayashi | decaba6 | 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 | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 53 | .set noreorder |
| 54 | |
Daniel Schwierzeck | 1134929 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 55 | ENTRY(_start) |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 56 | /* U-Boot entry point */ |
Daniel Schwierzeck | 8b1c734 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 57 | b reset |
| 58 | nop |
| 59 | |
| 60 | .org 0x10 |
Gabor Juhos | 843a76b | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 61 | #if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG) |
Daniel Schwierzeck | 7185adb | 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 | 8b1c734 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 70 | .word 0x0 |
Paul Burton | 7a9d109 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 71 | #elif defined(CONFIG_MALTA) |
Gabor Juhos | 843a76b | 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 | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 77 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 78 | |
Daniel Schwierzeck | 8b1c734 | 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 | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 109 | .align 4 |
| 110 | reset: |
Paul Burton | 31d36f7 | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 111 | #if __mips_isa_rev >= 6 |
| 112 | mfc0 t0, CP0_CONFIG, 5 |
| 113 | and t0, t0, MIPS_CONF5_VP |
| 114 | beqz t0, 1f |
| 115 | nop |
| 116 | |
| 117 | b 2f |
| 118 | mfc0 t0, CP0_GLOBALNUMBER |
| 119 | #endif |
| 120 | |
| 121 | 1: mfc0 t0, CP0_EBASE |
| 122 | and t0, t0, EBASE_CPUNUM |
| 123 | |
| 124 | /* Hang if this isn't the first CPU in the system */ |
| 125 | 2: beqz t0, 4f |
| 126 | nop |
| 127 | 3: wait |
| 128 | b 3b |
| 129 | nop |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 130 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 131 | /* Clear watch registers */ |
Paul Burton | 31d36f7 | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 132 | 4: MTC0 zero, CP0_WATCHLO |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 133 | mtc0 zero, CP0_WATCHHI |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 134 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 135 | /* WP(Watch Pending), SW0/1 should be cleared */ |
Shinya Kuribayashi | d43d43e | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 136 | mtc0 zero, CP0_CAUSE |
| 137 | |
Paul Burton | f1c64a0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 138 | setup_c0_status STATUS_SET 0 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 139 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 140 | /* Init Timer */ |
| 141 | mtc0 zero, CP0_COUNT |
| 142 | mtc0 zero, CP0_COMPARE |
| 143 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 144 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 4f9226b | 2016-09-21 11:18:50 +0100 | [diff] [blame] | 145 | mfc0 t0, CP0_CONFIG |
| 146 | and t0, t0, MIPS_CONF_IMPL |
| 147 | or t0, t0, CONF_CM_UNCACHED |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 148 | mtc0 t0, CP0_CONFIG |
Paul Burton | c5b8412 | 2016-09-21 11:18:57 +0100 | [diff] [blame] | 149 | ehb |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 150 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 151 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 152 | /* |
| 153 | * Initialize $gp, force pointer sized alignment of bal instruction to |
| 154 | * forbid the compiler to put nop's between bal and _gp. This is |
| 155 | * required to keep _gp and ra aligned to 8 byte. |
| 156 | */ |
| 157 | .align PTRLOG |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 158 | bal 1f |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 159 | nop |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 160 | PTR _gp |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 161 | 1: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 162 | PTR_L gp, 0(ra) |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 163 | |
Paul Burton | b2b135d | 2016-09-21 11:18:53 +0100 | [diff] [blame] | 164 | #ifdef CONFIG_MIPS_CM |
| 165 | PTR_LA t9, mips_cm_map |
| 166 | jalr t9 |
| 167 | nop |
| 168 | #endif |
| 169 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 170 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | f898127 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 171 | # ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 172 | /* Initialize any external memory */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 173 | PTR_LA t9, lowlevel_init |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 174 | jalr t9 |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 175 | nop |
Paul Burton | f898127 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 176 | # endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 177 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 178 | /* Initialize caches... */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 179 | PTR_LA t9, mips_cache_reset |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 180 | jalr t9 |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 181 | nop |
Paul Burton | f898127 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 182 | |
| 183 | # ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
| 184 | /* Initialize any external memory */ |
| 185 | PTR_LA t9, lowlevel_init |
| 186 | jalr t9 |
| 187 | nop |
| 188 | # endif |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 189 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 190 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 191 | /* Set up temporary stack */ |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 192 | li t0, -16 |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 193 | PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 194 | and sp, t1, t0 # force 16 byte alignment |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 195 | PTR_SUBU \ |
| 196 | sp, sp, GD_SIZE # reserve space for gd |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 197 | and sp, sp, t0 # force 16 byte alignment |
| 198 | move k0, sp # save gd pointer |
| 199 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 200 | li t2, CONFIG_SYS_MALLOC_F_LEN |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 201 | PTR_SUBU \ |
| 202 | sp, sp, t2 # reserve space for early malloc |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 203 | and sp, sp, t0 # force 16 byte alignment |
| 204 | #endif |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 205 | move fp, sp |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 206 | |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 207 | /* Clear gd */ |
| 208 | move t0, k0 |
| 209 | 1: |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 210 | PTR_S zero, 0(t0) |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 211 | blt t0, t1, 1b |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 212 | PTR_ADDIU t0, PTRSIZE |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 213 | |
| 214 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 215 | PTR_S sp, GD_MALLOC_BASE(k0) # gd->malloc_base offset |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 216 | #endif |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 217 | |
Purna Chandra Mandal | a627909 | 2016-01-21 20:02:51 +0530 | [diff] [blame] | 218 | move a0, zero # a0 <-- boot_flags = 0 |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 219 | PTR_LA t9, board_init_f |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 220 | jr t9 |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 221 | move ra, zero |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 222 | |
Daniel Schwierzeck | 1134929 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 223 | END(_start) |
| 224 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 225 | /* |
| 226 | * void relocate_code (addr_sp, gd, addr_moni) |
| 227 | * |
| 228 | * This "function" does not return, instead it continues in RAM |
| 229 | * after relocating the monitor code. |
| 230 | * |
| 231 | * a0 = addr_sp |
| 232 | * a1 = gd |
| 233 | * a2 = destination address |
| 234 | */ |
Daniel Schwierzeck | 1134929 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 235 | ENTRY(relocate_code) |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 236 | move sp, a0 # set new stack pointer |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 237 | move fp, sp |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 238 | |
Gabor Juhos | b2fe86f | 2013-01-24 06:27:53 +0000 | [diff] [blame] | 239 | move s0, a1 # save gd in s0 |
| 240 | move s2, a2 # save destination address in s2 |
| 241 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 242 | PTR_LI t0, CONFIG_SYS_MONITOR_BASE |
| 243 | PTR_SUB s1, s2, t0 # s1 <-- relocation offset |
Gabor Juhos | 248fe03 | 2013-01-24 06:27:54 +0000 | [diff] [blame] | 244 | |
Paul Burton | d263cda | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 245 | PTR_LA t2, __image_copy_end |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 246 | move t1, a2 |
| 247 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 248 | /* |
| 249 | * t0 = source address |
| 250 | * t1 = target address |
| 251 | * t2 = source end address |
| 252 | */ |
| 253 | 1: |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 254 | PTR_L t3, 0(t0) |
| 255 | PTR_S t3, 0(t1) |
| 256 | PTR_ADDU t0, PTRSIZE |
Gabor Juhos | 5b7dd81 | 2013-01-24 06:27:51 +0000 | [diff] [blame] | 257 | blt t0, t2, 1b |
Daniel Schwierzeck | e26e8dc | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 258 | PTR_ADDU t1, PTRSIZE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 259 | |
Shinya Kuribayashi | 2206921 | 2007-10-21 10:55:36 +0900 | [diff] [blame] | 260 | /* |
| 261 | * Now we want to update GOT. |
| 262 | * |
| 263 | * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object |
| 264 | * generated by GNU ld. Skip these reserved entries from relocation. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 265 | */ |
Paul Burton | d263cda | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 266 | PTR_LA t3, num_got_entries |
| 267 | PTR_LA t8, _GLOBAL_OFFSET_TABLE_ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 268 | PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_ |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 269 | PTR_ADDIU t8, t8, 2 * PTRSIZE # skipping first two entries |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 270 | PTR_LI t2, 2 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 271 | 1: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 272 | PTR_L t1, 0(t8) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 273 | beqz t1, 2f |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 274 | PTR_ADD t1, s1 |
| 275 | PTR_S t1, 0(t8) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 276 | 2: |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 277 | PTR_ADDIU t2, 1 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 278 | blt t2, t3, 1b |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 279 | PTR_ADDIU t8, PTRSIZE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 280 | |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 281 | /* Update dynamic relocations */ |
Paul Burton | d263cda | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 282 | PTR_LA t1, __rel_dyn_start |
| 283 | PTR_LA t2, __rel_dyn_end |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 284 | |
| 285 | b 2f # skip first reserved entry |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 286 | PTR_ADDIU t1, 2 * PTRSIZE |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 287 | |
| 288 | 1: |
Gabor Juhos | 691995f | 2013-06-13 12:59:28 +0200 | [diff] [blame] | 289 | lw t8, -4(t1) # t8 <-- relocation info |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 290 | |
Paul Burton | ab0d002 | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 291 | PTR_LI t3, MIPS_RELOC |
| 292 | bne t8, t3, 2f # skip non-MIPS_RELOC entries |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 293 | nop |
| 294 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 295 | PTR_L t3, -(2 * PTRSIZE)(t1) # t3 <-- location to fix up in FLASH |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 296 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 297 | PTR_L t8, 0(t3) # t8 <-- original pointer |
| 298 | PTR_ADD t8, s1 # t8 <-- adjusted pointer |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 299 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 300 | PTR_ADD t3, s1 # t3 <-- location to fix up in RAM |
| 301 | PTR_S t8, 0(t3) |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 302 | |
| 303 | 2: |
| 304 | blt t1, t2, 1b |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 305 | PTR_ADDIU t1, 2 * PTRSIZE # each rel.dyn entry is 2*PTRSIZE bytes |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 306 | |
Daniel Schwierzeck | 696a3b2 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 307 | /* |
Paul Burton | d263cda | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 308 | * Flush caches to ensure our newly modified instructions are visible |
| 309 | * to the instruction cache. We're still running with the old GOT, so |
| 310 | * apply the reloc offset to the start address. |
| 311 | */ |
| 312 | PTR_LA a0, __text_start |
| 313 | PTR_LA a1, __text_end |
| 314 | PTR_SUB a1, a1, a0 |
| 315 | PTR_LA t9, flush_cache |
| 316 | jalr t9 |
| 317 | PTR_ADD a0, s1 |
| 318 | |
| 319 | PTR_ADD gp, s1 # adjust gp |
| 320 | |
| 321 | /* |
Daniel Schwierzeck | 696a3b2 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 322 | * Clear BSS |
| 323 | * |
| 324 | * GOT is now relocated. Thus __bss_start and __bss_end can be |
| 325 | * accessed directly via $gp. |
| 326 | */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 327 | PTR_LA t1, __bss_start # t1 <-- __bss_start |
| 328 | PTR_LA t2, __bss_end # t2 <-- __bss_end |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 329 | |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 330 | 1: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 331 | PTR_S zero, 0(t1) |
Daniel Schwierzeck | 696a3b2 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 332 | blt t1, t2, 1b |
Paul Burton | 9f8ac82 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 333 | PTR_ADDIU t1, PTRSIZE |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 334 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 335 | move a0, s0 # a0 <-- gd |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 336 | move a1, s2 |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 337 | PTR_LA t9, board_init_r |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 338 | jr t9 |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 339 | move ra, zero |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 340 | |
Daniel Schwierzeck | 1134929 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 341 | END(relocate_code) |