blob: 0d0395b1b1529d454f772ebb61e240d7fb41f52a [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 *
Arun Sharma600634972011-07-26 16:09:06 -070014 * Do not include directly; use <linux/atomic.h>.
Chris Metcalf867e3592010-05-28 23:09:12 -040015 */
16
17#ifndef _ASM_TILE_ATOMIC_32_H
18#define _ASM_TILE_ATOMIC_32_H
19
David Howellsbd119c62012-03-28 18:30:03 +010020#include <asm/barrier.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040021#include <arch/chip.h>
22
23#ifndef __ASSEMBLY__
24
Chris Metcalf867e3592010-05-28 23:09:12 -040025/**
26 * atomic_add - add integer to atomic variable
27 * @i: integer value to add
28 * @v: pointer of type atomic_t
29 *
30 * Atomically adds @i to @v.
31 */
32static inline void atomic_add(int i, atomic_t *v)
33{
Chris Metcalf6dc96582013-09-06 08:56:45 -040034 _atomic_xchg_add(&v->counter, i);
Chris Metcalf867e3592010-05-28 23:09:12 -040035}
36
37/**
38 * atomic_add_return - add integer and return
39 * @v: pointer of type atomic_t
40 * @i: integer value to add
41 *
42 * Atomically adds @i to @v and returns @i + @v
43 */
44static inline int atomic_add_return(int i, atomic_t *v)
45{
46 smp_mb(); /* barrier for proper semantics */
Chris Metcalf6dc96582013-09-06 08:56:45 -040047 return _atomic_xchg_add(&v->counter, i) + i;
Chris Metcalf867e3592010-05-28 23:09:12 -040048}
49
50/**
Arun Sharmaf24219b2011-07-26 16:09:07 -070051 * __atomic_add_unless - add unless the number is already a given value
Chris Metcalf867e3592010-05-28 23:09:12 -040052 * @v: pointer of type atomic_t
53 * @a: the amount to add to v...
54 * @u: ...unless v is equal to u.
55 *
56 * Atomically adds @a to @v, so long as @v was not already @u.
Arun Sharmaf24219b2011-07-26 16:09:07 -070057 * Returns the old value of @v.
Chris Metcalf867e3592010-05-28 23:09:12 -040058 */
Arun Sharmaf24219b2011-07-26 16:09:07 -070059static inline int __atomic_add_unless(atomic_t *v, int a, int u)
Chris Metcalf867e3592010-05-28 23:09:12 -040060{
61 smp_mb(); /* barrier for proper semantics */
Chris Metcalf6dc96582013-09-06 08:56:45 -040062 return _atomic_xchg_add_unless(&v->counter, a, u);
Chris Metcalf867e3592010-05-28 23:09:12 -040063}
64
65/**
66 * atomic_set - set atomic variable
67 * @v: pointer of type atomic_t
68 * @i: required value
69 *
70 * Atomically sets the value of @v to @i.
71 *
72 * atomic_set() can't be just a raw store, since it would be lost if it
73 * fell between the load and store of one of the other atomic ops.
74 */
75static inline void atomic_set(atomic_t *v, int n)
76{
Chris Metcalf6dc96582013-09-06 08:56:45 -040077 _atomic_xchg(&v->counter, n);
Chris Metcalf867e3592010-05-28 23:09:12 -040078}
79
Chris Metcalf867e3592010-05-28 23:09:12 -040080/* A 64bit atomic type */
81
82typedef struct {
83 u64 __aligned(8) counter;
84} atomic64_t;
85
86#define ATOMIC64_INIT(val) { (val) }
87
Chris Metcalf867e3592010-05-28 23:09:12 -040088/**
89 * atomic64_read - read atomic variable
90 * @v: pointer of type atomic64_t
91 *
92 * Atomically reads the value of @v.
93 */
94static inline u64 atomic64_read(const atomic64_t *v)
95{
96 /*
97 * Requires an atomic op to read both 32-bit parts consistently.
98 * Casting away const is safe since the atomic support routines
99 * do not write to memory if the value has not been modified.
100 */
Chris Metcalf6dc96582013-09-06 08:56:45 -0400101 return _atomic64_xchg_add((u64 *)&v->counter, 0);
Chris Metcalf867e3592010-05-28 23:09:12 -0400102}
103
104/**
105 * atomic64_add - add integer to atomic variable
106 * @i: integer value to add
107 * @v: pointer of type atomic64_t
108 *
109 * Atomically adds @i to @v.
110 */
111static inline void atomic64_add(u64 i, atomic64_t *v)
112{
Chris Metcalf6dc96582013-09-06 08:56:45 -0400113 _atomic64_xchg_add(&v->counter, i);
Chris Metcalf867e3592010-05-28 23:09:12 -0400114}
115
116/**
117 * atomic64_add_return - add integer and return
118 * @v: pointer of type atomic64_t
119 * @i: integer value to add
120 *
121 * Atomically adds @i to @v and returns @i + @v
122 */
123static inline u64 atomic64_add_return(u64 i, atomic64_t *v)
124{
125 smp_mb(); /* barrier for proper semantics */
Chris Metcalf6dc96582013-09-06 08:56:45 -0400126 return _atomic64_xchg_add(&v->counter, i) + i;
Chris Metcalf867e3592010-05-28 23:09:12 -0400127}
128
129/**
130 * atomic64_add_unless - add unless the number is already a given value
131 * @v: pointer of type atomic64_t
132 * @a: the amount to add to v...
133 * @u: ...unless v is equal to u.
134 *
135 * Atomically adds @a to @v, so long as @v was not already @u.
Chris Metcalf07feea82012-03-27 14:10:03 -0400136 * Returns non-zero if @v was not @u, and zero otherwise.
Chris Metcalf867e3592010-05-28 23:09:12 -0400137 */
138static inline u64 atomic64_add_unless(atomic64_t *v, u64 a, u64 u)
139{
140 smp_mb(); /* barrier for proper semantics */
Chris Metcalf6dc96582013-09-06 08:56:45 -0400141 return _atomic64_xchg_add_unless(&v->counter, a, u) != u;
Chris Metcalf867e3592010-05-28 23:09:12 -0400142}
143
144/**
145 * atomic64_set - set atomic variable
146 * @v: pointer of type atomic64_t
147 * @i: required value
148 *
149 * Atomically sets the value of @v to @i.
150 *
151 * atomic64_set() can't be just a raw store, since it would be lost if it
152 * fell between the load and store of one of the other atomic ops.
153 */
154static inline void atomic64_set(atomic64_t *v, u64 n)
155{
Chris Metcalf6dc96582013-09-06 08:56:45 -0400156 _atomic64_xchg(&v->counter, n);
Chris Metcalf867e3592010-05-28 23:09:12 -0400157}
158
159#define atomic64_add_negative(a, v) (atomic64_add_return((a), (v)) < 0)
160#define atomic64_inc(v) atomic64_add(1LL, (v))
161#define atomic64_inc_return(v) atomic64_add_return(1LL, (v))
162#define atomic64_inc_and_test(v) (atomic64_inc_return(v) == 0)
163#define atomic64_sub_return(i, v) atomic64_add_return(-(i), (v))
164#define atomic64_sub_and_test(a, v) (atomic64_sub_return((a), (v)) == 0)
165#define atomic64_sub(i, v) atomic64_add(-(i), (v))
166#define atomic64_dec(v) atomic64_sub(1LL, (v))
167#define atomic64_dec_return(v) atomic64_sub_return(1LL, (v))
168#define atomic64_dec_and_test(v) (atomic64_dec_return((v)) == 0)
169#define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1LL, 0LL)
170
171/*
172 * We need to barrier before modifying the word, since the _atomic_xxx()
173 * routines just tns the lock and then read/modify/write of the word.
174 * But after the word is updated, the routine issues an "mf" before returning,
175 * and since it's a function call, we don't even need a compiler barrier.
176 */
177#define smp_mb__before_atomic_dec() smp_mb()
178#define smp_mb__before_atomic_inc() smp_mb()
179#define smp_mb__after_atomic_dec() do { } while (0)
180#define smp_mb__after_atomic_inc() do { } while (0)
181
Chris Metcalf867e3592010-05-28 23:09:12 -0400182#endif /* !__ASSEMBLY__ */
183
184/*
185 * Internal definitions only beyond this point.
186 */
187
Chris Metcalf867e3592010-05-28 23:09:12 -0400188/*
189 * Number of atomic locks in atomic_locks[]. Must be a power of two.
190 * There is no reason for more than PAGE_SIZE / 8 entries, since that
191 * is the maximum number of pointer bits we can use to index this.
192 * And we cannot have more than PAGE_SIZE / 4, since this has to
193 * fit on a single page and each entry takes 4 bytes.
194 */
195#define ATOMIC_HASH_SHIFT (PAGE_SHIFT - 3)
196#define ATOMIC_HASH_SIZE (1 << ATOMIC_HASH_SHIFT)
197
198#ifndef __ASSEMBLY__
199extern int atomic_locks[];
200#endif
201
Chris Metcalf867e3592010-05-28 23:09:12 -0400202/*
203 * All the code that may fault while holding an atomic lock must
204 * place the pointer to the lock in ATOMIC_LOCK_REG so the fault code
205 * can correctly release and reacquire the lock. Note that we
206 * mention the register number in a comment in "lib/atomic_asm.S" to help
207 * assembly coders from using this register by mistake, so if it
208 * is changed here, change that comment as well.
209 */
210#define ATOMIC_LOCK_REG 20
211#define ATOMIC_LOCK_REG_NAME r20
212
213#ifndef __ASSEMBLY__
214/* Called from setup to initialize a hash table to point to per_cpu locks. */
215void __init_atomic_per_cpu(void);
216
217#ifdef CONFIG_SMP
218/* Support releasing the atomic lock in do_page_fault_ics(). */
219void __atomic_fault_unlock(int *lock_ptr);
220#endif
Chris Metcalf0707ad32010-06-25 17:04:17 -0400221
Chris Metcalf47d632f2012-03-29 13:39:51 -0400222/* Return a pointer to the lock for the given address. */
223int *__atomic_hashed_lock(volatile void *v);
224
Chris Metcalf0707ad32010-06-25 17:04:17 -0400225/* Private helper routines in lib/atomic_asm_32.S */
Chris Metcalf47d632f2012-03-29 13:39:51 -0400226struct __get_user {
227 unsigned long val;
228 int err;
229};
Chris Metcalf0707ad32010-06-25 17:04:17 -0400230extern struct __get_user __atomic_cmpxchg(volatile int *p,
231 int *lock, int o, int n);
232extern struct __get_user __atomic_xchg(volatile int *p, int *lock, int n);
233extern struct __get_user __atomic_xchg_add(volatile int *p, int *lock, int n);
234extern struct __get_user __atomic_xchg_add_unless(volatile int *p,
235 int *lock, int o, int n);
236extern struct __get_user __atomic_or(volatile int *p, int *lock, int n);
237extern struct __get_user __atomic_andn(volatile int *p, int *lock, int n);
238extern struct __get_user __atomic_xor(volatile int *p, int *lock, int n);
239extern u64 __atomic64_cmpxchg(volatile u64 *p, int *lock, u64 o, u64 n);
240extern u64 __atomic64_xchg(volatile u64 *p, int *lock, u64 n);
241extern u64 __atomic64_xchg_add(volatile u64 *p, int *lock, u64 n);
242extern u64 __atomic64_xchg_add_unless(volatile u64 *p,
243 int *lock, u64 o, u64 n);
244
Chris Metcalf47d632f2012-03-29 13:39:51 -0400245/* Return failure from the atomic wrappers. */
246struct __get_user __atomic_bad_address(int __user *addr);
247
Chris Metcalf867e3592010-05-28 23:09:12 -0400248#endif /* !__ASSEMBLY__ */
249
250#endif /* _ASM_TILE_ATOMIC_32_H */