Lines Matching defs:phy
19 #include <linux/phy/phy.h>
33 struct phy *phy;
51 static int stih407_usb2_init_port(struct phy *phy)
54 struct stih407_usb2_picophy *phy_dev = phy_get_drvdata(phy);
68 static int stih407_usb2_exit_port(struct phy *phy)
70 struct stih407_usb2_picophy *phy_dev = phy_get_drvdata(phy);
73 * Only port reset is asserted, phy global reset is kept untouched
75 * state, assumption is made that power will be cut off on the phy, in
94 struct phy *phy;
116 /* Reset port by default: only deassert it in phy init */
139 phy = devm_phy_create(dev, NULL, &stih407_usb2_picophy_data);
140 if (IS_ERR(phy)) {
142 return PTR_ERR(phy);
145 phy_dev->phy = phy;
146 phy_set_drvdata(phy, phy_dev);
158 { .compatible = "st,stih407-usb2-phy" },