Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 1 | /* |
| 2 | * armboot - Startup Code for ARM926EJS CPU-core |
| 3 | * |
| 4 | * Copyright (c) 2003 Texas Instruments |
| 5 | * |
| 6 | * ----- Adapted for OMAP1610 OMAP730 from ARM925t code ------ |
| 7 | * |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 8 | * Copyright (c) 2001 Marius Gröger <mag@sysgo.de> |
| 9 | * Copyright (c) 2002 Alex Züpke <azu@sysgo.de> |
Detlev Zundel | f1b3f2b | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 10 | * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de> |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 11 | * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com> |
| 12 | * Copyright (c) 2003 Kshitij <kshitij@ti.com> |
| 13 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 14 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 15 | */ |
| 16 | |
Wolfgang Denk | 0191e47 | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 17 | #include <asm-offsets.h> |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 18 | #include <config.h> |
| 19 | #include <version.h> |
| 20 | |
| 21 | /* |
| 22 | ************************************************************************* |
| 23 | * |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 24 | * Startup Code (reset vector) |
| 25 | * |
| 26 | * do important init only if we don't start from memory! |
| 27 | * setup memory and board specific bits prior to relocation. |
| 28 | * relocate armboot to ram |
| 29 | * setup stack |
| 30 | * |
| 31 | ************************************************************************* |
| 32 | */ |
| 33 | |
Albert ARIBAUD | 9852cc6 | 2014-04-15 16:13:51 +0200 | [diff] [blame] | 34 | .globl reset |
Heiko Schocher | c620af2 | 2010-09-17 13:10:51 +0200 | [diff] [blame] | 35 | |
| 36 | reset: |
| 37 | /* |
| 38 | * set the cpu to SVC32 mode |
| 39 | */ |
| 40 | mrs r0,cpsr |
| 41 | bic r0,r0,#0x1f |
| 42 | orr r0,r0,#0xd3 |
| 43 | msr cpsr,r0 |
| 44 | |
| 45 | /* |
| 46 | * we do sys-critical inits only at reboot, |
| 47 | * not when booting from ram! |
| 48 | */ |
| 49 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
| 50 | bl cpu_init_crit |
| 51 | #endif |
| 52 | |
Albert ARIBAUD | facdae5 | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 53 | bl _main |
Heiko Schocher | c620af2 | 2010-09-17 13:10:51 +0200 | [diff] [blame] | 54 | |
| 55 | /*------------------------------------------------------------------------------*/ |
| 56 | |
Albert ARIBAUD | facdae5 | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 57 | .globl c_runtime_cpu_setup |
| 58 | c_runtime_cpu_setup: |
| 59 | |
| 60 | mov pc, lr |
| 61 | |
Heiko Schocher | c620af2 | 2010-09-17 13:10:51 +0200 | [diff] [blame] | 62 | /* |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 63 | ************************************************************************* |
| 64 | * |
| 65 | * CPU_init_critical registers |
| 66 | * |
| 67 | * setup important registers |
| 68 | * setup memory timing |
| 69 | * |
| 70 | ************************************************************************* |
| 71 | */ |
| 72 | |
Jean-Christophe PLAGNIOL-VILLARD | 314b728 | 2009-05-15 23:45:20 +0200 | [diff] [blame] | 73 | #ifndef CONFIG_SKIP_LOWLEVEL_INIT |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 74 | cpu_init_crit: |
| 75 | /* arm_int_generic assumes the ARM boot monitor, or user software, |
| 76 | * has initialized the platform |
| 77 | */ |
| 78 | mov pc, lr /* back to my caller */ |
Jean-Christophe PLAGNIOL-VILLARD | 314b728 | 2009-05-15 23:45:20 +0200 | [diff] [blame] | 79 | #endif |