1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright 2015, Michael Ellerman, IBM Corp.
6 #ifndef _SELFTESTS_POWERPC_TM_TM_H
7 #define _SELFTESTS_POWERPC_TM_TM_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
);
22 printf("PPC_FEATURE2_HTM not defined, can't check AT_HWCAP2\n");
27 static inline bool have_htm_nosc(void)
29 #ifdef PPC_FEATURE2_HTM_NOSC
30 return have_hwcap2(PPC_FEATURE2_HTM_NOSC
);
32 printf("PPC_FEATURE2_HTM_NOSC not defined, can't check AT_HWCAP2\n");
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)
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
++) {
63 if ((__builtin_get_texasr() & (TEXASR_FP
| TEXASR_IC
)) !=
64 (TEXASR_FP
| TEXASR_IC
))
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
)
100 static inline bool failure_is_nesting(void)
102 return (__builtin_get_texasru() & 0x400000);
105 static inline int tcheck(void)
108 asm volatile ("tcheck 0" : "=r"(cr
) : : "cr0");
109 return (cr
>> 28) & 4;
112 static inline bool tcheck_doomed(void)
117 static inline bool tcheck_active(void)
122 static inline bool tcheck_suspended(void)
127 static inline bool tcheck_transactional(void)
132 #endif /* _SELFTESTS_POWERPC_TM_TM_H */