powerpc: Add tests for __ppc_set_ppr_* functions.
[glibc.git] / sysdeps / powerpc / tst-set_ppr.c
blob77901b58fb63b896a67972a16514a5eb18dcf114
1 /* Test the implementation of __ppc_set_ppr_* functions.
2 Copyright (C) 2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <dl-procinfo.h>
20 #include <inttypes.h>
21 #include <stdio.h>
22 #include <stdint.h>
23 #include <sys/auxv.h>
25 #include <sys/platform/ppc.h>
27 #include <support/test-driver.h>
29 #ifdef __powerpc64__
30 typedef uint64_t ppr_t;
31 # define MFPPR "mfppr"
32 /* The thread priority value is obtained from bits 11:13. */
33 # define EXTRACT_THREAD_PRIORITY(x) ((x >> 50) & 7)
34 #else
35 typedef uint32_t ppr_t;
36 # define MFPPR "mfppr32"
37 /* For 32-bit, the upper 32 bits of the Program Priority Register (PPR)
38 are used, so the thread priority value is obtained from bits 43:46. */
39 # define EXTRACT_THREAD_PRIORITY(x) ((x >> 18) & 7)
40 #endif /* !__powerpc64__ */
42 /* Read the thread priority value set in the PPR. */
43 static __inline__ ppr_t
44 get_thread_priority (void)
46 /* Read the PPR. */
47 ppr_t ppr;
48 asm volatile (MFPPR" %0" : "=r"(ppr));
49 /* Return the thread priority value. */
50 return EXTRACT_THREAD_PRIORITY (ppr);
53 /* Check the thread priority bits of PPR are set as expected. */
54 uint8_t
55 check_thread_priority (uint8_t expected)
57 ppr_t actual = get_thread_priority ();
59 if (actual != expected)
61 printf ("FAIL: Expected %"PRIu8" got %"PRIuMAX".\n", expected,
62 (uintmax_t) actual);
63 return 1;
65 printf ("PASS: Thread priority set to %"PRIu8" correctly.\n", expected);
66 return 0;
69 /* The Power ISA 2.06 allows the following thread priorities for any
70 problem state program: low (2), medium low (3), and medium (4).
71 Power ISA 2.07b added very low (1).
72 Check whether the values set by __ppc_set_ppr_* are correct. */
73 static int
74 do_test (void)
76 /* Check for the minimum required Power ISA to run these tests. */
77 if ((getauxval (AT_HWCAP) & PPC_FEATURE_ARCH_2_06) == 0)
79 printf ("Requires an environment that implements the Power ISA version"
80 " 2.06 or greater.\n");
81 return EXIT_UNSUPPORTED;
84 uint8_t rc = 0;
86 #ifdef _ARCH_PWR8
87 __ppc_set_ppr_very_low ();
88 rc |= check_thread_priority (1);
89 #endif /* _ARCH_PWR8 */
91 __ppc_set_ppr_low ();
92 rc |= check_thread_priority (2);
94 __ppc_set_ppr_med_low ();
95 rc |= check_thread_priority (3);
97 __ppc_set_ppr_med ();
98 rc |= check_thread_priority (4);
100 return rc;
103 #include <support/test-driver.c>