This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] powerpc: Fix tst-set_ppr.c on 32-bit POWER7


Instruction mfppr32 is categorized as phased-in in the POWER ISA 2.06,
which means that servers do not implement it.
It started to be available in POWER ISA 2.07.

2018-03-02  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>

	* sysdeps/powerpc/tst-set_ppr.c (do_test): Test for
	PPC_FEATURE2_ARCH_2_07 before trying to read the PPR32 on a
	POWER7 system.

Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
---
 sysdeps/powerpc/tst-set_ppr.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/sysdeps/powerpc/tst-set_ppr.c b/sysdeps/powerpc/tst-set_ppr.c
index c4f8096..da8c4cd 100644
--- a/sysdeps/powerpc/tst-set_ppr.c
+++ b/sysdeps/powerpc/tst-set_ppr.c
@@ -73,13 +73,21 @@ static int
 do_test (void)
 {
   /* Check for the minimum required Power ISA to run these tests.  */
+#ifdef __powerpc64__
   if ((getauxval (AT_HWCAP) & PPC_FEATURE_ARCH_2_06) == 0)
     {
       printf ("Requires an environment that implements the Power ISA version"
               " 2.06 or greater.\n");
       return EXIT_UNSUPPORTED;
     }
-
+#else
+  if ((getauxval (AT_HWCAP2) & PPC_FEATURE2_ARCH_2_07) == 0)
+    {
+      printf ("Requires an environment that implements the Power ISA version"
+              " 2.07 or greater.\n");
+      return EXIT_UNSUPPORTED;
+    }
+#endif
   uint8_t rc = 0;
 
 #ifdef _ARCH_PWR8
-- 
2.9.5


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]