Lines Matching defs:phy
18 #include <linux/phy/phy.h>
76 struct phy *phy;
676 ret = phy_init(dsi->phy);
678 DRM_DEV_ERROR(dev, "Failed to init DSI phy: %d\n", ret);
682 ret = phy_configure(dsi->phy, phy_cfg);
684 DRM_DEV_ERROR(dev, "Failed to configure DSI phy: %d\n", ret);
709 ret = phy_power_on(dsi->phy);
722 phy_power_off(dsi->phy);
726 phy_exit(dsi->phy);
735 DRM_DEV_DEBUG_DRIVER(dev, "Disabling clocks and phy\n");
737 phy_power_off(dsi->phy);
738 phy_exit(dsi->phy);
740 /* Disabling the clock before the phy breaks enabling dsi again */
868 /* Save the new desired phy config */
979 dsi->phy = devm_phy_get(dsi->dev, "dphy");
980 if (IS_ERR(dsi->phy)) {
981 ret = PTR_ERR(dsi->phy);