Home
last modified time | relevance | path

Searched refs:phy_clk (Results 1 – 15 of 15) sorted by relevance

/linux-6.3-rc2/drivers/phy/
A Dphy-pistachio-usb.c37 struct clk *phy_clk; member
59 ret = clk_prepare_enable(p_phy->phy_clk); in pistachio_usb_phy_power_on()
70 rate = clk_get_rate(p_phy->phy_clk); in pistachio_usb_phy_power_on()
113 clk_disable_unprepare(p_phy->phy_clk); in pistachio_usb_phy_power_on()
121 clk_disable_unprepare(p_phy->phy_clk); in pistachio_usb_phy_power_off()
153 p_phy->phy_clk = devm_clk_get(p_phy->dev, "usb_phy"); in pistachio_usb_phy_probe()
154 if (IS_ERR(p_phy->phy_clk)) { in pistachio_usb_phy_probe()
156 PTR_ERR(p_phy->phy_clk)); in pistachio_usb_phy_probe()
157 return PTR_ERR(p_phy->phy_clk); in pistachio_usb_phy_probe()
/linux-6.3-rc2/drivers/phy/qualcomm/
A Dphy-qcom-usb-hsic.c21 struct clk *phy_clk; member
33 ret = clk_prepare_enable(uphy->phy_clk); in qcom_usb_hsic_phy_power_on()
83 clk_disable_unprepare(uphy->phy_clk); in qcom_usb_hsic_phy_power_on()
93 clk_disable_unprepare(uphy->phy_clk); in qcom_usb_hsic_phy_power_off()
120 uphy->phy_clk = clk = devm_clk_get(&ulpi->dev, "phy"); in qcom_usb_hsic_phy_probe()
/linux-6.3-rc2/drivers/phy/sunplus/
A Dphy-sunplus-usb2.c72 struct clk *phy_clk; member
117 ret = clk_prepare_enable(usbphy->phy_clk); in sp_uphy_init()
164 clk_disable_unprepare(usbphy->phy_clk); in sp_uphy_init()
220 clk_disable_unprepare(usbphy->phy_clk); in sp_uphy_exit()
265 usbphy->phy_clk = devm_clk_get(&pdev->dev, NULL); in sp_usb_phy_probe()
266 if (IS_ERR(usbphy->phy_clk)) in sp_usb_phy_probe()
267 return PTR_ERR(usbphy->phy_clk); in sp_usb_phy_probe()
/linux-6.3-rc2/drivers/phy/lantiq/
A Dphy-lantiq-vrx200-pcie.c91 struct clk *phy_clk; member
321 ret = clk_prepare_enable(priv->phy_clk); in ltq_vrx200_pcie_phy_power_on()
335 clk_disable_unprepare(priv->phy_clk); in ltq_vrx200_pcie_phy_power_on()
346 clk_disable_unprepare(priv->phy_clk); in ltq_vrx200_pcie_phy_power_off()
445 priv->phy_clk = devm_clk_get(dev, "phy"); in ltq_vrx200_pcie_phy_probe()
446 if (IS_ERR(priv->phy_clk)) in ltq_vrx200_pcie_phy_probe()
447 return PTR_ERR(priv->phy_clk); in ltq_vrx200_pcie_phy_probe()
/linux-6.3-rc2/Documentation/devicetree/bindings/ufs/
A Dcdns,ufshc.yaml43 - const: phy_clk
72 clock-names = "core_clk", "phy_clk";
A Dhisilicon,ufs.yaml44 - const: phy_clk
83 clock-names = "ref_clk", "phy_clk";
/linux-6.3-rc2/sound/soc/fsl/
A Dfsl_xcvr.c34 struct clk *phy_clk; member
362 clk_disable_unprepare(xcvr->phy_clk); in fsl_xcvr_en_aud_pll()
363 ret = clk_set_rate(xcvr->phy_clk, freq); in fsl_xcvr_en_aud_pll()
368 ret = clk_prepare_enable(xcvr->phy_clk); in fsl_xcvr_en_aud_pll()
1252 xcvr->phy_clk = devm_clk_get(dev, "phy"); in fsl_xcvr_probe()
1253 if (IS_ERR(xcvr->phy_clk)) { in fsl_xcvr_probe()
1255 return PTR_ERR(xcvr->phy_clk); in fsl_xcvr_probe()
1375 clk_disable_unprepare(xcvr->phy_clk); in fsl_xcvr_runtime_suspend()
1405 ret = clk_prepare_enable(xcvr->phy_clk); in fsl_xcvr_runtime_resume()
1457 clk_disable_unprepare(xcvr->phy_clk); in fsl_xcvr_runtime_resume()
/linux-6.3-rc2/arch/sh/drivers/pci/
A Dpcie-sh7786.c26 struct clk *fclk, phy_clk; member
236 clk = &port->phy_clk; in pcie_clk_init()
264 clk_enable(&port->phy_clk); in phy_init()
280 clk_disable(&port->phy_clk); in phy_init()
/linux-6.3-rc2/drivers/net/ethernet/broadcom/
A Dbcm63xx_enet.h323 struct clk *phy_clk; member
A Dbcm63xx_enet.c1792 priv->phy_clk = devm_clk_get(&pdev->dev, "ephy"); in bcm_enet_probe()
1793 if (IS_ERR(priv->phy_clk)) { in bcm_enet_probe()
1794 ret = PTR_ERR(priv->phy_clk); in bcm_enet_probe()
1795 priv->phy_clk = NULL; in bcm_enet_probe()
1798 ret = clk_prepare_enable(priv->phy_clk); in bcm_enet_probe()
1892 clk_disable_unprepare(priv->phy_clk); in bcm_enet_probe()
1931 clk_disable_unprepare(priv->phy_clk); in bcm_enet_remove()
/linux-6.3-rc2/arch/arm/boot/dts/
A Dowl-s500-roseapplepi.dts238 phy_clk-pinmux {
/linux-6.3-rc2/drivers/gpu/drm/exynos/
A Dexynos_hdmi.c139 struct exynos_drm_clk phy_clk; member
1745 phy_clk); in hdmiphy_clk_enable()
1853 hdata->phy_clk.enable = hdmiphy_clk_enable; in hdmi_bind()
1864 crtc->pipe_clk = &hdata->phy_clk; in hdmi_bind()
/linux-6.3-rc2/arch/arm64/boot/dts/hisilicon/
A Dhi3670.dtsi673 clock-names = "ref_clk", "phy_clk";
A Dhi3660.dtsi1049 clock-names = "ref_clk", "phy_clk";
/linux-6.3-rc2/arch/arm64/boot/dts/ti/
A Dk3-j721e-main.dtsi1400 clock-names = "core_clk", "phy_clk", "ref_clk";

Completed in 37 milliseconds