1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2013 ARM Ltd.
8 #include <linux/preempt.h>
10 #include <asm/alternative.h>
11 #include <asm/cmpxchg.h>
12 #include <asm/stack_pointer.h>
13 #include <asm/sysreg.h>
15 static inline void set_my_cpu_offset(unsigned long off
)
17 asm volatile(ALTERNATIVE("msr tpidr_el1, %0",
19 ARM64_HAS_VIRT_HOST_EXTN
)
20 :: "r" (off
) : "memory");
23 static inline unsigned long __hyp_my_cpu_offset(void)
26 * Non-VHE hyp code runs with preemption disabled. No need to hazard
27 * the register access against barrier() as in __kern_my_cpu_offset.
29 return read_sysreg(tpidr_el2
);
32 static inline unsigned long __kern_my_cpu_offset(void)
37 * We want to allow caching the value, so avoid using volatile and
38 * instead use a fake stack read to hazard against barrier().
40 asm(ALTERNATIVE("mrs %0, tpidr_el1",
42 ARM64_HAS_VIRT_HOST_EXTN
)
44 "Q" (*(const unsigned long *)current_stack_pointer
));
49 #ifdef __KVM_NVHE_HYPERVISOR__
50 #define __my_cpu_offset __hyp_my_cpu_offset()
52 #define __my_cpu_offset __kern_my_cpu_offset()
55 #define PERCPU_RW_OPS(sz) \
56 static inline unsigned long __percpu_read_##sz(void *ptr) \
58 return READ_ONCE(*(u##sz *)ptr); \
61 static inline void __percpu_write_##sz(void *ptr, unsigned long val) \
63 WRITE_ONCE(*(u##sz *)ptr, (u##sz)val); \
66 #define __PERCPU_OP_CASE(w, sfx, name, sz, op_llsc, op_lse) \
68 __percpu_##name##_case_##sz(void *ptr, unsigned long val) \
73 asm volatile (ARM64_LSE_ATOMIC_INSN( \
75 "1: ldxr" #sfx "\t%" #w "[tmp], %[ptr]\n" \
76 #op_llsc "\t%" #w "[tmp], %" #w "[tmp], %" #w "[val]\n" \
77 " stxr" #sfx "\t%w[loop], %" #w "[tmp], %[ptr]\n" \
78 " cbnz %w[loop], 1b", \
80 #op_lse "\t%" #w "[val], %[ptr]\n" \
82 : [loop] "=&r" (loop), [tmp] "=&r" (tmp), \
83 [ptr] "+Q"(*(u##sz *)ptr) \
84 : [val] "r" ((u##sz)(val))); \
87 #define __PERCPU_RET_OP_CASE(w, sfx, name, sz, op_llsc, op_lse) \
89 __percpu_##name##_return_case_##sz(void *ptr, unsigned long val) \
94 asm volatile (ARM64_LSE_ATOMIC_INSN( \
96 "1: ldxr" #sfx "\t%" #w "[ret], %[ptr]\n" \
97 #op_llsc "\t%" #w "[ret], %" #w "[ret], %" #w "[val]\n" \
98 " stxr" #sfx "\t%w[loop], %" #w "[ret], %[ptr]\n" \
99 " cbnz %w[loop], 1b", \
101 #op_lse "\t%" #w "[val], %" #w "[ret], %[ptr]\n" \
102 #op_llsc "\t%" #w "[ret], %" #w "[ret], %" #w "[val]\n" \
104 : [loop] "=&r" (loop), [ret] "=&r" (ret), \
105 [ptr] "+Q"(*(u##sz *)ptr) \
106 : [val] "r" ((u##sz)(val))); \
111 #define PERCPU_OP(name, op_llsc, op_lse) \
112 __PERCPU_OP_CASE(w, b, name, 8, op_llsc, op_lse) \
113 __PERCPU_OP_CASE(w, h, name, 16, op_llsc, op_lse) \
114 __PERCPU_OP_CASE(w, , name, 32, op_llsc, op_lse) \
115 __PERCPU_OP_CASE( , , name, 64, op_llsc, op_lse)
117 #define PERCPU_RET_OP(name, op_llsc, op_lse) \
118 __PERCPU_RET_OP_CASE(w, b, name, 8, op_llsc, op_lse) \
119 __PERCPU_RET_OP_CASE(w, h, name, 16, op_llsc, op_lse) \
120 __PERCPU_RET_OP_CASE(w, , name, 32, op_llsc, op_lse) \
121 __PERCPU_RET_OP_CASE( , , name, 64, op_llsc, op_lse)
127 PERCPU_OP(add
, add
, stadd
)
128 PERCPU_OP(andnot
, bic
, stclr
)
129 PERCPU_OP(or, orr
, stset
)
130 PERCPU_RET_OP(add
, add
, ldadd
)
133 #undef __PERCPU_OP_CASE
134 #undef __PERCPU_RET_OP_CASE
139 * It would be nice to avoid the conditional call into the scheduler when
140 * re-enabling preemption for preemptible kernels, but doing that in a way
141 * which builds inside a module would mean messing directly with the preempt
142 * count. If you do this, peterz and tglx will hunt you down.
144 * Not to mention it'll break the actual preemption model for missing a
145 * preemption point when TIF_NEED_RESCHED gets set while preemption is
149 #define _pcp_protect(op, pcp, ...) \
151 preempt_disable_notrace(); \
152 op(raw_cpu_ptr(&(pcp)), __VA_ARGS__); \
153 preempt_enable_notrace(); \
156 #define _pcp_protect_return(op, pcp, args...) \
158 typeof(pcp) __retval; \
159 preempt_disable_notrace(); \
160 __retval = (typeof(pcp))op(raw_cpu_ptr(&(pcp)), ##args); \
161 preempt_enable_notrace(); \
165 #define this_cpu_read_1(pcp) \
166 _pcp_protect_return(__percpu_read_8, pcp)
167 #define this_cpu_read_2(pcp) \
168 _pcp_protect_return(__percpu_read_16, pcp)
169 #define this_cpu_read_4(pcp) \
170 _pcp_protect_return(__percpu_read_32, pcp)
171 #define this_cpu_read_8(pcp) \
172 _pcp_protect_return(__percpu_read_64, pcp)
174 #define this_cpu_write_1(pcp, val) \
175 _pcp_protect(__percpu_write_8, pcp, (unsigned long)val)
176 #define this_cpu_write_2(pcp, val) \
177 _pcp_protect(__percpu_write_16, pcp, (unsigned long)val)
178 #define this_cpu_write_4(pcp, val) \
179 _pcp_protect(__percpu_write_32, pcp, (unsigned long)val)
180 #define this_cpu_write_8(pcp, val) \
181 _pcp_protect(__percpu_write_64, pcp, (unsigned long)val)
183 #define this_cpu_add_1(pcp, val) \
184 _pcp_protect(__percpu_add_case_8, pcp, val)
185 #define this_cpu_add_2(pcp, val) \
186 _pcp_protect(__percpu_add_case_16, pcp, val)
187 #define this_cpu_add_4(pcp, val) \
188 _pcp_protect(__percpu_add_case_32, pcp, val)
189 #define this_cpu_add_8(pcp, val) \
190 _pcp_protect(__percpu_add_case_64, pcp, val)
192 #define this_cpu_add_return_1(pcp, val) \
193 _pcp_protect_return(__percpu_add_return_case_8, pcp, val)
194 #define this_cpu_add_return_2(pcp, val) \
195 _pcp_protect_return(__percpu_add_return_case_16, pcp, val)
196 #define this_cpu_add_return_4(pcp, val) \
197 _pcp_protect_return(__percpu_add_return_case_32, pcp, val)
198 #define this_cpu_add_return_8(pcp, val) \
199 _pcp_protect_return(__percpu_add_return_case_64, pcp, val)
201 #define this_cpu_and_1(pcp, val) \
202 _pcp_protect(__percpu_andnot_case_8, pcp, ~val)
203 #define this_cpu_and_2(pcp, val) \
204 _pcp_protect(__percpu_andnot_case_16, pcp, ~val)
205 #define this_cpu_and_4(pcp, val) \
206 _pcp_protect(__percpu_andnot_case_32, pcp, ~val)
207 #define this_cpu_and_8(pcp, val) \
208 _pcp_protect(__percpu_andnot_case_64, pcp, ~val)
210 #define this_cpu_or_1(pcp, val) \
211 _pcp_protect(__percpu_or_case_8, pcp, val)
212 #define this_cpu_or_2(pcp, val) \
213 _pcp_protect(__percpu_or_case_16, pcp, val)
214 #define this_cpu_or_4(pcp, val) \
215 _pcp_protect(__percpu_or_case_32, pcp, val)
216 #define this_cpu_or_8(pcp, val) \
217 _pcp_protect(__percpu_or_case_64, pcp, val)
219 #define this_cpu_xchg_1(pcp, val) \
220 _pcp_protect_return(xchg_relaxed, pcp, val)
221 #define this_cpu_xchg_2(pcp, val) \
222 _pcp_protect_return(xchg_relaxed, pcp, val)
223 #define this_cpu_xchg_4(pcp, val) \
224 _pcp_protect_return(xchg_relaxed, pcp, val)
225 #define this_cpu_xchg_8(pcp, val) \
226 _pcp_protect_return(xchg_relaxed, pcp, val)
228 #define this_cpu_cmpxchg_1(pcp, o, n) \
229 _pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
230 #define this_cpu_cmpxchg_2(pcp, o, n) \
231 _pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
232 #define this_cpu_cmpxchg_4(pcp, o, n) \
233 _pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
234 #define this_cpu_cmpxchg_8(pcp, o, n) \
235 _pcp_protect_return(cmpxchg_relaxed, pcp, o, n)
237 #define this_cpu_cmpxchg64(pcp, o, n) this_cpu_cmpxchg_8(pcp, o, n)
239 #define this_cpu_cmpxchg128(pcp, o, n) \
241 typedef typeof(pcp) pcp_op_T__; \
242 u128 old__, new__, ret__; \
246 preempt_disable_notrace(); \
247 ptr__ = raw_cpu_ptr(&(pcp)); \
248 ret__ = cmpxchg128_local((void *)ptr__, old__, new__); \
249 preempt_enable_notrace(); \
253 #ifdef __KVM_NVHE_HYPERVISOR__
254 extern unsigned long __hyp_per_cpu_offset(unsigned int cpu
);
255 #define __per_cpu_offset
256 #define per_cpu_offset(cpu) __hyp_per_cpu_offset((cpu))
259 #include <asm-generic/percpu.h>
261 /* Redefine macros for nVHE hyp under DEBUG_PREEMPT to avoid its dependencies. */
262 #if defined(__KVM_NVHE_HYPERVISOR__) && defined(CONFIG_DEBUG_PREEMPT)
264 #define this_cpu_ptr raw_cpu_ptr
265 #undef __this_cpu_read
266 #define __this_cpu_read raw_cpu_read
267 #undef __this_cpu_write
268 #define __this_cpu_write raw_cpu_write
271 #endif /* __ASM_PERCPU_H */