blob: a26e2fb604e6e5f004e93da22d4f5355bf9a7358 [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
Stephen Rothwelld974d902011-05-20 15:48:17 +10008#include <asm/processor.h> /* for cpu_relax() */
9
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070010/*
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 *
19 * No atomicity anywhere, we are on UP.
20 */
21
22#ifdef CONFIG_DEBUG_SPINLOCK
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010023#define arch_spin_is_locked(x) ((x)->slock == 0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070024
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010025static inline void arch_spin_lock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070026{
27 lock->slock = 0;
28}
29
30static inline void
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010031arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070032{
33 local_irq_save(flags);
34 lock->slock = 0;
35}
36
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010037static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070038{
39 char oldval = lock->slock;
40
41 lock->slock = 0;
42
43 return oldval > 0;
44}
45
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010046static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070047{
48 lock->slock = 1;
49}
50
51/*
52 * Read-write spinlocks. No debug version.
53 */
Thomas Gleixnere5931942009-12-03 20:08:46 +010054#define arch_read_lock(lock) do { (void)(lock); } while (0)
55#define arch_write_lock(lock) do { (void)(lock); } while (0)
56#define arch_read_trylock(lock) ({ (void)(lock); 1; })
57#define arch_write_trylock(lock) ({ (void)(lock); 1; })
58#define arch_read_unlock(lock) do { (void)(lock); } while (0)
59#define arch_write_unlock(lock) do { (void)(lock); } while (0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070060
61#else /* DEBUG_SPINLOCK */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010062#define arch_spin_is_locked(lock) ((void)(lock), 0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070063/* for sched.c and kernel_lock.c: */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010064# define arch_spin_lock(lock) do { (void)(lock); } while (0)
65# define arch_spin_lock_flags(lock, flags) do { (void)(lock); } while (0)
66# define arch_spin_unlock(lock) do { (void)(lock); } while (0)
67# define arch_spin_trylock(lock) ({ (void)(lock); 1; })
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070068#endif /* DEBUG_SPINLOCK */
69
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010070#define arch_spin_is_contended(lock) (((void)(lock), 0))
Nick Piggin95c354f2008-01-30 13:31:20 +010071
Thomas Gleixnere5931942009-12-03 20:08:46 +010072#define arch_read_can_lock(lock) (((void)(lock), 1))
73#define arch_write_can_lock(lock) (((void)(lock), 1))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070074
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010075#define arch_spin_unlock_wait(lock) \
76 do { cpu_relax(); } while (arch_spin_is_locked(lock))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070077
78#endif /* __LINUX_SPINLOCK_UP_H */