blob: 8d2c6f071dccfa16dcec35acef2cb15bdac841d5 [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>
Juergen Gross782512e2018-11-08 08:35:06 +010011#include <linux/atomic.h>
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070012
13#include <asm/paravirt.h>
14
15#include <xen/interface/xen.h>
16#include <xen/events.h>
17
18#include "xen-ops.h"
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -070019#include "debugfs.h"
20
David Vrabele95e6f12015-04-24 14:56:40 -040021static DEFINE_PER_CPU(int, lock_kicker_irq) = -1;
22static DEFINE_PER_CPU(char *, irq_name);
Juergen Gross782512e2018-11-08 08:35:06 +010023static DEFINE_PER_CPU(atomic_t, xen_qlock_wait_nest);
David Vrabele95e6f12015-04-24 14:56:40 -040024static bool xen_pvspin = true;
25
David Vrabele95e6f12015-04-24 14:56:40 -040026#include <asm/qspinlock.h>
27
28static void xen_qlock_kick(int cpu)
29{
Ross Lagerwall707e59b2016-04-22 13:05:31 +010030 int irq = per_cpu(lock_kicker_irq, cpu);
31
32 /* Don't kick if the target's kicker interrupt is not initialized. */
33 if (irq == -1)
34 return;
35
David Vrabele95e6f12015-04-24 14:56:40 -040036 xen_send_IPI_one(cpu, XEN_SPIN_UNLOCK_VECTOR);
37}
38
39/*
40 * Halt the current CPU & release it back to the host
41 */
42static void xen_qlock_wait(u8 *byte, u8 val)
43{
44 int irq = __this_cpu_read(lock_kicker_irq);
Juergen Gross782512e2018-11-08 08:35:06 +010045 atomic_t *nest_cnt = this_cpu_ptr(&xen_qlock_wait_nest);
David Vrabele95e6f12015-04-24 14:56:40 -040046
47 /* If kicker interrupts not initialized yet, just spin */
Juergen Gross00893f42018-10-01 07:57:42 +020048 if (irq == -1 || in_nmi())
David Vrabele95e6f12015-04-24 14:56:40 -040049 return;
50
Juergen Gross782512e2018-11-08 08:35:06 +010051 /* Detect reentry. */
52 atomic_inc(nest_cnt);
Juergen Gross00893f42018-10-01 07:57:42 +020053
Juergen Gross782512e2018-11-08 08:35:06 +010054 /* If irq pending already and no nested call clear it. */
55 if (atomic_read(nest_cnt) == 1 && xen_test_irq_pending(irq)) {
Juergen Gross95f5d102018-10-01 07:57:42 +020056 xen_clear_irq_pending(irq);
Juergen Gross00893f42018-10-01 07:57:42 +020057 } else if (READ_ONCE(*byte) == val) {
58 /* Block until irq becomes pending (or a spurious wakeup) */
59 xen_poll_irq(irq);
Juergen Gross95f5d102018-10-01 07:57:42 +020060 }
David Vrabele95e6f12015-04-24 14:56:40 -040061
Juergen Gross782512e2018-11-08 08:35:06 +010062 atomic_dec(nest_cnt);
David Vrabele95e6f12015-04-24 14:56:40 -040063}
64
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070065static irqreturn_t dummy_handler(int irq, void *dev_id)
66{
67 BUG();
68 return IRQ_HANDLED;
69}
70
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040071void xen_init_lock_cpu(int cpu)
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070072{
73 int irq;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -040074 char *name;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070075
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -040076 if (!xen_pvspin)
77 return;
78
Konrad Rzeszutek Wilkcb91f8f2013-05-06 08:33:15 -040079 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 -040080 cpu, per_cpu(lock_kicker_irq, cpu));
81
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070082 name = kasprintf(GFP_KERNEL, "spinlock%d", cpu);
83 irq = bind_ipi_to_irqhandler(XEN_SPIN_UNLOCK_VECTOR,
84 cpu,
85 dummy_handler,
Michael Opdenacker9d71cee2013-09-07 08:46:49 +020086 IRQF_PERCPU|IRQF_NOBALANCING,
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070087 name,
88 NULL);
89
90 if (irq >= 0) {
91 disable_irq(irq); /* make sure it's never delivered */
92 per_cpu(lock_kicker_irq, cpu) = irq;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -040093 per_cpu(irq_name, cpu) = name;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -070094 }
95
96 printk("cpu %d spinlock event irq %d\n", cpu, irq);
97}
98
Alex Nixond68d82a2008-08-22 11:52:15 +010099void xen_uninit_lock_cpu(int cpu)
100{
Konrad Rzeszutek Wilk3310bbe2013-08-26 14:28:06 -0400101 if (!xen_pvspin)
102 return;
103
Alex Nixond68d82a2008-08-22 11:52:15 +0100104 unbind_from_irqhandler(per_cpu(lock_kicker_irq, cpu), NULL);
Konrad Rzeszutek Wilkcb9c6f12013-04-16 14:33:20 -0400105 per_cpu(lock_kicker_irq, cpu) = -1;
Konrad Rzeszutek Wilk354e7b72013-06-05 10:44:47 -0400106 kfree(per_cpu(irq_name, cpu));
107 per_cpu(irq_name, cpu) = NULL;
Alex Nixond68d82a2008-08-22 11:52:15 +0100108}
109
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530110
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400111/*
112 * Our init of PV spinlocks is split in two init functions due to us
113 * using paravirt patching and jump labels patching and having to do
114 * all of this before SMP code is invoked.
115 *
116 * The paravirt patching needs to be done _before_ the alternative asm code
117 * is started, otherwise we would not patch the core kernel code.
118 */
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700119void __init xen_init_spinlocks(void)
120{
Konrad Rzeszutek Wilk70dd4992013-04-16 14:34:45 -0400121
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530122 if (!xen_pvspin) {
123 printk(KERN_DEBUG "xen: PV spinlocks disabled\n");
124 return;
125 }
Konrad Rzeszutek Wilke0fc17a2014-04-04 14:48:04 -0400126 printk(KERN_DEBUG "xen: PV spinlocks enabled\n");
Peter Zijlstracfd89832016-05-18 20:43:02 +0200127
David Vrabele95e6f12015-04-24 14:56:40 -0400128 __pv_init_lock_hash();
129 pv_lock_ops.queued_spin_lock_slowpath = __pv_queued_spin_lock_slowpath;
130 pv_lock_ops.queued_spin_unlock = PV_CALLEE_SAVE(__pv_queued_spin_unlock);
131 pv_lock_ops.wait = xen_qlock_wait;
132 pv_lock_ops.kick = xen_qlock_kick;
Jeremy Fitzhardinged5de8842008-07-23 13:28:58 -0700133}
Jeremy Fitzhardinge994025c2008-08-20 17:02:19 -0700134
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400135/*
136 * While the jump_label init code needs to happend _after_ the jump labels are
137 * enabled and before SMP is started. Hence we use pre-SMP initcall level
138 * init. We cannot do it in xen_init_spinlocks as that is done before
139 * jump labels are activated.
140 */
141static __init int xen_init_spinlocks_jump(void)
142{
143 if (!xen_pvspin)
144 return 0;
145
Konrad Rzeszutek Wilke0fc17a2014-04-04 14:48:04 -0400146 if (!xen_domain())
147 return 0;
148
Konrad Rzeszutek Wilka9459282013-09-12 22:29:44 -0400149 static_key_slow_inc(&paravirt_ticketlocks_enabled);
150 return 0;
151}
152early_initcall(xen_init_spinlocks_jump);
153
Jeremy Fitzhardingeb8fa70b2013-08-09 19:51:54 +0530154static __init int xen_parse_nopvspin(char *arg)
155{
156 xen_pvspin = false;
157 return 0;
158}
159early_param("xen_nopvspin", xen_parse_nopvspin);
160