pciback_ops.c 6.8 KB

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