1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ARCH_M68K_CMPXCHG__
3 #define __ARCH_M68K_CMPXCHG__
5 #include <linux/irqflags.h>
6 #include <linux/minmax.h>
8 #define __xg(type, x) ((volatile type *)(x))
10 extern unsigned long __invalid_xchg_size(unsigned long, volatile void *, int);
12 #ifndef CONFIG_RMW_INSNS
13 static inline unsigned long __arch_xchg(unsigned long x, volatile void * ptr, int size)
17 local_irq_save(flags);
30 x = __invalid_xchg_size(x, ptr, size);
34 local_irq_restore(flags);
38 static inline unsigned long __arch_xchg(unsigned long x, volatile void * ptr, int size)
47 : "=&d" (x) : "d" (x), "m" (*__xg(u8, ptr)) : "memory");
55 : "=&d" (x) : "d" (x), "m" (*__xg(u16, ptr)) : "memory");
63 : "=&d" (x) : "d" (x), "m" (*__xg(u32, ptr)) : "memory");
66 x = __invalid_xchg_size(x, ptr, size);
73 #define arch_xchg(ptr,x) ({(__typeof__(*(ptr)))__arch_xchg((unsigned long)(x),(ptr),sizeof(*(ptr)));})
75 #include <asm-generic/cmpxchg-local.h>
77 #define arch_cmpxchg64_local(ptr, o, n) __generic_cmpxchg64_local((ptr), (o), (n))
79 extern unsigned long __invalid_cmpxchg_size(volatile void *,
80 unsigned long, unsigned long, int);
83 * Atomic compare and exchange. Compare OLD with MEM, if identical,
84 * store NEW in MEM. Return the initial value in MEM. Success is
85 * indicated by comparing RETURN with OLD.
87 #ifdef CONFIG_RMW_INSNS
89 static inline unsigned long __cmpxchg(volatile void *p, unsigned long old,
90 unsigned long new, int size)
94 __asm__ __volatile__ ("casb %0,%2,%1"
95 : "=d" (old), "=m" (*(char *)p)
96 : "d" (new), "0" (old), "m" (*(char *)p));
99 __asm__ __volatile__ ("casw %0,%2,%1"
100 : "=d" (old), "=m" (*(short *)p)
101 : "d" (new), "0" (old), "m" (*(short *)p));
104 __asm__ __volatile__ ("casl %0,%2,%1"
105 : "=d" (old), "=m" (*(int *)p)
106 : "d" (new), "0" (old), "m" (*(int *)p));
109 old = __invalid_cmpxchg_size(p, old, new, size);
115 #define arch_cmpxchg(ptr, o, n) \
116 ({(__typeof__(*(ptr)))__cmpxchg((ptr), (unsigned long)(o), \
117 (unsigned long)(n), sizeof(*(ptr)));})
118 #define arch_cmpxchg_local(ptr, o, n) \
119 ({(__typeof__(*(ptr)))__cmpxchg((ptr), (unsigned long)(o), \
120 (unsigned long)(n), sizeof(*(ptr)));})
122 #define arch_cmpxchg64(ptr, o, n) arch_cmpxchg64_local((ptr), (o), (n))
126 #include <asm-generic/cmpxchg.h>
130 #endif /* __ARCH_M68K_CMPXCHG__ */