1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_MICROBLAZE_CMPXCHG_H
3 #define _ASM_MICROBLAZE_CMPXCHG_H
5 #include <linux/irqflags.h>
7 void __bad_xchg(volatile void *ptr
, int size
);
9 static inline unsigned long __xchg(unsigned long x
, volatile void *ptr
,
17 local_irq_save(flags
);
18 ret
= *(volatile unsigned char *)ptr
;
19 *(volatile unsigned char *)ptr
= x
;
20 local_irq_restore(flags
);
24 local_irq_save(flags
);
25 ret
= *(volatile unsigned long *)ptr
;
26 *(volatile unsigned long *)ptr
= x
;
27 local_irq_restore(flags
);
30 __bad_xchg(ptr
, size
), ret
= 0;
37 #define xchg(ptr, x) \
38 ((__typeof__(*(ptr))) __xchg((unsigned long)(x), (ptr), sizeof(*(ptr))))
40 #include <asm-generic/cmpxchg.h>
41 #include <asm-generic/cmpxchg-local.h>
43 #endif /* _ASM_MICROBLAZE_CMPXCHG_H */