3 * David Feng <fenghua@phytium.com.cn>
5 * SPDX-License-Identifier: GPL-2.0+
8 #include <asm-offsets.h>
10 #include <linux/linkage.h>
11 #include <asm/macro.h>
12 #include <asm/armv8/mmu.h>
14 /*************************************************************************
16 * Startup Code (reset vector)
18 *************************************************************************/
22 #ifdef CONFIG_ENABLE_ARM_SOC_BOOT0_HOOK
24 * Various SoCs need something special and SoC-specific up front in
25 * order to boot, allow them to set that in their boot0.h file and then
28 #include <asm/arch/boot0.h>
37 .quad CONFIG_SYS_TEXT_BASE
40 * These are defined in the linker script.
48 .quad __bss_start - _start
52 .quad __bss_end - _start
55 /* Allow the board to save important registers */
57 .globl save_boot_params_ret
60 #if CONFIG_POSITION_INDEPENDENT
62 * Fix .rela.dyn relocations. This allows U-Boot to be loaded to and
63 * executed at a different address than it was linked at.
66 adr x0, _start /* x0 <- Runtime value of _start */
67 ldr x1, _TEXT_BASE /* x1 <- Linked value of _start */
68 sub x9, x0, x1 /* x9 <- Run-vs-link offset */
69 adr x2, __rel_dyn_start /* x2 <- Runtime &__rel_dyn_start */
70 adr x3, __rel_dyn_end /* x3 <- Runtime &__rel_dyn_end */
72 ldp x0, x1, [x2], #16 /* (x0, x1) <- (Link location, fixup) */
73 ldr x4, [x2], #8 /* x4 <- addend */
74 cmp w1, #1027 /* relative fixup? */
76 /* relative fix: store addend plus offset at dest location */
86 #ifdef CONFIG_SYS_RESET_SCTRL
90 * Could be EL3/EL2/EL1, Initial State:
91 * Little Endian, MMU Disabled, i/dCache Disabled
94 switch_el x1, 3f, 2f, 1f
97 orr x0, x0, #0xf /* SCR_EL3.NS|IRQ|FIQ|EA */
99 msr cptr_el3, xzr /* Enable FP/SIMD */
100 #ifdef COUNTER_FREQUENCY
101 ldr x0, =COUNTER_FREQUENCY
102 msr cntfrq_el0, x0 /* Initialize CNTFRQ */
107 msr cptr_el2, x0 /* Enable FP/SIMD */
111 msr cpacr_el1, x0 /* Enable FP/SIMD */
115 * Enable SMPEN bit for coherency.
116 * This register is not architectural but at the moment
117 * this bit should be set for A53/A57/A72.
119 #ifdef CONFIG_ARMV8_SET_SMPEN
120 switch_el x1, 3f, 1f, 1f
122 mrs x0, S3_1_c15_c2_1 /* cpuectlr_el1 */
124 msr S3_1_c15_c2_1, x0
128 /* Apply ARM core specific erratas */
132 * Cache/BPB/TLB Invalidate
133 * i-cache is invalidated before enabled in icache_enable()
134 * tlb is invalidated before mmu is enabled in dcache_enable()
135 * d-cache is invalidated before enabled in dcache_enable()
138 /* Processor specific initialization */
141 #if defined(CONFIG_ARMV8_SPIN_TABLE) && !defined(CONFIG_SPL_BUILD)
142 branch_if_master x0, x1, master_cpu
143 b spin_table_secondary_jump
145 #elif defined(CONFIG_ARMV8_MULTIENTRY)
146 branch_if_master x0, x1, master_cpu
153 ldr x1, =CPU_RELEASE_ADDR
156 br x0 /* branch to the given address */
157 #endif /* CONFIG_ARMV8_MULTIENTRY */
161 #ifdef CONFIG_SYS_RESET_SCTRL
163 switch_el x1, 3f, 2f, 1f
177 switch_el x1, 6f, 5f, 4f
190 b __asm_invalidate_tlb_all
194 /*-----------------------------------------------------------------------*/
196 WEAK(apply_core_errata)
198 mov x29, lr /* Save LR */
199 /* For now, we support Cortex-A53, Cortex-A57 specific errata */
201 /* Check if we are running on a Cortex-A53 core */
202 branch_if_a53_core x0, apply_a53_core_errata
204 /* Check if we are running on a Cortex-A57 core */
205 branch_if_a57_core x0, apply_a57_core_errata
207 mov lr, x29 /* Restore LR */
210 apply_a53_core_errata:
212 #ifdef CONFIG_ARM_ERRATA_855873
222 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
223 /* Enable data cache clean as data cache clean/invalidate */
225 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
229 apply_a57_core_errata:
231 #ifdef CONFIG_ARM_ERRATA_828024
232 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
233 /* Disable non-allocate hint of w-b-n-a memory type */
235 /* Disable write streaming no L1-allocate threshold */
237 /* Disable write streaming no-allocate threshold */
239 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
242 #ifdef CONFIG_ARM_ERRATA_826974
243 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
244 /* Disable speculative load execution ahead of a DMB */
246 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
249 #ifdef CONFIG_ARM_ERRATA_833471
250 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
251 /* FPSCR write flush.
252 * Note that in some cases where a flush is unnecessary this
253 could impact performance. */
255 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
258 #ifdef CONFIG_ARM_ERRATA_829520
259 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
260 /* Disable Indirect Predictor bit will prevent this erratum
262 * Note that in some cases where a flush is unnecessary this
263 could impact performance. */
265 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
268 #ifdef CONFIG_ARM_ERRATA_833069
269 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
270 /* Disable Enable Invalidates of BTB bit */
272 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
275 ENDPROC(apply_core_errata)
277 /*-----------------------------------------------------------------------*/
280 mov x29, lr /* Save LR */
282 #if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
283 branch_if_slave x0, 1f
287 #if defined(CONFIG_GICV3)
289 bl gic_init_secure_percpu
290 #elif defined(CONFIG_GICV2)
293 bl gic_init_secure_percpu
297 #ifdef CONFIG_ARMV8_MULTIENTRY
298 branch_if_master x0, x1, 2f
301 * Slave should wait for master clearing spin table.
302 * This sync prevent salves observing incorrect
303 * value of spin table and jumping to wrong place.
305 #if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
309 bl gic_wait_for_interrupt
313 * All slaves will enter EL2 and optionally EL1.
315 adr x4, lowlevel_in_el2
316 ldr x5, =ES_TO_AARCH64
317 bl armv8_switch_to_el2
320 #ifdef CONFIG_ARMV8_SWITCH_TO_EL1
321 adr x4, lowlevel_in_el1
322 ldr x5, =ES_TO_AARCH64
323 bl armv8_switch_to_el1
328 #endif /* CONFIG_ARMV8_MULTIENTRY */
331 mov lr, x29 /* Restore LR */
333 ENDPROC(lowlevel_init)
335 WEAK(smp_kick_all_cpus)
336 /* Kick secondary cpus up by SGI 0 interrupt */
337 #if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
339 b gic_kick_secondary_cpus
342 ENDPROC(smp_kick_all_cpus)
344 /*-----------------------------------------------------------------------*/
346 ENTRY(c_runtime_cpu_setup)
349 switch_el x1, 3f, 2f, 1f
358 ENDPROC(c_runtime_cpu_setup)
360 WEAK(save_boot_params)
361 b save_boot_params_ret /* back to my caller */
362 ENDPROC(save_boot_params)