public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Bin Liu <b-liu-l0cyMroinI0@public.gmane.org>
To: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
Cc: Felipe Balbi <balbi-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Kishon Vijay Abraham I <kishon-l0cyMroinI0@public.gmane.org>,
	Ivaylo Dimitrov
	<ivo.g.dimitrov.75-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Sergei Shtylyov
	<sergei.shtylyov-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>,
	linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 07/15] usb: musb: Handle cable status better for 2430 glue layer
Date: Fri, 13 May 2016 14:57:00 -0500	[thread overview]
Message-ID: <20160513195631.GB1665@uda0271908> (raw)
In-Reply-To: <20160512013303.GO5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>

Hi,

On Wed, May 11, 2016 at 06:33:04PM -0700, Tony Lindgren wrote:
> * Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160511 17:56]:
> > We may have drivers loaded but no configured gadgets and MUSB may be in
> > host mode. If gadgets are configured during host mode, PM runtime will
> > get confused.
> ...
> 
> > @@ -307,6 +350,9 @@ static void omap_musb_set_mailbox(struct omap2430_glue *glue)
> >  		dev_dbg(dev, "ID float\n");
> >  	}
> >  
> > +	if (!glue->cable_connected)
> > +		omap2430_set_power(musb, glue->enabled, cable_connected);
> > +
> 
> Oops sorry I messed up while cleaning up. This should be just cable_connected
> here instead of glue->cable_connected. Otherwise we won't idle on cable
> unplug as we're always using the cached value instead of the current
> value.
> 
> Updated patch below.
> 
> Regards,
> 
> Tony
> 
> 8< -----------------
> From: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
> Date: Mon, 9 May 2016 07:50:57 -0700
> Subject: [PATCH] usb: musb: Handle cable status better for 2430 glue layer
> 
> We may have drivers loaded but no configured gadgets and MUSB may be in
> host mode. If gadgets are configured during host mode, PM runtime will
> get confused.
> 
> Disable PM runtime from gadget state, and do it based on the cable
> and last state.
> 
> Note that we may get multiple cable events, so we need to keep track
> of the power state.
> 
> Signed-off-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
> 
> --- a/drivers/usb/musb/omap2430.c
> +++ b/drivers/usb/musb/omap2430.c
> @@ -49,6 +49,9 @@ struct omap2430_glue {
>  	enum musb_vbus_id_status status;
>  	struct work_struct	omap_musb_mailbox_work;
>  	struct device		*control_otghs;
> +	bool			cable_connected;
> +	bool			enabled;
> +	bool			powered;

This variable is only used within omap2430_set_power(), so it can be
local within that function to save a few bytes.

Regards,
-Bin.

>  };
>  #define glue_to_musb(g)		platform_get_drvdata(g->musb)
>  
> @@ -234,6 +237,45 @@ static inline void omap2430_low_level_init(struct musb *musb)
>  	musb_writel(musb->mregs, OTG_FORCESTDBY, l);
>  }
>  
> +/*
> + * We can get multiple cable events so we need to keep track
> + * of the power state. Only keep power enabled if USB cable is
> + * connected and a gadget is started.
> + */
> +static void omap2430_set_power(struct musb *musb, bool enabled, bool cable)
> +{
> +	struct device *dev = musb->controller;
> +	struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
> +	bool power_up;
> +	int res;
> +
> +	if (glue->enabled != enabled)
> +		glue->enabled = enabled;
> +
> +	if (glue->cable_connected != cable)
> +		glue->cable_connected = cable;
> +
> +	power_up = glue->enabled && glue->cable_connected;
> +	if (power_up == glue->powered) {
> +		dev_warn(musb->controller, "power state already %i\n",
> +			 power_up);
> +		return;
> +	}
> +
> +	glue->powered = power_up;
> +
> +	if (power_up) {
> +		res = pm_runtime_get_sync(musb->controller);
> +		if (res < 0) {
> +			dev_err(musb->controller, "could not enable: %i", res);
> +			glue->powered = false;
> +		}
> +	} else {
> +		pm_runtime_mark_last_busy(musb->controller);
> +		pm_runtime_put_autosuspend(musb->controller);
> +	}
> +}
> +
>  static void omap2430_musb_mailbox(enum musb_vbus_id_status status)
>  {
>  	struct omap2430_glue	*glue = _glue;
> @@ -259,6 +301,13 @@ static void omap_musb_set_mailbox(struct omap2430_glue *glue)
>  	struct musb_hdrc_platform_data *pdata = dev_get_platdata(dev);
>  	struct omap_musb_board_data *data = pdata->board_data;
>  	struct usb_otg *otg = musb->xceiv->otg;
> +	bool cable_connected;
> +
> +	cable_connected = ((glue->status == MUSB_ID_GROUND) ||
> +			   (glue->status == MUSB_VBUS_VALID));
> +
> +	if (cable_connected)
> +		omap2430_set_power(musb, glue->enabled, cable_connected);
>  
>  	switch (glue->status) {
>  	case MUSB_ID_GROUND:
> @@ -268,7 +317,6 @@ static void omap_musb_set_mailbox(struct omap2430_glue *glue)
>  		musb->xceiv->otg->state = OTG_STATE_A_IDLE;
>  		musb->xceiv->last_event = USB_EVENT_ID;
>  		if (musb->gadget_driver) {
> -			pm_runtime_get_sync(dev);
>  			omap_control_usb_set_mode(glue->control_otghs,
>  				USB_MODE_HOST);
>  			omap2430_musb_set_vbus(musb, 1);
> @@ -281,8 +329,6 @@ static void omap_musb_set_mailbox(struct omap2430_glue *glue)
>  		otg->default_a = false;
>  		musb->xceiv->otg->state = OTG_STATE_B_IDLE;
>  		musb->xceiv->last_event = USB_EVENT_VBUS;
> -		if (musb->gadget_driver)
> -			pm_runtime_get_sync(dev);
>  		omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DEVICE);
>  		break;
>  
> @@ -291,11 +337,8 @@ static void omap_musb_set_mailbox(struct omap2430_glue *glue)
>  		dev_dbg(dev, "VBUS Disconnect\n");
>  
>  		musb->xceiv->last_event = USB_EVENT_NONE;
> -		if (musb->gadget_driver) {
> +		if (musb->gadget_driver)
>  			omap2430_musb_set_vbus(musb, 0);
> -			pm_runtime_mark_last_busy(dev);
> -			pm_runtime_put_autosuspend(dev);
> -		}
>  
>  		if (data->interface_type == MUSB_INTERFACE_UTMI)
>  			otg_set_vbus(musb->xceiv->otg, 0);
> @@ -307,6 +350,9 @@ static void omap_musb_set_mailbox(struct omap2430_glue *glue)
>  		dev_dbg(dev, "ID float\n");
>  	}
>  
> +	if (!cable_connected)
> +		omap2430_set_power(musb, glue->enabled, cable_connected);
> +
>  	atomic_notifier_call_chain(&musb->xceiv->notifier,
>  			musb->xceiv->last_event, NULL);
>  }
> @@ -443,6 +489,8 @@ static void omap2430_musb_enable(struct musb *musb)
>  	struct musb_hdrc_platform_data *pdata = dev_get_platdata(dev);
>  	struct omap_musb_board_data *data = pdata->board_data;
>  
> +	omap2430_set_power(musb, true, glue->cable_connected);
> +
>  	switch (glue->status) {
>  
>  	case MUSB_ID_GROUND:
> @@ -481,6 +529,8 @@ static void omap2430_musb_disable(struct musb *musb)
>  	if (glue->status != MUSB_UNKNOWN)
>  		omap_control_usb_set_mode(glue->control_otghs,
>  			USB_MODE_DISCONNECT);
> +
> +	omap2430_set_power(musb, false, glue->cable_connected);
>  }
>  
>  static int omap2430_musb_exit(struct musb *musb)
> @@ -653,11 +703,13 @@ err0:
>  
>  static int omap2430_remove(struct platform_device *pdev)
>  {
> -	struct omap2430_glue		*glue = platform_get_drvdata(pdev);
> +	struct omap2430_glue *glue = platform_get_drvdata(pdev);
> +	struct musb *musb = glue_to_musb(glue);
>  
>  	pm_runtime_get_sync(glue->dev);
>  	cancel_work_sync(&glue->omap_musb_mailbox_work);
>  	platform_device_unregister(glue->musb);
> +	omap2430_set_power(musb, false, false);
>  	pm_runtime_put_sync(glue->dev);
>  	pm_runtime_disable(glue->dev);
>  
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2016-05-13 19:57 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-12  0:53 [PATCHv2 00/15] Get MUSB PM runtime working again Tony Lindgren
     [not found] ` <1463014396-4095-1-git-send-email-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-12  0:53   ` [PATCH 01/15] usb: musb: Fix idling after host mode by increasing autosuspend delay Tony Lindgren
2016-05-12  0:53   ` [PATCH 02/15] usb: musb: Remove unnecessary shutdown function Tony Lindgren
2016-05-12  0:53   ` [PATCH 03/15] usb: musb: Update to use PM runtime autosuspend Tony Lindgren
2016-05-12  0:53   ` [PATCH 04/15] usb: musb: Split PM runtime between wrapper IP and musb core Tony Lindgren
2016-05-12  0:53   ` [PATCH 05/15] usb: musb: Remove conditional PM runtime calls for musb_gadget Tony Lindgren
2016-05-12  0:53   ` [PATCH 06/15] usb: musb: Use delayed for musb_gadget_pullup Tony Lindgren
2016-05-12  0:53   ` [PATCH 07/15] usb: musb: Handle cable status better for 2430 glue layer Tony Lindgren
     [not found]     ` <1463014396-4095-8-git-send-email-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-12  1:33       ` Tony Lindgren
     [not found]         ` <20160512013303.GO5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-13 19:57           ` Bin Liu [this message]
2016-05-13 20:09             ` Tony Lindgren
     [not found]               ` <20160513200902.GB5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-13 20:21                 ` Bin Liu
2016-05-13 20:24                   ` Bin Liu
2016-05-13 20:33                     ` Tony Lindgren
     [not found]                       ` <20160513203330.GC5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-13 20:41                         ` Bin Liu
2016-05-13 20:58                           ` Tony Lindgren
2016-05-12  0:53   ` [PATCH 08/15] usb: musb: Improve PM runtime and phy handling " Tony Lindgren
     [not found]     ` <1463014396-4095-9-git-send-email-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-09-09 17:08       ` [08/15] " Laurent Pinchart
2016-09-09 17:24         ` Tony Lindgren
     [not found]           ` <20160909172447.kw3jb3odlpwt6egv-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-09-09 18:33             ` Laurent Pinchart
2016-09-09 19:24               ` Laurent Pinchart
2016-09-09 20:05                 ` Tony Lindgren
2016-09-09 20:08               ` Tony Lindgren
2016-05-12  0:53   ` [PATCH 09/15] usb: musb: Remove try_idle " Tony Lindgren
2016-05-12  0:53   ` [PATCH 10/15] usb: musb: Don't set d+ high before enable " Tony Lindgren
     [not found]     ` <1463014396-4095-11-git-send-email-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-13 21:03       ` Bin Liu
2016-05-13 21:17         ` Tony Lindgren
     [not found]           ` <20160513211739.GE5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-13 21:22             ` Bin Liu
2016-05-13 21:39               ` Tony Lindgren
     [not found]                 ` <20160513213900.GF5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-13 22:02                   ` Bin Liu
2016-05-13 22:25                     ` Tony Lindgren
     [not found]                       ` <20160513222517.GG5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-15  4:42                         ` Bin Liu
2016-05-16 15:19                           ` Tony Lindgren
2016-05-13 22:35             ` Tony Lindgren
     [not found]               ` <20160513223540.GH5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-15  4:47                 ` Bin Liu
2016-05-14 13:30         ` Sergei Shtylyov
     [not found]           ` <99ff5bff-e2f4-3137-2854-81d7b4b14bce-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2016-05-16 14:15             ` Bin Liu
2016-05-16 14:57               ` Tony Lindgren
     [not found]                 ` <20160516145757.GI5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-16 15:22                   ` Bin Liu
2016-05-16 15:45                     ` Tony Lindgren
2016-05-12  0:53   ` [PATCH 11/15] usb: musb: Return error value from musb_mailbox Tony Lindgren
2016-05-12  0:53   ` [PATCH 12/15] usb: musb: Remove extra PM runtime calls from 2430 glue layer Tony Lindgren
2016-05-12  0:53   ` [PATCH 13/15] usb: musb: Remove pm_runtime_set_irq_safe Tony Lindgren
2016-05-12  0:53   ` [PATCH 14/15] usb: musb: Use normal module_init for 2430 glue Tony Lindgren
2016-05-12  0:53   ` [PATCH 15/15] usb: phy: Check initial state for twl6030 Tony Lindgren
2016-05-17 21:16   ` [PATCHv2 00/15] Get MUSB PM runtime working again Bin Liu
2016-05-17 21:54     ` Tony Lindgren
     [not found]       ` <20160517215403.GP5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-17 22:05         ` Bin Liu
2016-05-18 17:35           ` Bin Liu
2016-05-18 18:14             ` Tony Lindgren
     [not found]               ` <20160518181403.GR5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-18 18:45                 ` Alan Stern
     [not found]                   ` <Pine.LNX.4.44L0.1605181442440.1981-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
2016-05-18 19:12                     ` Tony Lindgren
     [not found]                       ` <20160518191239.GS5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-18 19:24                         ` Bin Liu
2016-05-18 18:07           ` Tony Lindgren
     [not found]             ` <20160518180737.GQ5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-18 18:10               ` Bin Liu
2016-05-19 15:26                 ` Tony Lindgren
     [not found]                   ` <20160519152601.GV5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2016-05-19 17:50                     ` Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160513195631.GB1665@uda0271908 \
    --to=b-liu-l0cymroini0@public.gmane.org \
    --cc=balbi-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=ivo.g.dimitrov.75-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=kishon-l0cyMroinI0@public.gmane.org \
    --cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=sergei.shtylyov-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org \
    --cc=tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox