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 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 37 | .set noreorder |
| 38 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 39 | .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 Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 47 | .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 Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 55 | .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 |
| 73 | 1: |
| 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 Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 83 | ENTRY(_start) |
Bin Meng | 7557405 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 84 | /* U-Boot entry point */ |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 85 | b reset |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 86 | mtc0 zero, CP0_COUNT # clear cp0 count for most accurate boot timing |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 87 | |
Gabor Juhos | b6be59a | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 88 | #if defined(CONFIG_SYS_XWAY_EBU_BOOTCFG) |
Daniel Schwierzeck | 6ff8ae0 | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 89 | /* |
| 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 Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 96 | .org 0x10 |
Daniel Schwierzeck | 6ff8ae0 | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 97 | .word CONFIG_SYS_XWAY_EBU_BOOTCFG |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 98 | .word 0x0 |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 99 | #endif |
| 100 | #if defined(CONFIG_MALTA) |
Gabor Juhos | b6be59a | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 101 | /* |
| 102 | * Linux expects the Board ID here. |
| 103 | */ |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 104 | .org 0x10 |
Gabor Juhos | b6be59a | 2013-05-22 03:57:46 +0000 | [diff] [blame] | 105 | .word 0x00000420 # 0x420 (Malta Board with CoreLV) |
| 106 | .word 0x00000000 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 107 | #endif |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 108 | |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 109 | #if defined(CONFIG_ROM_EXCEPTION_VECTORS) |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 110 | /* |
| 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 Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 115 | .org 0x200 |
| 116 | /* TLB refill, 32 bit task */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 117 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 118 | |
| 119 | .org 0x280 |
| 120 | /* XTLB refill, 64 bit task */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 121 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 122 | |
| 123 | .org 0x300 |
| 124 | /* Cache error exception */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 125 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 126 | |
| 127 | .org 0x380 |
| 128 | /* General exception */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 129 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 130 | |
| 131 | .org 0x400 |
| 132 | /* Catch interrupt exceptions */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 133 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 134 | |
| 135 | .org 0x480 |
| 136 | /* EJTAG debug exception */ |
| 137 | 1: b 1b |
| 138 | nop |
| 139 | |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 140 | .org 0x500 |
| 141 | #endif |
| 142 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 143 | reset: |
Paul Burton | fcdc1fb | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 144 | #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 | |
Álvaro Fernández Rojas | 98a97a8 | 2017-04-25 00:39:20 +0200 | [diff] [blame] | 154 | #ifdef CONFIG_ARCH_BMIPS |
| 155 | 1: mfc0 t0, CP0_DIAGNOSTIC, 3 |
| 156 | and t0, t0, (1 << 31) |
| 157 | #else |
Paul Burton | fcdc1fb | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 158 | 1: mfc0 t0, CP0_EBASE |
| 159 | and t0, t0, EBASE_CPUNUM |
Álvaro Fernández Rojas | 98a97a8 | 2017-04-25 00:39:20 +0200 | [diff] [blame] | 160 | #endif |
Paul Burton | fcdc1fb | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 161 | |
| 162 | /* Hang if this isn't the first CPU in the system */ |
| 163 | 2: beqz t0, 4f |
| 164 | nop |
| 165 | 3: wait |
| 166 | b 3b |
| 167 | nop |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 168 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 169 | /* Init CP0 Status */ |
| 170 | 4: mfc0 t0, CP0_STATUS |
| 171 | and t0, ST0_IMPL |
| 172 | or t0, ST0_BEV | ST0_ERL | STATUS_SET |
| 173 | mtc0 t0, CP0_STATUS |
| 174 | |
| 175 | /* |
| 176 | * Check whether CP0 Config1 is implemented. If not continue |
| 177 | * with legacy Watch register initialization. |
| 178 | */ |
| 179 | mfc0 t0, CP0_CONFIG |
| 180 | bgez t0, wr_legacy |
| 181 | nop |
| 182 | |
| 183 | /* |
| 184 | * Check WR bit in CP0 Config1 to determine if Watch registers |
| 185 | * are implemented. |
| 186 | */ |
| 187 | mfc0 t0, CP0_CONFIG, 1 |
| 188 | andi t0, (1 << 3) |
| 189 | beqz t0, wr_done |
| 190 | nop |
| 191 | |
| 192 | /* Clear Watch Status bits and disable watch exceptions */ |
| 193 | li t1, 0x7 # Clear I, R and W conditions |
| 194 | init_wr 0 |
| 195 | init_wr 1 |
| 196 | init_wr 2 |
| 197 | init_wr 3 |
| 198 | init_wr 4 |
| 199 | init_wr 5 |
| 200 | init_wr 6 |
| 201 | init_wr 7 |
| 202 | b wr_done |
| 203 | nop |
| 204 | |
| 205 | wr_legacy: |
| 206 | MTC0 zero, CP0_WATCHLO |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 207 | mtc0 zero, CP0_WATCHHI |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 208 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 209 | wr_done: |
| 210 | /* Clear WP, IV and SW interrupts */ |
Shinya Kuribayashi | 79727f8 | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 211 | mtc0 zero, CP0_CAUSE |
| 212 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 213 | /* Clear timer interrupt (CP0_COUNT cleared on branch to 'reset') */ |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 214 | mtc0 zero, CP0_COMPARE |
| 215 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 216 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 4f5561c | 2016-09-21 11:18:50 +0100 | [diff] [blame] | 217 | mfc0 t0, CP0_CONFIG |
| 218 | and t0, t0, MIPS_CONF_IMPL |
| 219 | or t0, t0, CONF_CM_UNCACHED |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 220 | mtc0 t0, CP0_CONFIG |
Paul Burton | 82c9d89 | 2016-09-21 11:18:57 +0100 | [diff] [blame] | 221 | ehb |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 222 | #endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 223 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 224 | /* |
| 225 | * Initialize $gp, force pointer sized alignment of bal instruction to |
| 226 | * forbid the compiler to put nop's between bal and _gp. This is |
| 227 | * required to keep _gp and ra aligned to 8 byte. |
| 228 | */ |
| 229 | .align PTRLOG |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 230 | bal 1f |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 231 | nop |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 232 | PTR _gp |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 233 | 1: |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 234 | PTR_L gp, 0(ra) |
Wolfgang Denk | 117b0b1 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 235 | |
Paul Burton | 79ac174 | 2016-09-21 11:18:53 +0100 | [diff] [blame] | 236 | #ifdef CONFIG_MIPS_CM |
| 237 | PTR_LA t9, mips_cm_map |
| 238 | jalr t9 |
| 239 | nop |
| 240 | #endif |
| 241 | |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 242 | #ifdef CONFIG_MIPS_INIT_STACK_IN_SRAM |
| 243 | /* Set up initial stack and global data */ |
| 244 | setup_stack_gd |
Daniel Schwierzeck | fd32b13 | 2017-04-24 19:03:34 +0200 | [diff] [blame] | 245 | |
| 246 | # ifdef CONFIG_DEBUG_UART |
| 247 | /* Earliest point to set up debug uart */ |
| 248 | PTR_LA t9, debug_uart_init |
| 249 | jalr t9 |
| 250 | nop |
| 251 | # endif |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 252 | #endif |
| 253 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 254 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 255 | # ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 256 | /* Initialize any external memory */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 257 | PTR_LA t9, lowlevel_init |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 258 | jalr t9 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 259 | nop |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 260 | # endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 261 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 262 | /* Initialize caches... */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 263 | PTR_LA t9, mips_cache_reset |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 264 | jalr t9 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 265 | nop |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 266 | |
| 267 | # ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
| 268 | /* Initialize any external memory */ |
| 269 | PTR_LA t9, lowlevel_init |
| 270 | jalr t9 |
| 271 | nop |
| 272 | # endif |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 273 | #endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 274 | |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 275 | #ifndef CONFIG_MIPS_INIT_STACK_IN_SRAM |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 276 | /* Set up initial stack and global data */ |
| 277 | setup_stack_gd |
Daniel Schwierzeck | fd32b13 | 2017-04-24 19:03:34 +0200 | [diff] [blame] | 278 | |
| 279 | # ifdef CONFIG_DEBUG_UART |
| 280 | /* Earliest point to set up debug uart */ |
| 281 | PTR_LA t9, debug_uart_init |
| 282 | jalr t9 |
| 283 | nop |
| 284 | # endif |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 285 | #endif |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 286 | |
Purna Chandra Mandal | 5c8cdf4 | 2016-01-21 20:02:51 +0530 | [diff] [blame] | 287 | move a0, zero # a0 <-- boot_flags = 0 |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 288 | PTR_LA t9, board_init_f |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 289 | |
Shinya Kuribayashi | 9dabea1 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 290 | jr t9 |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 291 | move ra, zero |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 292 | |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 293 | END(_start) |
| 294 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 295 | /* |
| 296 | * void relocate_code (addr_sp, gd, addr_moni) |
| 297 | * |
| 298 | * This "function" does not return, instead it continues in RAM |
| 299 | * after relocating the monitor code. |
| 300 | * |
| 301 | * a0 = addr_sp |
| 302 | * a1 = gd |
| 303 | * a2 = destination address |
| 304 | */ |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 305 | ENTRY(relocate_code) |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 306 | move sp, a0 # set new stack pointer |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 307 | move fp, sp |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 308 | |
Gabor Juhos | f902d46 | 2013-01-24 06:27:53 +0000 | [diff] [blame] | 309 | move s0, a1 # save gd in s0 |
| 310 | move s2, a2 # save destination address in s2 |
| 311 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 312 | PTR_LI t0, CONFIG_SYS_MONITOR_BASE |
| 313 | PTR_SUB s1, s2, t0 # s1 <-- relocation offset |
Gabor Juhos | fac2f65 | 2013-01-24 06:27:54 +0000 | [diff] [blame] | 314 | |
Paul Burton | 92a06ee | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 315 | PTR_LA t2, __image_copy_end |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 316 | move t1, a2 |
| 317 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 318 | /* |
| 319 | * t0 = source address |
| 320 | * t1 = target address |
| 321 | * t2 = source end address |
| 322 | */ |
| 323 | 1: |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 324 | PTR_L t3, 0(t0) |
| 325 | PTR_S t3, 0(t1) |
| 326 | PTR_ADDU t0, PTRSIZE |
Gabor Juhos | 9a081ab | 2013-01-24 06:27:51 +0000 | [diff] [blame] | 327 | blt t0, t2, 1b |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 328 | PTR_ADDU t1, PTRSIZE |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 329 | |
Shinya Kuribayashi | 7cb5676 | 2007-10-21 10:55:36 +0900 | [diff] [blame] | 330 | /* |
| 331 | * Now we want to update GOT. |
| 332 | * |
| 333 | * GOT[0] is reserved. GOT[1] is also reserved for the dynamic object |
| 334 | * generated by GNU ld. Skip these reserved entries from relocation. |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 335 | */ |
Paul Burton | 92a06ee | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 336 | PTR_LA t3, num_got_entries |
| 337 | PTR_LA t8, _GLOBAL_OFFSET_TABLE_ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 338 | PTR_ADD t8, s1 # t8 now holds relocated _G_O_T_ |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 339 | PTR_ADDIU t8, t8, 2 * PTRSIZE # skipping first two entries |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 340 | PTR_LI t2, 2 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 341 | 1: |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 342 | PTR_L t1, 0(t8) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 343 | beqz t1, 2f |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 344 | PTR_ADD t1, s1 |
| 345 | PTR_S t1, 0(t8) |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 346 | 2: |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 347 | PTR_ADDIU t2, 1 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 348 | blt t2, t3, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 349 | PTR_ADDIU t8, PTRSIZE |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 350 | |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 351 | /* Update dynamic relocations */ |
Paul Burton | 92a06ee | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 352 | PTR_LA t1, __rel_dyn_start |
| 353 | PTR_LA t2, __rel_dyn_end |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 354 | |
| 355 | b 2f # skip first reserved entry |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 356 | PTR_ADDIU t1, 2 * PTRSIZE |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 357 | |
| 358 | 1: |
Gabor Juhos | b847879 | 2013-06-13 12:59:28 +0200 | [diff] [blame] | 359 | lw t8, -4(t1) # t8 <-- relocation info |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 360 | |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 361 | PTR_LI t3, MIPS_RELOC |
| 362 | bne t8, t3, 2f # skip non-MIPS_RELOC entries |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 363 | nop |
| 364 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 365 | 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] | 366 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 367 | PTR_L t8, 0(t3) # t8 <-- original pointer |
| 368 | PTR_ADD t8, s1 # t8 <-- adjusted pointer |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 369 | |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 370 | PTR_ADD t3, s1 # t3 <-- location to fix up in RAM |
| 371 | PTR_S t8, 0(t3) |
Gabor Juhos | 84937ab | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 372 | |
| 373 | 2: |
| 374 | blt t1, t2, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 375 | 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] | 376 | |
Daniel Schwierzeck | 0de9cc5 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 377 | /* |
Paul Burton | 92a06ee | 2016-09-21 11:11:06 +0100 | [diff] [blame] | 378 | * Flush caches to ensure our newly modified instructions are visible |
| 379 | * to the instruction cache. We're still running with the old GOT, so |
| 380 | * apply the reloc offset to the start address. |
| 381 | */ |
| 382 | PTR_LA a0, __text_start |
| 383 | PTR_LA a1, __text_end |
| 384 | PTR_SUB a1, a1, a0 |
| 385 | PTR_LA t9, flush_cache |
| 386 | jalr t9 |
| 387 | PTR_ADD a0, s1 |
| 388 | |
| 389 | PTR_ADD gp, s1 # adjust gp |
| 390 | |
| 391 | /* |
Daniel Schwierzeck | 0de9cc5 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 392 | * Clear BSS |
| 393 | * |
| 394 | * GOT is now relocated. Thus __bss_start and __bss_end can be |
| 395 | * accessed directly via $gp. |
| 396 | */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 397 | PTR_LA t1, __bss_start # t1 <-- __bss_start |
| 398 | PTR_LA t2, __bss_end # t2 <-- __bss_end |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 399 | |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 400 | 1: |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 401 | PTR_S zero, 0(t1) |
Daniel Schwierzeck | 0de9cc5 | 2013-02-12 22:22:13 +0100 | [diff] [blame] | 402 | blt t1, t2, 1b |
Paul Burton | 53c9826 | 2016-05-16 10:52:10 +0100 | [diff] [blame] | 403 | PTR_ADDIU t1, PTRSIZE |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 404 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 405 | move a0, s0 # a0 <-- gd |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 406 | move a1, s2 |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 407 | PTR_LA t9, board_init_r |
Shinya Kuribayashi | 9dabea1 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 408 | jr t9 |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 409 | move ra, zero |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 410 | |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 411 | END(relocate_code) |