blob: bfcfec3590f6b740b618580f4ca448d5afe930aa [file] [log] [blame]
Catalin Marinas0be73202012-03-05 11:49:26 +00001/*
Geoff Levand7b7293a2016-04-27 17:47:00 +01002 * Based on arch/arm/include/asm/assembler.h, arch/arm/mm/proc-macros.S
Catalin Marinas0be73202012-03-05 11:49:26 +00003 *
4 * Copyright (C) 1996-2000 Russell King
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19#ifndef __ASSEMBLY__
20#error "Only include this from assembly code"
21#endif
22
Marc Zyngierf3e39272015-02-20 13:53:13 +000023#ifndef __ASM_ASSEMBLER_H
24#define __ASM_ASSEMBLER_H
25
Geoff Levand7b7293a2016-04-27 17:47:00 +010026#include <asm/asm-offsets.h>
Andre Przywara823066d2016-06-28 18:07:29 +010027#include <asm/cpufeature.h>
Suzuki K Pouloseb8c32082018-03-26 15:12:49 +010028#include <asm/cputype.h>
Geoff Levand5003dbd2016-04-27 17:47:10 +010029#include <asm/page.h>
Geoff Levand7b7293a2016-04-27 17:47:00 +010030#include <asm/pgtable-hwdef.h>
Catalin Marinas0be73202012-03-05 11:49:26 +000031#include <asm/ptrace.h>
Will Deacon2a283072014-04-29 19:04:06 +010032#include <asm/thread_info.h>
Catalin Marinas0be73202012-03-05 11:49:26 +000033
34/*
Catalin Marinas0be73202012-03-05 11:49:26 +000035 * Enable and disable interrupts.
36 */
37 .macro disable_irq
38 msr daifset, #2
39 .endm
40
41 .macro enable_irq
42 msr daifclr, #2
43 .endm
44
45/*
Catalin Marinas0be73202012-03-05 11:49:26 +000046 * Enable and disable debug exceptions.
47 */
48 .macro disable_dbg
49 msr daifset, #8
50 .endm
51
52 .macro enable_dbg
53 msr daifclr, #8
54 .endm
55
Will Deacon2a283072014-04-29 19:04:06 +010056 .macro disable_step_tsk, flgs, tmp
57 tbz \flgs, #TIF_SINGLESTEP, 9990f
Catalin Marinas0be73202012-03-05 11:49:26 +000058 mrs \tmp, mdscr_el1
59 bic \tmp, \tmp, #1
60 msr mdscr_el1, \tmp
Will Deacon2a283072014-04-29 19:04:06 +010061 isb // Synchronise with enable_dbg
629990:
Catalin Marinas0be73202012-03-05 11:49:26 +000063 .endm
64
Will Deacon2a283072014-04-29 19:04:06 +010065 .macro enable_step_tsk, flgs, tmp
66 tbz \flgs, #TIF_SINGLESTEP, 9990f
67 disable_dbg
Catalin Marinas0be73202012-03-05 11:49:26 +000068 mrs \tmp, mdscr_el1
69 orr \tmp, \tmp, #1
70 msr mdscr_el1, \tmp
Will Deacon2a283072014-04-29 19:04:06 +0100719990:
Catalin Marinas0be73202012-03-05 11:49:26 +000072 .endm
73
Will Deacon2a283072014-04-29 19:04:06 +010074/*
75 * Enable both debug exceptions and interrupts. This is likely to be
76 * faster than two daifclr operations, since writes to this register
77 * are self-synchronising.
78 */
79 .macro enable_dbg_and_irq
80 msr daifclr, #(8 | 2)
Catalin Marinas0be73202012-03-05 11:49:26 +000081 .endm
82
83/*
84 * SMP data memory barrier
85 */
86 .macro smp_dmb, opt
Catalin Marinas0be73202012-03-05 11:49:26 +000087 dmb \opt
Catalin Marinas0be73202012-03-05 11:49:26 +000088 .endm
89
Ard Biesheuvel6c94f272016-01-01 15:02:12 +010090/*
Mark Rutlandafc09542018-04-12 12:10:57 +010091 * Value prediction barrier
92 */
93 .macro csdb
94 hint #20
95 .endm
96
97/*
Mark Rutlandf3ed64a2018-04-12 12:11:02 +010098 * Sanitise a 64-bit bounded index wrt speculation, returning zero if out
99 * of bounds.
100 */
101 .macro mask_nospec64, idx, limit, tmp
102 sub \tmp, \idx, \limit
103 bic \tmp, \tmp, \idx
104 and \idx, \idx, \tmp, asr #63
105 csdb
106 .endm
107
108/*
Will Deaconf99a2502016-09-06 16:40:23 +0100109 * NOP sequence
110 */
111 .macro nops, num
112 .rept \num
113 nop
114 .endr
115 .endm
116
117/*
Ard Biesheuvel6c94f272016-01-01 15:02:12 +0100118 * Emit an entry into the exception table
119 */
120 .macro _asm_extable, from, to
121 .pushsection __ex_table, "a"
122 .align 3
123 .long (\from - .), (\to - .)
124 .popsection
125 .endm
126
Catalin Marinas0be73202012-03-05 11:49:26 +0000127#define USER(l, x...) \
1289999: x; \
Ard Biesheuvel6c94f272016-01-01 15:02:12 +0100129 _asm_extable 9999b, l
Catalin Marinas0be73202012-03-05 11:49:26 +0000130
131/*
132 * Register aliases.
133 */
134lr .req x30 // link register
Marc Zyngierdc637f12012-10-19 17:37:35 +0100135
136/*
137 * Vector entry
138 */
139 .macro ventry label
140 .align 7
141 b \label
142 .endm
Matthew Leache68beda2013-10-11 14:52:15 +0100143
144/*
145 * Select code when configured for BE.
146 */
147#ifdef CONFIG_CPU_BIG_ENDIAN
148#define CPU_BE(code...) code
149#else
150#define CPU_BE(code...)
151#endif
152
153/*
154 * Select code when configured for LE.
155 */
156#ifdef CONFIG_CPU_BIG_ENDIAN
157#define CPU_LE(code...)
158#else
159#define CPU_LE(code...) code
160#endif
161
Matthew Leach55b89542013-10-11 14:52:13 +0100162/*
163 * Define a macro that constructs a 64-bit value by concatenating two
164 * 32-bit registers. Note that on big endian systems the order of the
165 * registers is swapped.
166 */
167#ifndef CONFIG_CPU_BIG_ENDIAN
168 .macro regs_to_64, rd, lbits, hbits
169#else
170 .macro regs_to_64, rd, hbits, lbits
171#endif
172 orr \rd, \lbits, \hbits, lsl #32
173 .endm
Marc Zyngierf3e39272015-02-20 13:53:13 +0000174
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100175/*
176 * Pseudo-ops for PC-relative adr/ldr/str <reg>, <symbol> where
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000177 * <symbol> is within the range +/- 4 GB of the PC when running
178 * in core kernel context. In module context, a movz/movk sequence
179 * is used, since modules may be loaded far away from the kernel
180 * when KASLR is in effect.
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100181 */
182 /*
183 * @dst: destination register (64 bit wide)
184 * @sym: name of the symbol
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100185 */
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000186 .macro adr_l, dst, sym
187#ifndef MODULE
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100188 adrp \dst, \sym
189 add \dst, \dst, :lo12:\sym
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000190#else
191 movz \dst, #:abs_g3:\sym
192 movk \dst, #:abs_g2_nc:\sym
193 movk \dst, #:abs_g1_nc:\sym
194 movk \dst, #:abs_g0_nc:\sym
195#endif
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100196 .endm
197
198 /*
199 * @dst: destination register (32 or 64 bit wide)
200 * @sym: name of the symbol
201 * @tmp: optional 64-bit scratch register to be used if <dst> is a
202 * 32-bit wide register, in which case it cannot be used to hold
203 * the address
204 */
205 .macro ldr_l, dst, sym, tmp=
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000206#ifndef MODULE
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100207 .ifb \tmp
208 adrp \dst, \sym
209 ldr \dst, [\dst, :lo12:\sym]
210 .else
211 adrp \tmp, \sym
212 ldr \dst, [\tmp, :lo12:\sym]
213 .endif
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000214#else
215 .ifb \tmp
216 adr_l \dst, \sym
217 ldr \dst, [\dst]
218 .else
219 adr_l \tmp, \sym
220 ldr \dst, [\tmp]
221 .endif
222#endif
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100223 .endm
224
225 /*
226 * @src: source register (32 or 64 bit wide)
227 * @sym: name of the symbol
228 * @tmp: mandatory 64-bit scratch register to calculate the address
229 * while <src> needs to be preserved.
230 */
231 .macro str_l, src, sym, tmp
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000232#ifndef MODULE
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100233 adrp \tmp, \sym
234 str \src, [\tmp, :lo12:\sym]
Ard Biesheuvelf88f06e2017-01-11 14:54:53 +0000235#else
236 adr_l \tmp, \sym
237 str \src, [\tmp]
238#endif
Ard Biesheuvelb784a5d2015-03-04 19:45:38 +0100239 .endm
240
James Morseaa4d5d32015-12-10 10:22:39 +0000241 /*
242 * @sym: The name of the per-cpu variable
243 * @reg: Result of per_cpu(sym, smp_processor_id())
244 * @tmp: scratch register
245 */
246 .macro this_cpu_ptr, sym, reg, tmp
247 adr_l \reg, \sym
248 mrs \tmp, tpidr_el1
249 add \reg, \reg, \tmp
250 .endm
251
Ard Biesheuvel20791842015-10-08 20:02:03 +0100252/*
Geoff Levand7b7293a2016-04-27 17:47:00 +0100253 * vma_vm_mm - get mm pointer from vma pointer (vma->vm_mm)
254 */
255 .macro vma_vm_mm, rd, rn
256 ldr \rd, [\rn, #VMA_VM_MM]
257 .endm
258
259/*
260 * mmid - get context id from mm pointer (mm->context.id)
261 */
262 .macro mmid, rd, rn
263 ldr \rd, [\rn, #MM_CONTEXT_ID]
264 .endm
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100265/*
266 * read_ctr - read CTR_EL0. If the system has mismatched
267 * cache line sizes, provide the system wide safe value
268 * from arm64_ftr_reg_ctrel0.sys_val
269 */
270 .macro read_ctr, reg
271alternative_if_not ARM64_MISMATCHED_CACHE_LINE_SIZE
272 mrs \reg, ctr_el0 // read CTR
273 nop
274alternative_else
275 ldr_l \reg, arm64_ftr_reg_ctrel0 + ARM64_FTR_SYSVAL
276alternative_endif
277 .endm
278
Geoff Levand7b7293a2016-04-27 17:47:00 +0100279
280/*
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100281 * raw_dcache_line_size - get the minimum D-cache line size on this CPU
282 * from the CTR register.
Geoff Levand7b7293a2016-04-27 17:47:00 +0100283 */
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100284 .macro raw_dcache_line_size, reg, tmp
Geoff Levand7b7293a2016-04-27 17:47:00 +0100285 mrs \tmp, ctr_el0 // read CTR
286 ubfm \tmp, \tmp, #16, #19 // cache line size encoding
287 mov \reg, #4 // bytes per word
288 lsl \reg, \reg, \tmp // actual cache line size
289 .endm
290
291/*
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100292 * dcache_line_size - get the safe D-cache line size across all CPUs
Geoff Levand7b7293a2016-04-27 17:47:00 +0100293 */
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100294 .macro dcache_line_size, reg, tmp
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100295 read_ctr \tmp
296 ubfm \tmp, \tmp, #16, #19 // cache line size encoding
297 mov \reg, #4 // bytes per word
298 lsl \reg, \reg, \tmp // actual cache line size
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100299 .endm
300
301/*
302 * raw_icache_line_size - get the minimum I-cache line size on this CPU
303 * from the CTR register.
304 */
305 .macro raw_icache_line_size, reg, tmp
Geoff Levand7b7293a2016-04-27 17:47:00 +0100306 mrs \tmp, ctr_el0 // read CTR
307 and \tmp, \tmp, #0xf // cache line size encoding
308 mov \reg, #4 // bytes per word
309 lsl \reg, \reg, \tmp // actual cache line size
310 .endm
311
312/*
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100313 * icache_line_size - get the safe I-cache line size across all CPUs
314 */
315 .macro icache_line_size, reg, tmp
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100316 read_ctr \tmp
317 and \tmp, \tmp, #0xf // cache line size encoding
318 mov \reg, #4 // bytes per word
319 lsl \reg, \reg, \tmp // actual cache line size
Suzuki K Poulose072f0a62016-09-09 14:07:14 +0100320 .endm
321
322/*
Geoff Levand7b7293a2016-04-27 17:47:00 +0100323 * tcr_set_idmap_t0sz - update TCR.T0SZ so that we can load the ID map
324 */
325 .macro tcr_set_idmap_t0sz, valreg, tmpreg
326#ifndef CONFIG_ARM64_VA_BITS_48
327 ldr_l \tmpreg, idmap_t0sz
328 bfi \valreg, \tmpreg, #TCR_T0SZ_OFFSET, #TCR_TxSZ_WIDTH
329#endif
330 .endm
331
332/*
333 * Macro to perform a data cache maintenance for the interval
334 * [kaddr, kaddr + size)
335 *
336 * op: operation passed to dc instruction
337 * domain: domain used in dsb instruciton
338 * kaddr: starting virtual address of the region
339 * size: size of the region
340 * Corrupts: kaddr, size, tmp1, tmp2
341 */
342 .macro dcache_by_line_op op, domain, kaddr, size, tmp1, tmp2
343 dcache_line_size \tmp1, \tmp2
344 add \size, \kaddr, \size
345 sub \tmp2, \tmp1, #1
346 bic \kaddr, \kaddr, \tmp2
Andre Przywara823066d2016-06-28 18:07:29 +01003479998:
348 .if (\op == cvau || \op == cvac)
349alternative_if_not ARM64_WORKAROUND_CLEAN_CACHE
350 dc \op, \kaddr
351alternative_else
352 dc civac, \kaddr
353alternative_endif
354 .else
355 dc \op, \kaddr
356 .endif
Geoff Levand7b7293a2016-04-27 17:47:00 +0100357 add \kaddr, \kaddr, \tmp1
358 cmp \kaddr, \size
359 b.lo 9998b
360 dsb \domain
361 .endm
362
363/*
364 * reset_pmuserenr_el0 - reset PMUSERENR_EL0 if PMUv3 present
365 */
366 .macro reset_pmuserenr_el0, tmpreg
367 mrs \tmpreg, id_aa64dfr0_el1 // Check ID_AA64DFR0_EL1 PMUVer
368 sbfx \tmpreg, \tmpreg, #8, #4
369 cmp \tmpreg, #1 // Skip if no PMU present
370 b.lt 9000f
371 msr pmuserenr_el0, xzr // Disable PMU access from EL0
3729000:
373 .endm
374
375/*
Geoff Levand5003dbd2016-04-27 17:47:10 +0100376 * copy_page - copy src to dest using temp registers t1-t8
377 */
378 .macro copy_page dest:req src:req t1:req t2:req t3:req t4:req t5:req t6:req t7:req t8:req
3799998: ldp \t1, \t2, [\src]
380 ldp \t3, \t4, [\src, #16]
381 ldp \t5, \t6, [\src, #32]
382 ldp \t7, \t8, [\src, #48]
383 add \src, \src, #64
384 stnp \t1, \t2, [\dest]
385 stnp \t3, \t4, [\dest, #16]
386 stnp \t5, \t6, [\dest, #32]
387 stnp \t7, \t8, [\dest, #48]
388 add \dest, \dest, #64
389 tst \src, #(PAGE_SIZE - 1)
390 b.ne 9998b
391 .endm
392
393/*
Ard Biesheuvel20791842015-10-08 20:02:03 +0100394 * Annotate a function as position independent, i.e., safe to be called before
395 * the kernel virtual mapping is activated.
396 */
397#define ENDPIPROC(x) \
398 .globl __pi_##x; \
399 .type __pi_##x, %function; \
400 .set __pi_##x, x; \
401 .size __pi_##x, . - x; \
402 ENDPROC(x)
403
Ard Biesheuvel6ad1fe52015-12-26 13:48:02 +0100404 /*
405 * Emit a 64-bit absolute little endian symbol reference in a way that
406 * ensures that it will be resolved at build time, even when building a
407 * PIE binary. This requires cooperation from the linker script, which
408 * must emit the lo32/hi32 halves individually.
409 */
410 .macro le64sym, sym
411 .long \sym\()_lo32
412 .long \sym\()_hi32
413 .endm
414
Ard Biesheuvel30b5ba52016-04-18 17:09:44 +0200415 /*
416 * mov_q - move an immediate constant into a 64-bit register using
417 * between 2 and 4 movz/movk instructions (depending on the
418 * magnitude and sign of the operand)
419 */
420 .macro mov_q, reg, val
421 .if (((\val) >> 31) == 0 || ((\val) >> 31) == 0x1ffffffff)
422 movz \reg, :abs_g1_s:\val
423 .else
424 .if (((\val) >> 47) == 0 || ((\val) >> 47) == 0x1ffff)
425 movz \reg, :abs_g2_s:\val
426 .else
427 movz \reg, :abs_g3:\val
428 movk \reg, :abs_g2_nc:\val
429 .endif
430 movk \reg, :abs_g1_nc:\val
431 .endif
432 movk \reg, :abs_g0_nc:\val
433 .endm
434
Will Deacon4025fe12018-04-03 12:09:20 +0100435 .macro pte_to_phys, phys, pte
436 and \phys, \pte, #(((1 << (48 - PAGE_SHIFT)) - 1) << PAGE_SHIFT)
437 .endm
Mark Rutland965924e2018-04-12 12:11:11 +0100438
Suzuki K Pouloseb8c32082018-03-26 15:12:49 +0100439/*
440 * Check the MIDR_EL1 of the current CPU for a given model and a range of
441 * variant/revision. See asm/cputype.h for the macros used below.
442 *
443 * model: MIDR_CPU_MODEL of CPU
444 * rv_min: Minimum of MIDR_CPU_VAR_REV()
445 * rv_max: Maximum of MIDR_CPU_VAR_REV()
446 * res: Result register.
447 * tmp1, tmp2, tmp3: Temporary registers
448 *
449 * Corrupts: res, tmp1, tmp2, tmp3
450 * Returns: 0, if the CPU id doesn't match. Non-zero otherwise
451 */
452 .macro cpu_midr_match model, rv_min, rv_max, res, tmp1, tmp2, tmp3
453 mrs \res, midr_el1
454 mov_q \tmp1, (MIDR_REVISION_MASK | MIDR_VARIANT_MASK)
455 mov_q \tmp2, MIDR_CPU_MODEL_MASK
456 and \tmp3, \res, \tmp2 // Extract model
457 and \tmp1, \res, \tmp1 // rev & variant
458 mov_q \tmp2, \model
459 cmp \tmp3, \tmp2
460 cset \res, eq
461 cbz \res, .Ldone\@ // Model matches ?
462
463 .if (\rv_min != 0) // Skip min check if rv_min == 0
464 mov_q \tmp3, \rv_min
465 cmp \tmp1, \tmp3
466 cset \res, ge
467 .endif // \rv_min != 0
468 /* Skip rv_max check if rv_min == rv_max && rv_min != 0 */
469 .if ((\rv_min != \rv_max) || \rv_min == 0)
470 mov_q \tmp2, \rv_max
471 cmp \tmp1, \tmp2
472 cset \tmp2, le
473 and \res, \res, \tmp2
474 .endif
475.Ldone\@:
476 .endm
477
Marc Zyngierf3e39272015-02-20 13:53:13 +0000478#endif /* __ASM_ASSEMBLER_H */