pciback_ops.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * PCI Backend Operations - respond to PCI requests from Frontend
  3. *
  4. * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
  5. */
  6. #include <linux/module.h>
  7. #include <linux/wait.h>
  8. #include <linux/bitops.h>
  9. #include <xen/events.h>
  10. #include <linux/sched.h>
  11. #include "pciback.h"
  12. int verbose_request;
  13. module_param(verbose_request, int, 0644);
  14. /* Ensure a device is has the fake IRQ handler "turned on/off" and is
  15. * ready to be exported. This MUST be run after pciback_reset_device
  16. * which does the actual PCI device enable/disable.
  17. */
  18. void pciback_control_isr(struct pci_dev *dev, int reset)
  19. {
  20. struct pciback_dev_data *dev_data;
  21. int rc;
  22. int enable = 0;
  23. dev_data = pci_get_drvdata(dev);
  24. if (!dev_data)
  25. return;
  26. /* We don't deal with bridges */
  27. if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
  28. return;
  29. if (reset) {
  30. dev_data->enable_intx = 0;
  31. dev_data->ack_intr = 0;
  32. }
  33. enable = dev_data->enable_intx;
  34. /* Asked to disable, but ISR isn't runnig */
  35. if (!enable && !dev_data->isr_on)
  36. return;
  37. /* Squirrel away the IRQs in the dev_data. We need this
  38. * b/c when device transitions to MSI, the dev->irq is
  39. * overwritten with the MSI vector.
  40. */
  41. if (enable)
  42. dev_data->irq = dev->irq;
  43. /*
  44. * SR-IOV devices in all use MSI-X and have no legacy
  45. * interrupts, so inhibit creating a fake IRQ handler for them.
  46. */
  47. if (dev_data->irq == 0)
  48. goto out;
  49. dev_dbg(&dev->dev, "%s: #%d %s %s%s %s-> %s\n",
  50. dev_data->irq_name,
  51. dev_data->irq,
  52. pci_is_enabled(dev) ? "on" : "off",
  53. dev->msi_enabled ? "MSI" : "",
  54. dev->msix_enabled ? "MSI/X" : "",
  55. dev_data->isr_on ? "enable" : "disable",
  56. enable ? "enable" : "disable");
  57. if (enable) {
  58. rc = request_irq(dev_data->irq,
  59. pciback_guest_interrupt, IRQF_SHARED,
  60. dev_data->irq_name, dev);
  61. if (rc) {
  62. dev_err(&dev->dev, "%s: failed to install fake IRQ " \
  63. "handler for IRQ %d! (rc:%d)\n",
  64. dev_data->irq_name, dev_data->irq, rc);
  65. goto out;
  66. }
  67. } else {
  68. free_irq(dev_data->irq, dev);
  69. dev_data->irq = 0;
  70. }
  71. dev_data->isr_on = enable;
  72. dev_data->ack_intr = enable;
  73. out:
  74. dev_dbg(&dev->dev, "%s: #%d %s %s%s %s\n",
  75. dev_data->irq_name,
  76. dev_data->irq,
  77. pci_is_enabled(dev) ? "on" : "off",
  78. dev->msi_enabled ? "MSI" : "",
  79. dev->msix_enabled ? "MSI/X" : "",
  80. enable ? (dev_data->isr_on ? "enabled" : "failed to enable") :
  81. (dev_data->isr_on ? "failed to disable" : "disabled"));
  82. }
  83. /* Ensure a device is "turned off" and ready to be exported.
  84. * (Also see pciback_config_reset to ensure virtual configuration space is
  85. * ready to be re-exported)
  86. */
  87. void pciback_reset_device(struct pci_dev *dev)
  88. {
  89. u16 cmd;
  90. pciback_control_isr(dev, 1 /* reset device */);
  91. /* Disable devices (but not bridges) */
  92. if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
  93. #ifdef CONFIG_PCI_MSI
  94. /* The guest could have been abruptly killed without
  95. * disabling MSI/MSI-X interrupts.*/
  96. if (dev->msix_enabled)
  97. pci_disable_msix(dev);
  98. if (dev->msi_enabled)
  99. pci_disable_msi(dev);
  100. #endif
  101. pci_disable_device(dev);
  102. pci_write_config_word(dev, PCI_COMMAND, 0);
  103. dev->is_busmaster = 0;
  104. } else {
  105. pci_read_config_word(dev, PCI_COMMAND, &cmd);
  106. if (cmd & (PCI_COMMAND_INVALIDATE)) {
  107. cmd &= ~(PCI_COMMAND_INVALIDATE);
  108. pci_write_config_word(dev, PCI_COMMAND, cmd);
  109. dev->is_busmaster = 0;
  110. }
  111. }
  112. }
  113. /*
  114. * Now the same evtchn is used for both pcifront conf_read_write request
  115. * as well as pcie aer front end ack. We use a new work_queue to schedule
  116. * pciback conf_read_write service for avoiding confict with aer_core
  117. * do_recovery job which also use the system default work_queue
  118. */
  119. void test_and_schedule_op(struct pciback_device *pdev)
  120. {
  121. /* Check that frontend is requesting an operation and that we are not
  122. * already processing a request */
  123. if (test_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags)
  124. && !test_and_set_bit(_PDEVF_op_active, &pdev->flags)) {
  125. queue_work(pciback_wq, &pdev->op_work);
  126. }
  127. /*_XEN_PCIB_active should have been cleared by pcifront. And also make
  128. sure pciback is waiting for ack by checking _PCIB_op_pending*/
  129. if (!test_bit(_XEN_PCIB_active, (unsigned long *)&pdev->sh_info->flags)
  130. && test_bit(_PCIB_op_pending, &pdev->flags)) {
  131. wake_up(&aer_wait_queue);
  132. }
  133. }
  134. /* Performing the configuration space reads/writes must not be done in atomic
  135. * context because some of the pci_* functions can sleep (mostly due to ACPI
  136. * use of semaphores). This function is intended to be called from a work
  137. * queue in process context taking a struct pciback_device as a parameter */
  138. void pciback_do_op(struct work_struct *data)
  139. {
  140. struct pciback_device *pdev =
  141. container_of(data, struct pciback_device, op_work);
  142. struct pci_dev *dev;
  143. struct pciback_dev_data *dev_data = NULL;
  144. struct xen_pci_op *op = &pdev->sh_info->op;
  145. int test_intx = 0;
  146. dev = pciback_get_pci_dev(pdev, op->domain, op->bus, op->devfn);
  147. if (dev == NULL)
  148. op->err = XEN_PCI_ERR_dev_not_found;
  149. else {
  150. dev_data = pci_get_drvdata(dev);
  151. if (dev_data)
  152. test_intx = dev_data->enable_intx;
  153. switch (op->cmd) {
  154. case XEN_PCI_OP_conf_read:
  155. op->err = pciback_config_read(dev,
  156. op->offset, op->size, &op->value);
  157. break;
  158. case XEN_PCI_OP_conf_write:
  159. op->err = pciback_config_write(dev,
  160. op->offset, op->size, op->value);
  161. break;
  162. #ifdef CONFIG_PCI_MSI
  163. case XEN_PCI_OP_enable_msi:
  164. op->err = pciback_enable_msi(pdev, dev, op);
  165. break;
  166. case XEN_PCI_OP_disable_msi:
  167. op->err = pciback_disable_msi(pdev, dev, op);
  168. break;
  169. case XEN_PCI_OP_enable_msix:
  170. op->err = pciback_enable_msix(pdev, dev, op);
  171. break;
  172. case XEN_PCI_OP_disable_msix:
  173. op->err = pciback_disable_msix(pdev, dev, op);
  174. break;
  175. #endif
  176. default:
  177. op->err = XEN_PCI_ERR_not_implemented;
  178. break;
  179. }
  180. }
  181. if (!op->err && dev && dev_data) {
  182. /* Transition detected */
  183. if ((dev_data->enable_intx != test_intx))
  184. pciback_control_isr(dev, 0 /* no reset */);
  185. }
  186. /* Tell the driver domain that we're done. */
  187. wmb();
  188. clear_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags);
  189. notify_remote_via_irq(pdev->evtchn_irq);
  190. /* Mark that we're done. */
  191. smp_mb__before_clear_bit(); /* /after/ clearing PCIF_active */
  192. clear_bit(_PDEVF_op_active, &pdev->flags);
  193. smp_mb__after_clear_bit(); /* /before/ final check for work */
  194. /* Check to see if the driver domain tried to start another request in
  195. * between clearing _XEN_PCIF_active and clearing _PDEVF_op_active.
  196. */
  197. test_and_schedule_op(pdev);
  198. }
  199. irqreturn_t pciback_handle_event(int irq, void *dev_id)
  200. {
  201. struct pciback_device *pdev = dev_id;
  202. test_and_schedule_op(pdev);
  203. return IRQ_HANDLED;
  204. }
  205. irqreturn_t pciback_guest_interrupt(int irq, void *dev_id)
  206. {
  207. struct pci_dev *dev = (struct pci_dev *)dev_id;
  208. struct pciback_dev_data *dev_data = pci_get_drvdata(dev);
  209. if (dev_data->isr_on && dev_data->ack_intr) {
  210. dev_data->handled++;
  211. if ((dev_data->handled % 1000) == 0) {
  212. if (xen_test_irq_shared(irq)) {
  213. printk(KERN_INFO "%s IRQ line is not shared "
  214. "with other domains. Turning ISR off\n",
  215. dev_data->irq_name);
  216. dev_data->ack_intr = 0;
  217. }
  218. }
  219. return IRQ_HANDLED;
  220. }
  221. return IRQ_NONE;
  222. }