]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Drivers/CpuDxe/AArch64/ExceptionSupport.S
ARM Packages: use GCC_ASM_EXPORT to export functions
[mirror_edk2.git] / ArmPkg / Drivers / CpuDxe / AArch64 / ExceptionSupport.S
1 //
2 // Copyright (c) 2011 - 2013 ARM LTD. All rights reserved.<BR>
3 // Portion of Copyright (c) 2014 NVIDIA Corporation. All rights reserved.<BR>
4 //
5 // This program and the accompanying materials
6 // are licensed and made available under the terms and conditions of the BSD License
7 // which accompanies this distribution. The full text of the license may be found at
8 // http://opensource.org/licenses/bsd-license.php
9 //
10 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 //
13 //------------------------------------------------------------------------------
14
15 #include <Library/PcdLib.h>
16 #include <AsmMacroIoLibV8.h>
17
18 /*
19 This is the stack constructed by the exception handler (low address to high address).
20 X0 to FAR makes up the EFI_SYSTEM_CONTEXT for AArch64.
21
22 UINT64 X0; 0x000
23 UINT64 X1; 0x008
24 UINT64 X2; 0x010
25 UINT64 X3; 0x018
26 UINT64 X4; 0x020
27 UINT64 X5; 0x028
28 UINT64 X6; 0x030
29 UINT64 X7; 0x038
30 UINT64 X8; 0x040
31 UINT64 X9; 0x048
32 UINT64 X10; 0x050
33 UINT64 X11; 0x058
34 UINT64 X12; 0x060
35 UINT64 X13; 0x068
36 UINT64 X14; 0x070
37 UINT64 X15; 0x078
38 UINT64 X16; 0x080
39 UINT64 X17; 0x088
40 UINT64 X18; 0x090
41 UINT64 X19; 0x098
42 UINT64 X20; 0x0a0
43 UINT64 X21; 0x0a8
44 UINT64 X22; 0x0b0
45 UINT64 X23; 0x0b8
46 UINT64 X24; 0x0c0
47 UINT64 X25; 0x0c8
48 UINT64 X26; 0x0d0
49 UINT64 X27; 0x0d8
50 UINT64 X28; 0x0e0
51 UINT64 FP; 0x0e8 // x29 - Frame Pointer
52 UINT64 LR; 0x0f0 // x30 - Link Register
53 UINT64 SP; 0x0f8 // x31 - Stack Pointer
54
55 // FP/SIMD Registers. 128bit if used as Q-regs.
56 UINT64 V0[2]; 0x100
57 UINT64 V1[2]; 0x110
58 UINT64 V2[2]; 0x120
59 UINT64 V3[2]; 0x130
60 UINT64 V4[2]; 0x140
61 UINT64 V5[2]; 0x150
62 UINT64 V6[2]; 0x160
63 UINT64 V7[2]; 0x170
64 UINT64 V8[2]; 0x180
65 UINT64 V9[2]; 0x190
66 UINT64 V10[2]; 0x1a0
67 UINT64 V11[2]; 0x1b0
68 UINT64 V12[2]; 0x1c0
69 UINT64 V13[2]; 0x1d0
70 UINT64 V14[2]; 0x1e0
71 UINT64 V15[2]; 0x1f0
72 UINT64 V16[2]; 0x200
73 UINT64 V17[2]; 0x210
74 UINT64 V18[2]; 0x220
75 UINT64 V19[2]; 0x230
76 UINT64 V20[2]; 0x240
77 UINT64 V21[2]; 0x250
78 UINT64 V22[2]; 0x260
79 UINT64 V23[2]; 0x270
80 UINT64 V24[2]; 0x280
81 UINT64 V25[2]; 0x290
82 UINT64 V26[2]; 0x2a0
83 UINT64 V27[2]; 0x2b0
84 UINT64 V28[2]; 0x2c0
85 UINT64 V29[2]; 0x2d0
86 UINT64 V30[2]; 0x2e0
87 UINT64 V31[2]; 0x2f0
88
89 // System Context
90 UINT64 ELR; 0x300 // Exception Link Register
91 UINT64 SPSR; 0x308 // Saved Processor Status Register
92 UINT64 FPSR; 0x310 // Floating Point Status Register
93 UINT64 ESR; 0x318 // EL1 Fault Address Register
94 UINT64 FAR; 0x320 // EL1 Exception syndrome register
95 UINT64 Padding;0x328 // Required for stack alignment
96 */
97
98 GCC_ASM_EXPORT(ExceptionHandlersStart)
99 GCC_ASM_EXPORT(ExceptionHandlersEnd)
100 GCC_ASM_EXPORT(CommonExceptionEntry)
101 GCC_ASM_EXPORT(AsmCommonExceptionEntry)
102 GCC_ASM_EXPORT(CommonCExceptionHandler)
103
104 .text
105 .align 11
106
107 #define GP_CONTEXT_SIZE (32 * 8)
108 #define FP_CONTEXT_SIZE (32 * 16)
109 #define SYS_CONTEXT_SIZE ( 6 * 8) // 5 SYS regs + Alignment requirement (ie: the stack must be aligned on 0x10)
110
111 // Cannot str x31 directly
112 #define ALL_GP_REGS \
113 REG_PAIR (x0, x1, 0x000, GP_CONTEXT_SIZE); \
114 REG_PAIR (x2, x3, 0x010, GP_CONTEXT_SIZE); \
115 REG_PAIR (x4, x5, 0x020, GP_CONTEXT_SIZE); \
116 REG_PAIR (x6, x7, 0x030, GP_CONTEXT_SIZE); \
117 REG_PAIR (x8, x9, 0x040, GP_CONTEXT_SIZE); \
118 REG_PAIR (x10, x11, 0x050, GP_CONTEXT_SIZE); \
119 REG_PAIR (x12, x13, 0x060, GP_CONTEXT_SIZE); \
120 REG_PAIR (x14, x15, 0x070, GP_CONTEXT_SIZE); \
121 REG_PAIR (x16, x17, 0x080, GP_CONTEXT_SIZE); \
122 REG_PAIR (x18, x19, 0x090, GP_CONTEXT_SIZE); \
123 REG_PAIR (x20, x21, 0x0a0, GP_CONTEXT_SIZE); \
124 REG_PAIR (x22, x23, 0x0b0, GP_CONTEXT_SIZE); \
125 REG_PAIR (x24, x25, 0x0c0, GP_CONTEXT_SIZE); \
126 REG_PAIR (x26, x27, 0x0d0, GP_CONTEXT_SIZE); \
127 REG_PAIR (x28, x29, 0x0e0, GP_CONTEXT_SIZE); \
128 REG_ONE (x30, 0x0f0, GP_CONTEXT_SIZE);
129
130 // In order to save the SP we need to put it somwhere else first.
131 // STR only works with XZR/WZR directly
132 #define SAVE_SP \
133 add x1, sp, FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE; \
134 REG_ONE (x1, 0x0f8, GP_CONTEXT_SIZE);
135
136 #define ALL_FP_REGS \
137 REG_PAIR (q0, q1, 0x000, FP_CONTEXT_SIZE); \
138 REG_PAIR (q2, q3, 0x020, FP_CONTEXT_SIZE); \
139 REG_PAIR (q4, q5, 0x040, FP_CONTEXT_SIZE); \
140 REG_PAIR (q6, q7, 0x060, FP_CONTEXT_SIZE); \
141 REG_PAIR (q8, q9, 0x080, FP_CONTEXT_SIZE); \
142 REG_PAIR (q10, q11, 0x0a0, FP_CONTEXT_SIZE); \
143 REG_PAIR (q12, q13, 0x0c0, FP_CONTEXT_SIZE); \
144 REG_PAIR (q14, q15, 0x0e0, FP_CONTEXT_SIZE); \
145 REG_PAIR (q16, q17, 0x100, FP_CONTEXT_SIZE); \
146 REG_PAIR (q18, q19, 0x120, FP_CONTEXT_SIZE); \
147 REG_PAIR (q20, q21, 0x140, FP_CONTEXT_SIZE); \
148 REG_PAIR (q22, q23, 0x160, FP_CONTEXT_SIZE); \
149 REG_PAIR (q24, q25, 0x180, FP_CONTEXT_SIZE); \
150 REG_PAIR (q26, q27, 0x1a0, FP_CONTEXT_SIZE); \
151 REG_PAIR (q28, q29, 0x1c0, FP_CONTEXT_SIZE); \
152 REG_PAIR (q30, q31, 0x1e0, FP_CONTEXT_SIZE);
153
154 #define ALL_SYS_REGS \
155 REG_PAIR (x1, x2, 0x000, SYS_CONTEXT_SIZE); \
156 REG_PAIR (x3, x4, 0x010, SYS_CONTEXT_SIZE); \
157 REG_ONE (x5, 0x020, SYS_CONTEXT_SIZE);
158
159 //
160 // This code gets copied to the ARM vector table
161 // VectorTableStart - VectorTableEnd gets copied
162 //
163 ASM_PFX(ExceptionHandlersStart):
164
165 //
166 // Current EL with SP0 : 0x0 - 0x180
167 //
168 .align 7
169 ASM_PFX(SynchronousExceptionSP0):
170 b ASM_PFX(SynchronousExceptionEntry)
171
172 .align 7
173 ASM_PFX(IrqSP0):
174 b ASM_PFX(IrqEntry)
175
176 .align 7
177 ASM_PFX(FiqSP0):
178 b ASM_PFX(FiqEntry)
179
180 .align 7
181 ASM_PFX(SErrorSP0):
182 b ASM_PFX(SErrorEntry)
183
184 //
185 // Current EL with SPx: 0x200 - 0x380
186 //
187 .align 7
188 ASM_PFX(SynchronousExceptionSPx):
189 b ASM_PFX(SynchronousExceptionEntry)
190
191 .align 7
192 ASM_PFX(IrqSPx):
193 b ASM_PFX(IrqEntry)
194
195 .align 7
196 ASM_PFX(FiqSPx):
197 b ASM_PFX(FiqEntry)
198
199 .align 7
200 ASM_PFX(SErrorSPx):
201 b ASM_PFX(SErrorEntry)
202
203 //
204 // Lower EL using AArch64 : 0x400 - 0x580
205 //
206 .align 7
207 ASM_PFX(SynchronousExceptionA64):
208 b ASM_PFX(SynchronousExceptionEntry)
209
210 .align 7
211 ASM_PFX(IrqA64):
212 b ASM_PFX(IrqEntry)
213
214 .align 7
215 ASM_PFX(FiqA64):
216 b ASM_PFX(FiqEntry)
217
218 .align 7
219 ASM_PFX(SErrorA64):
220 b ASM_PFX(SErrorEntry)
221
222 //
223 // Lower EL using AArch32 : 0x0 - 0x180
224 //
225 .align 7
226 ASM_PFX(SynchronousExceptionA32):
227 b ASM_PFX(SynchronousExceptionEntry)
228
229 .align 7
230 ASM_PFX(IrqA32):
231 b ASM_PFX(IrqEntry)
232
233 .align 7
234 ASM_PFX(FiqA32):
235 b ASM_PFX(FiqEntry)
236
237 .align 7
238 ASM_PFX(SErrorA32):
239 b ASM_PFX(SErrorEntry)
240
241
242 #undef REG_PAIR
243 #undef REG_ONE
244 #define REG_PAIR(REG1, REG2, OFFSET, CONTEXT_SIZE) stp REG1, REG2, [sp, #(OFFSET-CONTEXT_SIZE)]
245 #define REG_ONE(REG1, OFFSET, CONTEXT_SIZE) str REG1, [sp, #(OFFSET-CONTEXT_SIZE)]
246
247 ASM_PFX(SynchronousExceptionEntry):
248 // Move the stackpointer so we can reach our structure with the str instruction.
249 sub sp, sp, FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
250
251 // Save all the General regs before touching x0 and x1.
252 // This does not save r31(SP) as it is special. We do that later.
253 ALL_GP_REGS
254
255 // Record the tipe of exception that occured.
256 mov x0, #EXCEPT_AARCH64_SYNCHRONOUS_EXCEPTIONS
257
258 // Jump to our general handler to deal with all the common parts and process the exception.
259 ldr x1, ASM_PFX(CommonExceptionEntry)
260 br x1
261
262 ASM_PFX(IrqEntry):
263 sub sp, sp, FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
264 ALL_GP_REGS
265 mov x0, #EXCEPT_AARCH64_IRQ
266 ldr x1, ASM_PFX(CommonExceptionEntry)
267 br x1
268
269 ASM_PFX(FiqEntry):
270 sub sp, sp, FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
271 ALL_GP_REGS
272 mov x0, #EXCEPT_AARCH64_FIQ
273 ldr x1, ASM_PFX(CommonExceptionEntry)
274 br x1
275
276 ASM_PFX(SErrorEntry):
277 sub sp, sp, FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
278 ALL_GP_REGS
279 mov x0, #EXCEPT_AARCH64_SERROR
280 ldr x1, ASM_PFX(CommonExceptionEntry)
281 br x1
282
283
284 //
285 // This gets patched by the C code that patches in the vector table
286 //
287 .align 3
288 ASM_PFX(CommonExceptionEntry):
289 .dword ASM_PFX(AsmCommonExceptionEntry)
290
291 ASM_PFX(ExceptionHandlersEnd):
292
293
294
295 //
296 // This code runs from CpuDxe driver loaded address. It is patched into
297 // CommonExceptionEntry.
298 //
299 ASM_PFX(AsmCommonExceptionEntry):
300 /* NOTE:
301 We have to break up the save code because the immidiate value to be used
302 with the SP is to big to do it all in one step so we need to shuffle the SP
303 along as we go. (we only have 9bits of immediate to work with) */
304
305 // Save the current Stack pointer before we start modifying it.
306 SAVE_SP
307
308 // Preserve the stack pointer we came in with before we modify it
309 EL1_OR_EL2(x1)
310 1:mrs x1, elr_el1 // Exception Link Register
311 mrs x2, spsr_el1 // Saved Processor Status Register 32bit
312 mrs x3, fpsr // Floating point Status Register 32bit
313 mrs x4, esr_el1 // EL1 Exception syndrome register 32bit
314 mrs x5, far_el1 // EL1 Fault Address Register
315 b 3f
316
317 2:mrs x1, elr_el2 // Exception Link Register
318 mrs x2, spsr_el2 // Saved Processor Status Register 32bit
319 mrs x3, fpsr // Floating point Status Register 32bit
320 mrs x4, esr_el2 // EL1 Exception syndrome register 32bit
321 mrs x5, far_el2 // EL1 Fault Address Register
322
323 // Adjust SP to save next set
324 3:add sp, sp, FP_CONTEXT_SIZE
325
326 // Push FP regs to Stack.
327 ALL_FP_REGS
328
329 // Adjust SP to save next set
330 add sp, sp, SYS_CONTEXT_SIZE
331
332 // Save the SYS regs
333 ALL_SYS_REGS
334
335 // Point to top of struct after all regs saved
336 sub sp, sp, GP_CONTEXT_SIZE + FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
337
338 // x0 still holds the exception type.
339 // Set x1 to point to the top of our struct on the Stack
340 mov x1, sp
341
342 // CommonCExceptionHandler (
343 // IN EFI_EXCEPTION_TYPE ExceptionType, R0
344 // IN OUT EFI_SYSTEM_CONTEXT SystemContext R1
345 // )
346
347 // Call the handler as defined above
348
349 // For now we spin in the handler if we received an abort of some kind.
350 // We do not try to recover.
351 bl ASM_PFX(CommonCExceptionHandler) // Call exception handler
352
353
354 // Defines for popping from stack
355
356 #undef REG_PAIR
357 #undef REG_ONE
358 #define REG_PAIR(REG1, REG2, OFFSET, CONTEXT_SIZE) ldp REG1, REG2, [sp, #(OFFSET-CONTEXT_SIZE)]
359
360 #define REG_ONE(REG1, OFFSET, CONTEXT_SIZE) ldr REG1, [sp, #(OFFSET-CONTEXT_SIZE)]
361
362 // Adjust SP to pop system registers
363 add sp, sp, GP_CONTEXT_SIZE + FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
364 ALL_SYS_REGS
365
366 EL1_OR_EL2(x6)
367 1:msr elr_el1, x1 // Exception Link Register
368 msr spsr_el1,x2 // Saved Processor Status Register 32bit
369 msr fpsr, x3 // Floating point Status Register 32bit
370 msr esr_el1, x4 // EL1 Exception syndrome register 32bit
371 msr far_el1, x5 // EL1 Fault Address Register
372 b 3f
373 2:msr elr_el2, x1 // Exception Link Register
374 msr spsr_el2,x2 // Saved Processor Status Register 32bit
375 msr fpsr, x3 // Floating point Status Register 32bit
376 msr esr_el2, x4 // EL1 Exception syndrome register 32bit
377 msr far_el2, x5 // EL1 Fault Address Register
378
379 3:// pop all regs and return from exception.
380 sub sp, sp, FP_CONTEXT_SIZE + SYS_CONTEXT_SIZE
381 ALL_GP_REGS
382
383 // Adjust SP to pop next set
384 add sp, sp, FP_CONTEXT_SIZE
385 // Pop FP regs to Stack.
386 ALL_FP_REGS
387
388 // Adjust SP to be where we started from when we came into the handler.
389 // The handler can not change the SP.
390 add sp, sp, SYS_CONTEXT_SIZE
391
392 eret
393
394 #undef REG_PAIR
395 #undef REG_ONE