2 * linux/include/asm-arm26/semaphore.h
4 #ifndef __ASM_ARM_SEMAPHORE_H
5 #define __ASM_ARM_SEMAPHORE_H
7 #include <linux/linkage.h>
8 #include <linux/spinlock.h>
9 #include <linux/wait.h>
10 #include <linux/rwsem.h>
12 #include <asm/atomic.h>
13 #include <asm/locks.h>
18 wait_queue_head_t wait
;
21 #define __SEMAPHORE_INIT(name, n) \
23 .count = ATOMIC_INIT(n), \
25 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait), \
28 #define __DECLARE_SEMAPHORE_GENERIC(name,count) \
29 struct semaphore name = __SEMAPHORE_INIT(name,count)
31 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
32 #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
34 static inline void sema_init(struct semaphore
*sem
, int val
)
36 atomic_set(&sem
->count
, val
);
38 init_waitqueue_head(&sem
->wait
);
41 static inline void init_MUTEX(struct semaphore
*sem
)
46 static inline void init_MUTEX_LOCKED(struct semaphore
*sem
)
52 * special register calling convention
54 asmlinkage
void __down_failed(void);
55 asmlinkage
int __down_interruptible_failed(void);
56 asmlinkage
int __down_trylock_failed(void);
57 asmlinkage
void __up_wakeup(void);
59 extern void __down(struct semaphore
* sem
);
60 extern int __down_interruptible(struct semaphore
* sem
);
61 extern int __down_trylock(struct semaphore
* sem
);
62 extern void __up(struct semaphore
* sem
);
65 * This is ugly, but we want the default case to fall through.
66 * "__down" is the actual routine that waits...
68 static inline void down(struct semaphore
* sem
)
71 __down_op(sem
, __down_failed
);
75 * This is ugly, but we want the default case to fall through.
76 * "__down_interruptible" is the actual routine that waits...
78 static inline int down_interruptible (struct semaphore
* sem
)
81 return __down_op_ret(sem
, __down_interruptible_failed
);
84 static inline int down_trylock(struct semaphore
*sem
)
86 return __down_op_ret(sem
, __down_trylock_failed
);
90 * Note! This is subtle. We jump to wake people up only if
91 * the semaphore was negative (== somebody was waiting on it).
92 * The default case (no contention) will result in NO
93 * jumps for both down() and up().
95 static inline void up(struct semaphore
* sem
)
97 __up_op(sem
, __up_wakeup
);