Lines Matching full:dwc3
3 * dwc3-pci.c - PCI Specific glue layer
51 * @dwc3: child dwc3 platform_device
58 struct platform_device *dwc3; member
203 struct platform_device *dwc3 = dwc->dwc3; in dwc3_pci_resume_work() local
206 ret = pm_runtime_get_sync(&dwc3->dev); in dwc3_pci_resume_work()
208 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
212 pm_runtime_mark_last_busy(&dwc3->dev); in dwc3_pci_resume_work()
213 pm_runtime_put_sync_autosuspend(&dwc3->dev); in dwc3_pci_resume_work()
237 dwc->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); in dwc3_pci_probe()
238 if (!dwc->dwc3) in dwc3_pci_probe()
252 ret = platform_device_add_resources(dwc->dwc3, res, ARRAY_SIZE(res)); in dwc3_pci_probe()
254 dev_err(dev, "couldn't add resources to dwc3 device\n"); in dwc3_pci_probe()
259 dwc->dwc3->dev.parent = dev; in dwc3_pci_probe()
260 ACPI_COMPANION_SET(&dwc->dwc3->dev, ACPI_COMPANION(dev)); in dwc3_pci_probe()
262 ret = platform_device_add_properties(dwc->dwc3, p); in dwc3_pci_probe()
270 ret = platform_device_add(dwc->dwc3); in dwc3_pci_probe()
272 dev_err(dev, "failed to register dwc3 device\n"); in dwc3_pci_probe()
285 platform_device_put(dwc->dwc3); in dwc3_pci_probe()
301 platform_device_unregister(dwc->dwc3); in dwc3_pci_remove()
434 .name = "dwc3-pci",