1 /* semaphore.h: semaphores for the FR-V
3 * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 #ifndef _ASM_SEMAPHORE_H
12 #define _ASM_SEMAPHORE_H
14 #define RW_LOCK_BIAS 0x01000000
18 #include <linux/linkage.h>
19 #include <linux/wait.h>
20 #include <linux/spinlock.h>
21 #include <linux/rwsem.h>
24 * the semaphore definition
25 * - if counter is >0 then there are tokens available on the semaphore for down to collect
26 * - if counter is <=0 then there are no spare tokens, and anyone that wants one must wait
27 * - if wait_list is not empty, then there are processes waiting for the semaphore
32 struct list_head wait_list
;
33 #ifdef CONFIG_DEBUG_SEMAPHORE
38 #ifdef CONFIG_DEBUG_SEMAPHORE
39 # define __SEM_DEBUG_INIT(name) , (long)&(name).__magic
41 # define __SEM_DEBUG_INIT(name)
45 #define __SEMAPHORE_INITIALIZER(name,count) \
46 { count, SPIN_LOCK_UNLOCKED, LIST_HEAD_INIT((name).wait_list) __SEM_DEBUG_INIT(name) }
48 #define __DECLARE_SEMAPHORE_GENERIC(name,count) \
49 struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
51 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
53 static inline void sema_init (struct semaphore
*sem
, int val
)
55 *sem
= (struct semaphore
) __SEMAPHORE_INITIALIZER(*sem
, val
);
58 static inline void init_MUTEX (struct semaphore
*sem
)
63 static inline void init_MUTEX_LOCKED (struct semaphore
*sem
)
68 extern void __down(struct semaphore
*sem
, unsigned long flags
);
69 extern int __down_interruptible(struct semaphore
*sem
, unsigned long flags
);
70 extern void __up(struct semaphore
*sem
);
72 static inline void down(struct semaphore
*sem
)
76 #ifdef CONFIG_DEBUG_SEMAPHORE
77 CHECK_MAGIC(sem
->__magic
);
80 spin_lock_irqsave(&sem
->wait_lock
, flags
);
81 if (likely(sem
->counter
> 0)) {
83 spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
90 static inline int down_interruptible(struct semaphore
*sem
)
95 #ifdef CONFIG_DEBUG_SEMAPHORE
96 CHECK_MAGIC(sem
->__magic
);
99 spin_lock_irqsave(&sem
->wait_lock
, flags
);
100 if (likely(sem
->counter
> 0)) {
102 spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
105 ret
= __down_interruptible(sem
, flags
);
111 * non-blockingly attempt to down() a semaphore.
112 * - returns zero if we acquired it
114 static inline int down_trylock(struct semaphore
*sem
)
119 #ifdef CONFIG_DEBUG_SEMAPHORE
120 CHECK_MAGIC(sem
->__magic
);
123 spin_lock_irqsave(&sem
->wait_lock
, flags
);
124 if (sem
->counter
> 0) {
128 spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
132 static inline void up(struct semaphore
*sem
)
136 #ifdef CONFIG_DEBUG_SEMAPHORE
137 CHECK_MAGIC(sem
->__magic
);
140 spin_lock_irqsave(&sem
->wait_lock
, flags
);
141 if (!list_empty(&sem
->wait_list
))
145 spin_unlock_irqrestore(&sem
->wait_lock
, flags
);
148 static inline int sem_getcount(struct semaphore
*sem
)
153 #endif /* __ASSEMBLY__ */