2 * ARM semaphore implementation, taken from
4 * i386 semaphore implementation.
6 * (C) Copyright 1999 Linus Torvalds
7 * (C) Copyright 2003 Ian Molton (ARM26 mods)
9 * Modified for ARM by Russell King
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/config.h>
17 #include <linux/sched.h>
18 #include <linux/errno.h>
19 #include <linux/init.h>
21 #include <asm/semaphore.h>
24 * Semaphores are implemented using a two-way counter:
25 * The "count" variable is decremented for each process
26 * that tries to acquire the semaphore, while the "sleeping"
27 * variable is a count of such acquires.
29 * Notably, the inline "up()" and "down()" functions can
30 * efficiently test if they need to do any extra work (up
31 * needs to do something only if count was negative before
32 * the increment operation.
34 * "sleeping" and the contention routine ordering is
35 * protected by the semaphore spinlock.
37 * Note that these functions are only called when there is
38 * contention on the lock, and as such all this is the
39 * "non-critical" part of the whole semaphore business. The
40 * critical part is the inline stuff in <asm/semaphore.h>
41 * where we want to avoid any extra jumps and calls.
46 * - only on a boundary condition do we need to care. When we go
47 * from a negative count to a non-negative, we wake people up.
48 * - when we go from a non-negative count to a negative do we
49 * (a) synchronize with the "sleeper" count and (b) make sure
50 * that we're on the wakeup list before we synchronize so that
51 * we cannot lose wakeup events.
54 void __up(struct semaphore
*sem
)
59 static DEFINE_SPINLOCK(semaphore_lock
);
61 void __sched
__down(struct semaphore
* sem
)
63 struct task_struct
*tsk
= current
;
64 DECLARE_WAITQUEUE(wait
, tsk
);
65 tsk
->state
= TASK_UNINTERRUPTIBLE
;
66 add_wait_queue_exclusive(&sem
->wait
, &wait
);
68 spin_lock_irq(&semaphore_lock
);
71 int sleepers
= sem
->sleepers
;
74 * Add "everybody else" into it. They aren't
75 * playing, because we own the spinlock.
77 if (!atomic_add_negative(sleepers
- 1, &sem
->count
)) {
81 sem
->sleepers
= 1; /* us - see -1 above */
82 spin_unlock_irq(&semaphore_lock
);
85 tsk
->state
= TASK_UNINTERRUPTIBLE
;
86 spin_lock_irq(&semaphore_lock
);
88 spin_unlock_irq(&semaphore_lock
);
89 remove_wait_queue(&sem
->wait
, &wait
);
90 tsk
->state
= TASK_RUNNING
;
94 int __sched
__down_interruptible(struct semaphore
* sem
)
97 struct task_struct
*tsk
= current
;
98 DECLARE_WAITQUEUE(wait
, tsk
);
99 tsk
->state
= TASK_INTERRUPTIBLE
;
100 add_wait_queue_exclusive(&sem
->wait
, &wait
);
102 spin_lock_irq(&semaphore_lock
);
105 int sleepers
= sem
->sleepers
;
108 * With signals pending, this turns into
109 * the trylock failure case - we won't be
110 * sleeping, and we* can't get the lock as
111 * it has contention. Just correct the count
114 if (signal_pending(current
)) {
117 atomic_add(sleepers
, &sem
->count
);
122 * Add "everybody else" into it. They aren't
123 * playing, because we own the spinlock. The
124 * "-1" is because we're still hoping to get
127 if (!atomic_add_negative(sleepers
- 1, &sem
->count
)) {
131 sem
->sleepers
= 1; /* us - see -1 above */
132 spin_unlock_irq(&semaphore_lock
);
135 tsk
->state
= TASK_INTERRUPTIBLE
;
136 spin_lock_irq(&semaphore_lock
);
138 spin_unlock_irq(&semaphore_lock
);
139 tsk
->state
= TASK_RUNNING
;
140 remove_wait_queue(&sem
->wait
, &wait
);
146 * Trylock failed - make sure we correct for
147 * having decremented the count.
149 * We could have done the trylock with a
150 * single "cmpxchg" without failure cases,
151 * but then it wouldn't work on a 386.
153 int __down_trylock(struct semaphore
* sem
)
158 spin_lock_irqsave(&semaphore_lock
, flags
);
159 sleepers
= sem
->sleepers
+ 1;
163 * Add "everybody else" and us into it. They aren't
164 * playing, because we own the spinlock.
166 if (!atomic_add_negative(sleepers
, &sem
->count
))
169 spin_unlock_irqrestore(&semaphore_lock
, flags
);
174 * The semaphore operations have a special calling sequence that
175 * allow us to do a simpler in-line version of them. These routines
176 * need to convert that sequence back into the C sequence when
177 * there is contention on the semaphore.
179 * ip contains the semaphore pointer on entry. Save the C-clobbered
180 * registers (r0 to r3 and lr), but not ip, as we use it as a return
181 * value in some cases..
183 asm(" .section .sched.text , #alloc, #execinstr \n\
185 .globl __down_failed \n\
187 stmfd sp!, {r0 - r3, lr} \n\
190 ldmfd sp!, {r0 - r3, pc}^ \n\
193 .globl __down_interruptible_failed \n\
194 __down_interruptible_failed: \n\
195 stmfd sp!, {r0 - r3, lr} \n\
197 bl __down_interruptible \n\
199 ldmfd sp!, {r0 - r3, pc}^ \n\
202 .globl __down_trylock_failed \n\
203 __down_trylock_failed: \n\
204 stmfd sp!, {r0 - r3, lr} \n\
206 bl __down_trylock \n\
208 ldmfd sp!, {r0 - r3, pc}^ \n\
211 .globl __up_wakeup \n\
213 stmfd sp!, {r0 - r3, lr} \n\
216 ldmfd sp!, {r0 - r3, pc}^ \n\
219 EXPORT_SYMBOL(__down_failed
);
220 EXPORT_SYMBOL(__down_interruptible_failed
);
221 EXPORT_SYMBOL(__down_trylock_failed
);
222 EXPORT_SYMBOL(__up_wakeup
);