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