Lines Matching defs:phy
14 #include <linux/phy/phy.h>
68 dev_err(priv->dev, "Failed to assert reset phy\n");
82 dev_err(priv->dev, "Failed to deassert reset phy\n");
90 static int qcom_ssphy_power_on(struct phy *phy)
92 struct ssphy_priv *priv = phy_get_drvdata(phy);
121 static int qcom_ssphy_power_off(struct phy *phy)
123 struct ssphy_priv *priv = phy_get_drvdata(phy);
170 priv->reset_phy = devm_reset_control_get_exclusive(priv->dev, "phy");
172 dev_err(priv->dev, "Failed to get reset control phy\n");
191 struct phy *phy;
217 phy = devm_phy_create(dev, dev->of_node, &qcom_ssphy_ops);
218 if (IS_ERR(phy)) {
219 dev_err(dev, "Failed to create the SS phy\n");
220 return PTR_ERR(phy);
223 phy_set_drvdata(phy, priv);
231 { .compatible = "qcom,usb-ss-28nm-phy", },