uio_pci_generic.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /* uio_pci_generic - generic UIO driver for PCI 2.3 devices
  2. *
  3. * Copyright (C) 2009 Red Hat, Inc.
  4. * Author: Michael S. Tsirkin <mst@redhat.com>
  5. *
  6. * This work is licensed under the terms of the GNU GPL, version 2.
  7. *
  8. * Since the driver does not declare any device ids, you must allocate
  9. * id and bind the device to the driver yourself. For example:
  10. *
  11. * # echo "8086 10f5" > /sys/bus/pci/drivers/uio_pci_generic/new_id
  12. * # echo -n 0000:00:19.0 > /sys/bus/pci/drivers/e1000e/unbind
  13. * # echo -n 0000:00:19.0 > /sys/bus/pci/drivers/uio_pci_generic/bind
  14. * # ls -l /sys/bus/pci/devices/0000:00:19.0/driver
  15. * .../0000:00:19.0/driver -> ../../../bus/pci/drivers/uio_pci_generic
  16. *
  17. * Driver won't bind to devices which do not support the Interrupt Disable Bit
  18. * in the command register. All devices compliant to PCI 2.3 (circa 2002) and
  19. * all compliant PCI Express devices should support this bit.
  20. */
  21. #include <linux/device.h>
  22. #include <linux/module.h>
  23. #include <linux/pci.h>
  24. #include <linux/slab.h>
  25. #include <linux/uio_driver.h>
  26. #define DRIVER_VERSION "0.01.0"
  27. #define DRIVER_AUTHOR "Michael S. Tsirkin <mst@redhat.com>"
  28. #define DRIVER_DESC "Generic UIO driver for PCI 2.3 devices"
  29. struct uio_pci_generic_dev {
  30. struct uio_info info;
  31. struct pci_dev *pdev;
  32. };
  33. static inline struct uio_pci_generic_dev *
  34. to_uio_pci_generic_dev(struct uio_info *info)
  35. {
  36. return container_of(info, struct uio_pci_generic_dev, info);
  37. }
  38. /* Interrupt handler. Read/modify/write the command register to disable
  39. * the interrupt. */
  40. static irqreturn_t irqhandler(int irq, struct uio_info *info)
  41. {
  42. struct uio_pci_generic_dev *gdev = to_uio_pci_generic_dev(info);
  43. struct pci_dev *pdev = gdev->pdev;
  44. irqreturn_t ret = IRQ_NONE;
  45. u32 cmd_status_dword;
  46. u16 origcmd, newcmd, status;
  47. /* We do a single dword read to retrieve both command and status.
  48. * Document assumptions that make this possible. */
  49. BUILD_BUG_ON(PCI_COMMAND % 4);
  50. BUILD_BUG_ON(PCI_COMMAND + 2 != PCI_STATUS);
  51. pci_block_user_cfg_access(pdev);
  52. /* Read both command and status registers in a single 32-bit operation.
  53. * Note: we could cache the value for command and move the status read
  54. * out of the lock if there was a way to get notified of user changes
  55. * to command register through sysfs. Should be good for shared irqs. */
  56. pci_read_config_dword(pdev, PCI_COMMAND, &cmd_status_dword);
  57. origcmd = cmd_status_dword;
  58. status = cmd_status_dword >> 16;
  59. /* Check interrupt status register to see whether our device
  60. * triggered the interrupt. */
  61. if (!(status & PCI_STATUS_INTERRUPT))
  62. goto done;
  63. /* We triggered the interrupt, disable it. */
  64. newcmd = origcmd | PCI_COMMAND_INTX_DISABLE;
  65. if (newcmd != origcmd)
  66. pci_write_config_word(pdev, PCI_COMMAND, newcmd);
  67. /* UIO core will signal the user process. */
  68. ret = IRQ_HANDLED;
  69. done:
  70. pci_unblock_user_cfg_access(pdev);
  71. return ret;
  72. }
  73. /* Verify that the device supports Interrupt Disable bit in command register,
  74. * per PCI 2.3, by flipping this bit and reading it back: this bit was readonly
  75. * in PCI 2.2. */
  76. static int __devinit verify_pci_2_3(struct pci_dev *pdev)
  77. {
  78. u16 orig, new;
  79. int err = 0;
  80. pci_block_user_cfg_access(pdev);
  81. pci_read_config_word(pdev, PCI_COMMAND, &orig);
  82. pci_write_config_word(pdev, PCI_COMMAND,
  83. orig ^ PCI_COMMAND_INTX_DISABLE);
  84. pci_read_config_word(pdev, PCI_COMMAND, &new);
  85. /* There's no way to protect against
  86. * hardware bugs or detect them reliably, but as long as we know
  87. * what the value should be, let's go ahead and check it. */
  88. if ((new ^ orig) & ~PCI_COMMAND_INTX_DISABLE) {
  89. err = -EBUSY;
  90. dev_err(&pdev->dev, "Command changed from 0x%x to 0x%x: "
  91. "driver or HW bug?\n", orig, new);
  92. goto err;
  93. }
  94. if (!((new ^ orig) & PCI_COMMAND_INTX_DISABLE)) {
  95. dev_warn(&pdev->dev, "Device does not support "
  96. "disabling interrupts: unable to bind.\n");
  97. err = -ENODEV;
  98. goto err;
  99. }
  100. /* Now restore the original value. */
  101. pci_write_config_word(pdev, PCI_COMMAND, orig);
  102. err:
  103. pci_unblock_user_cfg_access(pdev);
  104. return err;
  105. }
  106. static int __devinit probe(struct pci_dev *pdev,
  107. const struct pci_device_id *id)
  108. {
  109. struct uio_pci_generic_dev *gdev;
  110. int err;
  111. err = pci_enable_device(pdev);
  112. if (err) {
  113. dev_err(&pdev->dev, "%s: pci_enable_device failed: %d\n",
  114. __func__, err);
  115. return err;
  116. }
  117. if (!pdev->irq) {
  118. dev_warn(&pdev->dev, "No IRQ assigned to device: "
  119. "no support for interrupts?\n");
  120. pci_disable_device(pdev);
  121. return -ENODEV;
  122. }
  123. err = verify_pci_2_3(pdev);
  124. if (err)
  125. goto err_verify;
  126. gdev = kzalloc(sizeof(struct uio_pci_generic_dev), GFP_KERNEL);
  127. if (!gdev) {
  128. err = -ENOMEM;
  129. goto err_alloc;
  130. }
  131. gdev->info.name = "uio_pci_generic";
  132. gdev->info.version = DRIVER_VERSION;
  133. gdev->info.irq = pdev->irq;
  134. gdev->info.irq_flags = IRQF_SHARED;
  135. gdev->info.handler = irqhandler;
  136. gdev->pdev = pdev;
  137. if (uio_register_device(&pdev->dev, &gdev->info))
  138. goto err_register;
  139. pci_set_drvdata(pdev, gdev);
  140. return 0;
  141. err_register:
  142. kfree(gdev);
  143. err_alloc:
  144. err_verify:
  145. pci_disable_device(pdev);
  146. return err;
  147. }
  148. static void remove(struct pci_dev *pdev)
  149. {
  150. struct uio_pci_generic_dev *gdev = pci_get_drvdata(pdev);
  151. uio_unregister_device(&gdev->info);
  152. pci_disable_device(pdev);
  153. kfree(gdev);
  154. }
  155. static struct pci_driver driver = {
  156. .name = "uio_pci_generic",
  157. .id_table = NULL, /* only dynamic id's */
  158. .probe = probe,
  159. .remove = remove,
  160. };
  161. static int __init init(void)
  162. {
  163. pr_info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
  164. return pci_register_driver(&driver);
  165. }
  166. static void __exit cleanup(void)
  167. {
  168. pci_unregister_driver(&driver);
  169. }
  170. module_init(init);
  171. module_exit(cleanup);
  172. MODULE_VERSION(DRIVER_VERSION);
  173. MODULE_LICENSE("GPL v2");
  174. MODULE_AUTHOR(DRIVER_AUTHOR);
  175. MODULE_DESCRIPTION(DRIVER_DESC);