1 #ifndef _ASM_POWERPC_RWSEM_H
2 #define _ASM_POWERPC_RWSEM_H
5 #error "Please don't include <asm/rwsem.h> directly, use <linux/rwsem.h> instead."
11 * include/asm-powerpc/rwsem.h: R/W semaphores for PPC using the stuff
12 * in lib/rwsem.c. Adapted largely from include/asm-i386/rwsem.h
13 * by Paul Mackerras <paulus@samba.org>.
16 #include <linux/list.h>
17 #include <linux/spinlock.h>
18 #include <asm/atomic.h>
19 #include <asm/system.h>
22 * the semaphore definition
25 /* XXX this should be able to be an atomic_t -- paulus */
27 #define RWSEM_UNLOCKED_VALUE 0x00000000
28 #define RWSEM_ACTIVE_BIAS 0x00000001
29 #define RWSEM_ACTIVE_MASK 0x0000ffff
30 #define RWSEM_WAITING_BIAS (-0x00010000)
31 #define RWSEM_ACTIVE_READ_BIAS RWSEM_ACTIVE_BIAS
32 #define RWSEM_ACTIVE_WRITE_BIAS (RWSEM_WAITING_BIAS + RWSEM_ACTIVE_BIAS)
34 struct list_head wait_list
;
37 #define __RWSEM_INITIALIZER(name) \
38 { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \
39 LIST_HEAD_INIT((name).wait_list) }
41 #define DECLARE_RWSEM(name) \
42 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
44 extern struct rw_semaphore
*rwsem_down_read_failed(struct rw_semaphore
*sem
);
45 extern struct rw_semaphore
*rwsem_down_write_failed(struct rw_semaphore
*sem
);
46 extern struct rw_semaphore
*rwsem_wake(struct rw_semaphore
*sem
);
47 extern struct rw_semaphore
*rwsem_downgrade_wake(struct rw_semaphore
*sem
);
49 static inline void init_rwsem(struct rw_semaphore
*sem
)
51 sem
->count
= RWSEM_UNLOCKED_VALUE
;
52 spin_lock_init(&sem
->wait_lock
);
53 INIT_LIST_HEAD(&sem
->wait_list
);
59 static inline void __down_read(struct rw_semaphore
*sem
)
61 if (unlikely(atomic_inc_return((atomic_t
*)(&sem
->count
)) <= 0))
62 rwsem_down_read_failed(sem
);
65 static inline int __down_read_trylock(struct rw_semaphore
*sem
)
69 while ((tmp
= sem
->count
) >= 0) {
70 if (tmp
== cmpxchg(&sem
->count
, tmp
,
71 tmp
+ RWSEM_ACTIVE_READ_BIAS
)) {
81 static inline void __down_write(struct rw_semaphore
*sem
)
85 tmp
= atomic_add_return(RWSEM_ACTIVE_WRITE_BIAS
,
86 (atomic_t
*)(&sem
->count
));
87 if (unlikely(tmp
!= RWSEM_ACTIVE_WRITE_BIAS
))
88 rwsem_down_write_failed(sem
);
91 static inline int __down_write_trylock(struct rw_semaphore
*sem
)
95 tmp
= cmpxchg(&sem
->count
, RWSEM_UNLOCKED_VALUE
,
96 RWSEM_ACTIVE_WRITE_BIAS
);
97 return tmp
== RWSEM_UNLOCKED_VALUE
;
101 * unlock after reading
103 static inline void __up_read(struct rw_semaphore
*sem
)
107 tmp
= atomic_dec_return((atomic_t
*)(&sem
->count
));
108 if (unlikely(tmp
< -1 && (tmp
& RWSEM_ACTIVE_MASK
) == 0))
113 * unlock after writing
115 static inline void __up_write(struct rw_semaphore
*sem
)
117 if (unlikely(atomic_sub_return(RWSEM_ACTIVE_WRITE_BIAS
,
118 (atomic_t
*)(&sem
->count
)) < 0))
123 * implement atomic add functionality
125 static inline void rwsem_atomic_add(int delta
, struct rw_semaphore
*sem
)
127 atomic_add(delta
, (atomic_t
*)(&sem
->count
));
131 * downgrade write lock to read lock
133 static inline void __downgrade_write(struct rw_semaphore
*sem
)
137 tmp
= atomic_add_return(-RWSEM_WAITING_BIAS
, (atomic_t
*)(&sem
->count
));
139 rwsem_downgrade_wake(sem
);
143 * implement exchange and add functionality
145 static inline int rwsem_atomic_update(int delta
, struct rw_semaphore
*sem
)
147 return atomic_add_return(delta
, (atomic_t
*)(&sem
->count
));
150 static inline int rwsem_is_locked(struct rw_semaphore
*sem
)
152 return (sem
->count
!= 0);
155 #endif /* __KERNEL__ */
156 #endif /* _ASM_POWERPC_RWSEM_H */