blob: e5c2856cf579abfd8953e0df48d36a542d147807 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
David Feng85fd5f12013-12-14 11:47:35 +08002/*
3 * (C) Copyright 2013
4 * David Feng <fenghua@phytium.com.cn>
David Feng85fd5f12013-12-14 11:47:35 +08005 */
6
7#include <asm-offsets.h>
8#include <config.h>
David Feng85fd5f12013-12-14 11:47:35 +08009#include <linux/linkage.h>
10#include <asm/macro.h>
11#include <asm/armv8/mmu.h>
12
13/*************************************************************************
14 *
15 * Startup Code (reset vector)
16 *
17 *************************************************************************/
18
19.globl _start
20_start:
Mian Yousaf Kaukaba0dcfc52019-06-13 14:46:44 +020021#if defined(CONFIG_LINUX_KERNEL_IMAGE_HEADER)
Stephen Warren80a93652018-01-03 14:31:51 -070022#include <asm/boot0-linux-kernel-header.h>
23#elif defined(CONFIG_ENABLE_ARM_SOC_BOOT0_HOOK)
Andre Przywara48321ba2016-05-31 10:45:06 -070024/*
25 * Various SoCs need something special and SoC-specific up front in
26 * order to boot, allow them to set that in their boot0.h file and then
27 * use it here.
28 */
29#include <asm/arch/boot0.h>
Andre Przywara313a5782017-01-02 11:48:33 +000030#else
31 b reset
Andre Przywara48321ba2016-05-31 10:45:06 -070032#endif
33
David Feng85fd5f12013-12-14 11:47:35 +080034 .align 3
35
36.globl _TEXT_BASE
37_TEXT_BASE:
38 .quad CONFIG_SYS_TEXT_BASE
39
40/*
41 * These are defined in the linker script.
42 */
43.globl _end_ofs
44_end_ofs:
45 .quad _end - _start
46
47.globl _bss_start_ofs
48_bss_start_ofs:
49 .quad __bss_start - _start
50
51.globl _bss_end_ofs
52_bss_end_ofs:
53 .quad __bss_end - _start
54
55reset:
Stephen Warren100a4792016-07-18 17:01:50 -060056 /* Allow the board to save important registers */
57 b save_boot_params
58.globl save_boot_params_ret
59save_boot_params_ret:
60
Stephen Warren81c21372017-11-02 18:11:27 -060061#if CONFIG_POSITION_INDEPENDENT
Edgar E. Iglesias67c9c932020-09-09 19:07:25 +020062 /* Verify that we're 4K aligned. */
63 adr x0, _start
64 ands x0, x0, #0xfff
65 b.eq 1f
660:
67 /*
68 * FATAL, can't continue.
69 * U-Boot needs to be loaded at a 4K aligned address.
70 *
71 * We use ADRP and ADD to load some symbol addresses during startup.
72 * The ADD uses an absolute (non pc-relative) lo12 relocation
73 * thus requiring 4K alignment.
74 */
75 wfi
76 b 0b
771:
78
Stephen Warren81c21372017-11-02 18:11:27 -060079 /*
80 * Fix .rela.dyn relocations. This allows U-Boot to be loaded to and
81 * executed at a different address than it was linked at.
82 */
83pie_fixup:
84 adr x0, _start /* x0 <- Runtime value of _start */
85 ldr x1, _TEXT_BASE /* x1 <- Linked value of _start */
86 sub x9, x0, x1 /* x9 <- Run-vs-link offset */
Edgar E. Iglesias545474e2020-09-09 19:07:26 +020087 adrp x2, __rel_dyn_start /* x2 <- Runtime &__rel_dyn_start */
88 add x2, x2, #:lo12:__rel_dyn_start
89 adrp x3, __rel_dyn_end /* x3 <- Runtime &__rel_dyn_end */
90 add x3, x3, #:lo12:__rel_dyn_end
Stephen Warren81c21372017-11-02 18:11:27 -060091pie_fix_loop:
92 ldp x0, x1, [x2], #16 /* (x0, x1) <- (Link location, fixup) */
93 ldr x4, [x2], #8 /* x4 <- addend */
94 cmp w1, #1027 /* relative fixup? */
95 bne pie_skip_reloc
96 /* relative fix: store addend plus offset at dest location */
97 add x0, x0, x9
98 add x4, x4, x9
99 str x4, [x0]
100pie_skip_reloc:
101 cmp x2, x3
102 b.lo pie_fix_loop
103pie_fixup_done:
104#endif
105
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700106#ifdef CONFIG_SYS_RESET_SCTRL
107 bl reset_sctrl
108#endif
Andre Przywara4eecab72018-07-25 00:57:01 +0100109
Alexander Grafb3e9dc62019-02-20 17:14:49 +0100110#if defined(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) || !defined(CONFIG_SPL_BUILD)
Andre Przywara4eecab72018-07-25 00:57:01 +0100111.macro set_vbar, regname, reg
112 msr \regname, \reg
113.endm
114 adr x0, vectors
115#else
116.macro set_vbar, regname, reg
117.endm
118#endif
David Feng85fd5f12013-12-14 11:47:35 +0800119 /*
120 * Could be EL3/EL2/EL1, Initial State:
121 * Little Endian, MMU Disabled, i/dCache Disabled
122 */
David Feng85fd5f12013-12-14 11:47:35 +0800123 switch_el x1, 3f, 2f, 1f
Andre Przywara4eecab72018-07-25 00:57:01 +01001243: set_vbar vbar_el3, x0
David Feng7c5eca72014-04-19 09:45:21 +0800125 mrs x0, scr_el3
David Feng79bbde02014-03-14 14:26:27 +0800126 orr x0, x0, #0xf /* SCR_EL3.NS|IRQ|FIQ|EA */
127 msr scr_el3, x0
David Feng85fd5f12013-12-14 11:47:35 +0800128 msr cptr_el3, xzr /* Enable FP/SIMD */
Thierry Reding25657922015-08-20 11:42:18 +0200129#ifdef COUNTER_FREQUENCY
David Feng85fd5f12013-12-14 11:47:35 +0800130 ldr x0, =COUNTER_FREQUENCY
131 msr cntfrq_el0, x0 /* Initialize CNTFRQ */
Thierry Reding25657922015-08-20 11:42:18 +0200132#endif
David Feng85fd5f12013-12-14 11:47:35 +0800133 b 0f
Andre Przywara4eecab72018-07-25 00:57:01 +01001342: set_vbar vbar_el2, x0
David Feng85fd5f12013-12-14 11:47:35 +0800135 mov x0, #0x33ff
136 msr cptr_el2, x0 /* Enable FP/SIMD */
137 b 0f
Andre Przywara4eecab72018-07-25 00:57:01 +01001381: set_vbar vbar_el1, x0
David Feng85fd5f12013-12-14 11:47:35 +0800139 mov x0, #3 << 20
140 msr cpacr_el1, x0 /* Enable FP/SIMD */
1410:
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000142 isb
David Feng85fd5f12013-12-14 11:47:35 +0800143
Mingkai Hu553d4052017-01-06 17:41:10 +0800144 /*
Dinh Nguyenc3e970a2017-04-26 23:36:03 -0500145 * Enable SMPEN bit for coherency.
Mingkai Hu553d4052017-01-06 17:41:10 +0800146 * This register is not architectural but at the moment
147 * this bit should be set for A53/A57/A72.
148 */
149#ifdef CONFIG_ARMV8_SET_SMPEN
York Sune6b871e2017-05-15 08:51:59 -0700150 switch_el x1, 3f, 1f, 1f
1513:
Dinh Nguyenc3e970a2017-04-26 23:36:03 -0500152 mrs x0, S3_1_c15_c2_1 /* cpuectlr_el1 */
Mingkai Hu553d4052017-01-06 17:41:10 +0800153 orr x0, x0, #0x40
154 msr S3_1_c15_c2_1, x0
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000155 isb
York Sune6b871e2017-05-15 08:51:59 -07001561:
Mingkai Hu553d4052017-01-06 17:41:10 +0800157#endif
158
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530159 /* Apply ARM core specific erratas */
160 bl apply_core_errata
161
York Sunef042012014-02-26 13:26:04 -0800162 /*
163 * Cache/BPB/TLB Invalidate
164 * i-cache is invalidated before enabled in icache_enable()
165 * tlb is invalidated before mmu is enabled in dcache_enable()
166 * d-cache is invalidated before enabled in dcache_enable()
167 */
David Feng85fd5f12013-12-14 11:47:35 +0800168
169 /* Processor specific initialization */
170 bl lowlevel_init
171
Oded Gabbay97a8d652016-12-27 11:19:43 +0200172#if defined(CONFIG_ARMV8_SPIN_TABLE) && !defined(CONFIG_SPL_BUILD)
Masahiro Yamada2663cd62016-06-27 19:31:05 +0900173 branch_if_master x0, x1, master_cpu
174 b spin_table_secondary_jump
175 /* never return */
176#elif defined(CONFIG_ARMV8_MULTIENTRY)
David Feng85fd5f12013-12-14 11:47:35 +0800177 branch_if_master x0, x1, master_cpu
178
179 /*
180 * Slave CPUs
181 */
182slave_cpu:
183 wfe
184 ldr x1, =CPU_RELEASE_ADDR
185 ldr x0, [x1]
186 cbz x0, slave_cpu
187 br x0 /* branch to the given address */
Linus Walleij74771392015-03-09 10:53:21 +0100188#endif /* CONFIG_ARMV8_MULTIENTRY */
Masahiro Yamada2663cd62016-06-27 19:31:05 +0900189master_cpu:
David Feng85fd5f12013-12-14 11:47:35 +0800190 bl _main
191
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700192#ifdef CONFIG_SYS_RESET_SCTRL
193reset_sctrl:
194 switch_el x1, 3f, 2f, 1f
1953:
196 mrs x0, sctlr_el3
197 b 0f
1982:
199 mrs x0, sctlr_el2
200 b 0f
2011:
202 mrs x0, sctlr_el1
203
2040:
205 ldr x1, =0xfdfffffa
206 and x0, x0, x1
207
208 switch_el x1, 6f, 5f, 4f
2096:
210 msr sctlr_el3, x0
211 b 7f
2125:
213 msr sctlr_el2, x0
214 b 7f
2154:
216 msr sctlr_el1, x0
217
2187:
219 dsb sy
220 isb
221 b __asm_invalidate_tlb_all
222 ret
223#endif
224
David Feng85fd5f12013-12-14 11:47:35 +0800225/*-----------------------------------------------------------------------*/
226
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530227WEAK(apply_core_errata)
228
229 mov x29, lr /* Save LR */
Alison Wangc1293872017-12-28 13:00:55 +0800230 /* For now, we support Cortex-A53, Cortex-A57 specific errata */
231
232 /* Check if we are running on a Cortex-A53 core */
233 branch_if_a53_core x0, apply_a53_core_errata
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530234
235 /* Check if we are running on a Cortex-A57 core */
236 branch_if_a57_core x0, apply_a57_core_errata
2370:
238 mov lr, x29 /* Restore LR */
239 ret
240
Alison Wangc1293872017-12-28 13:00:55 +0800241apply_a53_core_errata:
242
243#ifdef CONFIG_ARM_ERRATA_855873
244 mrs x0, midr_el1
245 tst x0, #(0xf << 20)
246 b.ne 0b
247
248 mrs x0, midr_el1
249 and x0, x0, #0xf
250 cmp x0, #3
251 b.lt 0b
252
253 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
254 /* Enable data cache clean as data cache clean/invalidate */
255 orr x0, x0, #1 << 44
256 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000257 isb
Alison Wangc1293872017-12-28 13:00:55 +0800258#endif
259 b 0b
260
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530261apply_a57_core_errata:
262
263#ifdef CONFIG_ARM_ERRATA_828024
264 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
265 /* Disable non-allocate hint of w-b-n-a memory type */
Bhupesh Sharma06a0f1d2015-05-28 14:54:13 +0530266 orr x0, x0, #1 << 49
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530267 /* Disable write streaming no L1-allocate threshold */
Bhupesh Sharma06a0f1d2015-05-28 14:54:13 +0530268 orr x0, x0, #3 << 25
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530269 /* Disable write streaming no-allocate threshold */
Bhupesh Sharma06a0f1d2015-05-28 14:54:13 +0530270 orr x0, x0, #3 << 27
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530271 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000272 isb
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530273#endif
274
275#ifdef CONFIG_ARM_ERRATA_826974
276 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
277 /* Disable speculative load execution ahead of a DMB */
Bhupesh Sharma06a0f1d2015-05-28 14:54:13 +0530278 orr x0, x0, #1 << 59
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530279 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000280 isb
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530281#endif
282
Ashish kumar9c6d33c2016-01-27 18:09:32 +0530283#ifdef CONFIG_ARM_ERRATA_833471
284 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
285 /* FPSCR write flush.
286 * Note that in some cases where a flush is unnecessary this
287 could impact performance. */
288 orr x0, x0, #1 << 38
289 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000290 isb
Ashish kumar9c6d33c2016-01-27 18:09:32 +0530291#endif
292
293#ifdef CONFIG_ARM_ERRATA_829520
294 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
295 /* Disable Indirect Predictor bit will prevent this erratum
296 from occurring
297 * Note that in some cases where a flush is unnecessary this
298 could impact performance. */
299 orr x0, x0, #1 << 4
300 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000301 isb
Ashish kumar9c6d33c2016-01-27 18:09:32 +0530302#endif
303
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530304#ifdef CONFIG_ARM_ERRATA_833069
305 mrs x0, S3_1_c15_c2_0 /* cpuactlr_el1 */
306 /* Disable Enable Invalidates of BTB bit */
307 and x0, x0, #0xE
308 msr S3_1_c15_c2_0, x0 /* cpuactlr_el1 */
Volodymyr Babchukb2b52252020-06-24 01:05:19 +0000309 isb
Bhupesh Sharma80a7e352015-01-23 15:50:04 +0530310#endif
311 b 0b
312ENDPROC(apply_core_errata)
313
314/*-----------------------------------------------------------------------*/
315
David Feng85fd5f12013-12-14 11:47:35 +0800316WEAK(lowlevel_init)
David Feng85fd5f12013-12-14 11:47:35 +0800317 mov x29, lr /* Save LR */
David Feng85fd5f12013-12-14 11:47:35 +0800318
David Feng79bbde02014-03-14 14:26:27 +0800319#if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
320 branch_if_slave x0, 1f
321 ldr x0, =GICD_BASE
322 bl gic_init_secure
3231:
324#if defined(CONFIG_GICV3)
325 ldr x0, =GICR_BASE
326 bl gic_init_secure_percpu
327#elif defined(CONFIG_GICV2)
328 ldr x0, =GICD_BASE
329 ldr x1, =GICC_BASE
330 bl gic_init_secure_percpu
331#endif
Stephen Warren73f47af2016-04-28 12:45:44 -0600332#endif
David Feng79bbde02014-03-14 14:26:27 +0800333
Masahiro Yamadae4ce25f2016-05-20 12:13:10 +0900334#ifdef CONFIG_ARMV8_MULTIENTRY
David Feng79bbde02014-03-14 14:26:27 +0800335 branch_if_master x0, x1, 2f
David Feng85fd5f12013-12-14 11:47:35 +0800336
337 /*
338 * Slave should wait for master clearing spin table.
339 * This sync prevent salves observing incorrect
340 * value of spin table and jumping to wrong place.
341 */
David Feng79bbde02014-03-14 14:26:27 +0800342#if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
343#ifdef CONFIG_GICV2
344 ldr x0, =GICC_BASE
345#endif
346 bl gic_wait_for_interrupt
347#endif
David Feng85fd5f12013-12-14 11:47:35 +0800348
349 /*
David Feng79bbde02014-03-14 14:26:27 +0800350 * All slaves will enter EL2 and optionally EL1.
David Feng85fd5f12013-12-14 11:47:35 +0800351 */
Alison Wangeb2088d2017-01-17 09:39:17 +0800352 adr x4, lowlevel_in_el2
353 ldr x5, =ES_TO_AARCH64
David Feng85fd5f12013-12-14 11:47:35 +0800354 bl armv8_switch_to_el2
Alison Wang73818d52016-11-10 10:49:03 +0800355
356lowlevel_in_el2:
David Feng85fd5f12013-12-14 11:47:35 +0800357#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wangeb2088d2017-01-17 09:39:17 +0800358 adr x4, lowlevel_in_el1
359 ldr x5, =ES_TO_AARCH64
David Feng85fd5f12013-12-14 11:47:35 +0800360 bl armv8_switch_to_el1
Alison Wang73818d52016-11-10 10:49:03 +0800361
362lowlevel_in_el1:
David Feng85fd5f12013-12-14 11:47:35 +0800363#endif
364
Linus Walleij74771392015-03-09 10:53:21 +0100365#endif /* CONFIG_ARMV8_MULTIENTRY */
366
David Feng79bbde02014-03-14 14:26:27 +08003672:
David Feng85fd5f12013-12-14 11:47:35 +0800368 mov lr, x29 /* Restore LR */
369 ret
370ENDPROC(lowlevel_init)
371
David Feng79bbde02014-03-14 14:26:27 +0800372WEAK(smp_kick_all_cpus)
373 /* Kick secondary cpus up by SGI 0 interrupt */
David Feng79bbde02014-03-14 14:26:27 +0800374#if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
375 ldr x0, =GICD_BASE
Masahiro Yamadab9140092016-06-17 18:32:47 +0900376 b gic_kick_secondary_cpus
David Feng79bbde02014-03-14 14:26:27 +0800377#endif
David Feng79bbde02014-03-14 14:26:27 +0800378 ret
379ENDPROC(smp_kick_all_cpus)
380
David Feng85fd5f12013-12-14 11:47:35 +0800381/*-----------------------------------------------------------------------*/
382
383ENTRY(c_runtime_cpu_setup)
Alexander Grafb3e9dc62019-02-20 17:14:49 +0100384#if defined(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) || !defined(CONFIG_SPL_BUILD)
David Feng85fd5f12013-12-14 11:47:35 +0800385 /* Relocate vBAR */
386 adr x0, vectors
387 switch_el x1, 3f, 2f, 1f
3883: msr vbar_el3, x0
389 b 0f
3902: msr vbar_el2, x0
391 b 0f
3921: msr vbar_el1, x0
3930:
Andre Przywara4eecab72018-07-25 00:57:01 +0100394#endif
David Feng85fd5f12013-12-14 11:47:35 +0800395
396 ret
397ENDPROC(c_runtime_cpu_setup)
Stephen Warren100a4792016-07-18 17:01:50 -0600398
399WEAK(save_boot_params)
400 b save_boot_params_ret /* back to my caller */
401ENDPROC(save_boot_params)