Searched full:pipe_clk (Results 1 – 11 of 11) sorted by relevance
| /linux/drivers/phy/qualcomm/ |
| H A D | phy-qcom-pcie2.c | 47 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 D | phy-qcom-qmp-pcie-msm8996.c | 177 * @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()
|
| H A D | phy-qcom-qmp-usb-legacy.c | 538 struct clk *pipe_clk; member 836 ret = clk_prepare_enable(qmp->pipe_clk); in qmp_usb_legacy_power_on() 838 dev_err(qmp->dev, "pipe_clk enable failed err=%d\n", ret); in qmp_usb_legacy_power_on() 870 clk_disable_unprepare(qmp->pipe_clk); in qmp_usb_legacy_power_on() 880 clk_disable_unprepare(qmp->pipe_clk); in qmp_usb_legacy_power_off() 998 clk_disable_unprepare(qmp->pipe_clk); in qmp_usb_legacy_runtime_suspend() 1021 ret = clk_prepare_enable(qmp->pipe_clk); in qmp_usb_legacy_runtime_resume() 1023 dev_err(dev, "pipe_clk enable failed, err=%d\n", ret); in qmp_usb_legacy_runtime_resume() 1113 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+ 1199 qmp->pipe_clk = devm_get_clk_from_child(dev, np, NULL); in qmp_usb_legacy_parse_dt_legacy() [all …]
|
| H A D | phy-qcom-qmp-usbc.c | 447 struct clk *pipe_clk; member 1013 ret = clk_prepare_enable(qmp->pipe_clk); in qmp_usbc_usb_power_on() 1015 dev_err(qmp->dev, "pipe_clk enable failed err=%d\n", ret); in qmp_usbc_usb_power_on() 1045 clk_disable_unprepare(qmp->pipe_clk); in qmp_usbc_usb_power_on() 1055 clk_disable_unprepare(qmp->pipe_clk); in qmp_usbc_usb_power_off() 1375 clk_disable_unprepare(qmp->pipe_clk); in qmp_usbc_runtime_suspend() 1397 ret = clk_prepare_enable(qmp->pipe_clk); in qmp_usbc_runtime_resume() 1399 dev_err(dev, "pipe_clk enable failed, err=%d\n", ret); in qmp_usbc_runtime_resume() 1490 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+ 1504 snprintf(name, sizeof(name), "%s::pipe_clk", dev_name(qmp->dev)); in phy_pipe_clk_register() [all …]
|
| H A D | phy-qcom-uniphy-pcie-28lp.c | 235 * I/P---^-->| PLL |---^--->pipe_clksrc--->| GCC |--->pipe_clk---+
|
| /linux/drivers/pci/controller/dwc/ |
| H A D | pcie-histb.c | 55 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 D | core.c | 972 ret = clk_prepare_enable(dwc->pipe_clk); in dwc3_clk_enable() 991 clk_disable_unprepare(dwc->pipe_clk); in dwc3_clk_disable() 2123 dwc->pipe_clk = devm_clk_get_optional(dev, "pipe"); in dwc3_get_clocks() 2124 if (IS_ERR(dwc->pipe_clk)) { in dwc3_get_clocks() 2125 return dev_err_probe(dev, PTR_ERR(dwc->pipe_clk), in dwc3_get_clocks()
|
| H A D | dwc3-qcom-legacy.c | 788 * Disable pipe_clk requirement if specified. Used when dwc3 in dwc3_qcom_probe()
|
| /linux/Documentation/devicetree/bindings/usb/ |
| H A D | qcom,dwc3.yaml | 149 If present, disable USB3 pipe_clk requirement.
|
| /linux/drivers/gpu/drm/exynos/ |
| H A D | exynos_hdmi.c | 1876 crtc->pipe_clk = &hdata->phy_clk; in hdmi_bind()
|
| /linux/drivers/phy/samsung/ |
| H A D | phy-exynos5-usbdrd.c | 2456 /* Pclk to pipe_clk */ in exynosautov920_usbdrd_utmi_init()
|