1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_M32R_SPINLOCK_H
3 #define _ASM_M32R_SPINLOCK_H
6 * linux/include/asm-m32r/spinlock.h
9 * Copyright (C) 2001, 2002 Hitoshi Yamamoto
10 * Copyright (C) 2004 Hirokazu Takata <takata at linux-m32r.org>
13 #include <linux/compiler.h>
14 #include <linux/atomic.h>
15 #include <asm/dcache_clear.h>
17 #include <asm/barrier.h>
18 #include <asm/processor.h>
21 * Your basic SMP spinlocks, allowing only a single CPU anywhere
23 * (the type definitions are in asm/spinlock_types.h)
25 * Simple spin lock operations. There are two variants, one clears IRQ's
26 * on the local processor, one does not.
28 * We make no fairness assumptions. They have a cost.
31 #define arch_spin_is_locked(x) (*(volatile int *)(&(x)->slock) <= 0)
34 * arch_spin_trylock - Try spin lock and return a result
35 * @lock: Pointer to the lock variable
37 * arch_spin_trylock() tries to get the lock and returns a result.
38 * On the m32r, the result value is 1 (= Success) or 0 (= Failure).
40 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
43 unsigned long tmp1
, tmp2
;
46 * lock->slock : =1 : unlock
49 * oldval = lock->slock; <--+ need atomic operation
50 * lock->slock = 0; <--+
53 __asm__
__volatile__ (
54 "# arch_spin_trylock \n\t"
57 "clrpsw #0x40 -> nop; \n\t"
58 DCACHE_CLEAR("%0", "r6", "%3")
60 "unlock %1, @%3; \n\t"
62 : "=&r" (oldval
), "=&r" (tmp1
), "=&r" (tmp2
)
65 #ifdef CONFIG_CHIP_M32700_TS1
67 #endif /* CONFIG_CHIP_M32700_TS1 */
73 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
75 unsigned long tmp0
, tmp1
;
78 * lock->slock : =1 : unlock
82 * lock->slock -= 1; <-- need atomic operation
83 * if (lock->slock == 0) break;
84 * for ( ; lock->slock <= 0 ; );
87 __asm__
__volatile__ (
88 "# arch_spin_lock \n\t"
92 "clrpsw #0x40 -> nop; \n\t"
93 DCACHE_CLEAR("%0", "r6", "%2")
96 "unlock %0, @%2; \n\t"
99 LOCK_SECTION_START(".balign 4 \n\t")
106 : "=&r" (tmp0
), "=&r" (tmp1
)
109 #ifdef CONFIG_CHIP_M32700_TS1
111 #endif /* CONFIG_CHIP_M32700_TS1 */
115 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
122 * Read-write spinlocks, allowing multiple readers
123 * but only one writer.
125 * NOTE! it is quite common to have readers in interrupts
126 * but no interrupt writers. For those circumstances we
127 * can "mix" irq-safe locks - any writer needs to get a
128 * irq-safe write-lock, but readers can get non-irqsafe
131 * On x86, we implement read-write locks as a 32-bit counter
132 * with the high bit (sign) being the "contended" bit.
134 * The inline assembly is non-obvious. Think about it.
136 * Changed to use the same technique as rw semaphores. See
137 * semaphore.h for details. -ben
140 static inline void arch_read_lock(arch_rwlock_t
*rw
)
142 unsigned long tmp0
, tmp1
;
145 * rw->lock : >0 : unlock
149 * rw->lock -= 1; <-- need atomic operation
150 * if (rw->lock >= 0) break;
151 * rw->lock += 1; <-- need atomic operation
152 * for ( ; rw->lock <= 0 ; );
155 __asm__
__volatile__ (
160 "clrpsw #0x40 -> nop; \n\t"
161 DCACHE_CLEAR("%0", "r6", "%2")
164 "unlock %0, @%2; \n\t"
167 LOCK_SECTION_START(".balign 4 \n\t")
170 "clrpsw #0x40 -> nop; \n\t"
171 DCACHE_CLEAR("%0", "r6", "%2")
174 "unlock %0, @%2; \n\t"
182 : "=&r" (tmp0
), "=&r" (tmp1
)
185 #ifdef CONFIG_CHIP_M32700_TS1
187 #endif /* CONFIG_CHIP_M32700_TS1 */
191 static inline void arch_write_lock(arch_rwlock_t
*rw
)
193 unsigned long tmp0
, tmp1
, tmp2
;
196 * rw->lock : =RW_LOCK_BIAS_STR : unlock
197 * : !=RW_LOCK_BIAS_STR : lock
200 * rw->lock -= RW_LOCK_BIAS_STR; <-- need atomic operation
201 * if (rw->lock == 0) break;
202 * rw->lock += RW_LOCK_BIAS_STR; <-- need atomic operation
203 * for ( ; rw->lock != RW_LOCK_BIAS_STR ; ) ;
206 __asm__
__volatile__ (
208 "seth %1, #high(" RW_LOCK_BIAS_STR
"); \n\t"
209 "or3 %1, %1, #low(" RW_LOCK_BIAS_STR
"); \n\t"
213 "clrpsw #0x40 -> nop; \n\t"
214 DCACHE_CLEAR("%0", "r7", "%3")
217 "unlock %0, @%3; \n\t"
220 LOCK_SECTION_START(".balign 4 \n\t")
223 "clrpsw #0x40 -> nop; \n\t"
224 DCACHE_CLEAR("%0", "r7", "%3")
227 "unlock %0, @%3; \n\t"
232 "beq %0, %1, 1b; \n\t"
235 : "=&r" (tmp0
), "=&r" (tmp1
), "=&r" (tmp2
)
238 #ifdef CONFIG_CHIP_M32700_TS1
240 #endif /* CONFIG_CHIP_M32700_TS1 */
244 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
246 unsigned long tmp0
, tmp1
;
248 __asm__
__volatile__ (
251 "clrpsw #0x40 -> nop; \n\t"
252 DCACHE_CLEAR("%0", "r6", "%2")
255 "unlock %0, @%2; \n\t"
257 : "=&r" (tmp0
), "=&r" (tmp1
)
260 #ifdef CONFIG_CHIP_M32700_TS1
262 #endif /* CONFIG_CHIP_M32700_TS1 */
266 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
268 unsigned long tmp0
, tmp1
, tmp2
;
270 __asm__
__volatile__ (
271 "# write_unlock \n\t"
272 "seth %1, #high(" RW_LOCK_BIAS_STR
"); \n\t"
273 "or3 %1, %1, #low(" RW_LOCK_BIAS_STR
"); \n\t"
275 "clrpsw #0x40 -> nop; \n\t"
276 DCACHE_CLEAR("%0", "r7", "%3")
279 "unlock %0, @%3; \n\t"
281 : "=&r" (tmp0
), "=&r" (tmp1
), "=&r" (tmp2
)
284 #ifdef CONFIG_CHIP_M32700_TS1
286 #endif /* CONFIG_CHIP_M32700_TS1 */
290 static inline int arch_read_trylock(arch_rwlock_t
*lock
)
292 atomic_t
*count
= (atomic_t
*)lock
;
293 if (atomic_dec_return(count
) >= 0)
299 static inline int arch_write_trylock(arch_rwlock_t
*lock
)
301 atomic_t
*count
= (atomic_t
*)lock
;
302 if (atomic_sub_and_test(RW_LOCK_BIAS
, count
))
304 atomic_add(RW_LOCK_BIAS
, count
);
308 #endif /* _ASM_M32R_SPINLOCK_H */