2 * include/asm-sh/spinlock-cas.h
4 * Copyright (C) 2015 SEI
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 #ifndef __ASM_SH_SPINLOCK_CAS_H
11 #define __ASM_SH_SPINLOCK_CAS_H
13 #include <asm/barrier.h>
14 #include <asm/processor.h>
16 static inline unsigned __sl_cas(volatile unsigned *p
, unsigned old
, unsigned new)
18 __asm__
__volatile__("cas.l %1,%0,@r0"
26 * Your basic SMP spinlocks, allowing only a single CPU anywhere
29 #define arch_spin_is_locked(x) ((x)->lock <= 0)
31 static inline void arch_spin_lock(arch_spinlock_t
*lock
)
33 while (!__sl_cas(&lock
->lock
, 1, 0));
36 static inline void arch_spin_unlock(arch_spinlock_t
*lock
)
38 __sl_cas(&lock
->lock
, 0, 1);
41 static inline int arch_spin_trylock(arch_spinlock_t
*lock
)
43 return __sl_cas(&lock
->lock
, 1, 0);
47 * Read-write spinlocks, allowing multiple readers but only one writer.
49 * NOTE! it is quite common to have readers in interrupts but no interrupt
50 * writers. For those circumstances we can "mix" irq-safe locks - any writer
51 * needs to get a irq-safe write-lock, but readers can get non-irqsafe
55 static inline void arch_read_lock(arch_rwlock_t
*rw
)
59 while (!old
|| __sl_cas(&rw
->lock
, old
, old
-1) != old
);
62 static inline void arch_read_unlock(arch_rwlock_t
*rw
)
66 while (__sl_cas(&rw
->lock
, old
, old
+1) != old
);
69 static inline void arch_write_lock(arch_rwlock_t
*rw
)
71 while (__sl_cas(&rw
->lock
, RW_LOCK_BIAS
, 0) != RW_LOCK_BIAS
);
74 static inline void arch_write_unlock(arch_rwlock_t
*rw
)
76 __sl_cas(&rw
->lock
, 0, RW_LOCK_BIAS
);
79 static inline int arch_read_trylock(arch_rwlock_t
*rw
)
83 while (old
&& __sl_cas(&rw
->lock
, old
, old
-1) != old
);
87 static inline int arch_write_trylock(arch_rwlock_t
*rw
)
89 return __sl_cas(&rw
->lock
, RW_LOCK_BIAS
, 0) == RW_LOCK_BIAS
;
92 #endif /* __ASM_SH_SPINLOCK_CAS_H */