]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPkg/Include/AsmMacroIoLibV8.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / ArmPkg / Include / AsmMacroIoLibV8.h
index 2ee1081632bafd1be1352d179e6c841ae21672c9..2c2b1cabd053767107d475cae85de6b67d75869b 100644 (file)
@@ -3,55 +3,14 @@
 \r
   Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
   Portions copyright (c) 2011 - 2014, ARM Ltd. All rights reserved.<BR>\r
+  Copyright (c) 2016, Linaro Ltd. All rights reserved.<BR>\r
 \r
-  This program and the accompanying materials\r
-  are licensed and made available under the terms and conditions of the BSD License\r
-  which accompanies this distribution.  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.php\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
-\r
-#ifndef __MACRO_IO_LIBV8_H__\r
-#define __MACRO_IO_LIBV8_H__\r
-\r
-#define SetPrimaryStack(StackTop, GlobalSize, Tmp, Tmp1)  \\r
-  ands    Tmp, GlobalSize, #15        ;                   \\r
-  mov     Tmp1, #16                   ;                   \\r
-  sub     Tmp1, Tmp1, Tmp             ;                   \\r
-  csel    Tmp, Tmp1, Tmp, ne          ;                   \\r
-  add     GlobalSize, GlobalSize, Tmp ;                   \\r
-  sub     sp, StackTop, GlobalSize    ;                   \\r
-                                      ;                   \\r
-  mov     Tmp, sp                     ;                   \\r
-  mov     GlobalSize, #0x0            ;                   \\r
-_SetPrimaryStackInitGlobals:          ;                   \\r
-  cmp     Tmp, StackTop               ;                   \\r
-  b.eq    _SetPrimaryStackEnd         ;                   \\r
-  str     GlobalSize, [Tmp], #8       ;                   \\r
-  b       _SetPrimaryStackInitGlobals ;                   \\r
-_SetPrimaryStackEnd:\r
-\r
-// Initialize the Global Variable with '0'\r
-#define InitializePrimaryStack(GlobalSize, Tmp1, Tmp2) \\r
-  and     Tmp1, GlobalSize, #15       ;             \\r
-  mov     Tmp2, #16                   ;             \\r
-  sub     Tmp2, Tmp2, Tmp1            ;             \\r
-  add     GlobalSize, GlobalSize, Tmp2 ;            \\r
-                                      ;             \\r
-  mov     Tmp1, sp                    ;             \\r
-  sub     sp, sp, GlobalSize          ;             \\r
-  mov     GlobalSize, #0x0            ;             \\r
-_InitializePrimaryStackLoop:          ;             \\r
-  mov     Tmp2, sp                    ;             \\r
-  cmp     Tmp1, Tmp2                  ;             \\r
-  bls     _InitializePrimaryStackEnd  ;             \\r
-  str     GlobalSize, [Tmp1, #-8]!    ;             \\r
-  b       _InitializePrimaryStackLoop ;             \\r
-_InitializePrimaryStackEnd:\r
+#ifndef ASM_MACRO_IO_LIBV8_H_\r
+#define ASM_MACRO_IO_LIBV8_H_\r
 \r
 // CurrentEL : 0xC = EL3; 8 = EL2; 4 = EL1\r
 // This only selects between EL1 and EL2, else we die.\r
@@ -59,52 +18,38 @@ _InitializePrimaryStackEnd:
 #define EL1_OR_EL2(SAFE_XREG)        \\r
         mrs    SAFE_XREG, CurrentEL ;\\r
         cmp    SAFE_XREG, #0x8      ;\\r
+        b.gt   .                    ;\\r
         b.eq   2f                   ;\\r
-        cmp    SAFE_XREG, #0x4      ;\\r
-        b.ne   .                    ;// We should never get here\r
-// EL1 code starts here\r
+        cbnz   SAFE_XREG, 1f        ;\\r
+        b      .                    ;// We should never get here\r
 \r
 // CurrentEL : 0xC = EL3; 8 = EL2; 4 = EL1\r
 // This only selects between EL1 and EL2 and EL3, else we die.\r
 // Provide the Macro with a safe temp xreg to use.\r
 #define EL1_OR_EL2_OR_EL3(SAFE_XREG) \\r
         mrs    SAFE_XREG, CurrentEL ;\\r
-        cmp    SAFE_XREG, #0xC      ;\\r
-        b.eq   3f                   ;\\r
         cmp    SAFE_XREG, #0x8      ;\\r
+        b.gt   3f                   ;\\r
         b.eq   2f                   ;\\r
-        cmp    SAFE_XREG, #0x4      ;\\r
-        b.ne   .                    ;// We should never get here\r
-// EL1 code starts here\r
-#if defined(__clang__)\r
-\r
-// load x0 with _Data\r
-#define LoadConstant(_Data)              \\r
-  ldr  x0, 1f                          ; \\r
-  b    2f                              ; \\r
-.align(8)                              ; \\r
-1:                                       \\r
-  .8byte (_Data)                       ; \\r
-2:\r
-\r
-// load _Reg with _Data\r
-#define LoadConstantToReg(_Data, _Reg)    \\r
-  ldr  _Reg, 1f                         ; \\r
-  b    2f                               ; \\r
-.align(8)                               ; \\r
-1:                                        \\r
-  .8byte (_Data)                        ; \\r
-2:\r
-\r
-#elif defined (__GNUC__)\r
+        cbnz   SAFE_XREG, 1f        ;\\r
+        b      .                    ;// We should never get here\r
 \r
-#define LoadConstant(Data) \\r
-  ldr  x0, =Data\r
+#define _ASM_FUNC(Name, Section)    \\r
+  .global   Name                  ; \\r
+  .section  #Section, "ax"        ; \\r
+  .type     Name, %function       ; \\r
+  Name:\r
 \r
-#define LoadConstantToReg(Data, Reg) \\r
-  ldr  Reg, =Data\r
+#define ASM_FUNC(Name)  _ASM_FUNC(ASM_PFX(Name), .text. ## Name)\r
 \r
-#endif // __GNUC__\r
+#define MOV32(Reg, Val)                   \\r
+  movz      Reg, (Val) >> 16, lsl #16   ; \\r
+  movk      Reg, (Val) & 0xffff\r
 \r
-#endif // __MACRO_IO_LIBV8_H__\r
+#define MOV64(Reg, Val)                             \\r
+  movz      Reg, (Val) >> 48, lsl #48             ; \\r
+  movk      Reg, ((Val) >> 32) & 0xffff, lsl #32  ; \\r
+  movk      Reg, ((Val) >> 16) & 0xffff, lsl #16  ; \\r
+  movk      Reg, (Val) & 0xffff\r
 \r
+#endif // ASM_MACRO_IO_LIBV8_H_\r