Lines Matching refs:platdata
100 hcd->power_budget = ci->platdata->power_budget; in host_start()
101 hcd->tpl_support = ci->platdata->tpl_support; in host_start()
116 if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci)) { in host_start()
117 if (ci->platdata->flags & CI_HDRC_TURN_VBUS_EARLY_ON) { in host_start()
118 ret = regulator_enable(ci->platdata->reg_vbus); in host_start()
126 priv->reg_vbus = ci->platdata->reg_vbus; in host_start()
144 if (ci->platdata->flags & CI_HDRC_DISABLE_STREAMING) in host_start()
147 if (ci->platdata->flags & CI_HDRC_FORCE_FULLSPEED) in host_start()
153 if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci) && in host_start()
154 (ci->platdata->flags & CI_HDRC_TURN_VBUS_EARLY_ON)) in host_start()
155 regulator_disable(ci->platdata->reg_vbus); in host_start()
169 if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci) && in host_stop()
170 (ci->platdata->flags & CI_HDRC_TURN_VBUS_EARLY_ON)) in host_stop()
171 regulator_disable(ci->platdata->reg_vbus); in host_stop()