1 // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
3 * pci.c - DesignWare HS OTG Controller PCI driver
5 * Copyright (C) 2004-2013 Synopsys, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. The names of the above-listed copyright holders may not be used
17 * to endorse or promote products derived from this software without
18 * specific prior written permission.
20 * ALTERNATIVELY, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") as published by the Free Software
22 * Foundation; either version 2 of the License, or (at your option) any
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
26 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
27 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * Provides the initialization and cleanup entry points for the DWC_otg PCI
42 #include <linux/kernel.h>
43 #include <linux/module.h>
44 #include <linux/moduleparam.h>
45 #include <linux/spinlock.h>
46 #include <linux/interrupt.h>
48 #include <linux/slab.h>
49 #include <linux/pci.h>
50 #include <linux/usb.h>
52 #include <linux/usb/hcd.h>
53 #include <linux/usb/ch11.h>
54 #include <linux/platform_device.h>
55 #include <linux/usb/usb_phy_generic.h>
57 #define PCI_PRODUCT_ID_HAPS_HSOTG 0xabc0
59 static const char dwc2_driver_name
[] = "dwc2-pci";
61 struct dwc2_pci_glue
{
62 struct platform_device
*dwc2
;
63 struct platform_device
*phy
;
66 static int dwc2_pci_quirks(struct pci_dev
*pdev
, struct platform_device
*dwc2
)
68 if (pdev
->vendor
== PCI_VENDOR_ID_SYNOPSYS
&&
69 pdev
->device
== PCI_PRODUCT_ID_HAPS_HSOTG
) {
70 struct property_entry properties
[] = {
74 return platform_device_add_properties(dwc2
, properties
);
81 * dwc2_pci_probe() - Provides the cleanup entry points for the DWC_otg PCI
84 * @pci: The programming view of DWC_otg PCI
86 static void dwc2_pci_remove(struct pci_dev
*pci
)
88 struct dwc2_pci_glue
*glue
= pci_get_drvdata(pci
);
90 platform_device_unregister(glue
->dwc2
);
91 usb_phy_generic_unregister(glue
->phy
);
92 pci_set_drvdata(pci
, NULL
);
95 static int dwc2_pci_probe(struct pci_dev
*pci
,
96 const struct pci_device_id
*id
)
98 struct resource res
[2];
99 struct platform_device
*dwc2
;
100 struct platform_device
*phy
;
102 struct device
*dev
= &pci
->dev
;
103 struct dwc2_pci_glue
*glue
;
105 ret
= pcim_enable_device(pci
);
107 dev_err(dev
, "failed to enable pci device\n");
113 phy
= usb_phy_generic_register();
115 dev_err(dev
, "error registering generic PHY (%ld)\n",
120 dwc2
= platform_device_alloc("dwc2", PLATFORM_DEVID_AUTO
);
122 dev_err(dev
, "couldn't allocate dwc2 device\n");
127 memset(res
, 0x00, sizeof(struct resource
) * ARRAY_SIZE(res
));
129 res
[0].start
= pci_resource_start(pci
, 0);
130 res
[0].end
= pci_resource_end(pci
, 0);
131 res
[0].name
= "dwc2";
132 res
[0].flags
= IORESOURCE_MEM
;
134 res
[1].start
= pci
->irq
;
135 res
[1].name
= "dwc2";
136 res
[1].flags
= IORESOURCE_IRQ
;
138 ret
= platform_device_add_resources(dwc2
, res
, ARRAY_SIZE(res
));
140 dev_err(dev
, "couldn't add resources to dwc2 device\n");
144 dwc2
->dev
.parent
= dev
;
146 ret
= dwc2_pci_quirks(pci
, dwc2
);
150 glue
= devm_kzalloc(dev
, sizeof(*glue
), GFP_KERNEL
);
156 ret
= platform_device_add(dwc2
);
158 dev_err(dev
, "failed to register dwc2 device\n");
164 pci_set_drvdata(pci
, glue
);
168 usb_phy_generic_unregister(phy
);
169 platform_device_put(dwc2
);
173 static const struct pci_device_id dwc2_pci_ids
[] = {
175 PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS
, PCI_PRODUCT_ID_HAPS_HSOTG
),
178 PCI_DEVICE(PCI_VENDOR_ID_STMICRO
,
179 PCI_DEVICE_ID_STMICRO_USB_OTG
),
181 { /* end: all zeroes */ }
183 MODULE_DEVICE_TABLE(pci
, dwc2_pci_ids
);
185 static struct pci_driver dwc2_pci_driver
= {
186 .name
= dwc2_driver_name
,
187 .id_table
= dwc2_pci_ids
,
188 .probe
= dwc2_pci_probe
,
189 .remove
= dwc2_pci_remove
,
192 module_pci_driver(dwc2_pci_driver
);
194 MODULE_DESCRIPTION("DESIGNWARE HS OTG PCI Bus Glue");
195 MODULE_AUTHOR("Synopsys, Inc.");
196 MODULE_LICENSE("Dual BSD/GPL");