blob: 711ab8755690ea9eb9e58ed025a707b5fa8c6cbc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
York Suna84cd722014-06-23 15:15:54 -07002/*
Mingkai Hu0e58b512015-10-26 19:47:50 +08003 * (C) Copyright 2014-2015 Freescale Semiconductor
Meenakshi Aggarwal4470aeb2019-05-28 21:37:58 +05304 * Copyright 2019 NXP
York Suna84cd722014-06-23 15:15:54 -07005 *
York Suna84cd722014-06-23 15:15:54 -07006 * Extracted from armv8/start.S
7 */
8
9#include <config.h>
10#include <linux/linkage.h>
York Sun56cc3db2014-09-08 12:20:00 -070011#include <asm/gic.h>
York Suna84cd722014-06-23 15:15:54 -070012#include <asm/macro.h>
Wenbin Songa8f57a92017-01-17 18:31:15 +080013#include <asm/arch-fsl-layerscape/soc.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080014#ifdef CONFIG_MP
15#include <asm/arch/mp.h>
16#endif
Priyanka Jain96b001f2016-11-17 12:29:51 +053017#ifdef CONFIG_FSL_LSCH3
18#include <asm/arch-fsl-layerscape/immap_lsch3.h>
19#endif
Alison Wang73818d52016-11-10 10:49:03 +080020#include <asm/u-boot.h>
York Suna84cd722014-06-23 15:15:54 -070021
Wenbin Songa8f57a92017-01-17 18:31:15 +080022/* Get GIC offset
23* For LS1043a rev1.0, GIC base address align with 4k.
24* For LS1043a rev1.1, if DCFG_GIC400_ALIGN[GIC_ADDR_BIT]
25* is set, GIC base address align with 4K, or else align
26* with 64k.
27* output:
28* x0: the base address of GICD
29* x1: the base address of GICC
30*/
31ENTRY(get_gic_offset)
32 ldr x0, =GICD_BASE
33#ifdef CONFIG_GICV2
34 ldr x1, =GICC_BASE
35#endif
36#ifdef CONFIG_HAS_FEATURE_GIC64K_ALIGN
37 ldr x2, =DCFG_CCSR_SVR
38 ldr w2, [x2]
39 rev w2, w2
Wenbin song5d8a61c2017-12-04 12:18:28 +080040 lsr w3, w2, #16
41 ldr w4, =SVR_DEV(SVR_LS1043A)
Wenbin Songa8f57a92017-01-17 18:31:15 +080042 cmp w3, w4
43 b.ne 1f
44 ands w2, w2, #0xff
45 cmp w2, #REV1_0
46 b.eq 1f
47 ldr x2, =SCFG_GIC400_ALIGN
48 ldr w2, [x2]
49 rev w2, w2
50 tbnz w2, #GIC_ADDR_BIT, 1f
51 ldr x0, =GICD_BASE_64K
52#ifdef CONFIG_GICV2
53 ldr x1, =GICC_BASE_64K
54#endif
551:
56#endif
57 ret
58ENDPROC(get_gic_offset)
59
60ENTRY(smp_kick_all_cpus)
61 /* Kick secondary cpus up by SGI 0 interrupt */
62#if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
63 mov x29, lr /* Save LR */
64 bl get_gic_offset
65 bl gic_kick_secondary_cpus
66 mov lr, x29 /* Restore LR */
67#endif
68 ret
69ENDPROC(smp_kick_all_cpus)
70
71
York Suna84cd722014-06-23 15:15:54 -070072ENTRY(lowlevel_init)
73 mov x29, lr /* Save LR */
74
York Sunab4e7892018-11-05 18:01:23 +000075 /* unmask SError and abort */
76 msr daifclr, #4
77
78 /* Set HCR_EL2[AMO] so SError @EL2 is taken */
79 mrs x0, hcr_el2
80 orr x0, x0, #0x20 /* AMO */
81 msr hcr_el2, x0
82 isb
83
York Sune6b871e2017-05-15 08:51:59 -070084 switch_el x1, 1f, 100f, 100f /* skip if not in EL3 */
851:
86
Ashish Kumar97393d62017-08-18 10:54:36 +053087#if defined (CONFIG_SYS_FSL_HAS_CCN504)
Prabhakar Kushwahaedbbd252016-01-25 12:08:45 +053088
89 /* Set Wuo bit for RN-I 20 */
York Sun4ce6fbf2017-03-27 11:41:01 -070090#ifdef CONFIG_ARCH_LS2080A
Prabhakar Kushwahaedbbd252016-01-25 12:08:45 +053091 ldr x0, =CCI_AUX_CONTROL_BASE(20)
92 ldr x1, =0x00000010
93 bl ccn504_set_aux
Priyanka Jain60850792016-11-09 12:27:54 +053094
95 /*
96 * Set forced-order mode in RNI-6, RNI-20
97 * This is required for performance optimization on LS2088A
98 * LS2080A family does not support setting forced-order mode,
99 * so skip this operation for LS2080A family
100 */
101 bl get_svr
102 lsr w0, w0, #16
Wenbin song5d8a61c2017-12-04 12:18:28 +0800103 ldr w1, =SVR_DEV(SVR_LS2080A)
Priyanka Jain60850792016-11-09 12:27:54 +0530104 cmp w0, w1
105 b.eq 1f
106
107 ldr x0, =CCI_AUX_CONTROL_BASE(6)
108 ldr x1, =0x00000020
109 bl ccn504_set_aux
110 ldr x0, =CCI_AUX_CONTROL_BASE(20)
111 ldr x1, =0x00000020
112 bl ccn504_set_aux
1131:
Prabhakar Kushwahaedbbd252016-01-25 12:08:45 +0530114#endif
115
Scott Wooda814e662015-03-20 19:28:10 -0700116 /* Add fully-coherent masters to DVM domain */
Bhupesh Sharma8238f342015-07-01 09:58:03 +0530117 ldr x0, =CCI_MN_BASE
118 ldr x1, =CCI_MN_RNF_NODEID_LIST
119 ldr x2, =CCI_MN_DVM_DOMAIN_CTL_SET
120 bl ccn504_add_masters_to_dvm
121
122 /* Set all RN-I ports to QoS of 15 */
123 ldr x0, =CCI_S0_QOS_CONTROL_BASE(0)
124 ldr x1, =0x00FF000C
125 bl ccn504_set_qos
126 ldr x0, =CCI_S1_QOS_CONTROL_BASE(0)
127 ldr x1, =0x00FF000C
128 bl ccn504_set_qos
129 ldr x0, =CCI_S2_QOS_CONTROL_BASE(0)
130 ldr x1, =0x00FF000C
131 bl ccn504_set_qos
132
133 ldr x0, =CCI_S0_QOS_CONTROL_BASE(2)
134 ldr x1, =0x00FF000C
135 bl ccn504_set_qos
136 ldr x0, =CCI_S1_QOS_CONTROL_BASE(2)
137 ldr x1, =0x00FF000C
138 bl ccn504_set_qos
139 ldr x0, =CCI_S2_QOS_CONTROL_BASE(2)
140 ldr x1, =0x00FF000C
141 bl ccn504_set_qos
142
143 ldr x0, =CCI_S0_QOS_CONTROL_BASE(6)
144 ldr x1, =0x00FF000C
145 bl ccn504_set_qos
146 ldr x0, =CCI_S1_QOS_CONTROL_BASE(6)
147 ldr x1, =0x00FF000C
148 bl ccn504_set_qos
149 ldr x0, =CCI_S2_QOS_CONTROL_BASE(6)
150 ldr x1, =0x00FF000C
151 bl ccn504_set_qos
152
153 ldr x0, =CCI_S0_QOS_CONTROL_BASE(12)
154 ldr x1, =0x00FF000C
155 bl ccn504_set_qos
156 ldr x0, =CCI_S1_QOS_CONTROL_BASE(12)
157 ldr x1, =0x00FF000C
158 bl ccn504_set_qos
159 ldr x0, =CCI_S2_QOS_CONTROL_BASE(12)
160 ldr x1, =0x00FF000C
161 bl ccn504_set_qos
162
163 ldr x0, =CCI_S0_QOS_CONTROL_BASE(16)
164 ldr x1, =0x00FF000C
165 bl ccn504_set_qos
166 ldr x0, =CCI_S1_QOS_CONTROL_BASE(16)
167 ldr x1, =0x00FF000C
168 bl ccn504_set_qos
169 ldr x0, =CCI_S2_QOS_CONTROL_BASE(16)
170 ldr x1, =0x00FF000C
171 bl ccn504_set_qos
172
173 ldr x0, =CCI_S0_QOS_CONTROL_BASE(20)
174 ldr x1, =0x00FF000C
175 bl ccn504_set_qos
176 ldr x0, =CCI_S1_QOS_CONTROL_BASE(20)
177 ldr x1, =0x00FF000C
178 bl ccn504_set_qos
179 ldr x0, =CCI_S2_QOS_CONTROL_BASE(20)
180 ldr x1, =0x00FF000C
181 bl ccn504_set_qos
Ashish Kumar97393d62017-08-18 10:54:36 +0530182#endif /* CONFIG_SYS_FSL_HAS_CCN504 */
Scott Wooda814e662015-03-20 19:28:10 -0700183
Prabhakar Kushwahaae17df22016-06-03 18:41:26 +0530184#ifdef SMMU_BASE
York Suna84cd722014-06-23 15:15:54 -0700185 /* Set the SMMU page size in the sACR register */
186 ldr x1, =SMMU_BASE
187 ldr w0, [x1, #0x10]
188 orr w0, w0, #1 << 16 /* set sACR.pagesize to indicate 64K page */
189 str w0, [x1, #0x10]
Prabhakar Kushwahaae17df22016-06-03 18:41:26 +0530190#endif
York Suna84cd722014-06-23 15:15:54 -0700191
192 /* Initialize GIC Secure Bank Status */
193#if defined(CONFIG_GICV2) || defined(CONFIG_GICV3)
194 branch_if_slave x0, 1f
Wenbin Songa8f57a92017-01-17 18:31:15 +0800195 bl get_gic_offset
York Suna84cd722014-06-23 15:15:54 -0700196 bl gic_init_secure
1971:
198#ifdef CONFIG_GICV3
199 ldr x0, =GICR_BASE
200 bl gic_init_secure_percpu
201#elif defined(CONFIG_GICV2)
Wenbin Songa8f57a92017-01-17 18:31:15 +0800202 bl get_gic_offset
York Suna84cd722014-06-23 15:15:54 -0700203 bl gic_init_secure_percpu
204#endif
205#endif
206
York Sune6b871e2017-05-15 08:51:59 -0700207100:
York Sun56cc3db2014-09-08 12:20:00 -0700208 branch_if_master x0, x1, 2f
York Suna84cd722014-06-23 15:15:54 -0700209
Mingkai Hu0e58b512015-10-26 19:47:50 +0800210#if defined(CONFIG_MP) && defined(CONFIG_ARMV8_MULTIENTRY)
York Sun56cc3db2014-09-08 12:20:00 -0700211 ldr x0, =secondary_boot_func
212 blr x0
Mingkai Hu0e58b512015-10-26 19:47:50 +0800213#endif
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800214
Mingkai Hu0e58b512015-10-26 19:47:50 +08002152:
York Sune6b871e2017-05-15 08:51:59 -0700216 switch_el x1, 1f, 100f, 100f /* skip if not in EL3 */
2171:
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800218#ifdef CONFIG_FSL_TZPC_BP147
219 /* Set Non Secure access for all devices protected via TZPC */
220 ldr x1, =TZPCDECPROT_0_SET_BASE /* Decode Protection-0 Set Reg */
221 orr w0, w0, #1 << 3 /* DCFG_RESET is accessible from NS world */
222 str w0, [x1]
223
224 isb
225 dsb sy
226#endif
227
228#ifdef CONFIG_FSL_TZASC_400
Priyanka Jain583943b2016-11-17 12:29:54 +0530229 /*
230 * LS2080 and its personalities does not support TZASC
231 * So skip TZASC related operations
232 */
233 bl get_svr
234 lsr w0, w0, #16
Wenbin song5d8a61c2017-12-04 12:18:28 +0800235 ldr w1, =SVR_DEV(SVR_LS2080A)
Priyanka Jain583943b2016-11-17 12:29:54 +0530236 cmp w0, w1
237 b.eq 1f
238
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800239 /* Set TZASC so that:
240 * a. We use only Region0 whose global secure write/read is EN
241 * b. We use only Region0 whose NSAID write/read is EN
242 *
243 * NOTE: As per the CCSR map doc, TZASC 3 and TZASC 4 are just
244 * placeholders.
245 */
Sriram Dash0a7a7c32018-03-26 14:22:43 +0530246
247.macro tzasc_prog, xreg
248
249 mov x12, TZASC1_BASE
250 mov x16, #0x10000
251 mul x14, \xreg, x16
252 add x14, x14,x12
253 mov x1, #0x8
254 add x1, x1, x14
255
256 ldr w0, [x1] /* Filter 0 Gate Keeper Register */
257 orr w0, w0, #1 << 0 /* Set open_request for Filter 0 */
258 str w0, [x1]
259
260 mov x1, #0x110
261 add x1, x1, x14
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800262
Sriram Dash0a7a7c32018-03-26 14:22:43 +0530263 ldr w0, [x1] /* Region-0 Attributes Register */
264 orr w0, w0, #1 << 31 /* Set Sec global write en, Bit[31] */
265 orr w0, w0, #1 << 30 /* Set Sec global read en, Bit[30] */
266 str w0, [x1]
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800267
Sriram Dash0a7a7c32018-03-26 14:22:43 +0530268 mov x1, #0x114
269 add x1, x1, x14
270
271 ldr w0, [x1] /* Region-0 Access Register */
272 mov w0, #0xFFFFFFFF /* Set nsaid_wr_en and nsaid_rd_en */
273 str w0, [x1]
274.endm
275
276#ifdef CONFIG_FSL_TZASC_1
277 mov x13, #0
278 tzasc_prog x13
279
Ashish kumar76bd6ce2017-04-07 11:40:32 +0530280#endif
281#ifdef CONFIG_FSL_TZASC_2
Sriram Dash0a7a7c32018-03-26 14:22:43 +0530282 mov x13, #1
283 tzasc_prog x13
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800284
Ashish kumar76bd6ce2017-04-07 11:40:32 +0530285#endif
Bhupesh Sharmaa0c00ff2015-01-06 13:11:21 -0800286 isb
287 dsb sy
288#endif
York Sune6b871e2017-05-15 08:51:59 -0700289100:
Priyanka Jain583943b2016-11-17 12:29:54 +05302901:
York Sunbad49842016-09-26 08:09:24 -0700291#ifdef CONFIG_ARCH_LS1046A
York Sune6b871e2017-05-15 08:51:59 -0700292 switch_el x1, 1f, 100f, 100f /* skip if not in EL3 */
2931:
Mingkai Hu48ddbe82016-09-07 17:56:08 +0800294 /* Initialize the L2 RAM latency */
295 mrs x1, S3_1_c11_c0_2
296 mov x0, #0x1C7
297 /* Clear L2 Tag RAM latency and L2 Data RAM latency */
298 bic x1, x1, x0
299 /* Set L2 data ram latency bits [2:0] */
300 orr x1, x1, #0x2
301 /* set L2 tag ram latency bits [8:6] */
302 orr x1, x1, #0x80
303 msr S3_1_c11_c0_2, x1
304 isb
York Sune6b871e2017-05-15 08:51:59 -0700305100:
Mingkai Hu48ddbe82016-09-07 17:56:08 +0800306#endif
307
Rajesh Bhagat541f8eb2018-11-05 18:02:05 +0000308#if !defined(CONFIG_TFABOOT) && \
309 (defined(CONFIG_FSL_LSCH2) && !defined(CONFIG_SPL_BUILD))
Hou Zhiqiangc4797802016-12-16 17:15:46 +0800310 bl fsl_ocram_init
311#endif
312
York Sun56cc3db2014-09-08 12:20:00 -0700313 mov lr, x29 /* Restore LR */
314 ret
315ENDPROC(lowlevel_init)
316
Hou Zhiqiangc4797802016-12-16 17:15:46 +0800317#if defined(CONFIG_FSL_LSCH2) && !defined(CONFIG_SPL_BUILD)
318ENTRY(fsl_ocram_init)
319 mov x28, lr /* Save LR */
320 bl fsl_clear_ocram
321 bl fsl_ocram_clear_ecc_err
322 mov lr, x28 /* Restore LR */
323 ret
324ENDPROC(fsl_ocram_init)
325
326ENTRY(fsl_clear_ocram)
327/* Clear OCRAM */
328 ldr x0, =CONFIG_SYS_FSL_OCRAM_BASE
329 ldr x1, =(CONFIG_SYS_FSL_OCRAM_BASE + CONFIG_SYS_FSL_OCRAM_SIZE)
330 mov x2, #0
331clear_loop:
332 str x2, [x0]
333 add x0, x0, #8
334 cmp x0, x1
335 b.lo clear_loop
336 ret
337ENDPROC(fsl_clear_ocram)
338
339ENTRY(fsl_ocram_clear_ecc_err)
340 /* OCRAM1/2 ECC status bit */
341 mov w1, #0x60
342 ldr x0, =DCSR_DCFG_SBEESR2
343 str w1, [x0]
344 ldr x0, =DCSR_DCFG_MBEESR2
345 str w1, [x0]
346 ret
347ENDPROC(fsl_ocram_init)
348#endif
349
Prabhakar Kushwahad169ebe2016-06-03 18:41:31 +0530350#ifdef CONFIG_FSL_LSCH3
Priyanka Jain96b001f2016-11-17 12:29:51 +0530351 .globl get_svr
352get_svr:
353 ldr x1, =FSL_LSCH3_SVR
354 ldr w0, [x1]
355 ret
Ashish Kumar97393d62017-08-18 10:54:36 +0530356#endif
Priyanka Jain96b001f2016-11-17 12:29:51 +0530357
Priyanka Jainef76b2e2018-10-29 09:17:09 +0000358#if defined(CONFIG_SYS_FSL_HAS_CCN504) || defined(CONFIG_SYS_FSL_HAS_CCN508)
York Sun1ce575f2015-01-06 13:18:42 -0800359hnf_pstate_poll:
Meenakshi Aggarwal4470aeb2019-05-28 21:37:58 +0530360 /* x0 has the desired status, return only if operation succeed
361 * clobber x1, x2, x6
York Sun1ce575f2015-01-06 13:18:42 -0800362 */
363 mov x1, x0
Meenakshi Aggarwal4470aeb2019-05-28 21:37:58 +0530364 mov w6, #8 /* HN-F node count */
York Sun1ce575f2015-01-06 13:18:42 -0800365 mov x0, #0x18
366 movk x0, #0x420, lsl #16 /* HNF0_PSTATE_STATUS */
York Sun1ce575f2015-01-06 13:18:42 -08003671:
368 ldr x2, [x0]
369 cmp x2, x1 /* check status */
370 b.eq 2f
Meenakshi Aggarwal4470aeb2019-05-28 21:37:58 +0530371 b 1b
York Sun1ce575f2015-01-06 13:18:42 -08003722:
373 add x0, x0, #0x10000 /* move to next node */
374 subs w6, w6, #1
375 cbnz w6, 1b
York Sun1ce575f2015-01-06 13:18:42 -0800376 ret
377
378hnf_set_pstate:
379 /* x0 has the desired state, clobber x1, x2, x6 */
380 mov x1, x0
381 /* power state to SFONLY */
382 mov w6, #8 /* HN-F node count */
383 mov x0, #0x10
384 movk x0, #0x420, lsl #16 /* HNF0_PSTATE_REQ */
3851: /* set pstate to sfonly */
386 ldr x2, [x0]
387 and x2, x2, #0xfffffffffffffffc /* & HNFPSTAT_MASK */
388 orr x2, x2, x1
389 str x2, [x0]
390 add x0, x0, #0x10000 /* move to next node */
391 subs w6, w6, #1
392 cbnz w6, 1b
393
394 ret
395
Stephen Warrenddb0f632016-10-19 15:18:46 -0600396ENTRY(__asm_flush_l3_dcache)
York Sun1ce575f2015-01-06 13:18:42 -0800397 /*
398 * Return status in x0
399 * success 0
York Sun1ce575f2015-01-06 13:18:42 -0800400 */
401 mov x29, lr
York Sun1ce575f2015-01-06 13:18:42 -0800402
403 dsb sy
404 mov x0, #0x1 /* HNFPSTAT_SFONLY */
405 bl hnf_set_pstate
406
407 mov x0, #0x4 /* SFONLY status */
408 bl hnf_pstate_poll
Meenakshi Aggarwal4470aeb2019-05-28 21:37:58 +0530409
York Sun1ce575f2015-01-06 13:18:42 -0800410 dsb sy
411 mov x0, #0x3 /* HNFPSTAT_FAM */
412 bl hnf_set_pstate
413
414 mov x0, #0xc /* FAM status */
415 bl hnf_pstate_poll
Meenakshi Aggarwal4470aeb2019-05-28 21:37:58 +0530416
417 mov x0, #0
York Sun1ce575f2015-01-06 13:18:42 -0800418 mov lr, x29
419 ret
Stephen Warrenddb0f632016-10-19 15:18:46 -0600420ENDPROC(__asm_flush_l3_dcache)
Ashish Kumar97393d62017-08-18 10:54:36 +0530421#endif /* CONFIG_SYS_FSL_HAS_CCN504 */
York Sun1ce575f2015-01-06 13:18:42 -0800422
Mingkai Hu0e58b512015-10-26 19:47:50 +0800423#ifdef CONFIG_MP
York Sun56cc3db2014-09-08 12:20:00 -0700424 /* Keep literals not used by the secondary boot code outside it */
425 .ltorg
426
427 /* Using 64 bit alignment since the spin table is accessed as data */
428 .align 4
429 .global secondary_boot_code
430 /* Secondary Boot Code starts here */
431secondary_boot_code:
432 .global __spin_table
433__spin_table:
434 .space CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE
435
436 .align 2
437ENTRY(secondary_boot_func)
York Suna84cd722014-06-23 15:15:54 -0700438 /*
York Sun56cc3db2014-09-08 12:20:00 -0700439 * MPIDR_EL1 Fields:
440 * MPIDR[1:0] = AFF0_CPUID <- Core ID (0,1)
441 * MPIDR[7:2] = AFF0_RES
442 * MPIDR[15:8] = AFF1_CLUSTERID <- Cluster ID (0,1,2,3)
443 * MPIDR[23:16] = AFF2_CLUSTERID
444 * MPIDR[24] = MT
445 * MPIDR[29:25] = RES0
446 * MPIDR[30] = U
447 * MPIDR[31] = ME
448 * MPIDR[39:32] = AFF3
449 *
450 * Linear Processor ID (LPID) calculation from MPIDR_EL1:
451 * (We only use AFF0_CPUID and AFF1_CLUSTERID for now
452 * until AFF2_CLUSTERID and AFF3 have non-zero values)
453 *
454 * LPID = MPIDR[15:8] | MPIDR[1:0]
York Suna84cd722014-06-23 15:15:54 -0700455 */
York Sun56cc3db2014-09-08 12:20:00 -0700456 mrs x0, mpidr_el1
457 ubfm x1, x0, #8, #15
458 ubfm x2, x0, #0, #1
459 orr x10, x2, x1, lsl #2 /* x10 has LPID */
460 ubfm x9, x0, #0, #15 /* x9 contains MPIDR[15:0] */
York Suna84cd722014-06-23 15:15:54 -0700461 /*
York Sun56cc3db2014-09-08 12:20:00 -0700462 * offset of the spin table element for this core from start of spin
463 * table (each elem is padded to 64 bytes)
York Suna84cd722014-06-23 15:15:54 -0700464 */
York Sun56cc3db2014-09-08 12:20:00 -0700465 lsl x1, x10, #6
466 ldr x0, =__spin_table
467 /* physical address of this cpus spin table element */
468 add x11, x1, x0
469
York Sun77a10972015-03-20 19:28:08 -0700470 ldr x0, =__real_cntfrq
471 ldr x0, [x0]
472 msr cntfrq_el0, x0 /* set with real frequency */
York Sun56cc3db2014-09-08 12:20:00 -0700473 str x9, [x11, #16] /* LPID */
474 mov x4, #1
475 str x4, [x11, #8] /* STATUS */
476 dsb sy
477#if defined(CONFIG_GICV3)
478 gic_wait_for_interrupt_m x0
479#elif defined(CONFIG_GICV2)
Wenbin Songa8f57a92017-01-17 18:31:15 +0800480 bl get_gic_offset
481 mov x0, x1
York Sun56cc3db2014-09-08 12:20:00 -0700482 gic_wait_for_interrupt_m x0, w1
483#endif
484
York Sun56cc3db2014-09-08 12:20:00 -0700485slave_cpu:
486 wfe
487 ldr x0, [x11]
488 cbz x0, slave_cpu
489#ifndef CONFIG_ARMV8_SWITCH_TO_EL1
490 mrs x1, sctlr_el2
491#else
492 mrs x1, sctlr_el1
493#endif
494 tbz x1, #25, cpu_is_le
495 rev x0, x0 /* BE to LE conversion */
496cpu_is_le:
Alison Wang73818d52016-11-10 10:49:03 +0800497 ldr x5, [x11, #24]
Alison Wanga6231fe2017-06-08 16:15:14 +0800498 cbz x5, 1f
Alison Wang73818d52016-11-10 10:49:03 +0800499
500#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wangeb2088d2017-01-17 09:39:17 +0800501 adr x4, secondary_switch_to_el1
502 ldr x5, =ES_TO_AARCH64
Alison Wang73818d52016-11-10 10:49:03 +0800503#else
Alison Wangeb2088d2017-01-17 09:39:17 +0800504 ldr x4, [x11]
505 ldr x5, =ES_TO_AARCH32
Alison Wang73818d52016-11-10 10:49:03 +0800506#endif
507 bl secondary_switch_to_el2
508
5091:
510#ifdef CONFIG_ARMV8_SWITCH_TO_EL1
Alison Wangeb2088d2017-01-17 09:39:17 +0800511 adr x4, secondary_switch_to_el1
Alison Wang73818d52016-11-10 10:49:03 +0800512#else
Alison Wangeb2088d2017-01-17 09:39:17 +0800513 ldr x4, [x11]
Alison Wang73818d52016-11-10 10:49:03 +0800514#endif
Alison Wangeb2088d2017-01-17 09:39:17 +0800515 ldr x5, =ES_TO_AARCH64
Alison Wang73818d52016-11-10 10:49:03 +0800516 bl secondary_switch_to_el2
517
York Sun56cc3db2014-09-08 12:20:00 -0700518ENDPROC(secondary_boot_func)
519
520ENTRY(secondary_switch_to_el2)
Alison Wangeb2088d2017-01-17 09:39:17 +0800521 switch_el x6, 1f, 0f, 0f
York Sun56cc3db2014-09-08 12:20:00 -07005220: ret
Alison Wangeb2088d2017-01-17 09:39:17 +08005231: armv8_switch_to_el2_m x4, x5, x6
York Sun56cc3db2014-09-08 12:20:00 -0700524ENDPROC(secondary_switch_to_el2)
525
526ENTRY(secondary_switch_to_el1)
Alison Wang73818d52016-11-10 10:49:03 +0800527 mrs x0, mpidr_el1
528 ubfm x1, x0, #8, #15
529 ubfm x2, x0, #0, #1
530 orr x10, x2, x1, lsl #2 /* x10 has LPID */
531
532 lsl x1, x10, #6
533 ldr x0, =__spin_table
534 /* physical address of this cpus spin table element */
535 add x11, x1, x0
536
Alison Wangeb2088d2017-01-17 09:39:17 +0800537 ldr x4, [x11]
Alison Wang73818d52016-11-10 10:49:03 +0800538
539 ldr x5, [x11, #24]
Alison Wanga6231fe2017-06-08 16:15:14 +0800540 cbz x5, 2f
Alison Wang73818d52016-11-10 10:49:03 +0800541
Alison Wangeb2088d2017-01-17 09:39:17 +0800542 ldr x5, =ES_TO_AARCH32
Alison Wang73818d52016-11-10 10:49:03 +0800543 bl switch_to_el1
544
Alison Wangeb2088d2017-01-17 09:39:17 +08005452: ldr x5, =ES_TO_AARCH64
Alison Wang73818d52016-11-10 10:49:03 +0800546
547switch_to_el1:
Alison Wangeb2088d2017-01-17 09:39:17 +0800548 switch_el x6, 0f, 1f, 0f
York Sun56cc3db2014-09-08 12:20:00 -07005490: ret
Alison Wangeb2088d2017-01-17 09:39:17 +08005501: armv8_switch_to_el1_m x4, x5, x6
York Sun56cc3db2014-09-08 12:20:00 -0700551ENDPROC(secondary_switch_to_el1)
552
553 /* Ensure that the literals used by the secondary boot code are
554 * assembled within it (this is required so that we can protect
555 * this area with a single memreserve region
556 */
557 .ltorg
558
559 /* 64 bit alignment for elements accessed as data */
560 .align 4
York Sun77a10972015-03-20 19:28:08 -0700561 .global __real_cntfrq
562__real_cntfrq:
563 .quad COUNTER_FREQUENCY
York Sun56cc3db2014-09-08 12:20:00 -0700564 .globl __secondary_boot_code_size
565 .type __secondary_boot_code_size, %object
566 /* Secondary Boot Code ends here */
567__secondary_boot_code_size:
568 .quad .-secondary_boot_code
Mingkai Hu0e58b512015-10-26 19:47:50 +0800569#endif