blob: 0ba5f3b967f0041c5ea6445f898a944008b96c58 [file] [log] [blame]
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -07001/*
2 * Split spinlock implementation out into its own file, so it can be
3 * compiled in a FTRACE-compatible way.
4 */
5#include <linux/kernel_stat.h>
6#include <linux/spinlock.h>
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -07007#include <linux/debugfs.h>
8#include <linux/log2.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/gfp.h>
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -040010#include <linux/slab.h>
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070011
12#include <asm/paravirt.h>
13
14#include <xen/interface/xen.h>
15#include <xen/events.h>
16
17#include "xen-ops.h"
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070018#include "debugfs.h"
19
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053020enum xen_contention_stat {
21 TAKEN_SLOW,
22 TAKEN_SLOW_PICKUP,
23 TAKEN_SLOW_SPURIOUS,
24 RELEASED_SLOW,
25 RELEASED_SLOW_KICKED,
26 NR_CONTENTION_STATS
27};
28
29
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070030#ifdef CONFIG_XEN_DEBUG_FS
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053031#define HISTO_BUCKETS 30
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070032static struct xen_spinlock_stats
33{
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053034 u32 contention_stats[NR_CONTENTION_STATS];
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -070035 u32 histo_spin_blocked[HISTO_BUCKETS+1];
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -070036 u64 time_blocked;
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070037} spinlock_stats;
38
39static u8 zero_stats;
40
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070041static inline void check_zero(void)
42{
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053043 u8 ret;
44 u8 old = ACCESS_ONCE(zero_stats);
45 if (unlikely(old)) {
46 ret = cmpxchg(&zero_stats, old, 0);
47 /* This ensures only one fellow resets the stat */
48 if (ret == old)
49 memset(&spinlock_stats, 0, sizeof(spinlock_stats));
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070050 }
51}
52
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053053static inline void add_stats(enum xen_contention_stat var, u32 val)
54{
55 check_zero();
56 spinlock_stats.contention_stats[var] += val;
57}
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070058
59static inline u64 spin_time_start(void)
60{
61 return xen_clocksource_read();
62}
63
64static void __spin_time_accum(u64 delta, u32 *array)
65{
66 unsigned index = ilog2(delta);
67
68 check_zero();
69
70 if (index < HISTO_BUCKETS)
71 array[index]++;
72 else
73 array[HISTO_BUCKETS]++;
74}
75
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -070076static inline void spin_time_accum_blocked(u64 start)
77{
78 u32 delta = xen_clocksource_read() - start;
79
80 __spin_time_accum(delta, spinlock_stats.histo_spin_blocked);
81 spinlock_stats.time_blocked += delta;
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070082}
83#else /* !CONFIG_XEN_DEBUG_FS */
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053084static inline void add_stats(enum xen_contention_stat var, u32 val)
85{
86}
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070087
88static inline u64 spin_time_start(void)
89{
90 return 0;
91}
92
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -070093static inline void spin_time_accum_blocked(u64 start)
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070094{
95}
96#endif /* CONFIG_XEN_DEBUG_FS */
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070097
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +053098struct xen_lock_waiting {
99 struct arch_spinlock *lock;
100 __ticket_t want;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700101};
102
Jeremy Fitzhardinge545ac132013-08-09 19:51:49 +0530103static DEFINE_PER_CPU(int, lock_kicker_irq) = -1;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400104static DEFINE_PER_CPU(char *, irq_name);
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530105static DEFINE_PER_CPU(struct xen_lock_waiting, lock_waiting);
106static cpumask_t waiting_cpus;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700107
Konrad Rzeszutek Wilkc3b7cb12013-09-09 13:08:49 -0400108static bool xen_pvspin = true;
Andi Kleendd41f812013-10-22 09:07:58 -0700109__visible void xen_lock_spinning(struct arch_spinlock *lock, __ticket_t want)
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700110{
Christoph Lameter780f36d2010-12-06 11:16:29 -0600111 int irq = __this_cpu_read(lock_kicker_irq);
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530112 struct xen_lock_waiting *w = &__get_cpu_var(lock_waiting);
113 int cpu = smp_processor_id();
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -0700114 u64 start;
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530115 unsigned long flags;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700116
117 /* If kicker interrupts not initialized yet, just spin */
118 if (irq == -1)
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530119 return;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700120
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -0700121 start = spin_time_start();
122
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530123 /*
124 * Make sure an interrupt handler can't upset things in a
125 * partially setup state.
126 */
127 local_irq_save(flags);
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530128 /*
129 * We don't really care if we're overwriting some other
130 * (lock,want) pair, as that would mean that we're currently
131 * in an interrupt context, and the outer context had
132 * interrupts enabled. That has already kicked the VCPU out
133 * of xen_poll_irq(), so it will just return spuriously and
134 * retry with newly setup (lock,want).
135 *
136 * The ordering protocol on this is that the "lock" pointer
137 * may only be set non-NULL if the "want" ticket is correct.
138 * If we're updating "want", we must first clear "lock".
139 */
140 w->lock = NULL;
141 smp_wmb();
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530142 w->want = want;
143 smp_wmb();
144 w->lock = lock;
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700145
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530146 /* This uses set_bit, which atomic and therefore a barrier */
147 cpumask_set_cpu(cpu, &waiting_cpus);
148 add_stats(TAKEN_SLOW, 1);
Jeremy Fitzhardinge4d576b52009-09-09 12:33:51 -0700149
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530150 /* clear pending */
151 xen_clear_irq_pending(irq);
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700152
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530153 /* Only check lock once pending cleared */
154 barrier();
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700155
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530156 /*
157 * Mark entry to slowpath before doing the pickup test to make
158 * sure we don't deadlock with an unlocker.
159 */
Jeremy Fitzhardinge96f853e2013-08-09 19:51:58 +0530160 __ticket_enter_slowpath(lock);
161
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530162 /*
163 * check again make sure it didn't become free while
164 * we weren't looking
165 */
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530166 if (ACCESS_ONCE(lock->tickets.head) == want) {
167 add_stats(TAKEN_SLOW_PICKUP, 1);
168 goto out;
169 }
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530170
171 /* Allow interrupts while blocked */
172 local_irq_restore(flags);
173
174 /*
175 * If an interrupt happens here, it will leave the wakeup irq
176 * pending, which will cause xen_poll_irq() to return
177 * immediately.
178 */
179
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530180 /* Block until irq becomes pending (or perhaps a spurious wakeup) */
181 xen_poll_irq(irq);
182 add_stats(TAKEN_SLOW_SPURIOUS, !xen_test_irq_pending(irq));
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530183
184 local_irq_save(flags);
185
Thomas Gleixner770144e2014-02-23 21:40:16 +0000186 kstat_incr_irq_this_cpu(irq);
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700187out:
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530188 cpumask_clear_cpu(cpu, &waiting_cpus);
189 w->lock = NULL;
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530190
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530191 local_irq_restore(flags);
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530192
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -0700193 spin_time_accum_blocked(start);
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700194}
Jeremy Fitzhardinge354714d2013-08-09 19:51:55 +0530195PV_CALLEE_SAVE_REGS_THUNK(xen_lock_spinning);
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700196
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530197static void xen_unlock_kick(struct arch_spinlock *lock, __ticket_t next)
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700198{
199 int cpu;
200
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530201 add_stats(RELEASED_SLOW, 1);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700202
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530203 for_each_cpu(cpu, &waiting_cpus) {
204 const struct xen_lock_waiting *w = &per_cpu(lock_waiting, cpu);
205
Jeremy Fitzhardinge1ed7bf52013-08-09 19:51:59 +0530206 /* Make sure we read lock before want */
207 if (ACCESS_ONCE(w->lock) == lock &&
208 ACCESS_ONCE(w->want) == next) {
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530209 add_stats(RELEASED_SLOW_KICKED, 1);
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700210 xen_send_IPI_one(cpu, XEN_SPIN_UNLOCK_VECTOR);
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530211 break;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700212 }
213 }
214}
215
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700216static irqreturn_t dummy_handler(int irq, void *dev_id)
217{
218 BUG();
219 return IRQ_HANDLED;
220}
221
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400222void xen_init_lock_cpu(int cpu)
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700223{
224 int irq;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400225 char *name;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700226
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -0400227 if (!xen_pvspin)
228 return;
229
Konrad Rzeszutek Wilkcb91f8f2013-05-06 08:33:15 -0400230 WARN(per_cpu(lock_kicker_irq, cpu) >= 0, "spinlock on CPU%d exists on IRQ%d!\n",
Konrad Rzeszutek Wilkcb9c6f12013-04-16 14:33:20 -0400231 cpu, per_cpu(lock_kicker_irq, cpu));
232
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700233 name = kasprintf(GFP_KERNEL, "spinlock%d", cpu);
234 irq = bind_ipi_to_irqhandler(XEN_SPIN_UNLOCK_VECTOR,
235 cpu,
236 dummy_handler,
Michael Opdenacker9d71cee2013-09-07 08:46:49 +0200237 IRQF_PERCPU|IRQF_NOBALANCING,
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700238 name,
239 NULL);
240
241 if (irq >= 0) {
242 disable_irq(irq); /* make sure it's never delivered */
243 per_cpu(lock_kicker_irq, cpu) = irq;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400244 per_cpu(irq_name, cpu) = name;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700245 }
246
247 printk("cpu %d spinlock event irq %d\n", cpu, irq);
248}
249
Alex Nixond68d82a2008-08-22 11:52:15 +0100250void xen_uninit_lock_cpu(int cpu)
251{
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -0400252 if (!xen_pvspin)
253 return;
254
Alex Nixond68d82a2008-08-22 11:52:15 +0100255 unbind_from_irqhandler(per_cpu(lock_kicker_irq, cpu), NULL);
Konrad Rzeszutek Wilkcb9c6f12013-04-16 14:33:20 -0400256 per_cpu(lock_kicker_irq, cpu) = -1;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400257 kfree(per_cpu(irq_name, cpu));
258 per_cpu(irq_name, cpu) = NULL;
Alex Nixond68d82a2008-08-22 11:52:15 +0100259}
260
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530261
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400262/*
263 * Our init of PV spinlocks is split in two init functions due to us
264 * using paravirt patching and jump labels patching and having to do
265 * all of this before SMP code is invoked.
266 *
267 * The paravirt patching needs to be done _before_ the alternative asm code
268 * is started, otherwise we would not patch the core kernel code.
269 */
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700270void __init xen_init_spinlocks(void)
271{
Konrad Rzeszutek Wilk70dd4992013-04-16 14:34:45 -0400272
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530273 if (!xen_pvspin) {
274 printk(KERN_DEBUG "xen: PV spinlocks disabled\n");
275 return;
276 }
Konrad Rzeszutek Wilke0fc17a2014-04-04 14:48:04 -0400277 printk(KERN_DEBUG "xen: PV spinlocks enabled\n");
Jeremy Fitzhardinge354714d2013-08-09 19:51:55 +0530278 pv_lock_ops.lock_spinning = PV_CALLEE_SAVE(xen_lock_spinning);
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530279 pv_lock_ops.unlock_kick = xen_unlock_kick;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700280}
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700281
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400282/*
283 * While the jump_label init code needs to happend _after_ the jump labels are
284 * enabled and before SMP is started. Hence we use pre-SMP initcall level
285 * init. We cannot do it in xen_init_spinlocks as that is done before
286 * jump labels are activated.
287 */
288static __init int xen_init_spinlocks_jump(void)
289{
290 if (!xen_pvspin)
291 return 0;
292
Konrad Rzeszutek Wilke0fc17a2014-04-04 14:48:04 -0400293 if (!xen_domain())
294 return 0;
295
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400296 static_key_slow_inc(&paravirt_ticketlocks_enabled);
297 return 0;
298}
299early_initcall(xen_init_spinlocks_jump);
300
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530301static __init int xen_parse_nopvspin(char *arg)
302{
303 xen_pvspin = false;
304 return 0;
305}
306early_param("xen_nopvspin", xen_parse_nopvspin);
307
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700308#ifdef CONFIG_XEN_DEBUG_FS
309
310static struct dentry *d_spin_debug;
311
312static int __init xen_spinlock_debugfs(void)
313{
314 struct dentry *d_xen = xen_init_debugfs();
315
316 if (d_xen == NULL)
317 return -ENOMEM;
318
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -0400319 if (!xen_pvspin)
320 return 0;
321
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700322 d_spin_debug = debugfs_create_dir("spinlocks", d_xen);
323
324 debugfs_create_u8("zero_stats", 0644, d_spin_debug, &zero_stats);
325
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700326 debugfs_create_u32("taken_slow", 0444, d_spin_debug,
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530327 &spinlock_stats.contention_stats[TAKEN_SLOW]);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700328 debugfs_create_u32("taken_slow_pickup", 0444, d_spin_debug,
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530329 &spinlock_stats.contention_stats[TAKEN_SLOW_PICKUP]);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700330 debugfs_create_u32("taken_slow_spurious", 0444, d_spin_debug,
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530331 &spinlock_stats.contention_stats[TAKEN_SLOW_SPURIOUS]);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700332
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700333 debugfs_create_u32("released_slow", 0444, d_spin_debug,
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530334 &spinlock_stats.contention_stats[RELEASED_SLOW]);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700335 debugfs_create_u32("released_slow_kicked", 0444, d_spin_debug,
Jeremy Fitzhardinge80bd58f2013-08-09 19:51:53 +0530336 &spinlock_stats.contention_stats[RELEASED_SLOW_KICKED]);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700337
Jeremy Fitzhardingef8eca412008-08-20 17:02:21 -0700338 debugfs_create_u64("time_blocked", 0444, d_spin_debug,
339 &spinlock_stats.time_blocked);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700340
Srivatsa Vaddagiri9fe2a702012-03-23 13:36:28 +0530341 debugfs_create_u32_array("histo_blocked", 0444, d_spin_debug,
342 spinlock_stats.histo_spin_blocked, HISTO_BUCKETS + 1);
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700343
344 return 0;
345}
346fs_initcall(xen_spinlock_debugfs);
347
348#endif /* CONFIG_XEN_DEBUG_FS */