1 /* MN10300 spinlock support
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #ifndef _ASM_SPINLOCK_H
12 #define _ASM_SPINLOCK_H
14 #include <linux/atomic.h>
15 #include <asm/barrier.h>
16 #include <asm/processor.h>
17 #include <asm/rwlock.h>
21 * Simple spin lock operations. There are two variants, one clears IRQ's
22 * on the local processor, one does not.
24 * We make no fairness assumptions. They have a cost.
27 #define arch_spin_is_locked(x) (*(volatile signed char *)(&(x)->slock) != 0)
29 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
38 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
55 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
65 static inline void arch_spin_lock_flags(arch_spinlock_t
*lock
,
84 : "d" (flags
), "a"(&lock
->slock
), "i"(EPSW_IE
| MN10300_CLI_LEVEL
)
87 #define arch_spin_lock_flags arch_spin_lock_flags
92 * Read-write spinlocks, allowing multiple readers
93 * but only one writer.
95 * NOTE! it is quite common to have readers in interrupts
96 * but no interrupt writers. For those circumstances we
97 * can "mix" irq-safe locks - any writer needs to get a
98 * irq-safe write-lock, but readers can get non-irqsafe
103 * On mn10300, we implement read-write locks as a 32-bit counter
104 * with the high bit (sign) being the "contended" bit.
106 static inline void arch_read_lock(arch_rwlock_t
*rw
)
108 #if 0 //def CONFIG_MN10300_HAS_ATOMIC_OPS_UNIT
109 __build_read_lock(rw
, "__read_lock_failed");
112 atomic_t
*count
= (atomic_t
*)rw
;
113 while (atomic_dec_return(count
) < 0)
119 static inline void arch_write_lock(arch_rwlock_t
*rw
)
121 #if 0 //def CONFIG_MN10300_HAS_ATOMIC_OPS_UNIT
122 __build_write_lock(rw
, "__write_lock_failed");
125 atomic_t
*count
= (atomic_t
*)rw
;
126 while (!atomic_sub_and_test(RW_LOCK_BIAS
, count
))
127 atomic_add(RW_LOCK_BIAS
, count
);
132 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
134 #if 0 //def CONFIG_MN10300_HAS_ATOMIC_OPS_UNIT
135 __build_read_unlock(rw
);
138 atomic_t
*count
= (atomic_t
*)rw
;
144 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
146 #if 0 //def CONFIG_MN10300_HAS_ATOMIC_OPS_UNIT
147 __build_write_unlock(rw
);
150 atomic_t
*count
= (atomic_t
*)rw
;
151 atomic_add(RW_LOCK_BIAS
, count
);
156 static inline int arch_read_trylock(arch_rwlock_t
*lock
)
158 atomic_t
*count
= (atomic_t
*)lock
;
160 if (atomic_read(count
) >= 0)
166 static inline int arch_write_trylock(arch_rwlock_t
*lock
)
168 atomic_t
*count
= (atomic_t
*)lock
;
169 if (atomic_sub_and_test(RW_LOCK_BIAS
, count
))
171 atomic_add(RW_LOCK_BIAS
, count
);
175 #define _raw_spin_relax(lock) cpu_relax()
176 #define _raw_read_relax(lock) cpu_relax()
177 #define _raw_write_relax(lock) cpu_relax()
179 #endif /* __KERNEL__ */
180 #endif /* _ASM_SPINLOCK_H */