1 /* 64-bit atomic xchg() and cmpxchg() definitions.
3 * Copyright (C) 1996, 1997, 2000 David S. Miller (davem@redhat.com)
6 #ifndef __ARCH_SPARC64_CMPXCHG__
7 #define __ARCH_SPARC64_CMPXCHG__
9 static inline unsigned long xchg32(__volatile__
unsigned int *m
, unsigned int val
)
11 unsigned long tmp1
, tmp2
;
18 " bne,a,pn %%icc, 1b\n"
20 : "=&r" (val
), "=&r" (tmp1
), "=&r" (tmp2
)
26 static inline unsigned long xchg64(__volatile__
unsigned long *m
, unsigned long val
)
28 unsigned long tmp1
, tmp2
;
33 " casx [%4], %2, %0\n"
35 " bne,a,pn %%xcc, 1b\n"
37 : "=&r" (val
), "=&r" (tmp1
), "=&r" (tmp2
)
43 #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
45 void __xchg_called_with_bad_pointer(void);
47 static inline unsigned long __xchg(unsigned long x
, __volatile__
void * ptr
,
52 return xchg32(ptr
, x
);
54 return xchg64(ptr
, x
);
56 __xchg_called_with_bad_pointer();
61 * Atomic compare and exchange. Compare OLD with MEM, if identical,
62 * store NEW in MEM. Return the initial value in MEM. Success is
63 * indicated by comparing RETURN with OLD.
66 #include <asm-generic/cmpxchg-local.h>
68 static inline unsigned long
69 __cmpxchg_u32(volatile int *m
, int old
, int new)
71 __asm__
__volatile__("cas [%2], %3, %0"
73 : "0" (new), "r" (m
), "r" (old
)
79 static inline unsigned long
80 __cmpxchg_u64(volatile long *m
, unsigned long old
, unsigned long new)
82 __asm__
__volatile__("casx [%2], %3, %0"
84 : "0" (new), "r" (m
), "r" (old
)
90 /* This function doesn't exist, so you'll get a linker error
91 if something tries to do an invalid cmpxchg(). */
92 void __cmpxchg_called_with_bad_pointer(void);
94 static inline unsigned long
95 __cmpxchg(volatile void *ptr
, unsigned long old
, unsigned long new, int size
)
99 return __cmpxchg_u32(ptr
, old
, new);
101 return __cmpxchg_u64(ptr
, old
, new);
103 __cmpxchg_called_with_bad_pointer();
107 #define cmpxchg(ptr,o,n) \
109 __typeof__(*(ptr)) _o_ = (o); \
110 __typeof__(*(ptr)) _n_ = (n); \
111 (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
112 (unsigned long)_n_, sizeof(*(ptr))); \
116 * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make
120 static inline unsigned long __cmpxchg_local(volatile void *ptr
,
122 unsigned long new, int size
)
126 case 8: return __cmpxchg(ptr
, old
, new, size
);
128 return __cmpxchg_local_generic(ptr
, old
, new, size
);
134 #define cmpxchg_local(ptr, o, n) \
135 ((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \
136 (unsigned long)(n), sizeof(*(ptr))))
137 #define cmpxchg64_local(ptr, o, n) \
139 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
140 cmpxchg_local((ptr), (o), (n)); \
142 #define cmpxchg64(ptr, o, n) cmpxchg64_local((ptr), (o), (n))
144 #endif /* __ARCH_SPARC64_CMPXCHG__ */