Loading...
1/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Vineetg: August 2010: From Android kernel work
9 */
10
11#ifndef _ASM_FUTEX_H
12#define _ASM_FUTEX_H
13
14#include <linux/futex.h>
15#include <linux/preempt.h>
16#include <linux/uaccess.h>
17#include <asm/errno.h>
18
19#ifdef CONFIG_ARC_HAS_LLSC
20
21#define __futex_atomic_op(insn, ret, oldval, uaddr, oparg)\
22 \
23 smp_mb(); \
24 __asm__ __volatile__( \
25 "1: llock %1, [%2] \n" \
26 insn "\n" \
27 "2: scond %0, [%2] \n" \
28 " bnz 1b \n" \
29 " mov %0, 0 \n" \
30 "3: \n" \
31 " .section .fixup,\"ax\" \n" \
32 " .align 4 \n" \
33 "4: mov %0, %4 \n" \
34 " j 3b \n" \
35 " .previous \n" \
36 " .section __ex_table,\"a\" \n" \
37 " .align 4 \n" \
38 " .word 1b, 4b \n" \
39 " .word 2b, 4b \n" \
40 " .previous \n" \
41 \
42 : "=&r" (ret), "=&r" (oldval) \
43 : "r" (uaddr), "r" (oparg), "ir" (-EFAULT) \
44 : "cc", "memory"); \
45 smp_mb() \
46
47#else /* !CONFIG_ARC_HAS_LLSC */
48
49#define __futex_atomic_op(insn, ret, oldval, uaddr, oparg)\
50 \
51 smp_mb(); \
52 __asm__ __volatile__( \
53 "1: ld %1, [%2] \n" \
54 insn "\n" \
55 "2: st %0, [%2] \n" \
56 " mov %0, 0 \n" \
57 "3: \n" \
58 " .section .fixup,\"ax\" \n" \
59 " .align 4 \n" \
60 "4: mov %0, %4 \n" \
61 " j 3b \n" \
62 " .previous \n" \
63 " .section __ex_table,\"a\" \n" \
64 " .align 4 \n" \
65 " .word 1b, 4b \n" \
66 " .word 2b, 4b \n" \
67 " .previous \n" \
68 \
69 : "=&r" (ret), "=&r" (oldval) \
70 : "r" (uaddr), "r" (oparg), "ir" (-EFAULT) \
71 : "cc", "memory"); \
72 smp_mb() \
73
74#endif
75
76static inline int arch_futex_atomic_op_inuser(int op, int oparg, int *oval,
77 u32 __user *uaddr)
78{
79 int oldval = 0, ret;
80
81#ifndef CONFIG_ARC_HAS_LLSC
82 preempt_disable(); /* to guarantee atomic r-m-w of futex op */
83#endif
84 pagefault_disable();
85
86 switch (op) {
87 case FUTEX_OP_SET:
88 __futex_atomic_op("mov %0, %3", ret, oldval, uaddr, oparg);
89 break;
90 case FUTEX_OP_ADD:
91 /* oldval = *uaddr; *uaddr += oparg ; ret = *uaddr */
92 __futex_atomic_op("add %0, %1, %3", ret, oldval, uaddr, oparg);
93 break;
94 case FUTEX_OP_OR:
95 __futex_atomic_op("or %0, %1, %3", ret, oldval, uaddr, oparg);
96 break;
97 case FUTEX_OP_ANDN:
98 __futex_atomic_op("bic %0, %1, %3", ret, oldval, uaddr, oparg);
99 break;
100 case FUTEX_OP_XOR:
101 __futex_atomic_op("xor %0, %1, %3", ret, oldval, uaddr, oparg);
102 break;
103 default:
104 ret = -ENOSYS;
105 }
106
107 pagefault_enable();
108#ifndef CONFIG_ARC_HAS_LLSC
109 preempt_enable();
110#endif
111
112 if (!ret)
113 *oval = oldval;
114
115 return ret;
116}
117
118/*
119 * cmpxchg of futex (pagefaults disabled by caller)
120 * Return 0 for success, -EFAULT otherwise
121 */
122static inline int
123futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr, u32 expval,
124 u32 newval)
125{
126 int ret = 0;
127 u32 existval;
128
129 if (!access_ok(VERIFY_WRITE, uaddr, sizeof(u32)))
130 return -EFAULT;
131
132#ifndef CONFIG_ARC_HAS_LLSC
133 preempt_disable(); /* to guarantee atomic r-m-w of futex op */
134#endif
135 smp_mb();
136
137 __asm__ __volatile__(
138#ifdef CONFIG_ARC_HAS_LLSC
139 "1: llock %1, [%4] \n"
140 " brne %1, %2, 3f \n"
141 "2: scond %3, [%4] \n"
142 " bnz 1b \n"
143#else
144 "1: ld %1, [%4] \n"
145 " brne %1, %2, 3f \n"
146 "2: st %3, [%4] \n"
147#endif
148 "3: \n"
149 " .section .fixup,\"ax\" \n"
150 "4: mov %0, %5 \n"
151 " j 3b \n"
152 " .previous \n"
153 " .section __ex_table,\"a\" \n"
154 " .align 4 \n"
155 " .word 1b, 4b \n"
156 " .word 2b, 4b \n"
157 " .previous\n"
158 : "+&r"(ret), "=&r"(existval)
159 : "r"(expval), "r"(newval), "r"(uaddr), "ir"(-EFAULT)
160 : "cc", "memory");
161
162 smp_mb();
163
164#ifndef CONFIG_ARC_HAS_LLSC
165 preempt_enable();
166#endif
167 *uval = existval;
168 return ret;
169}
170
171#endif
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 *
5 * Vineetg: August 2010: From Android kernel work
6 */
7
8#ifndef _ASM_FUTEX_H
9#define _ASM_FUTEX_H
10
11#include <linux/futex.h>
12#include <linux/preempt.h>
13#include <linux/uaccess.h>
14#include <asm/errno.h>
15
16#ifdef CONFIG_ARC_HAS_LLSC
17
18#define __futex_atomic_op(insn, ret, oldval, uaddr, oparg)\
19 \
20 smp_mb(); \
21 __asm__ __volatile__( \
22 "1: llock %1, [%2] \n" \
23 insn "\n" \
24 "2: scond %0, [%2] \n" \
25 " bnz 1b \n" \
26 " mov %0, 0 \n" \
27 "3: \n" \
28 " .section .fixup,\"ax\" \n" \
29 " .align 4 \n" \
30 "4: mov %0, %4 \n" \
31 " j 3b \n" \
32 " .previous \n" \
33 " .section __ex_table,\"a\" \n" \
34 " .align 4 \n" \
35 " .word 1b, 4b \n" \
36 " .word 2b, 4b \n" \
37 " .previous \n" \
38 \
39 : "=&r" (ret), "=&r" (oldval) \
40 : "r" (uaddr), "r" (oparg), "ir" (-EFAULT) \
41 : "cc", "memory"); \
42 smp_mb() \
43
44#else /* !CONFIG_ARC_HAS_LLSC */
45
46#define __futex_atomic_op(insn, ret, oldval, uaddr, oparg)\
47 \
48 smp_mb(); \
49 __asm__ __volatile__( \
50 "1: ld %1, [%2] \n" \
51 insn "\n" \
52 "2: st %0, [%2] \n" \
53 " mov %0, 0 \n" \
54 "3: \n" \
55 " .section .fixup,\"ax\" \n" \
56 " .align 4 \n" \
57 "4: mov %0, %4 \n" \
58 " j 3b \n" \
59 " .previous \n" \
60 " .section __ex_table,\"a\" \n" \
61 " .align 4 \n" \
62 " .word 1b, 4b \n" \
63 " .word 2b, 4b \n" \
64 " .previous \n" \
65 \
66 : "=&r" (ret), "=&r" (oldval) \
67 : "r" (uaddr), "r" (oparg), "ir" (-EFAULT) \
68 : "cc", "memory"); \
69 smp_mb() \
70
71#endif
72
73static inline int arch_futex_atomic_op_inuser(int op, int oparg, int *oval,
74 u32 __user *uaddr)
75{
76 int oldval = 0, ret;
77
78#ifndef CONFIG_ARC_HAS_LLSC
79 preempt_disable(); /* to guarantee atomic r-m-w of futex op */
80#endif
81 pagefault_disable();
82
83 switch (op) {
84 case FUTEX_OP_SET:
85 __futex_atomic_op("mov %0, %3", ret, oldval, uaddr, oparg);
86 break;
87 case FUTEX_OP_ADD:
88 /* oldval = *uaddr; *uaddr += oparg ; ret = *uaddr */
89 __futex_atomic_op("add %0, %1, %3", ret, oldval, uaddr, oparg);
90 break;
91 case FUTEX_OP_OR:
92 __futex_atomic_op("or %0, %1, %3", ret, oldval, uaddr, oparg);
93 break;
94 case FUTEX_OP_ANDN:
95 __futex_atomic_op("bic %0, %1, %3", ret, oldval, uaddr, oparg);
96 break;
97 case FUTEX_OP_XOR:
98 __futex_atomic_op("xor %0, %1, %3", ret, oldval, uaddr, oparg);
99 break;
100 default:
101 ret = -ENOSYS;
102 }
103
104 pagefault_enable();
105#ifndef CONFIG_ARC_HAS_LLSC
106 preempt_enable();
107#endif
108
109 if (!ret)
110 *oval = oldval;
111
112 return ret;
113}
114
115/*
116 * cmpxchg of futex (pagefaults disabled by caller)
117 * Return 0 for success, -EFAULT otherwise
118 */
119static inline int
120futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr, u32 expval,
121 u32 newval)
122{
123 int ret = 0;
124 u32 existval;
125
126 if (!access_ok(uaddr, sizeof(u32)))
127 return -EFAULT;
128
129#ifndef CONFIG_ARC_HAS_LLSC
130 preempt_disable(); /* to guarantee atomic r-m-w of futex op */
131#endif
132 smp_mb();
133
134 __asm__ __volatile__(
135#ifdef CONFIG_ARC_HAS_LLSC
136 "1: llock %1, [%4] \n"
137 " brne %1, %2, 3f \n"
138 "2: scond %3, [%4] \n"
139 " bnz 1b \n"
140#else
141 "1: ld %1, [%4] \n"
142 " brne %1, %2, 3f \n"
143 "2: st %3, [%4] \n"
144#endif
145 "3: \n"
146 " .section .fixup,\"ax\" \n"
147 "4: mov %0, %5 \n"
148 " j 3b \n"
149 " .previous \n"
150 " .section __ex_table,\"a\" \n"
151 " .align 4 \n"
152 " .word 1b, 4b \n"
153 " .word 2b, 4b \n"
154 " .previous\n"
155 : "+&r"(ret), "=&r"(existval)
156 : "r"(expval), "r"(newval), "r"(uaddr), "ir"(-EFAULT)
157 : "cc", "memory");
158
159 smp_mb();
160
161#ifndef CONFIG_ARC_HAS_LLSC
162 preempt_enable();
163#endif
164 *uval = existval;
165 return ret;
166}
167
168#endif