blob: 3d6e0064cbfcfceab7ae8569c8d3a57058c03dbb [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
David Vrabele95e6f12015-04-24 14:56:40 -040020static DEFINE_PER_CPU(int, lock_kicker_irq) = -1;
21static DEFINE_PER_CPU(char *, irq_name);
22static bool xen_pvspin = true;
23
David Vrabele95e6f12015-04-24 14:56:40 -040024#include <asm/qspinlock.h>
25
26static void xen_qlock_kick(int cpu)
27{
Ross Lagerwall707e59b2016-04-22 13:05:31 +010028 int irq = per_cpu(lock_kicker_irq, cpu);
29
30 /* Don't kick if the target's kicker interrupt is not initialized. */
31 if (irq == -1)
32 return;
33
David Vrabele95e6f12015-04-24 14:56:40 -040034 xen_send_IPI_one(cpu, XEN_SPIN_UNLOCK_VECTOR);
35}
36
37/*
38 * Halt the current CPU & release it back to the host
39 */
40static void xen_qlock_wait(u8 *byte, u8 val)
41{
42 int irq = __this_cpu_read(lock_kicker_irq);
43
44 /* If kicker interrupts not initialized yet, just spin */
45 if (irq == -1)
46 return;
47
48 /* clear pending */
49 xen_clear_irq_pending(irq);
50 barrier();
51
52 /*
53 * We check the byte value after clearing pending IRQ to make sure
54 * that we won't miss a wakeup event because of the clearing.
55 *
56 * The sync_clear_bit() call in xen_clear_irq_pending() is atomic.
57 * So it is effectively a memory barrier for x86.
58 */
59 if (READ_ONCE(*byte) != val)
60 return;
61
62 /*
63 * If an interrupt happens here, it will leave the wakeup irq
64 * pending, which will cause xen_poll_irq() to return
65 * immediately.
66 */
67
68 /* Block until irq becomes pending (or perhaps a spurious wakeup) */
69 xen_poll_irq(irq);
70}
71
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070072static irqreturn_t dummy_handler(int irq, void *dev_id)
73{
74 BUG();
75 return IRQ_HANDLED;
76}
77
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040078void xen_init_lock_cpu(int cpu)
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070079{
80 int irq;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -040081 char *name;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070082
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -040083 if (!xen_pvspin)
84 return;
85
Konrad Rzeszutek Wilkcb91f8f2013-05-06 08:33:15 -040086 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 -040087 cpu, per_cpu(lock_kicker_irq, cpu));
88
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070089 name = kasprintf(GFP_KERNEL, "spinlock%d", cpu);
90 irq = bind_ipi_to_irqhandler(XEN_SPIN_UNLOCK_VECTOR,
91 cpu,
92 dummy_handler,
Michael Opdenacker9d71cee2013-09-07 08:46:49 +020093 IRQF_PERCPU|IRQF_NOBALANCING,
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070094 name,
95 NULL);
96
97 if (irq >= 0) {
98 disable_irq(irq); /* make sure it's never delivered */
99 per_cpu(lock_kicker_irq, cpu) = irq;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400100 per_cpu(irq_name, cpu) = name;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700101 }
102
103 printk("cpu %d spinlock event irq %d\n", cpu, irq);
104}
105
Alex Nixond68d82a2008-08-22 11:52:15 +0100106void xen_uninit_lock_cpu(int cpu)
107{
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -0400108 if (!xen_pvspin)
109 return;
110
Alex Nixond68d82a2008-08-22 11:52:15 +0100111 unbind_from_irqhandler(per_cpu(lock_kicker_irq, cpu), NULL);
Konrad Rzeszutek Wilkcb9c6f12013-04-16 14:33:20 -0400112 per_cpu(lock_kicker_irq, cpu) = -1;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400113 kfree(per_cpu(irq_name, cpu));
114 per_cpu(irq_name, cpu) = NULL;
Alex Nixond68d82a2008-08-22 11:52:15 +0100115}
116
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530117
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400118/*
119 * Our init of PV spinlocks is split in two init functions due to us
120 * using paravirt patching and jump labels patching and having to do
121 * all of this before SMP code is invoked.
122 *
123 * The paravirt patching needs to be done _before_ the alternative asm code
124 * is started, otherwise we would not patch the core kernel code.
125 */
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700126void __init xen_init_spinlocks(void)
127{
Konrad Rzeszutek Wilk70dd4992013-04-16 14:34:45 -0400128
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530129 if (!xen_pvspin) {
130 printk(KERN_DEBUG "xen: PV spinlocks disabled\n");
131 return;
132 }
Konrad Rzeszutek Wilke0fc17a2014-04-04 14:48:04 -0400133 printk(KERN_DEBUG "xen: PV spinlocks enabled\n");
Peter Zijlstracfd89832016-05-18 20:43:02 +0200134
David Vrabele95e6f12015-04-24 14:56:40 -0400135 __pv_init_lock_hash();
136 pv_lock_ops.queued_spin_lock_slowpath = __pv_queued_spin_lock_slowpath;
137 pv_lock_ops.queued_spin_unlock = PV_CALLEE_SAVE(__pv_queued_spin_unlock);
138 pv_lock_ops.wait = xen_qlock_wait;
139 pv_lock_ops.kick = xen_qlock_kick;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700140}
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700141
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400142/*
143 * While the jump_label init code needs to happend _after_ the jump labels are
144 * enabled and before SMP is started. Hence we use pre-SMP initcall level
145 * init. We cannot do it in xen_init_spinlocks as that is done before
146 * jump labels are activated.
147 */
148static __init int xen_init_spinlocks_jump(void)
149{
150 if (!xen_pvspin)
151 return 0;
152
Konrad Rzeszutek Wilke0fc17a2014-04-04 14:48:04 -0400153 if (!xen_domain())
154 return 0;
155
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400156 static_key_slow_inc(&paravirt_ticketlocks_enabled);
157 return 0;
158}
159early_initcall(xen_init_spinlocks_jump);
160
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530161static __init int xen_parse_nopvspin(char *arg)
162{
163 xen_pvspin = false;
164 return 0;
165}
166early_param("xen_nopvspin", xen_parse_nopvspin);
167