Home
last modified time | relevance | path

Searched refs:pipe_clk (Results 1 – 10 of 10) sorted by relevance

/linux/drivers/phy/qualcomm/
H A Dphy-qcom-pcie2.c47 struct clk *pipe_clk; member
155 clk_set_rate(qphy->pipe_clk, 250000000); in qcom_pcie2_phy_power_on()
157 ret = clk_prepare_enable(qphy->pipe_clk); in qcom_pcie2_phy_power_on()
181 clk_disable_unprepare(qphy->pipe_clk); in qcom_pcie2_phy_power_off()
219 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+
272 dev_err(dev, "failed to register pipe_clk\n"); in qcom_pcie2_phy_probe()
282 qphy->pipe_clk = devm_clk_get(dev, NULL); in qcom_pcie2_phy_probe()
283 if (IS_ERR(qphy->pipe_clk)) { in qcom_pcie2_phy_probe()
285 return PTR_ERR(qphy->pipe_clk); in qcom_pcie2_phy_probe()
H A Dphy-qcom-qmp-usbc.c336 struct clk *pipe_clk; member
532 ret = clk_prepare_enable(qmp->pipe_clk); in qmp_usbc_power_on()
534 dev_err(qmp->dev, "pipe_clk enable failed err=%d\n", ret); in qmp_usbc_power_on()
564 clk_disable_unprepare(qmp->pipe_clk); in qmp_usbc_power_on()
574 clk_disable_unprepare(qmp->pipe_clk); in qmp_usbc_power_off()
700 clk_disable_unprepare(qmp->pipe_clk); in qmp_usbc_runtime_suspend()
722 ret = clk_prepare_enable(qmp->pipe_clk); in qmp_usbc_runtime_resume()
724 dev_err(dev, "pipe_clk enable failed, err=%d\n", ret); in qmp_usbc_runtime_resume()
818 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+
952 qmp->pipe_clk in qmp_usbc_parse_dt_legacy()
[all...]
H A Dphy-qcom-qmp-pcie-msm8996.c177 * @pipe_clk: pipe clock
189 struct clk *pipe_clk; member
427 ret = clk_prepare_enable(qphy->pipe_clk); in qmp_pcie_msm8996_power_on()
429 dev_err(qmp->dev, "pipe_clk enable failed err=%d\n", ret); in qmp_pcie_msm8996_power_on()
465 clk_disable_unprepare(qphy->pipe_clk); in qmp_pcie_msm8996_power_on()
477 clk_disable_unprepare(qphy->pipe_clk); in qmp_pcie_msm8996_power_off()
601 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+
683 qphy->pipe_clk = devm_get_clk_from_child(dev, np, NULL); in qmp_pcie_msm8996_create()
684 if (IS_ERR(qphy->pipe_clk)) { in qmp_pcie_msm8996_create()
685 return dev_err_probe(dev, PTR_ERR(qphy->pipe_clk), in qmp_pcie_msm8996_create()
[all...]
/linux/drivers/usb/host/
H A Dxhci-histb.c39 struct clk *pipe_clk; member
100 histb->pipe_clk = devm_clk_get(dev, "pipe"); in xhci_histb_clks_get()
101 if (IS_ERR(histb->pipe_clk)) { in xhci_histb_clks_get()
103 return PTR_ERR(histb->pipe_clk); in xhci_histb_clks_get()
131 ret = clk_prepare_enable(histb->pipe_clk); in xhci_histb_host_enable()
148 clk_disable_unprepare(histb->pipe_clk); in xhci_histb_host_enable()
162 clk_disable_unprepare(histb->pipe_clk); in xhci_histb_host_disable()
/linux/drivers/gpu/drm/exynos/
H A Dexynos_drm_drv.h167 * @pipe_clk: A pointer to the crtc's pipeline clock.
174 struct exynos_drm_clk *pipe_clk; member
181 if (crtc->pipe_clk) in exynos_drm_pipe_clk_enable()
182 crtc->pipe_clk->enable(crtc->pipe_clk, enable); in exynos_drm_pipe_clk_enable()
H A Dexynos_drm_fimd.c1147 ctx->crtc->pipe_clk = &ctx->dp_clk; in fimd_bind()
H A Dexynos_hdmi.c1876 crtc->pipe_clk = &hdata->phy_clk; in hdmi_bind()
/linux/drivers/pci/controller/dwc/
H A Dpcie-histb.c55 struct clk *pipe_clk; member
208 clk_disable_unprepare(hipcie->pipe_clk); in histb_pcie_host_disable()
250 ret = clk_prepare_enable(hipcie->pipe_clk); in histb_pcie_host_enable()
274 clk_disable_unprepare(hipcie->pipe_clk); in histb_pcie_host_enable()
354 hipcie->pipe_clk = devm_clk_get(dev, "pipe"); in histb_pcie_probe()
355 if (IS_ERR(hipcie->pipe_clk)) { in histb_pcie_probe()
357 return PTR_ERR(hipcie->pipe_clk); in histb_pcie_probe()
/linux/drivers/usb/dwc3/
H A Dcore.c951 ret = clk_prepare_enable(dwc->pipe_clk); in dwc3_clk_enable()
970 clk_disable_unprepare(dwc->pipe_clk); in dwc3_clk_disable()
2090 dwc->pipe_clk = devm_clk_get_optional(dev, "pipe"); in dwc3_get_clocks()
2091 if (IS_ERR(dwc->pipe_clk)) { in dwc3_get_clocks()
2092 return dev_err_probe(dev, PTR_ERR(dwc->pipe_clk), in dwc3_get_clocks()
H A Dcore.h1019 * @pipe_clk: clock used for USB3 PHY communication
1204 struct clk *pipe_clk; member