misc_helpers.S 5.94 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <arch_helpers.h>
32
#include <runtime_svc.h>
33
#include <asm_macros.S>
34

35
36
37
38
39
40
41
42
43
	.globl	enable_irq
	.globl	disable_irq

	.globl	enable_fiq
	.globl	disable_fiq

	.globl	enable_serror
	.globl	disable_serror

44
45
46
	.globl	enable_debug_exceptions
	.globl	disable_debug_exceptions

47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
	.globl	read_daif
	.globl	write_daif

	.globl	read_spsr
	.globl	read_spsr_el1
	.globl	read_spsr_el2
	.globl	read_spsr_el3

	.globl	write_spsr
	.globl	write_spsr_el1
	.globl	write_spsr_el2
	.globl	write_spsr_el3

	.globl	read_elr
	.globl	read_elr_el1
	.globl	read_elr_el2
	.globl	read_elr_el3

	.globl	write_elr
	.globl	write_elr_el1
	.globl	write_elr_el2
	.globl	write_elr_el3

	.globl	get_afflvl_shift
	.globl	mpidr_mask_lower_afflvls
	.globl	dsb
	.globl	isb
	.globl	sev
	.globl	wfe
	.globl	wfi
	.globl	eret
	.globl	smc

80
81
	.globl	zeromem16
	.globl	memcpy16
82
83


84
func get_afflvl_shift
85
86
87
88
89
90
	cmp	x0, #3
	cinc	x0, x0, eq
	mov	x1, #MPIDR_AFFLVL_SHIFT
	lsl	x0, x0, x1
	ret

91
func mpidr_mask_lower_afflvls
92
93
94
95
96
97
98
99
100
101
102
103
	cmp	x1, #3
	cinc	x1, x1, eq
	mov	x2, #MPIDR_AFFLVL_SHIFT
	lsl	x2, x1, x2
	lsr	x0, x0, x2
	lsl	x0, x0, x2
	ret

	/* -----------------------------------------------------
	 * Asynchronous exception manipulation accessors
	 * -----------------------------------------------------
	 */
104
func enable_irq
105
106
107
108
	msr	daifclr, #DAIF_IRQ_BIT
	ret


109
func enable_fiq
110
111
112
113
	msr	daifclr, #DAIF_FIQ_BIT
	ret


114
func enable_serror
115
116
117
118
	msr	daifclr, #DAIF_ABT_BIT
	ret


119
func enable_debug_exceptions
120
121
122
123
	msr	daifclr, #DAIF_DBG_BIT
	ret


124
func disable_irq
125
126
127
128
	msr	daifset, #DAIF_IRQ_BIT
	ret


129
func disable_fiq
130
131
132
133
	msr	daifset, #DAIF_FIQ_BIT
	ret


134
func disable_serror
135
136
137
138
	msr	daifset, #DAIF_ABT_BIT
	ret


139
func disable_debug_exceptions
140
141
142
143
	msr	daifset, #DAIF_DBG_BIT
	ret


144
func read_daif
145
146
147
148
	mrs	x0, daif
	ret


149
func write_daif
150
151
152
153
	msr	daif, x0
	ret


154
func read_spsr
155
156
157
158
159
160
161
162
163
	mrs	x0, CurrentEl
	cmp	x0, #(MODE_EL1 << MODE_EL_SHIFT)
	b.eq	read_spsr_el1
	cmp	x0, #(MODE_EL2 << MODE_EL_SHIFT)
	b.eq	read_spsr_el2
	cmp	x0, #(MODE_EL3 << MODE_EL_SHIFT)
	b.eq	read_spsr_el3


164
func read_spsr_el1
165
166
167
168
	mrs	x0, spsr_el1
	ret


169
func read_spsr_el2
170
171
172
173
	mrs	x0, spsr_el2
	ret


174
func read_spsr_el3
175
176
177
178
	mrs	x0, spsr_el3
	ret


179
func write_spsr
180
181
182
183
184
185
186
187
188
	mrs	x1, CurrentEl
	cmp	x1, #(MODE_EL1 << MODE_EL_SHIFT)
	b.eq	write_spsr_el1
	cmp	x1, #(MODE_EL2 << MODE_EL_SHIFT)
	b.eq	write_spsr_el2
	cmp	x1, #(MODE_EL3 << MODE_EL_SHIFT)
	b.eq	write_spsr_el3


189
func write_spsr_el1
190
191
192
193
194
	msr	spsr_el1, x0
	isb
	ret


195
func write_spsr_el2
196
197
198
199
200
	msr	spsr_el2, x0
	isb
	ret


201
func write_spsr_el3
202
203
204
205
206
	msr	spsr_el3, x0
	isb
	ret


207
func read_elr
208
209
210
211
212
213
214
215
216
	mrs	x0, CurrentEl
	cmp	x0, #(MODE_EL1 << MODE_EL_SHIFT)
	b.eq	read_elr_el1
	cmp	x0, #(MODE_EL2 << MODE_EL_SHIFT)
	b.eq	read_elr_el2
	cmp	x0, #(MODE_EL3 << MODE_EL_SHIFT)
	b.eq	read_elr_el3


217
func read_elr_el1
218
219
220
221
	mrs	x0, elr_el1
	ret


222
func read_elr_el2
223
224
225
226
	mrs	x0, elr_el2
	ret


227
func read_elr_el3
228
229
230
231
	mrs	x0, elr_el3
	ret


232
func write_elr
233
234
235
236
237
238
239
240
241
	mrs	x1, CurrentEl
	cmp	x1, #(MODE_EL1 << MODE_EL_SHIFT)
	b.eq	write_elr_el1
	cmp	x1, #(MODE_EL2 << MODE_EL_SHIFT)
	b.eq	write_elr_el2
	cmp	x1, #(MODE_EL3 << MODE_EL_SHIFT)
	b.eq	write_elr_el3


242
func write_elr_el1
243
244
245
246
247
	msr	elr_el1, x0
	isb
	ret


248
func write_elr_el2
249
250
251
252
253
	msr	elr_el2, x0
	isb
	ret


254
func write_elr_el3
255
256
257
258
259
	msr	elr_el3, x0
	isb
	ret


260
func dsb
261
262
263
264
	dsb	sy
	ret


265
func isb
266
267
268
269
	isb
	ret


270
func sev
271
272
273
274
	sev
	ret


275
func wfe
276
277
278
279
	wfe
	ret


280
func wfi
281
282
283
284
	wfi
	ret


285
func eret
286
287
288
	eret


289
func smc
290
	smc	#0
291
292
293
294
295
296
297
298

/* -----------------------------------------------------------------------
 * void zeromem16(void *mem, unsigned int length);
 *
 * Initialise a memory region to 0.
 * The memory address must be 16-byte aligned.
 * -----------------------------------------------------------------------
 */
299
func zeromem16
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
	add	x2, x0, x1
/* zero 16 bytes at a time */
z_loop16:
	sub	x3, x2, x0
	cmp	x3, #16
	b.lt	z_loop1
	stp	xzr, xzr, [x0], #16
	b	z_loop16
/* zero byte per byte */
z_loop1:
	cmp	x0, x2
	b.eq	z_end
	strb	wzr, [x0], #1
	b	z_loop1
z_end:	ret


/* --------------------------------------------------------------------------
 * void memcpy16(void *dest, const void *src, unsigned int length)
 *
 * Copy length bytes from memory area src to memory area dest.
 * The memory areas should not overlap.
 * Destination and source addresses must be 16-byte aligned.
 * --------------------------------------------------------------------------
 */
325
func memcpy16
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/* copy 16 bytes at a time */
m_loop16:
	cmp	x2, #16
	b.lt	m_loop1
	ldp	x3, x4, [x1], #16
	stp	x3, x4, [x0], #16
	sub	x2, x2, #16
	b	m_loop16
/* copy byte per byte */
m_loop1:
	cbz	x2, m_end
	ldrb	w3, [x1], #1
	strb	w3, [x0], #1
	subs	x2, x2, #1
	b.ne	m_loop1
m_end:	ret