blob: 4f6327fe3ab734b9fda979f294f62e586e775f13 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Dirk Behme0b02b182008-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 Zundel792a09e2009-05-13 10:54:10 +02009 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
Dirk Behme0b02b182008-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 Behme0b02b182008-12-14 09:47:13 +010013 */
14
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020015#include <asm-offsets.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010016#include <config.h>
Aneesh Va8c68632011-11-21 23:34:00 +000017#include <asm/system.h>
Aneesh V74236ac2012-03-08 07:20:18 +000018#include <linux/linkage.h>
Keerthyd31d4a22016-09-14 10:43:32 +053019#include <asm/armv7.h>
Tom Rinieaf6ea62022-05-25 12:16:03 -040020#include <system-constants.h>
Dirk Behme0b02b182008-12-14 09:47:13 +010021
Dirk Behme0b02b182008-12-14 09:47:13 +010022/*************************************************************************
23 *
24 * Startup Code (reset vector)
25 *
Pavel Machek003b09d2015-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 Behme0b02b182008-12-14 09:47:13 +010029 *
30 *************************************************************************/
31
Albert ARIBAUD41623c92014-04-15 16:13:51 +020032 .globl reset
Simon Glasse11c6c22015-02-07 10:47:28 -070033 .globl save_boot_params_ret
Philipp Tomsichff143d52017-10-10 16:21:12 +020034 .type save_boot_params_ret,%function
Keerthyd31d4a22016-09-14 10:43:32 +053035#ifdef CONFIG_ARMV7_LPAE
36 .global switch_to_hypervisor_ret
37#endif
Heiko Schocher561142a2010-09-17 13:10:41 +020038
39reset:
Simon Glasse11c6c22015-02-07 10:47:28 -070040 /* Allow the board to save important registers */
41 b save_boot_params
42save_boot_params_ret:
Chia-Wei Wangcd82f192021-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
Keerthyd31d4a22016-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
Heiko Schocher561142a2010-09-17 13:10:41 +020089 /*
Andre Przywarac4a4e2e2013-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
Heiko Schocher561142a2010-09-17 13:10:41 +020092 */
93 mrs r0, cpsr
Andre Przywarac4a4e2e2013-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
Heiko Schocher561142a2010-09-17 13:10:41 +020099 msr cpsr,r0
100
Pali Rohár372779a2022-04-06 16:20:18 +0200101#if !CONFIG_IS_ENABLED(SYS_NO_VECTOR_TABLE)
Aneesh Va8c68632011-11-21 23:34:00 +0000102/*
103 * Setup vector:
Aneesh Va8c68632011-11-21 23:34:00 +0000104 */
Peng Fan0f274f52015-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 Va8c68632011-11-21 23:34:00 +0000107 bic r0, #CR_V @ V = 0
Peng Fan0f274f52015-01-29 18:03:39 +0800108 mcr p15, 0, r0, c1, c0, 0 @ Write CP15 SCTLR Register
Aneesh Va8c68632011-11-21 23:34:00 +0000109
Lokesh Vutla2a518052018-04-26 18:21:25 +0530110#ifdef CONFIG_HAS_VBAR
Aneesh Va8c68632011-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 Vutla2a518052018-04-26 18:21:25 +0530115#endif
Aneesh Va8c68632011-11-21 23:34:00 +0000116
Heiko Schocher561142a2010-09-17 13:10:41 +0200117 /* the mask ROM code should have PLL and others stable */
Tom Rinia2ac2b92021-08-27 21:18:30 -0400118#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT)
Michal Simek4bbd6b12018-04-26 18:21:29 +0530119#ifdef CONFIG_CPU_V7A
Simon Glass80433c92011-11-05 03:56:51 +0000120 bl cpu_init_cp15
Michal Simek4bbd6b12018-04-26 18:21:29 +0530121#endif
Tom Rinia2ac2b92021-08-27 21:18:30 -0400122#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Heiko Schocher561142a2010-09-17 13:10:41 +0200123 bl cpu_init_crit
124#endif
Simon Glassb5bd0982016-05-05 07:28:06 -0600125#endif
Heiko Schocher561142a2010-09-17 13:10:41 +0200126
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000127 bl _main
Heiko Schocher561142a2010-09-17 13:10:41 +0200128
129/*------------------------------------------------------------------------------*/
130
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000131ENTRY(c_runtime_cpu_setup)
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000132/*
133 * If I-cache is enabled invalidate it
134 */
Trevor Woerner10015022019-05-03 09:41:00 -0400135#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh Vc2dd0d42011-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 Kobayashif8b9d1d2012-06-25 02:40:57 +0000140
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000141 bx lr
Heiko Schocher561142a2010-09-17 13:10:41 +0200142
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +0000143ENDPROC(c_runtime_cpu_setup)
Heiko Schocherc3d3a542010-10-11 14:08:15 +0200144
Dirk Behme0b02b182008-12-14 09:47:13 +0100145/*************************************************************************
146 *
Tetsuyuki Kobayashi6f0dba82012-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 *************************************************************************/
154ENTRY(save_boot_params)
Simon Glasse11c6c22015-02-07 10:47:28 -0700155 b save_boot_params_ret @ back to my caller
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000156ENDPROC(save_boot_params)
157 .weak save_boot_params
158
Keerthyd31d4a22016-09-14 10:43:32 +0530159#ifdef CONFIG_ARMV7_LPAE
160ENTRY(switch_to_hypervisor)
161 b switch_to_hypervisor_ret
162ENDPROC(switch_to_hypervisor)
163 .weak switch_to_hypervisor
164#endif
165
Tetsuyuki Kobayashi6f0dba82012-07-06 21:14:20 +0000166/*************************************************************************
167 *
Simon Glass80433c92011-11-05 03:56:51 +0000168 * cpu_init_cp15
Dirk Behme0b02b182008-12-14 09:47:13 +0100169 *
Simon Glass80433c92011-11-05 03:56:51 +0000170 * Setup CP15 registers (cache, MMU, TLBs). The I-cache is turned on unless
171 * CONFIG_SYS_ICACHE_OFF is defined.
Dirk Behme0b02b182008-12-14 09:47:13 +0100172 *
173 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000174ENTRY(cpu_init_cp15)
Andre Przywara2564fce2022-01-23 00:27:19 +0000175
176#if CONFIG_IS_ENABLED(ARMV7_SET_CORTEX_SMPEN)
177 /*
178 * The Arm Cortex-A7 TRM says this bit must be enabled before
179 * "any cache or TLB maintenance operations are performed".
180 */
181 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
182 orr r0, r0, #1 << 6 @ set SMP bit to enable coherency
183 mcr p15, 0, r0, c1, c0, 1 @ write auxilary control register
184#endif
185
Dirk Behme0b02b182008-12-14 09:47:13 +0100186 /*
187 * Invalidate L1 I/D
188 */
189 mov r0, #0 @ set up for MCR
190 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
191 mcr p15, 0, r0, c7, c5, 0 @ invalidate icache
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000192 mcr p15, 0, r0, c7, c5, 6 @ invalidate BP array
193 mcr p15, 0, r0, c7, c10, 4 @ DSB
194 mcr p15, 0, r0, c7, c5, 4 @ ISB
Dirk Behme0b02b182008-12-14 09:47:13 +0100195
196 /*
197 * disable MMU stuff and caches
198 */
199 mrc p15, 0, r0, c1, c0, 0
200 bic r0, r0, #0x00002000 @ clear bits 13 (--V-)
201 bic r0, r0, #0x00000007 @ clear bits 2:0 (-CAM)
202 orr r0, r0, #0x00000002 @ set bit 1 (--A-) Align
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000203 orr r0, r0, #0x00000800 @ set bit 11 (Z---) BTB
Trevor Woerner10015022019-05-03 09:41:00 -0400204#if CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
Aneesh Vc2dd0d42011-06-16 23:30:49 +0000205 bic r0, r0, #0x00001000 @ clear bit 12 (I) I-cache
206#else
207 orr r0, r0, #0x00001000 @ set bit 12 (I) I-cache
208#endif
Dirk Behme0b02b182008-12-14 09:47:13 +0100209 mcr p15, 0, r0, c1, c0, 0
Stephen Warren06785872013-02-26 12:28:27 +0000210
Stephen Warrenc5d47522013-03-04 13:29:40 +0000211#ifdef CONFIG_ARM_ERRATA_716044
212 mrc p15, 0, r0, c1, c0, 0 @ read system control register
213 orr r0, r0, #1 << 11 @ set bit #11
214 mcr p15, 0, r0, c1, c0, 0 @ write system control register
215#endif
216
Nitin Gargf71cbfe2014-04-02 08:55:01 -0500217#if (defined(CONFIG_ARM_ERRATA_742230) || defined(CONFIG_ARM_ERRATA_794072))
Stephen Warren06785872013-02-26 12:28:27 +0000218 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
219 orr r0, r0, #1 << 4 @ set bit #4
220 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
221#endif
222
223#ifdef CONFIG_ARM_ERRATA_743622
224 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
225 orr r0, r0, #1 << 6 @ set bit #6
226 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
227#endif
228
229#ifdef CONFIG_ARM_ERRATA_751472
230 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
231 orr r0, r0, #1 << 11 @ set bit #11
232 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
233#endif
Nitin Gargb7588e32014-04-02 08:55:02 -0500234#ifdef CONFIG_ARM_ERRATA_761320
235 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
236 orr r0, r0, #1 << 21 @ set bit #21
237 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
238#endif
Stephen Warren06785872013-02-26 12:28:27 +0000239
Peng Fan11d94312017-08-08 13:34:52 +0800240#ifdef CONFIG_ARM_ERRATA_845369
241 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
242 orr r0, r0, #1 << 22 @ set bit #22
243 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
244#endif
245
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500246 mov r5, lr @ Store my Caller
247 mrc p15, 0, r1, c0, c0, 0 @ r1 has Read Main ID Register (MIDR)
248 mov r3, r1, lsr #20 @ get variant field
249 and r3, r3, #0xf @ r3 has CPU variant
250 and r4, r1, #0xf @ r4 has CPU revision
251 mov r2, r3, lsl #4 @ shift variant field for combined value
252 orr r2, r4, r2 @ r2 has combined CPU variant + revision
253
Andrew F. Davisa0106c82018-11-19 14:47:53 -0600254/* Early stack for ERRATA that needs into call C code */
255#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
256 ldr r0, =(CONFIG_SPL_STACK)
257#else
Tom Rinieaf6ea62022-05-25 12:16:03 -0400258 ldr r0, =(SYS_INIT_SP_ADDR)
Andrew F. Davisa0106c82018-11-19 14:47:53 -0600259#endif
260 bic r0, r0, #7 /* 8-byte alignment for ABI compliance */
261 mov sp, r0
262
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500263#ifdef CONFIG_ARM_ERRATA_798870
264 cmp r2, #0x30 @ Applies to lower than R3p0
265 bge skip_errata_798870 @ skip if not affected rev
266 cmp r2, #0x20 @ Applies to including and above R2p0
267 blt skip_errata_798870 @ skip if not affected rev
268
269 mrc p15, 1, r0, c15, c0, 0 @ read l2 aux ctrl reg
270 orr r0, r0, #1 << 7 @ Enable hazard-detect timeout
271 push {r1-r5} @ Save the cpu info registers
272 bl v7_arch_cp15_set_l2aux_ctrl
273 isb @ Recommended ISB after l2actlr update
274 pop {r1-r5} @ Restore the cpu info - fall through
275skip_errata_798870:
276#endif
277
Nishanth Menona615d0b2015-07-27 16:26:05 -0500278#ifdef CONFIG_ARM_ERRATA_801819
279 cmp r2, #0x24 @ Applies to lt including R2p4
280 bgt skip_errata_801819 @ skip if not affected rev
281 cmp r2, #0x20 @ Applies to including and above R2p0
282 blt skip_errata_801819 @ skip if not affected rev
283 mrc p15, 0, r0, c0, c0, 6 @ pick up REVIDR reg
284 and r0, r0, #1 << 3 @ check REVIDR[3]
285 cmp r0, #1 << 3
286 beq skip_errata_801819 @ skip erratum if REVIDR[3] is set
287
288 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
289 orr r0, r0, #3 << 27 @ Disables streaming. All write-allocate
290 @ lines allocate in the L1 or L2 cache.
291 orr r0, r0, #3 << 25 @ Disables streaming. All write-allocate
292 @ lines allocate in the L1 cache.
293 push {r1-r5} @ Save the cpu info registers
294 bl v7_arch_cp15_set_acr
295 pop {r1-r5} @ Restore the cpu info - fall through
296skip_errata_801819:
297#endif
298
Nishanth Menonc2ca3fd2018-06-12 15:24:09 -0500299#ifdef CONFIG_ARM_CORTEX_A15_CVE_2017_5715
300 mrc p15, 0, r0, c1, c0, 1 @ read auxilary control register
301 orr r0, r0, #1 << 0 @ Enable invalidates of BTB
302 push {r1-r5} @ Save the cpu info registers
303 bl v7_arch_cp15_set_acr
304 pop {r1-r5} @ Restore the cpu info - fall through
305#endif
306
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500307#ifdef CONFIG_ARM_ERRATA_454179
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500308 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300309
310 cmp r2, #0x21 @ Only on < r2p1
311 orrlt r0, r0, #(0x3 << 6) @ Set DBSM(BIT7) and IBE(BIT6) bits
312
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500313 push {r1-r5} @ Save the cpu info registers
314 bl v7_arch_cp15_set_acr
315 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menonb45c48a2015-03-09 17:12:00 -0500316#endif
317
Nishanth Menon7b37a9c2018-06-12 15:24:08 -0500318#if defined(CONFIG_ARM_ERRATA_430973) || defined (CONFIG_ARM_CORTEX_A8_CVE_2017_5715)
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500319 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300320
Nishanth Menon7b37a9c2018-06-12 15:24:08 -0500321#ifdef CONFIG_ARM_CORTEX_A8_CVE_2017_5715
322 orr r0, r0, #(0x1 << 6) @ Set IBE bit always to enable OS WA
323#else
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300324 cmp r2, #0x21 @ Only on < r2p1
325 orrlt r0, r0, #(0x1 << 6) @ Set IBE bit
Nishanth Menon7b37a9c2018-06-12 15:24:08 -0500326#endif
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500327 push {r1-r5} @ Save the cpu info registers
328 bl v7_arch_cp15_set_acr
329 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon5902f4c2015-03-09 17:12:01 -0500330#endif
331
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500332#ifdef CONFIG_ARM_ERRATA_621766
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500333 mrc p15, 0, r0, c1, c0, 1 @ Read ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300334
335 cmp r2, #0x21 @ Only on < r2p1
336 orrlt r0, r0, #(0x1 << 5) @ Set L1NEON bit
337
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500338 push {r1-r5} @ Save the cpu info registers
339 bl v7_arch_cp15_set_acr
340 pop {r1-r5} @ Restore the cpu info - fall through
Nishanth Menon9b4d65f2015-03-09 17:12:02 -0500341#endif
342
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200343#ifdef CONFIG_ARM_ERRATA_725233
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200344 mrc p15, 1, r0, c9, c0, 2 @ Read L2ACR
Siarhei Siamashkad8526002017-08-13 05:25:20 +0300345
346 cmp r2, #0x21 @ Only on < r2p1 (Cortex A8)
347 orrlt r0, r0, #(0x1 << 27) @ L2 PLD data forwarding disable
348
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200349 push {r1-r5} @ Save the cpu info registers
350 bl v7_arch_cp15_set_l2aux_ctrl
351 pop {r1-r5} @ Restore the cpu info - fall through
Siarhei Siamashka19a75b82017-03-06 03:16:53 +0200352#endif
353
Nisal Menuka87763502017-04-26 16:18:01 -0500354#ifdef CONFIG_ARM_ERRATA_852421
355 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
356 orr r0, r0, #1 << 24 @ set bit #24
357 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
358#endif
359
360#ifdef CONFIG_ARM_ERRATA_852423
361 mrc p15, 0, r0, c15, c0, 1 @ read diagnostic register
362 orr r0, r0, #1 << 12 @ set bit #12
363 mcr p15, 0, r0, c15, c0, 1 @ write diagnostic register
364#endif
365
Nishanth Menonc616a0d2015-03-09 17:11:59 -0500366 mov pc, r5 @ back to my caller
Aneesh V74236ac2012-03-08 07:20:18 +0000367ENDPROC(cpu_init_cp15)
Simon Glass80433c92011-11-05 03:56:51 +0000368
Tom Rinia2ac2b92021-08-27 21:18:30 -0400369#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT) && \
370 !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT_ONLY)
Simon Glass80433c92011-11-05 03:56:51 +0000371/*************************************************************************
372 *
373 * CPU_init_critical registers
374 *
375 * setup important registers
376 * setup memory timing
377 *
378 *************************************************************************/
Aneesh V74236ac2012-03-08 07:20:18 +0000379ENTRY(cpu_init_crit)
Dirk Behme0b02b182008-12-14 09:47:13 +0100380 /*
381 * Jump to board specific initialization...
382 * The Mask ROM will have already initialized
383 * basic memory. Go here to bump up clock rate and handle
384 * wake up conditions.
385 */
Benoît Thébaudeau63ee53a2012-08-10 12:05:16 +0000386 b lowlevel_init @ go setup pll,mux,memory
Aneesh V74236ac2012-03-08 07:20:18 +0000387ENDPROC(cpu_init_crit)
Rob Herring22193542011-06-28 05:39:38 +0000388#endif
Chia-Wei Wangcd82f192021-08-03 10:50:10 +0800389
390#if CONFIG_POSITION_INDEPENDENT
391_rel_dyn_start_ofs:
392 .word __rel_dyn_start - pie_fixup
393_rel_dyn_end_ofs:
394 .word __rel_dyn_end - pie_fixup
395#endif