1 #ifndef __ARCH_S390_ATOMIC__
2 #define __ARCH_S390_ATOMIC__
5 * include/asm-s390/atomic.h
8 * Copyright (C) 1999-2005 IBM Deutschland Entwicklung GmbH, IBM Corporation
9 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
10 * Denis Joseph Barrow,
11 * Arnd Bergmann (arndb@de.ibm.com)
13 * Derived from "include/asm-i386/bitops.h"
14 * Copyright (C) 1992, Linus Torvalds
19 * Atomic operations that C can't guarantee us. Useful for
20 * resource counting etc..
21 * S390 uses 'Compare And Swap' for atomicity in SMP enviroment
26 } __attribute__ ((aligned (4))) atomic_t;
27 #define ATOMIC_INIT(i) { (i) }
31 #define __CS_LOOP(ptr, op_val, op_string) ({ \
32 typeof(ptr->counter) old_val, new_val; \
33 __asm__ __volatile__(" l %0,0(%3)\n" \
35 op_string " %1,%4\n" \
38 : "=&d" (old_val), "=&d" (new_val), \
39 "=m" (((atomic_t *)(ptr))->counter) \
40 : "a" (ptr), "d" (op_val), \
41 "m" (((atomic_t *)(ptr))->counter) \
45 #define atomic_read(v) ((v)->counter)
46 #define atomic_set(v,i) (((v)->counter) = (i))
48 static __inline__ int atomic_add_return(int i, atomic_t * v)
50 return __CS_LOOP(v, i, "ar");
52 #define atomic_add(_i, _v) atomic_add_return(_i, _v)
53 #define atomic_add_negative(_i, _v) (atomic_add_return(_i, _v) < 0)
54 #define atomic_inc(_v) atomic_add_return(1, _v)
55 #define atomic_inc_return(_v) atomic_add_return(1, _v)
56 #define atomic_inc_and_test(_v) (atomic_add_return(1, _v) == 0)
58 static __inline__ int atomic_sub_return(int i, atomic_t * v)
60 return __CS_LOOP(v, i, "sr");
62 #define atomic_sub(_i, _v) atomic_sub_return(_i, _v)
63 #define atomic_sub_and_test(_i, _v) (atomic_sub_return(_i, _v) == 0)
64 #define atomic_dec(_v) atomic_sub_return(1, _v)
65 #define atomic_dec_return(_v) atomic_sub_return(1, _v)
66 #define atomic_dec_and_test(_v) (atomic_sub_return(1, _v) == 0)
68 static __inline__ void atomic_clear_mask(unsigned long mask, atomic_t * v)
70 __CS_LOOP(v, ~mask, "nr");
73 static __inline__ void atomic_set_mask(unsigned long mask, atomic_t * v)
75 __CS_LOOP(v, mask, "or");
78 #define atomic_xchg(v, new) (xchg(&((v)->counter), new))
80 static __inline__ int atomic_cmpxchg(atomic_t *v, int old, int new)
82 __asm__ __volatile__(" cs %0,%3,0(%2)\n"
83 : "+d" (old), "=m" (v->counter)
84 : "a" (v), "d" (new), "m" (v->counter)
89 static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)
94 while (c != u && (old = atomic_cmpxchg(v, c, c + a)) != c)
99 #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
105 volatile long long counter;
106 } __attribute__ ((aligned (8))) atomic64_t;
107 #define ATOMIC64_INIT(i) { (i) }
109 #define __CSG_LOOP(ptr, op_val, op_string) ({ \
110 typeof(ptr->counter) old_val, new_val; \
111 __asm__ __volatile__(" lg %0,0(%3)\n" \
113 op_string " %1,%4\n" \
114 " csg %0,%1,0(%3)\n" \
116 : "=&d" (old_val), "=&d" (new_val), \
117 "=m" (((atomic_t *)(ptr))->counter) \
118 : "a" (ptr), "d" (op_val), \
119 "m" (((atomic_t *)(ptr))->counter) \
120 : "cc", "memory" ); \
123 #define atomic64_read(v) ((v)->counter)
124 #define atomic64_set(v,i) (((v)->counter) = (i))
126 static __inline__ long long atomic64_add_return(long long i, atomic64_t * v)
128 return __CSG_LOOP(v, i, "agr");
130 #define atomic64_add(_i, _v) atomic64_add_return(_i, _v)
131 #define atomic64_add_negative(_i, _v) (atomic64_add_return(_i, _v) < 0)
132 #define atomic64_inc(_v) atomic64_add_return(1, _v)
133 #define atomic64_inc_return(_v) atomic64_add_return(1, _v)
134 #define atomic64_inc_and_test(_v) (atomic64_add_return(1, _v) == 0)
136 static __inline__ long long atomic64_sub_return(long long i, atomic64_t * v)
138 return __CSG_LOOP(v, i, "sgr");
140 #define atomic64_sub(_i, _v) atomic64_sub_return(_i, _v)
141 #define atomic64_sub_and_test(_i, _v) (atomic64_sub_return(_i, _v) == 0)
142 #define atomic64_dec(_v) atomic64_sub_return(1, _v)
143 #define atomic64_dec_return(_v) atomic64_sub_return(1, _v)
144 #define atomic64_dec_and_test(_v) (atomic64_sub_return(1, _v) == 0)
146 static __inline__ void atomic64_clear_mask(unsigned long mask, atomic64_t * v)
148 __CSG_LOOP(v, ~mask, "ngr");
151 static __inline__ void atomic64_set_mask(unsigned long mask, atomic64_t * v)
153 __CSG_LOOP(v, mask, "ogr");
156 static __inline__ long long atomic64_cmpxchg(atomic64_t *v,
157 long long old, long long new)
159 __asm__ __volatile__(" csg %0,%3,0(%2)\n"
160 : "+d" (old), "=m" (v->counter)
161 : "a" (v), "d" (new), "m" (v->counter)
166 static __inline__ int atomic64_add_unless(atomic64_t *v,
167 long long a, long long u)
171 c = atomic64_read(v);
172 while (c != u && (old = atomic64_cmpxchg(v, c, c + a)) != c)
177 #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
182 #define smp_mb__before_atomic_dec() smp_mb()
183 #define smp_mb__after_atomic_dec() smp_mb()
184 #define smp_mb__before_atomic_inc() smp_mb()
185 #define smp_mb__after_atomic_inc() smp_mb()
187 #include <asm-generic/atomic.h>
188 #endif /* __KERNEL__ */
189 #endif /* __ARCH_S390_ATOMIC__ */