spinlock.c 3.5 KB

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