|
|
c65238 |
commit 7dcdfbcf6749cdc4c63e2613cbb3e2392d2fc2fb
|
|
|
c65238 |
Author: Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
|
|
|
c65238 |
Date: Fri Jun 23 09:10:32 2017 -0300
|
|
|
c65238 |
|
|
|
c65238 |
powerpc: Update AT_HWCAP[2] bits
|
|
|
c65238 |
|
|
|
c65238 |
Linux commit ID a4700a26107241cc7b9ac8528b2c6714ff99983d reserved 2 more
|
|
|
c65238 |
bits for the instructions darn (Deliver a Random Number) and scv (System
|
|
|
c65238 |
Call Vectored).
|
|
|
c65238 |
|
|
|
c65238 |
Linux commit ID 6997e57d693b07289694239e52a10d2f02c3a46f reserved
|
|
|
c65238 |
another bit for internal usage.
|
|
|
c65238 |
|
|
|
c65238 |
* sysdeps/powerpc/bits/hwcap.h: Add PPC_FEATURE2_DARN and
|
|
|
c65238 |
PPC_FEATURE2_SCV.
|
|
|
c65238 |
* sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add scv
|
|
|
c65238 |
and darn.
|
|
|
c65238 |
|
|
|
c65238 |
diff --git a/sysdeps/powerpc/bits/hwcap.h b/sysdeps/powerpc/bits/hwcap.h
|
|
|
c65238 |
index c9daeed..dfc71c2 100644
|
|
|
c65238 |
--- a/sysdeps/powerpc/bits/hwcap.h
|
|
|
c65238 |
+++ b/sysdeps/powerpc/bits/hwcap.h
|
|
|
c65238 |
@@ -50,6 +50,7 @@
|
|
|
c65238 |
#define PPC_FEATURE_ARCH_2_06 0x00000100 /* ISA 2.06 */
|
|
|
c65238 |
#define PPC_FEATURE_HAS_VSX 0x00000080 /* P7 Vector Extension. */
|
|
|
c65238 |
#define PPC_FEATURE_PSERIES_PERFMON_COMPAT 0x00000040
|
|
|
c65238 |
+/* Reserved by the kernel. 0x00000004 Do not use. */
|
|
|
c65238 |
#define PPC_FEATURE_TRUE_LE 0x00000002
|
|
|
c65238 |
#define PPC_FEATURE_PPC_LE 0x00000001
|
|
|
c65238 |
|
|
|
c65238 |
@@ -69,3 +70,5 @@
|
|
|
c65238 |
#define PPC_FEATURE2_ARCH_3_00 0x00800000 /* ISA 3.0 */
|
|
|
c65238 |
#define PPC_FEATURE2_HAS_IEEE128 0x00400000 /* VSX IEEE Binary Float
|
|
|
c65238 |
128-bit */
|
|
|
c65238 |
+#define PPC_FEATURE2_DARN 0x00200000 /* darn instruction. */
|
|
|
c65238 |
+#define PPC_FEATURE2_SCV 0x00100000 /* scv syscall. */
|
|
|
c65238 |
diff --git a/sysdeps/powerpc/dl-procinfo.c b/sysdeps/powerpc/dl-procinfo.c
|
|
|
c65238 |
index cd7329b..4dac16d 100644
|
|
|
c65238 |
--- a/sysdeps/powerpc/dl-procinfo.c
|
|
|
c65238 |
+++ b/sysdeps/powerpc/dl-procinfo.c
|
|
|
c65238 |
@@ -62,7 +62,7 @@ PROCINFO_CLASS const char _dl_powerpc_cap_flags[64][10]
|
|
|
c65238 |
"", "", "", "",
|
|
|
c65238 |
"", "", "", "",
|
|
|
c65238 |
"", "", "", "",
|
|
|
c65238 |
- "", "", "ieee128", "arch_3_00",
|
|
|
c65238 |
+ "scv", "darn", "ieee128", "arch_3_00",
|
|
|
c65238 |
"htm-nosc", "vcrypto", "tar", "isel",
|
|
|
c65238 |
"ebb", "dscr", "htm", "arch_2_07",
|
|
|
c65238 |
}
|