1/* 2 * Copyright (C) 2003 Josef Baumgartner <josef.baumgartner@telex.de> 3 * Based on code from Bernhard Kuhn <bkuhn@metrowerks.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8#include <asm-offsets.h> 9#include <config.h> 10#include "version.h" 11#include <asm/cache.h> 12 13#ifndef CONFIG_IDENT_STRING 14#define CONFIG_IDENT_STRING "" 15#endif 16 17#define _START _start 18#define _FAULT _fault 19 20#define SAVE_ALL \ 21 move.w #0x2700,%sr; /* disable intrs */ \ 22 subl #60,%sp; /* space for 15 regs */ \ 23 moveml %d0-%d7/%a0-%a6,%sp@; 24 25#define RESTORE_ALL \ 26 moveml %sp@,%d0-%d7/%a0-%a6; \ 27 addl #60,%sp; /* space for 15 regs */ \ 28 rte; 29 30.text 31/* 32 * Vector table. This is used for initial platform startup. 33 * These vectors are to catch any un-intended traps. 34 */ 35_vectors: 36 37INITSP: .long 0x00000000 /* Initial SP */ 38INITPC: .long _START /* Initial PC */ 39vector02: .long _FAULT /* Access Error */ 40vector03: .long _FAULT /* Address Error */ 41vector04: .long _FAULT /* Illegal Instruction */ 42vector05: .long _FAULT /* Reserved */ 43vector06: .long _FAULT /* Reserved */ 44vector07: .long _FAULT /* Reserved */ 45vector08: .long _FAULT /* Privilege Violation */ 46vector09: .long _FAULT /* Trace */ 47vector0A: .long _FAULT /* Unimplemented A-Line */ 48vector0B: .long _FAULT /* Unimplemented F-Line */ 49vector0C: .long _FAULT /* Debug Interrupt */ 50vector0D: .long _FAULT /* Reserved */ 51vector0E: .long _FAULT /* Format Error */ 52vector0F: .long _FAULT /* Unitialized Int. */ 53 54/* Reserved */ 55vector10_17: 56.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 57 58vector18: .long _FAULT /* Spurious Interrupt */ 59vector19: .long _FAULT /* Autovector Level 1 */ 60vector1A: .long _FAULT /* Autovector Level 2 */ 61vector1B: .long _FAULT /* Autovector Level 3 */ 62vector1C: .long _FAULT /* Autovector Level 4 */ 63vector1D: .long _FAULT /* Autovector Level 5 */ 64vector1E: .long _FAULT /* Autovector Level 6 */ 65vector1F: .long _FAULT /* Autovector Level 7 */ 66 67/* TRAP #0 - #15 */ 68vector20_2F: 69.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 70.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 71 72/* Reserved */ 73vector30_3F: 74.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 75.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 76 77vector64_127: 78.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 79.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 80.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 81.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 82.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 83.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 84.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 85.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 86 87vector128_191: 88.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 89.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 90.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 91.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 92.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 93.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 94.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 95.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 96 97vector192_255: 98.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 99.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 100.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 101.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 102.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 103.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 104.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 105.long _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT, _FAULT 106 107 .text 108 109 .globl _start 110_start: 111 nop 112 nop 113 move.w #0x2700,%sr /* Mask off Interrupt */ 114 115 /* Set vector base register at the beginning of the Flash */ 116 move.l #CONFIG_SYS_FLASH_BASE, %d0 117 movec %d0, %VBR 118 119 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_CTRL), %d0 120 movec %d0, %RAMBAR0 121 122 move.l #(CONFIG_SYS_INIT_RAM1_ADDR + CONFIG_SYS_INIT_RAM1_CTRL), %d0 123 movec %d0, %RAMBAR1 124 125 move.l #CONFIG_SYS_MBAR, %d0 /* set MBAR address */ 126 move.c %d0, %MBAR 127 128 /* invalidate and disable cache */ 129 move.l #0x01040100, %d0 /* Invalidate cache cmd */ 130 movec %d0, %CACR /* Invalidate cache */ 131 move.l #0, %d0 132 movec %d0, %ACR0 133 movec %d0, %ACR1 134 movec %d0, %ACR2 135 movec %d0, %ACR3 136 137 /* initialize general use internal ram */ 138 move.l #0, %d0 139 move.l #(ICACHE_STATUS), %a1 /* icache */ 140 move.l #(DCACHE_STATUS), %a2 /* icache */ 141 move.l %d0, (%a1) 142 move.l %d0, (%a2) 143 144 /* put relocation table address to a5 */ 145 move.l #__got_start, %a5 146 147 /* setup stack initially on top of internal static ram */ 148 move.l #(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE), %sp 149 150 /* 151 * if configured, malloc_f arena will be reserved first, 152 * then (and always) gd struct space will be reserved 153 */ 154 move.l %sp, -(%sp) 155 bsr board_init_f_alloc_reserve 156 157 /* update stack and frame-pointers */ 158 move.l %d0, %sp 159 move.l %sp, %fp 160 161 /* initialize reserved area */ 162 move.l %d0, -(%sp) 163 bsr board_init_f_init_reserve 164 165 jbsr cpu_init_f /* run low-level CPU init code (from flash) */ 166 clr.l %sp@- 167 jbsr board_init_f /* run low-level board init code (from flash) */ 168 169 /* board_init_f() does not return */ 170 171/*------------------------------------------------------------------------------*/ 172 173/* 174 * void relocate_code (addr_sp, gd, addr_moni) 175 * 176 * This "function" does not return, instead it continues in RAM 177 * after relocating the monitor code. 178 * 179 * r3 = dest 180 * r4 = src 181 * r5 = length in bytes 182 * r6 = cachelinesize 183 */ 184 .globl relocate_code 185relocate_code: 186 link.w %a6,#0 187 move.l 8(%a6), %sp /* set new stack pointer */ 188 189 move.l 12(%a6), %d0 /* Save copy of Global Data pointer */ 190 move.l 16(%a6), %a0 /* Save copy of Destination Address */ 191 192 move.l #CONFIG_SYS_MONITOR_BASE, %a1 193 move.l #__init_end, %a2 194 move.l %a0, %a3 195 196 /* copy the code to RAM */ 1971: 198 move.l (%a1)+, (%a3)+ 199 cmp.l %a1,%a2 200 bgt.s 1b 201 202/* 203 * We are done. Do not return, instead branch to second part of board 204 * initialization, now running from RAM. 205 */ 206 move.l %a0, %a1 207 add.l #(in_ram - CONFIG_SYS_MONITOR_BASE), %a1 208 jmp (%a1) 209 210in_ram: 211 212clear_bss: 213 /* 214 * Now clear BSS segment 215 */ 216 move.l %a0, %a1 217 add.l #(_sbss - CONFIG_SYS_MONITOR_BASE),%a1 218 move.l %a0, %d1 219 add.l #(_ebss - CONFIG_SYS_MONITOR_BASE),%d1 2206: 221 clr.l (%a1)+ 222 cmp.l %a1,%d1 223 bgt.s 6b 224 225 /* 226 * fix got table in RAM 227 */ 228 move.l %a0, %a1 229 add.l #(__got_start - CONFIG_SYS_MONITOR_BASE),%a1 230 move.l %a1,%a5 /* * fix got pointer register a5 */ 231 232 move.l %a0, %a2 233 add.l #(__got_end - CONFIG_SYS_MONITOR_BASE),%a2 234 2357: 236 move.l (%a1),%d1 237 sub.l #_start,%d1 238 add.l %a0,%d1 239 move.l %d1,(%a1)+ 240 cmp.l %a2, %a1 241 bne 7b 242 243 /* calculate relative jump to board_init_r in ram */ 244 move.l %a0, %a1 245 add.l #(board_init_r - CONFIG_SYS_MONITOR_BASE), %a1 246 247 /* set parameters for board_init_r */ 248 move.l %a0,-(%sp) /* dest_addr */ 249 move.l %d0,-(%sp) /* gd */ 250 jsr (%a1) 251 252/*------------------------------------------------------------------------------*/ 253/* exception code */ 254 .globl _fault 255_fault: 256 bra _fault 257 .globl _exc_handler 258 259_exc_handler: 260 SAVE_ALL 261 movel %sp,%sp@- 262 bsr exc_handler 263 addql #4,%sp 264 RESTORE_ALL 265 266 .globl _int_handler 267_int_handler: 268 SAVE_ALL 269 movel %sp,%sp@- 270 bsr int_handler 271 addql #4,%sp 272 RESTORE_ALL 273 274/*------------------------------------------------------------------------------*/ 275 276 .globl version_string 277version_string: 278 .ascii U_BOOT_VERSION_STRING, "\0" 279 .align 4 280