blob: 5f5b8bf3f50d39a5c4b8cae94231cdd87543bbfa [file] [log] [blame]
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07001/* spinlock.h: 32-bit Sparc spinlock support.
2 *
3 * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
4 */
5
6#ifndef __SPARC_SPINLOCK_H
7#define __SPARC_SPINLOCK_H
8
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07009#ifndef __ASSEMBLY__
10
11#include <asm/psr.h>
Sam Ravnborgf400bdb2011-05-21 22:55:17 +020012#include <asm/processor.h> /* for cpu_relax */
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070013
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010014#define arch_spin_is_locked(lock) (*((volatile unsigned char *)(lock)) != 0)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070015
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010016#define arch_spin_unlock_wait(lock) \
17 do { while (arch_spin_is_locked(lock)) cpu_relax(); } while (0)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070018
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010019static inline void arch_spin_lock(arch_spinlock_t *lock)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070020{
21 __asm__ __volatile__(
22 "\n1:\n\t"
23 "ldstub [%0], %%g2\n\t"
24 "orcc %%g2, 0x0, %%g0\n\t"
25 "bne,a 2f\n\t"
26 " ldub [%0], %%g2\n\t"
27 ".subsection 2\n"
28 "2:\n\t"
29 "orcc %%g2, 0x0, %%g0\n\t"
30 "bne,a 2b\n\t"
31 " ldub [%0], %%g2\n\t"
32 "b,a 1b\n\t"
33 ".previous\n"
34 : /* no outputs */
35 : "r" (lock)
36 : "g2", "memory", "cc");
37}
38
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010039static inline int arch_spin_trylock(arch_spinlock_t *lock)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070040{
41 unsigned int result;
42 __asm__ __volatile__("ldstub [%1], %0"
43 : "=r" (result)
44 : "r" (lock)
45 : "memory");
46 return (result == 0);
47}
48
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010049static inline void arch_spin_unlock(arch_spinlock_t *lock)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070050{
51 __asm__ __volatile__("stb %%g0, [%0]" : : "r" (lock) : "memory");
52}
53
54/* Read-write spinlocks, allowing multiple readers
55 * but only one writer.
56 *
57 * NOTE! it is quite common to have readers in interrupts
58 * but no interrupt writers. For those circumstances we
59 * can "mix" irq-safe locks - any writer needs to get a
60 * irq-safe write-lock, but readers can get non-irqsafe
61 * read-locks.
62 *
63 * XXX This might create some problems with my dual spinlock
64 * XXX scheme, deadlocks etc. -DaveM
65 *
66 * Sort of like atomic_t's on Sparc, but even more clever.
67 *
68 * ------------------------------------
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +010069 * | 24-bit counter | wlock | arch_rwlock_t
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070070 * ------------------------------------
71 * 31 8 7 0
72 *
73 * wlock signifies the one writer is in or somebody is updating
74 * counter. For a writer, if he successfully acquires the wlock,
75 * but counter is non-zero, he has to release the lock and wait,
76 * till both counter and wlock are zero.
77 *
78 * Unfortunately this scheme limits us to ~16,000,000 cpus.
79 */
Thomas Gleixnere5931942009-12-03 20:08:46 +010080static inline void __arch_read_lock(arch_rwlock_t *rw)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070081{
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +010082 register arch_rwlock_t *lp asm("g1");
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070083 lp = rw;
84 __asm__ __volatile__(
85 "mov %%o7, %%g4\n\t"
86 "call ___rw_read_enter\n\t"
87 " ldstub [%%g1 + 3], %%g2\n"
88 : /* no outputs */
89 : "r" (lp)
90 : "g2", "g4", "memory", "cc");
91}
92
Thomas Gleixnere5931942009-12-03 20:08:46 +010093#define arch_read_lock(lock) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070094do { unsigned long flags; \
95 local_irq_save(flags); \
Thomas Gleixnere5931942009-12-03 20:08:46 +010096 __arch_read_lock(lock); \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070097 local_irq_restore(flags); \
98} while(0)
99
Thomas Gleixnere5931942009-12-03 20:08:46 +0100100static inline void __arch_read_unlock(arch_rwlock_t *rw)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700101{
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100102 register arch_rwlock_t *lp asm("g1");
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700103 lp = rw;
104 __asm__ __volatile__(
105 "mov %%o7, %%g4\n\t"
106 "call ___rw_read_exit\n\t"
107 " ldstub [%%g1 + 3], %%g2\n"
108 : /* no outputs */
109 : "r" (lp)
110 : "g2", "g4", "memory", "cc");
111}
112
Thomas Gleixnere5931942009-12-03 20:08:46 +0100113#define arch_read_unlock(lock) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700114do { unsigned long flags; \
115 local_irq_save(flags); \
Thomas Gleixnere5931942009-12-03 20:08:46 +0100116 __arch_read_unlock(lock); \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700117 local_irq_restore(flags); \
118} while(0)
119
Thomas Gleixnere5931942009-12-03 20:08:46 +0100120static inline void arch_write_lock(arch_rwlock_t *rw)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700121{
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100122 register arch_rwlock_t *lp asm("g1");
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700123 lp = rw;
124 __asm__ __volatile__(
125 "mov %%o7, %%g4\n\t"
126 "call ___rw_write_enter\n\t"
127 " ldstub [%%g1 + 3], %%g2\n"
128 : /* no outputs */
129 : "r" (lp)
130 : "g2", "g4", "memory", "cc");
131 *(volatile __u32 *)&lp->lock = ~0U;
132}
133
Thomas Gleixnere5931942009-12-03 20:08:46 +0100134static inline int arch_write_trylock(arch_rwlock_t *rw)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700135{
136 unsigned int val;
137
138 __asm__ __volatile__("ldstub [%1 + 3], %0"
139 : "=r" (val)
140 : "r" (&rw->lock)
141 : "memory");
142
143 if (val == 0) {
144 val = rw->lock & ~0xff;
145 if (val)
146 ((volatile u8*)&rw->lock)[3] = 0;
147 else
148 *(volatile u32*)&rw->lock = ~0U;
149 }
150
151 return (val == 0);
152}
153
Thomas Gleixnere5931942009-12-03 20:08:46 +0100154static inline int __arch_read_trylock(arch_rwlock_t *rw)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700155{
Thomas Gleixnerfb3a6bb2009-12-03 20:01:19 +0100156 register arch_rwlock_t *lp asm("g1");
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700157 register int res asm("o0");
158 lp = rw;
159 __asm__ __volatile__(
160 "mov %%o7, %%g4\n\t"
161 "call ___rw_read_try\n\t"
162 " ldstub [%%g1 + 3], %%g2\n"
163 : "=r" (res)
164 : "r" (lp)
165 : "g2", "g4", "memory", "cc");
166 return res;
167}
168
Thomas Gleixnere5931942009-12-03 20:08:46 +0100169#define arch_read_trylock(lock) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700170({ unsigned long flags; \
171 int res; \
172 local_irq_save(flags); \
Thomas Gleixnere5931942009-12-03 20:08:46 +0100173 res = __arch_read_trylock(lock); \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700174 local_irq_restore(flags); \
175 res; \
176})
177
Thomas Gleixnere5931942009-12-03 20:08:46 +0100178#define arch_write_unlock(rw) do { (rw)->lock = 0; } while(0)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700179
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100180#define arch_spin_lock_flags(lock, flags) arch_spin_lock(lock)
Thomas Gleixnere5931942009-12-03 20:08:46 +0100181#define arch_read_lock_flags(rw, flags) arch_read_lock(rw)
182#define arch_write_lock_flags(rw, flags) arch_write_lock(rw)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700183
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100184#define arch_spin_relax(lock) cpu_relax()
185#define arch_read_relax(lock) cpu_relax()
186#define arch_write_relax(lock) cpu_relax()
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700187
Thomas Gleixnere5931942009-12-03 20:08:46 +0100188#define arch_read_can_lock(rw) (!((rw)->lock & 0xff))
189#define arch_write_can_lock(rw) (!(rw)->lock)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700190
191#endif /* !(__ASSEMBLY__) */
192
193#endif /* __SPARC_SPINLOCK_H */