aarch64: update hwcap.h for linux v4.15
authorSzabolcs Nagy <nsz@port70.net>
Fri, 2 Feb 2018 20:46:45 +0000 (20:46 +0000)
committerRich Felker <dalias@aerifal.cx>
Thu, 22 Feb 2018 23:49:29 +0000 (18:49 -0500)
HWCAP_SVE is new in linux commit 43994d824e8443263dc98b151e6326bf677be52e
HWCAP_SHA3, HWCAP_SM3, HWCAP_SM4, HWCAP_ASIMDDP and HWCAP_SHA512 are new in
f5e035f8694c3bdddc66ea46ecda965ee6853718

arch/aarch64/bits/hwcap.h

index 87f71ff..1727a38 100644 (file)
@@ -15,3 +15,9 @@
 #define HWCAP_FCMA             (1 << 14)
 #define HWCAP_LRCPC            (1 << 15)
 #define HWCAP_DCPOP            (1 << 16)
+#define HWCAP_SHA3             (1 << 17)
+#define HWCAP_SM3              (1 << 18)
+#define HWCAP_SM4              (1 << 19)
+#define HWCAP_ASIMDDP          (1 << 20)
+#define HWCAP_SHA512           (1 << 21)
+#define HWCAP_SVE              (1 << 22)