Lines Matching defs:phy
16 #include <linux/phy/phy.h>
221 struct phy *phy;
238 state->phys[data->coupled_phy_id].phy->power_count == 0)
261 static int exynos_mipi_video_phy_power_on(struct phy *phy)
263 struct video_phy_desc *phy_desc = phy_get_drvdata(phy);
269 static int exynos_mipi_video_phy_power_off(struct phy *phy)
271 struct video_phy_desc *phy_desc = phy_get_drvdata(phy);
277 static struct phy *exynos_mipi_video_phy_xlate(struct device *dev,
285 return state->phys[args->args[0]].phy;
323 struct phy *phy = devm_phy_create(dev, NULL,
325 if (IS_ERR(phy)) {
327 return PTR_ERR(phy);
330 state->phys[i].phy = phy;
333 phy_set_drvdata(phy, &state->phys[i]);
344 .compatible = "samsung,s5pv210-mipi-video-phy",
347 .compatible = "samsung,exynos5420-mipi-video-phy",
350 .compatible = "samsung,exynos5433-mipi-video-phy",
361 .name = "exynos-mipi-video-phy",