Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_SPINLOCK_UP_H |
| 2 | #define __LINUX_SPINLOCK_UP_H |
| 3 | |
| 4 | #ifndef __LINUX_SPINLOCK_H |
| 5 | # error "please don't include this file directly" |
| 6 | #endif |
| 7 | |
Stephen Rothwell | d974d90 | 2011-05-20 15:48:17 +1000 | [diff] [blame] | 8 | #include <asm/processor.h> /* for cpu_relax() */ |
| 9 | |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 10 | /* |
| 11 | * include/linux/spinlock_up.h - UP-debug version of spinlocks. |
| 12 | * |
| 13 | * portions Copyright 2005, Red Hat, Inc., Ingo Molnar |
| 14 | * Released under the General Public License (GPL). |
| 15 | * |
| 16 | * In the debug case, 1 means unlocked, 0 means locked. (the values |
| 17 | * are inverted, to catch initialization bugs) |
| 18 | * |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 19 | * No atomicity anywhere, we are on UP. However, we still need |
| 20 | * the compiler barriers, because we do not want the compiler to |
| 21 | * move potentially faulting instructions (notably user accesses) |
| 22 | * into the locked sequence, resulting in non-atomic execution. |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | #ifdef CONFIG_DEBUG_SPINLOCK |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 26 | #define arch_spin_is_locked(x) ((x)->slock == 0) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 27 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 28 | static inline void arch_spin_lock(arch_spinlock_t *lock) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 29 | { |
| 30 | lock->slock = 0; |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 31 | barrier(); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | static inline void |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 35 | arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 36 | { |
| 37 | local_irq_save(flags); |
| 38 | lock->slock = 0; |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 39 | barrier(); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 42 | static inline int arch_spin_trylock(arch_spinlock_t *lock) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 43 | { |
| 44 | char oldval = lock->slock; |
| 45 | |
| 46 | lock->slock = 0; |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 47 | barrier(); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 48 | |
| 49 | return oldval > 0; |
| 50 | } |
| 51 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 52 | static inline void arch_spin_unlock(arch_spinlock_t *lock) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 53 | { |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 54 | barrier(); |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 55 | lock->slock = 1; |
| 56 | } |
| 57 | |
| 58 | /* |
| 59 | * Read-write spinlocks. No debug version. |
| 60 | */ |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 61 | #define arch_read_lock(lock) do { barrier(); (void)(lock); } while (0) |
| 62 | #define arch_write_lock(lock) do { barrier(); (void)(lock); } while (0) |
| 63 | #define arch_read_trylock(lock) ({ barrier(); (void)(lock); 1; }) |
| 64 | #define arch_write_trylock(lock) ({ barrier(); (void)(lock); 1; }) |
| 65 | #define arch_read_unlock(lock) do { barrier(); (void)(lock); } while (0) |
| 66 | #define arch_write_unlock(lock) do { barrier(); (void)(lock); } while (0) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 67 | |
| 68 | #else /* DEBUG_SPINLOCK */ |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 69 | #define arch_spin_is_locked(lock) ((void)(lock), 0) |
Viresh Kumar | 0a0fca9 | 2013-06-04 13:10:24 +0530 | [diff] [blame] | 70 | /* for sched/core.c and kernel_lock.c: */ |
Linus Torvalds | 386afc9 | 2013-04-09 10:48:33 -0700 | [diff] [blame] | 71 | # define arch_spin_lock(lock) do { barrier(); (void)(lock); } while (0) |
| 72 | # define arch_spin_lock_flags(lock, flags) do { barrier(); (void)(lock); } while (0) |
| 73 | # define arch_spin_unlock(lock) do { barrier(); (void)(lock); } while (0) |
| 74 | # define arch_spin_trylock(lock) ({ barrier(); (void)(lock); 1; }) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 75 | #endif /* DEBUG_SPINLOCK */ |
| 76 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 77 | #define arch_spin_is_contended(lock) (((void)(lock), 0)) |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 78 | |
Thomas Gleixner | e593194 | 2009-12-03 20:08:46 +0100 | [diff] [blame] | 79 | #define arch_read_can_lock(lock) (((void)(lock), 1)) |
| 80 | #define arch_write_can_lock(lock) (((void)(lock), 1)) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 81 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 82 | #define arch_spin_unlock_wait(lock) \ |
| 83 | do { cpu_relax(); } while (arch_spin_is_locked(lock)) |
Ingo Molnar | fb1c8f9 | 2005-09-10 00:25:56 -0700 | [diff] [blame] | 84 | |
| 85 | #endif /* __LINUX_SPINLOCK_UP_H */ |