blob: 37036128a785454f957f9a5553d2b18b26a493b6 [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>
Dirk Behme7d75a102008-12-14 09:47:13 +010020
Dirk Behme7d75a102008-12-14 09:47:13 +010021/*************************************************************************
22 *
23 * Startup Code (reset vector)
24 *
Pavel Machekeb0a0b42015-04-08 14:15:54 +020025 * Do important init only if we don't start from memory!
26 * Setup memory and board specific bits prior to relocation.
27 * Relocate armboot to ram. Setup stack.
Dirk Behme7d75a102008-12-14 09:47:13 +010028 *
29 *************************************************************************/
30
Albert ARIBAUD9852cc62014-04-15 16:13:51 +020031 .globl reset
Simon Glass47197fe2015-02-07 10:47:28 -070032 .globl save_boot_params_ret
Philipp Tomsich5636d4a2017-10-10 16:21:12 +020033 .type save_boot_params_ret,%function
Keerthy61488c12016-09-14 10:43:32 +053034#ifdef CONFIG_ARMV7_LPAE
35 .global switch_to_hypervisor_ret
36#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010037
38reset:
Simon Glass47197fe2015-02-07 10:47:28 -070039 /* Allow the board to save important registers */
40 b save_boot_params
41save_boot_params_ret:
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +080042#ifdef CONFIG_POSITION_INDEPENDENT
43 /*
44 * Fix .rela.dyn relocations. This allows U-Boot to loaded to and
45 * executed at a different address than it was linked at.
46 */
47pie_fixup:
48 adr r0, reset /* r0 <- Runtime value of reset label */
49 ldr r1, =reset /* r1 <- Linked value of reset label */
50 subs r4, r0, r1 /* r4 <- Runtime-vs-link offset */
51 beq pie_fixup_done
52
53 adr r0, pie_fixup
54 ldr r1, _rel_dyn_start_ofs
55 add r2, r0, r1 /* r2 <- Runtime &__rel_dyn_start */
56 ldr r1, _rel_dyn_end_ofs
57 add r3, r0, r1 /* r3 <- Runtime &__rel_dyn_end */
58
59pie_fix_loop:
60 ldr r0, [r2] /* r0 <- Link location */
61 ldr r1, [r2, #4] /* r1 <- fixup */
62 cmp r1, #23 /* relative fixup? */
63 bne pie_skip_reloc
64
65 /* relative fix: increase location by offset */
66 add r0, r4
67 ldr r1, [r0]
68 add r1, r4
69 str r1, [r0]
70 str r0, [r2]
71 add r2, #8
72pie_skip_reloc:
73 cmp r2, r3
74 blo pie_fix_loop
75pie_fixup_done:
76#endif
77
Keerthy61488c12016-09-14 10:43:32 +053078#ifdef CONFIG_ARMV7_LPAE
79/*
80 * check for Hypervisor support
81 */
82 mrc p15, 0, r0, c0, c1, 1 @ read ID_PFR1
83 and r0, r0, #CPUID_ARM_VIRT_MASK @ mask virtualization bits
84 cmp r0, #(1 << CPUID_ARM_VIRT_SHIFT)
85 beq switch_to_hypervisor
86switch_to_hypervisor_ret:
87#endif
Dirk Behme7d75a102008-12-14 09:47:13 +010088 /*
Andre Przywara7acb96b2013-04-02 05:43:36 +000089 * disable interrupts (FIQ and IRQ), also set the cpu to SVC32 mode,
90 * except if in HYP mode already
Dirk Behme7d75a102008-12-14 09:47:13 +010091 */
92 mrs r0, cpsr
Andre Przywara7acb96b2013-04-02 05:43:36 +000093 and r1, r0, #0x1f @ mask mode bits
94 teq r1, #0x1a @ test for HYP mode
95 bicne r0, r0, #0x1f @ clear all mode bits
96 orrne r0, r0, #0x13 @ set SVC mode
97 orr r0, r0, #0xc0 @ disable FIQ and IRQ
Dirk Behme7d75a102008-12-14 09:47:13 +010098 msr cpsr,r0
99
Pali Rohára4d6e0f2022-04-06 16:20:18 +0200100#if !CONFIG_IS_ENABLED(SYS_NO_VECTOR_TABLE)
Aneesh V688ee132011-11-21 23:34:00 +0000101/*
102 * Setup vector:
Aneesh V688ee132011-11-21 23:34:00 +0000103 */
Peng Fan0bd68872015-01-29 18:03:39 +0800104 /* Set V=0 in CP15 SCTLR register - for VBAR to point to vector */
105 mrc p15, 0, r0, c1, c0, 0 @ Read CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +0000106 bic r0, #CR_V @ V = 0
Peng Fan0bd68872015-01-29 18:03:39 +0800107 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh V688ee132011-11-21 23:34:00 +0000108
Lokesh Vutla244588c2018-04-26 18:21:25 +0530109#ifdef CONFIG_HAS_VBAR
Aneesh V688ee132011-11-21 23:34:00 +0000110 /* Set vector address in CP15 VBAR register */
111 ldr r0, =_start
112 mcr p15, 0, r0, c12, c0, 0 @Set VBAR
113#endif
Lokesh Vutla244588c2018-04-26 18:21:25 +0530114#endif
Aneesh V688ee132011-11-21 23:34:00 +0000115
Dirk Behme7d75a102008-12-14 09:47:13 +0100116 /* the mask ROM code should have PLL and others stable */
Tom Rinie1e85442021-08-27 21:18:30 -0400117#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT)
Michal Simekf4359382018-04-26 18:21:29 +0530118#ifdef CONFIG_CPU_V7A
Simon Glass277e3082011-11-05 03:56:51 +0000119 bl cpu_init_cp15
Michal Simekf4359382018-04-26 18:21:29 +0530120#endif
Tom Rinie1e85442021-08-27 21:18:30 -0400121#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Dirk Behme7d75a102008-12-14 09:47:13 +0100122 bl cpu_init_crit
123#endif
Simon Glass90844072016-05-05 07:28:06 -0600124#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100125
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000126 bl _main
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200127
128/*------------------------------------------------------------------------------*/
129
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000130ENTRY(c_runtime_cpu_setup)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000131/*
132 * If I-cache is enabled invalidate it
133 */
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400134#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000135 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
136 mcr p15, 0, r0, c7, c10, 4 @ DSB
137 mcr p15, 0, r0, c7, c5, 4 @ ISB
138#endif
Tetsuyuki Kobayashi61c70db2012-06-25 02:40:57 +0000139
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000140 bx lr
Heiko Schocher56d0a4d2010-09-17 13:10:41 +0200141
Albert ARIBAUDfacdae52013-01-08 10:18:02 +0000142ENDPROC(c_runtime_cpu_setup)
Heiko Schocher661a29e2010-10-11 14:08:15 +0200143
Dirk Behme7d75a102008-12-14 09:47:13 +0100144/*************************************************************************
145 *
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000146 * void save_boot_params(u32 r0, u32 r1, u32 r2, u32 r3)
147 * __attribute__((weak));
148 *
149 * Stack pointer is not yet initialized at this moment
150 * Don't save anything to stack even if compiled with -O0
151 *
152 *************************************************************************/
153ENTRY(save_boot_params)
Simon Glass47197fe2015-02-07 10:47:28 -0700154 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000155ENDPROC(save_boot_params)
156 .weak save_boot_params
157
Keerthy61488c12016-09-14 10:43:32 +0530158#ifdef CONFIG_ARMV7_LPAE
159ENTRY(switch_to_hypervisor)
160 b switch_to_hypervisor_ret
161ENDPROC(switch_to_hypervisor)
162 .weak switch_to_hypervisor
163#endif
164
Tetsuyuki Kobayashi153ba382012-07-06 21:14:20 +0000165/*************************************************************************
166 *
Simon Glass277e3082011-11-05 03:56:51 +0000167 * cpu_init_cp15
Dirk Behme7d75a102008-12-14 09:47:13 +0100168 *
Simon Glass277e3082011-11-05 03:56:51 +0000169 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
170 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme7d75a102008-12-14 09:47:13 +0100171 *
172 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000173ENTRY(cpu_init_cp15)
Andre Przywara5fc25562022-01-23 00:27:19 +0000174
175#if CONFIG_IS_ENABLED(ARMV7_SET_CORTEX_SMPEN)
176 /*
177 * The Arm Cortex-A7 TRM says this bit must be enabled before
178 * "any cache or TLB maintenance operations are performed".
179 */
180 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
181 orr r0, r0, #1 << 6 @ set SMP bit to enable coherency
182 mcr p15, 0, r0, c1, c0, 1 @ write auxilary control register
183#endif
184
Dirk Behme7d75a102008-12-14 09:47:13 +0100185 /*
186 * Invalidate L1 I/D
187 */
188 mov r0, #0 @ set up for MCR
189 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
190 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000191 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
192 mcr p15, 0, r0, c7, c10, 4 @ DSB
193 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme7d75a102008-12-14 09:47:13 +0100194
195 /*
196 * disable MMU stuff and caches
197 */
198 mrc p15, 0, r0, c1, c0, 0
199 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
200 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
201 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000202 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400203#if CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh V3e3bc1e2011-06-16 23:30:49 +0000204 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
205#else
206 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
207#endif
Dirk Behme7d75a102008-12-14 09:47:13 +0100208 mcr p15, 0, r0, c1, c0, 0
Stephen Warrene9d59c92013-02-26 12:28:27 +0000209
Stephen Warrenc63c3502013-03-04 13:29:40 +0000210#ifdef CONFIG_ARM_ERRATA_716044
211 mrc p15, 0, r0, c1, c0, 0 @ read system control register
212 orr r0, r0, #1 << 11 @ set bit #11
213 mcr p15, 0, r0, c1, c0, 0 @ write system control register
214#endif
215
Nitin Garg7f17aed2014-04-02 08:55:01 -0500216#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warrene9d59c92013-02-26 12:28:27 +0000217 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
218 orr r0, r0, #1 << 4 @ set bit #4
219 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
220#endif
221
222#ifdef CONFIG_ARM_ERRATA_743622
223 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
224 orr r0, r0, #1 << 6 @ set bit #6
225 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
226#endif
227
228#ifdef CONFIG_ARM_ERRATA_751472
229 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
230 orr r0, r0, #1 << 11 @ set bit #11
231 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
232#endif
Nitin Garg245defa2014-04-02 08:55:02 -0500233#ifdef CONFIG_ARM_ERRATA_761320
234 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
235 orr r0, r0, #1 << 21 @ set bit #21
236 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
237#endif
Stephen Warrene9d59c92013-02-26 12:28:27 +0000238
Peng Fan5ac341f2017-08-08 13:34:52 +0800239#ifdef CONFIG_ARM_ERRATA_845369
240 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
241 orr r0, r0, #1 << 22 @ set bit #22
242 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
243#endif
244
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500245 mov r5, lr @ Store my Caller
246 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
247 mov r3, r1, lsr #20 @ get variant field
248 and r3, r3, #0xf @ r3 has CPU variant
249 and r4, r1, #0xf @ r4 has CPU revision
250 mov r2, r3, lsl #4 @ shift variant field for combined value
251 orr r2, r4, r2 @ r2 has combined CPU variant + revision
252
Andrew F. Davis441a0e92018-11-19 14:47:53 -0600253/* Early stack for ERRATA that needs into call C code */
254#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
255 ldr r0, =(CONFIG_SPL_STACK)
256#else
257 ldr r0, =(CONFIG_SYS_INIT_SP_ADDR)
258#endif
259 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
260 mov sp, r0
261
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500262#ifdef CONFIG_ARM_ERRATA_798870
263 cmp r2, #0x30 @ Applies to lower than R3p0
264 bge skip_errata_798870 @ skip if not affected rev
265 cmp r2, #0x20 @ Applies to including and above R2p0
266 blt skip_errata_798870 @ skip if not affected rev
267
268 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
269 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
270 push {r1-r5} @ Save the cpu info registers
271 bl v7_arch_cp15_set_l2aux_ctrl
272 isb @ Recommended ISB after l2actlr update
273 pop {r1-r5} @ Restore the cpu info - fall through
274skip_errata_798870:
275#endif
276
Nishanth Menon6e2bd2e2015-07-27 16:26:05 -0500277#ifdef CONFIG_ARM_ERRATA_801819
278 cmp r2, #0x24 @ Applies to lt including R2p4
279 bgt skip_errata_801819 @ skip if not affected rev
280 cmp r2, #0x20 @ Applies to including and above R2p0
281 blt skip_errata_801819 @ skip if not affected rev
282 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
283 and r0, r0, #1 << 3 @ check REVIDR[3]
284 cmp r0, #1 << 3
285 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
286
287 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
288 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
289 @ lines allocate in the L1 or L2 cache.
290 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
291 @ lines allocate in the L1 cache.
292 push {r1-r5} @ Save the cpu info registers
293 bl v7_arch_cp15_set_acr
294 pop {r1-r5} @ Restore the cpu info - fall through
295skip_errata_801819:
296#endif
297
Nishanth Menon6ffdeaa2018-06-12 15:24:09 -0500298#ifdef CONFIG_ARM_CORTEX_A15_CVE_2017_5715
299 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
300 orr r0, r0, #1 << 0 @ Enable invalidates of BTB
301 push {r1-r5} @ Save the cpu info registers
302 bl v7_arch_cp15_set_acr
303 pop {r1-r5} @ Restore the cpu info - fall through
304#endif
305
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500306#ifdef CONFIG_ARM_ERRATA_454179
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300307 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
308
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500309 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300310 orrlt r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500311
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500312 push {r1-r5} @ Save the cpu info registers
313 bl v7_arch_cp15_set_acr
314 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon071d6ce2015-03-09 17:12:00 -0500315#endif
316
Nishanth Menon85515bf2018-06-12 15:24:08 -0500317#if defined(CONFIG_ARM_ERRATA_430973) || defined (CONFIG_ARM_CORTEX_A8_CVE_2017_5715)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300318 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
319
Nishanth Menon85515bf2018-06-12 15:24:08 -0500320#ifdef CONFIG_ARM_CORTEX_A8_CVE_2017_5715
321 orr r0, r0, #(0x1 << 6) @ Set IBE bit always to enable OS WA
322#else
Nishanth Menon3f445112015-03-09 17:12:01 -0500323 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300324 orrlt r0, r0, #(0x1 << 6) @ Set IBE bit
Nishanth Menon85515bf2018-06-12 15:24:08 -0500325#endif
Nishanth Menon3f445112015-03-09 17:12:01 -0500326 push {r1-r5} @ Save the cpu info registers
327 bl v7_arch_cp15_set_acr
328 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon3f445112015-03-09 17:12:01 -0500329#endif
330
Nishanth Menon49db62d2015-03-09 17:12:02 -0500331#ifdef CONFIG_ARM_ERRATA_621766
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300332 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
333
Nishanth Menon49db62d2015-03-09 17:12:02 -0500334 cmp r2, #0x21 @ Only on < r2p1
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300335 orrlt r0, r0, #(0x1 << 5) @ Set L1NEON bit
Nishanth Menon49db62d2015-03-09 17:12:02 -0500336
Nishanth Menon49db62d2015-03-09 17:12:02 -0500337 push {r1-r5} @ Save the cpu info registers
338 bl v7_arch_cp15_set_acr
339 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon49db62d2015-03-09 17:12:02 -0500340#endif
341
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200342#ifdef CONFIG_ARM_ERRATA_725233
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300343 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
344
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200345 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
Siarhei Siamashkaa2ec2af2017-08-13 05:25:20 +0300346 orrlt r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200347
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200348 push {r1-r5} @ Save the cpu info registers
349 bl v7_arch_cp15_set_l2aux_ctrl
350 pop {r1-r5} @ Restore the cpu info - fall through
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200351#endif
352
Nisal Menukafaa993a2017-04-26 16:18:01 -0500353#ifdef CONFIG_ARM_ERRATA_852421
354 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
355 orr r0, r0, #1 << 24 @ set bit #24
356 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
357#endif
358
359#ifdef CONFIG_ARM_ERRATA_852423
360 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
361 orr r0, r0, #1 << 12 @ set bit #12
362 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
363#endif
364
Nishanth Menonaa0294e2015-03-09 17:11:59 -0500365 mov pc, r5 @ back to my caller
Aneesh Vfd8798b2012-03-08 07:20:18 +0000366ENDPROC(cpu_init_cp15)
Dirk Behme7d75a102008-12-14 09:47:13 +0100367
Tom Rinie1e85442021-08-27 21:18:30 -0400368#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) && \
369 !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass277e3082011-11-05 03:56:51 +0000370/*************************************************************************
371 *
372 * CPU_init_critical registers
373 *
374 * setup important registers
375 * setup memory timing
376 *
377 *************************************************************************/
Aneesh Vfd8798b2012-03-08 07:20:18 +0000378ENTRY(cpu_init_crit)
Dirk Behme7d75a102008-12-14 09:47:13 +0100379 /*
380 * Jump to board specific initialization...
381 * The Mask ROM will have already initialized
382 * basic memory. Go here to bump up clock rate and handle
383 * wake up conditions.
384 */
Benoît Thébaudeau0a167902012-08-10 12:05:16 +0000385 b lowlevel_init @ go setup pll,mux,memory
Aneesh Vfd8798b2012-03-08 07:20:18 +0000386ENDPROC(cpu_init_crit)
Rob Herringa6932872011-06-28 05:39:38 +0000387#endif
Chia-Wei Wangbbd3c612021-08-03 10:50:10 +0800388
389#if CONFIG_POSITION_INDEPENDENT
390_rel_dyn_start_ofs:
391 .word __rel_dyn_start - pie_fixup
392_rel_dyn_end_ofs:
393 .word __rel_dyn_end - pie_fixup
394#endif