On Sat, Feb 28, 2015 at 09:43:30AM +0800, Chen Peter-B29397 wrote:
>
> > >
> > > Why you use unsigned, but not unsigned int or unsigned long?
> >
> > unsigned is equal to "unsigned int", currently only 13 timers are defined,
> > so
> > "unsigned" is okay, for possible future extension, I will change it to be
> > "unsigned long"
> >
>
> Since I see you use unsigned long below, I have this question, it is ok
> you do not change it.
>
>
> > > >
> > > > @@ -579,8 +579,15 @@ int ci_otg_fsm_work(struct ci_hdrc *ci)
> > > > * a_idle to a_wait_vrise when power up
> > > > */
> > > > if ((ci->fsm.id) || (ci->id_event) ||
> > > > - (ci->fsm.power_up))
> > > > + (ci->fsm.power_up)) {
> > > > ci_otg_queue_work(ci);
> > > > + } else {
> > > > + /* Enable data pulse irq */
> > > > + hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS
> > > > |
> > > > +
> > > > PORTSC_PP, 0);
> > > > + hw_write_otgsc(ci, OTGSC_DPIS,
> > > > OTGSC_DPIS);
> > > > + hw_write_otgsc(ci, OTGSC_DPIE,
> > > > OTGSC_DPIE);
> > > > + }
> > >
> > > Can we enable data pulse enable at initialization routine?
> >
> > This irq should be enabled only for A-device when there is no session (host
> > role,
> > no vbus, so in A_IDLE state), and disable it after receive its irq(SRP).
> >
>
> But from the code, I don't know the state is at A_IDLE, mind to change?
>
It's already under condition of A_IDLE as below:
if (ci->fsm.otg->state == OTG_STATE_A_IDLE) {
... ...
if () {
... ...
} else {
/* Enable data pulse irq */
...
}
}
That's a change to avoid to do it in timer out(VFALL) handler, so put it here
(after otg fsm transit to A_IDLE and will no further state transitions).
Li Jun
>
> Peter
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html