blob: d0daeab2234e34cc4ac8b466a037a176e188e5b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/atomic.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1996 Russell King.
5 * Copyright (C) 2002 Deep Blue Solutions Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#ifndef __ASM_ARM_ATOMIC_H
12#define __ASM_ARM_ATOMIC_H
13
Russell King8dc39b82005-11-16 17:23:57 +000014#include <linux/compiler.h>
Matthew Wilcoxea4354672009-01-06 14:40:39 -080015#include <linux/types.h>
Mathieu Desnoyers2856f5e2007-05-08 00:34:38 -070016#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define ATOMIC_INIT(i) { (i) }
19
20#ifdef __KERNEL__
21
Catalin Marinas200b8122009-09-18 23:27:05 +010022/*
23 * On ARM, ordinary assignment (str instruction) doesn't clear the local
24 * strex/ldrex monitor on some implementations. The reason we can use it for
25 * atomic_set() is the clrex or dummy strex done on every exception return.
26 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define atomic_read(v) ((v)->counter)
Catalin Marinas200b8122009-09-18 23:27:05 +010028#define atomic_set(v,i) (((v)->counter) = (i))
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#if __LINUX_ARM_ARCH__ >= 6
31
32/*
33 * ARMv6 UP and SMP safe atomic ops. We use load exclusive and
34 * store exclusive to ensure that these are atomic. We may loop
Catalin Marinas200b8122009-09-18 23:27:05 +010035 * to ensure that the update happens.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
Russell Kingbac4e962009-05-25 20:58:00 +010037static inline void atomic_add(int i, atomic_t *v)
38{
39 unsigned long tmp;
40 int result;
41
42 __asm__ __volatile__("@ atomic_add\n"
43"1: ldrex %0, [%2]\n"
44" add %0, %0, %3\n"
45" strex %1, %0, [%2]\n"
46" teq %1, #0\n"
47" bne 1b"
48 : "=&r" (result), "=&r" (tmp)
49 : "r" (&v->counter), "Ir" (i)
50 : "cc");
51}
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static inline int atomic_add_return(int i, atomic_t *v)
54{
55 unsigned long tmp;
56 int result;
57
Russell Kingbac4e962009-05-25 20:58:00 +010058 smp_mb();
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 __asm__ __volatile__("@ atomic_add_return\n"
61"1: ldrex %0, [%2]\n"
62" add %0, %0, %3\n"
63" strex %1, %0, [%2]\n"
64" teq %1, #0\n"
65" bne 1b"
66 : "=&r" (result), "=&r" (tmp)
67 : "r" (&v->counter), "Ir" (i)
68 : "cc");
69
Russell Kingbac4e962009-05-25 20:58:00 +010070 smp_mb();
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return result;
73}
74
Russell Kingbac4e962009-05-25 20:58:00 +010075static inline void atomic_sub(int i, atomic_t *v)
76{
77 unsigned long tmp;
78 int result;
79
80 __asm__ __volatile__("@ atomic_sub\n"
81"1: ldrex %0, [%2]\n"
82" sub %0, %0, %3\n"
83" strex %1, %0, [%2]\n"
84" teq %1, #0\n"
85" bne 1b"
86 : "=&r" (result), "=&r" (tmp)
87 : "r" (&v->counter), "Ir" (i)
88 : "cc");
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static inline int atomic_sub_return(int i, atomic_t *v)
92{
93 unsigned long tmp;
94 int result;
95
Russell Kingbac4e962009-05-25 20:58:00 +010096 smp_mb();
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 __asm__ __volatile__("@ atomic_sub_return\n"
99"1: ldrex %0, [%2]\n"
100" sub %0, %0, %3\n"
101" strex %1, %0, [%2]\n"
102" teq %1, #0\n"
103" bne 1b"
104 : "=&r" (result), "=&r" (tmp)
105 : "r" (&v->counter), "Ir" (i)
106 : "cc");
107
Russell Kingbac4e962009-05-25 20:58:00 +0100108 smp_mb();
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return result;
111}
112
Nick Piggin4a6dae62005-11-13 16:07:24 -0800113static inline int atomic_cmpxchg(atomic_t *ptr, int old, int new)
114{
Russell King49ee57a2005-11-16 18:03:10 +0000115 unsigned long oldval, res;
Nick Piggin4a6dae62005-11-13 16:07:24 -0800116
Russell Kingbac4e962009-05-25 20:58:00 +0100117 smp_mb();
118
Nick Piggin4a6dae62005-11-13 16:07:24 -0800119 do {
120 __asm__ __volatile__("@ atomic_cmpxchg\n"
121 "ldrex %1, [%2]\n"
Nicolas Pitrea7d06832005-11-16 15:05:11 +0000122 "mov %0, #0\n"
Nick Piggin4a6dae62005-11-13 16:07:24 -0800123 "teq %1, %3\n"
124 "strexeq %0, %4, [%2]\n"
125 : "=&r" (res), "=&r" (oldval)
126 : "r" (&ptr->counter), "Ir" (old), "r" (new)
127 : "cc");
128 } while (res);
129
Russell Kingbac4e962009-05-25 20:58:00 +0100130 smp_mb();
131
Nick Piggin4a6dae62005-11-13 16:07:24 -0800132 return oldval;
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
136{
137 unsigned long tmp, tmp2;
138
139 __asm__ __volatile__("@ atomic_clear_mask\n"
Stelian Pop0803c302007-03-15 16:54:27 +0100140"1: ldrex %0, [%2]\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141" bic %0, %0, %3\n"
Stelian Pop0803c302007-03-15 16:54:27 +0100142" strex %1, %0, [%2]\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143" teq %1, #0\n"
144" bne 1b"
145 : "=&r" (tmp), "=&r" (tmp2)
146 : "r" (addr), "Ir" (mask)
147 : "cc");
148}
149
150#else /* ARM_ARCH_6 */
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#ifdef CONFIG_SMP
153#error SMP not supported on pre-ARMv6 CPUs
154#endif
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static inline int atomic_add_return(int i, atomic_t *v)
157{
158 unsigned long flags;
159 int val;
160
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100161 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 val = v->counter;
163 v->counter = val += i;
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100164 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 return val;
167}
Russell Kingbac4e962009-05-25 20:58:00 +0100168#define atomic_add(i, v) (void) atomic_add_return(i, v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170static inline int atomic_sub_return(int i, atomic_t *v)
171{
172 unsigned long flags;
173 int val;
174
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100175 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 val = v->counter;
177 v->counter = val -= i;
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100178 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 return val;
181}
Russell Kingbac4e962009-05-25 20:58:00 +0100182#define atomic_sub(i, v) (void) atomic_sub_return(i, v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Nick Piggin4a6dae62005-11-13 16:07:24 -0800184static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
185{
186 int ret;
187 unsigned long flags;
188
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100189 raw_local_irq_save(flags);
Nick Piggin4a6dae62005-11-13 16:07:24 -0800190 ret = v->counter;
191 if (likely(ret == old))
192 v->counter = new;
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100193 raw_local_irq_restore(flags);
Nick Piggin4a6dae62005-11-13 16:07:24 -0800194
195 return ret;
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
199{
200 unsigned long flags;
201
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100202 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 *addr &= ~mask;
Lennert Buytenhek8dd5c842006-09-16 10:47:18 +0100204 raw_local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207#endif /* __LINUX_ARM_ARCH__ */
208
Ingo Molnarffbf6702006-01-09 15:59:17 -0800209#define atomic_xchg(v, new) (xchg(&((v)->counter), new))
210
Nick Piggin8426e1f2005-11-13 16:07:25 -0800211static inline int atomic_add_unless(atomic_t *v, int a, int u)
212{
213 int c, old;
214
215 c = atomic_read(v);
216 while (c != u && (old = atomic_cmpxchg((v), c, c + a)) != c)
217 c = old;
218 return c != u;
219}
220#define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0)
221
Russell Kingbac4e962009-05-25 20:58:00 +0100222#define atomic_inc(v) atomic_add(1, v)
223#define atomic_dec(v) atomic_sub(1, v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225#define atomic_inc_and_test(v) (atomic_add_return(1, v) == 0)
226#define atomic_dec_and_test(v) (atomic_sub_return(1, v) == 0)
227#define atomic_inc_return(v) (atomic_add_return(1, v))
228#define atomic_dec_return(v) (atomic_sub_return(1, v))
229#define atomic_sub_and_test(i, v) (atomic_sub_return(i, v) == 0)
230
231#define atomic_add_negative(i,v) (atomic_add_return(i, v) < 0)
232
Russell Kingbac4e962009-05-25 20:58:00 +0100233#define smp_mb__before_atomic_dec() smp_mb()
234#define smp_mb__after_atomic_dec() smp_mb()
235#define smp_mb__before_atomic_inc() smp_mb()
236#define smp_mb__after_atomic_inc() smp_mb()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Arnd Bergmann72099ed2009-05-13 22:56:29 +0000238#include <asm-generic/atomic-long.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239#endif
240#endif