Blame view

include/asm-frv/atomic.h 7.15 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /* atomic.h: atomic operation emulation for FR-V
   *
   * For an explanation of how atomic ops work in this arch, see:
   *   Documentation/fujitsu/frv/atomic-ops.txt
   *
   * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
   * Written by David Howells (dhowells@redhat.com)
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License
   * as published by the Free Software Foundation; either version
   * 2 of the License, or (at your option) any later version.
   */
  #ifndef _ASM_ATOMIC_H
  #define _ASM_ATOMIC_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
  #include <linux/types.h>
  #include <asm/spr-regs.h>
2856f5e31   Mathieu Desnoyers   atomic.h: atomic_...
18
  #include <asm/system.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
  
  #ifdef CONFIG_SMP
  #error not SMP safe
  #endif
  
  /*
   * Atomic operations that C can't guarantee us.  Useful for
   * resource counting etc..
   *
   * We do not have SMP systems, so we don't have to deal with that.
   */
  
  /* Atomic operations are already serializing */
  #define smp_mb__before_atomic_dec()	barrier()
  #define smp_mb__after_atomic_dec()	barrier()
  #define smp_mb__before_atomic_inc()	barrier()
  #define smp_mb__after_atomic_inc()	barrier()
  
  typedef struct {
  	int counter;
  } atomic_t;
  
  #define ATOMIC_INIT(i)		{ (i) }
  #define atomic_read(v)		((v)->counter)
  #define atomic_set(v, i)	(((v)->counter) = (i))
  
  #ifndef CONFIG_FRV_OUTOFLINE_ATOMIC_OPS
  static inline int atomic_add_return(int i, atomic_t *v)
  {
  	unsigned long val;
  
  	asm("0:						
  "
  	    "	orcc		gr0,gr0,gr0,icc3	
  "	/* set ICC3.Z */
  	    "	ckeq		icc3,cc7		
  "
  	    "	ld.p		%M0,%1			
  "	/* LD.P/ORCR must be atomic */
  	    "	orcr		cc7,cc7,cc3		
  "	/* set CC3 to true */
  	    "	add%I2		%1,%2,%1		
  "
  	    "	cst.p		%1,%M0		,cc3,#1	
  "
  	    "	corcc		gr29,gr29,gr0	,cc3,#1	
  "	/* clear ICC3.Z if store happens */
  	    "	beq		icc3,#0,0b		
  "
  	    : "+U"(v->counter), "=&r"(val)
  	    : "NPr"(i)
  	    : "memory", "cc7", "cc3", "icc3"
  	    );
  
  	return val;
  }
  
  static inline int atomic_sub_return(int i, atomic_t *v)
  {
  	unsigned long val;
  
  	asm("0:						
  "
  	    "	orcc		gr0,gr0,gr0,icc3	
  "	/* set ICC3.Z */
  	    "	ckeq		icc3,cc7		
  "
  	    "	ld.p		%M0,%1			
  "	/* LD.P/ORCR must be atomic */
  	    "	orcr		cc7,cc7,cc3		
  "	/* set CC3 to true */
  	    "	sub%I2		%1,%2,%1		
  "
  	    "	cst.p		%1,%M0		,cc3,#1	
  "
  	    "	corcc		gr29,gr29,gr0	,cc3,#1	
  "	/* clear ICC3.Z if store happens */
  	    "	beq		icc3,#0,0b		
  "
  	    : "+U"(v->counter), "=&r"(val)
  	    : "NPr"(i)
  	    : "memory", "cc7", "cc3", "icc3"
  	    );
  
  	return val;
  }
  
  #else
  
  extern int atomic_add_return(int i, atomic_t *v);
  extern int atomic_sub_return(int i, atomic_t *v);
  
  #endif
  
  static inline int atomic_add_negative(int i, atomic_t *v)
  {
  	return atomic_add_return(i, v) < 0;
  }
  
  static inline void atomic_add(int i, atomic_t *v)
  {
  	atomic_add_return(i, v);
  }
  
  static inline void atomic_sub(int i, atomic_t *v)
  {
  	atomic_sub_return(i, v);
  }
  
  static inline void atomic_inc(atomic_t *v)
  {
  	atomic_add_return(1, v);
  }
  
  static inline void atomic_dec(atomic_t *v)
  {
  	atomic_sub_return(1, v);
  }
  
  #define atomic_dec_return(v)		atomic_sub_return(1, (v))
  #define atomic_inc_return(v)		atomic_add_return(1, (v))
  
  #define atomic_sub_and_test(i,v)	(atomic_sub_return((i), (v)) == 0)
  #define atomic_dec_and_test(v)		(atomic_sub_return(1, (v)) == 0)
  #define atomic_inc_and_test(v)		(atomic_add_return(1, (v)) == 0)
  
  #ifndef CONFIG_FRV_OUTOFLINE_ATOMIC_OPS
  static inline
  unsigned long atomic_test_and_ANDNOT_mask(unsigned long mask, volatile unsigned long *v)
  {
  	unsigned long old, tmp;
  
  	asm volatile(
  		"0:						
  "
  		"	orcc		gr0,gr0,gr0,icc3	
  "	/* set ICC3.Z */
  		"	ckeq		icc3,cc7		
  "
  		"	ld.p		%M0,%1			
  "	/* LD.P/ORCR are atomic */
  		"	orcr		cc7,cc7,cc3		
  "	/* set CC3 to true */
  		"	and%I3		%1,%3,%2		
  "
  		"	cst.p		%2,%M0		,cc3,#1	
  "	/* if store happens... */
  		"	corcc		gr29,gr29,gr0	,cc3,#1	
  "	/* ... clear ICC3.Z */
  		"	beq		icc3,#0,0b		
  "
  		: "+U"(*v), "=&r"(old), "=r"(tmp)
  		: "NPr"(~mask)
  		: "memory", "cc7", "cc3", "icc3"
  		);
  
  	return old;
  }
  
  static inline
  unsigned long atomic_test_and_OR_mask(unsigned long mask, volatile unsigned long *v)
  {
  	unsigned long old, tmp;
  
  	asm volatile(
  		"0:						
  "
  		"	orcc		gr0,gr0,gr0,icc3	
  "	/* set ICC3.Z */
  		"	ckeq		icc3,cc7		
  "
  		"	ld.p		%M0,%1			
  "	/* LD.P/ORCR are atomic */
  		"	orcr		cc7,cc7,cc3		
  "	/* set CC3 to true */
  		"	or%I3		%1,%3,%2		
  "
  		"	cst.p		%2,%M0		,cc3,#1	
  "	/* if store happens... */
  		"	corcc		gr29,gr29,gr0	,cc3,#1	
  "	/* ... clear ICC3.Z */
  		"	beq		icc3,#0,0b		
  "
  		: "+U"(*v), "=&r"(old), "=r"(tmp)
  		: "NPr"(mask)
  		: "memory", "cc7", "cc3", "icc3"
  		);
  
  	return old;
  }
  
  static inline
  unsigned long atomic_test_and_XOR_mask(unsigned long mask, volatile unsigned long *v)
  {
  	unsigned long old, tmp;
  
  	asm volatile(
  		"0:						
  "
  		"	orcc		gr0,gr0,gr0,icc3	
  "	/* set ICC3.Z */
  		"	ckeq		icc3,cc7		
  "
  		"	ld.p		%M0,%1			
  "	/* LD.P/ORCR are atomic */
  		"	orcr		cc7,cc7,cc3		
  "	/* set CC3 to true */
  		"	xor%I3		%1,%3,%2		
  "
  		"	cst.p		%2,%M0		,cc3,#1	
  "	/* if store happens... */
  		"	corcc		gr29,gr29,gr0	,cc3,#1	
  "	/* ... clear ICC3.Z */
  		"	beq		icc3,#0,0b		
  "
  		: "+U"(*v), "=&r"(old), "=r"(tmp)
  		: "NPr"(mask)
  		: "memory", "cc7", "cc3", "icc3"
  		);
  
  	return old;
  }
  
  #else
  
  extern unsigned long atomic_test_and_ANDNOT_mask(unsigned long mask, volatile unsigned long *v);
  extern unsigned long atomic_test_and_OR_mask(unsigned long mask, volatile unsigned long *v);
  extern unsigned long atomic_test_and_XOR_mask(unsigned long mask, volatile unsigned long *v);
  
  #endif
  
  #define atomic_clear_mask(mask, v)	atomic_test_and_ANDNOT_mask((mask), (v))
  #define atomic_set_mask(mask, v)	atomic_test_and_OR_mask((mask), (v))
  
  /*****************************************************************************/
  /*
   * exchange value with memory
   */
  #ifndef CONFIG_FRV_OUTOFLINE_ATOMIC_OPS
  
  #define xchg(ptr, x)								\
  ({										\
  	__typeof__(ptr) __xg_ptr = (ptr);					\
  	__typeof__(*(ptr)) __xg_orig;						\
  										\
  	switch (sizeof(__xg_orig)) {						\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265
266
  	case 4:									\
  		asm volatile(							\
68f624fc8   David Howells   [PATCH] FRV: Misc...
267
268
269
  			"swap%I0 %M0,%1"					\
  			: "+m"(*__xg_ptr), "=r"(__xg_orig)			\
  			: "1"(x)						\
2fa9e7e2d   David Howells   [PATCH] frv: drop...
270
  			: "memory"						\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
272
273
274
  			);							\
  		break;								\
  										\
  	default:								\
7f7884355   Al Viro   [PATCH] frv: NULL...
275
  		__xg_orig = (__typeof__(__xg_orig))0;				\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276
277
278
279
280
281
282
283
  		asm volatile("break");						\
  		break;								\
  	}									\
  										\
  	__xg_orig;								\
  })
  
  #else
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
284
285
286
287
288
289
290
291
  extern uint32_t __xchg_32(uint32_t i, volatile void *v);
  
  #define xchg(ptr, x)										\
  ({												\
  	__typeof__(ptr) __xg_ptr = (ptr);							\
  	__typeof__(*(ptr)) __xg_orig;								\
  												\
  	switch (sizeof(__xg_orig)) {								\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
292
293
  	case 4: __xg_orig = (__typeof__(*(ptr))) __xchg_32((uint32_t) x, __xg_ptr);	break;	\
  	default:										\
7f7884355   Al Viro   [PATCH] frv: NULL...
294
  		__xg_orig = (__typeof__(__xg_orig))0;									\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295
296
297
298
299
300
301
302
303
  		asm volatile("break");								\
  		break;										\
  	}											\
  	__xg_orig;										\
  })
  
  #endif
  
  #define tas(ptr) (xchg((ptr), 1))
2fa9e7e2d   David Howells   [PATCH] frv: drop...
304
  #define atomic_cmpxchg(v, old, new) (cmpxchg(&((v)->counter), old, new))
ffbf670f5   Ingo Molnar   [PATCH] mutex sub...
305
  #define atomic_xchg(v, new) (xchg(&((v)->counter), new))
4a6dae6d3   Nick Piggin   [PATCH] atomic: c...
306

2856f5e31   Mathieu Desnoyers   atomic.h: atomic_...
307
308
309
310
311
312
313
314
315
316
317
318
319
320
  static __inline__ int atomic_add_unless(atomic_t *v, int a, int u)
  {
  	int c, old;
  	c = atomic_read(v);
  	for (;;) {
  		if (unlikely(c == (u)))
  			break;
  		old = atomic_cmpxchg((v), c, c + (a));
  		if (likely(old == c))
  			break;
  		c = old;
  	}
  	return c != (u);
  }
2fa9e7e2d   David Howells   [PATCH] frv: drop...
321

8426e1f6a   Nick Piggin   [PATCH] atomic: i...
322
  #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
d3cb48714   Christoph Lameter   [PATCH] atomic_lo...
323
  #include <asm-generic/atomic.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
324
  #endif /* _ASM_ATOMIC_H */