arm_arch.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * Copyright 2011-2022 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. # define ARMV8_SVE (1<<13)
  81. # define ARMV8_SVE2 (1<<14)
  82. /*
  83. * MIDR_EL1 system register
  84. *
  85. * 63___ _ ___32_31___ _ ___24_23_____20_19_____16_15__ _ __4_3_______0
  86. * | | | | | | |
  87. * |RES0 | Implementer | Variant | Arch | PartNum |Revision|
  88. * |____ _ _____|_____ _ _____|_________|_______ _|____ _ ___|________|
  89. *
  90. */
  91. # define ARM_CPU_IMP_ARM 0x41
  92. # define HISI_CPU_IMP 0x48
  93. # define ARM_CPU_PART_CORTEX_A72 0xD08
  94. # define ARM_CPU_PART_N1 0xD0C
  95. # define ARM_CPU_PART_V1 0xD40
  96. # define ARM_CPU_PART_N2 0xD49
  97. # define HISI_CPU_PART_KP920 0xD01
  98. # define MIDR_PARTNUM_SHIFT 4
  99. # define MIDR_PARTNUM_MASK (0xfffU << MIDR_PARTNUM_SHIFT)
  100. # define MIDR_PARTNUM(midr) \
  101. (((midr) & MIDR_PARTNUM_MASK) >> MIDR_PARTNUM_SHIFT)
  102. # define MIDR_IMPLEMENTER_SHIFT 24
  103. # define MIDR_IMPLEMENTER_MASK (0xffU << MIDR_IMPLEMENTER_SHIFT)
  104. # define MIDR_IMPLEMENTER(midr) \
  105. (((midr) & MIDR_IMPLEMENTER_MASK) >> MIDR_IMPLEMENTER_SHIFT)
  106. # define MIDR_ARCHITECTURE_SHIFT 16
  107. # define MIDR_ARCHITECTURE_MASK (0xfU << MIDR_ARCHITECTURE_SHIFT)
  108. # define MIDR_ARCHITECTURE(midr) \
  109. (((midr) & MIDR_ARCHITECTURE_MASK) >> MIDR_ARCHITECTURE_SHIFT)
  110. # define MIDR_CPU_MODEL_MASK \
  111. (MIDR_IMPLEMENTER_MASK | \
  112. MIDR_PARTNUM_MASK | \
  113. MIDR_ARCHITECTURE_MASK)
  114. # define MIDR_CPU_MODEL(imp, partnum) \
  115. (((imp) << MIDR_IMPLEMENTER_SHIFT) | \
  116. (0xfU << MIDR_ARCHITECTURE_SHIFT) | \
  117. ((partnum) << MIDR_PARTNUM_SHIFT))
  118. # define MIDR_IS_CPU_MODEL(midr, imp, partnum) \
  119. (((midr) & MIDR_CPU_MODEL_MASK) == MIDR_CPU_MODEL(imp, partnum))
  120. #if defined(__ASSEMBLER__)
  121. /*
  122. * Support macros for
  123. * - Armv8.3-A Pointer Authentication and
  124. * - Armv8.5-A Branch Target Identification
  125. * features which require emitting a .note.gnu.property section with the
  126. * appropriate architecture-dependent feature bits set.
  127. * Read more: "ELF for the Arm® 64-bit Architecture"
  128. */
  129. # if defined(__ARM_FEATURE_BTI_DEFAULT) && __ARM_FEATURE_BTI_DEFAULT == 1
  130. # define GNU_PROPERTY_AARCH64_BTI (1 << 0) /* Has Branch Target Identification */
  131. # define AARCH64_VALID_CALL_TARGET hint #34 /* BTI 'c' */
  132. # else
  133. # define GNU_PROPERTY_AARCH64_BTI 0 /* No Branch Target Identification */
  134. # define AARCH64_VALID_CALL_TARGET
  135. # endif
  136. # if defined(__ARM_FEATURE_PAC_DEFAULT) && \
  137. (__ARM_FEATURE_PAC_DEFAULT & 1) == 1 /* Signed with A-key */
  138. # define GNU_PROPERTY_AARCH64_POINTER_AUTH \
  139. (1 << 1) /* Has Pointer Authentication */
  140. # define AARCH64_SIGN_LINK_REGISTER hint #25 /* PACIASP */
  141. # define AARCH64_VALIDATE_LINK_REGISTER hint #29 /* AUTIASP */
  142. # elif defined(__ARM_FEATURE_PAC_DEFAULT) && \
  143. (__ARM_FEATURE_PAC_DEFAULT & 2) == 2 /* Signed with B-key */
  144. # define GNU_PROPERTY_AARCH64_POINTER_AUTH \
  145. (1 << 1) /* Has Pointer Authentication */
  146. # define AARCH64_SIGN_LINK_REGISTER hint #27 /* PACIBSP */
  147. # define AARCH64_VALIDATE_LINK_REGISTER hint #31 /* AUTIBSP */
  148. # else
  149. # define GNU_PROPERTY_AARCH64_POINTER_AUTH 0 /* No Pointer Authentication */
  150. # if GNU_PROPERTY_AARCH64_BTI != 0
  151. # define AARCH64_SIGN_LINK_REGISTER AARCH64_VALID_CALL_TARGET
  152. # else
  153. # define AARCH64_SIGN_LINK_REGISTER
  154. # endif
  155. # define AARCH64_VALIDATE_LINK_REGISTER
  156. # endif
  157. # if GNU_PROPERTY_AARCH64_POINTER_AUTH != 0 || GNU_PROPERTY_AARCH64_BTI != 0
  158. .pushsection .note.gnu.property, "a";
  159. .balign 8;
  160. .long 4;
  161. .long 0x10;
  162. .long 0x5;
  163. .asciz "GNU";
  164. .long 0xc0000000; /* GNU_PROPERTY_AARCH64_FEATURE_1_AND */
  165. .long 4;
  166. .long (GNU_PROPERTY_AARCH64_POINTER_AUTH | GNU_PROPERTY_AARCH64_BTI);
  167. .long 0;
  168. .popsection;
  169. # endif
  170. # endif /* defined __ASSEMBLER__ */
  171. # define IS_CPU_SUPPORT_UNROLL8_EOR3() \
  172. (OPENSSL_armcap_P & ARMV8_UNROLL8_EOR3)
  173. #endif