blob: be0a05913b9105b62122afbbbef99c6146b2dbf6 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_SPINLOCK_H
2#define _ASM_X86_SPINLOCK_H
Glauber de Oliveira Costa2fed0c52008-01-30 13:30:33 +01003
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +05304#include <linux/jump_label.h>
Arun Sharma600634972011-07-26 16:09:06 -07005#include <linux/atomic.h>
Thomas Gleixner1075cf72008-01-30 13:30:34 +01006#include <asm/page.h>
7#include <asm/processor.h>
Nick Piggin314cdbe2008-01-30 13:31:21 +01008#include <linux/compiler.h>
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -07009#include <asm/paravirt.h>
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +053010#include <asm/bitops.h>
11
Thomas Gleixner1075cf72008-01-30 13:30:34 +010012/*
13 * Your basic SMP spinlocks, allowing only a single CPU anywhere
14 *
15 * Simple spin lock operations. There are two variants, one clears IRQ's
16 * on the local processor, one does not.
17 *
Richard Weinberger83be4ff2012-08-14 14:47:37 -070018 * These are fair FIFO ticket locks, which support up to 2^16 CPUs.
Thomas Gleixner1075cf72008-01-30 13:30:34 +010019 *
20 * (the type definitions are in asm/spinlock_types.h)
21 */
22
Thomas Gleixner96a388d2007-10-11 11:20:03 +020023#ifdef CONFIG_X86_32
Thomas Gleixner1075cf72008-01-30 13:30:34 +010024# define LOCK_PTR_REG "a"
Thomas Gleixner96a388d2007-10-11 11:20:03 +020025#else
Thomas Gleixner1075cf72008-01-30 13:30:34 +010026# define LOCK_PTR_REG "D"
Thomas Gleixner96a388d2007-10-11 11:20:03 +020027#endif
Glauber de Oliveira Costa2fed0c52008-01-30 13:30:33 +010028
Dave Jones09df7c42014-03-10 19:32:22 -040029#if defined(CONFIG_X86_32) && (defined(CONFIG_X86_PPRO_FENCE))
Nick Piggin3a556b22008-01-30 13:33:00 +010030/*
Dave Jones09df7c42014-03-10 19:32:22 -040031 * On PPro SMP, we use a locked operation to unlock
Nick Piggin3a556b22008-01-30 13:33:00 +010032 * (PPro errata 66, 92)
33 */
34# define UNLOCK_LOCK_PREFIX LOCK_PREFIX
35#else
36# define UNLOCK_LOCK_PREFIX
Nick Piggin314cdbe2008-01-30 13:31:21 +010037#endif
38
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +053039/* How long a lock should spin before we consider blocking */
40#define SPIN_THRESHOLD (1 << 15)
41
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +053042extern struct static_key paravirt_ticketlocks_enabled;
43static __always_inline bool static_key_false(struct static_key *key);
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +053044
Ingo Molnar62c7a1e2015-05-11 09:47:23 +020045#ifdef CONFIG_QUEUED_SPINLOCKS
Waiman Longd73a3392015-04-24 14:56:31 -040046#include <asm/qspinlock.h>
47#else
48
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +053049#ifdef CONFIG_PARAVIRT_SPINLOCKS
50
51static inline void __ticket_enter_slowpath(arch_spinlock_t *lock)
52{
Raghavendra K Td6abfdb2015-02-06 16:44:11 +053053 set_bit(0, (volatile unsigned long *)&lock->tickets.head);
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +053054}
55
56#else /* !CONFIG_PARAVIRT_SPINLOCKS */
57static __always_inline void __ticket_lock_spinning(arch_spinlock_t *lock,
58 __ticket_t ticket)
59{
60}
61static inline void __ticket_unlock_kick(arch_spinlock_t *lock,
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +053062 __ticket_t ticket)
63{
64}
65
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +053066#endif /* CONFIG_PARAVIRT_SPINLOCKS */
Raghavendra K Td6abfdb2015-02-06 16:44:11 +053067static inline int __tickets_equal(__ticket_t one, __ticket_t two)
68{
69 return !((one ^ two) & ~TICKET_SLOWPATH_FLAG);
70}
71
72static inline void __ticket_check_and_clear_slowpath(arch_spinlock_t *lock,
73 __ticket_t head)
74{
75 if (head & TICKET_SLOWPATH_FLAG) {
76 arch_spinlock_t old, new;
77
78 old.tickets.head = head;
79 new.tickets.head = head & ~TICKET_SLOWPATH_FLAG;
80 old.tickets.tail = new.tickets.head + TICKET_LOCK_INC;
81 new.tickets.tail = old.tickets.tail;
82
83 /* try to clear slowpath flag when there are no contenders */
84 cmpxchg(&lock->head_tail, old.head_tail, new.head_tail);
85 }
86}
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +053087
Linus Torvaldsbc08b442013-09-02 12:12:15 -070088static __always_inline int arch_spin_value_unlocked(arch_spinlock_t lock)
89{
Raghavendra K Td6abfdb2015-02-06 16:44:11 +053090 return __tickets_equal(lock.tickets.head, lock.tickets.tail);
Linus Torvaldsbc08b442013-09-02 12:12:15 -070091}
92
Nick Piggin3a556b22008-01-30 13:33:00 +010093/*
94 * Ticket locks are conceptually two parts, one indicating the current head of
95 * the queue, and the other indicating the current tail. The lock is acquired
96 * by atomically noting the tail and incrementing it by one (thus adding
97 * ourself to the queue and noting our position), then waiting until the head
98 * becomes equal to the the initial value of the tail.
99 *
100 * We use an xadd covering *both* parts of the lock, to increment the tail and
101 * also load the position of the head, which takes care of memory ordering
102 * issues and should be optimal for the uncontended case. Note the tail must be
103 * in the high part, because a wide xadd increment of the low part would carry
104 * up and contaminate the high part.
Nick Piggin3a556b22008-01-30 13:33:00 +0100105 */
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530106static __always_inline void arch_spin_lock(arch_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100107{
Jeremy Fitzhardinge4a1ed4c2013-08-09 19:51:56 +0530108 register struct __raw_tickets inc = { .tail = TICKET_LOCK_INC };
Nick Piggin314cdbe2008-01-30 13:31:21 +0100109
Jeremy Fitzhardinge29944882010-07-13 14:07:45 -0700110 inc = xadd(&lock->tickets, inc);
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530111 if (likely(inc.head == inc.tail))
112 goto out;
Jeremy Fitzhardingec576a3e2010-07-03 01:06:04 +0100113
114 for (;;) {
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +0530115 unsigned count = SPIN_THRESHOLD;
116
117 do {
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530118 inc.head = READ_ONCE(lock->tickets.head);
119 if (__tickets_equal(inc.head, inc.tail))
120 goto clear_slowpath;
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +0530121 cpu_relax();
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +0530122 } while (--count);
123 __ticket_lock_spinning(lock, inc.tail);
Jeremy Fitzhardingec576a3e2010-07-03 01:06:04 +0100124 }
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530125clear_slowpath:
126 __ticket_check_and_clear_slowpath(lock, inc.head);
127out:
128 barrier(); /* make sure nothing creeps before the lock is taken */
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100129}
130
Jeremy Fitzhardingeb798df02013-08-09 19:51:51 +0530131static __always_inline int arch_spin_trylock(arch_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100132{
Jeremy Fitzhardinge229855d2010-07-13 15:14:26 -0700133 arch_spinlock_t old, new;
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100134
Christian Borntraeger4f9d1382014-11-24 10:53:46 +0100135 old.tickets = READ_ONCE(lock->tickets);
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530136 if (!__tickets_equal(old.tickets.head, old.tickets.tail))
Jeremy Fitzhardinge229855d2010-07-13 15:14:26 -0700137 return 0;
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100138
Jeremy Fitzhardinge4a1ed4c2013-08-09 19:51:56 +0530139 new.head_tail = old.head_tail + (TICKET_LOCK_INC << TICKET_SHIFT);
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530140 new.head_tail &= ~TICKET_SLOWPATH_FLAG;
Jeremy Fitzhardinge229855d2010-07-13 15:14:26 -0700141
142 /* cmpxchg is a full barrier, so nothing can move before it */
143 return cmpxchg(&lock->head_tail, old.head_tail, new.head_tail) == old.head_tail;
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100144}
145
Jeremy Fitzhardingeb798df02013-08-09 19:51:51 +0530146static __always_inline void arch_spin_unlock(arch_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100147{
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530148 if (TICKET_SLOWPATH_FLAG &&
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530149 static_key_false(&paravirt_ticketlocks_enabled)) {
150 __ticket_t head;
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +0530151
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530152 BUILD_BUG_ON(((__ticket_t)NR_CPUS) != NR_CPUS);
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530153
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530154 head = xadd(&lock->tickets.head, TICKET_LOCK_INC);
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530155
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530156 if (unlikely(head & TICKET_SLOWPATH_FLAG)) {
157 head &= ~TICKET_SLOWPATH_FLAG;
158 __ticket_unlock_kick(lock, (head + TICKET_LOCK_INC));
159 }
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530160 } else
161 __add(&lock->tickets.head, TICKET_LOCK_INC, UNLOCK_LOCK_PREFIX);
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100162}
163
Jeremy Fitzhardingeb798df02013-08-09 19:51:51 +0530164static inline int arch_spin_is_locked(arch_spinlock_t *lock)
Jan Beulich08f5fcb2008-09-05 13:26:39 +0100165{
Christian Borntraeger4f9d1382014-11-24 10:53:46 +0100166 struct __raw_tickets tmp = READ_ONCE(lock->tickets);
Jan Beulich08f5fcb2008-09-05 13:26:39 +0100167
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530168 return !__tickets_equal(tmp.tail, tmp.head);
Jan Beulich08f5fcb2008-09-05 13:26:39 +0100169}
170
Jeremy Fitzhardingeb798df02013-08-09 19:51:51 +0530171static inline int arch_spin_is_contended(arch_spinlock_t *lock)
Jan Beulich08f5fcb2008-09-05 13:26:39 +0100172{
Christian Borntraeger4f9d1382014-11-24 10:53:46 +0100173 struct __raw_tickets tmp = READ_ONCE(lock->tickets);
Jan Beulich08f5fcb2008-09-05 13:26:39 +0100174
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530175 tmp.head &= ~TICKET_SLOWPATH_FLAG;
Tahsin Erdogane8a4a262015-05-04 21:15:31 -0700176 return (__ticket_t)(tmp.tail - tmp.head) > TICKET_LOCK_INC;
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -0700177}
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100178#define arch_spin_is_contended arch_spin_is_contended
Jeremy Fitzhardinge74d4aff2008-07-07 12:07:50 -0700179
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100180static __always_inline void arch_spin_lock_flags(arch_spinlock_t *lock,
Jeremy Fitzhardinge63d3a752008-08-19 13:19:36 -0700181 unsigned long flags)
182{
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100183 arch_spin_lock(lock);
Jeremy Fitzhardinge63d3a752008-08-19 13:19:36 -0700184}
185
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100186static inline void arch_spin_unlock_wait(arch_spinlock_t *lock)
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100187{
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530188 __ticket_t head = READ_ONCE(lock->tickets.head);
Oleg Nesterov78bff1c2014-12-01 22:34:17 +0100189
190 for (;;) {
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530191 struct __raw_tickets tmp = READ_ONCE(lock->tickets);
Oleg Nesterov78bff1c2014-12-01 22:34:17 +0100192 /*
193 * We need to check "unlocked" in a loop, tmp.head == head
194 * can be false positive because of overflow.
195 */
Raghavendra K Td6abfdb2015-02-06 16:44:11 +0530196 if (__tickets_equal(tmp.head, tmp.tail) ||
197 !__tickets_equal(tmp.head, head))
Oleg Nesterov78bff1c2014-12-01 22:34:17 +0100198 break;
199
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100200 cpu_relax();
Oleg Nesterov78bff1c2014-12-01 22:34:17 +0100201 }
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100202}
Ingo Molnar62c7a1e2015-05-11 09:47:23 +0200203#endif /* CONFIG_QUEUED_SPINLOCKS */
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100204
205/*
206 * Read-write spinlocks, allowing multiple readers
207 * but only one writer.
208 *
209 * NOTE! it is quite common to have readers in interrupts
210 * but no interrupt writers. For those circumstances we
211 * can "mix" irq-safe locks - any writer needs to get a
212 * irq-safe write-lock, but readers can get non-irqsafe
213 * read-locks.
214 *
Waiman Long2ff810a2014-08-14 13:27:30 -0400215 * On x86, we implement read-write locks using the generic qrwlock with
216 * x86 specific optimization.
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100217 */
218
Waiman Longbd01ec12014-02-03 13:18:57 +0100219#include <asm/qrwlock.h>
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100220
Thomas Gleixnere5931942009-12-03 20:08:46 +0100221#define arch_read_lock_flags(lock, flags) arch_read_lock(lock)
222#define arch_write_lock_flags(lock, flags) arch_write_lock(lock)
Robin Holtf5f7eac2009-04-02 16:59:46 -0700223
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100224#define arch_spin_relax(lock) cpu_relax()
225#define arch_read_relax(lock) cpu_relax()
226#define arch_write_relax(lock) cpu_relax()
Thomas Gleixner1075cf72008-01-30 13:30:34 +0100227
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700228#endif /* _ASM_X86_SPINLOCK_H */