ARM: dma-api: fix max_pfn off-by-one error in __dma_supported()
[linux/fpc-iii.git] / arch / microblaze / include / asm / cmpxchg.h
blob596300c7450942e952ae654ae5dc396883fea2aa
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,
10 int size)
12 unsigned long ret;
13 unsigned long flags;
15 switch (size) {
16 case 1:
17 local_irq_save(flags);
18 ret = *(volatile unsigned char *)ptr;
19 *(volatile unsigned char *)ptr = x;
20 local_irq_restore(flags);
21 break;
23 case 4:
24 local_irq_save(flags);
25 ret = *(volatile unsigned long *)ptr;
26 *(volatile unsigned long *)ptr = x;
27 local_irq_restore(flags);
28 break;
29 default:
30 __bad_xchg(ptr, size), ret = 0;
31 break;
34 return ret;
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 */