Lines Matching defs:phy
58 struct hdmi_phy *phy;
132 * hdmi phy:
145 void (*powerup)(struct hdmi_phy *phy, unsigned long int pixclock);
146 void (*powerdown)(struct hdmi_phy *phy);
167 static inline void hdmi_phy_write(struct hdmi_phy *phy, u32 reg, u32 data)
169 msm_writel(data, phy->mmio + reg);
172 static inline u32 hdmi_phy_read(struct hdmi_phy *phy, u32 reg)
174 return msm_readl(phy->mmio + reg);
177 int msm_hdmi_phy_resource_enable(struct hdmi_phy *phy);
178 void msm_hdmi_phy_resource_disable(struct hdmi_phy *phy);
179 void msm_hdmi_phy_powerup(struct hdmi_phy *phy, unsigned long int pixclock);
180 void msm_hdmi_phy_powerdown(struct hdmi_phy *phy);