ALSA: hda - Adding one more ALC255 pin definition for headset problem
[linux/fpc-iii.git] / tools / testing / selftests / powerpc / tm / tm.h
blob60318bad7d7af0335e8bbf691747c9ebad899f45
1 /*
2 * Copyright 2015, Michael Ellerman, IBM Corp.
3 * Licensed under GPLv2.
4 */
6 #ifndef _SELFTESTS_POWERPC_TM_TM_H
7 #define _SELFTESTS_POWERPC_TM_TM_H
9 #include <asm/tm.h>
10 #include <asm/cputable.h>
11 #include <stdbool.h>
13 #include "../utils.h"
15 static inline bool have_htm(void)
17 #ifdef PPC_FEATURE2_HTM
18 return have_hwcap2(PPC_FEATURE2_HTM);
19 #else
20 printf("PPC_FEATURE2_HTM not defined, can't check AT_HWCAP2\n");
21 return false;
22 #endif
25 static inline bool have_htm_nosc(void)
27 #ifdef PPC_FEATURE2_HTM_NOSC
28 return have_hwcap2(PPC_FEATURE2_HTM_NOSC);
29 #else
30 printf("PPC_FEATURE2_HTM_NOSC not defined, can't check AT_HWCAP2\n");
31 return false;
32 #endif
35 static inline long failure_code(void)
37 return __builtin_get_texasru() >> 24;
40 static inline bool failure_is_persistent(void)
42 return (failure_code() & TM_CAUSE_PERSISTENT) == TM_CAUSE_PERSISTENT;
45 static inline bool failure_is_syscall(void)
47 return (failure_code() & TM_CAUSE_SYSCALL) == TM_CAUSE_SYSCALL;
50 static inline bool failure_is_nesting(void)
52 return (__builtin_get_texasru() & 0x400000);
55 #endif /* _SELFTESTS_POWERPC_TM_TM_H */