blob: 7d7aac021e2261784ccf0500c2b90b32e9c50ab0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behme7d75a102008-12-14 09:47:13 +01002/*
3 * armboot - Startup Code for OMAP3530/ARM Cortex CPU-core
4 *
5 * Copyright (c) 2004 Texas Instruments <r-woodruff2@ti.com>
6 *
7 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
8 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
Detlev Zundelf1b3f2b2009-05-13 10:54:10 +02009 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme7d75a102008-12-14 09:47:13 +010010 * Copyright (c) 2003 Richard Woodruff <r-woodruff2@ti.com>
11 * Copyright (c) 2003 Kshitij <kshitij@ti.com>
12 * Copyright (c) 2006-2008 Syed Mohammed Khasim <x0khasim@ti.com>
Dirk Behme7d75a102008-12-14 09:47:13 +010013 */
14
Wolfgang Denk0191e472010-10-26 14:34:52 +020015#include <asm-offsets.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010016#include <config.h>
Aneesh V688ee132011-11-21 23:34:00 +000017#include <asm/system.h>
Aneesh Vfd8798b2012-03-08 07:20:18 +000018#include <linux/linkage.h>
Keerthy61488c12016-09-14 10:43:32 +053019#include <asm/armv7.h>
Tom Rini4ddbade2022-05-25 12:16:03 -040020#include <system-constants.h>
Dirk Behme7d75a102008-12-14 09:47:13 +010021
Dirk Behme7d75a102008-12-14 09:47:13 +010022/*************************************************************************
23 *
24 * Startup Code (reset vector)
25 *
Pavel Machekeb0a0b42015-04-08 14:15:54 +020026 * 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. Setup stack.
Dirk Behme7d75a102008-12-14 09:47:13 +010029 *
30 *************************************************************************/
31
Albert ARIBAUD9852cc62014-04-15 16:13:51 +020032 .globl reset
Simon Glass47197fe2015-02-07 10:47:28 -070033 .globl save_boot_params_ret
Philipp Tomsich5636d4a2017-10-10 16:21:12 +020034 .type save_boot_params_ret,%function
Keerthy61488c12016-09-14 10:43:32 +053035#ifdef CONFIG_ARMV7_LPAE
36 .global switch_to_hypervisor_ret
37#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010038
39reset:
Simon Glass47197fe2015-02-07 10:47:28 -070040 /* Allow the board to save important registers */
41 b save_boot_params
42save_boot_params_ret:
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +080043#ifdef CONFIG_POSITION_INDEPENDENT
44 /*
45 * Fix .rela.dyn relocations. This allows U-Boot to loaded to and
46 * executed at a different address than it was linked at.
47 */
48pie_fixup:
49 adr r0, reset /* r0 <- Runtime value of reset label */
50 ldr r1, =reset /* r1 <- Linked value of reset label */
51 subs r4, r0, r1 /* r4 <- Runtime-vs-link offset */
52 beq pie_fixup_done
53
54 adr r0, pie_fixup
55 ldr r1, _rel_dyn_start_ofs
56 add r2, r0, r1 /* r2 <- Runtime &__rel_dyn_start */
57 ldr r1, _rel_dyn_end_ofs
58 add r3, r0, r1 /* r3 <- Runtime &__rel_dyn_end */
59
60pie_fix_loop:
61 ldr r0, [r2] /* r0 <- Link location */
62 ldr r1, [r2, #4] /* r1 <- fixup */
63 cmp r1, #23 /* relative fixup? */
64 bne pie_skip_reloc
65
66 /* relative fix: increase location by offset */
67 add r0, r4
68 ldr r1, [r0]
69 add r1, r4
70 str r1, [r0]
71 str r0, [r2]
72 add r2, #8
73pie_skip_reloc:
74 cmp r2, r3
75 blo pie_fix_loop
76pie_fixup_done:
77#endif
78
Keerthy61488c12016-09-14 10:43:32 +053079#ifdef CONFIG_ARMV7_LPAE
80/*
81 * check for Hypervisor support
82 */
83 mrc p15, 0, r0, c0, c1, 1 @ read ID_PFR1
84 and r0, r0, #CPUID_ARM_VIRT_MASK @ mask virtualization bits
85 cmp r0, #(1 << CPUID_ARM_VIRT_SHIFT)
86 beq switch_to_hypervisor
87switch_to_hypervisor_ret:
88#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010089 /*
Andre Przywara7acb96b2013-04-02 05:43:36 +000090 * disable interrupts (FIQ and IRQ), also set the cpu to SVC32 mode,
91 * except if in HYP mode already
Dirk Behme7d75a102008-12-14 09:47:13 +010092 */
93 mrs r0, cpsr
Andre Przywara7acb96b2013-04-02 05:43:36 +000094 and r1, r0, #0x1f @ mask mode bits
95 teq r1, #0x1a @ test for HYP mode
96 bicne r0, r0, #0x1f @ clear all mode bits
97 orrne r0, r0, #0x13 @ set SVC mode
98 orr r0, r0, #0xc0 @ disable FIQ and IRQ
Dirk Behme7d75a102008-12-14 09:47:13 +010099 msr cpsr,r0
100
Pali Rohára4d6e0f2022-04-06 16:20:18 +0200101#if !CONFIG_IS_ENABLED(SYS_NO_VECTOR_TABLE)
Aneesh V688ee132011-11-21 23:34:00 +0000102/*
103 * Setup vector:
Aneesh V688ee132011-11-21 23:34:00 +0000104 */
Peng Fan0bd68872015-01-29 18:03:39 +0800105 /* Set V=0 in CP15 SCTLR register - for VBAR to point to vector */
106 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +0000107 bic r0, #CR_V @ V = 0
Peng Fan0bd68872015-01-29 18:03:39 +0800108 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +0000109
Lokesh Vutla244588c2018-04-26 18:21:25 +0530110#ifdef CONFIG_HAS_VBAR
Aneesh V688ee132011-11-21 23:34:00 +0000111 /* Set vector address in CP15 VBAR register */
112 ldr r0, =_start
113 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
114#endif
Lokesh Vutla244588c2018-04-26 18:21:25 +0530115#endif
Aneesh V688ee132011-11-21 23:34:00 +0000116
Dirk Behme7d75a102008-12-14 09:47:13 +0100117 /* the mask ROM code should have PLL and others stable */
Tom Rinie1e85442021-08-27 21:18:30 -0400118#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT)
Michal Simekf4359382018-04-26 18:21:29 +0530119#ifdef CONFIG_CPU_V7A
Simon Glass277e3082011-11-05 03:56:51 +0000120 bl cpu_init_cp15
Michal Simekf4359382018-04-26 18:21:29 +0530121#endif
Tom Rinie1e85442021-08-27 21:18:30 -0400122#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Dirk Behme7d75a102008-12-14 09:47:13 +0100123 bl cpu_init_crit
124#endif
Simon Glass90844072016-05-05 07:28:06 -0600125#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100126
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000127 bl _main
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200128
129/*------------------------------------------------------------------------------*/
130
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000131ENTRY(c_runtime_cpu_setup)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000132/*
133 * If I-cache is enabled invalidate it
134 */
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400135#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000136 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
137 mcr p15, 0, r0, c7, c10, 4 @ DSB
138 mcr p15, 0, r0, c7, c5, 4 @ ISB
139#endif
Tetsuyuki Kobayashi61c70db2012-06-25 02:40:57 +0000140
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000141 bx lr
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200142
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000143ENDPROC(c_runtime_cpu_setup)
Heiko Schocher661a29e2010-10-11 14:08:15 +0200144
Dirk Behme7d75a102008-12-14 09:47:13 +0100145/*************************************************************************
146 *
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000147 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
148 * __attribute__((weak));
149 *
150 * Stack pointer is not yet initialized at this moment
151 * Don't save anything to stack even if compiled with -O0
152 *
153 *************************************************************************/
Tom Rinicfbb8392022-11-22 12:31:56 -0500154WEAK(save_boot_params)
Simon Glass47197fe2015-02-07 10:47:28 -0700155 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000156ENDPROC(save_boot_params)
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000157
Keerthy61488c12016-09-14 10:43:32 +0530158#ifdef CONFIG_ARMV7_LPAE
Tom Rinicfbb8392022-11-22 12:31:56 -0500159WEAK(switch_to_hypervisor)
Keerthy61488c12016-09-14 10:43:32 +0530160 b switch_to_hypervisor_ret
161ENDPROC(switch_to_hypervisor)
Keerthy61488c12016-09-14 10:43:32 +0530162#endif
163
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000164/*************************************************************************
165 *
Simon Glass277e3082011-11-05 03:56:51 +0000166 * cpu_init_cp15
Dirk Behme7d75a102008-12-14 09:47:13 +0100167 *
Simon Glass277e3082011-11-05 03:56:51 +0000168 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
169 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme7d75a102008-12-14 09:47:13 +0100170 *
171 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000172ENTRY(cpu_init_cp15)
Andre Przywara5fc25562022-01-23 00:27:19 +0000173
174#if CONFIG_IS_ENABLED(ARMV7_SET_CORTEX_SMPEN)
175 /*
176 * The Arm Cortex-A7 TRM says this bit must be enabled before
177 * "any cache or TLB maintenance operations are performed".
178 */
179 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
180 orr r0, r0, #1 << 6 @ set SMP bit to enable coherency
181 mcr p15, 0, r0, c1, c0, 1 @ write auxilary control register
182#endif
183
Dirk Behme7d75a102008-12-14 09:47:13 +0100184 /*
185 * Invalidate L1 I/D
186 */
187 mov r0, #0 @ set up for MCR
188 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
189 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000190 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
191 mcr p15, 0, r0, c7, c10, 4 @ DSB
192 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme7d75a102008-12-14 09:47:13 +0100193
194 /*
195 * disable MMU stuff and caches
196 */
197 mrc p15, 0, r0, c1, c0, 0
198 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
199 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
200 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000201 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400202#if CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000203 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
204#else
205 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
206#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100207 mcr p15, 0, r0, c1, c0, 0
Stephen Warrene9d59c92013-02-26 12:28:27 +0000208
Stephen Warrenc63c3502013-03-04 13:29:40 +0000209#ifdef CONFIG_ARM_ERRATA_716044
210 mrc p15, 0, r0, c1, c0, 0 @ read system control register
211 orr r0, r0, #1 << 11 @ set bit #11
212 mcr p15, 0, r0, c1, c0, 0 @ write system control register
213#endif
214
Nitin Garg7f17aed2014-04-02 08:55:01 -0500215#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warrene9d59c92013-02-26 12:28:27 +0000216 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
217 orr r0, r0, #1 << 4 @ set bit #4
218 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
219#endif
220
221#ifdef CONFIG_ARM_ERRATA_743622
222 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
223 orr r0, r0, #1 << 6 @ set bit #6
224 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
225#endif
226
227#ifdef CONFIG_ARM_ERRATA_751472
228 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
229 orr r0, r0, #1 << 11 @ set bit #11
230 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
231#endif
Nitin Garg245defa2014-04-02 08:55:02 -0500232#ifdef CONFIG_ARM_ERRATA_761320
233 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
234 orr r0, r0, #1 << 21 @ set bit #21
235 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
236#endif
Stephen Warrene9d59c92013-02-26 12:28:27 +0000237
Peng Fan5ac341f2017-08-08 13:34:52 +0800238#ifdef CONFIG_ARM_ERRATA_845369
239 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
240 orr r0, r0, #1 << 22 @ set bit #22
241 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
242#endif
243
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500244 mov r5, lr @ Store my Caller
245 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
246 mov r3, r1, lsr #20 @ get variant field
247 and r3, r3, #0xf @ r3 has CPU variant
248 and r4, r1, #0xf @ r4 has CPU revision
249 mov r2, r3, lsl #4 @ shift variant field for combined value
250 orr r2, r4, r2 @ r2 has combined CPU variant + revision
251
Andrew F. Davis441a0e92018-11-19 14:47:53 -0600252/* Early stack for ERRATA that needs into call C code */
253#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
254 ldr r0, =(CONFIG_SPL_STACK)
255#else
Tom Rini4ddbade2022-05-25 12:16:03 -0400256 ldr r0, =(SYS_INIT_SP_ADDR)
Andrew F. Davis441a0e92018-11-19 14:47:53 -0600257#endif
258 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
259 mov sp, r0
260
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500261#ifdef CONFIG_ARM_ERRATA_798870
262 cmp r2, #0x30 @ Applies to lower than R3p0
263 bge skip_errata_798870 @ skip if not affected rev
264 cmp r2, #0x20 @ Applies to including and above R2p0
265 blt skip_errata_798870 @ skip if not affected rev
266
267 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
268 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
269 push {r1-r5} @ Save the cpu info registers
270 bl v7_arch_cp15_set_l2aux_ctrl
271 isb @ Recommended ISB after l2actlr update
272 pop {r1-r5} @ Restore the cpu info - fall through
273skip_errata_798870:
274#endif
275
Nishanth Menon6e2bd2e2015-07-27 16:26:05 -0500276#ifdef CONFIG_ARM_ERRATA_801819
277 cmp r2, #0x24 @ Applies to lt including R2p4
278 bgt skip_errata_801819 @ skip if not affected rev
279 cmp r2, #0x20 @ Applies to including and above R2p0
280 blt skip_errata_801819 @ skip if not affected rev
281 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
282 and r0, r0, #1 << 3 @ check REVIDR[3]
283 cmp r0, #1 << 3
284 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
285
286 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
287 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
288 @ lines allocate in the L1 or L2 cache.
289 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
290 @ lines allocate in the L1 cache.
291 push {r1-r5} @ Save the cpu info registers
292 bl v7_arch_cp15_set_acr
293 pop {r1-r5} @ Restore the cpu info - fall through
294skip_errata_801819:
295#endif
296
Nishanth Menon6ffdeaa2018-06-12 15:24:09 -0500297#ifdef CONFIG_ARM_CORTEX_A15_CVE_2017_5715
298 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
299 orr r0, r0, #1 << 0 @ Enable invalidates of BTB
300 push {r1-r5} @ Save the cpu info registers
301 bl v7_arch_cp15_set_acr
302 pop {r1-r5} @ Restore the cpu info - fall through
303#endif
304
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500305#ifdef CONFIG_ARM_ERRATA_454179
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300306 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
307
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500308 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300309 orrlt r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500310
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500311 push {r1-r5} @ Save the cpu info registers
312 bl v7_arch_cp15_set_acr
313 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500314#endif
315
Nishanth Menon85515bf2018-06-12 15:24:08 -0500316#if defined(CONFIG_ARM_ERRATA_430973) || defined (CONFIG_ARM_CORTEX_A8_CVE_2017_5715)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300317 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
318
Nishanth Menon85515bf2018-06-12 15:24:08 -0500319#ifdef CONFIG_ARM_CORTEX_A8_CVE_2017_5715
320 orr r0, r0, #(0x1 << 6) @ Set IBE bit always to enable OS WA
321#else
Nishanth Menon3f445112015-03-09 17:12:01 -0500322 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300323 orrlt r0, r0, #(0x1 << 6) @ Set IBE bit
Nishanth Menon85515bf2018-06-12 15:24:08 -0500324#endif
Nishanth Menon3f445112015-03-09 17:12:01 -0500325 push {r1-r5} @ Save the cpu info registers
326 bl v7_arch_cp15_set_acr
327 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon3f445112015-03-09 17:12:01 -0500328#endif
329
Nishanth Menon49db62d2015-03-09 17:12:02 -0500330#ifdef CONFIG_ARM_ERRATA_621766
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300331 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
332
Nishanth Menon49db62d2015-03-09 17:12:02 -0500333 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300334 orrlt r0, r0, #(0x1 << 5) @ Set L1NEON bit
Nishanth Menon49db62d2015-03-09 17:12:02 -0500335
Nishanth Menon49db62d2015-03-09 17:12:02 -0500336 push {r1-r5} @ Save the cpu info registers
337 bl v7_arch_cp15_set_acr
338 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon49db62d2015-03-09 17:12:02 -0500339#endif
340
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200341#ifdef CONFIG_ARM_ERRATA_725233
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300342 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
343
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200344 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300345 orrlt r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200346
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200347 push {r1-r5} @ Save the cpu info registers
348 bl v7_arch_cp15_set_l2aux_ctrl
349 pop {r1-r5} @ Restore the cpu info - fall through
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200350#endif
351
Nisal Menukafaa993a2017-04-26 16:18:01 -0500352#ifdef CONFIG_ARM_ERRATA_852421
353 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
354 orr r0, r0, #1 << 24 @ set bit #24
355 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
356#endif
357
358#ifdef CONFIG_ARM_ERRATA_852423
359 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
360 orr r0, r0, #1 << 12 @ set bit #12
361 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
362#endif
363
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500364 mov pc, r5 @ back to my caller
Aneesh Vfd8798b2012-03-08 07:20:18 +0000365ENDPROC(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100366
Tom Rinie1e85442021-08-27 21:18:30 -0400367#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) && \
368 !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass277e3082011-11-05 03:56:51 +0000369/*************************************************************************
370 *
371 * CPU_init_critical registers
372 *
373 * setup important registers
374 * setup memory timing
375 *
376 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000377ENTRY(cpu_init_crit)
Dirk Behme7d75a102008-12-14 09:47:13 +0100378 /*
379 * Jump to board specific initialization...
380 * The Mask ROM will have already initialized
381 * basic memory. Go here to bump up clock rate and handle
382 * wake up conditions.
383 */
Benoît Thébaudeau0a167902012-08-10 12:05:16 +0000384 b lowlevel_init @ go setup pll,mux,memory
Aneesh Vfd8798b2012-03-08 07:20:18 +0000385ENDPROC(cpu_init_crit)
Rob Herringa6932872011-06-28 05:39:38 +0000386#endif
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800387
388#if CONFIG_POSITION_INDEPENDENT
389_rel_dyn_start_ofs:
390 .word __rel_dyn_start - pie_fixup
391_rel_dyn_end_ofs:
392 .word __rel_dyn_end - pie_fixup
393#endif