atomic.h 5.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/* atomic.h: atomic operation emulation for FR-V
 *
 * For an explanation of how atomic ops work in this arch, see:
A
Adrian Bunk 已提交
4
 *   Documentation/frv/atomic-ops.txt
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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

#include <linux/types.h>
18
#include <asm/cmpxchg.h>
P
Peter Zijlstra 已提交
19
#include <asm/barrier.h>
L
Linus Torvalds 已提交
20 21 22 23 24

#ifdef CONFIG_SMP
#error not SMP safe
#endif

25 26
#include <asm/atomic_defs.h>

L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34
/*
 * 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.
 */

#define ATOMIC_INIT(i)		{ (i) }
35 36
#define atomic_read(v)		READ_ONCE((v)->counter)
#define atomic_set(v, i)	WRITE_ONCE(((v)->counter), (i))
L
Linus Torvalds 已提交
37

38
static inline int atomic_inc_return(atomic_t *v)
L
Linus Torvalds 已提交
39
{
40 41
	return __atomic_add_return(1, &v->counter);
}
L
Linus Torvalds 已提交
42

43 44 45 46
static inline int atomic_dec_return(atomic_t *v)
{
	return __atomic_sub_return(1, &v->counter);
}
L
Linus Torvalds 已提交
47

48 49 50
static inline int atomic_add_return(int i, atomic_t *v)
{
	return __atomic_add_return(i, &v->counter);
L
Linus Torvalds 已提交
51 52 53 54
}

static inline int atomic_sub_return(int i, atomic_t *v)
{
55
	return __atomic_sub_return(i, &v->counter);
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64
}

static inline int atomic_add_negative(int i, atomic_t *v)
{
	return atomic_add_return(i, v) < 0;
}

static inline void atomic_inc(atomic_t *v)
{
65
	atomic_inc_return(v);
L
Linus Torvalds 已提交
66 67 68 69
}

static inline void atomic_dec(atomic_t *v)
{
70
	atomic_dec_return(v);
L
Linus Torvalds 已提交
71 72 73 74 75 76
}

#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)

D
David Howells 已提交
77 78 79 80
/*
 * 64-bit atomic ops
 */
typedef struct {
81
	long long counter;
D
David Howells 已提交
82 83 84 85
} atomic64_t;

#define ATOMIC64_INIT(i)	{ (i) }

86
static inline long long atomic64_read(const atomic64_t *v)
D
David Howells 已提交
87 88 89 90 91 92
{
	long long counter;

	asm("ldd%I1 %M1,%0"
	    : "=e"(counter)
	    : "m"(v->counter));
93

D
David Howells 已提交
94 95 96 97 98 99 100 101 102 103
	return counter;
}

static inline void atomic64_set(atomic64_t *v, long long i)
{
	asm volatile("std%I0 %1,%M0"
		     : "=m"(v->counter)
		     : "e"(i));
}

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
static inline long long atomic64_inc_return(atomic64_t *v)
{
	return __atomic64_add_return(1, &v->counter);
}

static inline long long atomic64_dec_return(atomic64_t *v)
{
	return __atomic64_sub_return(1, &v->counter);
}

static inline long long atomic64_add_return(long long i, atomic64_t *v)
{
	return __atomic64_add_return(i, &v->counter);
}

static inline long long atomic64_sub_return(long long i, atomic64_t *v)
{
	return __atomic64_sub_return(i, &v->counter);
}
D
David Howells 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141

static inline long long atomic64_add_negative(long long i, atomic64_t *v)
{
	return atomic64_add_return(i, v) < 0;
}

static inline void atomic64_inc(atomic64_t *v)
{
	atomic64_inc_return(v);
}

static inline void atomic64_dec(atomic64_t *v)
{
	atomic64_dec_return(v);
}

#define atomic64_sub_and_test(i,v)	(atomic64_sub_return((i), (v)) == 0)
#define atomic64_dec_and_test(v)	(atomic64_dec_return((v)) == 0)
#define atomic64_inc_and_test(v)	(atomic64_inc_return((v)) == 0)
142
#define atomic64_inc_not_zero(v)	atomic64_add_unless((v), 1, 0)
143

D
David Howells 已提交
144 145 146 147
#define atomic_cmpxchg(v, old, new)	(cmpxchg(&(v)->counter, old, new))
#define atomic_xchg(v, new)		(xchg(&(v)->counter, new))
#define atomic64_cmpxchg(v, old, new)	(__cmpxchg_64(old, new, &(v)->counter))
#define atomic64_xchg(v, new)		(__xchg_64(new, &(v)->counter))
N
Nick Piggin 已提交
148

149
static __inline__ int __atomic_add_unless(atomic_t *v, int a, int u)
150 151 152 153 154 155 156 157 158 159 160
{
	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;
	}
161
	return c;
162
}
163

S
Sudip Mukherjee 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
static inline int atomic64_add_unless(atomic64_t *v, long long i, long long u)
{
	long long c, old;

	c = atomic64_read(v);
	for (;;) {
		if (unlikely(c == u))
			break;
		old = atomic64_cmpxchg(v, c, c + i);
		if (likely(old == c))
			break;
		c = old;
	}
	return c != u;
}

180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
static inline long long atomic64_dec_if_positive(atomic64_t *v)
{
	long long c, old, dec;

	c = atomic64_read(v);
	for (;;) {
		dec = c - 1;
		if (unlikely(dec < 0))
			break;
		old = atomic64_cmpxchg((v), c, dec);
		if (likely(old == c))
			break;
		c = old;
	}
		return dec;
}

197
#define ATOMIC_OP(op)							\
198 199 200 201
static inline int atomic_fetch_##op(int i, atomic_t *v)			\
{									\
	return __atomic32_fetch_##op(i, &v->counter);			\
}									\
202 203 204 205 206
static inline void atomic_##op(int i, atomic_t *v)			\
{									\
	(void)__atomic32_fetch_##op(i, &v->counter);			\
}									\
									\
207 208 209 210
static inline long long atomic64_fetch_##op(long long i, atomic64_t *v)	\
{									\
	return __atomic64_fetch_##op(i, &v->counter);			\
}									\
211 212 213 214 215 216 217 218
static inline void atomic64_##op(long long i, atomic64_t *v)		\
{									\
	(void)__atomic64_fetch_##op(i, &v->counter);			\
}

ATOMIC_OP(or)
ATOMIC_OP(and)
ATOMIC_OP(xor)
219 220
ATOMIC_OP(add)
ATOMIC_OP(sub)
221 222 223

#undef ATOMIC_OP

L
Linus Torvalds 已提交
224
#endif /* _ASM_ATOMIC_H */