Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Startup Code for MIPS32 CPU-core |
| 4 | * |
| 5 | * Copyright (c) 2003 Wolfgang Denk <wd@denx.de> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Wolfgang Denk | 0191e47 | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 8 | #include <asm-offsets.h> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 9 | #include <config.h> |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 10 | #include <asm/asm.h> |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 11 | #include <asm/regdef.h> |
| 12 | #include <asm/mipsregs.h> |
| 13 | |
Daniel Schwierzeck | 2814459 | 2015-01-18 22:18:38 +0100 | [diff] [blame] | 14 | #ifndef CONFIG_SYS_INIT_SP_ADDR |
| 15 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \ |
| 16 | CONFIG_SYS_INIT_SP_OFFSET) |
| 17 | #endif |
| 18 | |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 19 | #ifdef CONFIG_32BIT |
| 20 | # define MIPS_RELOC 3 |
Paul Burton | debf0e0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 21 | # define STATUS_SET 0 |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 22 | #endif |
| 23 | |
| 24 | #ifdef CONFIG_64BIT |
| 25 | # ifdef CONFIG_SYS_LITTLE_ENDIAN |
| 26 | # define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \ |
| 27 | (((r_type) << 24) | ((r_type2) << 16) | ((r_type3) << 8) | (ssym)) |
| 28 | # else |
| 29 | # define MIPS64_R_INFO(ssym, r_type3, r_type2, r_type) \ |
| 30 | ((r_type) | ((r_type2) << 8) | ((r_type3) << 16) | (ssym) << 24) |
| 31 | # endif |
| 32 | # define MIPS_RELOC MIPS64_R_INFO(0x00, 0x00, 0x12, 0x03) |
Paul Burton | debf0e0 | 2015-01-29 10:04:10 +0000 | [diff] [blame] | 33 | # define STATUS_SET ST0_KX |
Paul Burton | cb2ab2f | 2015-01-29 10:04:09 +0000 | [diff] [blame] | 34 | #endif |
| 35 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 36 | .set noreorder |
| 37 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 38 | .macro init_wr sel |
| 39 | MTC0 zero, CP0_WATCHLO,\sel |
| 40 | mtc0 t1, CP0_WATCHHI,\sel |
| 41 | mfc0 t0, CP0_WATCHHI,\sel |
| 42 | bgez t0, wr_done |
| 43 | nop |
| 44 | .endm |
| 45 | |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 46 | .macro uhi_mips_exception |
| 47 | move k0, t9 # preserve t9 in k0 |
| 48 | move k1, a0 # preserve a0 in k1 |
| 49 | li t9, 15 # UHI exception operation |
| 50 | li a0, 0 # Use hard register context |
| 51 | sdbbp 1 # Invoke UHI operation |
| 52 | .endm |
| 53 | |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 54 | .macro setup_stack_gd |
| 55 | li t0, -16 |
| 56 | PTR_LI t1, CONFIG_SYS_INIT_SP_ADDR |
| 57 | and sp, t1, t0 # force 16 byte alignment |
| 58 | PTR_SUBU \ |
| 59 | sp, sp, GD_SIZE # reserve space for gd |
| 60 | and sp, sp, t0 # force 16 byte alignment |
| 61 | move k0, sp # save gd pointer |
Andy Yan | 984c10d | 2017-07-24 17:45:27 +0800 | [diff] [blame] | 62 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
| 63 | li t2, CONFIG_VAL(SYS_MALLOC_F_LEN) |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 64 | PTR_SUBU \ |
| 65 | sp, sp, t2 # reserve space for early malloc |
| 66 | and sp, sp, t0 # force 16 byte alignment |
| 67 | #endif |
| 68 | move fp, sp |
| 69 | |
| 70 | /* Clear gd */ |
| 71 | move t0, k0 |
| 72 | 1: |
| 73 | PTR_S zero, 0(t0) |
developer | de8b4cf | 2020-04-21 09:28:28 +0200 | [diff] [blame] | 74 | PTR_ADDIU t0, PTRSIZE |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 75 | blt t0, t1, 1b |
developer | de8b4cf | 2020-04-21 09:28:28 +0200 | [diff] [blame] | 76 | nop |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 77 | |
Andy Yan | 984c10d | 2017-07-24 17:45:27 +0800 | [diff] [blame] | 78 | #if CONFIG_VAL(SYS_MALLOC_F_LEN) |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 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 | |
Daniel Schwierzeck | 2cc9a77 | 2018-09-07 19:18:44 +0200 | [diff] [blame] | 88 | #if defined(CONFIG_MIPS_INSERT_BOOT_CONFIG) |
Daniel Schwierzeck | 6ff8ae0 | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 89 | /* |
Daniel Schwierzeck | 2cc9a77 | 2018-09-07 19:18:44 +0200 | [diff] [blame] | 90 | * Store some board-specific boot configuration. This is used by some |
| 91 | * MIPS systems like Malta. |
Daniel Schwierzeck | 6ff8ae0 | 2011-07-27 13:22:37 +0200 | [diff] [blame] | 92 | */ |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 93 | .org 0x10 |
Daniel Schwierzeck | 2cc9a77 | 2018-09-07 19:18:44 +0200 | [diff] [blame] | 94 | .word CONFIG_MIPS_BOOT_CONFIG_WORD0 |
| 95 | .word CONFIG_MIPS_BOOT_CONFIG_WORD1 |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 96 | #endif |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 97 | |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 98 | #if defined(CONFIG_ROM_EXCEPTION_VECTORS) |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 99 | /* |
| 100 | * Exception vector entry points. When running from ROM, an exception |
| 101 | * cannot be handled. Halt execution and transfer control to debugger, |
| 102 | * if one is attached. |
| 103 | */ |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 104 | .org 0x200 |
| 105 | /* TLB refill, 32 bit task */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 106 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 107 | |
| 108 | .org 0x280 |
| 109 | /* XTLB refill, 64 bit task */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 110 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 111 | |
| 112 | .org 0x300 |
| 113 | /* Cache error exception */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 114 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 115 | |
| 116 | .org 0x380 |
| 117 | /* General exception */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 118 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 119 | |
| 120 | .org 0x400 |
| 121 | /* Catch interrupt exceptions */ |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 122 | uhi_mips_exception |
Daniel Schwierzeck | ec44316 | 2013-02-12 22:22:12 +0100 | [diff] [blame] | 123 | |
| 124 | .org 0x480 |
| 125 | /* EJTAG debug exception */ |
| 126 | 1: b 1b |
| 127 | nop |
| 128 | |
Daniel Schwierzeck | 754cd05 | 2016-02-14 18:52:57 +0100 | [diff] [blame] | 129 | .org 0x500 |
| 130 | #endif |
| 131 | |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 132 | reset: |
Paul Burton | fcdc1fb | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 133 | #if __mips_isa_rev >= 6 |
| 134 | mfc0 t0, CP0_CONFIG, 5 |
| 135 | and t0, t0, MIPS_CONF5_VP |
| 136 | beqz t0, 1f |
| 137 | nop |
| 138 | |
| 139 | b 2f |
| 140 | mfc0 t0, CP0_GLOBALNUMBER |
| 141 | #endif |
| 142 | |
Álvaro Fernández Rojas | 98a97a8 | 2017-04-25 00:39:20 +0200 | [diff] [blame] | 143 | #ifdef CONFIG_ARCH_BMIPS |
| 144 | 1: mfc0 t0, CP0_DIAGNOSTIC, 3 |
| 145 | and t0, t0, (1 << 31) |
| 146 | #else |
Paul Burton | fcdc1fb | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 147 | 1: mfc0 t0, CP0_EBASE |
| 148 | and t0, t0, EBASE_CPUNUM |
Álvaro Fernández Rojas | 98a97a8 | 2017-04-25 00:39:20 +0200 | [diff] [blame] | 149 | #endif |
Paul Burton | fcdc1fb | 2016-09-21 14:59:54 +0100 | [diff] [blame] | 150 | |
| 151 | /* Hang if this isn't the first CPU in the system */ |
| 152 | 2: beqz t0, 4f |
| 153 | nop |
| 154 | 3: wait |
| 155 | b 3b |
| 156 | nop |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 157 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 158 | /* Init CP0 Status */ |
| 159 | 4: mfc0 t0, CP0_STATUS |
| 160 | and t0, ST0_IMPL |
| 161 | or t0, ST0_BEV | ST0_ERL | STATUS_SET |
| 162 | mtc0 t0, CP0_STATUS |
| 163 | |
| 164 | /* |
| 165 | * Check whether CP0 Config1 is implemented. If not continue |
| 166 | * with legacy Watch register initialization. |
| 167 | */ |
| 168 | mfc0 t0, CP0_CONFIG |
| 169 | bgez t0, wr_legacy |
| 170 | nop |
| 171 | |
| 172 | /* |
| 173 | * Check WR bit in CP0 Config1 to determine if Watch registers |
| 174 | * are implemented. |
| 175 | */ |
| 176 | mfc0 t0, CP0_CONFIG, 1 |
| 177 | andi t0, (1 << 3) |
| 178 | beqz t0, wr_done |
| 179 | nop |
| 180 | |
| 181 | /* Clear Watch Status bits and disable watch exceptions */ |
| 182 | li t1, 0x7 # Clear I, R and W conditions |
| 183 | init_wr 0 |
| 184 | init_wr 1 |
| 185 | init_wr 2 |
| 186 | init_wr 3 |
| 187 | init_wr 4 |
| 188 | init_wr 5 |
| 189 | init_wr 6 |
| 190 | init_wr 7 |
| 191 | b wr_done |
| 192 | nop |
| 193 | |
| 194 | wr_legacy: |
| 195 | MTC0 zero, CP0_WATCHLO |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 196 | mtc0 zero, CP0_WATCHHI |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 197 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 198 | wr_done: |
| 199 | /* Clear WP, IV and SW interrupts */ |
Shinya Kuribayashi | 79727f8 | 2008-03-25 21:30:07 +0900 | [diff] [blame] | 200 | mtc0 zero, CP0_CAUSE |
| 201 | |
Daniel Schwierzeck | ecf0d79 | 2016-02-08 00:37:59 +0100 | [diff] [blame] | 202 | /* Clear timer interrupt (CP0_COUNT cleared on branch to 'reset') */ |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 203 | mtc0 zero, CP0_COMPARE |
| 204 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 205 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 4f5561c | 2016-09-21 11:18:50 +0100 | [diff] [blame] | 206 | mfc0 t0, CP0_CONFIG |
| 207 | and t0, t0, MIPS_CONF_IMPL |
| 208 | or t0, t0, CONF_CM_UNCACHED |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 209 | mtc0 t0, CP0_CONFIG |
Paul Burton | 82c9d89 | 2016-09-21 11:18:57 +0100 | [diff] [blame] | 210 | ehb |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 211 | #endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 212 | |
Paul Burton | 79ac174 | 2016-09-21 11:18:53 +0100 | [diff] [blame] | 213 | #ifdef CONFIG_MIPS_CM |
| 214 | PTR_LA t9, mips_cm_map |
| 215 | jalr t9 |
| 216 | nop |
| 217 | #endif |
| 218 | |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 219 | #ifdef CONFIG_MIPS_INIT_STACK_IN_SRAM |
developer | eb7d3a2 | 2020-04-21 09:28:27 +0200 | [diff] [blame^] | 220 | #ifdef CONFIG_MIPS_SRAM_INIT |
| 221 | /* Initialize the SRAM first */ |
| 222 | PTR_LA t9, mips_sram_init |
| 223 | jalr t9 |
| 224 | nop |
| 225 | #endif |
| 226 | |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 227 | /* Set up initial stack and global data */ |
| 228 | setup_stack_gd |
Daniel Schwierzeck | fd32b13 | 2017-04-24 19:03:34 +0200 | [diff] [blame] | 229 | |
| 230 | # ifdef CONFIG_DEBUG_UART |
| 231 | /* Earliest point to set up debug uart */ |
| 232 | PTR_LA t9, debug_uart_init |
| 233 | jalr t9 |
| 234 | nop |
| 235 | # endif |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 236 | #endif |
| 237 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 238 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 239 | # ifdef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 240 | /* Initialize any external memory */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 241 | PTR_LA t9, lowlevel_init |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 242 | jalr t9 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 243 | nop |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 244 | # endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 245 | |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 246 | /* Initialize caches... */ |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 247 | PTR_LA t9, mips_cache_reset |
Shinya Kuribayashi | c7faac5 | 2007-10-27 15:27:06 +0900 | [diff] [blame] | 248 | jalr t9 |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 249 | nop |
Paul Burton | 68b4c75 | 2016-09-21 11:18:51 +0100 | [diff] [blame] | 250 | |
| 251 | # ifndef CONFIG_SYS_MIPS_CACHE_INIT_RAM_LOAD |
| 252 | /* Initialize any external memory */ |
| 253 | PTR_LA t9, lowlevel_init |
| 254 | jalr t9 |
| 255 | nop |
| 256 | # endif |
Shinya Kuribayashi | 6911d0a | 2011-05-07 00:18:13 +0900 | [diff] [blame] | 257 | #endif |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 258 | |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 259 | #ifndef CONFIG_MIPS_INIT_STACK_IN_SRAM |
Daniel Schwierzeck | 993a122 | 2016-09-25 18:36:38 +0200 | [diff] [blame] | 260 | /* Set up initial stack and global data */ |
| 261 | setup_stack_gd |
Daniel Schwierzeck | fd32b13 | 2017-04-24 19:03:34 +0200 | [diff] [blame] | 262 | |
| 263 | # ifdef CONFIG_DEBUG_UART |
| 264 | /* Earliest point to set up debug uart */ |
| 265 | PTR_LA t9, debug_uart_init |
| 266 | jalr t9 |
| 267 | nop |
| 268 | # endif |
Daniel Schwierzeck | 41dc35e | 2016-06-04 16:13:21 +0200 | [diff] [blame] | 269 | #endif |
Daniel Schwierzeck | 7aa7164 | 2016-01-09 22:24:47 +0100 | [diff] [blame] | 270 | |
Purna Chandra Mandal | 5c8cdf4 | 2016-01-21 20:02:51 +0530 | [diff] [blame] | 271 | move a0, zero # a0 <-- boot_flags = 0 |
Paul Burton | ce14da2 | 2015-01-29 10:04:08 +0000 | [diff] [blame] | 272 | PTR_LA t9, board_init_f |
Daniel Schwierzeck | 8b2fd07 | 2016-02-07 19:39:58 +0100 | [diff] [blame] | 273 | |
Shinya Kuribayashi | 9dabea1 | 2008-04-17 23:35:13 +0900 | [diff] [blame] | 274 | jr t9 |
Daniel Schwierzeck | f224c1a | 2014-11-20 23:55:32 +0100 | [diff] [blame] | 275 | move ra, zero |
wdenk | bb1b826 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 276 | |
Daniel Schwierzeck | 7509b57 | 2015-12-19 20:20:45 +0100 | [diff] [blame] | 277 | END(_start) |