arm_arch.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * Copyright 2011-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OSSL_CRYPTO_ARM_ARCH_H
  10. # define OSSL_CRYPTO_ARM_ARCH_H
  11. # if !defined(__ARM_ARCH__)
  12. # if defined(__CC_ARM)
  13. # define __ARM_ARCH__ __TARGET_ARCH_ARM
  14. # if defined(__BIG_ENDIAN)
  15. # define __ARMEB__
  16. # else
  17. # define __ARMEL__
  18. # endif
  19. # elif defined(__GNUC__)
  20. # if defined(__aarch64__)
  21. # define __ARM_ARCH__ 8
  22. /*
  23. * Why doesn't gcc define __ARM_ARCH__? Instead it defines
  24. * bunch of below macros. See all_architectures[] table in
  25. * gcc/config/arm/arm.c. On a side note it defines
  26. * __ARMEL__/__ARMEB__ for little-/big-endian.
  27. */
  28. # elif defined(__ARM_ARCH)
  29. # define __ARM_ARCH__ __ARM_ARCH
  30. # elif defined(__ARM_ARCH_8A__)
  31. # define __ARM_ARCH__ 8
  32. # elif defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || \
  33. defined(__ARM_ARCH_7R__)|| defined(__ARM_ARCH_7M__) || \
  34. defined(__ARM_ARCH_7EM__)
  35. # define __ARM_ARCH__ 7
  36. # elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || \
  37. defined(__ARM_ARCH_6K__)|| defined(__ARM_ARCH_6M__) || \
  38. defined(__ARM_ARCH_6Z__)|| defined(__ARM_ARCH_6ZK__) || \
  39. defined(__ARM_ARCH_6T2__)
  40. # define __ARM_ARCH__ 6
  41. # elif defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5T__) || \
  42. defined(__ARM_ARCH_5E__)|| defined(__ARM_ARCH_5TE__) || \
  43. defined(__ARM_ARCH_5TEJ__)
  44. # define __ARM_ARCH__ 5
  45. # elif defined(__ARM_ARCH_4__) || defined(__ARM_ARCH_4T__)
  46. # define __ARM_ARCH__ 4
  47. # else
  48. # error "unsupported ARM architecture"
  49. # endif
  50. # endif
  51. # endif
  52. # if !defined(__ARM_MAX_ARCH__)
  53. # define __ARM_MAX_ARCH__ __ARM_ARCH__
  54. # endif
  55. # if __ARM_MAX_ARCH__<__ARM_ARCH__
  56. # error "__ARM_MAX_ARCH__ can't be less than __ARM_ARCH__"
  57. # elif __ARM_MAX_ARCH__!=__ARM_ARCH__
  58. # if __ARM_ARCH__<7 && __ARM_MAX_ARCH__>=7 && defined(__ARMEB__)
  59. # error "can't build universal big-endian binary"
  60. # endif
  61. # endif
  62. # ifndef __ASSEMBLER__
  63. extern unsigned int OPENSSL_armcap_P;
  64. extern unsigned int OPENSSL_arm_midr;
  65. extern unsigned int OPENSSL_armv8_rsa_neonized;
  66. # endif
  67. # define ARMV7_NEON (1<<0)
  68. # define ARMV7_TICK (1<<1)
  69. # define ARMV8_AES (1<<2)
  70. # define ARMV8_SHA1 (1<<3)
  71. # define ARMV8_SHA256 (1<<4)
  72. # define ARMV8_PMULL (1<<5)
  73. # define ARMV8_SHA512 (1<<6)
  74. # define ARMV8_CPUID (1<<7)
  75. # define ARMV8_RNG (1<<8)
  76. # define ARMV8_SM3 (1<<9)
  77. # define ARMV8_SM4 (1<<10)
  78. # define ARMV8_SHA3 (1<<11)
  79. # define ARMV8_UNROLL8_EOR3 (1<<12)
  80. /*
  81. * MIDR_EL1 system register
  82. *
  83. * 63___ _ ___32_31___ _ ___24_23_____20_19_____16_15__ _ __4_3_______0
  84. * | | | | | | |
  85. * |RES0 | Implementer | Variant | Arch | PartNum |Revision|
  86. * |____ _ _____|_____ _ _____|_________|_______ _|____ _ ___|________|
  87. *
  88. */
  89. # define ARM_CPU_IMP_ARM 0x41
  90. # define ARM_CPU_PART_CORTEX_A72 0xD08
  91. # define ARM_CPU_PART_N1 0xD0C
  92. # define ARM_CPU_PART_V1 0xD40
  93. # define MIDR_PARTNUM_SHIFT 4
  94. # define MIDR_PARTNUM_MASK (0xfff << MIDR_PARTNUM_SHIFT)
  95. # define MIDR_PARTNUM(midr) \
  96. (((midr) & MIDR_PARTNUM_MASK) >> MIDR_PARTNUM_SHIFT)
  97. # define MIDR_IMPLEMENTER_SHIFT 24
  98. # define MIDR_IMPLEMENTER_MASK (0xff << MIDR_IMPLEMENTER_SHIFT)
  99. # define MIDR_IMPLEMENTER(midr) \
  100. (((midr) & MIDR_IMPLEMENTER_MASK) >> MIDR_IMPLEMENTER_SHIFT)
  101. # define MIDR_ARCHITECTURE_SHIFT 16
  102. # define MIDR_ARCHITECTURE_MASK (0xf << MIDR_ARCHITECTURE_SHIFT)
  103. # define MIDR_ARCHITECTURE(midr) \
  104. (((midr) & MIDR_ARCHITECTURE_MASK) >> MIDR_ARCHITECTURE_SHIFT)
  105. # define MIDR_CPU_MODEL_MASK \
  106. (MIDR_IMPLEMENTER_MASK | \
  107. MIDR_PARTNUM_MASK | \
  108. MIDR_ARCHITECTURE_MASK)
  109. # define MIDR_CPU_MODEL(imp, partnum) \
  110. (((imp) << MIDR_IMPLEMENTER_SHIFT) | \
  111. (0xf << MIDR_ARCHITECTURE_SHIFT) | \
  112. ((partnum) << MIDR_PARTNUM_SHIFT))
  113. # define MIDR_IS_CPU_MODEL(midr, imp, partnum) \
  114. (((midr) & MIDR_CPU_MODEL_MASK) == MIDR_CPU_MODEL(imp, partnum))
  115. #if defined(__ASSEMBLER__)
  116. /*
  117. * Support macros for
  118. * - Armv8.3-A Pointer Authentication and
  119. * - Armv8.5-A Branch Target Identification
  120. * features which require emitting a .note.gnu.property section with the
  121. * appropriate architecture-dependent feature bits set.
  122. * Read more: "ELF for the Arm® 64-bit Architecture"
  123. */
  124. # if defined(__ARM_FEATURE_BTI_DEFAULT) && __ARM_FEATURE_BTI_DEFAULT == 1
  125. # define GNU_PROPERTY_AARCH64_BTI (1 << 0) /* Has Branch Target Identification */
  126. # define AARCH64_VALID_CALL_TARGET hint #34 /* BTI 'c' */
  127. # else
  128. # define GNU_PROPERTY_AARCH64_BTI 0 /* No Branch Target Identification */
  129. # define AARCH64_VALID_CALL_TARGET
  130. # endif
  131. # if defined(__ARM_FEATURE_PAC_DEFAULT) && \
  132. (__ARM_FEATURE_PAC_DEFAULT & 1) == 1 /* Signed with A-key */
  133. # define GNU_PROPERTY_AARCH64_POINTER_AUTH \
  134. (1 << 1) /* Has Pointer Authentication */
  135. # define AARCH64_SIGN_LINK_REGISTER hint #25 /* PACIASP */
  136. # define AARCH64_VALIDATE_LINK_REGISTER hint #29 /* AUTIASP */
  137. # elif defined(__ARM_FEATURE_PAC_DEFAULT) && \
  138. (__ARM_FEATURE_PAC_DEFAULT & 2) == 2 /* Signed with B-key */
  139. # define GNU_PROPERTY_AARCH64_POINTER_AUTH \
  140. (1 << 1) /* Has Pointer Authentication */
  141. # define AARCH64_SIGN_LINK_REGISTER hint #27 /* PACIBSP */
  142. # define AARCH64_VALIDATE_LINK_REGISTER hint #31 /* AUTIBSP */
  143. # else
  144. # define GNU_PROPERTY_AARCH64_POINTER_AUTH 0 /* No Pointer Authentication */
  145. # if GNU_PROPERTY_AARCH64_BTI != 0
  146. # define AARCH64_SIGN_LINK_REGISTER AARCH64_VALID_CALL_TARGET
  147. # else
  148. # define AARCH64_SIGN_LINK_REGISTER
  149. # endif
  150. # define AARCH64_VALIDATE_LINK_REGISTER
  151. # endif
  152. # if GNU_PROPERTY_AARCH64_POINTER_AUTH != 0 || GNU_PROPERTY_AARCH64_BTI != 0
  153. .pushsection .note.gnu.property, "a";
  154. .balign 8;
  155. .long 4;
  156. .long 0x10;
  157. .long 0x5;
  158. .asciz "GNU";
  159. .long 0xc0000000; /* GNU_PROPERTY_AARCH64_FEATURE_1_AND */
  160. .long 4;
  161. .long (GNU_PROPERTY_AARCH64_POINTER_AUTH | GNU_PROPERTY_AARCH64_BTI);
  162. .long 0;
  163. .popsection;
  164. # endif
  165. # endif /* defined __ASSEMBLER__ */
  166. # define IS_CPU_SUPPORT_UNROLL8_EOR3() \
  167. (OPENSSL_armcap_P & ARMV8_UNROLL8_EOR3)
  168. #endif