1 #ifndef __ASM_SH64_SEMAPHORE_H
2 #define __ASM_SH64_SEMAPHORE_H
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * include/asm-sh64/semaphore.h
11 * Copyright (C) 2000, 2001 Paolo Alberelli
13 * SMP- and interrupt-safe semaphores.
15 * (C) Copyright 1996 Linus Torvalds
17 * SuperH verison by Niibe Yutaka
18 * (Currently no asm implementation but generic C code...)
22 #include <linux/linkage.h>
23 #include <linux/spinlock.h>
24 #include <linux/wait.h>
25 #include <linux/rwsem.h>
27 #include <asm/system.h>
28 #include <asm/atomic.h>
33 wait_queue_head_t wait
;
36 #define __SEMAPHORE_INITIALIZER(name, n) \
38 .count = ATOMIC_INIT(n), \
40 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \
43 #define __DECLARE_SEMAPHORE_GENERIC(name,count) \
44 struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
46 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
47 #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
49 static inline void sema_init (struct semaphore
*sem
, int val
)
52 * *sem = (struct semaphore)__SEMAPHORE_INITIALIZER((*sem),val);
54 * i'd rather use the more flexible initialization above, but sadly
55 * GCC 2.7.2.3 emits a bogus warning. EGCS doesnt. Oh well.
57 atomic_set(&sem
->count
, val
);
59 init_waitqueue_head(&sem
->wait
);
62 static inline void init_MUTEX (struct semaphore
*sem
)
67 static inline void init_MUTEX_LOCKED (struct semaphore
*sem
)
73 asmlinkage
void __down_failed(void /* special register calling convention */);
74 asmlinkage
int __down_failed_interruptible(void /* params in registers */);
75 asmlinkage
int __down_failed_trylock(void /* params in registers */);
76 asmlinkage
void __up_wakeup(void /* special register calling convention */);
79 asmlinkage
void __down(struct semaphore
* sem
);
80 asmlinkage
int __down_interruptible(struct semaphore
* sem
);
81 asmlinkage
int __down_trylock(struct semaphore
* sem
);
82 asmlinkage
void __up(struct semaphore
* sem
);
84 extern spinlock_t semaphore_wake_lock
;
86 static inline void down(struct semaphore
* sem
)
88 if (atomic_dec_return(&sem
->count
) < 0)
92 static inline int down_interruptible(struct semaphore
* sem
)
96 if (atomic_dec_return(&sem
->count
) < 0)
97 ret
= __down_interruptible(sem
);
101 static inline int down_trylock(struct semaphore
* sem
)
105 if (atomic_dec_return(&sem
->count
) < 0)
106 ret
= __down_trylock(sem
);
111 * Note! This is subtle. We jump to wake people up only if
112 * the semaphore was negative (== somebody was waiting on it).
114 static inline void up(struct semaphore
* sem
)
116 if (atomic_inc_return(&sem
->count
) <= 0)
120 #endif /* __ASM_SH64_SEMAPHORE_H */