Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 2 | #ifndef _ASM_X86_QSPINLOCK_H |
| 3 | #define _ASM_X86_QSPINLOCK_H |
| 4 | |
Juergen Gross | 9043442 | 2017-09-06 19:36:24 +0200 | [diff] [blame] | 5 | #include <linux/jump_label.h> |
Peter Zijlstra (Intel) | 2aa79af | 2015-04-24 14:56:36 -0400 | [diff] [blame] | 6 | #include <asm/cpufeature.h> |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 7 | #include <asm-generic/qspinlock_types.h> |
Peter Zijlstra (Intel) | f233f7f | 2015-04-24 14:56:38 -0400 | [diff] [blame] | 8 | #include <asm/paravirt.h> |
Peter Zijlstra | 7aa54be | 2018-09-26 13:01:20 +0200 | [diff] [blame] | 9 | #include <asm/rmwcc.h> |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 10 | |
Will Deacon | b247be3 | 2018-04-26 11:34:18 +0100 | [diff] [blame] | 11 | #define _Q_PENDING_LOOPS (1 << 9) |
| 12 | |
Peter Zijlstra | 7aa54be | 2018-09-26 13:01:20 +0200 | [diff] [blame] | 13 | #define queued_fetch_set_pending_acquire queued_fetch_set_pending_acquire |
| 14 | static __always_inline u32 queued_fetch_set_pending_acquire(struct qspinlock *lock) |
| 15 | { |
Peter Zijlstra | b987ffc | 2018-11-02 14:26:53 +0100 | [diff] [blame] | 16 | u32 val; |
Peter Zijlstra | 7aa54be | 2018-09-26 13:01:20 +0200 | [diff] [blame] | 17 | |
Peter Zijlstra | b987ffc | 2018-11-02 14:26:53 +0100 | [diff] [blame] | 18 | /* |
| 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 Zijlstra | 7aa54be | 2018-09-26 13:01:20 +0200 | [diff] [blame] | 25 | val |= atomic_read(&lock->val) & ~_Q_PENDING_MASK; |
| 26 | |
| 27 | return val; |
| 28 | } |
| 29 | |
Will Deacon | 626e5fb | 2018-04-26 11:34:24 +0100 | [diff] [blame] | 30 | #ifdef CONFIG_PARAVIRT_SPINLOCKS |
| 31 | extern void native_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val); |
| 32 | extern void __pv_init_lock_hash(void); |
| 33 | extern void __pv_queued_spin_lock_slowpath(struct qspinlock *lock, u32 val); |
| 34 | extern void __raw_callee_save___pv_queued_spin_unlock(struct qspinlock *lock); |
| 35 | |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 36 | #define queued_spin_unlock queued_spin_unlock |
| 37 | /** |
| 38 | * queued_spin_unlock - release a queued spinlock |
| 39 | * @lock : Pointer to queued spinlock structure |
| 40 | * |
| 41 | * A smp_store_release() on the least-significant byte. |
| 42 | */ |
Peter Zijlstra (Intel) | f233f7f | 2015-04-24 14:56:38 -0400 | [diff] [blame] | 43 | static inline void native_queued_spin_unlock(struct qspinlock *lock) |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 44 | { |
Will Deacon | 625e88b | 2018-04-26 11:34:16 +0100 | [diff] [blame] | 45 | smp_store_release(&lock->locked, 0); |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 46 | } |
| 47 | |
Peter Zijlstra (Intel) | f233f7f | 2015-04-24 14:56:38 -0400 | [diff] [blame] | 48 | static inline void queued_spin_lock_slowpath(struct qspinlock *lock, u32 val) |
| 49 | { |
| 50 | pv_queued_spin_lock_slowpath(lock, val); |
| 51 | } |
| 52 | |
| 53 | static inline void queued_spin_unlock(struct qspinlock *lock) |
| 54 | { |
| 55 | pv_queued_spin_unlock(lock); |
| 56 | } |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 57 | |
| 58 | #define vcpu_is_preempted vcpu_is_preempted |
Waiman Long | 6c62985 | 2017-02-20 13:36:03 -0500 | [diff] [blame] | 59 | static inline bool vcpu_is_preempted(long cpu) |
Peter Zijlstra | 3cded41 | 2016-11-15 16:47:06 +0100 | [diff] [blame] | 60 | { |
| 61 | return pv_vcpu_is_preempted(cpu); |
| 62 | } |
Peter Zijlstra (Intel) | f233f7f | 2015-04-24 14:56:38 -0400 | [diff] [blame] | 63 | #endif |
| 64 | |
Peter Zijlstra | a6b2778 | 2015-09-05 16:55:05 +0200 | [diff] [blame] | 65 | #ifdef CONFIG_PARAVIRT |
Peter Zijlstra | 24a376d | 2019-08-01 15:30:28 +0200 | [diff] [blame] | 66 | /* |
| 67 | * virt_spin_lock_key - enables (by default) the virt_spin_lock() hijack. |
| 68 | * |
| 69 | * Native (and PV wanting native due to vCPU pinning) should disable this key. |
| 70 | * It is done in this backwards fashion to only have a single direction change, |
| 71 | * which removes ordering between native_pv_spin_init() and HV setup. |
| 72 | */ |
Juergen Gross | 9043442 | 2017-09-06 19:36:24 +0200 | [diff] [blame] | 73 | DECLARE_STATIC_KEY_TRUE(virt_spin_lock_key); |
| 74 | |
| 75 | void native_pv_lock_init(void) __init; |
| 76 | |
Peter Zijlstra | 24a376d | 2019-08-01 15:30:28 +0200 | [diff] [blame] | 77 | /* |
| 78 | * Shortcut for the queued_spin_lock_slowpath() function that allows |
| 79 | * virt to hijack it. |
| 80 | * |
| 81 | * Returns: |
| 82 | * true - lock has been negotiated, all done; |
| 83 | * false - queued_spin_lock_slowpath() will do its thing. |
| 84 | */ |
Peter Zijlstra | 43b3f02 | 2015-09-04 17:25:23 +0200 | [diff] [blame] | 85 | #define virt_spin_lock virt_spin_lock |
Peter Zijlstra | 43b3f02 | 2015-09-04 17:25:23 +0200 | [diff] [blame] | 86 | static inline bool virt_spin_lock(struct qspinlock *lock) |
Peter Zijlstra (Intel) | 2aa79af | 2015-04-24 14:56:36 -0400 | [diff] [blame] | 87 | { |
Juergen Gross | 9043442 | 2017-09-06 19:36:24 +0200 | [diff] [blame] | 88 | if (!static_branch_likely(&virt_spin_lock_key)) |
Peter Zijlstra (Intel) | 2aa79af | 2015-04-24 14:56:36 -0400 | [diff] [blame] | 89 | return false; |
| 90 | |
Peter Zijlstra | 43b3f02 | 2015-09-04 17:25:23 +0200 | [diff] [blame] | 91 | /* |
| 92 | * On hypervisors without PARAVIRT_SPINLOCKS support we fall |
| 93 | * back to a Test-and-Set spinlock, because fair locks have |
| 94 | * horrible lock 'holder' preemption issues. |
| 95 | */ |
| 96 | |
| 97 | do { |
| 98 | while (atomic_read(&lock->val) != 0) |
| 99 | cpu_relax(); |
| 100 | } while (atomic_cmpxchg(&lock->val, 0, _Q_LOCKED_VAL) != 0); |
Peter Zijlstra (Intel) | 2aa79af | 2015-04-24 14:56:36 -0400 | [diff] [blame] | 101 | |
| 102 | return true; |
| 103 | } |
Juergen Gross | 9043442 | 2017-09-06 19:36:24 +0200 | [diff] [blame] | 104 | #else |
| 105 | static inline void native_pv_lock_init(void) |
| 106 | { |
| 107 | } |
Peter Zijlstra | a6b2778 | 2015-09-05 16:55:05 +0200 | [diff] [blame] | 108 | #endif /* CONFIG_PARAVIRT */ |
Peter Zijlstra (Intel) | 2aa79af | 2015-04-24 14:56:36 -0400 | [diff] [blame] | 109 | |
Waiman Long | d73a339 | 2015-04-24 14:56:31 -0400 | [diff] [blame] | 110 | #include <asm-generic/qspinlock.h> |
| 111 | |
| 112 | #endif /* _ASM_X86_QSPINLOCK_H */ |