dwc3-pci.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. #include "core.h"
  44. /* FIXME define these in <linux/pci_ids.h> */
  45. #define PCI_VENDOR_ID_SYNOPSYS 0x16c3
  46. #define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd
  47. #define PCI_DEVICE_ID_INTEL_BYT 0x0f37
  48. #define PCI_DEVICE_ID_INTEL_MRFLD 0x119e
  49. struct dwc3_pci {
  50. struct device *dev;
  51. struct platform_device *dwc3;
  52. };
  53. static int __devinit dwc3_pci_probe(struct pci_dev *pci,
  54. const struct pci_device_id *id)
  55. {
  56. struct resource res[2];
  57. struct platform_device *dwc3;
  58. struct dwc3_pci *glue;
  59. int ret = -ENOMEM;
  60. int devid;
  61. struct device *dev = &pci->dev;
  62. glue = devm_kzalloc(dev, sizeof(*glue), GFP_KERNEL);
  63. if (!glue) {
  64. dev_err(dev, "not enough memory\n");
  65. return -ENOMEM;
  66. }
  67. glue->dev = dev;
  68. ret = pci_enable_device(pci);
  69. if (ret) {
  70. dev_err(dev, "failed to enable pci device\n");
  71. return -ENODEV;
  72. }
  73. pci_set_power_state(pci, PCI_D0);
  74. pci_set_master(pci);
  75. devid = dwc3_get_device_id();
  76. if (devid < 0) {
  77. ret = -ENOMEM;
  78. goto err1;
  79. }
  80. dwc3 = platform_device_alloc("dwc3", devid);
  81. if (!dwc3) {
  82. dev_err(dev, "couldn't allocate dwc3 device\n");
  83. ret = -ENOMEM;
  84. goto err1;
  85. }
  86. memset(res, 0x00, sizeof(struct resource) * ARRAY_SIZE(res));
  87. res[0].start = pci_resource_start(pci, 0);
  88. res[0].end = pci_resource_end(pci, 0);
  89. res[0].name = "dwc_usb3";
  90. res[0].flags = IORESOURCE_MEM;
  91. res[1].start = pci->irq;
  92. res[1].name = "dwc_usb3";
  93. res[1].flags = IORESOURCE_IRQ;
  94. ret = platform_device_add_resources(dwc3, res, ARRAY_SIZE(res));
  95. if (ret) {
  96. dev_err(dev, "couldn't add resources to dwc3 device\n");
  97. goto err2;
  98. }
  99. pci_set_drvdata(pci, glue);
  100. dma_set_coherent_mask(&dwc3->dev, dev->coherent_dma_mask);
  101. dwc3->dev.dma_mask = dev->dma_mask;
  102. dwc3->dev.dma_parms = dev->dma_parms;
  103. dwc3->dev.parent = dev;
  104. glue->dwc3 = dwc3;
  105. ret = platform_device_add(dwc3);
  106. if (ret) {
  107. dev_err(dev, "failed to register dwc3 device\n");
  108. goto err3;
  109. }
  110. return 0;
  111. err3:
  112. pci_set_drvdata(pci, NULL);
  113. platform_device_put(dwc3);
  114. err2:
  115. dwc3_put_device_id(devid);
  116. err1:
  117. pci_disable_device(pci);
  118. return ret;
  119. }
  120. static void __devexit dwc3_pci_remove(struct pci_dev *pci)
  121. {
  122. struct dwc3_pci *glue = pci_get_drvdata(pci);
  123. dwc3_put_device_id(glue->dwc3->id);
  124. platform_device_unregister(glue->dwc3);
  125. pci_set_drvdata(pci, NULL);
  126. pci_disable_device(pci);
  127. }
  128. static DEFINE_PCI_DEVICE_TABLE(dwc3_pci_id_table) = {
  129. {
  130. PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS,
  131. PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3),
  132. },
  133. { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), },
  134. { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), },
  135. { } /* Terminating Entry */
  136. };
  137. MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);
  138. static struct pci_driver dwc3_pci_driver = {
  139. .name = "dwc3-pci",
  140. .id_table = dwc3_pci_id_table,
  141. .probe = dwc3_pci_probe,
  142. .remove = __devexit_p(dwc3_pci_remove),
  143. };
  144. MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
  145. MODULE_LICENSE("Dual BSD/GPL");
  146. MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer");
  147. module_pci_driver(dwc3_pci_driver);