xref: /openbmc/linux/arch/arm/include/asm/assembler.h (revision 8b592783)
1 /*
2  *  arch/arm/include/asm/assembler.h
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  */
16 #ifndef __ASSEMBLY__
17 #error "Only include this from assembly code"
18 #endif
19 
20 #include <asm/ptrace.h>
21 
22 /*
23  * Endian independent macros for shifting bytes within registers.
24  */
25 #ifndef __ARMEB__
26 #define pull            lsr
27 #define push            lsl
28 #define get_byte_0      lsl #0
29 #define get_byte_1	lsr #8
30 #define get_byte_2	lsr #16
31 #define get_byte_3	lsr #24
32 #define put_byte_0      lsl #0
33 #define put_byte_1	lsl #8
34 #define put_byte_2	lsl #16
35 #define put_byte_3	lsl #24
36 #else
37 #define pull            lsl
38 #define push            lsr
39 #define get_byte_0	lsr #24
40 #define get_byte_1	lsr #16
41 #define get_byte_2	lsr #8
42 #define get_byte_3      lsl #0
43 #define put_byte_0	lsl #24
44 #define put_byte_1	lsl #16
45 #define put_byte_2	lsl #8
46 #define put_byte_3      lsl #0
47 #endif
48 
49 /*
50  * Data preload for architectures that support it
51  */
52 #if __LINUX_ARM_ARCH__ >= 5
53 #define PLD(code...)	code
54 #else
55 #define PLD(code...)
56 #endif
57 
58 /*
59  * This can be used to enable code to cacheline align the destination
60  * pointer when bulk writing to memory.  Experiments on StrongARM and
61  * XScale didn't show this a worthwhile thing to do when the cache is not
62  * set to write-allocate (this would need further testing on XScale when WA
63  * is used).
64  *
65  * On Feroceon there is much to gain however, regardless of cache mode.
66  */
67 #ifdef CONFIG_CPU_FEROCEON
68 #define CALGN(code...) code
69 #else
70 #define CALGN(code...)
71 #endif
72 
73 /*
74  * Enable and disable interrupts
75  */
76 #if __LINUX_ARM_ARCH__ >= 6
77 	.macro	disable_irq
78 	cpsid	i
79 	.endm
80 
81 	.macro	enable_irq
82 	cpsie	i
83 	.endm
84 #else
85 	.macro	disable_irq
86 	msr	cpsr_c, #PSR_I_BIT | SVC_MODE
87 	.endm
88 
89 	.macro	enable_irq
90 	msr	cpsr_c, #SVC_MODE
91 	.endm
92 #endif
93 
94 /*
95  * Save the current IRQ state and disable IRQs.  Note that this macro
96  * assumes FIQs are enabled, and that the processor is in SVC mode.
97  */
98 	.macro	save_and_disable_irqs, oldcpsr
99 	mrs	\oldcpsr, cpsr
100 	disable_irq
101 	.endm
102 
103 /*
104  * Restore interrupt state previously stored in a register.  We don't
105  * guarantee that this will preserve the flags.
106  */
107 	.macro	restore_irqs, oldcpsr
108 	msr	cpsr_c, \oldcpsr
109 	.endm
110 
111 #define USER(x...)				\
112 9999:	x;					\
113 	.section __ex_table,"a";		\
114 	.align	3;				\
115 	.long	9999b,9001f;			\
116 	.previous
117 
118 /*
119  * SMP data memory barrier
120  */
121 	.macro	smp_dmb
122 #ifdef CONFIG_SMP
123 #if __LINUX_ARM_ARCH__ >= 7
124 	dmb
125 #elif __LINUX_ARM_ARCH__ == 6
126 	mcr	p15, 0, r0, c7, c10, 5	@ dmb
127 #endif
128 #endif
129 	.endm
130 
131 #ifdef CONFIG_THUMB2_KERNEL
132 	.macro	setmode, mode, reg
133 	mov	\reg, #\mode
134 	msr	cpsr_c, \reg
135 	.endm
136 #else
137 	.macro	setmode, mode, reg
138 	msr	cpsr_c, #\mode
139 	.endm
140 #endif
141 
142 /*
143  * STRT/LDRT access macros with ARM and Thumb-2 variants
144  */
145 #ifdef CONFIG_THUMB2_KERNEL
146 
147 	.macro	usraccoff, instr, reg, ptr, inc, off, cond, abort
148 9999:
149 	.if	\inc == 1
150 	\instr\cond\()bt \reg, [\ptr, #\off]
151 	.elseif	\inc == 4
152 	\instr\cond\()t \reg, [\ptr, #\off]
153 	.else
154 	.error	"Unsupported inc macro argument"
155 	.endif
156 
157 	.section __ex_table,"a"
158 	.align	3
159 	.long	9999b, \abort
160 	.previous
161 	.endm
162 
163 	.macro	usracc, instr, reg, ptr, inc, cond, rept, abort
164 	@ explicit IT instruction needed because of the label
165 	@ introduced by the USER macro
166 	.ifnc	\cond,al
167 	.if	\rept == 1
168 	itt	\cond
169 	.elseif	\rept == 2
170 	ittt	\cond
171 	.else
172 	.error	"Unsupported rept macro argument"
173 	.endif
174 	.endif
175 
176 	@ Slightly optimised to avoid incrementing the pointer twice
177 	usraccoff \instr, \reg, \ptr, \inc, 0, \cond, \abort
178 	.if	\rept == 2
179 	usraccoff \instr, \reg, \ptr, \inc, 4, \cond, \abort
180 	.endif
181 
182 	add\cond \ptr, #\rept * \inc
183 	.endm
184 
185 #else	/* !CONFIG_THUMB2_KERNEL */
186 
187 	.macro	usracc, instr, reg, ptr, inc, cond, rept, abort
188 	.rept	\rept
189 9999:
190 	.if	\inc == 1
191 	\instr\cond\()bt \reg, [\ptr], #\inc
192 	.elseif	\inc == 4
193 	\instr\cond\()t \reg, [\ptr], #\inc
194 	.else
195 	.error	"Unsupported inc macro argument"
196 	.endif
197 
198 	.section __ex_table,"a"
199 	.align	3
200 	.long	9999b, \abort
201 	.previous
202 	.endr
203 	.endm
204 
205 #endif	/* CONFIG_THUMB2_KERNEL */
206 
207 	.macro	strusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
208 	usracc	str, \reg, \ptr, \inc, \cond, \rept, \abort
209 	.endm
210 
211 	.macro	ldrusr, reg, ptr, inc, cond=al, rept=1, abort=9001f
212 	usracc	ldr, \reg, \ptr, \inc, \cond, \rept, \abort
213 	.endm
214