]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/parisc/include/asm/spinlock.h
locking: Convert raw_spinlock to arch_spinlock
[net-next-2.6.git] / arch / parisc / include / asm / spinlock.h
CommitLineData
1da177e4
LT
1#ifndef __ASM_SPINLOCK_H
2#define __ASM_SPINLOCK_H
3
4#include <asm/system.h>
fb1c8f93
IM
5#include <asm/processor.h>
6#include <asm/spinlock_types.h>
1da177e4 7
445c8951 8static inline int __raw_spin_is_locked(arch_spinlock_t *x)
1da177e4
LT
9{
10 volatile unsigned int *a = __ldcw_align(x);
11 return *a == 0;
12}
13
08dc2ca6 14#define __raw_spin_lock(lock) __raw_spin_lock_flags(lock, 0)
fb1c8f93
IM
15#define __raw_spin_unlock_wait(x) \
16 do { cpu_relax(); } while (__raw_spin_is_locked(x))
1da177e4 17
445c8951 18static inline void __raw_spin_lock_flags(arch_spinlock_t *x,
08dc2ca6 19 unsigned long flags)
1da177e4
LT
20{
21 volatile unsigned int *a;
22
23 mb();
24 a = __ldcw_align(x);
25 while (__ldcw(a) == 0)
08dc2ca6
JB
26 while (*a == 0)
27 if (flags & PSW_SM_I) {
28 local_irq_enable();
29 cpu_relax();
30 local_irq_disable();
31 } else
32 cpu_relax();
1da177e4
LT
33 mb();
34}
35
445c8951 36static inline void __raw_spin_unlock(arch_spinlock_t *x)
1da177e4
LT
37{
38 volatile unsigned int *a;
39 mb();
40 a = __ldcw_align(x);
41 *a = 1;
42 mb();
43}
44
445c8951 45static inline int __raw_spin_trylock(arch_spinlock_t *x)
1da177e4
LT
46{
47 volatile unsigned int *a;
48 int ret;
49
50 mb();
51 a = __ldcw_align(x);
52 ret = __ldcw(a) != 0;
53 mb();
54
55 return ret;
56}
1da177e4
LT
57
58/*
6e071852 59 * Read-write spinlocks, allowing multiple readers but only one writer.
65ee8f0a
MW
60 * Linux rwlocks are unfair to writers; they can be starved for an indefinite
61 * time by readers. With care, they can also be taken in interrupt context.
62 *
63 * In the PA-RISC implementation, we have a spinlock and a counter.
64 * Readers use the lock to serialise their access to the counter (which
65 * records how many readers currently hold the lock).
66 * Writers hold the spinlock, preventing any readers or other writers from
67 * grabbing the rwlock.
1da177e4 68 */
1da177e4 69
65ee8f0a
MW
70/* Note that we have to ensure interrupts are disabled in case we're
71 * interrupted by some other code that wants to grab the same read lock */
fb1c8f93 72static __inline__ void __raw_read_lock(raw_rwlock_t *rw)
1da177e4 73{
6e071852
MW
74 unsigned long flags;
75 local_irq_save(flags);
65ee8f0a 76 __raw_spin_lock_flags(&rw->lock, flags);
1da177e4 77 rw->counter++;
fb1c8f93 78 __raw_spin_unlock(&rw->lock);
6e071852 79 local_irq_restore(flags);
1da177e4 80}
1da177e4 81
65ee8f0a
MW
82/* Note that we have to ensure interrupts are disabled in case we're
83 * interrupted by some other code that wants to grab the same read lock */
fb1c8f93 84static __inline__ void __raw_read_unlock(raw_rwlock_t *rw)
1da177e4 85{
6e071852
MW
86 unsigned long flags;
87 local_irq_save(flags);
65ee8f0a 88 __raw_spin_lock_flags(&rw->lock, flags);
1da177e4 89 rw->counter--;
fb1c8f93 90 __raw_spin_unlock(&rw->lock);
6e071852 91 local_irq_restore(flags);
1da177e4
LT
92}
93
65ee8f0a
MW
94/* Note that we have to ensure interrupts are disabled in case we're
95 * interrupted by some other code that wants to grab the same read lock */
6e071852
MW
96static __inline__ int __raw_read_trylock(raw_rwlock_t *rw)
97{
98 unsigned long flags;
99 retry:
100 local_irq_save(flags);
101 if (__raw_spin_trylock(&rw->lock)) {
102 rw->counter++;
103 __raw_spin_unlock(&rw->lock);
104 local_irq_restore(flags);
105 return 1;
106 }
107
108 local_irq_restore(flags);
109 /* If write-locked, we fail to acquire the lock */
110 if (rw->counter < 0)
111 return 0;
112
113 /* Wait until we have a realistic chance at the lock */
114 while (__raw_spin_is_locked(&rw->lock) && rw->counter >= 0)
115 cpu_relax();
116
117 goto retry;
118}
1da177e4 119
65ee8f0a
MW
120/* Note that we have to ensure interrupts are disabled in case we're
121 * interrupted by some other code that wants to read_trylock() this lock */
6e071852 122static __inline__ void __raw_write_lock(raw_rwlock_t *rw)
1da177e4 123{
6e071852 124 unsigned long flags;
1da177e4 125retry:
6e071852 126 local_irq_save(flags);
65ee8f0a 127 __raw_spin_lock_flags(&rw->lock, flags);
1da177e4 128
6e071852 129 if (rw->counter != 0) {
fb1c8f93 130 __raw_spin_unlock(&rw->lock);
6e071852 131 local_irq_restore(flags);
1da177e4 132
fb1c8f93
IM
133 while (rw->counter != 0)
134 cpu_relax();
1da177e4
LT
135
136 goto retry;
137 }
138
6e071852
MW
139 rw->counter = -1; /* mark as write-locked */
140 mb();
141 local_irq_restore(flags);
1da177e4 142}
1da177e4 143
6e071852 144static __inline__ void __raw_write_unlock(raw_rwlock_t *rw)
1da177e4
LT
145{
146 rw->counter = 0;
fb1c8f93 147 __raw_spin_unlock(&rw->lock);
1da177e4
LT
148}
149
65ee8f0a
MW
150/* Note that we have to ensure interrupts are disabled in case we're
151 * interrupted by some other code that wants to read_trylock() this lock */
6e071852 152static __inline__ int __raw_write_trylock(raw_rwlock_t *rw)
1da177e4 153{
6e071852
MW
154 unsigned long flags;
155 int result = 0;
156
157 local_irq_save(flags);
158 if (__raw_spin_trylock(&rw->lock)) {
159 if (rw->counter == 0) {
160 rw->counter = -1;
161 result = 1;
162 } else {
163 /* Read-locked. Oh well. */
164 __raw_spin_unlock(&rw->lock);
165 }
1da177e4 166 }
6e071852 167 local_irq_restore(flags);
1da177e4 168
6e071852 169 return result;
1da177e4 170}
1da177e4 171
bc8846c5
KM
172/*
173 * read_can_lock - would read_trylock() succeed?
174 * @lock: the rwlock in question.
175 */
176static __inline__ int __raw_read_can_lock(raw_rwlock_t *rw)
1da177e4 177{
bc8846c5 178 return rw->counter >= 0;
1da177e4
LT
179}
180
bc8846c5
KM
181/*
182 * write_can_lock - would write_trylock() succeed?
183 * @lock: the rwlock in question.
184 */
185static __inline__ int __raw_write_can_lock(raw_rwlock_t *rw)
1da177e4 186{
bc8846c5 187 return !rw->counter;
1da177e4
LT
188}
189
f5f7eac4
RH
190#define __raw_read_lock_flags(lock, flags) __raw_read_lock(lock)
191#define __raw_write_lock_flags(lock, flags) __raw_write_lock(lock)
192
ef6edc97
MS
193#define _raw_spin_relax(lock) cpu_relax()
194#define _raw_read_relax(lock) cpu_relax()
195#define _raw_write_relax(lock) cpu_relax()
196
1da177e4 197#endif /* __ASM_SPINLOCK_H */