blob: 8b3ac0d718ebd7fd80987f6ede10725358102e1d [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 *
Linus Torvalds386afc92013-04-09 10:48:33 -070019 * 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 Molnarfb1c8f92005-09-10 00:25:56 -070023 */
24
25#ifdef CONFIG_DEBUG_SPINLOCK
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010026#define arch_spin_is_locked(x) ((x)->slock == 0)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070027
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010028static inline void arch_spin_lock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070029{
30 lock->slock = 0;
Linus Torvalds386afc92013-04-09 10:48:33 -070031 barrier();
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070032}
33
34static inline void
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010035arch_spin_lock_flags(arch_spinlock_t *lock, unsigned long flags)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070036{
37 local_irq_save(flags);
38 lock->slock = 0;
Linus Torvalds386afc92013-04-09 10:48:33 -070039 barrier();
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070040}
41
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010042static inline int arch_spin_trylock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070043{
44 char oldval = lock->slock;
45
46 lock->slock = 0;
Linus Torvalds386afc92013-04-09 10:48:33 -070047 barrier();
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070048
49 return oldval > 0;
50}
51
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010052static inline void arch_spin_unlock(arch_spinlock_t *lock)
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070053{
Linus Torvalds386afc92013-04-09 10:48:33 -070054 barrier();
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070055 lock->slock = 1;
56}
57
58/*
59 * Read-write spinlocks. No debug version.
60 */
Linus Torvalds386afc92013-04-09 10:48:33 -070061#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 Molnarfb1c8f92005-09-10 00:25:56 -070067
68#else /* DEBUG_SPINLOCK */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010069#define arch_spin_is_locked(lock) ((void)(lock), 0)
Viresh Kumar0a0fca92013-06-04 13:10:24 +053070/* for sched/core.c and kernel_lock.c: */
Linus Torvalds386afc92013-04-09 10:48:33 -070071# 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 Molnarfb1c8f92005-09-10 00:25:56 -070075#endif /* DEBUG_SPINLOCK */
76
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010077#define arch_spin_is_contended(lock) (((void)(lock), 0))
Nick Piggin95c354f2008-01-30 13:31:20 +010078
Thomas Gleixnere5931942009-12-03 20:08:46 +010079#define arch_read_can_lock(lock) (((void)(lock), 1))
80#define arch_write_can_lock(lock) (((void)(lock), 1))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070081
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010082#define arch_spin_unlock_wait(lock) \
83 do { cpu_relax(); } while (arch_spin_is_locked(lock))
Ingo Molnarfb1c8f92005-09-10 00:25:56 -070084
85#endif /* __LINUX_SPINLOCK_UP_H */