blob: b974184f9941883339c0480df1290a6a6f66a4ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/assembler.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1996-2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This file contains arm architecture specific defines
11 * for the different processors.
12 *
13 * Do not include any C declarations in this file - it is included by
14 * assembler source.
15 */
Magnus Damm2bc58a62011-06-13 06:46:44 +010016#ifndef __ASM_ASSEMBLER_H__
17#define __ASM_ASSEMBLER_H__
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#ifndef __ASSEMBLY__
20#error "Only include this from assembly code"
21#endif
22
23#include <asm/ptrace.h>
Catalin Marinas247055a2010-09-13 16:03:21 +010024#include <asm/domain.h>
Dave Martin80c59da2012-02-09 08:47:17 -080025#include <asm/opcodes-virt.h>
Catalin Marinas0b1f68e2014-04-02 10:57:49 +010026#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Rob Herring6f6f6a72012-03-10 10:30:31 -060028#define IOMEM(x) (x)
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * Endian independent macros for shifting bytes within registers.
32 */
33#ifndef __ARMEB__
Victor Kamenskyd98b90e2014-02-25 08:41:09 +010034#define lspull lsr
35#define lspush lsl
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define get_byte_0 lsl #0
37#define get_byte_1 lsr #8
38#define get_byte_2 lsr #16
39#define get_byte_3 lsr #24
40#define put_byte_0 lsl #0
41#define put_byte_1 lsl #8
42#define put_byte_2 lsl #16
43#define put_byte_3 lsl #24
44#else
Victor Kamenskyd98b90e2014-02-25 08:41:09 +010045#define lspull lsl
46#define lspush lsr
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define get_byte_0 lsr #24
48#define get_byte_1 lsr #16
49#define get_byte_2 lsr #8
50#define get_byte_3 lsl #0
51#define put_byte_0 lsl #24
52#define put_byte_1 lsl #16
53#define put_byte_2 lsl #8
54#define put_byte_3 lsl #0
55#endif
56
Ben Dooks457c2402013-02-12 18:59:57 +000057/* Select code for any configuration running in BE8 mode */
58#ifdef CONFIG_CPU_ENDIAN_BE8
59#define ARM_BE8(code...) code
60#else
61#define ARM_BE8(code...)
62#endif
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Data preload for architectures that support it
66 */
67#if __LINUX_ARM_ARCH__ >= 5
68#define PLD(code...) code
69#else
70#define PLD(code...)
71#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*
Nicolas Pitre2239aff2008-03-31 12:38:31 -040074 * This can be used to enable code to cacheline align the destination
75 * pointer when bulk writing to memory. Experiments on StrongARM and
76 * XScale didn't show this a worthwhile thing to do when the cache is not
77 * set to write-allocate (this would need further testing on XScale when WA
78 * is used).
79 *
80 * On Feroceon there is much to gain however, regardless of cache mode.
81 */
82#ifdef CONFIG_CPU_FEROCEON
83#define CALGN(code...) code
84#else
85#define CALGN(code...)
86#endif
87
88/*
Russell King9c429542006-03-23 16:59:37 +000089 * Enable and disable interrupts
90 */
91#if __LINUX_ARM_ARCH__ >= 6
Uwe Kleine-König0d928b02009-08-13 20:38:17 +020092 .macro disable_irq_notrace
Russell King9c429542006-03-23 16:59:37 +000093 cpsid i
94 .endm
95
Uwe Kleine-König0d928b02009-08-13 20:38:17 +020096 .macro enable_irq_notrace
Russell King9c429542006-03-23 16:59:37 +000097 cpsie i
98 .endm
99#else
Uwe Kleine-König0d928b02009-08-13 20:38:17 +0200100 .macro disable_irq_notrace
Russell King9c429542006-03-23 16:59:37 +0000101 msr cpsr_c, #PSR_I_BIT | SVC_MODE
102 .endm
103
Uwe Kleine-König0d928b02009-08-13 20:38:17 +0200104 .macro enable_irq_notrace
Russell King9c429542006-03-23 16:59:37 +0000105 msr cpsr_c, #SVC_MODE
106 .endm
107#endif
108
Uwe Kleine-König0d928b02009-08-13 20:38:17 +0200109 .macro asm_trace_hardirqs_off
110#if defined(CONFIG_TRACE_IRQFLAGS)
111 stmdb sp!, {r0-r3, ip, lr}
112 bl trace_hardirqs_off
113 ldmia sp!, {r0-r3, ip, lr}
114#endif
115 .endm
116
117 .macro asm_trace_hardirqs_on_cond, cond
118#if defined(CONFIG_TRACE_IRQFLAGS)
119 /*
120 * actually the registers should be pushed and pop'd conditionally, but
121 * after bl the flags are certainly clobbered
122 */
123 stmdb sp!, {r0-r3, ip, lr}
124 bl\cond trace_hardirqs_on
125 ldmia sp!, {r0-r3, ip, lr}
126#endif
127 .endm
128
129 .macro asm_trace_hardirqs_on
130 asm_trace_hardirqs_on_cond al
131 .endm
132
133 .macro disable_irq
134 disable_irq_notrace
135 asm_trace_hardirqs_off
136 .endm
137
138 .macro enable_irq
139 asm_trace_hardirqs_on
140 enable_irq_notrace
141 .endm
Russell King9c429542006-03-23 16:59:37 +0000142/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * Save the current IRQ state and disable IRQs. Note that this macro
144 * assumes FIQs are enabled, and that the processor is in SVC mode.
145 */
Russell King59d1ff32005-11-09 15:04:22 +0000146 .macro save_and_disable_irqs, oldcpsr
Catalin Marinas55bdd692010-05-21 18:06:41 +0100147#ifdef CONFIG_CPU_V7M
148 mrs \oldcpsr, primask
149#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 mrs \oldcpsr, cpsr
Catalin Marinas55bdd692010-05-21 18:06:41 +0100151#endif
Russell King9c429542006-03-23 16:59:37 +0000152 disable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 .endm
154
Rabin Vincent8e43a902012-02-15 16:01:42 +0100155 .macro save_and_disable_irqs_notrace, oldcpsr
156 mrs \oldcpsr, cpsr
157 disable_irq_notrace
158 .endm
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
161 * Restore interrupt state previously stored in a register. We don't
162 * guarantee that this will preserve the flags.
163 */
Uwe Kleine-König0d928b02009-08-13 20:38:17 +0200164 .macro restore_irqs_notrace, oldcpsr
Catalin Marinas55bdd692010-05-21 18:06:41 +0100165#ifdef CONFIG_CPU_V7M
166 msr primask, \oldcpsr
167#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 msr cpsr_c, \oldcpsr
Catalin Marinas55bdd692010-05-21 18:06:41 +0100169#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .endm
171
Uwe Kleine-König0d928b02009-08-13 20:38:17 +0200172 .macro restore_irqs, oldcpsr
173 tst \oldcpsr, #PSR_I_BIT
174 asm_trace_hardirqs_on_cond eq
175 restore_irqs_notrace \oldcpsr
176 .endm
177
Catalin Marinas39ad04c2014-04-02 10:57:48 +0100178/*
179 * Get current thread_info.
180 */
181 .macro get_thread_info, rd
182 ARM( mov \rd, sp, lsr #13 )
183 THUMB( mov \rd, sp )
184 THUMB( lsr \rd, \rd, #13 )
185 mov \rd, \rd, lsl #13
186 .endm
187
Catalin Marinas0b1f68e2014-04-02 10:57:49 +0100188/*
189 * Increment/decrement the preempt count.
190 */
191#ifdef CONFIG_PREEMPT_COUNT
192 .macro inc_preempt_count, ti, tmp
193 ldr \tmp, [\ti, #TI_PREEMPT] @ get preempt count
194 add \tmp, \tmp, #1 @ increment it
195 str \tmp, [\ti, #TI_PREEMPT]
196 .endm
197
198 .macro dec_preempt_count, ti, tmp
199 ldr \tmp, [\ti, #TI_PREEMPT] @ get preempt count
200 sub \tmp, \tmp, #1 @ decrement it
201 str \tmp, [\ti, #TI_PREEMPT]
202 .endm
203
204 .macro dec_preempt_count_ti, ti, tmp
205 get_thread_info \ti
206 dec_preempt_count \ti, \tmp
207 .endm
208#else
209 .macro inc_preempt_count, ti, tmp
210 .endm
211
212 .macro dec_preempt_count, ti, tmp
213 .endm
214
215 .macro dec_preempt_count_ti, ti, tmp
216 .endm
217#endif
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#define USER(x...) \
2209999: x; \
Russell King42604152010-04-19 10:15:03 +0100221 .pushsection __ex_table,"a"; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .align 3; \
223 .long 9999b,9001f; \
Russell King42604152010-04-19 10:15:03 +0100224 .popsection
Russell Kingbac4e962009-05-25 20:58:00 +0100225
Russell Kingf00ec482010-09-04 10:47:48 +0100226#ifdef CONFIG_SMP
227#define ALT_SMP(instr...) \
2289998: instr
Dave Martined3768a2010-12-01 15:39:23 +0100229/*
230 * Note: if you get assembler errors from ALT_UP() when building with
231 * CONFIG_THUMB2_KERNEL, you almost certainly need to use
232 * ALT_SMP( W(instr) ... )
233 */
Russell Kingf00ec482010-09-04 10:47:48 +0100234#define ALT_UP(instr...) \
235 .pushsection ".alt.smp.init", "a" ;\
236 .long 9998b ;\
Dave Martined3768a2010-12-01 15:39:23 +01002379997: instr ;\
238 .if . - 9997b != 4 ;\
239 .error "ALT_UP() content must assemble to exactly 4 bytes";\
240 .endif ;\
Russell Kingf00ec482010-09-04 10:47:48 +0100241 .popsection
242#define ALT_UP_B(label) \
243 .equ up_b_offset, label - 9998b ;\
244 .pushsection ".alt.smp.init", "a" ;\
245 .long 9998b ;\
Dave Martined3768a2010-12-01 15:39:23 +0100246 W(b) . + up_b_offset ;\
Russell Kingf00ec482010-09-04 10:47:48 +0100247 .popsection
248#else
249#define ALT_SMP(instr...)
250#define ALT_UP(instr...) instr
251#define ALT_UP_B(label) b label
252#endif
253
Russell Kingbac4e962009-05-25 20:58:00 +0100254/*
Will Deacond675d0b2011-11-22 17:30:28 +0000255 * Instruction barrier
256 */
257 .macro instr_sync
258#if __LINUX_ARM_ARCH__ >= 7
259 isb
260#elif __LINUX_ARM_ARCH__ == 6
261 mcr p15, 0, r0, c7, c5, 4
262#endif
263 .endm
264
265/*
Russell Kingbac4e962009-05-25 20:58:00 +0100266 * SMP data memory barrier
267 */
Dave Martined3768a2010-12-01 15:39:23 +0100268 .macro smp_dmb mode
Russell Kingbac4e962009-05-25 20:58:00 +0100269#ifdef CONFIG_SMP
270#if __LINUX_ARM_ARCH__ >= 7
Dave Martined3768a2010-12-01 15:39:23 +0100271 .ifeqs "\mode","arm"
Will Deacon3ea12802013-05-10 18:07:19 +0100272 ALT_SMP(dmb ish)
Dave Martined3768a2010-12-01 15:39:23 +0100273 .else
Will Deacon3ea12802013-05-10 18:07:19 +0100274 ALT_SMP(W(dmb) ish)
Dave Martined3768a2010-12-01 15:39:23 +0100275 .endif
Russell Kingbac4e962009-05-25 20:58:00 +0100276#elif __LINUX_ARM_ARCH__ == 6
Russell Kingf00ec482010-09-04 10:47:48 +0100277 ALT_SMP(mcr p15, 0, r0, c7, c10, 5) @ dmb
278#else
279#error Incompatible SMP platform
Russell Kingbac4e962009-05-25 20:58:00 +0100280#endif
Dave Martined3768a2010-12-01 15:39:23 +0100281 .ifeqs "\mode","arm"
Russell Kingf00ec482010-09-04 10:47:48 +0100282 ALT_UP(nop)
Dave Martined3768a2010-12-01 15:39:23 +0100283 .else
284 ALT_UP(W(nop))
285 .endif
Russell Kingbac4e962009-05-25 20:58:00 +0100286#endif
287 .endm
Catalin Marinasb86040a2009-07-24 12:32:54 +0100288
Catalin Marinas55bdd692010-05-21 18:06:41 +0100289#if defined(CONFIG_CPU_V7M)
290 /*
291 * setmode is used to assert to be in svc mode during boot. For v7-M
292 * this is done in __v7m_setup, so setmode can be empty here.
293 */
294 .macro setmode, mode, reg
295 .endm
296#elif defined(CONFIG_THUMB2_KERNEL)
Catalin Marinasb86040a2009-07-24 12:32:54 +0100297 .macro setmode, mode, reg
298 mov \reg, #\mode
299 msr cpsr_c, \reg
300 .endm
301#else
302 .macro setmode, mode, reg
303 msr cpsr_c, #\mode
304 .endm
305#endif
Catalin Marinas8b592782009-07-24 12:32:57 +0100306
307/*
Dave Martin80c59da2012-02-09 08:47:17 -0800308 * Helper macro to enter SVC mode cleanly and mask interrupts. reg is
309 * a scratch register for the macro to overwrite.
310 *
311 * This macro is intended for forcing the CPU into SVC mode at boot time.
312 * you cannot return to the original mode.
Dave Martin80c59da2012-02-09 08:47:17 -0800313 */
314.macro safe_svcmode_maskall reg:req
Dave Martin1ecec692012-12-10 18:35:22 +0100315#if __LINUX_ARM_ARCH__ >= 6
Dave Martin80c59da2012-02-09 08:47:17 -0800316 mrs \reg , cpsr
Russell King8e9c24a2012-12-03 15:39:43 +0000317 eor \reg, \reg, #HYP_MODE
318 tst \reg, #MODE_MASK
Dave Martin80c59da2012-02-09 08:47:17 -0800319 bic \reg , \reg , #MODE_MASK
Russell King8e9c24a2012-12-03 15:39:43 +0000320 orr \reg , \reg , #PSR_I_BIT | PSR_F_BIT | SVC_MODE
Dave Martin80c59da2012-02-09 08:47:17 -0800321THUMB( orr \reg , \reg , #PSR_T_BIT )
Dave Martin80c59da2012-02-09 08:47:17 -0800322 bne 1f
Marc Zyngier2a552d52012-10-06 17:03:17 +0100323 orr \reg, \reg, #PSR_A_BIT
324 adr lr, BSYM(2f)
325 msr spsr_cxsf, \reg
Dave Martin80c59da2012-02-09 08:47:17 -0800326 __MSR_ELR_HYP(14)
327 __ERET
Marc Zyngier2a552d52012-10-06 17:03:17 +01003281: msr cpsr_c, \reg
Dave Martin80c59da2012-02-09 08:47:17 -08003292:
Dave Martin1ecec692012-12-10 18:35:22 +0100330#else
331/*
332 * workaround for possibly broken pre-v6 hardware
333 * (akita, Sharp Zaurus C-1000, PXA270-based)
334 */
335 setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, \reg
336#endif
Dave Martin80c59da2012-02-09 08:47:17 -0800337.endm
338
339/*
Catalin Marinas8b592782009-07-24 12:32:57 +0100340 * STRT/LDRT access macros with ARM and Thumb-2 variants
341 */
342#ifdef CONFIG_THUMB2_KERNEL
343
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100344 .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER()
Catalin Marinas8b592782009-07-24 12:32:57 +01003459999:
346 .if \inc == 1
Catalin Marinas247055a2010-09-13 16:03:21 +0100347 \instr\cond\()b\()\t\().w \reg, [\ptr, #\off]
Catalin Marinas8b592782009-07-24 12:32:57 +0100348 .elseif \inc == 4
Catalin Marinas247055a2010-09-13 16:03:21 +0100349 \instr\cond\()\t\().w \reg, [\ptr, #\off]
Catalin Marinas8b592782009-07-24 12:32:57 +0100350 .else
351 .error "Unsupported inc macro argument"
352 .endif
353
Russell King42604152010-04-19 10:15:03 +0100354 .pushsection __ex_table,"a"
Catalin Marinas8b592782009-07-24 12:32:57 +0100355 .align 3
356 .long 9999b, \abort
Russell King42604152010-04-19 10:15:03 +0100357 .popsection
Catalin Marinas8b592782009-07-24 12:32:57 +0100358 .endm
359
360 .macro usracc, instr, reg, ptr, inc, cond, rept, abort
361 @ explicit IT instruction needed because of the label
362 @ introduced by the USER macro
363 .ifnc \cond,al
364 .if \rept == 1
365 itt \cond
366 .elseif \rept == 2
367 ittt \cond
368 .else
369 .error "Unsupported rept macro argument"
370 .endif
371 .endif
372
373 @ Slightly optimised to avoid incrementing the pointer twice
374 usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort
375 .if \rept == 2
Will Deacon1142b712010-11-19 13:18:31 +0100376 usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort
Catalin Marinas8b592782009-07-24 12:32:57 +0100377 .endif
378
379 add\cond \ptr, #\rept * \inc
380 .endm
381
382#else /* !CONFIG_THUMB2_KERNEL */
383
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100384 .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER()
Catalin Marinas8b592782009-07-24 12:32:57 +0100385 .rept \rept
3869999:
387 .if \inc == 1
Catalin Marinas247055a2010-09-13 16:03:21 +0100388 \instr\cond\()b\()\t \reg, [\ptr], #\inc
Catalin Marinas8b592782009-07-24 12:32:57 +0100389 .elseif \inc == 4
Catalin Marinas247055a2010-09-13 16:03:21 +0100390 \instr\cond\()\t \reg, [\ptr], #\inc
Catalin Marinas8b592782009-07-24 12:32:57 +0100391 .else
392 .error "Unsupported inc macro argument"
393 .endif
394
Russell King42604152010-04-19 10:15:03 +0100395 .pushsection __ex_table,"a"
Catalin Marinas8b592782009-07-24 12:32:57 +0100396 .align 3
397 .long 9999b, \abort
Russell King42604152010-04-19 10:15:03 +0100398 .popsection
Catalin Marinas8b592782009-07-24 12:32:57 +0100399 .endr
400 .endm
401
402#endif /* CONFIG_THUMB2_KERNEL */
403
404 .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
405 usracc str, \reg, \ptr, \inc, \cond, \rept, \abort
406 .endm
407
408 .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
409 usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort
410 .endm
Dave Martin8f519652011-06-23 17:10:05 +0100411
412/* Utility macro for declaring string literals */
413 .macro string name:req, string
414 .type \name , #object
415\name:
416 .asciz "\string"
417 .size \name , . - \name
418 .endm
419
Russell King84046632012-09-07 18:22:28 +0100420 .macro check_uaccess, addr:req, size:req, limit:req, tmp:req, bad:req
421#ifndef CONFIG_CPU_USE_DOMAINS
422 adds \tmp, \addr, #\size - 1
423 sbcccs \tmp, \tmp, \limit
424 bcs \bad
425#endif
426 .endm
427
Magnus Damm2bc58a62011-06-13 06:46:44 +0100428#endif /* __ASM_ASSEMBLER_H__ */