1/* 2 * armboot - Startup Code for XScale CPU-core 3 * 4 * Copyright (C) 1998 Dan Malek <dmalek@jlc.net> 5 * Copyright (C) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se> 6 * Copyright (C) 2000 Wolfgang Denk <wd@denx.de> 7 * Copyright (C) 2001 Alex Zuepke <azu@sysgo.de> 8 * Copyright (C) 2001 Marius Groger <mag@sysgo.de> 9 * Copyright (C) 2002 Alex Zupke <azu@sysgo.de> 10 * Copyright (C) 2002 Gary Jennejohn <garyj@denx.de> 11 * Copyright (C) 2002 Kyle Harris <kharris@nexus-tech.net> 12 * Copyright (C) 2003 Kai-Uwe Bloem <kai-uwe.bloem@auerswald.de> 13 * Copyright (C) 2003 Kshitij <kshitij@ti.com> 14 * Copyright (C) 2003 Richard Woodruff <r-woodruff2@ti.com> 15 * Copyright (C) 2003 Robert Schwebel <r.schwebel@pengutronix.de> 16 * Copyright (C) 2004 Texas Instruments <r-woodruff2@ti.com> 17 * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com> 18 * 19 * See file CREDITS for list of people who contributed to this 20 * project. 21 * 22 * This program is free software; you can redistribute it and/or 23 * modify it under the terms of the GNU General Public License as 24 * published by the Free Software Foundation; either version 2 of 25 * the License, or (at your option) any later version. 26 * 27 * This program is distributed in the hope that it will be useful, 28 * but WITHOUT ANY WARRANTY; without even the implied warranty of 29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 30 * GNU General Public License for more details. 31 * 32 * You should have received a copy of the GNU General Public License 33 * along with this program; if not, write to the Free Software 34 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 35 * MA 02111-1307 USA 36 */ 37 38#include <asm-offsets.h> 39#include <config.h> 40#include <version.h> 41 42#ifdef CONFIG_CPU_PXA25X 43#if ((CONFIG_SYS_INIT_SP_ADDR) != 0xfffff800) 44#error "Init SP address must be set to 0xfffff800 for PXA250" 45#endif 46#endif 47 48.globl _start 49_start: b reset 50#ifdef CONFIG_SPL_BUILD 51 ldr pc, _hang 52 ldr pc, _hang 53 ldr pc, _hang 54 ldr pc, _hang 55 ldr pc, _hang 56 ldr pc, _hang 57 ldr pc, _hang 58 59_hang: 60 .word do_hang 61 .word 0x12345678 62 .word 0x12345678 63 .word 0x12345678 64 .word 0x12345678 65 .word 0x12345678 66 .word 0x12345678 67 .word 0x12345678 /* now 16*4=64 */ 68#else 69 ldr pc, _undefined_instruction 70 ldr pc, _software_interrupt 71 ldr pc, _prefetch_abort 72 ldr pc, _data_abort 73 ldr pc, _not_used 74 ldr pc, _irq 75 ldr pc, _fiq 76 77_undefined_instruction: .word undefined_instruction 78_software_interrupt: .word software_interrupt 79_prefetch_abort: .word prefetch_abort 80_data_abort: .word data_abort 81_not_used: .word not_used 82_irq: .word irq 83_fiq: .word fiq 84_pad: .word 0x12345678 /* now 16*4=64 */ 85#endif /* CONFIG_SPL_BUILD */ 86.global _end_vect 87_end_vect: 88 89 .balignl 16,0xdeadbeef 90/* 91 ************************************************************************* 92 * 93 * Startup Code (reset vector) 94 * 95 * do important init only if we don't start from memory! 96 * setup Memory and board specific bits prior to relocation. 97 * relocate armboot to ram 98 * setup stack 99 * 100 ************************************************************************* 101 */ 102 103.globl _TEXT_BASE 104_TEXT_BASE: 105#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE) 106 .word CONFIG_SPL_TEXT_BASE 107#else 108 .word CONFIG_SYS_TEXT_BASE 109#endif 110 111/* 112 * These are defined in the board-specific linker script. 113 * Subtracting _start from them lets the linker put their 114 * relative position in the executable instead of leaving 115 * them null. 116 */ 117.globl _bss_start_ofs 118_bss_start_ofs: 119 .word __bss_start - _start 120 121.globl _bss_end_ofs 122_bss_end_ofs: 123 .word __bss_end - _start 124 125.globl _end_ofs 126_end_ofs: 127 .word _end - _start 128 129#ifdef CONFIG_USE_IRQ 130/* IRQ stack memory (calculated at run-time) */ 131.globl IRQ_STACK_START 132IRQ_STACK_START: 133 .word 0x0badc0de 134 135/* IRQ stack memory (calculated at run-time) */ 136.globl FIQ_STACK_START 137FIQ_STACK_START: 138 .word 0x0badc0de 139#endif 140 141/* IRQ stack memory (calculated at run-time) + 8 bytes */ 142.globl IRQ_STACK_START_IN 143IRQ_STACK_START_IN: 144 .word 0x0badc0de 145 146/* 147 * the actual reset code 148 */ 149 150reset: 151 /* 152 * set the cpu to SVC32 mode 153 */ 154 mrs r0,cpsr 155 bic r0,r0,#0x1f 156 orr r0,r0,#0xd3 157 msr cpsr,r0 158 159#ifndef CONFIG_SKIP_LOWLEVEL_INIT 160 bl cpu_init_crit 161#endif 162 163#ifdef CONFIG_CPU_PXA25X 164 bl lock_cache_for_stack 165#endif 166 167 bl _main 168 169/*------------------------------------------------------------------------------*/ 170 171 .globl c_runtime_cpu_setup 172c_runtime_cpu_setup: 173 174#ifdef CONFIG_CPU_PXA25X 175 /* 176 * Unlock (actually, disable) the cache now that board_init_f 177 * is done. We could do this earlier but we would need to add 178 * a new C runtime hook, whereas c_runtime_cpu_setup already 179 * exists. 180 * As this routine is just a call to cpu_init_crit, let us 181 * tail-optimize and do a simple branch here. 182 */ 183 b cpu_init_crit 184#else 185 bx lr 186#endif 187 188/* 189 ************************************************************************* 190 * 191 * CPU_init_critical registers 192 * 193 * setup important registers 194 * setup memory timing 195 * 196 ************************************************************************* 197 */ 198#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) || defined(CONFIG_CPU_PXA25X) 199cpu_init_crit: 200 /* 201 * flush v4 I/D caches 202 */ 203 mov r0, #0 204 mcr p15, 0, r0, c7, c7, 0 /* Invalidate I+D+BTB caches */ 205 mcr p15, 0, r0, c8, c7, 0 /* Invalidate Unified TLB */ 206 207 /* 208 * disable MMU stuff and caches 209 */ 210 mrc p15, 0, r0, c1, c0, 0 211 bic r0, r0, #0x00003300 @ clear bits 13:12, 9:8 (--VI --RS) 212 bic r0, r0, #0x00000087 @ clear bits 7, 2:0 (B--- -CAM) 213 orr r0, r0, #0x00000002 @ set bit 2 (A) Align 214 mcr p15, 0, r0, c1, c0, 0 215 216 mov pc, lr /* back to my caller */ 217#endif /* !CONFIG_SKIP_LOWLEVEL_INIT || CONFIG_CPU_PXA25X */ 218 219#ifndef CONFIG_SPL_BUILD 220/* 221 ************************************************************************* 222 * 223 * Interrupt handling 224 * 225 ************************************************************************* 226 */ 227@ 228@ IRQ stack frame. 229@ 230#define S_FRAME_SIZE 72 231 232#define S_OLD_R0 68 233#define S_PSR 64 234#define S_PC 60 235#define S_LR 56 236#define S_SP 52 237 238#define S_IP 48 239#define S_FP 44 240#define S_R10 40 241#define S_R9 36 242#define S_R8 32 243#define S_R7 28 244#define S_R6 24 245#define S_R5 20 246#define S_R4 16 247#define S_R3 12 248#define S_R2 8 249#define S_R1 4 250#define S_R0 0 251 252#define MODE_SVC 0x13 253#define I_BIT 0x80 254 255/* 256 * use bad_save_user_regs for abort/prefetch/undef/swi ... 257 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling 258 */ 259 260 .macro bad_save_user_regs 261 sub sp, sp, #S_FRAME_SIZE @ carve out a frame on current user stack 262 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12 263 264 ldr r2, IRQ_STACK_START_IN @ set base 2 words into abort stack 265 ldmia r2, {r2 - r3} @ get values for "aborted" pc and cpsr (into parm regs) 266 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack 267 268 add r5, sp, #S_SP 269 mov r1, lr 270 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr 271 mov r0, sp @ save current stack into r0 (param register) 272 .endm 273 274 .macro irq_save_user_regs 275 sub sp, sp, #S_FRAME_SIZE 276 stmia sp, {r0 - r12} @ Calling r0-r12 277 add r8, sp, #S_PC @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good. 278 stmdb r8, {sp, lr}^ @ Calling SP, LR 279 str lr, [r8, #0] @ Save calling PC 280 mrs r6, spsr 281 str r6, [r8, #4] @ Save CPSR 282 str r0, [r8, #8] @ Save OLD_R0 283 mov r0, sp 284 .endm 285 286 .macro irq_restore_user_regs 287 ldmia sp, {r0 - lr}^ @ Calling r0 - lr 288 mov r0, r0 289 ldr lr, [sp, #S_PC] @ Get PC 290 add sp, sp, #S_FRAME_SIZE 291 subs pc, lr, #4 @ return & move spsr_svc into cpsr 292 .endm 293 294 .macro get_bad_stack 295 ldr r13, IRQ_STACK_START_IN @ setup our mode stack (enter in banked mode) 296 297 str lr, [r13] @ save caller lr in position 0 of saved stack 298 mrs lr, spsr @ get the spsr 299 str lr, [r13, #4] @ save spsr in position 1 of saved stack 300 301 mov r13, #MODE_SVC @ prepare SVC-Mode 302 @ msr spsr_c, r13 303 msr spsr, r13 @ switch modes, make sure moves will execute 304 mov lr, pc @ capture return pc 305 movs pc, lr @ jump to next instruction & switch modes. 306 .endm 307 308 .macro get_bad_stack_swi 309 sub r13, r13, #4 @ space on current stack for scratch reg. 310 str r0, [r13] @ save R0's value. 311 ldr r0, IRQ_STACK_START_IN @ get data regions start 312 str lr, [r0] @ save caller lr in position 0 of saved stack 313 mrs lr, spsr @ get the spsr 314 str lr, [r0, #4] @ save spsr in position 1 of saved stack 315 ldr lr, [r0] @ restore lr 316 ldr r0, [r13] @ restore r0 317 add r13, r13, #4 @ pop stack entry 318 .endm 319 320 .macro get_irq_stack @ setup IRQ stack 321 ldr sp, IRQ_STACK_START 322 .endm 323 324 .macro get_fiq_stack @ setup FIQ stack 325 ldr sp, FIQ_STACK_START 326 .endm 327#endif /* CONFIG_SPL_BUILD */ 328 329/* 330 * exception handlers 331 */ 332#ifdef CONFIG_SPL_BUILD 333 .align 5 334do_hang: 335 ldr sp, _TEXT_BASE /* use 32 words about stack */ 336 bl hang /* hang and never return */ 337#else /* !CONFIG_SPL_BUILD */ 338 .align 5 339undefined_instruction: 340 get_bad_stack 341 bad_save_user_regs 342 bl do_undefined_instruction 343 344 .align 5 345software_interrupt: 346 get_bad_stack_swi 347 bad_save_user_regs 348 bl do_software_interrupt 349 350 .align 5 351prefetch_abort: 352 get_bad_stack 353 bad_save_user_regs 354 bl do_prefetch_abort 355 356 .align 5 357data_abort: 358 get_bad_stack 359 bad_save_user_regs 360 bl do_data_abort 361 362 .align 5 363not_used: 364 get_bad_stack 365 bad_save_user_regs 366 bl do_not_used 367 368#ifdef CONFIG_USE_IRQ 369 370 .align 5 371irq: 372 get_irq_stack 373 irq_save_user_regs 374 bl do_irq 375 irq_restore_user_regs 376 377 .align 5 378fiq: 379 get_fiq_stack 380 /* someone ought to write a more effiction fiq_save_user_regs */ 381 irq_save_user_regs 382 bl do_fiq 383 irq_restore_user_regs 384 385#else 386 387 .align 5 388irq: 389 get_bad_stack 390 bad_save_user_regs 391 bl do_irq 392 393 .align 5 394fiq: 395 get_bad_stack 396 bad_save_user_regs 397 bl do_fiq 398 399#endif 400 .align 5 401#endif /* CONFIG_SPL_BUILD */ 402 403 404/* 405 * Enable MMU to use DCache as DRAM. 406 * 407 * This is useful on PXA25x and PXA26x in early bootstages, where there is no 408 * other possible memory available to hold stack. 409 */ 410#ifdef CONFIG_CPU_PXA25X 411.macro CPWAIT reg 412 mrc p15, 0, \reg, c2, c0, 0 413 mov \reg, \reg 414 sub pc, pc, #4 415.endm 416lock_cache_for_stack: 417 /* Domain access -- enable for all CPs */ 418 ldr r0, =0x0000ffff 419 mcr p15, 0, r0, c3, c0, 0 420 421 /* Point TTBR to MMU table */ 422 ldr r0, =mmutable 423 mcr p15, 0, r0, c2, c0, 0 424 425 /* Kick in MMU, ICache, DCache, BTB */ 426 mrc p15, 0, r0, c1, c0, 0 427 bic r0, #0x1b00 428 bic r0, #0x0087 429 orr r0, #0x1800 430 orr r0, #0x0005 431 mcr p15, 0, r0, c1, c0, 0 432 CPWAIT r0 433 434 /* Unlock Icache, Dcache */ 435 mcr p15, 0, r0, c9, c1, 1 436 mcr p15, 0, r0, c9, c2, 1 437 438 /* Flush Icache, Dcache, BTB */ 439 mcr p15, 0, r0, c7, c7, 0 440 441 /* Unlock I-TLB, D-TLB */ 442 mcr p15, 0, r0, c10, c4, 1 443 mcr p15, 0, r0, c10, c8, 1 444 445 /* Flush TLB */ 446 mcr p15, 0, r0, c8, c7, 0 447 448 /* Allocate 4096 bytes of Dcache as RAM */ 449 450 /* Drain pending loads and stores */ 451 mcr p15, 0, r0, c7, c10, 4 452 453 mov r4, #0x00 454 mov r5, #0x00 455 mov r2, #0x01 456 mcr p15, 0, r0, c9, c2, 0 457 CPWAIT r0 458 459 /* 128 lines reserved (128 x 32bytes = 4096 bytes total) */ 460 mov r0, #128 461 ldr r1, =0xfffff000 462 463alloc: 464 mcr p15, 0, r1, c7, c2, 5 465 /* Drain pending loads and stores */ 466 mcr p15, 0, r0, c7, c10, 4 467 strd r4, [r1], #8 468 strd r4, [r1], #8 469 strd r4, [r1], #8 470 strd r4, [r1], #8 471 subs r0, #0x01 472 bne alloc 473 /* Drain pending loads and stores */ 474 mcr p15, 0, r0, c7, c10, 4 475 mov r2, #0x00 476 mcr p15, 0, r2, c9, c2, 0 477 CPWAIT r0 478 479 mov pc, lr 480 481.section .mmutable, "a" 482mmutable: 483 .align 14 484 /* 0x00000000 - 0xffe00000 : 1:1, uncached mapping */ 485 .set __base, 0 486 .rept 0xfff 487 .word (__base << 20) | 0xc12 488 .set __base, __base + 1 489 .endr 490 491 /* 0xfff00000 : 1:1, cached mapping */ 492 .word (0xfff << 20) | 0x1c1e 493#endif /* CONFIG_CPU_PXA25X */ 494