Lines Matching full:dwc3
3 * dwc3-pci.c - PCI Specific glue layer
56 * @dwc3: child dwc3 platform_device
63 struct platform_device *dwc3; member
212 struct platform_device *dwc3 = dwc->dwc3; in dwc3_pci_resume_work() local
215 ret = pm_runtime_get_sync(&dwc3->dev); in dwc3_pci_resume_work()
217 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
221 pm_runtime_mark_last_busy(&dwc3->dev); in dwc3_pci_resume_work()
222 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
246 dwc->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); in dwc3_pci_probe()
247 if (!dwc->dwc3) in dwc3_pci_probe()
261 ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res)); in dwc3_pci_probe()
263 dev_err(dev, "couldn't add resources to dwc3 device\n"); in dwc3_pci_probe()
268 dwc->dwc3->dev.parent = dev; in dwc3_pci_probe()
269 ACPI_COMPANION_SET(&dwc->dwc3->dev, ACPI_COMPANION(dev)); in dwc3_pci_probe()
271 ret = platform_device_add_properties(dwc->dwc3, p); in dwc3_pci_probe()
279 ret = platform_device_add(dwc->dwc3); in dwc3_pci_probe()
281 dev_err(dev, "failed to register dwc3 device\n"); in dwc3_pci_probe()
294 platform_device_put(dwc->dwc3); in dwc3_pci_probe()
310 platform_device_unregister(dwc->dwc3); in dwc3_pci_remove()
458 .name = "dwc3-pci",