allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-avr32 / semaphore.h
blobef99ddccc10caceb947e1eb9c8485ee5ed9ed565
1 /*
2 * SMP- and interrupt-safe semaphores.
4 * Copyright (C) 2006 Atmel Corporation
6 * Based on include/asm-i386/semaphore.h
7 * Copyright (C) 1996 Linus Torvalds
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 #ifndef __ASM_AVR32_SEMAPHORE_H
14 #define __ASM_AVR32_SEMAPHORE_H
16 #include <linux/linkage.h>
18 #include <asm/system.h>
19 #include <asm/atomic.h>
20 #include <linux/wait.h>
21 #include <linux/rwsem.h>
23 struct semaphore {
24 atomic_t count;
25 int sleepers;
26 wait_queue_head_t wait;
29 #define __SEMAPHORE_INITIALIZER(name, n) \
30 { \
31 .count = ATOMIC_INIT(n), \
32 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \
35 #define __DECLARE_SEMAPHORE_GENERIC(name,count) \
36 struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
38 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
39 #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
41 static inline void sema_init (struct semaphore *sem, int val)
43 atomic_set(&sem->count, val);
44 sem->sleepers = 0;
45 init_waitqueue_head(&sem->wait);
48 static inline void init_MUTEX (struct semaphore *sem)
50 sema_init(sem, 1);
53 static inline void init_MUTEX_LOCKED (struct semaphore *sem)
55 sema_init(sem, 0);
58 void __down(struct semaphore * sem);
59 int __down_interruptible(struct semaphore * sem);
60 void __up(struct semaphore * sem);
63 * This is ugly, but we want the default case to fall through.
64 * "__down_failed" is a special asm handler that calls the C
65 * routine that actually waits. See arch/i386/kernel/semaphore.c
67 static inline void down(struct semaphore * sem)
69 might_sleep();
70 if (unlikely(atomic_dec_return (&sem->count) < 0))
71 __down (sem);
75 * Interruptible try to acquire a semaphore. If we obtained
76 * it, return zero. If we were interrupted, returns -EINTR
78 static inline int down_interruptible(struct semaphore * sem)
80 int ret = 0;
82 might_sleep();
83 if (unlikely(atomic_dec_return (&sem->count) < 0))
84 ret = __down_interruptible (sem);
85 return ret;
89 * Non-blockingly attempt to down() a semaphore.
90 * Returns zero if we acquired it
92 static inline int down_trylock(struct semaphore * sem)
94 return atomic_dec_if_positive(&sem->count) < 0;
98 * Note! This is subtle. We jump to wake people up only if
99 * the semaphore was negative (== somebody was waiting on it).
100 * The default case (no contention) will result in NO
101 * jumps for both down() and up().
103 static inline void up(struct semaphore * sem)
105 if (unlikely(atomic_inc_return (&sem->count) <= 0))
106 __up (sem);
109 #endif /*__ASM_AVR32_SEMAPHORE_H */