Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / testing / selftests / powerpc / tm / tm.h
blobc03c6e77887679dfb850a4149c6b2f5dda59de31
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright 2015, Michael Ellerman, IBM Corp.
4 */
6 #ifndef _SELFTESTS_POWERPC_TM_TM_H
7 #define _SELFTESTS_POWERPC_TM_TM_H
9 #include <stdbool.h>
10 #include <asm/tm.h>
12 #include "utils.h"
13 #include "reg.h"
15 #define TM_RETRIES 100
17 static inline bool have_htm(void)
19 #ifdef PPC_FEATURE2_HTM
20 return have_hwcap2(PPC_FEATURE2_HTM);
21 #else
22 printf("PPC_FEATURE2_HTM not defined, can't check AT_HWCAP2\n");
23 return false;
24 #endif
27 static inline bool have_htm_nosc(void)
29 #ifdef PPC_FEATURE2_HTM_NOSC
30 return have_hwcap2(PPC_FEATURE2_HTM_NOSC);
31 #else
32 printf("PPC_FEATURE2_HTM_NOSC not defined, can't check AT_HWCAP2\n");
33 return false;
34 #endif
38 * Transactional Memory was removed in ISA 3.1. A synthetic TM implementation
39 * is provided on P10 for threads running in P8/P9 compatibility mode. The
40 * synthetic implementation immediately fails after tbegin. This failure sets
41 * Bit 7 (Failure Persistent) and Bit 15 (Implementation-specific).
43 static inline bool htm_is_synthetic(void)
45 int i;
48 * Per the ISA, the Failure Persistent bit may be incorrect. Try a few
49 * times in case we got an Implementation-specific failure on a non ISA
50 * v3.1 system. On these systems the Implementation-specific failure
51 * should not be persistent.
53 for (i = 0; i < TM_RETRIES; i++) {
54 asm volatile(
55 "tbegin.;"
56 "beq 1f;"
57 "tend.;"
58 "1:"
61 : "memory");
63 if ((__builtin_get_texasr() & (TEXASR_FP | TEXASR_IC)) !=
64 (TEXASR_FP | TEXASR_IC))
65 break;
67 return i == TM_RETRIES;
70 static inline long failure_code(void)
72 return __builtin_get_texasru() >> 24;
75 static inline bool failure_is_persistent(void)
77 return (failure_code() & TM_CAUSE_PERSISTENT) == TM_CAUSE_PERSISTENT;
80 static inline bool failure_is_syscall(void)
82 return (failure_code() & TM_CAUSE_SYSCALL) == TM_CAUSE_SYSCALL;
85 static inline bool failure_is_unavailable(void)
87 return (failure_code() & TM_CAUSE_FAC_UNAV) == TM_CAUSE_FAC_UNAV;
90 static inline bool failure_is_reschedule(void)
92 if ((failure_code() & TM_CAUSE_RESCHED) == TM_CAUSE_RESCHED ||
93 (failure_code() & TM_CAUSE_KVM_RESCHED) == TM_CAUSE_KVM_RESCHED ||
94 (failure_code() & TM_CAUSE_KVM_FAC_UNAV) == TM_CAUSE_KVM_FAC_UNAV)
95 return true;
97 return false;
100 static inline bool failure_is_nesting(void)
102 return (__builtin_get_texasru() & 0x400000);
105 static inline int tcheck(void)
107 long cr;
108 asm volatile ("tcheck 0" : "=r"(cr) : : "cr0");
109 return (cr >> 28) & 4;
112 static inline bool tcheck_doomed(void)
114 return tcheck() & 8;
117 static inline bool tcheck_active(void)
119 return tcheck() & 4;
122 static inline bool tcheck_suspended(void)
124 return tcheck() & 2;
127 static inline bool tcheck_transactional(void)
129 return tcheck() & 6;
132 #endif /* _SELFTESTS_POWERPC_TM_TM_H */