2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
14 * These routines make two important assumptions:
16 * 1. atomic_t is really an int and can be freely cast back and forth
17 * (validated in __init_atomic_per_cpu).
19 * 2. userspace uses sys_cmpxchg() for all atomic operations, thus using
20 * the same locking convention that all the kernel atomic routines use.
23 #ifndef _ASM_TILE_FUTEX_H
24 #define _ASM_TILE_FUTEX_H
28 #include <linux/futex.h>
29 #include <linux/uaccess.h>
30 #include <linux/errno.h>
31 #include <asm/atomic.h>
34 * Support macros for futex operations. Do not use these macros directly.
35 * They assume "ret", "val", "oparg", and "uaddr" in the lexical context.
36 * __futex_cmpxchg() additionally assumes "oldval".
41 #define __futex_asm(OP) \
42 asm("1: {" #OP " %1, %3, %4; movei %0, 0 }\n" \
43 ".pushsection .fixup,\"ax\"\n" \
44 "0: { movei %0, %5; j 9f }\n" \
45 ".section __ex_table,\"a\"\n" \
49 : "=r" (ret), "=r" (val), "+m" (*(uaddr)) \
50 : "r" (uaddr), "r" (oparg), "i" (-EFAULT))
52 #define __futex_set() __futex_asm(exch4)
53 #define __futex_add() __futex_asm(fetchadd4)
54 #define __futex_or() __futex_asm(fetchor4)
55 #define __futex_andn() ({ oparg = ~oparg; __futex_asm(fetchand4); })
56 #define __futex_cmpxchg() \
57 ({ __insn_mtspr(SPR_CMPEXCH_VALUE, oldval); __futex_asm(cmpexch4); })
59 #define __futex_xor() \
61 u32 oldval, n = oparg; \
62 if ((ret = __get_user(oldval, uaddr)) == 0) { \
66 } while (ret == 0 && oldval != val); \
70 /* No need to prefetch, since the atomic ops go to the home cache anyway. */
71 #define __futex_prolog()
75 #define __futex_call(FN) \
77 struct __get_user gu = FN((u32 __force *)uaddr, lock, oparg); \
82 #define __futex_set() __futex_call(__atomic_xchg)
83 #define __futex_add() __futex_call(__atomic_xchg_add)
84 #define __futex_or() __futex_call(__atomic_or)
85 #define __futex_andn() __futex_call(__atomic_andn)
86 #define __futex_xor() __futex_call(__atomic_xor)
88 #define __futex_cmpxchg() \
90 struct __get_user gu = __atomic_cmpxchg((u32 __force *)uaddr, \
91 lock, oldval, oparg); \
97 * Find the lock pointer for the atomic calls to use, and issue a
98 * prefetch to the user address to bring it into cache. Similar to
99 * __atomic_setup(), but we can't do a read into the L1 since it might
100 * fault; instead we do a prefetch into the L2.
102 #define __futex_prolog() \
104 __insn_prefetch(uaddr); \
105 lock = __atomic_hashed_lock((int __force *)uaddr)
108 static inline int futex_atomic_op_inuser(int encoded_op
, u32 __user
*uaddr
)
110 int op
= (encoded_op
>> 28) & 7;
111 int cmp
= (encoded_op
>> 24) & 15;
112 int oparg
= (encoded_op
<< 8) >> 20;
113 int cmparg
= (encoded_op
<< 20) >> 20;
114 int uninitialized_var(val
), ret
;
118 /* The 32-bit futex code makes this assumption, so validate it here. */
119 BUILD_BUG_ON(sizeof(atomic_t
) != sizeof(int));
121 if (encoded_op
& (FUTEX_OP_OPARG_SHIFT
<< 28))
124 if (!access_ok(VERIFY_WRITE
, uaddr
, sizeof(u32
)))
152 case FUTEX_OP_CMP_EQ
:
153 ret
= (val
== cmparg
);
155 case FUTEX_OP_CMP_NE
:
156 ret
= (val
!= cmparg
);
158 case FUTEX_OP_CMP_LT
:
159 ret
= (val
< cmparg
);
161 case FUTEX_OP_CMP_GE
:
162 ret
= (val
>= cmparg
);
164 case FUTEX_OP_CMP_LE
:
165 ret
= (val
<= cmparg
);
167 case FUTEX_OP_CMP_GT
:
168 ret
= (val
> cmparg
);
177 static inline int futex_atomic_cmpxchg_inatomic(u32
*uval
, u32 __user
*uaddr
,
178 u32 oldval
, u32 oparg
)
184 if (!access_ok(VERIFY_WRITE
, uaddr
, sizeof(u32
)))
193 #endif /* !__ASSEMBLY__ */
195 #endif /* _ASM_TILE_FUTEX_H */