blob: 508c416e9d6a8b1423ab3bb88eef8ee27d67ec9a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* spinlock.h: 64-bit Sparc spinlock support.
2 *
3 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#ifndef __SPARC64_SPINLOCK_H
7#define __SPARC64_SPINLOCK_H
8
9#include <linux/config.h>
10#include <linux/threads.h> /* For NR_CPUS */
11
12#ifndef __ASSEMBLY__
13
14/* To get debugging spinlocks which detect and catch
15 * deadlock situations, set CONFIG_DEBUG_SPINLOCK
16 * and rebuild your kernel.
17 */
18
19/* All of these locking primitives are expected to work properly
20 * even in an RMO memory model, which currently is what the kernel
21 * runs in.
22 *
23 * There is another issue. Because we play games to save cycles
24 * in the non-contention case, we need to be extra careful about
25 * branch targets into the "spinning" code. They live in their
26 * own section, but the newer V9 branches have a shorter range
27 * than the traditional 32-bit sparc branch variants. The rule
28 * is that the branches that go into and out of the spinner sections
29 * must be pre-V9 branches.
30 */
31
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070032#define __raw_spin_is_locked(lp) ((lp)->lock != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070034#define __raw_spin_unlock_wait(lp) \
35 do { rmb(); \
36 } while((lp)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070038static inline void __raw_spin_lock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 unsigned long tmp;
41
42 __asm__ __volatile__(
43"1: ldstub [%1], %0\n"
David S. Millerb445e262005-06-27 15:42:04 -070044" membar #StoreLoad | #StoreStore\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045" brnz,pn %0, 2f\n"
David S. Millerb445e262005-06-27 15:42:04 -070046" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047" .subsection 2\n"
48"2: ldub [%1], %0\n"
David S. Millerb445e262005-06-27 15:42:04 -070049" membar #LoadLoad\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050" brnz,pt %0, 2b\n"
David S. Millerb445e262005-06-27 15:42:04 -070051" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052" ba,a,pt %%xcc, 1b\n"
53" .previous"
54 : "=&r" (tmp)
55 : "r" (lock)
56 : "memory");
57}
58
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070059static inline int __raw_spin_trylock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 unsigned long result;
62
63 __asm__ __volatile__(
64" ldstub [%1], %0\n"
65" membar #StoreLoad | #StoreStore"
66 : "=r" (result)
67 : "r" (lock)
68 : "memory");
69
70 return (result == 0UL);
71}
72
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070073static inline void __raw_spin_unlock(raw_spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 __asm__ __volatile__(
76" membar #StoreStore | #LoadStore\n"
77" stb %%g0, [%0]"
78 : /* No outputs */
79 : "r" (lock)
80 : "memory");
81}
82
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070083static inline void __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 unsigned long tmp1, tmp2;
86
87 __asm__ __volatile__(
88"1: ldstub [%2], %0\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070089" membar #StoreLoad | #StoreStore\n"
David S. Millerb445e262005-06-27 15:42:04 -070090" brnz,pn %0, 2f\n"
91" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070092" .subsection 2\n"
93"2: rdpr %%pil, %1\n"
94" wrpr %3, %%pil\n"
95"3: ldub [%2], %0\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070096" membar #LoadLoad\n"
David S. Millerb445e262005-06-27 15:42:04 -070097" brnz,pt %0, 3b\n"
98" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070099" ba,pt %%xcc, 1b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700100" wrpr %1, %%pil\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101" .previous"
102 : "=&r" (tmp1), "=&r" (tmp2)
103 : "r"(lock), "r"(flags)
104 : "memory");
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* Multi-reader locks, these are much saner than the 32-bit Sparc ones... */
108
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700109static void inline __read_lock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 unsigned long tmp1, tmp2;
112
113 __asm__ __volatile__ (
114"1: ldsw [%2], %0\n"
115" brlz,pn %0, 2f\n"
116"4: add %0, 1, %1\n"
117" cas [%2], %0, %1\n"
118" cmp %0, %1\n"
David S. Millerb445e262005-06-27 15:42:04 -0700119" membar #StoreLoad | #StoreStore\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120" bne,pn %%icc, 1b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700121" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122" .subsection 2\n"
123"2: ldsw [%2], %0\n"
David S. Millerb445e262005-06-27 15:42:04 -0700124" membar #LoadLoad\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125" brlz,pt %0, 2b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700126" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127" ba,a,pt %%xcc, 4b\n"
128" .previous"
129 : "=&r" (tmp1), "=&r" (tmp2)
130 : "r" (lock)
131 : "memory");
132}
133
David S. Millerd3ed3092006-01-23 21:03:56 -0800134static int inline __read_trylock(raw_rwlock_t *lock)
135{
136 int tmp1, tmp2;
137
138 __asm__ __volatile__ (
139"1: ldsw [%2], %0\n"
140" brlz,a,pn %0, 2f\n"
141" mov 0, %0\n"
142" add %0, 1, %1\n"
143" cas [%2], %0, %1\n"
144" cmp %0, %1\n"
145" membar #StoreLoad | #StoreStore\n"
146" bne,pn %%icc, 1b\n"
147" mov 1, %0\n"
148"2:"
149 : "=&r" (tmp1), "=&r" (tmp2)
150 : "r" (lock)
151 : "memory");
152
153 return tmp1;
154}
155
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700156static void inline __read_unlock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 unsigned long tmp1, tmp2;
159
160 __asm__ __volatile__(
161" membar #StoreLoad | #LoadLoad\n"
162"1: lduw [%2], %0\n"
163" sub %0, 1, %1\n"
164" cas [%2], %0, %1\n"
165" cmp %0, %1\n"
166" bne,pn %%xcc, 1b\n"
167" nop"
168 : "=&r" (tmp1), "=&r" (tmp2)
169 : "r" (lock)
170 : "memory");
171}
172
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700173static void inline __write_lock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 unsigned long mask, tmp1, tmp2;
176
177 mask = 0x80000000UL;
178
179 __asm__ __volatile__(
180"1: lduw [%2], %0\n"
181" brnz,pn %0, 2f\n"
182"4: or %0, %3, %1\n"
183" cas [%2], %0, %1\n"
184" cmp %0, %1\n"
David S. Millerb445e262005-06-27 15:42:04 -0700185" membar #StoreLoad | #StoreStore\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186" bne,pn %%icc, 1b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700187" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188" .subsection 2\n"
189"2: lduw [%2], %0\n"
David S. Millerb445e262005-06-27 15:42:04 -0700190" membar #LoadLoad\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191" brnz,pt %0, 2b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700192" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193" ba,a,pt %%xcc, 4b\n"
194" .previous"
195 : "=&r" (tmp1), "=&r" (tmp2)
196 : "r" (lock), "r" (mask)
197 : "memory");
198}
199
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700200static void inline __write_unlock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 __asm__ __volatile__(
203" membar #LoadStore | #StoreStore\n"
204" stw %%g0, [%0]"
205 : /* no outputs */
206 : "r" (lock)
207 : "memory");
208}
209
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700210static int inline __write_trylock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 unsigned long mask, tmp1, tmp2, result;
213
214 mask = 0x80000000UL;
215
216 __asm__ __volatile__(
217" mov 0, %2\n"
218"1: lduw [%3], %0\n"
219" brnz,pn %0, 2f\n"
220" or %0, %4, %1\n"
221" cas [%3], %0, %1\n"
222" cmp %0, %1\n"
David S. Millerb445e262005-06-27 15:42:04 -0700223" membar #StoreLoad | #StoreStore\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224" bne,pn %%icc, 1b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700225" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226" mov 1, %2\n"
227"2:"
228 : "=&r" (tmp1), "=&r" (tmp2), "=&r" (result)
229 : "r" (lock), "r" (mask)
230 : "memory");
231
232 return result;
233}
234
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700235#define __raw_read_lock(p) __read_lock(p)
David S. Millerd3ed3092006-01-23 21:03:56 -0800236#define __raw_read_trylock(p) __read_trylock(p)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700237#define __raw_read_unlock(p) __read_unlock(p)
238#define __raw_write_lock(p) __write_lock(p)
239#define __raw_write_unlock(p) __write_unlock(p)
240#define __raw_write_trylock(p) __write_trylock(p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700242#define __raw_read_can_lock(rw) (!((rw)->lock & 0x80000000UL))
243#define __raw_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245#endif /* !(__ASSEMBLY__) */
246
247#endif /* !(__SPARC64_SPINLOCK_H) */