Lines Matching defs:phy
58 struct hdmi_phy *phy;
133 * hdmi phy:
146 void (*powerup)(struct hdmi_phy *phy, unsigned long int pixclock);
147 void (*powerdown)(struct hdmi_phy *phy);
168 static inline void hdmi_phy_write(struct hdmi_phy *phy, u32 reg, u32 data)
170 msm_writel(data, phy->mmio + reg);
173 static inline u32 hdmi_phy_read(struct hdmi_phy *phy, u32 reg)
175 return msm_readl(phy->mmio + reg);
178 int msm_hdmi_phy_resource_enable(struct hdmi_phy *phy);
179 void msm_hdmi_phy_resource_disable(struct hdmi_phy *phy);
180 void msm_hdmi_phy_powerup(struct hdmi_phy *phy, unsigned long int pixclock);
181 void msm_hdmi_phy_powerdown(struct hdmi_phy *phy);