Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-arm / spinlock.h
blob182323619caa84eabcaf59094e40a762c81813ff
1 #ifndef __ASM_SPINLOCK_H
2 #define __ASM_SPINLOCK_H
4 #if __LINUX_ARM_ARCH__ < 6
5 #error SMP not supported on pre-ARMv6 CPUs
6 #endif
8 /*
9 * ARMv6 Spin-locking.
11 * We (exclusively) read the old value, and decrement it. If it
12 * hits zero, we may have won the lock, so we try (exclusively)
13 * storing it.
15 * Unlocked value: 0
16 * Locked value: 1
18 typedef struct {
19 volatile unsigned int lock;
20 #ifdef CONFIG_PREEMPT
21 unsigned int break_lock;
22 #endif
23 } spinlock_t;
25 #define SPIN_LOCK_UNLOCKED (spinlock_t) { 0 }
27 #define spin_lock_init(x) do { *(x) = SPIN_LOCK_UNLOCKED; } while (0)
28 #define spin_is_locked(x) ((x)->lock != 0)
29 #define spin_unlock_wait(x) do { barrier(); } while (spin_is_locked(x))
30 #define _raw_spin_lock_flags(lock, flags) _raw_spin_lock(lock)
32 static inline void _raw_spin_lock(spinlock_t *lock)
34 unsigned long tmp;
36 __asm__ __volatile__(
37 "1: ldrex %0, [%1]\n"
38 " teq %0, #0\n"
39 " strexeq %0, %2, [%1]\n"
40 " teqeq %0, #0\n"
41 " bne 1b"
42 : "=&r" (tmp)
43 : "r" (&lock->lock), "r" (1)
44 : "cc", "memory");
47 static inline int _raw_spin_trylock(spinlock_t *lock)
49 unsigned long tmp;
51 __asm__ __volatile__(
52 " ldrex %0, [%1]\n"
53 " teq %0, #0\n"
54 " strexeq %0, %2, [%1]"
55 : "=&r" (tmp)
56 : "r" (&lock->lock), "r" (1)
57 : "cc", "memory");
59 return tmp == 0;
62 static inline void _raw_spin_unlock(spinlock_t *lock)
64 __asm__ __volatile__(
65 " str %1, [%0]"
67 : "r" (&lock->lock), "r" (0)
68 : "cc", "memory");
72 * RWLOCKS
74 typedef struct {
75 volatile unsigned int lock;
76 #ifdef CONFIG_PREEMPT
77 unsigned int break_lock;
78 #endif
79 } rwlock_t;
81 #define RW_LOCK_UNLOCKED (rwlock_t) { 0 }
82 #define rwlock_init(x) do { *(x) + RW_LOCK_UNLOCKED; } while (0)
85 * Write locks are easy - we just set bit 31. When unlocking, we can
86 * just write zero since the lock is exclusively held.
88 static inline void _raw_write_lock(rwlock_t *rw)
90 unsigned long tmp;
92 __asm__ __volatile__(
93 "1: ldrex %0, [%1]\n"
94 " teq %0, #0\n"
95 " strexeq %0, %2, [%1]\n"
96 " teq %0, #0\n"
97 " bne 1b"
98 : "=&r" (tmp)
99 : "r" (&rw->lock), "r" (0x80000000)
100 : "cc", "memory");
103 static inline void _raw_write_unlock(rwlock_t *rw)
105 __asm__ __volatile__(
106 "str %1, [%0]"
108 : "r" (&rw->lock), "r" (0)
109 : "cc", "memory");
113 * Read locks are a bit more hairy:
114 * - Exclusively load the lock value.
115 * - Increment it.
116 * - Store new lock value if positive, and we still own this location.
117 * If the value is negative, we've already failed.
118 * - If we failed to store the value, we want a negative result.
119 * - If we failed, try again.
120 * Unlocking is similarly hairy. We may have multiple read locks
121 * currently active. However, we know we won't have any write
122 * locks.
124 static inline void _raw_read_lock(rwlock_t *rw)
126 unsigned long tmp, tmp2;
128 __asm__ __volatile__(
129 "1: ldrex %0, [%2]\n"
130 " adds %0, %0, #1\n"
131 " strexpl %1, %0, [%2]\n"
132 " rsbpls %0, %1, #0\n"
133 " bmi 1b"
134 : "=&r" (tmp), "=&r" (tmp2)
135 : "r" (&rw->lock)
136 : "cc", "memory");
139 static inline void _raw_read_unlock(rwlock_t *rw)
141 __asm__ __volatile__(
142 "1: ldrex %0, [%2]\n"
143 " sub %0, %0, #1\n"
144 " strex %1, %0, [%2]\n"
145 " teq %1, #0\n"
146 " bne 1b"
147 : "=&r" (tmp), "=&r" (tmp2)
148 : "r" (&rw->lock)
149 : "cc", "memory");
152 #define _raw_read_trylock(lock) generic_raw_read_trylock(lock)
154 static inline int _raw_write_trylock(rwlock_t *rw)
156 unsigned long tmp;
158 __asm__ __volatile__(
159 "1: ldrex %0, [%1]\n"
160 " teq %0, #0\n"
161 " strexeq %0, %2, [%1]"
162 : "=&r" (tmp)
163 : "r" (&rw->lock), "r" (0x80000000)
164 : "cc", "memory");
166 return tmp == 0;
169 #endif /* __ASM_SPINLOCK_H */