blob: ecb4e44fd8d4df2b3ecdfcd8727f7e854332fd2d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenkfe8c2802002-11-03 00:38:21 +00002/*
3 * armboot - Startup Code for ARM720 CPU-core
4 *
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02005 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
6 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
wdenkfe8c2802002-11-03 00:38:21 +00007 */
8
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +02009#include <asm-offsets.h>
wdenkfe8c2802002-11-03 00:38:21 +000010#include <config.h>
wdenkfe8c2802002-11-03 00:38:21 +000011
12/*
13 *************************************************************************
14 *
wdenkfe8c2802002-11-03 00:38:21 +000015 * Startup Code (reset vector)
16 *
wdenkf6e20fc2004-02-08 19:38:38 +000017 * do important init only if we don't start from RAM!
wdenkfe8c2802002-11-03 00:38:21 +000018 * relocate armboot to ram
19 * setup stack
20 * jump to second stage
21 *
22 *************************************************************************
23 */
24
Albert ARIBAUD41623c92014-04-15 16:13:51 +020025 .globl reset
Heiko Schocherabef7b82010-09-17 13:10:52 +020026
27reset:
28 /*
29 * set the cpu to SVC32 mode
30 */
31 mrs r0,cpsr
32 bic r0,r0,#0x1f
33 orr r0,r0,#0xd3
34 msr cpsr,r0
35
36 /*
37 * we do sys-critical inits only at reboot,
38 * not when booting from ram!
39 */
Simon Glass1c2d2722017-05-31 17:57:11 -060040#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
41 !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
Heiko Schocherabef7b82010-09-17 13:10:52 +020042 bl cpu_init_crit
43#endif
44
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000045 bl _main
Heiko Schocherabef7b82010-09-17 13:10:52 +020046
47/*------------------------------------------------------------------------------*/
48
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000049 .globl c_runtime_cpu_setup
50c_runtime_cpu_setup:
51
52 mov pc, lr
53
wdenkfe8c2802002-11-03 00:38:21 +000054/*
55 *************************************************************************
56 *
57 * CPU_init_critical registers
58 *
59 * setup important registers
60 * setup memory timing
61 *
62 *************************************************************************
63 */
64
Simon Glass1c2d2722017-05-31 17:57:11 -060065#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
66 !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
wdenkfe8c2802002-11-03 00:38:21 +000067cpu_init_crit:
wdenkfe8c2802002-11-03 00:38:21 +000068
Wolfgang Denk87cb6862005-10-06 17:08:18 +020069 mov ip, lr
wdenkfe8c2802002-11-03 00:38:21 +000070 /*
71 * before relocating, we have to setup RAM timing
wdenkf6e20fc2004-02-08 19:38:38 +000072 * because memory timing is board-dependent, you will
wdenk400558b2005-04-02 23:52:25 +000073 * find a lowlevel_init.S in your board directory.
wdenkfe8c2802002-11-03 00:38:21 +000074 */
wdenk400558b2005-04-02 23:52:25 +000075 bl lowlevel_init
wdenkfe8c2802002-11-03 00:38:21 +000076 mov lr, ip
77
78 mov pc, lr
Axel Lin578e6372013-05-21 13:44:10 +000079#endif /* CONFIG_SKIP_LOWLEVEL_INIT */