1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * Compiler-dependent intrinsics.
5 * Copyright (C) 2002-2003 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
8 #ifndef _UAPI_ASM_IA64_INTRINSICS_H
9 #define _UAPI_ASM_IA64_INTRINSICS_H
14 #include <linux/types.h>
15 /* include compiler specific intrinsics */
16 #include <asm/ia64regs.h>
17 #ifdef __INTEL_COMPILER
18 # include <asm/intel_intrin.h>
20 # include <asm/gcc_intrin.h>
22 #include <asm/cmpxchg.h>
24 #define ia64_native_get_psr_i() (ia64_native_getreg(_IA64_REG_PSR) & IA64_PSR_I)
26 #define ia64_native_set_rr0_to_rr4(val0, val1, val2, val3, val4) \
28 ia64_native_set_rr(0x0000000000000000UL, (val0)); \
29 ia64_native_set_rr(0x2000000000000000UL, (val1)); \
30 ia64_native_set_rr(0x4000000000000000UL, (val2)); \
31 ia64_native_set_rr(0x6000000000000000UL, (val3)); \
32 ia64_native_set_rr(0x8000000000000000UL, (val4)); \
36 * Force an unresolved reference if someone tries to use
37 * ia64_fetch_and_add() with a bad value.
39 extern unsigned long __bad_size_for_ia64_fetch_and_add (void);
40 extern unsigned long __bad_increment_for_ia64_fetch_and_add (void);
42 #define IA64_FETCHADD(tmp,v,n,sz,sem) \
46 tmp = ia64_fetchadd4_##sem((unsigned int *) v, n); \
50 tmp = ia64_fetchadd8_##sem((unsigned long *) v, n); \
54 __bad_size_for_ia64_fetch_and_add(); \
58 #define ia64_fetchadd(i,v,sem) \
61 volatile __typeof__(*(v)) *_v = (v); \
62 /* Can't use a switch () here: gcc isn't always smart enough for that... */ \
64 IA64_FETCHADD(_tmp, _v, -16, sizeof(*(v)), sem); \
66 IA64_FETCHADD(_tmp, _v, -8, sizeof(*(v)), sem); \
68 IA64_FETCHADD(_tmp, _v, -4, sizeof(*(v)), sem); \
70 IA64_FETCHADD(_tmp, _v, -1, sizeof(*(v)), sem); \
72 IA64_FETCHADD(_tmp, _v, 1, sizeof(*(v)), sem); \
74 IA64_FETCHADD(_tmp, _v, 4, sizeof(*(v)), sem); \
76 IA64_FETCHADD(_tmp, _v, 8, sizeof(*(v)), sem); \
78 IA64_FETCHADD(_tmp, _v, 16, sizeof(*(v)), sem); \
80 _tmp = __bad_increment_for_ia64_fetch_and_add(); \
81 (__typeof__(*(v))) (_tmp); /* return old value */ \
84 #define ia64_fetch_and_add(i,v) (ia64_fetchadd(i, v, rel) + (i)) /* return new value */
91 #define IA64_INTRINSIC_API(name) ia64_native_ ## name
92 #define IA64_INTRINSIC_MACRO(name) ia64_native_ ## name
95 /************************************************/
96 /* Instructions paravirtualized for correctness */
97 /************************************************/
98 /* fc, thash, get_cpuid, get_pmd, get_eflags, set_eflags */
99 /* Note that "ttag" and "cover" are also privilege-sensitive; "ttag"
100 * is not currently used (though it may be in a long-format VHPT system!)
102 #define ia64_fc IA64_INTRINSIC_API(fc)
103 #define ia64_thash IA64_INTRINSIC_API(thash)
104 #define ia64_get_cpuid IA64_INTRINSIC_API(get_cpuid)
105 #define ia64_get_pmd IA64_INTRINSIC_API(get_pmd)
108 /************************************************/
109 /* Instructions paravirtualized for performance */
110 /************************************************/
111 #define ia64_ssm IA64_INTRINSIC_MACRO(ssm)
112 #define ia64_rsm IA64_INTRINSIC_MACRO(rsm)
113 #define ia64_getreg IA64_INTRINSIC_MACRO(getreg)
114 #define ia64_setreg IA64_INTRINSIC_API(setreg)
115 #define ia64_set_rr IA64_INTRINSIC_API(set_rr)
116 #define ia64_get_rr IA64_INTRINSIC_API(get_rr)
117 #define ia64_ptcga IA64_INTRINSIC_API(ptcga)
118 #define ia64_get_psr_i IA64_INTRINSIC_API(get_psr_i)
119 #define ia64_intrin_local_irq_restore \
120 IA64_INTRINSIC_API(intrin_local_irq_restore)
121 #define ia64_set_rr0_to_rr4 IA64_INTRINSIC_API(set_rr0_to_rr4)
123 #endif /* !__ASSEMBLY__ */
125 #endif /* _UAPI_ASM_IA64_INTRINSICS_H */