Lines Matching refs:xhci
67 static void xhci_plat_quirks(struct device *dev, struct xhci_hcd *xhci) in xhci_plat_quirks() argument
69 struct xhci_plat_priv *priv = xhci_to_priv(xhci); in xhci_plat_quirks()
76 xhci->quirks |= XHCI_PLAT | priv->quirks; in xhci_plat_quirks()
161 struct xhci_hcd *xhci; in xhci_plat_probe() local
232 xhci = hcd_to_xhci(hcd); in xhci_plat_probe()
238 xhci->reg_clk = devm_clk_get_optional(&pdev->dev, "reg"); in xhci_plat_probe()
239 if (IS_ERR(xhci->reg_clk)) { in xhci_plat_probe()
240 ret = PTR_ERR(xhci->reg_clk); in xhci_plat_probe()
244 ret = clk_prepare_enable(xhci->reg_clk); in xhci_plat_probe()
248 xhci->clk = devm_clk_get_optional(&pdev->dev, NULL); in xhci_plat_probe()
249 if (IS_ERR(xhci->clk)) { in xhci_plat_probe()
250 ret = PTR_ERR(xhci->clk); in xhci_plat_probe()
254 ret = clk_prepare_enable(xhci->clk); in xhci_plat_probe()
269 xhci->main_hcd = hcd; in xhci_plat_probe()
270 xhci->shared_hcd = __usb_create_hcd(driver, sysdev, &pdev->dev, in xhci_plat_probe()
272 if (!xhci->shared_hcd) { in xhci_plat_probe()
278 xhci->imod_interval = 40000; in xhci_plat_probe()
284 xhci->quirks |= XHCI_HW_LPM_DISABLE; in xhci_plat_probe()
287 xhci->quirks |= XHCI_LPM_SUPPORT; in xhci_plat_probe()
290 xhci->quirks |= XHCI_BROKEN_PORT_PED; in xhci_plat_probe()
293 &xhci->imod_interval); in xhci_plat_probe()
309 xhci->shared_hcd->tpl_support = hcd->tpl_support; in xhci_plat_probe()
314 if (HCC_MAX_PSA(xhci->hcc_params) >= 4) in xhci_plat_probe()
315 xhci->shared_hcd->can_do_streams = 1; in xhci_plat_probe()
317 ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED); in xhci_plat_probe()
340 usb_put_hcd(xhci->shared_hcd); in xhci_plat_probe()
343 clk_disable_unprepare(xhci->clk); in xhci_plat_probe()
346 clk_disable_unprepare(xhci->reg_clk); in xhci_plat_probe()
361 struct xhci_hcd *xhci = hcd_to_xhci(hcd); in xhci_plat_remove() local
362 struct clk *clk = xhci->clk; in xhci_plat_remove()
363 struct clk *reg_clk = xhci->reg_clk; in xhci_plat_remove()
364 struct usb_hcd *shared_hcd = xhci->shared_hcd; in xhci_plat_remove()
366 xhci->xhc_state |= XHCI_STATE_REMOVING; in xhci_plat_remove()
369 xhci->shared_hcd = NULL; in xhci_plat_remove()
388 struct xhci_hcd *xhci = hcd_to_xhci(hcd); in xhci_plat_suspend() local
398 return xhci_suspend(xhci, device_may_wakeup(dev)); in xhci_plat_suspend()
404 struct xhci_hcd *xhci = hcd_to_xhci(hcd); in xhci_plat_resume() local
411 return xhci_resume(xhci, 0); in xhci_plat_resume()
417 struct xhci_hcd *xhci = hcd_to_xhci(hcd); in xhci_plat_runtime_suspend() local
419 return xhci_suspend(xhci, true); in xhci_plat_runtime_suspend()
425 struct xhci_hcd *xhci = hcd_to_xhci(hcd); in xhci_plat_runtime_resume() local
427 return xhci_resume(xhci, 0); in xhci_plat_runtime_resume()