blob: 7730a16e5126d59afea1ab1542c929a656ee72a4 [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
Tom Rinice1ea412023-04-05 19:48:55 -0400137 dsb
138 isb
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000139#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)
Raymond Maoe60aac72024-02-03 08:36:23 -0800155#if (IS_ENABLED(CONFIG_BLOBLIST))
156 /* Calculate the PC-relative address of saved_args */
157 adr r12, saved_args_offset
158 ldr r13, saved_args_offset
159 add r12, r12, r13
160
161 /*
162 * Intentionally swapping r0 with r2 in order to simplify the C
163 * function we use later.
164 */
165 str r2, [r12]
166 str r1, [r12, #4]
167 str r0, [r12, #8]
168 str r3, [r12, #12]
169#endif
Simon Glass47197fe2015-02-07 10:47:28 -0700170 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000171ENDPROC(save_boot_params)
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000172
Raymond Maoe60aac72024-02-03 08:36:23 -0800173#if (IS_ENABLED(CONFIG_BLOBLIST))
174saved_args_offset:
175 .long saved_args - . /* offset from current code to save_args */
176
177 .section .data
178 .align 2
179 .global saved_args
180saved_args:
181 .rept 4
182 .word 0
183 .endr
184END(saved_args)
185#endif
186
Keerthy61488c12016-09-14 10:43:32 +0530187#ifdef CONFIG_ARMV7_LPAE
Tom Rinicfbb8392022-11-22 12:31:56 -0500188WEAK(switch_to_hypervisor)
Keerthy61488c12016-09-14 10:43:32 +0530189 b switch_to_hypervisor_ret
190ENDPROC(switch_to_hypervisor)
Keerthy61488c12016-09-14 10:43:32 +0530191#endif
192
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000193/*************************************************************************
194 *
Simon Glass277e3082011-11-05 03:56:51 +0000195 * cpu_init_cp15
Dirk Behme7d75a102008-12-14 09:47:13 +0100196 *
Simon Glass277e3082011-11-05 03:56:51 +0000197 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
198 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme7d75a102008-12-14 09:47:13 +0100199 *
200 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000201ENTRY(cpu_init_cp15)
Andre Przywara5fc25562022-01-23 00:27:19 +0000202
203#if CONFIG_IS_ENABLED(ARMV7_SET_CORTEX_SMPEN)
204 /*
205 * The Arm Cortex-A7 TRM says this bit must be enabled before
206 * "any cache or TLB maintenance operations are performed".
207 */
208 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
209 orr r0, r0, #1 << 6 @ set SMP bit to enable coherency
210 mcr p15, 0, r0, c1, c0, 1 @ write auxilary control register
211#endif
212
Dirk Behme7d75a102008-12-14 09:47:13 +0100213 /*
214 * Invalidate L1 I/D
215 */
216 mov r0, #0 @ set up for MCR
217 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
218 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000219 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
Tom Rinice1ea412023-04-05 19:48:55 -0400220 dsb
221 isb
Dirk Behme7d75a102008-12-14 09:47:13 +0100222
223 /*
224 * disable MMU stuff and caches
225 */
226 mrc p15, 0, r0, c1, c0, 0
227 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
228 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
229 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000230 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400231#if CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000232 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
233#else
234 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
235#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100236 mcr p15, 0, r0, c1, c0, 0
Stephen Warrene9d59c92013-02-26 12:28:27 +0000237
Stephen Warrenc63c3502013-03-04 13:29:40 +0000238#ifdef CONFIG_ARM_ERRATA_716044
239 mrc p15, 0, r0, c1, c0, 0 @ read system control register
240 orr r0, r0, #1 << 11 @ set bit #11
241 mcr p15, 0, r0, c1, c0, 0 @ write system control register
242#endif
243
Nitin Garg7f17aed2014-04-02 08:55:01 -0500244#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warrene9d59c92013-02-26 12:28:27 +0000245 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
246 orr r0, r0, #1 << 4 @ set bit #4
247 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
248#endif
249
250#ifdef CONFIG_ARM_ERRATA_743622
251 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
252 orr r0, r0, #1 << 6 @ set bit #6
253 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
254#endif
255
256#ifdef CONFIG_ARM_ERRATA_751472
257 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
258 orr r0, r0, #1 << 11 @ set bit #11
259 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
260#endif
Nitin Garg245defa2014-04-02 08:55:02 -0500261#ifdef CONFIG_ARM_ERRATA_761320
262 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
263 orr r0, r0, #1 << 21 @ set bit #21
264 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
265#endif
Stephen Warrene9d59c92013-02-26 12:28:27 +0000266
Peng Fan5ac341f2017-08-08 13:34:52 +0800267#ifdef CONFIG_ARM_ERRATA_845369
268 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
269 orr r0, r0, #1 << 22 @ set bit #22
270 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
271#endif
272
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500273 mov r5, lr @ Store my Caller
274 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
275 mov r3, r1, lsr #20 @ get variant field
276 and r3, r3, #0xf @ r3 has CPU variant
277 and r4, r1, #0xf @ r4 has CPU revision
278 mov r2, r3, lsl #4 @ shift variant field for combined value
279 orr r2, r4, r2 @ r2 has combined CPU variant + revision
280
Andrew F. Davis441a0e92018-11-19 14:47:53 -0600281/* Early stack for ERRATA that needs into call C code */
282#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
283 ldr r0, =(CONFIG_SPL_STACK)
284#else
Tom Rini4ddbade2022-05-25 12:16:03 -0400285 ldr r0, =(SYS_INIT_SP_ADDR)
Andrew F. Davis441a0e92018-11-19 14:47:53 -0600286#endif
287 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
288 mov sp, r0
289
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500290#ifdef CONFIG_ARM_ERRATA_798870
291 cmp r2, #0x30 @ Applies to lower than R3p0
292 bge skip_errata_798870 @ skip if not affected rev
293 cmp r2, #0x20 @ Applies to including and above R2p0
294 blt skip_errata_798870 @ skip if not affected rev
295
296 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
297 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
298 push {r1-r5} @ Save the cpu info registers
299 bl v7_arch_cp15_set_l2aux_ctrl
300 isb @ Recommended ISB after l2actlr update
301 pop {r1-r5} @ Restore the cpu info - fall through
302skip_errata_798870:
303#endif
304
Nishanth Menon6e2bd2e2015-07-27 16:26:05 -0500305#ifdef CONFIG_ARM_ERRATA_801819
306 cmp r2, #0x24 @ Applies to lt including R2p4
307 bgt skip_errata_801819 @ skip if not affected rev
308 cmp r2, #0x20 @ Applies to including and above R2p0
309 blt skip_errata_801819 @ skip if not affected rev
310 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
311 and r0, r0, #1 << 3 @ check REVIDR[3]
312 cmp r0, #1 << 3
313 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
314
315 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
316 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
317 @ lines allocate in the L1 or L2 cache.
318 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
319 @ lines allocate in the L1 cache.
320 push {r1-r5} @ Save the cpu info registers
321 bl v7_arch_cp15_set_acr
322 pop {r1-r5} @ Restore the cpu info - fall through
323skip_errata_801819:
324#endif
325
Nishanth Menon6ffdeaa2018-06-12 15:24:09 -0500326#ifdef CONFIG_ARM_CORTEX_A15_CVE_2017_5715
327 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
328 orr r0, r0, #1 << 0 @ Enable invalidates of BTB
329 push {r1-r5} @ Save the cpu info registers
330 bl v7_arch_cp15_set_acr
331 pop {r1-r5} @ Restore the cpu info - fall through
332#endif
333
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500334#ifdef CONFIG_ARM_ERRATA_454179
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300335 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
336
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500337 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300338 orrlt r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500339
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500340 push {r1-r5} @ Save the cpu info registers
341 bl v7_arch_cp15_set_acr
342 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500343#endif
344
Nishanth Menon85515bf2018-06-12 15:24:08 -0500345#if defined(CONFIG_ARM_ERRATA_430973) || defined (CONFIG_ARM_CORTEX_A8_CVE_2017_5715)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300346 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
347
Nishanth Menon85515bf2018-06-12 15:24:08 -0500348#ifdef CONFIG_ARM_CORTEX_A8_CVE_2017_5715
349 orr r0, r0, #(0x1 << 6) @ Set IBE bit always to enable OS WA
350#else
Nishanth Menon3f445112015-03-09 17:12:01 -0500351 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300352 orrlt r0, r0, #(0x1 << 6) @ Set IBE bit
Nishanth Menon85515bf2018-06-12 15:24:08 -0500353#endif
Nishanth Menon3f445112015-03-09 17:12:01 -0500354 push {r1-r5} @ Save the cpu info registers
355 bl v7_arch_cp15_set_acr
356 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon3f445112015-03-09 17:12:01 -0500357#endif
358
Nishanth Menon49db62d2015-03-09 17:12:02 -0500359#ifdef CONFIG_ARM_ERRATA_621766
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300360 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
361
Nishanth Menon49db62d2015-03-09 17:12:02 -0500362 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300363 orrlt r0, r0, #(0x1 << 5) @ Set L1NEON bit
Nishanth Menon49db62d2015-03-09 17:12:02 -0500364
Nishanth Menon49db62d2015-03-09 17:12:02 -0500365 push {r1-r5} @ Save the cpu info registers
366 bl v7_arch_cp15_set_acr
367 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon49db62d2015-03-09 17:12:02 -0500368#endif
369
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200370#ifdef CONFIG_ARM_ERRATA_725233
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300371 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
372
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200373 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300374 orrlt r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200375
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200376 push {r1-r5} @ Save the cpu info registers
377 bl v7_arch_cp15_set_l2aux_ctrl
378 pop {r1-r5} @ Restore the cpu info - fall through
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200379#endif
380
Nisal Menukafaa993a2017-04-26 16:18:01 -0500381#ifdef CONFIG_ARM_ERRATA_852421
382 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
383 orr r0, r0, #1 << 24 @ set bit #24
384 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
385#endif
386
387#ifdef CONFIG_ARM_ERRATA_852423
388 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
389 orr r0, r0, #1 << 12 @ set bit #12
390 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
391#endif
392
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500393 mov pc, r5 @ back to my caller
Aneesh Vfd8798b2012-03-08 07:20:18 +0000394ENDPROC(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100395
Tom Rinie1e85442021-08-27 21:18:30 -0400396#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) && \
397 !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass277e3082011-11-05 03:56:51 +0000398/*************************************************************************
399 *
400 * CPU_init_critical registers
401 *
402 * setup important registers
403 * setup memory timing
404 *
405 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000406ENTRY(cpu_init_crit)
Dirk Behme7d75a102008-12-14 09:47:13 +0100407 /*
408 * Jump to board specific initialization...
409 * The Mask ROM will have already initialized
410 * basic memory. Go here to bump up clock rate and handle
411 * wake up conditions.
412 */
Benoît Thébaudeau0a167902012-08-10 12:05:16 +0000413 b lowlevel_init @ go setup pll,mux,memory
Aneesh Vfd8798b2012-03-08 07:20:18 +0000414ENDPROC(cpu_init_crit)
Rob Herringa6932872011-06-28 05:39:38 +0000415#endif
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800416
417#if CONFIG_POSITION_INDEPENDENT
418_rel_dyn_start_ofs:
419 .word __rel_dyn_start - pie_fixup
420_rel_dyn_end_ofs:
421 .word __rel_dyn_end - pie_fixup
422#endif