dwc3-pci.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /**
  2. * dwc3-pci.c - PCI Specific glue layer
  3. *
  4. * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
  5. *
  6. * Authors: Felipe Balbi <balbi@ti.com>,
  7. * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions, and the following disclaimer,
  14. * without modification.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. The names of the above-listed copyright holders may not be used
  19. * to endorse or promote products derived from this software without
  20. * specific prior written permission.
  21. *
  22. * ALTERNATIVELY, this software may be distributed under the terms of the
  23. * GNU General Public License ("GPL") version 2, as published by the Free
  24. * Software Foundation.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  27. * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  28. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  29. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  30. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  31. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  32. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  33. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  34. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  35. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  36. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  37. */
  38. #include <linux/kernel.h>
  39. #include <linux/module.h>
  40. #include <linux/slab.h>
  41. #include <linux/pci.h>
  42. #include <linux/platform_device.h>
  43. /* FIXME define these in <linux/pci_ids.h> */
  44. #define PCI_VENDOR_ID_SYNOPSYS 0x16c3
  45. #define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd
  46. #define DWC3_PCI_DEVS_POSSIBLE 32
  47. struct dwc3_pci {
  48. struct device *dev;
  49. struct platform_device *dwc3;
  50. };
  51. static DECLARE_BITMAP(dwc3_pci_devs, DWC3_PCI_DEVS_POSSIBLE);
  52. static int dwc3_pci_get_device_id(struct dwc3_pci *glue)
  53. {
  54. int id;
  55. again:
  56. id = find_first_zero_bit(dwc3_pci_devs, DWC3_PCI_DEVS_POSSIBLE);
  57. if (id < DWC3_PCI_DEVS_POSSIBLE) {
  58. int old;
  59. old = test_and_set_bit(id, dwc3_pci_devs);
  60. if (old)
  61. goto again;
  62. } else {
  63. dev_err(glue->dev, "no space for new device\n");
  64. id = -ENOMEM;
  65. }
  66. return 0;
  67. }
  68. static void dwc3_pci_put_device_id(struct dwc3_pci *glue, int id)
  69. {
  70. int ret;
  71. if (id < 0)
  72. return;
  73. ret = test_bit(id, dwc3_pci_devs);
  74. WARN(!ret, "Device: %s\nID %d not in use\n",
  75. dev_driver_string(glue->dev), id);
  76. clear_bit(id, dwc3_pci_devs);
  77. }
  78. static int __devinit dwc3_pci_probe(struct pci_dev *pci,
  79. const struct pci_device_id *id)
  80. {
  81. struct resource res[2];
  82. struct platform_device *dwc3;
  83. struct dwc3_pci *glue;
  84. int ret = -ENOMEM;
  85. int devid;
  86. glue = kzalloc(sizeof(*glue), GFP_KERNEL);
  87. if (!glue) {
  88. dev_err(&pci->dev, "not enough memory\n");
  89. goto err0;
  90. }
  91. glue->dev = &pci->dev;
  92. ret = pci_enable_device(pci);
  93. if (ret) {
  94. dev_err(&pci->dev, "failed to enable pci device\n");
  95. goto err1;
  96. }
  97. pci_set_power_state(pci, PCI_D0);
  98. pci_set_master(pci);
  99. devid = dwc3_pci_get_device_id(glue);
  100. if (devid < 0)
  101. goto err2;
  102. dwc3 = platform_device_alloc("dwc3-pci", devid);
  103. if (!dwc3) {
  104. dev_err(&pci->dev, "couldn't allocate dwc3 device\n");
  105. goto err3;
  106. }
  107. memset(res, 0x00, sizeof(struct resource) * ARRAY_SIZE(res));
  108. res[0].start = pci_resource_start(pci, 0);
  109. res[0].end = pci_resource_end(pci, 0);
  110. res[0].name = "dwc_usb3";
  111. res[0].flags = IORESOURCE_MEM;
  112. res[1].start = pci->irq;
  113. res[1].name = "dwc_usb3";
  114. res[1].flags = IORESOURCE_IRQ;
  115. ret = platform_device_add_resources(dwc3, res, ARRAY_SIZE(res));
  116. if (ret) {
  117. dev_err(&pci->dev, "couldn't add resources to dwc3 device\n");
  118. goto err4;
  119. }
  120. pci_set_drvdata(pci, glue);
  121. dma_set_coherent_mask(&dwc3->dev, pci->dev.coherent_dma_mask);
  122. dwc3->dev.dma_mask = pci->dev.dma_mask;
  123. dwc3->dev.dma_parms = pci->dev.dma_parms;
  124. dwc3->dev.parent = &pci->dev;
  125. glue->dwc3 = dwc3;
  126. ret = platform_device_add(dwc3);
  127. if (ret) {
  128. dev_err(&pci->dev, "failed to register dwc3 device\n");
  129. goto err4;
  130. }
  131. return 0;
  132. err4:
  133. pci_set_drvdata(pci, NULL);
  134. platform_device_put(dwc3);
  135. err3:
  136. dwc3_pci_put_device_id(glue, devid);
  137. err2:
  138. pci_disable_device(pci);
  139. err1:
  140. kfree(pci);
  141. err0:
  142. return ret;
  143. }
  144. static void __devexit dwc3_pci_remove(struct pci_dev *pci)
  145. {
  146. struct dwc3_pci *glue = pci_get_drvdata(pci);
  147. dwc3_pci_put_device_id(glue, glue->dwc3->id);
  148. platform_device_unregister(glue->dwc3);
  149. pci_set_drvdata(pci, NULL);
  150. pci_disable_device(pci);
  151. kfree(glue);
  152. }
  153. static DEFINE_PCI_DEVICE_TABLE(dwc3_pci_id_table) = {
  154. {
  155. PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS,
  156. PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3),
  157. },
  158. { } /* Terminating Entry */
  159. };
  160. MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);
  161. static struct pci_driver dwc3_pci_driver = {
  162. .name = "pci-dwc3",
  163. .id_table = dwc3_pci_id_table,
  164. .probe = dwc3_pci_probe,
  165. .remove = __devexit_p(dwc3_pci_remove),
  166. };
  167. MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
  168. MODULE_LICENSE("Dual BSD/GPL");
  169. MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer");
  170. static int __devinit dwc3_pci_init(void)
  171. {
  172. return pci_register_driver(&dwc3_pci_driver);
  173. }
  174. module_init(dwc3_pci_init);
  175. static void __exit dwc3_pci_exit(void)
  176. {
  177. pci_unregister_driver(&dwc3_pci_driver);
  178. }
  179. module_exit(dwc3_pci_exit);