Linux 4.8-rc8
[linux/fpc-iii.git] / arch / sh / include / asm / cmpxchg-llsc.h
blobfcfd32271bff7f6d890922eb7a7b2dea7da34186
1 #ifndef __ASM_SH_CMPXCHG_LLSC_H
2 #define __ASM_SH_CMPXCHG_LLSC_H
4 static inline unsigned long xchg_u32(volatile u32 *m, unsigned long val)
6 unsigned long retval;
7 unsigned long tmp;
9 __asm__ __volatile__ (
10 "1: \n\t"
11 "movli.l @%2, %0 ! xchg_u32 \n\t"
12 "mov %0, %1 \n\t"
13 "mov %3, %0 \n\t"
14 "movco.l %0, @%2 \n\t"
15 "bf 1b \n\t"
16 "synco \n\t"
17 : "=&z"(tmp), "=&r" (retval)
18 : "r" (m), "r" (val)
19 : "t", "memory"
22 return retval;
25 static inline unsigned long
26 __cmpxchg_u32(volatile u32 *m, unsigned long old, unsigned long new)
28 unsigned long retval;
29 unsigned long tmp;
31 __asm__ __volatile__ (
32 "1: \n\t"
33 "movli.l @%2, %0 ! __cmpxchg_u32 \n\t"
34 "mov %0, %1 \n\t"
35 "cmp/eq %1, %3 \n\t"
36 "bf 2f \n\t"
37 "mov %4, %0 \n\t"
38 "2: \n\t"
39 "movco.l %0, @%2 \n\t"
40 "bf 1b \n\t"
41 "synco \n\t"
42 : "=&z" (tmp), "=&r" (retval)
43 : "r" (m), "r" (old), "r" (new)
44 : "t", "memory"
47 return retval;
50 #include <asm/cmpxchg-xchg.h>
52 #endif /* __ASM_SH_CMPXCHG_LLSC_H */