From: Szabolcs Nagy Date: Fri, 2 Feb 2018 20:46:45 +0000 (+0000) Subject: aarch64: update hwcap.h for linux v4.15 X-Git-Tag: v1.1.20~163 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5a4a780ccb864a1e97483fe9c94858f24e1f02a2;p=oweals%2Fmusl.git aarch64: update hwcap.h for linux v4.15 HWCAP_SVE is new in linux commit 43994d824e8443263dc98b151e6326bf677be52e HWCAP_SHA3, HWCAP_SM3, HWCAP_SM4, HWCAP_ASIMDDP and HWCAP_SHA512 are new in f5e035f8694c3bdddc66ea46ecda965ee6853718 --- diff --git a/arch/aarch64/bits/hwcap.h b/arch/aarch64/bits/hwcap.h index 87f71ff3..1727a387 100644 --- a/arch/aarch64/bits/hwcap.h +++ b/arch/aarch64/bits/hwcap.h @@ -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)