Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Russell King | 4baa992 | 2008-08-02 10:55:55 +0100 | [diff] [blame] | 2 | * arch/arm/include/asm/assembler.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 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 Damm | 2bc58a6 | 2011-06-13 06:46:44 +0100 | [diff] [blame] | 16 | #ifndef __ASM_ASSEMBLER_H__ |
| 17 | #define __ASM_ASSEMBLER_H__ |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #ifndef __ASSEMBLY__ |
| 20 | #error "Only include this from assembly code" |
| 21 | #endif |
| 22 | |
| 23 | #include <asm/ptrace.h> |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 24 | #include <asm/domain.h> |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 25 | #include <asm/opcodes-virt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Rob Herring | 6f6f6a7 | 2012-03-10 10:30:31 -0600 | [diff] [blame] | 27 | #define IOMEM(x) (x) |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* |
| 30 | * Endian independent macros for shifting bytes within registers. |
| 31 | */ |
| 32 | #ifndef __ARMEB__ |
Victor Kamensky | 8032ebe | 2014-02-25 08:41:09 +0100 | [diff] [blame] | 33 | #define lspull lsr |
| 34 | #define lspush lsl |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #define get_byte_0 lsl #0 |
| 36 | #define get_byte_1 lsr #8 |
| 37 | #define get_byte_2 lsr #16 |
| 38 | #define get_byte_3 lsr #24 |
| 39 | #define put_byte_0 lsl #0 |
| 40 | #define put_byte_1 lsl #8 |
| 41 | #define put_byte_2 lsl #16 |
| 42 | #define put_byte_3 lsl #24 |
| 43 | #else |
Victor Kamensky | 8032ebe | 2014-02-25 08:41:09 +0100 | [diff] [blame] | 44 | #define lspull lsl |
| 45 | #define lspush lsr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define get_byte_0 lsr #24 |
| 47 | #define get_byte_1 lsr #16 |
| 48 | #define get_byte_2 lsr #8 |
| 49 | #define get_byte_3 lsl #0 |
| 50 | #define put_byte_0 lsl #24 |
| 51 | #define put_byte_1 lsl #16 |
| 52 | #define put_byte_2 lsl #8 |
| 53 | #define put_byte_3 lsl #0 |
| 54 | #endif |
| 55 | |
Ben Dooks | 87d7e2f | 2013-02-12 18:59:57 +0000 | [diff] [blame] | 56 | /* Select code for any configuration running in BE8 mode */ |
| 57 | #ifdef CONFIG_CPU_ENDIAN_BE8 |
| 58 | #define ARM_BE8(code...) code |
| 59 | #else |
| 60 | #define ARM_BE8(code...) |
| 61 | #endif |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* |
| 64 | * Data preload for architectures that support it |
| 65 | */ |
| 66 | #if __LINUX_ARM_ARCH__ >= 5 |
| 67 | #define PLD(code...) code |
| 68 | #else |
| 69 | #define PLD(code...) |
| 70 | #endif |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | /* |
Nicolas Pitre | 2239aff | 2008-03-31 12:38:31 -0400 | [diff] [blame] | 73 | * This can be used to enable code to cacheline align the destination |
| 74 | * pointer when bulk writing to memory. Experiments on StrongARM and |
| 75 | * XScale didn't show this a worthwhile thing to do when the cache is not |
| 76 | * set to write-allocate (this would need further testing on XScale when WA |
| 77 | * is used). |
| 78 | * |
| 79 | * On Feroceon there is much to gain however, regardless of cache mode. |
| 80 | */ |
| 81 | #ifdef CONFIG_CPU_FEROCEON |
| 82 | #define CALGN(code...) code |
| 83 | #else |
| 84 | #define CALGN(code...) |
| 85 | #endif |
| 86 | |
| 87 | /* |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 88 | * Enable and disable interrupts |
| 89 | */ |
| 90 | #if __LINUX_ARM_ARCH__ >= 6 |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 91 | .macro disable_irq_notrace |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 92 | cpsid i |
| 93 | .endm |
| 94 | |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 95 | .macro enable_irq_notrace |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 96 | cpsie i |
| 97 | .endm |
| 98 | #else |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 99 | .macro disable_irq_notrace |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 100 | msr cpsr_c, #PSR_I_BIT | SVC_MODE |
| 101 | .endm |
| 102 | |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 103 | .macro enable_irq_notrace |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 104 | msr cpsr_c, #SVC_MODE |
| 105 | .endm |
| 106 | #endif |
| 107 | |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 108 | .macro asm_trace_hardirqs_off |
| 109 | #if defined(CONFIG_TRACE_IRQFLAGS) |
| 110 | stmdb sp!, {r0-r3, ip, lr} |
| 111 | bl trace_hardirqs_off |
| 112 | ldmia sp!, {r0-r3, ip, lr} |
| 113 | #endif |
| 114 | .endm |
| 115 | |
| 116 | .macro asm_trace_hardirqs_on_cond, cond |
| 117 | #if defined(CONFIG_TRACE_IRQFLAGS) |
| 118 | /* |
| 119 | * actually the registers should be pushed and pop'd conditionally, but |
| 120 | * after bl the flags are certainly clobbered |
| 121 | */ |
| 122 | stmdb sp!, {r0-r3, ip, lr} |
| 123 | bl\cond trace_hardirqs_on |
| 124 | ldmia sp!, {r0-r3, ip, lr} |
| 125 | #endif |
| 126 | .endm |
| 127 | |
| 128 | .macro asm_trace_hardirqs_on |
| 129 | asm_trace_hardirqs_on_cond al |
| 130 | .endm |
| 131 | |
| 132 | .macro disable_irq |
| 133 | disable_irq_notrace |
| 134 | asm_trace_hardirqs_off |
| 135 | .endm |
| 136 | |
| 137 | .macro enable_irq |
| 138 | asm_trace_hardirqs_on |
| 139 | enable_irq_notrace |
| 140 | .endm |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 141 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | * Save the current IRQ state and disable IRQs. Note that this macro |
| 143 | * assumes FIQs are enabled, and that the processor is in SVC mode. |
| 144 | */ |
Russell King | 59d1ff3 | 2005-11-09 15:04:22 +0000 | [diff] [blame] | 145 | .macro save_and_disable_irqs, oldcpsr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | mrs \oldcpsr, cpsr |
Russell King | 9c42954 | 2006-03-23 16:59:37 +0000 | [diff] [blame] | 147 | disable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | .endm |
| 149 | |
Rabin Vincent | 8e43a90 | 2012-02-15 16:01:42 +0100 | [diff] [blame] | 150 | .macro save_and_disable_irqs_notrace, oldcpsr |
| 151 | mrs \oldcpsr, cpsr |
| 152 | disable_irq_notrace |
| 153 | .endm |
| 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /* |
| 156 | * Restore interrupt state previously stored in a register. We don't |
| 157 | * guarantee that this will preserve the flags. |
| 158 | */ |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 159 | .macro restore_irqs_notrace, oldcpsr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | msr cpsr_c, \oldcpsr |
| 161 | .endm |
| 162 | |
Uwe Kleine-König | 0d928b0 | 2009-08-13 20:38:17 +0200 | [diff] [blame] | 163 | .macro restore_irqs, oldcpsr |
| 164 | tst \oldcpsr, #PSR_I_BIT |
| 165 | asm_trace_hardirqs_on_cond eq |
| 166 | restore_irqs_notrace \oldcpsr |
| 167 | .endm |
| 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | #define USER(x...) \ |
| 170 | 9999: x; \ |
Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 171 | .pushsection __ex_table,"a"; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | .align 3; \ |
| 173 | .long 9999b,9001f; \ |
Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 174 | .popsection |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 175 | |
Russell King | f00ec48 | 2010-09-04 10:47:48 +0100 | [diff] [blame] | 176 | #ifdef CONFIG_SMP |
| 177 | #define ALT_SMP(instr...) \ |
| 178 | 9998: instr |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 179 | /* |
| 180 | * Note: if you get assembler errors from ALT_UP() when building with |
| 181 | * CONFIG_THUMB2_KERNEL, you almost certainly need to use |
| 182 | * ALT_SMP( W(instr) ... ) |
| 183 | */ |
Russell King | f00ec48 | 2010-09-04 10:47:48 +0100 | [diff] [blame] | 184 | #define ALT_UP(instr...) \ |
| 185 | .pushsection ".alt.smp.init", "a" ;\ |
| 186 | .long 9998b ;\ |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 187 | 9997: instr ;\ |
| 188 | .if . - 9997b != 4 ;\ |
| 189 | .error "ALT_UP() content must assemble to exactly 4 bytes";\ |
| 190 | .endif ;\ |
Russell King | f00ec48 | 2010-09-04 10:47:48 +0100 | [diff] [blame] | 191 | .popsection |
| 192 | #define ALT_UP_B(label) \ |
| 193 | .equ up_b_offset, label - 9998b ;\ |
| 194 | .pushsection ".alt.smp.init", "a" ;\ |
| 195 | .long 9998b ;\ |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 196 | W(b) . + up_b_offset ;\ |
Russell King | f00ec48 | 2010-09-04 10:47:48 +0100 | [diff] [blame] | 197 | .popsection |
| 198 | #else |
| 199 | #define ALT_SMP(instr...) |
| 200 | #define ALT_UP(instr...) instr |
| 201 | #define ALT_UP_B(label) b label |
| 202 | #endif |
| 203 | |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 204 | /* |
Will Deacon | d675d0b | 2011-11-22 17:30:28 +0000 | [diff] [blame] | 205 | * Instruction barrier |
| 206 | */ |
| 207 | .macro instr_sync |
| 208 | #if __LINUX_ARM_ARCH__ >= 7 |
| 209 | isb |
| 210 | #elif __LINUX_ARM_ARCH__ == 6 |
| 211 | mcr p15, 0, r0, c7, c5, 4 |
| 212 | #endif |
| 213 | .endm |
| 214 | |
| 215 | /* |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 216 | * SMP data memory barrier |
| 217 | */ |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 218 | .macro smp_dmb mode |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 219 | #ifdef CONFIG_SMP |
| 220 | #if __LINUX_ARM_ARCH__ >= 7 |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 221 | .ifeqs "\mode","arm" |
Will Deacon | 0db5306 | 2013-05-10 18:07:19 +0100 | [diff] [blame] | 222 | ALT_SMP(dmb ish) |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 223 | .else |
Will Deacon | 0db5306 | 2013-05-10 18:07:19 +0100 | [diff] [blame] | 224 | ALT_SMP(W(dmb) ish) |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 225 | .endif |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 226 | #elif __LINUX_ARM_ARCH__ == 6 |
Russell King | f00ec48 | 2010-09-04 10:47:48 +0100 | [diff] [blame] | 227 | ALT_SMP(mcr p15, 0, r0, c7, c10, 5) @ dmb |
| 228 | #else |
| 229 | #error Incompatible SMP platform |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 230 | #endif |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 231 | .ifeqs "\mode","arm" |
Russell King | f00ec48 | 2010-09-04 10:47:48 +0100 | [diff] [blame] | 232 | ALT_UP(nop) |
Dave Martin | ed3768a | 2010-12-01 15:39:23 +0100 | [diff] [blame] | 233 | .else |
| 234 | ALT_UP(W(nop)) |
| 235 | .endif |
Russell King | bac4e96 | 2009-05-25 20:58:00 +0100 | [diff] [blame] | 236 | #endif |
| 237 | .endm |
Catalin Marinas | b86040a | 2009-07-24 12:32:54 +0100 | [diff] [blame] | 238 | |
| 239 | #ifdef CONFIG_THUMB2_KERNEL |
| 240 | .macro setmode, mode, reg |
| 241 | mov \reg, #\mode |
| 242 | msr cpsr_c, \reg |
| 243 | .endm |
| 244 | #else |
| 245 | .macro setmode, mode, reg |
| 246 | msr cpsr_c, #\mode |
| 247 | .endm |
| 248 | #endif |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 249 | |
| 250 | /* |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 251 | * Helper macro to enter SVC mode cleanly and mask interrupts. reg is |
| 252 | * a scratch register for the macro to overwrite. |
| 253 | * |
| 254 | * This macro is intended for forcing the CPU into SVC mode at boot time. |
| 255 | * you cannot return to the original mode. |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 256 | */ |
| 257 | .macro safe_svcmode_maskall reg:req |
Dave Martin | 1ecec69 | 2012-12-10 18:35:22 +0100 | [diff] [blame] | 258 | #if __LINUX_ARM_ARCH__ >= 6 |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 259 | mrs \reg , cpsr |
Russell King | 8e9c24a | 2012-12-03 15:39:43 +0000 | [diff] [blame] | 260 | eor \reg, \reg, #HYP_MODE |
| 261 | tst \reg, #MODE_MASK |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 262 | bic \reg , \reg , #MODE_MASK |
Russell King | 8e9c24a | 2012-12-03 15:39:43 +0000 | [diff] [blame] | 263 | orr \reg , \reg , #PSR_I_BIT | PSR_F_BIT | SVC_MODE |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 264 | THUMB( orr \reg , \reg , #PSR_T_BIT ) |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 265 | bne 1f |
Marc Zyngier | 2a552d5 | 2012-10-06 17:03:17 +0100 | [diff] [blame] | 266 | orr \reg, \reg, #PSR_A_BIT |
| 267 | adr lr, BSYM(2f) |
| 268 | msr spsr_cxsf, \reg |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 269 | __MSR_ELR_HYP(14) |
| 270 | __ERET |
Marc Zyngier | 2a552d5 | 2012-10-06 17:03:17 +0100 | [diff] [blame] | 271 | 1: msr cpsr_c, \reg |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 272 | 2: |
Dave Martin | 1ecec69 | 2012-12-10 18:35:22 +0100 | [diff] [blame] | 273 | #else |
| 274 | /* |
| 275 | * workaround for possibly broken pre-v6 hardware |
| 276 | * (akita, Sharp Zaurus C-1000, PXA270-based) |
| 277 | */ |
| 278 | setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, \reg |
| 279 | #endif |
Dave Martin | 80c59da | 2012-02-09 08:47:17 -0800 | [diff] [blame] | 280 | .endm |
| 281 | |
| 282 | /* |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 283 | * STRT/LDRT access macros with ARM and Thumb-2 variants |
| 284 | */ |
| 285 | #ifdef CONFIG_THUMB2_KERNEL |
| 286 | |
Catalin Marinas | 4e7682d | 2012-01-25 11:38:13 +0100 | [diff] [blame] | 287 | .macro usraccoff, instr, reg, ptr, inc, off, cond, abort, t=TUSER() |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 288 | 9999: |
| 289 | .if \inc == 1 |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 290 | \instr\cond\()b\()\t\().w \reg, [\ptr, #\off] |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 291 | .elseif \inc == 4 |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 292 | \instr\cond\()\t\().w \reg, [\ptr, #\off] |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 293 | .else |
| 294 | .error "Unsupported inc macro argument" |
| 295 | .endif |
| 296 | |
Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 297 | .pushsection __ex_table,"a" |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 298 | .align 3 |
| 299 | .long 9999b, \abort |
Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 300 | .popsection |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 301 | .endm |
| 302 | |
| 303 | .macro usracc, instr, reg, ptr, inc, cond, rept, abort |
| 304 | @ explicit IT instruction needed because of the label |
| 305 | @ introduced by the USER macro |
| 306 | .ifnc \cond,al |
| 307 | .if \rept == 1 |
| 308 | itt \cond |
| 309 | .elseif \rept == 2 |
| 310 | ittt \cond |
| 311 | .else |
| 312 | .error "Unsupported rept macro argument" |
| 313 | .endif |
| 314 | .endif |
| 315 | |
| 316 | @ Slightly optimised to avoid incrementing the pointer twice |
| 317 | usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort |
| 318 | .if \rept == 2 |
Will Deacon | 1142b71 | 2010-11-19 13:18:31 +0100 | [diff] [blame] | 319 | usraccoff \instr, \reg, \ptr, \inc, \inc, \cond, \abort |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 320 | .endif |
| 321 | |
| 322 | add\cond \ptr, #\rept * \inc |
| 323 | .endm |
| 324 | |
| 325 | #else /* !CONFIG_THUMB2_KERNEL */ |
| 326 | |
Catalin Marinas | 4e7682d | 2012-01-25 11:38:13 +0100 | [diff] [blame] | 327 | .macro usracc, instr, reg, ptr, inc, cond, rept, abort, t=TUSER() |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 328 | .rept \rept |
| 329 | 9999: |
| 330 | .if \inc == 1 |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 331 | \instr\cond\()b\()\t \reg, [\ptr], #\inc |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 332 | .elseif \inc == 4 |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 333 | \instr\cond\()\t \reg, [\ptr], #\inc |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 334 | .else |
| 335 | .error "Unsupported inc macro argument" |
| 336 | .endif |
| 337 | |
Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 338 | .pushsection __ex_table,"a" |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 339 | .align 3 |
| 340 | .long 9999b, \abort |
Russell King | 4260415 | 2010-04-19 10:15:03 +0100 | [diff] [blame] | 341 | .popsection |
Catalin Marinas | 8b59278 | 2009-07-24 12:32:57 +0100 | [diff] [blame] | 342 | .endr |
| 343 | .endm |
| 344 | |
| 345 | #endif /* CONFIG_THUMB2_KERNEL */ |
| 346 | |
| 347 | .macro strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f |
| 348 | usracc str, \reg, \ptr, \inc, \cond, \rept, \abort |
| 349 | .endm |
| 350 | |
| 351 | .macro ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f |
| 352 | usracc ldr, \reg, \ptr, \inc, \cond, \rept, \abort |
| 353 | .endm |
Dave Martin | 8f51965 | 2011-06-23 17:10:05 +0100 | [diff] [blame] | 354 | |
| 355 | /* Utility macro for declaring string literals */ |
| 356 | .macro string name:req, string |
| 357 | .type \name , #object |
| 358 | \name: |
| 359 | .asciz "\string" |
| 360 | .size \name , . - \name |
| 361 | .endm |
| 362 | |
Russell King | 8404663 | 2012-09-07 18:22:28 +0100 | [diff] [blame] | 363 | .macro check_uaccess, addr:req, size:req, limit:req, tmp:req, bad:req |
| 364 | #ifndef CONFIG_CPU_USE_DOMAINS |
| 365 | adds \tmp, \addr, #\size - 1 |
| 366 | sbcccs \tmp, \tmp, \limit |
| 367 | bcs \bad |
| 368 | #endif |
| 369 | .endm |
| 370 | |
Magnus Damm | 2bc58a6 | 2011-06-13 06:46:44 +0100 | [diff] [blame] | 371 | #endif /* __ASM_ASSEMBLER_H__ */ |