Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * include/asm-s390/spinlock.h |
| 3 | * |
| 4 | * S390 version |
| 5 | * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation |
| 6 | * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 7 | * |
| 8 | * Derived from "include/asm-i386/spinlock.h" |
| 9 | */ |
| 10 | |
| 11 | #ifndef __ASM_SPINLOCK_H |
| 12 | #define __ASM_SPINLOCK_H |
| 13 | |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 14 | #include <linux/smp.h> |
| 15 | |
Martin Schwidefsky | 42e47ee | 2006-10-04 20:02:12 +0200 | [diff] [blame] | 16 | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 2) |
| 17 | |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 18 | static inline int |
| 19 | _raw_compare_and_swap(volatile unsigned int *lock, |
| 20 | unsigned int old, unsigned int new) |
| 21 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 22 | asm volatile( |
| 23 | " cs %0,%3,%1" |
| 24 | : "=d" (old), "=Q" (*lock) |
| 25 | : "0" (old), "d" (new), "Q" (*lock) |
| 26 | : "cc", "memory" ); |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 27 | return old; |
| 28 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 30 | #else /* __GNUC__ */ |
| 31 | |
| 32 | static inline int |
| 33 | _raw_compare_and_swap(volatile unsigned int *lock, |
| 34 | unsigned int old, unsigned int new) |
| 35 | { |
| 36 | asm volatile( |
| 37 | " cs %0,%3,0(%4)" |
| 38 | : "=d" (old), "=m" (*lock) |
| 39 | : "0" (old), "d" (new), "a" (lock), "m" (*lock) |
| 40 | : "cc", "memory" ); |
| 41 | return old; |
| 42 | } |
| 43 | |
| 44 | #endif /* __GNUC__ */ |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* |
| 47 | * Simple spin lock operations. There are two variants, one clears IRQ's |
| 48 | * on the local processor, one does not. |
| 49 | * |
| 50 | * We make no fairness assumptions. They have a cost. |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 51 | * |
| 52 | * (the type definitions are in asm/spinlock_types.h) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | */ |
| 54 | |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 55 | #define __raw_spin_is_locked(x) ((x)->owner_cpu != 0) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 56 | #define __raw_spin_unlock_wait(lock) \ |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 57 | do { while (__raw_spin_is_locked(lock)) \ |
| 58 | _raw_spin_relax(lock); } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Heiko Carstens | 3b4beb3 | 2008-01-26 14:11:03 +0100 | [diff] [blame] | 60 | extern void _raw_spin_lock_wait(raw_spinlock_t *); |
Hisashi Hifumi | 894cdde | 2008-01-26 14:11:28 +0100 | [diff] [blame] | 61 | extern void _raw_spin_lock_wait_flags(raw_spinlock_t *, unsigned long flags); |
Heiko Carstens | 3b4beb3 | 2008-01-26 14:11:03 +0100 | [diff] [blame] | 62 | extern int _raw_spin_trylock_retry(raw_spinlock_t *); |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 63 | extern void _raw_spin_relax(raw_spinlock_t *lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 65 | static inline void __raw_spin_lock(raw_spinlock_t *lp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 67 | int old; |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 68 | |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 69 | old = _raw_compare_and_swap(&lp->owner_cpu, 0, ~smp_processor_id()); |
Heiko Carstens | 3b4beb3 | 2008-01-26 14:11:03 +0100 | [diff] [blame] | 70 | if (likely(old == 0)) |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 71 | return; |
Heiko Carstens | 3b4beb3 | 2008-01-26 14:11:03 +0100 | [diff] [blame] | 72 | _raw_spin_lock_wait(lp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Hisashi Hifumi | 894cdde | 2008-01-26 14:11:28 +0100 | [diff] [blame] | 75 | static inline void __raw_spin_lock_flags(raw_spinlock_t *lp, |
| 76 | unsigned long flags) |
| 77 | { |
| 78 | int old; |
| 79 | |
| 80 | old = _raw_compare_and_swap(&lp->owner_cpu, 0, ~smp_processor_id()); |
| 81 | if (likely(old == 0)) |
| 82 | return; |
| 83 | _raw_spin_lock_wait_flags(lp, flags); |
| 84 | } |
| 85 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 86 | static inline int __raw_spin_trylock(raw_spinlock_t *lp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 88 | int old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 90 | old = _raw_compare_and_swap(&lp->owner_cpu, 0, ~smp_processor_id()); |
Heiko Carstens | 3b4beb3 | 2008-01-26 14:11:03 +0100 | [diff] [blame] | 91 | if (likely(old == 0)) |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 92 | return 1; |
Heiko Carstens | 3b4beb3 | 2008-01-26 14:11:03 +0100 | [diff] [blame] | 93 | return _raw_spin_trylock_retry(lp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 96 | static inline void __raw_spin_unlock(raw_spinlock_t *lp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Martin Schwidefsky | 3c1fcfe | 2006-09-30 23:27:45 -0700 | [diff] [blame] | 98 | _raw_compare_and_swap(&lp->owner_cpu, lp->owner_cpu, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | /* |
| 102 | * Read-write spinlocks, allowing multiple readers |
| 103 | * but only one writer. |
| 104 | * |
| 105 | * NOTE! it is quite common to have readers in interrupts |
| 106 | * but no interrupt writers. For those circumstances we |
| 107 | * can "mix" irq-safe locks - any writer needs to get a |
| 108 | * irq-safe write-lock, but readers can get non-irqsafe |
| 109 | * read-locks. |
| 110 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /** |
| 113 | * read_can_lock - would read_trylock() succeed? |
| 114 | * @lock: the rwlock in question. |
| 115 | */ |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 116 | #define __raw_read_can_lock(x) ((int)(x)->lock >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | /** |
| 119 | * write_can_lock - would write_trylock() succeed? |
| 120 | * @lock: the rwlock in question. |
| 121 | */ |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 122 | #define __raw_write_can_lock(x) ((x)->lock == 0) |
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 | extern void _raw_read_lock_wait(raw_rwlock_t *lp); |
| 125 | extern int _raw_read_trylock_retry(raw_rwlock_t *lp); |
| 126 | extern void _raw_write_lock_wait(raw_rwlock_t *lp); |
| 127 | extern int _raw_write_trylock_retry(raw_rwlock_t *lp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 129 | static inline void __raw_read_lock(raw_rwlock_t *rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 131 | unsigned int old; |
| 132 | old = rw->lock & 0x7fffffffU; |
| 133 | if (_raw_compare_and_swap(&rw->lock, old, old + 1) != old) |
| 134 | _raw_read_lock_wait(rw); |
| 135 | } |
| 136 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 137 | static inline void __raw_read_unlock(raw_rwlock_t *rw) |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 138 | { |
| 139 | unsigned int old, cmp; |
| 140 | |
| 141 | old = rw->lock; |
| 142 | do { |
| 143 | cmp = old; |
| 144 | old = _raw_compare_and_swap(&rw->lock, old, old - 1); |
| 145 | } while (cmp != old); |
| 146 | } |
| 147 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 148 | static inline void __raw_write_lock(raw_rwlock_t *rw) |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 149 | { |
| 150 | if (unlikely(_raw_compare_and_swap(&rw->lock, 0, 0x80000000) != 0)) |
| 151 | _raw_write_lock_wait(rw); |
| 152 | } |
| 153 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 154 | static inline void __raw_write_unlock(raw_rwlock_t *rw) |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 155 | { |
| 156 | _raw_compare_and_swap(&rw->lock, 0x80000000, 0); |
| 157 | } |
| 158 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 159 | static inline int __raw_read_trylock(raw_rwlock_t *rw) |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 160 | { |
| 161 | unsigned int old; |
| 162 | old = rw->lock & 0x7fffffffU; |
| 163 | if (likely(_raw_compare_and_swap(&rw->lock, old, old + 1) == old)) |
| 164 | return 1; |
| 165 | return _raw_read_trylock_retry(rw); |
| 166 | } |
| 167 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 168 | static inline int __raw_write_trylock(raw_rwlock_t *rw) |
Martin Schwidefsky | 951f22d | 2005-07-27 11:44:57 -0700 | [diff] [blame] | 169 | { |
| 170 | if (likely(_raw_compare_and_swap(&rw->lock, 0, 0x80000000) == 0)) |
| 171 | return 1; |
| 172 | return _raw_write_trylock_retry(rw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Martin Schwidefsky | ef6edc9 | 2006-09-30 23:27:43 -0700 | [diff] [blame] | 175 | #define _raw_read_relax(lock) cpu_relax() |
| 176 | #define _raw_write_relax(lock) cpu_relax() |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | #endif /* __ASM_SPINLOCK_H */ |