1 #ifndef _ASM_POWERPC_RWSEM_H
2 #define _ASM_POWERPC_RWSEM_H
7 * include/asm-powerpc/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
;
33 #define __RWSEM_INITIALIZER(name) \
34 { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \
35 LIST_HEAD_INIT((name).wait_list) }
37 #define DECLARE_RWSEM(name) \
38 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
40 extern struct rw_semaphore
*rwsem_down_read_failed(struct rw_semaphore
*sem
);
41 extern struct rw_semaphore
*rwsem_down_write_failed(struct rw_semaphore
*sem
);
42 extern struct rw_semaphore
*rwsem_wake(struct rw_semaphore
*sem
);
43 extern struct rw_semaphore
*rwsem_downgrade_wake(struct rw_semaphore
*sem
);
45 static inline void init_rwsem(struct rw_semaphore
*sem
)
47 sem
->count
= RWSEM_UNLOCKED_VALUE
;
48 spin_lock_init(&sem
->wait_lock
);
49 INIT_LIST_HEAD(&sem
->wait_list
);
55 static inline void __down_read(struct rw_semaphore
*sem
)
57 if (unlikely(atomic_inc_return((atomic_t
*)(&sem
->count
)) <= 0))
58 rwsem_down_read_failed(sem
);
61 static inline int __down_read_trylock(struct rw_semaphore
*sem
)
65 while ((tmp
= sem
->count
) >= 0) {
66 if (tmp
== cmpxchg(&sem
->count
, tmp
,
67 tmp
+ RWSEM_ACTIVE_READ_BIAS
)) {
77 static inline void __down_write(struct rw_semaphore
*sem
)
81 tmp
= atomic_add_return(RWSEM_ACTIVE_WRITE_BIAS
,
82 (atomic_t
*)(&sem
->count
));
83 if (unlikely(tmp
!= RWSEM_ACTIVE_WRITE_BIAS
))
84 rwsem_down_write_failed(sem
);
87 static inline int __down_write_trylock(struct rw_semaphore
*sem
)
91 tmp
= cmpxchg(&sem
->count
, RWSEM_UNLOCKED_VALUE
,
92 RWSEM_ACTIVE_WRITE_BIAS
);
93 return tmp
== RWSEM_UNLOCKED_VALUE
;
97 * unlock after reading
99 static inline void __up_read(struct rw_semaphore
*sem
)
103 tmp
= atomic_dec_return((atomic_t
*)(&sem
->count
));
104 if (unlikely(tmp
< -1 && (tmp
& RWSEM_ACTIVE_MASK
) == 0))
109 * unlock after writing
111 static inline void __up_write(struct rw_semaphore
*sem
)
113 if (unlikely(atomic_sub_return(RWSEM_ACTIVE_WRITE_BIAS
,
114 (atomic_t
*)(&sem
->count
)) < 0))
119 * implement atomic add functionality
121 static inline void rwsem_atomic_add(int delta
, struct rw_semaphore
*sem
)
123 atomic_add(delta
, (atomic_t
*)(&sem
->count
));
127 * downgrade write lock to read lock
129 static inline void __downgrade_write(struct rw_semaphore
*sem
)
133 tmp
= atomic_add_return(-RWSEM_WAITING_BIAS
, (atomic_t
*)(&sem
->count
));
135 rwsem_downgrade_wake(sem
);
139 * implement exchange and add functionality
141 static inline int rwsem_atomic_update(int delta
, struct rw_semaphore
*sem
)
143 return atomic_add_return(delta
, (atomic_t
*)(&sem
->count
));
146 static inline int rwsem_is_locked(struct rw_semaphore
*sem
)
148 return (sem
->count
!= 0);
151 #endif /* __KERNEL__ */
152 #endif /* _ASM_POWERPC_RWSEM_H */