blob: 5699bc45fc96d7e3c815aaa18d328a572c69a4ec [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * dwc3-pci.c - PCI Specific glue layer
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
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>
Stephen Rothwell46a57282011-08-23 15:08:54 +100040#include <linux/module.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030041#include <linux/slab.h>
42#include <linux/pci.h>
43#include <linux/platform_device.h>
44
Felipe Balbi8300dd22011-10-18 13:54:01 +030045#include "core.h"
46
Felipe Balbi72246da2011-08-19 18:10:58 +030047/* FIXME define these in <linux/pci_ids.h> */
48#define PCI_VENDOR_ID_SYNOPSYS 0x16c3
49#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd
Heikki Krogerus36269ba2013-09-17 10:38:13 +030050#define PCI_DEVICE_ID_INTEL_BYT 0x0f37
Felipe Balbi72246da2011-08-19 18:10:58 +030051
Felipe Balbi72246da2011-08-19 18:10:58 +030052struct dwc3_pci {
53 struct device *dev;
54 struct platform_device *dwc3;
55};
56
Felipe Balbi72246da2011-08-19 18:10:58 +030057static int __devinit dwc3_pci_probe(struct pci_dev *pci,
58 const struct pci_device_id *id)
59{
60 struct resource res[2];
61 struct platform_device *dwc3;
62 struct dwc3_pci *glue;
63 int ret = -ENOMEM;
64 int devid;
Chanho Park802ca852012-02-15 18:27:55 +090065 struct device *dev = &pci->dev;
Felipe Balbi72246da2011-08-19 18:10:58 +030066
Chanho Park802ca852012-02-15 18:27:55 +090067 glue = devm_kzalloc(dev, sizeof(*glue), GFP_KERNEL);
Felipe Balbi72246da2011-08-19 18:10:58 +030068 if (!glue) {
Chanho Park802ca852012-02-15 18:27:55 +090069 dev_err(dev, "not enough memory\n");
70 return -ENOMEM;
Felipe Balbi72246da2011-08-19 18:10:58 +030071 }
72
Paul Zimmerman1d046792012-02-15 18:56:56 -080073 glue->dev = dev;
Felipe Balbi72246da2011-08-19 18:10:58 +030074
75 ret = pci_enable_device(pci);
76 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +090077 dev_err(dev, "failed to enable pci device\n");
78 return -ENODEV;
Felipe Balbi72246da2011-08-19 18:10:58 +030079 }
80
81 pci_set_power_state(pci, PCI_D0);
82 pci_set_master(pci);
83
Felipe Balbi8300dd22011-10-18 13:54:01 +030084 devid = dwc3_get_device_id();
Paul Zimmerman7d26b582012-02-24 17:32:14 -080085 if (devid < 0) {
86 ret = -ENOMEM;
Chanho Park802ca852012-02-15 18:27:55 +090087 goto err1;
Paul Zimmerman7d26b582012-02-24 17:32:14 -080088 }
Felipe Balbi72246da2011-08-19 18:10:58 +030089
Felipe Balbi0949e992011-10-12 10:44:56 +030090 dwc3 = platform_device_alloc("dwc3", devid);
Felipe Balbi72246da2011-08-19 18:10:58 +030091 if (!dwc3) {
Chanho Park802ca852012-02-15 18:27:55 +090092 dev_err(dev, "couldn't allocate dwc3 device\n");
Felipe Balbi28f1a0d2012-03-12 16:41:19 +020093 ret = -ENOMEM;
Chanho Park802ca852012-02-15 18:27:55 +090094 goto err1;
Felipe Balbi72246da2011-08-19 18:10:58 +030095 }
96
97 memset(res, 0x00, sizeof(struct resource) * ARRAY_SIZE(res));
98
99 res[0].start = pci_resource_start(pci, 0);
100 res[0].end = pci_resource_end(pci, 0);
101 res[0].name = "dwc_usb3";
102 res[0].flags = IORESOURCE_MEM;
103
104 res[1].start = pci->irq;
105 res[1].name = "dwc_usb3";
106 res[1].flags = IORESOURCE_IRQ;
107
108 ret = platform_device_add_resources(dwc3, res, ARRAY_SIZE(res));
109 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900110 dev_err(dev, "couldn't add resources to dwc3 device\n");
111 goto err2;
Felipe Balbi72246da2011-08-19 18:10:58 +0300112 }
113
114 pci_set_drvdata(pci, glue);
115
Chanho Park802ca852012-02-15 18:27:55 +0900116 dma_set_coherent_mask(&dwc3->dev, dev->coherent_dma_mask);
Felipe Balbi72246da2011-08-19 18:10:58 +0300117
Chanho Park802ca852012-02-15 18:27:55 +0900118 dwc3->dev.dma_mask = dev->dma_mask;
119 dwc3->dev.dma_parms = dev->dma_parms;
120 dwc3->dev.parent = dev;
Paul Zimmerman1d046792012-02-15 18:56:56 -0800121 glue->dwc3 = dwc3;
Felipe Balbi72246da2011-08-19 18:10:58 +0300122
123 ret = platform_device_add(dwc3);
124 if (ret) {
Chanho Park802ca852012-02-15 18:27:55 +0900125 dev_err(dev, "failed to register dwc3 device\n");
126 goto err3;
Felipe Balbi72246da2011-08-19 18:10:58 +0300127 }
128
129 return 0;
130
Chanho Park802ca852012-02-15 18:27:55 +0900131err3:
Felipe Balbi72246da2011-08-19 18:10:58 +0300132 pci_set_drvdata(pci, NULL);
133 platform_device_put(dwc3);
134
Chanho Park802ca852012-02-15 18:27:55 +0900135err2:
Felipe Balbi8300dd22011-10-18 13:54:01 +0300136 dwc3_put_device_id(devid);
Felipe Balbi72246da2011-08-19 18:10:58 +0300137
Chanho Park802ca852012-02-15 18:27:55 +0900138err1:
Felipe Balbi72246da2011-08-19 18:10:58 +0300139 pci_disable_device(pci);
140
Felipe Balbi72246da2011-08-19 18:10:58 +0300141 return ret;
142}
143
144static void __devexit dwc3_pci_remove(struct pci_dev *pci)
145{
146 struct dwc3_pci *glue = pci_get_drvdata(pci);
147
Felipe Balbi8300dd22011-10-18 13:54:01 +0300148 dwc3_put_device_id(glue->dwc3->id);
Felipe Balbi72246da2011-08-19 18:10:58 +0300149 platform_device_unregister(glue->dwc3);
150 pci_set_drvdata(pci, NULL);
151 pci_disable_device(pci);
Felipe Balbi72246da2011-08-19 18:10:58 +0300152}
153
154static DEFINE_PCI_DEVICE_TABLE(dwc3_pci_id_table) = {
155 {
156 PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS,
157 PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3),
158 },
Heikki Krogerus36269ba2013-09-17 10:38:13 +0300159 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), },
Felipe Balbi72246da2011-08-19 18:10:58 +0300160 { } /* Terminating Entry */
161};
162MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);
163
164static struct pci_driver dwc3_pci_driver = {
Felipe Balbi0949e992011-10-12 10:44:56 +0300165 .name = "dwc3-pci",
Felipe Balbi72246da2011-08-19 18:10:58 +0300166 .id_table = dwc3_pci_id_table,
167 .probe = dwc3_pci_probe,
168 .remove = __devexit_p(dwc3_pci_remove),
169};
170
171MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
172MODULE_LICENSE("Dual BSD/GPL");
173MODULE_DESCRIPTION("DesignWare USB3 PCI Glue Layer");
174
Greg Kroah-Hartman95656332011-11-18 10:14:24 -0800175module_pci_driver(dwc3_pci_driver);