Home
last modified time | relevance | path

Searched refs:utmi_clk (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.4/drivers/usb/host/
Dxhci-histb.c38 struct clk *utmi_clk; member
94 histb->utmi_clk = devm_clk_get(dev, "utmi"); in xhci_histb_clks_get()
95 if (IS_ERR(histb->utmi_clk)) { in xhci_histb_clks_get()
97 return PTR_ERR(histb->utmi_clk); in xhci_histb_clks_get()
125 ret = clk_prepare_enable(histb->utmi_clk); in xhci_histb_host_enable()
150 clk_disable_unprepare(histb->utmi_clk); in xhci_histb_host_enable()
163 clk_disable_unprepare(histb->utmi_clk); in xhci_histb_host_disable()
/Linux-v5.4/drivers/mfd/
Domap-usb-host.c87 struct clk **utmi_clk; member
314 if (!IS_ERR(omap->utmi_clk[i])) { in usbhs_runtime_resume()
315 r = clk_prepare_enable(omap->utmi_clk[i]); in usbhs_runtime_resume()
350 if (!IS_ERR(omap->utmi_clk[i])) in usbhs_runtime_suspend()
351 clk_disable_unprepare(omap->utmi_clk[i]); in usbhs_runtime_suspend()
617 omap->utmi_clk = devm_kzalloc(dev, i, GFP_KERNEL); in usbhs_omap_probe()
621 if (!omap->utmi_clk || !omap->hsic480m_clk || !omap->hsic60m_clk) { in usbhs_omap_probe()
636 omap->utmi_clk[i] = ERR_PTR(-ENODEV); in usbhs_omap_probe()
712 omap->utmi_clk[i] = devm_clk_get(dev, clkname); in usbhs_omap_probe()
713 if (IS_ERR(omap->utmi_clk[i])) { in usbhs_omap_probe()
[all …]