Lines Matching +full:remote +full:- +full:wakeup +full:- +full:connected
1 // SPDX-License-Identifier: GPL-2.0
4 * Inspired by dwc3-of-simple.c
123 dwc3_qcom_setbits(qcom->qscratch_base, QSCRATCH_SS_PHY_CTRL, in dwc3_qcom_vbus_override_enable()
125 dwc3_qcom_setbits(qcom->qscratch_base, QSCRATCH_HS_PHY_CTRL, in dwc3_qcom_vbus_override_enable()
128 dwc3_qcom_clrbits(qcom->qscratch_base, QSCRATCH_SS_PHY_CTRL, in dwc3_qcom_vbus_override_enable()
130 dwc3_qcom_clrbits(qcom->qscratch_base, QSCRATCH_HS_PHY_CTRL, in dwc3_qcom_vbus_override_enable()
142 qcom->mode = event ? USB_DR_MODE_PERIPHERAL : USB_DR_MODE_HOST; in dwc3_qcom_vbus_notifier()
154 qcom->mode = event ? USB_DR_MODE_HOST : USB_DR_MODE_PERIPHERAL; in dwc3_qcom_host_notifier()
161 struct device *dev = qcom->dev; in dwc3_qcom_register_extcon()
165 if (!of_property_read_bool(dev->of_node, "extcon")) in dwc3_qcom_register_extcon()
168 qcom->edev = extcon_get_edev_by_phandle(dev, 0); in dwc3_qcom_register_extcon()
169 if (IS_ERR(qcom->edev)) in dwc3_qcom_register_extcon()
170 return dev_err_probe(dev, PTR_ERR(qcom->edev), in dwc3_qcom_register_extcon()
173 qcom->vbus_nb.notifier_call = dwc3_qcom_vbus_notifier; in dwc3_qcom_register_extcon()
175 qcom->host_edev = extcon_get_edev_by_phandle(dev, 1); in dwc3_qcom_register_extcon()
176 if (IS_ERR(qcom->host_edev)) in dwc3_qcom_register_extcon()
177 qcom->host_edev = NULL; in dwc3_qcom_register_extcon()
179 ret = devm_extcon_register_notifier(dev, qcom->edev, EXTCON_USB, in dwc3_qcom_register_extcon()
180 &qcom->vbus_nb); in dwc3_qcom_register_extcon()
186 if (qcom->host_edev) in dwc3_qcom_register_extcon()
187 host_edev = qcom->host_edev; in dwc3_qcom_register_extcon()
189 host_edev = qcom->edev; in dwc3_qcom_register_extcon()
191 qcom->host_nb.notifier_call = dwc3_qcom_host_notifier; in dwc3_qcom_register_extcon()
193 &qcom->host_nb); in dwc3_qcom_register_extcon()
200 if (extcon_get_state(qcom->edev, EXTCON_USB) || in dwc3_qcom_register_extcon()
202 dwc3_qcom_vbus_notifier(&qcom->vbus_nb, true, qcom->edev); in dwc3_qcom_register_extcon()
204 dwc3_qcom_vbus_notifier(&qcom->vbus_nb, false, qcom->edev); in dwc3_qcom_register_extcon()
213 ret = icc_enable(qcom->icc_path_ddr); in dwc3_qcom_interconnect_enable()
217 ret = icc_enable(qcom->icc_path_apps); in dwc3_qcom_interconnect_enable()
219 icc_disable(qcom->icc_path_ddr); in dwc3_qcom_interconnect_enable()
228 ret = icc_disable(qcom->icc_path_ddr); in dwc3_qcom_interconnect_disable()
232 ret = icc_disable(qcom->icc_path_apps); in dwc3_qcom_interconnect_disable()
234 icc_enable(qcom->icc_path_ddr); in dwc3_qcom_interconnect_disable()
240 * dwc3_qcom_interconnect_init() - Get interconnect path handles
248 struct device *dev = qcom->dev; in dwc3_qcom_interconnect_init()
254 qcom->icc_path_ddr = of_icc_get(dev, "usb-ddr"); in dwc3_qcom_interconnect_init()
255 if (IS_ERR(qcom->icc_path_ddr)) { in dwc3_qcom_interconnect_init()
256 return dev_err_probe(dev, PTR_ERR(qcom->icc_path_ddr), in dwc3_qcom_interconnect_init()
257 "failed to get usb-ddr path\n"); in dwc3_qcom_interconnect_init()
260 qcom->icc_path_apps = of_icc_get(dev, "apps-usb"); in dwc3_qcom_interconnect_init()
261 if (IS_ERR(qcom->icc_path_apps)) { in dwc3_qcom_interconnect_init()
262 ret = dev_err_probe(dev, PTR_ERR(qcom->icc_path_apps), in dwc3_qcom_interconnect_init()
263 "failed to get apps-usb path\n"); in dwc3_qcom_interconnect_init()
267 max_speed = usb_get_maximum_speed(&qcom->dwc3->dev); in dwc3_qcom_interconnect_init()
269 ret = icc_set_bw(qcom->icc_path_ddr, in dwc3_qcom_interconnect_init()
272 ret = icc_set_bw(qcom->icc_path_ddr, in dwc3_qcom_interconnect_init()
276 dev_err(dev, "failed to set bandwidth for usb-ddr path: %d\n", ret); in dwc3_qcom_interconnect_init()
280 ret = icc_set_bw(qcom->icc_path_apps, APPS_USB_AVG_BW, APPS_USB_PEAK_BW); in dwc3_qcom_interconnect_init()
282 dev_err(dev, "failed to set bandwidth for apps-usb path: %d\n", ret); in dwc3_qcom_interconnect_init()
289 icc_put(qcom->icc_path_apps); in dwc3_qcom_interconnect_init()
291 icc_put(qcom->icc_path_ddr); in dwc3_qcom_interconnect_init()
296 * dwc3_qcom_interconnect_exit() - Release interconnect path handles
303 icc_put(qcom->icc_path_ddr); in dwc3_qcom_interconnect_exit()
304 icc_put(qcom->icc_path_apps); in dwc3_qcom_interconnect_exit()
315 dwc = platform_get_drvdata(qcom->dwc3); in dwc3_qcom_is_host()
321 return dwc->xhci; in dwc3_qcom_is_host()
326 struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3); in dwc3_qcom_read_usb2_speed()
333 hcd = platform_get_drvdata(dwc->xhci); in dwc3_qcom_read_usb2_speed()
342 udev = usb_hub_find_child(hcd->self.root_hub, 1); in dwc3_qcom_read_usb2_speed()
349 return udev->speed; in dwc3_qcom_read_usb2_speed()
375 dwc3_qcom_disable_wakeup_irq(qcom->hs_phy_irq); in dwc3_qcom_disable_interrupts()
377 if (qcom->usb2_speed == USB_SPEED_LOW) { in dwc3_qcom_disable_interrupts()
378 dwc3_qcom_disable_wakeup_irq(qcom->dm_hs_phy_irq); in dwc3_qcom_disable_interrupts()
379 } else if ((qcom->usb2_speed == USB_SPEED_HIGH) || in dwc3_qcom_disable_interrupts()
380 (qcom->usb2_speed == USB_SPEED_FULL)) { in dwc3_qcom_disable_interrupts()
381 dwc3_qcom_disable_wakeup_irq(qcom->dp_hs_phy_irq); in dwc3_qcom_disable_interrupts()
383 dwc3_qcom_disable_wakeup_irq(qcom->dp_hs_phy_irq); in dwc3_qcom_disable_interrupts()
384 dwc3_qcom_disable_wakeup_irq(qcom->dm_hs_phy_irq); in dwc3_qcom_disable_interrupts()
387 dwc3_qcom_disable_wakeup_irq(qcom->ss_phy_irq); in dwc3_qcom_disable_interrupts()
392 dwc3_qcom_enable_wakeup_irq(qcom->hs_phy_irq, 0); in dwc3_qcom_enable_interrupts()
396 * the root hub port. When HS/FS device is connected, configure the DP line in dwc3_qcom_enable_interrupts()
397 * as falling edge to detect both disconnect and remote wakeup scenarios. When in dwc3_qcom_enable_interrupts()
398 * LS device is connected, configure DM line as falling edge to detect both in dwc3_qcom_enable_interrupts()
399 * disconnect and remote wakeup. When no device is connected, configure both in dwc3_qcom_enable_interrupts()
403 if (qcom->usb2_speed == USB_SPEED_LOW) { in dwc3_qcom_enable_interrupts()
404 dwc3_qcom_enable_wakeup_irq(qcom->dm_hs_phy_irq, in dwc3_qcom_enable_interrupts()
406 } else if ((qcom->usb2_speed == USB_SPEED_HIGH) || in dwc3_qcom_enable_interrupts()
407 (qcom->usb2_speed == USB_SPEED_FULL)) { in dwc3_qcom_enable_interrupts()
408 dwc3_qcom_enable_wakeup_irq(qcom->dp_hs_phy_irq, in dwc3_qcom_enable_interrupts()
411 dwc3_qcom_enable_wakeup_irq(qcom->dp_hs_phy_irq, in dwc3_qcom_enable_interrupts()
413 dwc3_qcom_enable_wakeup_irq(qcom->dm_hs_phy_irq, in dwc3_qcom_enable_interrupts()
417 dwc3_qcom_enable_wakeup_irq(qcom->ss_phy_irq, 0); in dwc3_qcom_enable_interrupts()
420 static int dwc3_qcom_suspend(struct dwc3_qcom *qcom, bool wakeup) in dwc3_qcom_suspend() argument
425 if (qcom->is_suspended) in dwc3_qcom_suspend()
428 val = readl(qcom->qscratch_base + PWR_EVNT_IRQ_STAT_REG); in dwc3_qcom_suspend()
430 dev_err(qcom->dev, "HS-PHY not in L2\n"); in dwc3_qcom_suspend()
432 for (i = qcom->num_clocks - 1; i >= 0; i--) in dwc3_qcom_suspend()
433 clk_disable_unprepare(qcom->clks[i]); in dwc3_qcom_suspend()
437 dev_warn(qcom->dev, "failed to disable interconnect: %d\n", ret); in dwc3_qcom_suspend()
443 if (dwc3_qcom_is_host(qcom) && wakeup) { in dwc3_qcom_suspend()
444 qcom->usb2_speed = dwc3_qcom_read_usb2_speed(qcom); in dwc3_qcom_suspend()
448 qcom->is_suspended = true; in dwc3_qcom_suspend()
453 static int dwc3_qcom_resume(struct dwc3_qcom *qcom, bool wakeup) in dwc3_qcom_resume() argument
458 if (!qcom->is_suspended) in dwc3_qcom_resume()
461 if (dwc3_qcom_is_host(qcom) && wakeup) in dwc3_qcom_resume()
464 for (i = 0; i < qcom->num_clocks; i++) { in dwc3_qcom_resume()
465 ret = clk_prepare_enable(qcom->clks[i]); in dwc3_qcom_resume()
467 while (--i >= 0) in dwc3_qcom_resume()
468 clk_disable_unprepare(qcom->clks[i]); in dwc3_qcom_resume()
475 dev_warn(qcom->dev, "failed to enable interconnect: %d\n", ret); in dwc3_qcom_resume()
478 dwc3_qcom_setbits(qcom->qscratch_base, PWR_EVNT_IRQ_STAT_REG, in dwc3_qcom_resume()
481 qcom->is_suspended = false; in dwc3_qcom_resume()
489 struct dwc3 *dwc = platform_get_drvdata(qcom->dwc3); in qcom_dwc3_resume_irq()
492 if (qcom->pm_suspended) in qcom_dwc3_resume_irq()
497 * and the wakeup interrupts are disabled as part of resume. in qcom_dwc3_resume_irq()
500 pm_runtime_resume(&dwc->xhci->dev); in qcom_dwc3_resume_irq()
508 dwc3_qcom_setbits(qcom->qscratch_base, QSCRATCH_GENERAL_CFG, in dwc3_qcom_select_utmi_clk()
513 dwc3_qcom_setbits(qcom->qscratch_base, QSCRATCH_GENERAL_CFG, in dwc3_qcom_select_utmi_clk()
518 dwc3_qcom_clrbits(qcom->qscratch_base, QSCRATCH_GENERAL_CFG, in dwc3_qcom_select_utmi_clk()
526 struct platform_device *pdev_irq = qcom->urs_usb ? qcom->urs_usb : pdev; in dwc3_qcom_get_irq()
527 struct device_node *np = pdev->dev.of_node; in dwc3_qcom_get_irq()
541 const struct dwc3_acpi_pdata *pdata = qcom->acpi_pdata; in dwc3_qcom_setup_irq()
546 pdata ? pdata->hs_phy_irq_index : -1); in dwc3_qcom_setup_irq()
548 /* Keep wakeup interrupts disabled until suspend */ in dwc3_qcom_setup_irq()
550 ret = devm_request_threaded_irq(qcom->dev, irq, NULL, in dwc3_qcom_setup_irq()
555 dev_err(qcom->dev, "hs_phy_irq failed: %d\n", ret); in dwc3_qcom_setup_irq()
558 qcom->hs_phy_irq = irq; in dwc3_qcom_setup_irq()
562 pdata ? pdata->dp_hs_phy_irq_index : -1); in dwc3_qcom_setup_irq()
565 ret = devm_request_threaded_irq(qcom->dev, irq, NULL, in dwc3_qcom_setup_irq()
570 dev_err(qcom->dev, "dp_hs_phy_irq failed: %d\n", ret); in dwc3_qcom_setup_irq()
573 qcom->dp_hs_phy_irq = irq; in dwc3_qcom_setup_irq()
577 pdata ? pdata->dm_hs_phy_irq_index : -1); in dwc3_qcom_setup_irq()
580 ret = devm_request_threaded_irq(qcom->dev, irq, NULL, in dwc3_qcom_setup_irq()
585 dev_err(qcom->dev, "dm_hs_phy_irq failed: %d\n", ret); in dwc3_qcom_setup_irq()
588 qcom->dm_hs_phy_irq = irq; in dwc3_qcom_setup_irq()
592 pdata ? pdata->ss_phy_irq_index : -1); in dwc3_qcom_setup_irq()
595 ret = devm_request_threaded_irq(qcom->dev, irq, NULL, in dwc3_qcom_setup_irq()
600 dev_err(qcom->dev, "ss_phy_irq failed: %d\n", ret); in dwc3_qcom_setup_irq()
603 qcom->ss_phy_irq = irq; in dwc3_qcom_setup_irq()
611 struct device *dev = qcom->dev; in dwc3_qcom_clk_init()
612 struct device_node *np = dev->of_node; in dwc3_qcom_clk_init()
621 qcom->num_clocks = count; in dwc3_qcom_clk_init()
623 qcom->clks = devm_kcalloc(dev, qcom->num_clocks, in dwc3_qcom_clk_init()
625 if (!qcom->clks) in dwc3_qcom_clk_init()
626 return -ENOMEM; in dwc3_qcom_clk_init()
628 for (i = 0; i < qcom->num_clocks; i++) { in dwc3_qcom_clk_init()
634 while (--i >= 0) in dwc3_qcom_clk_init()
635 clk_put(qcom->clks[i]); in dwc3_qcom_clk_init()
641 while (--i >= 0) { in dwc3_qcom_clk_init()
642 clk_disable_unprepare(qcom->clks[i]); in dwc3_qcom_clk_init()
643 clk_put(qcom->clks[i]); in dwc3_qcom_clk_init()
650 qcom->clks[i] = clk; in dwc3_qcom_clk_init()
668 struct device *dev = &pdev->dev; in dwc3_qcom_acpi_register_core()
670 struct platform_device *pdev_irq = qcom->urs_usb ? qcom->urs_usb : in dwc3_qcom_acpi_register_core()
675 qcom->dwc3 = platform_device_alloc("dwc3", PLATFORM_DEVID_AUTO); in dwc3_qcom_acpi_register_core()
676 if (!qcom->dwc3) in dwc3_qcom_acpi_register_core()
677 return -ENOMEM; in dwc3_qcom_acpi_register_core()
679 qcom->dwc3->dev.parent = dev; in dwc3_qcom_acpi_register_core()
680 qcom->dwc3->dev.type = dev->type; in dwc3_qcom_acpi_register_core()
681 qcom->dwc3->dev.dma_mask = dev->dma_mask; in dwc3_qcom_acpi_register_core()
682 qcom->dwc3->dev.dma_parms = dev->dma_parms; in dwc3_qcom_acpi_register_core()
683 qcom->dwc3->dev.coherent_dma_mask = dev->coherent_dma_mask; in dwc3_qcom_acpi_register_core()
687 platform_device_put(qcom->dwc3); in dwc3_qcom_acpi_register_core()
688 return -ENOMEM; in dwc3_qcom_acpi_register_core()
693 dev_err(&pdev->dev, "failed to get memory resource\n"); in dwc3_qcom_acpi_register_core()
694 ret = -ENODEV; in dwc3_qcom_acpi_register_core()
698 child_res[0].flags = res->flags; in dwc3_qcom_acpi_register_core()
699 child_res[0].start = res->start; in dwc3_qcom_acpi_register_core()
701 qcom->acpi_pdata->dwc3_core_base_size; in dwc3_qcom_acpi_register_core()
711 ret = platform_device_add_resources(qcom->dwc3, child_res, 2); in dwc3_qcom_acpi_register_core()
713 dev_err(&pdev->dev, "failed to add resources\n"); in dwc3_qcom_acpi_register_core()
717 ret = device_add_software_node(&qcom->dwc3->dev, &dwc3_qcom_swnode); in dwc3_qcom_acpi_register_core()
719 dev_err(&pdev->dev, "failed to add properties\n"); in dwc3_qcom_acpi_register_core()
723 ret = platform_device_add(qcom->dwc3); in dwc3_qcom_acpi_register_core()
725 dev_err(&pdev->dev, "failed to add device\n"); in dwc3_qcom_acpi_register_core()
726 device_remove_software_node(&qcom->dwc3->dev); in dwc3_qcom_acpi_register_core()
733 platform_device_put(qcom->dwc3); in dwc3_qcom_acpi_register_core()
741 struct device_node *np = pdev->dev.of_node, *dwc3_np; in dwc3_qcom_of_register_core()
742 struct device *dev = &pdev->dev; in dwc3_qcom_of_register_core()
748 return -ENODEV; in dwc3_qcom_of_register_core()
753 dev_err(dev, "failed to register dwc3 core - %d\n", ret); in dwc3_qcom_of_register_core()
757 qcom->dwc3 = of_find_device_by_node(dwc3_np); in dwc3_qcom_of_register_core()
758 if (!qcom->dwc3) { in dwc3_qcom_of_register_core()
759 ret = -ENODEV; in dwc3_qcom_of_register_core()
780 ret = sscanf(fwnode_get_name(dev->fwnode), "URS%d", &id); in dwc3_qcom_create_urs_usb_platdev()
786 fwh = fwnode_get_named_child_node(dev->fwnode, name); in dwc3_qcom_create_urs_usb_platdev()
808 struct fwnode_handle *fwh = urs_usb->dev.fwnode; in dwc3_qcom_destroy_urs_usb_platdev()
816 struct device_node *np = pdev->dev.of_node; in dwc3_qcom_probe()
817 struct device *dev = &pdev->dev; in dwc3_qcom_probe()
825 qcom = devm_kzalloc(&pdev->dev, sizeof(*qcom), GFP_KERNEL); in dwc3_qcom_probe()
827 return -ENOMEM; in dwc3_qcom_probe()
830 qcom->dev = &pdev->dev; in dwc3_qcom_probe()
833 qcom->acpi_pdata = acpi_device_get_match_data(dev); in dwc3_qcom_probe()
834 if (!qcom->acpi_pdata) { in dwc3_qcom_probe()
835 dev_err(&pdev->dev, "no supporting ACPI device data\n"); in dwc3_qcom_probe()
836 return -EINVAL; in dwc3_qcom_probe()
840 qcom->resets = devm_reset_control_array_get_optional_exclusive(dev); in dwc3_qcom_probe()
841 if (IS_ERR(qcom->resets)) { in dwc3_qcom_probe()
842 return dev_err_probe(&pdev->dev, PTR_ERR(qcom->resets), in dwc3_qcom_probe()
846 ret = reset_control_assert(qcom->resets); in dwc3_qcom_probe()
848 dev_err(&pdev->dev, "failed to assert resets, err=%d\n", ret); in dwc3_qcom_probe()
854 ret = reset_control_deassert(qcom->resets); in dwc3_qcom_probe()
856 dev_err(&pdev->dev, "failed to deassert resets, err=%d\n", ret); in dwc3_qcom_probe()
874 parent_res->start = res->start + in dwc3_qcom_probe()
875 qcom->acpi_pdata->qscratch_base_offset; in dwc3_qcom_probe()
876 parent_res->end = parent_res->start + in dwc3_qcom_probe()
877 qcom->acpi_pdata->qscratch_base_size; in dwc3_qcom_probe()
879 if (qcom->acpi_pdata->is_urs) { in dwc3_qcom_probe()
880 qcom->urs_usb = dwc3_qcom_create_urs_usb_platdev(dev); in dwc3_qcom_probe()
881 if (IS_ERR_OR_NULL(qcom->urs_usb)) { in dwc3_qcom_probe()
883 if (!qcom->urs_usb) in dwc3_qcom_probe()
884 ret = -ENODEV; in dwc3_qcom_probe()
886 ret = PTR_ERR(qcom->urs_usb); in dwc3_qcom_probe()
892 qcom->qscratch_base = devm_ioremap_resource(dev, parent_res); in dwc3_qcom_probe()
893 if (IS_ERR(qcom->qscratch_base)) { in dwc3_qcom_probe()
894 ret = PTR_ERR(qcom->qscratch_base); in dwc3_qcom_probe()
909 "qcom,select-utmi-as-pipe-clk"); in dwc3_qcom_probe()
927 qcom->mode = usb_get_dr_mode(&qcom->dwc3->dev); in dwc3_qcom_probe()
930 if (qcom->mode != USB_DR_MODE_HOST) in dwc3_qcom_probe()
938 wakeup_source = of_property_read_bool(dev->of_node, "wakeup-source"); in dwc3_qcom_probe()
939 device_init_wakeup(&pdev->dev, wakeup_source); in dwc3_qcom_probe()
940 device_init_wakeup(&qcom->dwc3->dev, wakeup_source); in dwc3_qcom_probe()
942 qcom->is_suspended = false; in dwc3_qcom_probe()
953 of_platform_depopulate(&pdev->dev); in dwc3_qcom_probe()
955 device_remove_software_node(&qcom->dwc3->dev); in dwc3_qcom_probe()
956 platform_device_del(qcom->dwc3); in dwc3_qcom_probe()
958 platform_device_put(qcom->dwc3); in dwc3_qcom_probe()
960 if (qcom->urs_usb) in dwc3_qcom_probe()
961 dwc3_qcom_destroy_urs_usb_platdev(qcom->urs_usb); in dwc3_qcom_probe()
963 for (i = qcom->num_clocks - 1; i >= 0; i--) { in dwc3_qcom_probe()
964 clk_disable_unprepare(qcom->clks[i]); in dwc3_qcom_probe()
965 clk_put(qcom->clks[i]); in dwc3_qcom_probe()
968 reset_control_assert(qcom->resets); in dwc3_qcom_probe()
976 struct device_node *np = pdev->dev.of_node; in dwc3_qcom_remove()
977 struct device *dev = &pdev->dev; in dwc3_qcom_remove()
981 of_platform_depopulate(&pdev->dev); in dwc3_qcom_remove()
983 device_remove_software_node(&qcom->dwc3->dev); in dwc3_qcom_remove()
984 platform_device_del(qcom->dwc3); in dwc3_qcom_remove()
986 platform_device_put(qcom->dwc3); in dwc3_qcom_remove()
988 if (qcom->urs_usb) in dwc3_qcom_remove()
989 dwc3_qcom_destroy_urs_usb_platdev(qcom->urs_usb); in dwc3_qcom_remove()
991 for (i = qcom->num_clocks - 1; i >= 0; i--) { in dwc3_qcom_remove()
992 clk_disable_unprepare(qcom->clks[i]); in dwc3_qcom_remove()
993 clk_put(qcom->clks[i]); in dwc3_qcom_remove()
995 qcom->num_clocks = 0; in dwc3_qcom_remove()
998 reset_control_assert(qcom->resets); in dwc3_qcom_remove()
1007 bool wakeup = device_may_wakeup(dev); in dwc3_qcom_pm_suspend() local
1010 ret = dwc3_qcom_suspend(qcom, wakeup); in dwc3_qcom_pm_suspend()
1014 qcom->pm_suspended = true; in dwc3_qcom_pm_suspend()
1022 bool wakeup = device_may_wakeup(dev); in dwc3_qcom_pm_resume() local
1025 ret = dwc3_qcom_resume(qcom, wakeup); in dwc3_qcom_pm_resume()
1029 qcom->pm_suspended = false; in dwc3_qcom_pm_resume()
1096 .name = "dwc3-qcom",