blob: d86ab942219c4277385cc256bbcf4794f38a80df [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Waiman Longd73a3392015-04-24 14:56:31 -04002#ifndef _ASM_X86_QSPINLOCK_H
3#define _ASM_X86_QSPINLOCK_H
4
Juergen Gross90434422017-09-06 19:36:24 +02005#include <linux/jump_label.h>
Peter Zijlstra (Intel)2aa79af2015-04-24 14:56:36 -04006#include <asm/cpufeature.h>
Waiman Longd73a3392015-04-24 14:56:31 -04007#include <asm-generic/qspinlock_types.h>
Peter Zijlstra (Intel)f233f7f2015-04-24 14:56:38 -04008#include <asm/paravirt.h>
Peter Zijlstra7aa54be2018-09-26 13:01:20 +02009#include <asm/rmwcc.h>
Waiman Longd73a3392015-04-24 14:56:31 -040010
Will Deaconb247be32018-04-26 11:34:18 +010011#define _Q_PENDING_LOOPS (1 << 9)
12
Peter Zijlstra7aa54be2018-09-26 13:01:20 +020013#define queued_fetch_set_pending_acquire queued_fetch_set_pending_acquire
14static __always_inline u32 queued_fetch_set_pending_acquire(struct qspinlock *lock)
15{
Peter Zijlstrab987ffc2018-11-02 14:26:53 +010016 u32 val;
Peter Zijlstra7aa54be2018-09-26 13:01:20 +020017
Peter Zijlstrab987ffc2018-11-02 14:26:53 +010018 /*
19 * We can't use GEN_BINARY_RMWcc() inside an if() stmt because asm goto
20 * and CONFIG_PROFILE_ALL_BRANCHES=y results in a label inside a
21 * statement expression, which GCC doesn't like.
22 */
23 val = GEN_BINARY_RMWcc(LOCK_PREFIX "btsl", lock->val.counter, c,
24 "I", _Q_PENDING_OFFSET) * _Q_PENDING_VAL;
Peter Zijlstra7aa54be2018-09-26 13:01:20 +020025 val |= atomic_read(&lock->val) & ~_Q_PENDING_MASK;
26
27 return val;
28}
29
Will Deacon626e5fb2018-04-26 11:34:24 +010030#ifdef CONFIG_PARAVIRT_SPINLOCKS
31extern void native_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val);
32extern void __pv_init_lock_hash(void);
33extern void __pv_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val);
34extern void __raw_callee_save___pv_queued_spin_unlock(struct qspinlock *lock);
Zhenzhong Duan05eee612019-10-23 19:16:22 +080035extern bool nopvspin;
Will Deacon626e5fb2018-04-26 11:34:24 +010036
Waiman Longd73a3392015-04-24 14:56:31 -040037#define queued_spin_unlock queued_spin_unlock
38/**
39 * queued_spin_unlock - release a queued spinlock
40 * @lock : Pointer to queued spinlock structure
41 *
42 * A smp_store_release() on the least-significant byte.
43 */
Peter Zijlstra (Intel)f233f7f2015-04-24 14:56:38 -040044static inline void native_queued_spin_unlock(struct qspinlock *lock)
Waiman Longd73a3392015-04-24 14:56:31 -040045{
Will Deacon625e88b2018-04-26 11:34:16 +010046 smp_store_release(&lock->locked, 0);
Waiman Longd73a3392015-04-24 14:56:31 -040047}
48
Peter Zijlstra (Intel)f233f7f2015-04-24 14:56:38 -040049static inline void queued_spin_lock_slowpath(struct qspinlock *lock, u32 val)
50{
51 pv_queued_spin_lock_slowpath(lock, val);
52}
53
54static inline void queued_spin_unlock(struct qspinlock *lock)
55{
56 pv_queued_spin_unlock(lock);
57}
Peter Zijlstra3cded412016-11-15 16:47:06 +010058
59#define vcpu_is_preempted vcpu_is_preempted
Waiman Long6c629852017-02-20 13:36:03 -050060static inline bool vcpu_is_preempted(long cpu)
Peter Zijlstra3cded412016-11-15 16:47:06 +010061{
62 return pv_vcpu_is_preempted(cpu);
63}
Peter Zijlstra (Intel)f233f7f2015-04-24 14:56:38 -040064#endif
65
Peter Zijlstraa6b27782015-09-05 16:55:05 +020066#ifdef CONFIG_PARAVIRT
Peter Zijlstra24a376d2019-08-01 15:30:28 +020067/*
68 * virt_spin_lock_key - enables (by default) the virt_spin_lock() hijack.
69 *
70 * Native (and PV wanting native due to vCPU pinning) should disable this key.
71 * It is done in this backwards fashion to only have a single direction change,
72 * which removes ordering between native_pv_spin_init() and HV setup.
73 */
Juergen Gross90434422017-09-06 19:36:24 +020074DECLARE_STATIC_KEY_TRUE(virt_spin_lock_key);
75
76void native_pv_lock_init(void) __init;
77
Peter Zijlstra24a376d2019-08-01 15:30:28 +020078/*
79 * Shortcut for the queued_spin_lock_slowpath() function that allows
80 * virt to hijack it.
81 *
82 * Returns:
83 * true - lock has been negotiated, all done;
84 * false - queued_spin_lock_slowpath() will do its thing.
85 */
Peter Zijlstra43b3f022015-09-04 17:25:23 +020086#define virt_spin_lock virt_spin_lock
Peter Zijlstra43b3f022015-09-04 17:25:23 +020087static inline bool virt_spin_lock(struct qspinlock *lock)
Peter Zijlstra (Intel)2aa79af2015-04-24 14:56:36 -040088{
Juergen Gross90434422017-09-06 19:36:24 +020089 if (!static_branch_likely(&virt_spin_lock_key))
Peter Zijlstra (Intel)2aa79af2015-04-24 14:56:36 -040090 return false;
91
Peter Zijlstra43b3f022015-09-04 17:25:23 +020092 /*
93 * On hypervisors without PARAVIRT_SPINLOCKS support we fall
94 * back to a Test-and-Set spinlock, because fair locks have
95 * horrible lock 'holder' preemption issues.
96 */
97
98 do {
99 while (atomic_read(&lock->val) != 0)
100 cpu_relax();
101 } while (atomic_cmpxchg(&lock->val, 0, _Q_LOCKED_VAL) != 0);
Peter Zijlstra (Intel)2aa79af2015-04-24 14:56:36 -0400102
103 return true;
104}
Juergen Gross90434422017-09-06 19:36:24 +0200105#else
106static inline void native_pv_lock_init(void)
107{
108}
Peter Zijlstraa6b27782015-09-05 16:55:05 +0200109#endif /* CONFIG_PARAVIRT */
Peter Zijlstra (Intel)2aa79af2015-04-24 14:56:36 -0400110
Waiman Longd73a3392015-04-24 14:56:31 -0400111#include <asm-generic/qspinlock.h>
112
113#endif /* _ASM_X86_QSPINLOCK_H */