spinlock.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Split spinlock implementation out into its own file, so it can be
  4. * compiled in a FTRACE-compatible way.
  5. */
  6. #include <linux/kernel_stat.h>
  7. #include <linux/spinlock.h>
  8. #include <linux/debugfs.h>
  9. #include <linux/log2.h>
  10. #include <linux/gfp.h>
  11. #include <linux/slab.h>
  12. #include <linux/atomic.h>
  13. #include <asm/paravirt.h>
  14. #include <asm/qspinlock.h>
  15. #include <xen/interface/xen.h>
  16. #include <xen/events.h>
  17. #include "xen-ops.h"
  18. #include "debugfs.h"
  19. static DEFINE_PER_CPU(int, lock_kicker_irq) = -1;
  20. static DEFINE_PER_CPU(char *, irq_name);
  21. static DEFINE_PER_CPU(atomic_t, xen_qlock_wait_nest);
  22. static bool xen_pvspin = true;
  23. static void xen_qlock_kick(int cpu)
  24. {
  25. int irq = per_cpu(lock_kicker_irq, cpu);
  26. /* Don't kick if the target's kicker interrupt is not initialized. */
  27. if (irq == -1)
  28. return;
  29. xen_send_IPI_one(cpu, XEN_SPIN_UNLOCK_VECTOR);
  30. }
  31. /*
  32. * Halt the current CPU & release it back to the host
  33. */
  34. static void xen_qlock_wait(u8 *byte, u8 val)
  35. {
  36. int irq = __this_cpu_read(lock_kicker_irq);
  37. atomic_t *nest_cnt = this_cpu_ptr(&xen_qlock_wait_nest);
  38. /* If kicker interrupts not initialized yet, just spin */
  39. if (irq == -1 || in_nmi())
  40. return;
  41. /* Detect reentry. */
  42. atomic_inc(nest_cnt);
  43. /* If irq pending already and no nested call clear it. */
  44. if (atomic_read(nest_cnt) == 1 && xen_test_irq_pending(irq)) {
  45. xen_clear_irq_pending(irq);
  46. } else if (READ_ONCE(*byte) == val) {
  47. /* Block until irq becomes pending (or a spurious wakeup) */
  48. xen_poll_irq(irq);
  49. }
  50. atomic_dec(nest_cnt);
  51. }
  52. static irqreturn_t dummy_handler(int irq, void *dev_id)
  53. {
  54. BUG();
  55. return IRQ_HANDLED;
  56. }
  57. void xen_init_lock_cpu(int cpu)
  58. {
  59. int irq;
  60. char *name;
  61. if (!xen_pvspin) {
  62. if (cpu == 0)
  63. static_branch_disable(&virt_spin_lock_key);
  64. return;
  65. }
  66. WARN(per_cpu(lock_kicker_irq, cpu) >= 0, "spinlock on CPU%d exists on IRQ%d!\n",
  67. cpu, per_cpu(lock_kicker_irq, cpu));
  68. name = kasprintf(GFP_KERNEL, "spinlock%d", cpu);
  69. irq = bind_ipi_to_irqhandler(XEN_SPIN_UNLOCK_VECTOR,
  70. cpu,
  71. dummy_handler,
  72. IRQF_PERCPU|IRQF_NOBALANCING,
  73. name,
  74. NULL);
  75. if (irq >= 0) {
  76. disable_irq(irq); /* make sure it's never delivered */
  77. per_cpu(lock_kicker_irq, cpu) = irq;
  78. per_cpu(irq_name, cpu) = name;
  79. }
  80. printk("cpu %d spinlock event irq %d\n", cpu, irq);
  81. }
  82. void xen_uninit_lock_cpu(int cpu)
  83. {
  84. if (!xen_pvspin)
  85. return;
  86. unbind_from_irqhandler(per_cpu(lock_kicker_irq, cpu), NULL);
  87. per_cpu(lock_kicker_irq, cpu) = -1;
  88. kfree(per_cpu(irq_name, cpu));
  89. per_cpu(irq_name, cpu) = NULL;
  90. }
  91. PV_CALLEE_SAVE_REGS_THUNK(xen_vcpu_stolen);
  92. /*
  93. * Our init of PV spinlocks is split in two init functions due to us
  94. * using paravirt patching and jump labels patching and having to do
  95. * all of this before SMP code is invoked.
  96. *
  97. * The paravirt patching needs to be done _before_ the alternative asm code
  98. * is started, otherwise we would not patch the core kernel code.
  99. */
  100. void __init xen_init_spinlocks(void)
  101. {
  102. /* Don't need to use pvqspinlock code if there is only 1 vCPU. */
  103. if (num_possible_cpus() == 1)
  104. xen_pvspin = false;
  105. if (!xen_pvspin) {
  106. printk(KERN_DEBUG "xen: PV spinlocks disabled\n");
  107. return;
  108. }
  109. printk(KERN_DEBUG "xen: PV spinlocks enabled\n");
  110. __pv_init_lock_hash();
  111. pv_lock_ops.queued_spin_lock_slowpath = __pv_queued_spin_lock_slowpath;
  112. pv_lock_ops.queued_spin_unlock = PV_CALLEE_SAVE(__pv_queued_spin_unlock);
  113. pv_lock_ops.wait = xen_qlock_wait;
  114. pv_lock_ops.kick = xen_qlock_kick;
  115. pv_lock_ops.vcpu_is_preempted = PV_CALLEE_SAVE(xen_vcpu_stolen);
  116. }
  117. static __init int xen_parse_nopvspin(char *arg)
  118. {
  119. xen_pvspin = false;
  120. return 0;
  121. }
  122. early_param("xen_nopvspin", xen_parse_nopvspin);