blob: 399bf02894dd10cf5fc320557484eb0fcb27f7cd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ARCH_S390_ATOMIC__
2#define __ARCH_S390_ATOMIC__
3
Dave Jones5bd1db62006-04-10 22:53:51 -07004#include <linux/compiler.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/*
7 * include/asm-s390/atomic.h
8 *
9 * S390 version
Martin Schwidefsky973bd992006-01-06 00:19:07 -080010 * Copyright (C) 1999-2005 IBM Deutschland Entwicklung GmbH, IBM Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
12 * Denis Joseph Barrow,
13 * Arnd Bergmann (arndb@de.ibm.com)
14 *
15 * Derived from "include/asm-i386/bitops.h"
16 * Copyright (C) 1992, Linus Torvalds
17 *
18 */
19
20/*
21 * Atomic operations that C can't guarantee us. Useful for
22 * resource counting etc..
23 * S390 uses 'Compare And Swap' for atomicity in SMP enviroment
24 */
25
26typedef struct {
27 volatile int counter;
28} __attribute__ ((aligned (4))) atomic_t;
29#define ATOMIC_INIT(i) { (i) }
30
31#ifdef __KERNEL__
32
33#define __CS_LOOP(ptr, op_val, op_string) ({ \
34 typeof(ptr->counter) old_val, new_val; \
35 __asm__ __volatile__(" l %0,0(%3)\n" \
36 "0: lr %1,%0\n" \
37 op_string " %1,%4\n" \
38 " cs %0,%1,0(%3)\n" \
39 " jl 0b" \
40 : "=&d" (old_val), "=&d" (new_val), \
41 "=m" (((atomic_t *)(ptr))->counter) \
42 : "a" (ptr), "d" (op_val), \
43 "m" (((atomic_t *)(ptr))->counter) \
44 : "cc", "memory" ); \
45 new_val; \
46})
47#define atomic_read(v) ((v)->counter)
48#define atomic_set(v,i) (((v)->counter) = (i))
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static __inline__ int atomic_add_return(int i, atomic_t * v)
51{
52 return __CS_LOOP(v, i, "ar");
53}
Martin Schwidefsky973bd992006-01-06 00:19:07 -080054#define atomic_add(_i, _v) atomic_add_return(_i, _v)
55#define atomic_add_negative(_i, _v) (atomic_add_return(_i, _v) < 0)
56#define atomic_inc(_v) atomic_add_return(1, _v)
57#define atomic_inc_return(_v) atomic_add_return(1, _v)
58#define atomic_inc_and_test(_v) (atomic_add_return(1, _v) == 0)
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static __inline__ int atomic_sub_return(int i, atomic_t * v)
61{
62 return __CS_LOOP(v, i, "sr");
63}
Martin Schwidefsky973bd992006-01-06 00:19:07 -080064#define atomic_sub(_i, _v) atomic_sub_return(_i, _v)
65#define atomic_sub_and_test(_i, _v) (atomic_sub_return(_i, _v) == 0)
66#define atomic_dec(_v) atomic_sub_return(1, _v)
67#define atomic_dec_return(_v) atomic_sub_return(1, _v)
68#define atomic_dec_and_test(_v) (atomic_sub_return(1, _v) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static __inline__ void atomic_clear_mask(unsigned long mask, atomic_t * v)
71{
72 __CS_LOOP(v, ~mask, "nr");
73}
Martin Schwidefsky973bd992006-01-06 00:19:07 -080074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static __inline__ void atomic_set_mask(unsigned long mask, atomic_t * v)
76{
77 __CS_LOOP(v, mask, "or");
78}
Martin Schwidefsky973bd992006-01-06 00:19:07 -080079
Ingo Molnarffbf6702006-01-09 15:59:17 -080080#define atomic_xchg(v, new) (xchg(&((v)->counter), new))
81
Martin Schwidefsky973bd992006-01-06 00:19:07 -080082static __inline__ int atomic_cmpxchg(atomic_t *v, int old, int new)
83{
84 __asm__ __volatile__(" cs %0,%3,0(%2)\n"
85 : "+d" (old), "=m" (v->counter)
86 : "a" (v), "d" (new), "m" (v->counter)
87 : "cc", "memory" );
88 return old;
89}
90
91static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)
92{
93 int c, old;
Martin Schwidefsky973bd992006-01-06 00:19:07 -080094 c = atomic_read(v);
Nick Piggin0b2fcfd2006-03-23 03:01:02 -080095 for (;;) {
96 if (unlikely(c == u))
97 break;
98 old = atomic_cmpxchg(v, c, c + a);
99 if (likely(old == c))
100 break;
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800101 c = old;
Nick Piggin0b2fcfd2006-03-23 03:01:02 -0800102 }
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800103 return c != u;
104}
105
106#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#undef __CS_LOOP
109
110#ifdef __s390x__
111typedef struct {
112 volatile long long counter;
113} __attribute__ ((aligned (8))) atomic64_t;
114#define ATOMIC64_INIT(i) { (i) }
115
116#define __CSG_LOOP(ptr, op_val, op_string) ({ \
117 typeof(ptr->counter) old_val, new_val; \
118 __asm__ __volatile__(" lg %0,0(%3)\n" \
119 "0: lgr %1,%0\n" \
120 op_string " %1,%4\n" \
121 " csg %0,%1,0(%3)\n" \
122 " jl 0b" \
123 : "=&d" (old_val), "=&d" (new_val), \
124 "=m" (((atomic_t *)(ptr))->counter) \
125 : "a" (ptr), "d" (op_val), \
126 "m" (((atomic_t *)(ptr))->counter) \
127 : "cc", "memory" ); \
128 new_val; \
129})
130#define atomic64_read(v) ((v)->counter)
131#define atomic64_set(v,i) (((v)->counter) = (i))
132
Heiko Carstens46ee0582005-07-27 11:44:59 -0700133static __inline__ long long atomic64_add_return(long long i, atomic64_t * v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 return __CSG_LOOP(v, i, "agr");
136}
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800137#define atomic64_add(_i, _v) atomic64_add_return(_i, _v)
138#define atomic64_add_negative(_i, _v) (atomic64_add_return(_i, _v) < 0)
139#define atomic64_inc(_v) atomic64_add_return(1, _v)
140#define atomic64_inc_return(_v) atomic64_add_return(1, _v)
141#define atomic64_inc_and_test(_v) (atomic64_add_return(1, _v) == 0)
142
143static __inline__ long long atomic64_sub_return(long long i, atomic64_t * v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800145 return __CSG_LOOP(v, i, "sgr");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800147#define atomic64_sub(_i, _v) atomic64_sub_return(_i, _v)
148#define atomic64_sub_and_test(_i, _v) (atomic64_sub_return(_i, _v) == 0)
149#define atomic64_dec(_v) atomic64_sub_return(1, _v)
150#define atomic64_dec_return(_v) atomic64_sub_return(1, _v)
151#define atomic64_dec_and_test(_v) (atomic64_sub_return(1, _v) == 0)
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static __inline__ void atomic64_clear_mask(unsigned long mask, atomic64_t * v)
154{
155 __CSG_LOOP(v, ~mask, "ngr");
156}
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static __inline__ void atomic64_set_mask(unsigned long mask, atomic64_t * v)
159{
160 __CSG_LOOP(v, mask, "ogr");
161}
162
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800163static __inline__ long long atomic64_cmpxchg(atomic64_t *v,
164 long long old, long long new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800166 __asm__ __volatile__(" csg %0,%3,0(%2)\n"
167 : "+d" (old), "=m" (v->counter)
168 : "a" (v), "d" (new), "m" (v->counter)
169 : "cc", "memory" );
170 return old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800173static __inline__ int atomic64_add_unless(atomic64_t *v,
174 long long a, long long u)
175{
176 long long c, old;
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800177 c = atomic64_read(v);
Nick Piggin0b2fcfd2006-03-23 03:01:02 -0800178 for (;;) {
179 if (unlikely(c == u))
180 break;
181 old = atomic64_cmpxchg(v, c, c + a);
182 if (likely(old == c))
183 break;
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800184 c = old;
Nick Piggin0b2fcfd2006-03-23 03:01:02 -0800185 }
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800186 return c != u;
187}
188
189#define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
190
191#undef __CSG_LOOP
192#endif
Nick Piggin8426e1f2005-11-13 16:07:25 -0800193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#define smp_mb__before_atomic_dec() smp_mb()
195#define smp_mb__after_atomic_dec() smp_mb()
196#define smp_mb__before_atomic_inc() smp_mb()
197#define smp_mb__after_atomic_inc() smp_mb()
198
Christoph Lameterd3cb4872006-01-06 00:11:20 -0800199#include <asm-generic/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif /* __KERNEL__ */
201#endif /* __ARCH_S390_ATOMIC__ */