Lines Matching refs:phy
160 struct phy *phy; in dwc2_driver_probe() local
223 phy = devm_phy_get(&dev->dev, "usb2-phy"); in dwc2_driver_probe()
224 if (IS_ERR(phy)) { in dwc2_driver_probe()
225 hsotg->phy = NULL; in dwc2_driver_probe()
232 hsotg->phy = phy; in dwc2_driver_probe()
233 phy_power_on(hsotg->phy); in dwc2_driver_probe()
234 phy_init(hsotg->phy); in dwc2_driver_probe()
272 phy_exit(dwc2->phy); in dwc2_suspend()
273 phy_power_off(dwc2->phy); in dwc2_suspend()
287 phy_power_on(dwc2->phy); in dwc2_resume()
288 phy_init(dwc2->phy); in dwc2_resume()