]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Library/ArmLib/AArch64/AArch64Support.S
ArmPkg/ArmLib/AArch64: Initialize the new N+1-level page table before registering it
[mirror_edk2.git] / ArmPkg / Library / ArmLib / AArch64 / AArch64Support.S
CommitLineData
25402f5d
HL
1#------------------------------------------------------------------------------\r
2#\r
3# Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>\r
9401d6f4 4# Copyright (c) 2011 - 2014, ARM Limited. All rights reserved.\r
25402f5d
HL
5#\r
6# This program and the accompanying materials\r
7# are licensed and made available under the terms and conditions of the BSD License\r
8# which accompanies this distribution. The full text of the license may be found at\r
9# http://opensource.org/licenses/bsd-license.php\r
10#\r
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13#\r
14#------------------------------------------------------------------------------\r
15\r
16#include <Chipset/AArch64.h>\r
17#include <AsmMacroIoLibV8.h>\r
18\r
19.text\r
20.align 3\r
21\r
22GCC_ASM_EXPORT (ArmInvalidateInstructionCache)\r
23GCC_ASM_EXPORT (ArmInvalidateDataCacheEntryByMVA)\r
24GCC_ASM_EXPORT (ArmCleanDataCacheEntryByMVA)\r
25GCC_ASM_EXPORT (ArmCleanInvalidateDataCacheEntryByMVA)\r
26GCC_ASM_EXPORT (ArmInvalidateDataCacheEntryBySetWay)\r
27GCC_ASM_EXPORT (ArmCleanDataCacheEntryBySetWay)\r
28GCC_ASM_EXPORT (ArmCleanInvalidateDataCacheEntryBySetWay)\r
29GCC_ASM_EXPORT (ArmDrainWriteBuffer)\r
30GCC_ASM_EXPORT (ArmEnableMmu)\r
31GCC_ASM_EXPORT (ArmDisableMmu)\r
32GCC_ASM_EXPORT (ArmDisableCachesAndMmu)\r
33GCC_ASM_EXPORT (ArmMmuEnabled)\r
34GCC_ASM_EXPORT (ArmEnableDataCache)\r
35GCC_ASM_EXPORT (ArmDisableDataCache)\r
36GCC_ASM_EXPORT (ArmEnableInstructionCache)\r
37GCC_ASM_EXPORT (ArmDisableInstructionCache)\r
38GCC_ASM_EXPORT (ArmDisableAlignmentCheck)\r
39GCC_ASM_EXPORT (ArmEnableAlignmentCheck)\r
40GCC_ASM_EXPORT (ArmEnableBranchPrediction)\r
41GCC_ASM_EXPORT (ArmDisableBranchPrediction)\r
42GCC_ASM_EXPORT (AArch64AllDataCachesOperation)\r
43GCC_ASM_EXPORT (AArch64PerformPoUDataCacheOperation)\r
44GCC_ASM_EXPORT (ArmDataMemoryBarrier)\r
45GCC_ASM_EXPORT (ArmDataSyncronizationBarrier)\r
46GCC_ASM_EXPORT (ArmInstructionSynchronizationBarrier)\r
47GCC_ASM_EXPORT (ArmWriteVBar)\r
f0247796 48GCC_ASM_EXPORT (ArmReadVBar)\r
25402f5d
HL
49GCC_ASM_EXPORT (ArmEnableVFP)\r
50GCC_ASM_EXPORT (ArmCallWFI)\r
51GCC_ASM_EXPORT (ArmInvalidateInstructionAndDataTlb)\r
52GCC_ASM_EXPORT (ArmReadMpidr)\r
53GCC_ASM_EXPORT (ArmReadTpidrurw)\r
54GCC_ASM_EXPORT (ArmWriteTpidrurw)\r
55GCC_ASM_EXPORT (ArmIsArchTimerImplemented)\r
56GCC_ASM_EXPORT (ArmReadIdPfr0)\r
57GCC_ASM_EXPORT (ArmReadIdPfr1)\r
58GCC_ASM_EXPORT (ArmWriteHcr)\r
59GCC_ASM_EXPORT (ArmReadCurrentEL)\r
60\r
61.set CTRL_M_BIT, (1 << 0)\r
62.set CTRL_A_BIT, (1 << 1)\r
63.set CTRL_C_BIT, (1 << 2)\r
64.set CTRL_I_BIT, (1 << 12)\r
65.set CTRL_V_BIT, (1 << 12)\r
66.set CPACR_VFP_BITS, (3 << 20)\r
67\r
68ASM_PFX(ArmInvalidateDataCacheEntryByMVA):\r
69 dc ivac, x0 // Invalidate single data cache line\r
70 dsb sy\r
71 isb\r
72 ret\r
73\r
74\r
75ASM_PFX(ArmCleanDataCacheEntryByMVA):\r
76 dc cvac, x0 // Clean single data cache line\r
77 dsb sy\r
78 isb\r
79 ret\r
80\r
81\r
82ASM_PFX(ArmCleanInvalidateDataCacheEntryByMVA):\r
83 dc civac, x0 // Clean and invalidate single data cache line\r
84 dsb sy\r
85 isb\r
86 ret\r
87\r
88\r
89ASM_PFX(ArmInvalidateDataCacheEntryBySetWay):\r
90 dc isw, x0 // Invalidate this line\r
91 dsb sy\r
92 isb\r
93 ret\r
94\r
95\r
96ASM_PFX(ArmCleanInvalidateDataCacheEntryBySetWay):\r
97 dc cisw, x0 // Clean and Invalidate this line\r
98 dsb sy\r
99 isb\r
100 ret\r
101\r
102\r
103ASM_PFX(ArmCleanDataCacheEntryBySetWay):\r
104 dc csw, x0 // Clean this line\r
105 dsb sy\r
106 isb\r
107 ret\r
108\r
109\r
110ASM_PFX(ArmInvalidateInstructionCache):\r
111 ic iallu // Invalidate entire instruction cache\r
112 dsb sy\r
113 isb\r
114 ret\r
115\r
116\r
117ASM_PFX(ArmEnableMmu):\r
118 EL1_OR_EL2_OR_EL3(x1)\r
1191: mrs x0, sctlr_el1 // Read System control register EL1\r
120 b 4f\r
1212: mrs x0, sctlr_el2 // Read System control register EL2\r
122 b 4f\r
1233: mrs x0, sctlr_el3 // Read System control register EL3\r
1244: orr x0, x0, #CTRL_M_BIT // Set MMU enable bit\r
125 EL1_OR_EL2_OR_EL3(x1)\r
70f89c0b 1261: tlbi vmalle1\r
25402f5d
HL
127 isb\r
128 msr sctlr_el1, x0 // Write back\r
129 b 4f\r
1302: tlbi alle2\r
131 isb\r
132 msr sctlr_el2, x0 // Write back\r
133 b 4f\r
1343: tlbi alle3\r
135 isb\r
136 msr sctlr_el3, x0 // Write back\r
1374: dsb sy\r
138 isb\r
139 ret\r
140\r
141\r
142ASM_PFX(ArmDisableMmu):\r
143 EL1_OR_EL2_OR_EL3(x1)\r
1441: mrs x0, sctlr_el1 // Read System Control Register EL1\r
145 b 4f\r
1462: mrs x0, sctlr_el2 // Read System Control Register EL2\r
147 b 4f\r
1483: mrs x0, sctlr_el3 // Read System Control Register EL3\r
73ca5009 1494: and x0, x0, #~CTRL_M_BIT // Clear MMU enable bit\r
25402f5d
HL
150 EL1_OR_EL2_OR_EL3(x1)\r
1511: msr sctlr_el1, x0 // Write back\r
70f89c0b 152 tlbi vmalle1\r
25402f5d
HL
153 b 4f\r
1542: msr sctlr_el2, x0 // Write back\r
155 tlbi alle2\r
156 b 4f\r
1573: msr sctlr_el3, x0 // Write back\r
158 tlbi alle3\r
1594: dsb sy\r
160 isb\r
161 ret\r
162\r
163\r
164ASM_PFX(ArmDisableCachesAndMmu):\r
165 EL1_OR_EL2_OR_EL3(x1)\r
1661: mrs x0, sctlr_el1 // Get control register EL1\r
167 b 4f\r
1682: mrs x0, sctlr_el2 // Get control register EL2\r
169 b 4f\r
1703: mrs x0, sctlr_el3 // Get control register EL3\r
73ca5009
BJ
1714: mov x1, #~(CTRL_M_BIT | CTRL_C_BIT | CTRL_I_BIT) // Disable MMU, D & I caches\r
172 and x0, x0, x1\r
25402f5d
HL
173 EL1_OR_EL2_OR_EL3(x1)\r
1741: msr sctlr_el1, x0 // Write back control register\r
175 b 4f\r
1762: msr sctlr_el2, x0 // Write back control register\r
177 b 4f\r
1783: msr sctlr_el3, x0 // Write back control register\r
1794: dsb sy\r
180 isb\r
181 ret\r
182\r
183\r
184ASM_PFX(ArmMmuEnabled):\r
185 EL1_OR_EL2_OR_EL3(x1)\r
1861: mrs x0, sctlr_el1 // Get control register EL1\r
187 b 4f\r
1882: mrs x0, sctlr_el2 // Get control register EL2\r
189 b 4f\r
1903: mrs x0, sctlr_el3 // Get control register EL3\r
1914: and x0, x0, #CTRL_M_BIT\r
192 ret\r
193\r
194\r
195ASM_PFX(ArmEnableDataCache):\r
196 EL1_OR_EL2_OR_EL3(x1)\r
1971: mrs x0, sctlr_el1 // Get control register EL1\r
198 b 4f\r
1992: mrs x0, sctlr_el2 // Get control register EL2\r
200 b 4f\r
2013: mrs x0, sctlr_el3 // Get control register EL3\r
2024: orr x0, x0, #CTRL_C_BIT // Set C bit\r
203 EL1_OR_EL2_OR_EL3(x1)\r
2041: msr sctlr_el1, x0 // Write back control register\r
205 b 4f\r
2062: msr sctlr_el2, x0 // Write back control register\r
207 b 4f\r
2083: msr sctlr_el3, x0 // Write back control register\r
2094: dsb sy\r
210 isb\r
211 ret\r
212\r
213\r
214ASM_PFX(ArmDisableDataCache):\r
215 EL1_OR_EL2_OR_EL3(x1)\r
2161: mrs x0, sctlr_el1 // Get control register EL1\r
217 b 4f\r
2182: mrs x0, sctlr_el2 // Get control register EL2\r
219 b 4f\r
2203: mrs x0, sctlr_el3 // Get control register EL3\r
73ca5009 2214: and x0, x0, #~CTRL_C_BIT // Clear C bit\r
25402f5d
HL
222 EL1_OR_EL2_OR_EL3(x1)\r
2231: msr sctlr_el1, x0 // Write back control register\r
224 b 4f\r
2252: msr sctlr_el2, x0 // Write back control register\r
226 b 4f\r
2273: msr sctlr_el3, x0 // Write back control register\r
2284: dsb sy\r
229 isb\r
230 ret\r
231\r
232\r
233ASM_PFX(ArmEnableInstructionCache):\r
234 EL1_OR_EL2_OR_EL3(x1)\r
2351: mrs x0, sctlr_el1 // Get control register EL1\r
236 b 4f\r
2372: mrs x0, sctlr_el2 // Get control register EL2\r
238 b 4f\r
2393: mrs x0, sctlr_el3 // Get control register EL3\r
2404: orr x0, x0, #CTRL_I_BIT // Set I bit\r
241 EL1_OR_EL2_OR_EL3(x1)\r
2421: msr sctlr_el1, x0 // Write back control register\r
243 b 4f\r
2442: msr sctlr_el2, x0 // Write back control register\r
245 b 4f\r
2463: msr sctlr_el3, x0 // Write back control register\r
2474: dsb sy\r
248 isb\r
249 ret\r
250\r
251\r
252ASM_PFX(ArmDisableInstructionCache):\r
253 EL1_OR_EL2_OR_EL3(x1)\r
2541: mrs x0, sctlr_el1 // Get control register EL1\r
255 b 4f\r
2562: mrs x0, sctlr_el2 // Get control register EL2\r
257 b 4f\r
2583: mrs x0, sctlr_el3 // Get control register EL3\r
73ca5009 2594: and x0, x0, #~CTRL_I_BIT // Clear I bit\r
25402f5d
HL
260 EL1_OR_EL2_OR_EL3(x1)\r
2611: msr sctlr_el1, x0 // Write back control register\r
262 b 4f\r
2632: msr sctlr_el2, x0 // Write back control register\r
264 b 4f\r
2653: msr sctlr_el3, x0 // Write back control register\r
2664: dsb sy\r
267 isb\r
268 ret\r
269\r
270\r
271ASM_PFX(ArmEnableAlignmentCheck):\r
272 EL1_OR_EL2(x1)\r
2731: mrs x0, sctlr_el1 // Get control register EL1\r
274 b 3f\r
2752: mrs x0, sctlr_el2 // Get control register EL2\r
2763: orr x0, x0, #CTRL_A_BIT // Set A (alignment check) bit\r
277 EL1_OR_EL2(x1)\r
2781: msr sctlr_el1, x0 // Write back control register\r
279 b 3f\r
2802: msr sctlr_el2, x0 // Write back control register\r
2813: dsb sy\r
282 isb\r
283 ret\r
284\r
285\r
286ASM_PFX(ArmDisableAlignmentCheck):\r
287 EL1_OR_EL2_OR_EL3(x1)\r
2881: mrs x0, sctlr_el1 // Get control register EL1\r
289 b 4f\r
2902: mrs x0, sctlr_el2 // Get control register EL2\r
291 b 4f\r
2923: mrs x0, sctlr_el3 // Get control register EL3\r
73ca5009 2934: and x0, x0, #~CTRL_A_BIT // Clear A (alignment check) bit\r
25402f5d
HL
294 EL1_OR_EL2_OR_EL3(x1)\r
2951: msr sctlr_el1, x0 // Write back control register\r
296 b 4f\r
2972: msr sctlr_el2, x0 // Write back control register\r
298 b 4f\r
2993: msr sctlr_el3, x0 // Write back control register\r
3004: dsb sy\r
301 isb\r
302 ret\r
303\r
304\r
305// Always turned on in AArch64. Else implementation specific. Leave in for C compatibility for now\r
306ASM_PFX(ArmEnableBranchPrediction):\r
307 ret\r
308\r
309\r
310// Always turned on in AArch64. Else implementation specific. Leave in for C compatibility for now.\r
311ASM_PFX(ArmDisableBranchPrediction):\r
312 ret\r
313\r
314\r
315ASM_PFX(AArch64AllDataCachesOperation):\r
316// We can use regs 0-7 and 9-15 without having to save/restore.\r
317// Save our link register on the stack.\r
318 str x30, [sp, #-0x10]!\r
319 mov x1, x0 // Save Function call in x1\r
320 mrs x6, clidr_el1 // Read EL1 CLIDR\r
321 and x3, x6, #0x7000000 // Mask out all but Level of Coherency (LoC)\r
433a49a0
OM
322 lsr x3, x3, #23 // Left align cache level value - the level is shifted by 1 to the\r
323 // right to ease the access to CSSELR and the Set/Way operation.\r
25402f5d
HL
324 cbz x3, L_Finished // No need to clean if LoC is 0\r
325 mov x10, #0 // Start clean at cache level 0\r
326 b Loop1\r
327\r
328ASM_PFX(AArch64PerformPoUDataCacheOperation):\r
329// We can use regs 0-7 and 9-15 without having to save/restore.\r
330// Save our link register on the stack.\r
331 str x30, [sp, #-0x10]!\r
332 mov x1, x0 // Save Function call in x1\r
333 mrs x6, clidr_el1 // Read EL1 CLIDR\r
334 and x3, x6, #0x38000000 // Mask out all but Point of Unification (PoU)\r
433a49a0
OM
335 lsr x3, x3, #26 // Left align cache level value - the level is shifted by 1 to the\r
336 // right to ease the access to CSSELR and the Set/Way operation.\r
25402f5d
HL
337 cbz x3, L_Finished // No need to clean if LoC is 0\r
338 mov x10, #0 // Start clean at cache level 0\r
339\r
340Loop1:\r
341 add x2, x10, x10, lsr #1 // Work out 3x cachelevel for cache info\r
342 lsr x12, x6, x2 // bottom 3 bits are the Cache type for this level\r
343 and x12, x12, #7 // get those 3 bits alone\r
344 cmp x12, #2 // what cache at this level?\r
345 b.lt L_Skip // no cache or only instruction cache at this level\r
346 msr csselr_el1, x10 // write the Cache Size selection register with current level (CSSELR)\r
347 isb // isb to sync the change to the CacheSizeID reg\r
348 mrs x12, ccsidr_el1 // reads current Cache Size ID register (CCSIDR)\r
349 and x2, x12, #0x7 // extract the line length field\r
350 add x2, x2, #4 // add 4 for the line length offset (log2 16 bytes)\r
351 mov x4, #0x400\r
352 sub x4, x4, #1\r
353 and x4, x4, x12, lsr #3 // x4 is the max number on the way size (right aligned)\r
354 clz w5, w4 // w5 is the bit position of the way size increment\r
355 mov x7, #0x00008000\r
356 sub x7, x7, #1\r
357 and x7, x7, x12, lsr #13 // x7 is the max number of the index size (right aligned)\r
358\r
359Loop2:\r
360 mov x9, x4 // x9 working copy of the max way size (right aligned)\r
361\r
362Loop3:\r
363 lsl x11, x9, x5\r
364 orr x0, x10, x11 // factor in the way number and cache number\r
365 lsl x11, x7, x2\r
366 orr x0, x0, x11 // factor in the index number\r
367\r
368 blr x1 // Goto requested cache operation\r
369\r
370 subs x9, x9, #1 // decrement the way number\r
371 b.ge Loop3\r
372 subs x7, x7, #1 // decrement the index\r
373 b.ge Loop2\r
374L_Skip:\r
375 add x10, x10, #2 // increment the cache number\r
376 cmp x3, x10\r
377 b.gt Loop1\r
378\r
379L_Finished:\r
380 dsb sy\r
381 isb\r
382 ldr x30, [sp], #0x10\r
383 ret\r
384\r
385\r
386ASM_PFX(ArmDataMemoryBarrier):\r
387 dmb sy\r
388 ret\r
389\r
390\r
391ASM_PFX(ArmDataSyncronizationBarrier):\r
392ASM_PFX(ArmDrainWriteBuffer):\r
393 dsb sy\r
394 ret\r
395\r
396\r
397ASM_PFX(ArmInstructionSynchronizationBarrier):\r
398 isb\r
399 ret\r
400\r
401\r
402ASM_PFX(ArmWriteVBar):\r
403 EL1_OR_EL2_OR_EL3(x1)\r
4041: msr vbar_el1, x0 // Set the Address of the EL1 Vector Table in the VBAR register\r
405 b 4f\r
4062: msr vbar_el2, x0 // Set the Address of the EL2 Vector Table in the VBAR register\r
407 b 4f\r
4083: msr vbar_el3, x0 // Set the Address of the EL3 Vector Table in the VBAR register\r
4094: isb\r
410 ret\r
411\r
f0247796
OM
412ASM_PFX(ArmReadVBar):\r
413 EL1_OR_EL2_OR_EL3(x1)\r
4141: mrs x0, vbar_el1 // Set the Address of the EL1 Vector Table in the VBAR register\r
415 ret\r
4162: mrs x0, vbar_el2 // Set the Address of the EL2 Vector Table in the VBAR register\r
417 ret\r
4183: mrs x0, vbar_el3 // Set the Address of the EL3 Vector Table in the VBAR register\r
419 ret\r
420\r
421\r
25402f5d
HL
422ASM_PFX(ArmEnableVFP):\r
423 // Check whether floating-point is implemented in the processor.\r
424 mov x1, x30 // Save LR\r
425 bl ArmReadIdPfr0 // Read EL1 Processor Feature Register (PFR0)\r
426 mov x30, x1 // Restore LR\r
427 ands x0, x0, #AARCH64_PFR0_FP// Extract bits indicating VFP implementation\r
428 cmp x0, #0 // VFP is implemented if '0'.\r
429 b.ne 4f // Exit if VFP not implemented.\r
430 // FVP is implemented.\r
431 // Make sure VFP exceptions are not trapped (to any exception level).\r
432 mrs x0, cpacr_el1 // Read EL1 Coprocessor Access Control Register (CPACR)\r
433 orr x0, x0, #CPACR_VFP_BITS // Disable FVP traps to EL1\r
434 msr cpacr_el1, x0 // Write back EL1 Coprocessor Access Control Register (CPACR)\r
435 mov x1, #AARCH64_CPTR_TFP // TFP Bit for trapping VFP Exceptions\r
436 EL1_OR_EL2_OR_EL3(x2)\r
4371:ret // Not configurable in EL1\r
4382:mrs x0, cptr_el2 // Disable VFP traps to EL2\r
439 bic x0, x0, x1\r
440 msr cptr_el2, x0\r
441 ret\r
4423:mrs x0, cptr_el3 // Disable VFP traps to EL3\r
443 bic x0, x0, x1\r
444 msr cptr_el3, x0\r
4454:ret\r
446\r
447\r
448ASM_PFX(ArmCallWFI):\r
449 wfi\r
450 ret\r
451\r
452\r
453ASM_PFX(ArmInvalidateInstructionAndDataTlb):\r
454 EL1_OR_EL2_OR_EL3(x0)\r
70f89c0b 4551: tlbi vmalle1\r
25402f5d
HL
456 b 4f\r
4572: tlbi alle2\r
458 b 4f\r
4593: tlbi alle3\r
4604: dsb sy\r
461 isb\r
462 ret\r
463\r
464\r
465ASM_PFX(ArmReadMpidr):\r
466 mrs x0, mpidr_el1 // read EL1 MPIDR\r
467 ret\r
468\r
469\r
470// Keep old function names for C compatibilty for now. Change later?\r
471ASM_PFX(ArmReadTpidrurw):\r
472 mrs x0, tpidr_el0 // read tpidr_el0 (v7 TPIDRURW) -> (v8 TPIDR_EL0)\r
473 ret\r
474\r
475\r
476// Keep old function names for C compatibilty for now. Change later?\r
477ASM_PFX(ArmWriteTpidrurw):\r
478 msr tpidr_el0, x0 // write tpidr_el0 (v7 TPIDRURW) -> (v8 TPIDR_EL0)\r
479 ret\r
480\r
481\r
482// Arch timers are mandatory on AArch64\r
483ASM_PFX(ArmIsArchTimerImplemented):\r
484 mov x0, #1\r
485 ret\r
486\r
487\r
488ASM_PFX(ArmReadIdPfr0):\r
489 mrs x0, id_aa64pfr0_el1 // Read ID_AA64PFR0 Register\r
490 ret\r
491\r
492\r
493// Q: id_aa64pfr1_el1 not defined yet. What does this funtion want to access?\r
494// A: used to setup arch timer. Check if we have security extensions, permissions to set stuff.\r
495// See: ArmPkg/Library/ArmArchTimerLib/AArch64/ArmArchTimerLib.c\r
496// Not defined yet, but stick in here for now, should read all zeros.\r
497ASM_PFX(ArmReadIdPfr1):\r
498 mrs x0, id_aa64pfr1_el1 // Read ID_PFR1 Register\r
499 ret\r
500\r
501// VOID ArmWriteHcr(UINTN Hcr)\r
502ASM_PFX(ArmWriteHcr):\r
503 msr hcr_el2, x0 // Write the passed HCR value\r
504 ret\r
505\r
506// UINTN ArmReadCurrentEL(VOID)\r
507ASM_PFX(ArmReadCurrentEL):\r
508 mrs x0, CurrentEL\r
509 ret\r
510\r
25402f5d 511ASM_FUNCTION_REMOVE_IF_UNREFERENCED\r