blob: ad1f11cfa92a30ed85e7d4552bf9bd8c5984d241 [file] [log] [blame]
David Howells40ab3312012-03-28 18:30:02 +01001/* xchg and cmpxchg operation emulation for FR-V
2 *
3 * For an explanation of how atomic ops work in this arch, see:
4 * Documentation/frv/atomic-ops.txt
5 *
6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
7 * Written by David Howells (dhowells@redhat.com)
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14#ifndef _ASM_CMPXCHG_H
15#define _ASM_CMPXCHG_H
16
17#include <linux/types.h>
18
19/*****************************************************************************/
20/*
21 * exchange value with memory
22 */
23extern uint64_t __xchg_64(uint64_t i, volatile void *v);
24
25#ifndef CONFIG_FRV_OUTOFLINE_ATOMIC_OPS
26
27#define xchg(ptr, x) \
28({ \
29 __typeof__(ptr) __xg_ptr = (ptr); \
30 __typeof__(*(ptr)) __xg_orig; \
31 \
32 switch (sizeof(__xg_orig)) { \
33 case 4: \
34 asm volatile( \
35 "swap%I0 %M0,%1" \
36 : "+m"(*__xg_ptr), "=r"(__xg_orig) \
37 : "1"(x) \
38 : "memory" \
39 ); \
40 break; \
41 \
42 default: \
43 __xg_orig = (__typeof__(__xg_orig))0; \
44 asm volatile("break"); \
45 break; \
46 } \
47 \
48 __xg_orig; \
49})
50
51#else
52
53extern uint32_t __xchg_32(uint32_t i, volatile void *v);
54
55#define xchg(ptr, x) \
56({ \
57 __typeof__(ptr) __xg_ptr = (ptr); \
58 __typeof__(*(ptr)) __xg_orig; \
59 \
60 switch (sizeof(__xg_orig)) { \
61 case 4: __xg_orig = (__typeof__(*(ptr))) __xchg_32((uint32_t) x, __xg_ptr); break; \
62 default: \
63 __xg_orig = (__typeof__(__xg_orig))0; \
64 asm volatile("break"); \
65 break; \
66 } \
67 __xg_orig; \
68})
69
70#endif
71
David Howells40ab3312012-03-28 18:30:02 +010072/*****************************************************************************/
73/*
74 * compare and conditionally exchange value with memory
75 * - if (*ptr == test) then orig = *ptr; *ptr = test;
76 * - if (*ptr != test) then orig = *ptr;
77 */
78extern uint64_t __cmpxchg_64(uint64_t test, uint64_t new, volatile uint64_t *v);
Will Deaconb6d0f142017-07-10 15:50:49 -070079#define cmpxchg64(p, o, n) __cmpxchg_64((o), (n), (p))
David Howells40ab3312012-03-28 18:30:02 +010080
81#ifndef CONFIG_FRV_OUTOFLINE_ATOMIC_OPS
82
83#define cmpxchg(ptr, test, new) \
84({ \
85 __typeof__(ptr) __xg_ptr = (ptr); \
86 __typeof__(*(ptr)) __xg_orig, __xg_tmp; \
87 __typeof__(*(ptr)) __xg_test = (test); \
88 __typeof__(*(ptr)) __xg_new = (new); \
89 \
90 switch (sizeof(__xg_orig)) { \
91 case 4: \
92 asm volatile( \
93 "0: \n" \
94 " orcc gr0,gr0,gr0,icc3 \n" \
95 " ckeq icc3,cc7 \n" \
96 " ld.p %M0,%1 \n" \
97 " orcr cc7,cc7,cc3 \n" \
98 " sub%I4cc %1,%4,%2,icc0 \n" \
99 " bne icc0,#0,1f \n" \
100 " cst.p %3,%M0 ,cc3,#1 \n" \
101 " corcc gr29,gr29,gr0 ,cc3,#1 \n" \
102 " beq icc3,#0,0b \n" \
103 "1: \n" \
104 : "+U"(*__xg_ptr), "=&r"(__xg_orig), "=&r"(__xg_tmp) \
105 : "r"(__xg_new), "NPr"(__xg_test) \
106 : "memory", "cc7", "cc3", "icc3", "icc0" \
107 ); \
108 break; \
109 \
110 default: \
111 __xg_orig = (__typeof__(__xg_orig))0; \
112 asm volatile("break"); \
113 break; \
114 } \
115 \
116 __xg_orig; \
117})
118
119#else
120
121extern uint32_t __cmpxchg_32(uint32_t *v, uint32_t test, uint32_t new);
122
123#define cmpxchg(ptr, test, new) \
124({ \
125 __typeof__(ptr) __xg_ptr = (ptr); \
126 __typeof__(*(ptr)) __xg_orig; \
127 __typeof__(*(ptr)) __xg_test = (test); \
128 __typeof__(*(ptr)) __xg_new = (new); \
129 \
130 switch (sizeof(__xg_orig)) { \
131 case 4: __xg_orig = (__force __typeof__(*ptr)) \
132 __cmpxchg_32((__force uint32_t *)__xg_ptr, \
133 (__force uint32_t)__xg_test, \
134 (__force uint32_t)__xg_new); break; \
135 default: \
136 __xg_orig = (__typeof__(__xg_orig))0; \
137 asm volatile("break"); \
138 break; \
139 } \
140 \
141 __xg_orig; \
142})
143
144#endif
145
146#include <asm-generic/cmpxchg-local.h>
147
148static inline unsigned long __cmpxchg_local(volatile void *ptr,
149 unsigned long old,
150 unsigned long new, int size)
151{
152 switch (size) {
153 case 4:
154 return cmpxchg((unsigned long *)ptr, old, new);
155 default:
156 return __cmpxchg_local_generic(ptr, old, new, size);
157 }
158
159 return old;
160}
161
162/*
163 * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make
164 * them available.
165 */
166#define cmpxchg_local(ptr, o, n) \
167 ((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \
168 (unsigned long)(n), sizeof(*(ptr))))
169#define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
170
171#endif /* _ASM_CMPXCHG_H */