]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/asm-xtensa/semaphore.h
Pull throttle into release branch
[mirror_ubuntu-bionic-kernel.git] / include / asm-xtensa / semaphore.h
CommitLineData
9a8fd558
CZ
1/*
2 * linux/include/asm-xtensa/semaphore.h
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 */
10
11#ifndef _XTENSA_SEMAPHORE_H
12#define _XTENSA_SEMAPHORE_H
13
14#include <asm/atomic.h>
15#include <asm/system.h>
16#include <linux/wait.h>
17#include <linux/rwsem.h>
18
19struct semaphore {
20 atomic_t count;
21 int sleepers;
22 wait_queue_head_t wait;
9a8fd558
CZ
23};
24
288a60cf
CZ
25#define __SEMAPHORE_INITIALIZER(name,n) \
26{ \
27 .count = ATOMIC_INIT(n), \
28 .sleepers = 0, \
29 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait) \
30}
9a8fd558 31
288a60cf 32#define __DECLARE_SEMAPHORE_GENERIC(name,count) \
9a8fd558
CZ
33 struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
34
35#define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
36#define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
37
d99cf715 38static inline void sema_init (struct semaphore *sem, int val)
9a8fd558 39{
9a8fd558 40 atomic_set(&sem->count, val);
aa3a6f45 41 sem->sleepers = 0;
9a8fd558 42 init_waitqueue_head(&sem->wait);
9a8fd558
CZ
43}
44
45static inline void init_MUTEX (struct semaphore *sem)
46{
47 sema_init(sem, 1);
48}
49
50static inline void init_MUTEX_LOCKED (struct semaphore *sem)
51{
52 sema_init(sem, 0);
53}
54
55asmlinkage void __down(struct semaphore * sem);
56asmlinkage int __down_interruptible(struct semaphore * sem);
57asmlinkage int __down_trylock(struct semaphore * sem);
58asmlinkage void __up(struct semaphore * sem);
59
60extern spinlock_t semaphore_wake_lock;
61
d99cf715 62static inline void down(struct semaphore * sem)
9a8fd558 63{
288a60cf 64 might_sleep();
9a8fd558
CZ
65
66 if (atomic_sub_return(1, &sem->count) < 0)
67 __down(sem);
68}
69
d99cf715 70static inline int down_interruptible(struct semaphore * sem)
9a8fd558
CZ
71{
72 int ret = 0;
288a60cf
CZ
73
74 might_sleep();
9a8fd558
CZ
75
76 if (atomic_sub_return(1, &sem->count) < 0)
77 ret = __down_interruptible(sem);
78 return ret;
79}
80
d99cf715 81static inline int down_trylock(struct semaphore * sem)
9a8fd558
CZ
82{
83 int ret = 0;
9a8fd558
CZ
84
85 if (atomic_sub_return(1, &sem->count) < 0)
86 ret = __down_trylock(sem);
87 return ret;
88}
89
90/*
91 * Note! This is subtle. We jump to wake people up only if
92 * the semaphore was negative (== somebody was waiting on it).
93 */
d99cf715 94static inline void up(struct semaphore * sem)
9a8fd558 95{
9a8fd558
CZ
96 if (atomic_add_return(1, &sem->count) <= 0)
97 __up(sem);
98}
99
100#endif /* _XTENSA_SEMAPHORE_H */