Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Queued spinlock |
| 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 as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P. |
Waiman Long | 64d816c | 2015-11-09 19:09:21 -0500 | [diff] [blame] | 15 | * (C) Copyright 2015 Hewlett-Packard Enterprise Development LP |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 16 | * |
Waiman Long | 64d816c | 2015-11-09 19:09:21 -0500 | [diff] [blame] | 17 | * Authors: Waiman Long <waiman.long@hpe.com> |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 18 | */ |
| 19 | #ifndef __ASM_GENERIC_QSPINLOCK_H |
| 20 | #define __ASM_GENERIC_QSPINLOCK_H |
| 21 | |
| 22 | #include <asm-generic/qspinlock_types.h> |
| 23 | |
| 24 | /** |
| 25 | * queued_spin_is_locked - is the spinlock locked? |
| 26 | * @lock: Pointer to queued spinlock structure |
| 27 | * Return: 1 if it is locked, 0 otherwise |
| 28 | */ |
Peter Zijlstra | 2c61002 | 2016-06-08 10:19:51 +0200 | [diff] [blame] | 29 | #ifndef queued_spin_is_locked |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 30 | static __always_inline int queued_spin_is_locked(struct qspinlock *lock) |
| 31 | { |
Peter Zijlstra | 54cf809 | 2016-05-20 18:04:36 +0200 | [diff] [blame] | 32 | /* |
Peter Zijlstra | 2c61002 | 2016-06-08 10:19:51 +0200 | [diff] [blame] | 33 | * Any !0 state indicates it is locked, even if _Q_LOCKED_VAL |
| 34 | * isn't immediately observable. |
Peter Zijlstra | 54cf809 | 2016-05-20 18:04:36 +0200 | [diff] [blame] | 35 | */ |
Peter Zijlstra | 2c61002 | 2016-06-08 10:19:51 +0200 | [diff] [blame] | 36 | return atomic_read(&lock->val); |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 37 | } |
Peter Zijlstra | 2c61002 | 2016-06-08 10:19:51 +0200 | [diff] [blame] | 38 | #endif |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 39 | |
| 40 | /** |
| 41 | * queued_spin_value_unlocked - is the spinlock structure unlocked? |
| 42 | * @lock: queued spinlock structure |
| 43 | * Return: 1 if it is unlocked, 0 otherwise |
| 44 | * |
| 45 | * N.B. Whenever there are tasks waiting for the lock, it is considered |
| 46 | * locked wrt the lockref code to avoid lock stealing by the lockref |
| 47 | * code and change things underneath the lock. This also allows some |
| 48 | * optimizations to be applied without conflict with lockref. |
| 49 | */ |
| 50 | static __always_inline int queued_spin_value_unlocked(struct qspinlock lock) |
| 51 | { |
| 52 | return !atomic_read(&lock.val); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * queued_spin_is_contended - check if the lock is contended |
| 57 | * @lock : Pointer to queued spinlock structure |
| 58 | * Return: 1 if lock contended, 0 otherwise |
| 59 | */ |
| 60 | static __always_inline int queued_spin_is_contended(struct qspinlock *lock) |
| 61 | { |
| 62 | return atomic_read(&lock->val) & ~_Q_LOCKED_MASK; |
| 63 | } |
| 64 | /** |
| 65 | * queued_spin_trylock - try to acquire the queued spinlock |
| 66 | * @lock : Pointer to queued spinlock structure |
| 67 | * Return: 1 if lock acquired, 0 if failed |
| 68 | */ |
| 69 | static __always_inline int queued_spin_trylock(struct qspinlock *lock) |
| 70 | { |
| 71 | if (!atomic_read(&lock->val) && |
Waiman Long | 64d816c | 2015-11-09 19:09:21 -0500 | [diff] [blame] | 72 | (atomic_cmpxchg_acquire(&lock->val, 0, _Q_LOCKED_VAL) == 0)) |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 73 | return 1; |
| 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | extern void queued_spin_lock_slowpath(struct qspinlock *lock, u32 val); |
| 78 | |
| 79 | /** |
| 80 | * queued_spin_lock - acquire a queued spinlock |
| 81 | * @lock: Pointer to queued spinlock structure |
| 82 | */ |
| 83 | static __always_inline void queued_spin_lock(struct qspinlock *lock) |
| 84 | { |
| 85 | u32 val; |
| 86 | |
Waiman Long | 64d816c | 2015-11-09 19:09:21 -0500 | [diff] [blame] | 87 | val = atomic_cmpxchg_acquire(&lock->val, 0, _Q_LOCKED_VAL); |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 88 | if (likely(val == 0)) |
| 89 | return; |
| 90 | queued_spin_lock_slowpath(lock, val); |
| 91 | } |
| 92 | |
| 93 | #ifndef queued_spin_unlock |
| 94 | /** |
| 95 | * queued_spin_unlock - release a queued spinlock |
| 96 | * @lock : Pointer to queued spinlock structure |
| 97 | */ |
| 98 | static __always_inline void queued_spin_unlock(struct qspinlock *lock) |
| 99 | { |
| 100 | /* |
Pan Xinhui | ca50e42 | 2016-06-03 16:38:14 +0800 | [diff] [blame] | 101 | * unlock() needs release semantics: |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 102 | */ |
Pan Xinhui | ca50e42 | 2016-06-03 16:38:14 +0800 | [diff] [blame] | 103 | (void)atomic_sub_return_release(_Q_LOCKED_VAL, &lock->val); |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 104 | } |
| 105 | #endif |
| 106 | |
Peter Zijlstra | 43b3f02 | 2015-09-04 17:25:23 +0200 | [diff] [blame] | 107 | #ifndef virt_spin_lock |
| 108 | static __always_inline bool virt_spin_lock(struct qspinlock *lock) |
Peter Zijlstra (Intel) | 2aa79af | 2015-04-24 14:56:36 -0400 | [diff] [blame] | 109 | { |
| 110 | return false; |
| 111 | } |
| 112 | #endif |
| 113 | |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 114 | /* |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 115 | * Remapping spinlock architecture specific functions to the corresponding |
| 116 | * queued spinlock functions. |
| 117 | */ |
| 118 | #define arch_spin_is_locked(l) queued_spin_is_locked(l) |
| 119 | #define arch_spin_is_contended(l) queued_spin_is_contended(l) |
| 120 | #define arch_spin_value_unlocked(l) queued_spin_value_unlocked(l) |
| 121 | #define arch_spin_lock(l) queued_spin_lock(l) |
| 122 | #define arch_spin_trylock(l) queued_spin_trylock(l) |
| 123 | #define arch_spin_unlock(l) queued_spin_unlock(l) |
Waiman Long | a33fda3 | 2015-04-24 14:56:30 -0400 | [diff] [blame] | 124 | |
| 125 | #endif /* __ASM_GENERIC_QSPINLOCK_H */ |