blob: ec85d12d73b98a353e0fdcaf346489b09f80839a [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
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700134static void inline __read_unlock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 unsigned long tmp1, tmp2;
137
138 __asm__ __volatile__(
139" membar #StoreLoad | #LoadLoad\n"
140"1: lduw [%2], %0\n"
141" sub %0, 1, %1\n"
142" cas [%2], %0, %1\n"
143" cmp %0, %1\n"
144" bne,pn %%xcc, 1b\n"
145" nop"
146 : "=&r" (tmp1), "=&r" (tmp2)
147 : "r" (lock)
148 : "memory");
149}
150
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700151static void inline __write_lock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 unsigned long mask, tmp1, tmp2;
154
155 mask = 0x80000000UL;
156
157 __asm__ __volatile__(
158"1: lduw [%2], %0\n"
159" brnz,pn %0, 2f\n"
160"4: or %0, %3, %1\n"
161" cas [%2], %0, %1\n"
162" cmp %0, %1\n"
David S. Millerb445e262005-06-27 15:42:04 -0700163" membar #StoreLoad | #StoreStore\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164" bne,pn %%icc, 1b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700165" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166" .subsection 2\n"
167"2: lduw [%2], %0\n"
David S. Millerb445e262005-06-27 15:42:04 -0700168" membar #LoadLoad\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169" brnz,pt %0, 2b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700170" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171" ba,a,pt %%xcc, 4b\n"
172" .previous"
173 : "=&r" (tmp1), "=&r" (tmp2)
174 : "r" (lock), "r" (mask)
175 : "memory");
176}
177
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700178static void inline __write_unlock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 __asm__ __volatile__(
181" membar #LoadStore | #StoreStore\n"
182" stw %%g0, [%0]"
183 : /* no outputs */
184 : "r" (lock)
185 : "memory");
186}
187
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700188static int inline __write_trylock(raw_rwlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 unsigned long mask, tmp1, tmp2, result;
191
192 mask = 0x80000000UL;
193
194 __asm__ __volatile__(
195" mov 0, %2\n"
196"1: lduw [%3], %0\n"
197" brnz,pn %0, 2f\n"
198" or %0, %4, %1\n"
199" cas [%3], %0, %1\n"
200" cmp %0, %1\n"
David S. Millerb445e262005-06-27 15:42:04 -0700201" membar #StoreLoad | #StoreStore\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202" bne,pn %%icc, 1b\n"
David S. Millerb445e262005-06-27 15:42:04 -0700203" nop\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204" mov 1, %2\n"
205"2:"
206 : "=&r" (tmp1), "=&r" (tmp2), "=&r" (result)
207 : "r" (lock), "r" (mask)
208 : "memory");
209
210 return result;
211}
212
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700213#define __raw_read_lock(p) __read_lock(p)
214#define __raw_read_unlock(p) __read_unlock(p)
215#define __raw_write_lock(p) __write_lock(p)
216#define __raw_write_unlock(p) __write_unlock(p)
217#define __raw_write_trylock(p) __write_trylock(p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Ingo Molnarfb1c8f92005-09-10 00:25:56 -0700219#define __raw_read_trylock(lock) generic__raw_read_trylock(lock)
220#define __raw_read_can_lock(rw) (!((rw)->lock & 0x80000000UL))
221#define __raw_write_can_lock(rw) (!(rw)->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223#endif /* !(__ASSEMBLY__) */
224
225#endif /* !(__SPARC64_SPINLOCK_H) */