projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cff993c
)
aarch64: add HWCAP_ definitions from linux v5.0
author
Szabolcs Nagy
<nsz@port70.net>
Thu, 7 Mar 2019 21:58:12 +0000
(21:58 +0000)
committer
Rich Felker
<dalias@aerifal.cx>
Wed, 13 Mar 2019 16:35:02 +0000
(12:35 -0400)
HWCAP_SB - speculation barrier instruction available added in linux
commit
bd4fb6d270bc423a9a4098108784f7f9254c4e6d
HWCAP_PACA, HWCAP_PACG - pointer authentication instructions available
(address and generic) added in linux commit
7503197562567b57ec14feb3a9d5400ebc56812f
arch/aarch64/bits/hwcap.h
patch
|
blob
|
history
diff --git
a/arch/aarch64/bits/hwcap.h
b/arch/aarch64/bits/hwcap.h
index 8c04001448ecb00e12bede8adf7fad2e61f1f768..ad670914c82b329804b5a0b09fe408a2bad73005 100644
(file)
--- a/
arch/aarch64/bits/hwcap.h
+++ b/
arch/aarch64/bits/hwcap.h
@@
-27,3
+27,6
@@
#define HWCAP_ILRCPC (1 << 26)
#define HWCAP_FLAGM (1 << 27)
#define HWCAP_SSBS (1 << 28)
+#define HWCAP_SB (1 << 29)
+#define HWCAP_PACA (1 << 30)
+#define HWCAP_PACG (1UL << 31)