* Bin Liu <b-...@ti.com> [160514 21:44]: > Hi, > > On Fri, May 13, 2016 at 03:25:17PM -0700, Tony Lindgren wrote: > > * Bin Liu <b-...@ti.com> [160513 15:04]: > > > > > > But what would be in musb_default_set_mode()? Currently only am35x, > > > da8xx, dsps, and omap2430 glues implement _set_mode(), but they don't > > > have any in common. Only omap2430 sets session bit in _set_mode(), no > > > one else does so. > > > > Well how about the following if no glue specific configuration of the > > ID pin is possible? > > ID pin configuration is required, either in sw or hw, for the controller > otg state transition. > > In my understanding, if ID pin is grounded, setting session bit make the > controller transition to host mode; or if ID pin is float, setting > session bit triggers srp request.
OK so let's rip out this code then. It does not seem to be needed for enumerating devices at all, updated patch below. > I think I don't understand what you are trying to solve by adding > default set_mode() in core. Naturally no need for this if we don't need this code at all :) Regards, Tony 8< ----------------- From: Tony Lindgren <t...@atomide.com> Date: Fri, 13 May 2016 07:59:35 -0700 Subject: [PATCH] usb: musb: Don't set d+ high before enable for 2430 glue layer At least 2430 glue layer pulls d+ high on start up even if there are no gadgets configured. This is bad at least for anything using a separate battery charger chip as it can confuse the charger detection. Let's fix the issue by removing the bogus glue layer code tinkering with the SESSION bit. As pointed out Bin Liu <b-...@ti.com> and Sergei Shtylyov <sergei.shtyl...@cogentembedded.com>, the SESSION bit just starts host mode if ID pin is grounded, and starts the srp is ID pin is floating. So without the ID pin changing, it's unable to force musb mode to anything. And just for starting a host mode, things work fine without this code. Signed-off-by: Tony Lindgren <t...@atomide.com> --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -122,16 +122,6 @@ static void omap2430_musb_set_vbus(struct musb *musb, int is_on) musb_readb(musb->mregs, MUSB_DEVCTL)); } -static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode) -{ - u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL); - - devctl |= MUSB_DEVCTL_SESSION; - musb_writeb(musb->mregs, MUSB_DEVCTL, devctl); - - return 0; -} - static inline void omap2430_low_level_exit(struct musb *musb) { u32 l; @@ -472,7 +462,6 @@ static const struct musb_platform_ops omap2430_ops = { .init = omap2430_musb_init, .exit = omap2430_musb_exit, - .set_mode = omap2430_musb_set_mode, .set_vbus = omap2430_musb_set_vbus, .enable = omap2430_musb_enable, -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html