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 | ab2a98b | 2011-07-27 13:22:38 +0200 | [diff] [blame] | 15 | #ifndef CONFIG_SYS_MIPS_CACHE_MODE |
| 16 | #define CONFIG_SYS_MIPS_CACHE_MODE CONF_CM_CACHABLE_NONCOHERENT |
| 17 | #endif |
| 18 | |
Daniel Schwierzeck | dd82128 | 2015-01-18 22:18:38 +0100 | [diff] [blame] | 19 | #ifndef CONFIG_SYS_INIT_SP_ADDR |
| 20 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \ |
| 21 | CONFIG_SYS_INIT_SP_OFFSET) |
| 22 | #endif |
| 23 | |
Shinya Kuribayashi | decaba6 | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 24 | /* |
| 25 | * For the moment disable interrupts, mark the kernel mode and |
| 26 | * set ST0_KX so that the CPU does not spit fire when using |
| 27 | * 64-bit addresses. |
| 28 | */ |
| 29 | .macro setup_c0_status set clr |
| 30 | .set push |
| 31 | mfc0 t0, CP0_STATUS |
| 32 | or t0, ST0_CU0 | \set | 0x1f | \clr |
| 33 | xor t0, 0x1f | \clr |
| 34 | mtc0 t0, CP0_STATUS |
| 35 | .set noreorder |
| 36 | sll zero, 3 # ehb |
| 37 | .set pop |
| 38 | .endm |
| 39 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 40 | .set noreorder |
| 41 | |
| 42 | .globl _start |
| 43 | .text |
| 44 | _start: |
Daniel Schwierzeck | 8b1c734 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 45 | /* U-boot entry point */ |
| 46 | b reset |
| 47 | nop |
| 48 | |
| 49 | .org 0x10 |
Gabor Juhos | 843a76b | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 50 | #if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG) |
Daniel Schwierzeck | 7185adb | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 51 | /* |
| 52 | * Almost all Lantiq XWAY SoC devices have an external bus unit (EBU) to |
| 53 | * access external NOR flashes. If the board boots from NOR flash the |
| 54 | * internal BootROM does a blind read at address 0xB0000010 to read the |
| 55 | * initial configuration for that EBU in order to access the flash |
| 56 | * device with correct parameters. This config option is board-specific. |
| 57 | */ |
| 58 | .word CONFIG_SYS_XWAY_EBU_BOOTCFG |
Daniel Schwierzeck | 8b1c734 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 59 | .word 0x0 |
Paul Burton | 7a9d109 | 2013-11-09 10:22:08 +0000 | [diff] [blame] | 60 | #elif defined(CONFIG_MALTA) |
Gabor Juhos | 843a76b | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 61 | /* |
| 62 | * Linux expects the Board ID here. |
| 63 | */ |
| 64 | .word 0x00000420 # 0x420 (Malta Board with CoreLV) |
| 65 | .word 0x00000000 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 66 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 67 | |
Daniel Schwierzeck | 8b1c734 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 68 | .org 0x200 |
| 69 | /* TLB refill, 32 bit task */ |
| 70 | 1: b 1b |
| 71 | nop |
| 72 | |
| 73 | .org 0x280 |
| 74 | /* XTLB refill, 64 bit task */ |
| 75 | 1: b 1b |
| 76 | nop |
| 77 | |
| 78 | .org 0x300 |
| 79 | /* Cache error exception */ |
| 80 | 1: b 1b |
| 81 | nop |
| 82 | |
| 83 | .org 0x380 |
| 84 | /* General exception */ |
| 85 | 1: b 1b |
| 86 | nop |
| 87 | |
| 88 | .org 0x400 |
| 89 | /* Catch interrupt exceptions */ |
| 90 | 1: b 1b |
| 91 | nop |
| 92 | |
| 93 | .org 0x480 |
| 94 | /* EJTAG debug exception */ |
| 95 | 1: b 1b |
| 96 | nop |
| 97 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 98 | .align 4 |
| 99 | reset: |
| 100 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 101 | /* Clear watch registers */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 102 | MTC0 zero, CP0_WATCHLO |
| 103 | MTC0 zero, CP0_WATCHHI |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 104 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 105 | /* WP(Watch Pending), SW0/1 should be cleared */ |
Shinya Kuribayashi | d43d43e | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 106 | mtc0 zero, CP0_CAUSE |
| 107 | |
Daniel Schwierzeck | 4dc7412 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 108 | setup_c0_status 0 0 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 109 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 110 | /* Init Timer */ |
| 111 | mtc0 zero, CP0_COUNT |
| 112 | mtc0 zero, CP0_COMPARE |
| 113 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 114 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 115 | /* CONFIG0 register */ |
| 116 | li t0, CONF_CM_UNCACHED |
| 117 | mtc0 t0, CP0_CONFIG |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 118 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 119 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 120 | /* |
| 121 | * Initialize $gp, force pointer sized alignment of bal instruction to |
| 122 | * forbid the compiler to put nop's between bal and _gp. This is |
| 123 | * required to keep _gp and ra aligned to 8 byte. |
| 124 | */ |
| 125 | .align PTRLOG |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 126 | bal 1f |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 127 | nop |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 128 | PTR _gp |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 129 | 1: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 130 | PTR_L gp, 0(ra) |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 131 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 132 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
| 133 | /* Initialize any external memory */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 134 | PTR_LA t9, lowlevel_init |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 135 | jalr t9 |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 136 | nop |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 137 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 138 | /* Initialize caches... */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 139 | PTR_LA t9, mips_cache_reset |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 140 | jalr t9 |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 141 | nop |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 142 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 143 | /* ... and enable them */ |
Daniel Schwierzeck | ab2a98b | 2011-07-27 13:22:38 +0200 | [diff] [blame] | 144 | li t0, CONFIG_SYS_MIPS_CACHE_MODE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 145 | mtc0 t0, CP0_CONFIG |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 146 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 147 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 148 | /* Set up temporary stack */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 149 | PTR_LI t0, -16 |
| 150 | PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 151 | and sp, t1, t0 # force 16 byte alignment |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 152 | PTR_SUB sp, sp, GD_SIZE # reserve space for gd |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 153 | and sp, sp, t0 # force 16 byte alignment |
| 154 | move k0, sp # save gd pointer |
| 155 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 156 | PTR_LI t2, CONFIG_SYS_MALLOC_F_LEN |
| 157 | PTR_SUB sp, sp, t2 # reserve space for early malloc |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 158 | and sp, sp, t0 # force 16 byte alignment |
| 159 | #endif |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 160 | move fp, sp |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 161 | |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 162 | /* Clear gd */ |
| 163 | move t0, k0 |
| 164 | 1: |
| 165 | sw zero, 0(t0) |
| 166 | blt t0, t1, 1b |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 167 | PTR_ADDI t0, 4 |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 168 | |
| 169 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 170 | PTR_ADDU t0, k0, GD_MALLOC_BASE # gd->malloc_base offset |
Daniel Schwierzeck | e520023 | 2015-01-18 22:18:39 +0100 | [diff] [blame] | 171 | sw sp, 0(t0) |
| 172 | #endif |
| 173 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 174 | PTR_LA t9, board_init_f |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 175 | jr t9 |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 176 | move ra, zero |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 177 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 178 | /* |
| 179 | * void relocate_code (addr_sp, gd, addr_moni) |
| 180 | * |
| 181 | * This "function" does not return, instead it continues in RAM |
| 182 | * after relocating the monitor code. |
| 183 | * |
| 184 | * a0 = addr_sp |
| 185 | * a1 = gd |
| 186 | * a2 = destination address |
| 187 | */ |
| 188 | .globl relocate_code |
| 189 | .ent relocate_code |
| 190 | relocate_code: |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 191 | move sp, a0 # set new stack pointer |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 192 | move fp, sp |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 193 | |
Gabor Juhos | b2fe86f | 2013-01-24 06:27:53 +0000 | [diff] [blame] | 194 | move s0, a1 # save gd in s0 |
| 195 | move s2, a2 # save destination address in s2 |
| 196 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 197 | PTR_LI t0, CONFIG_SYS_MONITOR_BASE |
| 198 | PTR_SUB s1, s2, t0 # s1 <-- relocation offset |
Gabor Juhos | 248fe03 | 2013-01-24 06:27:54 +0000 | [diff] [blame] | 199 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 200 | PTR_LA t3, in_ram |
| 201 | PTR_L t2, -(3 * PTRSIZE)(t3) # t2 <-- __image_copy_end |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 202 | move t1, a2 |
| 203 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 204 | PTR_ADD gp, s1 # adjust gp |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 205 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 206 | /* |
| 207 | * t0 = source address |
| 208 | * t1 = target address |
| 209 | * t2 = source end address |
| 210 | */ |
| 211 | 1: |
| 212 | lw t3, 0(t0) |
| 213 | sw t3, 0(t1) |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 214 | PTR_ADDU t0, 4 |
Gabor Juhos | 5b7dd81 | 2013-01-24 06:27:51 +0000 | [diff] [blame] | 215 | blt t0, t2, 1b |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 216 | PTR_ADDU t1, 4 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 217 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 218 | /* If caches were enabled, we would have to flush them here. */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 219 | PTR_SUB a1, t1, s2 # a1 <-- size |
| 220 | PTR_LA t9, flush_cache |
Stefan Roese | 71fa071 | 2008-11-18 16:36:12 +0100 | [diff] [blame] | 221 | jalr t9 |
Gabor Juhos | 67d80c9 | 2013-01-24 06:27:55 +0000 | [diff] [blame] | 222 | move a0, s2 # a0 <-- destination address |
Stefan Roese | 71fa071 | 2008-11-18 16:36:12 +0100 | [diff] [blame] | 223 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 224 | /* Jump to where we've relocated ourselves */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 225 | PTR_ADDI t0, s2, in_ram - _start |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 226 | jr t0 |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 227 | nop |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 228 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 229 | PTR __rel_dyn_end |
| 230 | PTR __rel_dyn_start |
| 231 | PTR __image_copy_end |
| 232 | PTR _GLOBAL_OFFSET_TABLE_ |
| 233 | PTR num_got_entries |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 234 | |
| 235 | in_ram: |
Shinya Kuribayashi | 2206921 | 2007-10-21 10:55:36 +0900 | [diff] [blame] | 236 | /* |
| 237 | * Now we want to update GOT. |
| 238 | * |
| 239 | * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object |
| 240 | * generated by GNU ld. Skip these reserved entries from relocation. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 241 | */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 242 | PTR_L t3, -(1 * PTRSIZE)(t0) # t3 <-- num_got_entries |
| 243 | PTR_L t8, -(2 * PTRSIZE)(t0) # t8 <-- _GLOBAL_OFFSET_TABLE_ |
| 244 | PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_ |
| 245 | PTR_ADDI t8, t8, 2 * PTRSIZE # skipping first two entries |
| 246 | PTR_LI t2, 2 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 247 | 1: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 248 | PTR_L t1, 0(t8) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 249 | beqz t1, 2f |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 250 | PTR_ADD t1, s1 |
| 251 | PTR_S t1, 0(t8) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 252 | 2: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 253 | PTR_ADDI t2, 1 |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 254 | blt t2, t3, 1b |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 255 | PTR_ADDI t8, PTRSIZE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 256 | |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 257 | /* Update dynamic relocations */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 258 | PTR_L t1, -(4 * PTRSIZE)(t0) # t1 <-- __rel_dyn_start |
| 259 | PTR_L t2, -(5 * PTRSIZE)(t0) # t2 <-- __rel_dyn_end |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 260 | |
| 261 | b 2f # skip first reserved entry |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 262 | PTR_ADDI t1, 2 * PTRSIZE |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 263 | |
| 264 | 1: |
Gabor Juhos | 691995f | 2013-06-13 12:59:28 +0200 | [diff] [blame] | 265 | lw t8, -4(t1) # t8 <-- relocation info |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 266 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 267 | PTR_LI t3, 3 |
Gabor Juhos | 691995f | 2013-06-13 12:59:28 +0200 | [diff] [blame] | 268 | bne t8, t3, 2f # skip non R_MIPS_REL32 entries |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 269 | nop |
| 270 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 271 | 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] | 272 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 273 | PTR_L t8, 0(t3) # t8 <-- original pointer |
| 274 | PTR_ADD t8, s1 # t8 <-- adjusted pointer |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 275 | |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 276 | PTR_ADD t3, s1 # t3 <-- location to fix up in RAM |
| 277 | PTR_S t8, 0(t3) |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 278 | |
| 279 | 2: |
| 280 | blt t1, t2, 1b |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 281 | PTR_ADDI t1, 2 * PTRSIZE # each rel.dyn entry is 2*PTRSIZE bytes |
Gabor Juhos | 04380c6 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 282 | |
Daniel Schwierzeck | 696a3b2 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 283 | /* |
| 284 | * Clear BSS |
| 285 | * |
| 286 | * GOT is now relocated. Thus __bss_start and __bss_end can be |
| 287 | * accessed directly via $gp. |
| 288 | */ |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 289 | PTR_LA t1, __bss_start # t1 <-- __bss_start |
| 290 | PTR_LA t2, __bss_end # t2 <-- __bss_end |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 291 | |
Shinya Kuribayashi | 03c031d | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 292 | 1: |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 293 | PTR_S zero, 0(t1) |
Daniel Schwierzeck | 696a3b2 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 294 | blt t1, t2, 1b |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 295 | PTR_ADDI t1, PTRSIZE |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 296 | |
Shinya Kuribayashi | 7aa1f19 | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 297 | move a0, s0 # a0 <-- gd |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 298 | move a1, s2 |
Paul Burton | a39b1cb | 2015-01-29 10:04:08 +0000 | [diff] [blame^] | 299 | PTR_LA t9, board_init_r |
Shinya Kuribayashi | 43c5092 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 300 | jr t9 |
Daniel Schwierzeck | 6d08e22 | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 301 | move ra, zero |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 302 | |
| 303 | .end relocate_code |