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.
9 * Provides the initialization and cleanup entry points for the DWC_otg PCI
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/moduleparam.h>
15 #include <linux/spinlock.h>
16 #include <linux/interrupt.h>
18 #include <linux/slab.h>
19 #include <linux/pci.h>
20 #include <linux/usb.h>
22 #include <linux/usb/hcd.h>
23 #include <linux/usb/ch11.h>
24 #include <linux/platform_device.h>
25 #include <linux/usb/usb_phy_generic.h>
29 static const char dwc2_driver_name
[] = "dwc2-pci";
31 struct dwc2_pci_glue
{
32 struct platform_device
*dwc2
;
33 struct platform_device
*phy
;
37 * dwc2_pci_remove() - Provides the cleanup entry points for the DWC_otg PCI
40 * @pci: The programming view of DWC_otg PCI
42 static void dwc2_pci_remove(struct pci_dev
*pci
)
44 struct dwc2_pci_glue
*glue
= pci_get_drvdata(pci
);
46 platform_device_unregister(glue
->dwc2
);
47 usb_phy_generic_unregister(glue
->phy
);
48 pci_set_drvdata(pci
, NULL
);
51 static int dwc2_pci_probe(struct pci_dev
*pci
,
52 const struct pci_device_id
*id
)
54 struct resource res
[2];
55 struct platform_device
*dwc2
;
56 struct platform_device
*phy
;
58 struct device
*dev
= &pci
->dev
;
59 struct dwc2_pci_glue
*glue
;
61 ret
= pcim_enable_device(pci
);
63 dev_err(dev
, "failed to enable pci device\n");
69 phy
= usb_phy_generic_register();
71 dev_err(dev
, "error registering generic PHY (%ld)\n",
76 dwc2
= platform_device_alloc("dwc2", PLATFORM_DEVID_AUTO
);
78 dev_err(dev
, "couldn't allocate dwc2 device\n");
83 memset(res
, 0x00, sizeof(struct resource
) * ARRAY_SIZE(res
));
85 res
[0].start
= pci_resource_start(pci
, 0);
86 res
[0].end
= pci_resource_end(pci
, 0);
88 res
[0].flags
= IORESOURCE_MEM
;
90 res
[1].start
= pci
->irq
;
92 res
[1].flags
= IORESOURCE_IRQ
;
94 ret
= platform_device_add_resources(dwc2
, res
, ARRAY_SIZE(res
));
96 dev_err(dev
, "couldn't add resources to dwc2 device\n");
100 dwc2
->dev
.parent
= dev
;
102 glue
= devm_kzalloc(dev
, sizeof(*glue
), GFP_KERNEL
);
108 ret
= platform_device_add(dwc2
);
110 dev_err(dev
, "failed to register dwc2 device\n");
116 pci_set_drvdata(pci
, glue
);
120 usb_phy_generic_unregister(phy
);
121 platform_device_put(dwc2
);
125 static struct pci_driver dwc2_pci_driver
= {
126 .name
= dwc2_driver_name
,
127 .id_table
= dwc2_pci_ids
,
128 .probe
= dwc2_pci_probe
,
129 .remove
= dwc2_pci_remove
,
132 module_pci_driver(dwc2_pci_driver
);
134 MODULE_DESCRIPTION("DESIGNWARE HS OTG PCI Bus Glue");
135 MODULE_AUTHOR("Synopsys, Inc.");
136 MODULE_LICENSE("Dual BSD/GPL");