1 #ifndef _ASM_POWERPC_RWSEM_H
2 #define _ASM_POWERPC_RWSEM_H
7 * include/asm-ppc64/rwsem.h: R/W semaphores for PPC using the stuff
8 * in lib/rwsem.c. Adapted largely from include/asm-i386/rwsem.h
9 * by Paul Mackerras <paulus@samba.org>.
12 #include <linux/list.h>
13 #include <linux/spinlock.h>
14 #include <asm/atomic.h>
15 #include <asm/system.h>
18 * the semaphore definition
21 /* XXX this should be able to be an atomic_t -- paulus */
23 #define RWSEM_UNLOCKED_VALUE 0x00000000
24 #define RWSEM_ACTIVE_BIAS 0x00000001
25 #define RWSEM_ACTIVE_MASK 0x0000ffff
26 #define RWSEM_WAITING_BIAS (-0x00010000)
27 #define RWSEM_ACTIVE_READ_BIAS RWSEM_ACTIVE_BIAS
28 #define RWSEM_ACTIVE_WRITE_BIAS (RWSEM_WAITING_BIAS + RWSEM_ACTIVE_BIAS)
30 struct list_head wait_list
;
40 #define __RWSEM_DEBUG_INIT , 0
42 #define __RWSEM_DEBUG_INIT /* */
45 #define __RWSEM_INITIALIZER(name) \
46 { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \
47 LIST_HEAD_INIT((name).wait_list) \
50 #define DECLARE_RWSEM(name) \
51 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
53 extern struct rw_semaphore
*rwsem_down_read_failed(struct rw_semaphore
*sem
);
54 extern struct rw_semaphore
*rwsem_down_write_failed(struct rw_semaphore
*sem
);
55 extern struct rw_semaphore
*rwsem_wake(struct rw_semaphore
*sem
);
56 extern struct rw_semaphore
*rwsem_downgrade_wake(struct rw_semaphore
*sem
);
58 static inline void init_rwsem(struct rw_semaphore
*sem
)
60 sem
->count
= RWSEM_UNLOCKED_VALUE
;
61 spin_lock_init(&sem
->wait_lock
);
62 INIT_LIST_HEAD(&sem
->wait_list
);
71 static inline void __down_read(struct rw_semaphore
*sem
)
73 if (unlikely(atomic_inc_return((atomic_t
*)(&sem
->count
)) <= 0))
74 rwsem_down_read_failed(sem
);
77 static inline int __down_read_trylock(struct rw_semaphore
*sem
)
81 while ((tmp
= sem
->count
) >= 0) {
82 if (tmp
== cmpxchg(&sem
->count
, tmp
,
83 tmp
+ RWSEM_ACTIVE_READ_BIAS
)) {
93 static inline void __down_write(struct rw_semaphore
*sem
)
97 tmp
= atomic_add_return(RWSEM_ACTIVE_WRITE_BIAS
,
98 (atomic_t
*)(&sem
->count
));
99 if (unlikely(tmp
!= RWSEM_ACTIVE_WRITE_BIAS
))
100 rwsem_down_write_failed(sem
);
103 static inline int __down_write_trylock(struct rw_semaphore
*sem
)
107 tmp
= cmpxchg(&sem
->count
, RWSEM_UNLOCKED_VALUE
,
108 RWSEM_ACTIVE_WRITE_BIAS
);
109 return tmp
== RWSEM_UNLOCKED_VALUE
;
113 * unlock after reading
115 static inline void __up_read(struct rw_semaphore
*sem
)
119 tmp
= atomic_dec_return((atomic_t
*)(&sem
->count
));
120 if (unlikely(tmp
< -1 && (tmp
& RWSEM_ACTIVE_MASK
) == 0))
125 * unlock after writing
127 static inline void __up_write(struct rw_semaphore
*sem
)
129 if (unlikely(atomic_sub_return(RWSEM_ACTIVE_WRITE_BIAS
,
130 (atomic_t
*)(&sem
->count
)) < 0))
135 * implement atomic add functionality
137 static inline void rwsem_atomic_add(int delta
, struct rw_semaphore
*sem
)
139 atomic_add(delta
, (atomic_t
*)(&sem
->count
));
143 * downgrade write lock to read lock
145 static inline void __downgrade_write(struct rw_semaphore
*sem
)
149 tmp
= atomic_add_return(-RWSEM_WAITING_BIAS
, (atomic_t
*)(&sem
->count
));
151 rwsem_downgrade_wake(sem
);
155 * implement exchange and add functionality
157 static inline int rwsem_atomic_update(int delta
, struct rw_semaphore
*sem
)
159 return atomic_add_return(delta
, (atomic_t
*)(&sem
->count
));
162 static inline int rwsem_is_locked(struct rw_semaphore
*sem
)
164 return (sem
->count
!= 0);
167 #endif /* __KERNEL__ */
168 #endif /* _ASM_POWERPC_RWSEM_H */