Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_SPINLOCK_H |
| 2 | #define __ASM_SPINLOCK_H |
| 3 | |
| 4 | #include <asm/system.h> |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 5 | #include <asm/processor.h> |
| 6 | #include <asm/spinlock_types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 8 | static inline int __raw_spin_is_locked(raw_spinlock_t *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | { |
| 10 | volatile unsigned int *a = __ldcw_align(x); |
| 11 | return *a == 0; |
| 12 | } |
| 13 | |
James Bottomley | 08dc2ca | 2005-11-17 16:35:09 -0500 | [diff] [blame] | 14 | #define __raw_spin_lock(lock) __raw_spin_lock_flags(lock, 0) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 15 | #define __raw_spin_unlock_wait(x) \ |
| 16 | do { cpu_relax(); } while (__raw_spin_is_locked(x)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
James Bottomley | 08dc2ca | 2005-11-17 16:35:09 -0500 | [diff] [blame] | 18 | static inline void __raw_spin_lock_flags(raw_spinlock_t *x, |
| 19 | unsigned long flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | { |
| 21 | volatile unsigned int *a; |
| 22 | |
| 23 | mb(); |
| 24 | a = __ldcw_align(x); |
| 25 | while (__ldcw(a) == 0) |
James Bottomley | 08dc2ca | 2005-11-17 16:35:09 -0500 | [diff] [blame] | 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(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | mb(); |
| 34 | } |
| 35 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 36 | static inline void __raw_spin_unlock(raw_spinlock_t *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
| 38 | volatile unsigned int *a; |
| 39 | mb(); |
| 40 | a = __ldcw_align(x); |
| 41 | *a = 1; |
| 42 | mb(); |
| 43 | } |
| 44 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 45 | static inline int __raw_spin_trylock(raw_spinlock_t *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | /* |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 59 | * Read-write spinlocks, allowing multiple readers but only one writer. |
| 60 | * The spinlock is held by the writer, preventing any readers or other |
| 61 | * writers from grabbing the rwlock. Readers use the lock to serialise their |
| 62 | * access to the counter (which records how many readers currently hold the |
| 63 | * lock). Linux rwlocks are unfair to writers; they can be starved for |
| 64 | * an indefinite time by readers. They can also be taken in interrupt context, |
| 65 | * so we have to disable interrupts when acquiring the spin lock to be sure |
| 66 | * that an interrupting reader doesn't get an inconsistent view of the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 69 | static __inline__ void __raw_read_lock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 71 | unsigned long flags; |
| 72 | local_irq_save(flags); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 73 | __raw_spin_lock(&rw->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | rw->counter++; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 75 | __raw_spin_unlock(&rw->lock); |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 76 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 79 | static __inline__ void __raw_read_unlock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 81 | unsigned long flags; |
| 82 | local_irq_save(flags); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 83 | __raw_spin_lock(&rw->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | rw->counter--; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 85 | __raw_spin_unlock(&rw->lock); |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 86 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 89 | static __inline__ int __raw_read_trylock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 91 | unsigned long flags; |
| 92 | retry: |
| 93 | local_irq_save(flags); |
| 94 | if (__raw_spin_trylock(&rw->lock)) { |
| 95 | rw->counter++; |
| 96 | __raw_spin_unlock(&rw->lock); |
| 97 | local_irq_restore(flags); |
| 98 | return 1; |
| 99 | } |
| 100 | |
| 101 | local_irq_restore(flags); |
| 102 | /* If write-locked, we fail to acquire the lock */ |
| 103 | if (rw->counter < 0) |
| 104 | return 0; |
| 105 | |
| 106 | /* Wait until we have a realistic chance at the lock */ |
| 107 | while (__raw_spin_is_locked(&rw->lock) && rw->counter >= 0) |
| 108 | cpu_relax(); |
| 109 | |
| 110 | goto retry; |
| 111 | } |
| 112 | |
| 113 | static __inline__ void __raw_write_lock(raw_rwlock_t *rw) |
| 114 | { |
| 115 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | retry: |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 117 | local_irq_save(flags); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 118 | __raw_spin_lock(&rw->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 120 | if (rw->counter != 0) { |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 121 | __raw_spin_unlock(&rw->lock); |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 122 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 124 | while (rw->counter != 0) |
| 125 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
| 127 | goto retry; |
| 128 | } |
| 129 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 130 | rw->counter = -1; /* mark as write-locked */ |
| 131 | mb(); |
| 132 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 135 | static __inline__ void __raw_write_unlock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | { |
| 137 | rw->counter = 0; |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 138 | __raw_spin_unlock(&rw->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 141 | static __inline__ int __raw_write_trylock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | { |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 143 | unsigned long flags; |
| 144 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 146 | local_irq_save(flags); |
| 147 | if (__raw_spin_trylock(&rw->lock)) { |
| 148 | if (rw->counter == 0) { |
| 149 | rw->counter = -1; |
| 150 | result = 1; |
| 151 | } else { |
| 152 | /* Read-locked. Oh well. */ |
| 153 | __raw_spin_unlock(&rw->lock); |
| 154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | } |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 156 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Matthew Wilcox | 6e07185 | 2006-09-02 07:54:58 -0600 | [diff] [blame^] | 158 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Kyle McMartin | bc8846c | 2006-03-24 21:22:02 -0700 | [diff] [blame] | 161 | /* |
| 162 | * read_can_lock - would read_trylock() succeed? |
| 163 | * @lock: the rwlock in question. |
| 164 | */ |
| 165 | static __inline__ int __raw_read_can_lock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { |
Kyle McMartin | bc8846c | 2006-03-24 21:22:02 -0700 | [diff] [blame] | 167 | return rw->counter >= 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Kyle McMartin | bc8846c | 2006-03-24 21:22:02 -0700 | [diff] [blame] | 170 | /* |
| 171 | * write_can_lock - would write_trylock() succeed? |
| 172 | * @lock: the rwlock in question. |
| 173 | */ |
| 174 | static __inline__ int __raw_write_can_lock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Kyle McMartin | bc8846c | 2006-03-24 21:22:02 -0700 | [diff] [blame] | 176 | return !rw->counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Martin Schwidefsky | ef6edc9 | 2006-09-30 23:27:43 -0700 | [diff] [blame] | 179 | #define _raw_spin_relax(lock) cpu_relax() |
| 180 | #define _raw_read_relax(lock) cpu_relax() |
| 181 | #define _raw_write_relax(lock) cpu_relax() |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | #endif /* __ASM_SPINLOCK_H */ |