Lines Matching full:dwc3
3 * dwc3-pci.c - PCI Specific glue layer
56 * @dwc3: child dwc3 platform_device
63 struct platform_device *dwc3; member
214 struct platform_device *dwc3 = dwc->dwc3; in dwc3_pci_resume_work() local
217 ret = pm_runtime_get_sync(&dwc3->dev); in dwc3_pci_resume_work()
219 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
223 pm_runtime_mark_last_busy(&dwc3->dev); in dwc3_pci_resume_work()
224 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
248 dwc->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); in dwc3_pci_probe()
249 if (!dwc->dwc3) in dwc3_pci_probe()
263 ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res)); in dwc3_pci_probe()
265 dev_err(dev, "couldn't add resources to dwc3 device\n"); in dwc3_pci_probe()
270 dwc->dwc3->dev.parent = dev; in dwc3_pci_probe()
271 ACPI_COMPANION_SET(&dwc->dwc3->dev, ACPI_COMPANION(dev)); in dwc3_pci_probe()
273 ret = platform_device_add_properties(dwc->dwc3, p); in dwc3_pci_probe()
281 ret = platform_device_add(dwc->dwc3); in dwc3_pci_probe()
283 dev_err(dev, "failed to register dwc3 device\n"); in dwc3_pci_probe()
296 platform_device_put(dwc->dwc3); in dwc3_pci_probe()
312 platform_device_unregister(dwc->dwc3); in dwc3_pci_remove()
460 .name = "dwc3-pci",