2 * MIPS-specific semaphore code.
4 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
5 * Copyright (C) 2004 Ralf Baechle <ralf@linux-mips.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
12 * April 2001 - Reworked by Paul Mackerras <paulus@samba.org>
13 * to eliminate the SMP races in the old version between the updates
14 * of `count' and `waking'. Now we use negative `count' values to
15 * indicate that some process(es) are waiting for the semaphore.
18 #include <linux/module.h>
19 #include <linux/sched.h>
20 #include <linux/init.h>
21 #include <asm/atomic.h>
22 #include <asm/cpu-features.h>
23 #include <asm/errno.h>
24 #include <asm/semaphore.h>
27 * Atomically update sem->count.
28 * This does the equivalent of the following:
30 * old_count = sem->count;
31 * tmp = MAX(old_count, 0) + incr;
35 * On machines without lld/scd we need a spinlock to make the manipulation of
36 * sem->count and sem->waking atomic. Scalability isn't an issue because
37 * this lock is used on UP only so it's just an empty variable.
39 static inline int __sem_update_count(struct semaphore
*sem
, int incr
)
43 if (cpu_has_llsc
&& R10000_LLSC_WAR
) {
46 "1: ll %0, %2 # __sem_update_count \n"
54 : "=&r" (old_count
), "=&r" (tmp
), "=m" (sem
->count
)
55 : "r" (incr
), "m" (sem
->count
));
56 } else if (cpu_has_llsc
) {
59 "1: ll %0, %2 # __sem_update_count \n"
67 : "=&r" (old_count
), "=&r" (tmp
), "=m" (sem
->count
)
68 : "r" (incr
), "m" (sem
->count
));
70 static DEFINE_SPINLOCK(semaphore_lock
);
73 spin_lock_irqsave(&semaphore_lock
, flags
);
74 old_count
= atomic_read(&sem
->count
);
75 tmp
= max_t(int, old_count
, 0) + incr
;
76 atomic_set(&sem
->count
, tmp
);
77 spin_unlock_irqrestore(&semaphore_lock
, flags
);
83 void __up(struct semaphore
*sem
)
86 * Note that we incremented count in up() before we came here,
87 * but that was ineffective since the result was <= 0, and
88 * any negative value of count is equivalent to 0.
89 * This ends up setting count to 1, unless count is now > 0
90 * (i.e. because some other cpu has called up() in the meantime),
91 * in which case we just increment count.
93 __sem_update_count(sem
, 1);
100 * Note that when we come in to __down or __down_interruptible,
101 * we have already decremented count, but that decrement was
102 * ineffective since the result was < 0, and any negative value
103 * of count is equivalent to 0.
104 * Thus it is only when we decrement count from some value > 0
105 * that we have actually got the semaphore.
107 void __sched
__down(struct semaphore
*sem
)
109 struct task_struct
*tsk
= current
;
110 DECLARE_WAITQUEUE(wait
, tsk
);
112 __set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
113 add_wait_queue_exclusive(&sem
->wait
, &wait
);
116 * Try to get the semaphore. If the count is > 0, then we've
117 * got the semaphore; we decrement count and exit the loop.
118 * If the count is 0 or negative, we set it to -1, indicating
119 * that we are asleep, and then sleep.
121 while (__sem_update_count(sem
, -1) <= 0) {
123 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
125 remove_wait_queue(&sem
->wait
, &wait
);
126 __set_task_state(tsk
, TASK_RUNNING
);
129 * If there are any more sleepers, wake one of them up so
130 * that it can either get the semaphore, or set count to -1
131 * indicating that there are still processes sleeping.
136 EXPORT_SYMBOL(__down
);
138 int __sched
__down_interruptible(struct semaphore
* sem
)
141 struct task_struct
*tsk
= current
;
142 DECLARE_WAITQUEUE(wait
, tsk
);
144 __set_task_state(tsk
, TASK_INTERRUPTIBLE
);
145 add_wait_queue_exclusive(&sem
->wait
, &wait
);
147 while (__sem_update_count(sem
, -1) <= 0) {
148 if (signal_pending(current
)) {
150 * A signal is pending - give up trying.
151 * Set sem->count to 0 if it is negative,
152 * since we are no longer sleeping.
154 __sem_update_count(sem
, 0);
159 set_task_state(tsk
, TASK_INTERRUPTIBLE
);
161 remove_wait_queue(&sem
->wait
, &wait
);
162 __set_task_state(tsk
, TASK_RUNNING
);
168 EXPORT_SYMBOL(__down_interruptible
);