1 #ifndef _ASM_M32R_SEMAPHORE_H
2 #define _ASM_M32R_SEMAPHORE_H
4 #include <linux/linkage.h>
9 * SMP- and interrupt-safe semaphores..
11 * Copyright (C) 1996 Linus Torvalds
12 * Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
15 #include <linux/config.h>
16 #include <linux/wait.h>
17 #include <linux/rwsem.h>
18 #include <asm/assembler.h>
19 #include <asm/system.h>
20 #include <asm/atomic.h>
25 wait_queue_head_t wait
;
28 #define __SEMAPHORE_INITIALIZER(name, n) \
30 .count = ATOMIC_INIT(n), \
32 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \
35 #define __MUTEX_INITIALIZER(name) \
36 __SEMAPHORE_INITIALIZER(name,1)
38 #define __DECLARE_SEMAPHORE_GENERIC(name,count) \
39 struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
41 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
42 #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
44 static inline void sema_init (struct semaphore
*sem
, int val
)
47 * *sem = (struct semaphore)__SEMAPHORE_INITIALIZER((*sem),val);
49 * i'd rather use the more flexible initialization above, but sadly
50 * GCC 2.7.2.3 emits a bogus warning. EGCS doesnt. Oh well.
52 atomic_set(&sem
->count
, val
);
54 init_waitqueue_head(&sem
->wait
);
57 static inline void init_MUTEX (struct semaphore
*sem
)
62 static inline void init_MUTEX_LOCKED (struct semaphore
*sem
)
67 asmlinkage
void __down_failed(void /* special register calling convention */);
68 asmlinkage
int __down_failed_interruptible(void /* params in registers */);
69 asmlinkage
int __down_failed_trylock(void /* params in registers */);
70 asmlinkage
void __up_wakeup(void /* special register calling convention */);
72 asmlinkage
void __down(struct semaphore
* sem
);
73 asmlinkage
int __down_interruptible(struct semaphore
* sem
);
74 asmlinkage
int __down_trylock(struct semaphore
* sem
);
75 asmlinkage
void __up(struct semaphore
* sem
);
78 * Atomically decrement the semaphore's count. If it goes negative,
79 * block the calling thread in the TASK_UNINTERRUPTIBLE state.
81 static inline void down(struct semaphore
* sem
)
87 local_irq_save(flags
);
88 __asm__
__volatile__ (
90 DCACHE_CLEAR("%0", "r4", "%1")
91 M32R_LOCK
" %0, @%1; \n\t"
93 M32R_UNLOCK
" %0, @%1; \n\t"
97 #ifdef CONFIG_CHIP_M32700_TS1
99 #endif /* CONFIG_CHIP_M32700_TS1 */
101 local_irq_restore(flags
);
103 if (unlikely(count
< 0))
108 * Interruptible try to acquire a semaphore. If we obtained
109 * it, return zero. If we were interrupted, returns -EINTR
111 static inline int down_interruptible(struct semaphore
* sem
)
118 local_irq_save(flags
);
119 __asm__
__volatile__ (
120 "# down_interruptible \n\t"
121 DCACHE_CLEAR("%0", "r4", "%1")
122 M32R_LOCK
" %0, @%1; \n\t"
124 M32R_UNLOCK
" %0, @%1; \n\t"
128 #ifdef CONFIG_CHIP_M32700_TS1
130 #endif /* CONFIG_CHIP_M32700_TS1 */
132 local_irq_restore(flags
);
134 if (unlikely(count
< 0))
135 result
= __down_interruptible(sem
);
141 * Non-blockingly attempt to down() a semaphore.
142 * Returns zero if we acquired it
144 static inline int down_trylock(struct semaphore
* sem
)
150 local_irq_save(flags
);
151 __asm__
__volatile__ (
152 "# down_trylock \n\t"
153 DCACHE_CLEAR("%0", "r4", "%1")
154 M32R_LOCK
" %0, @%1; \n\t"
156 M32R_UNLOCK
" %0, @%1; \n\t"
160 #ifdef CONFIG_CHIP_M32700_TS1
162 #endif /* CONFIG_CHIP_M32700_TS1 */
164 local_irq_restore(flags
);
166 if (unlikely(count
< 0))
167 result
= __down_trylock(sem
);
173 * Note! This is subtle. We jump to wake people up only if
174 * the semaphore was negative (== somebody was waiting on it).
175 * The default case (no contention) will result in NO
176 * jumps for both down() and up().
178 static inline void up(struct semaphore
* sem
)
183 local_irq_save(flags
);
184 __asm__
__volatile__ (
186 DCACHE_CLEAR("%0", "r4", "%1")
187 M32R_LOCK
" %0, @%1; \n\t"
189 M32R_UNLOCK
" %0, @%1; \n\t"
193 #ifdef CONFIG_CHIP_M32700_TS1
195 #endif /* CONFIG_CHIP_M32700_TS1 */
197 local_irq_restore(flags
);
199 if (unlikely(count
<= 0))
203 #endif /* __KERNEL__ */
205 #endif /* _ASM_M32R_SEMAPHORE_H */