blob: b14f6a91e19f33c214446d442667665aa2cd6310 [file] [log] [blame]
Ingo Molnarfb1c8f92005-09-10 00:25:56 -07001#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
8/*
9 * include/linux/spinlock_up.h - UP-debug version of spinlocks.
10 *
11 * portions Copyright 2005, Red Hat, Inc., Ingo Molnar
12 * Released under the General Public License (GPL).
13 *
14 * In the debug case, 1 means unlocked, 0 means locked. (the values
15 * are inverted, to catch initialization bugs)
16 *
17 * No atomicity anywhere, we are on UP.
18 */
19
20#ifdef CONFIG_DEBUG_SPINLOCK
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010021#define arch_spin_is_locked(x) ((x)->slock == 0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070022
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010023static inline void arch_spin_lock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070024{
25 lock->slock = 0;
26}
27
28static inline void
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010029arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070030{
31 local_irq_save(flags);
32 lock->slock = 0;
33}
34
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010035static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070036{
37 char oldval = lock->slock;
38
39 lock->slock = 0;
40
41 return oldval > 0;
42}
43
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010044static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070045{
46 lock->slock = 1;
47}
48
49/*
50 * Read-write spinlocks. No debug version.
51 */
Thomas Gleixnere5931942009-12-03 20:08:46 +010052#define arch_read_lock(lock) do { (void)(lock); } while (0)
53#define arch_write_lock(lock) do { (void)(lock); } while (0)
54#define arch_read_trylock(lock) ({ (void)(lock); 1; })
55#define arch_write_trylock(lock) ({ (void)(lock); 1; })
56#define arch_read_unlock(lock) do { (void)(lock); } while (0)
57#define arch_write_unlock(lock) do { (void)(lock); } while (0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070058
59#else /* DEBUG_SPINLOCK */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010060#define arch_spin_is_locked(lock) ((void)(lock), 0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070061/* for sched.c and kernel_lock.c: */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010062# define arch_spin_lock(lock) do { (void)(lock); } while (0)
63# define arch_spin_lock_flags(lock, flags) do { (void)(lock); } while (0)
64# define arch_spin_unlock(lock) do { (void)(lock); } while (0)
65# define arch_spin_trylock(lock) ({ (void)(lock); 1; })
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070066#endif /* DEBUG_SPINLOCK */
67
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010068#define arch_spin_is_contended(lock) (((void)(lock), 0))
Nick Piggin95c354f2008-01-30 13:31:20 +010069
Thomas Gleixnere5931942009-12-03 20:08:46 +010070#define arch_read_can_lock(lock) (((void)(lock), 1))
71#define arch_write_can_lock(lock) (((void)(lock), 1))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070072
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010073#define arch_spin_unlock_wait(lock) \
74 do { cpu_relax(); } while (arch_spin_is_locked(lock))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070075
76#endif /* __LINUX_SPINLOCK_UP_H */