2 * include/asm-arm/macro.h
4 * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6 * SPDX-License-Identifier: GPL-2.0+
9 #ifndef __ASM_ARM_MACRO_H__
10 #define __ASM_ARM_MACRO_H__
13 #include <asm/system.h>
19 * These macros provide a convenient way to write 8, 16 and 32 bit data
21 * Registers r4 and r5 are used, any data in these registers are
22 * overwritten by the macros.
23 * The macros are valid for any ARM architecture, they do not implement
24 * any memory barriers so caution is recommended when using these when the
25 * caches are enabled or on a multi-core system.
28 .macro write32, addr, data
34 .macro write16, addr, data
40 .macro write8, addr, data
47 * This macro generates a loop that can be used for delays in the code.
48 * Register r4 is used, any data in this register is overwritten by the
50 * The macro is valid for any ARM architeture. The actual time spent in the
51 * loop will vary from CPU to CPU though.
54 .macro wait_timer, time
69 * Branch according to exception level
71 .macro switch_el, xreg, el3_label, el2_label, el1_label
82 * Branch if current processor is a Cortex-A57 core.
84 .macro branch_if_a57_core, xreg, a57_label
87 and \xreg, \xreg, #0x00000FFF
88 cmp \xreg, #0xD07 /* Cortex-A57 MPCore processor. */
93 * Branch if current processor is a Cortex-A53 core.
95 .macro branch_if_a53_core, xreg, a53_label
98 and \xreg, \xreg, #0x00000FFF
99 cmp \xreg, #0xD03 /* Cortex-A53 MPCore processor. */
104 * Branch if current processor is a slave,
105 * choose processor with all zero affinity value as the master.
107 .macro branch_if_slave, xreg, slave_label
108 #ifdef CONFIG_ARMV8_MULTIENTRY
109 /* NOTE: MPIDR handling will be erroneous on multi-cluster machines */
111 tst \xreg, #0xff /* Test Affinity 0 */
114 tst \xreg, #0xff /* Test Affinity 1 */
117 tst \xreg, #0xff /* Test Affinity 2 */
119 lsr \xreg, \xreg, #16
120 tst \xreg, #0xff /* Test Affinity 3 */
126 * Branch if current processor is a master,
127 * choose processor with all zero affinity value as the master.
129 .macro branch_if_master, xreg1, xreg2, master_label
130 #ifdef CONFIG_ARMV8_MULTIENTRY
131 /* NOTE: MPIDR handling will be erroneous on multi-cluster machines */
132 mrs \xreg1, mpidr_el1
133 lsr \xreg2, \xreg1, #32
134 lsl \xreg1, \xreg1, #40
135 lsr \xreg1, \xreg1, #40
136 orr \xreg1, \xreg1, \xreg2
137 cbz \xreg1, \master_label
144 * Switch from EL3 to EL2 for ARMv8
145 * @ep: kernel entry point
146 * @flag: The execution state flag for lower exception
147 * level, ES_TO_AARCH64 or ES_TO_AARCH32
148 * @tmp: temporary register
150 * For loading 32-bit OS, x1 is machine nr and x2 is ftaddr.
151 * For loading 64-bit OS, x0 is physical address to the FDT blob.
152 * They will be passed to the guest.
154 .macro armv8_switch_to_el2_m, ep, flag, tmp
155 msr cptr_el3, xzr /* Disable coprocessor traps to EL3 */
156 mov \tmp, #CPTR_EL2_RES1
157 msr cptr_el2, \tmp /* Disable coprocessor traps to EL2 */
159 /* Initialize Generic Timers */
162 /* Initialize SCTLR_EL2
164 * setting RES1 bits (29,28,23,22,18,16,11,5,4) to 1
165 * and RES0 bits (31,30,27,26,24,21,20,17,15-13,10-6) +
166 * EE,WXN,I,SA,C,A,M to 0
168 ldr \tmp, =(SCTLR_EL2_RES1 | SCTLR_EL2_EE_LE |\
169 SCTLR_EL2_WXN_DIS | SCTLR_EL2_ICACHE_DIS |\
170 SCTLR_EL2_SA_DIS | SCTLR_EL2_DCACHE_DIS |\
171 SCTLR_EL2_ALIGN_DIS | SCTLR_EL2_MMU_DIS)
175 msr sp_el2, \tmp /* Migrate SP */
177 msr vbar_el2, \tmp /* Migrate VBAR */
179 /* Check switch to AArch64 EL2 or AArch32 Hypervisor mode */
180 cmp \flag, #ES_TO_AARCH32
184 * The next lower exception level is AArch64, 64bit EL2 | HCE |
185 * RES1 (Bits[5:4]) | Non-secure EL0/EL1.
186 * and the SMD depends on requirements.
188 #ifdef CONFIG_ARMV8_PSCI
189 ldr \tmp, =(SCR_EL3_RW_AARCH64 | SCR_EL3_HCE_EN |\
190 SCR_EL3_RES1 | SCR_EL3_NS_EN)
192 ldr \tmp, =(SCR_EL3_RW_AARCH64 | SCR_EL3_HCE_EN |\
193 SCR_EL3_SMD_DIS | SCR_EL3_RES1 |\
198 /* Return to the EL2_SP2 mode from EL3 */
199 ldr \tmp, =(SPSR_EL_DEBUG_MASK | SPSR_EL_SERR_MASK |\
200 SPSR_EL_IRQ_MASK | SPSR_EL_FIQ_MASK |\
201 SPSR_EL_M_AARCH64 | SPSR_EL_M_EL2H)
208 * The next lower exception level is AArch32, 32bit EL2 | HCE |
209 * SMD | RES1 (Bits[5:4]) | Non-secure EL0/EL1.
211 ldr \tmp, =(SCR_EL3_RW_AARCH32 | SCR_EL3_HCE_EN |\
212 SCR_EL3_SMD_DIS | SCR_EL3_RES1 |\
216 /* Return to AArch32 Hypervisor mode */
217 ldr \tmp, =(SPSR_EL_END_LE | SPSR_EL_ASYN_MASK |\
218 SPSR_EL_IRQ_MASK | SPSR_EL_FIQ_MASK |\
219 SPSR_EL_T_A32 | SPSR_EL_M_AARCH32 |\
227 * Switch from EL2 to EL1 for ARMv8
228 * @ep: kernel entry point
229 * @flag: The execution state flag for lower exception
230 * level, ES_TO_AARCH64 or ES_TO_AARCH32
231 * @tmp: temporary register
233 * For loading 32-bit OS, x1 is machine nr and x2 is ftaddr.
234 * For loading 64-bit OS, x0 is physical address to the FDT blob.
235 * They will be passed to the guest.
237 .macro armv8_switch_to_el1_m, ep, flag, tmp
238 /* Initialize Generic Timers */
239 mrs \tmp, cnthctl_el2
240 /* Enable EL1 access to timers */
241 orr \tmp, \tmp, #(CNTHCTL_EL2_EL1PCEN_EN |\
242 CNTHCTL_EL2_EL1PCTEN_EN)
243 msr cnthctl_el2, \tmp
246 /* Initilize MPID/MPIDR registers */
252 /* Disable coprocessor traps */
253 mov \tmp, #CPTR_EL2_RES1
254 msr cptr_el2, \tmp /* Disable coprocessor traps to EL2 */
255 msr hstr_el2, xzr /* Disable coprocessor traps to EL2 */
256 mov \tmp, #CPACR_EL1_FPEN_EN
257 msr cpacr_el1, \tmp /* Enable FP/SIMD at EL1 */
259 /* SCTLR_EL1 initialization
261 * setting RES1 bits (29,28,23,22,20,11) to 1
262 * and RES0 bits (31,30,27,21,17,13,10,6) +
263 * UCI,EE,EOE,WXN,nTWE,nTWI,UCT,DZE,I,UMA,SED,ITD,
264 * CP15BEN,SA0,SA,C,A,M to 0
266 ldr \tmp, =(SCTLR_EL1_RES1 | SCTLR_EL1_UCI_DIS |\
267 SCTLR_EL1_EE_LE | SCTLR_EL1_WXN_DIS |\
268 SCTLR_EL1_NTWE_DIS | SCTLR_EL1_NTWI_DIS |\
269 SCTLR_EL1_UCT_DIS | SCTLR_EL1_DZE_DIS |\
270 SCTLR_EL1_ICACHE_DIS | SCTLR_EL1_UMA_DIS |\
271 SCTLR_EL1_SED_EN | SCTLR_EL1_ITD_EN |\
272 SCTLR_EL1_CP15BEN_DIS | SCTLR_EL1_SA0_DIS |\
273 SCTLR_EL1_SA_DIS | SCTLR_EL1_DCACHE_DIS |\
274 SCTLR_EL1_ALIGN_DIS | SCTLR_EL1_MMU_DIS)
278 msr sp_el1, \tmp /* Migrate SP */
280 msr vbar_el1, \tmp /* Migrate VBAR */
282 /* Check switch to AArch64 EL1 or AArch32 Supervisor mode */
283 cmp \flag, #ES_TO_AARCH32
286 /* Initialize HCR_EL2 */
287 ldr \tmp, =(HCR_EL2_RW_AARCH64 | HCR_EL2_HCD_DIS)
290 /* Return to the EL1_SP1 mode from EL2 */
291 ldr \tmp, =(SPSR_EL_DEBUG_MASK | SPSR_EL_SERR_MASK |\
292 SPSR_EL_IRQ_MASK | SPSR_EL_FIQ_MASK |\
293 SPSR_EL_M_AARCH64 | SPSR_EL_M_EL1H)
299 /* Initialize HCR_EL2 */
300 ldr \tmp, =(HCR_EL2_RW_AARCH32 | HCR_EL2_HCD_DIS)
303 /* Return to AArch32 Supervisor mode from EL2 */
304 ldr \tmp, =(SPSR_EL_END_LE | SPSR_EL_ASYN_MASK |\
305 SPSR_EL_IRQ_MASK | SPSR_EL_FIQ_MASK |\
306 SPSR_EL_T_A32 | SPSR_EL_M_AARCH32 |\
313 #if defined(CONFIG_GICV3)
314 .macro gic_wait_for_interrupt_m xreg1
316 mrs \xreg1, ICC_IAR1_EL1
317 msr ICC_EOIR1_EL1, \xreg1
320 #elif defined(CONFIG_GICV2)
321 .macro gic_wait_for_interrupt_m xreg1, wreg2
323 ldr \wreg2, [\xreg1, GICC_AIAR]
324 str \wreg2, [\xreg1, GICC_AEOIR]
325 and \wreg2, \wreg2, #0x3ff
330 #endif /* CONFIG_ARM64 */
332 #endif /* __ASSEMBLY__ */
333 #endif /* __ASM_ARM_MACRO_H__ */