All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Octavian Purdila <octavian.purdila@intel.com>
Cc: johan@kernel.org, linux-usb@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 2/2] mfd: dln2: add suspend/resume functionality
Date: Tue, 20 Jan 2015 10:48:09 +0000	[thread overview]
Message-ID: <20150120104809.GU5767@x1> (raw)
In-Reply-To: <1421668296-28470-3-git-send-email-octavian.purdila@intel.com>

On Mon, 19 Jan 2015, Octavian Purdila wrote:

> Without suspend/resume functionality in the USB driver the USB core
> will disconnect and reconnect the DLN2 port and because the GPIO
> framework does not yet support removal of an in-use controller a
> suspend/resume operation will result in a crash.
> 
> This patch provides suspend and resume functions for the DLN2 driver
> so that the above scenario is avoided, if the host controller does not
> drop VBUS during suspend, since in this case the device state is
> preserved.
> 
> We chose not implemented reset_resume so that if the host controller
> does drop VBUS the resume path will go through above the
> disconnect/reconnect process since it is probably better to fix the
> GPIO framework disconnect issue then to save and restore the device
> state for every driver.
> 
> Signed-off-by: Octavian Purdila <octavian.purdila@intel.com>
> Reviewed-by: Johan Hovold <johan@kernel.org>

With Johan's Ack, I'm fairly sure I can just apply this without an in
depth review from me.

After a quick glance; applied, thanks.

> ---
>  drivers/mfd/dln2.c | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/drivers/mfd/dln2.c b/drivers/mfd/dln2.c
> index 8311820..1be9bd1 100644
> --- a/drivers/mfd/dln2.c
> +++ b/drivers/mfd/dln2.c
> @@ -791,6 +791,24 @@ out_free:
>  	return ret;
>  }
>  
> +static int dln2_suspend(struct usb_interface *iface, pm_message_t message)
> +{
> +	struct dln2_dev *dln2 = usb_get_intfdata(iface);
> +
> +	dln2_stop(dln2);
> +
> +	return 0;
> +}
> +
> +static int dln2_resume(struct usb_interface *iface)
> +{
> +	struct dln2_dev *dln2 = usb_get_intfdata(iface);
> +
> +	dln2->disconnect = false;
> +
> +	return dln2_start_rx_urbs(dln2, GFP_NOIO);
> +}
> +
>  static const struct usb_device_id dln2_table[] = {
>  	{ USB_DEVICE(0xa257, 0x2013) },
>  	{ }
> @@ -803,6 +821,8 @@ static struct usb_driver dln2_driver = {
>  	.probe = dln2_probe,
>  	.disconnect = dln2_disconnect,
>  	.id_table = dln2_table,
> +	.suspend = dln2_suspend,
> +	.resume = dln2_resume,
>  };
>  
>  module_usb_driver(dln2_driver);

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

  reply	other threads:[~2015-01-20 10:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-19 11:51 [PATCH v3 0/2] DLN2 fixes related to suspend/resume Octavian Purdila
2015-01-19 11:51 ` [PATCH v3 1/2] mfd: dln2: add start/stop RX URBs helpers Octavian Purdila
2015-01-20 10:47   ` Lee Jones
2015-01-19 11:51 ` [PATCH v3 2/2] mfd: dln2: add suspend/resume functionality Octavian Purdila
2015-01-20 10:48   ` Lee Jones [this message]
2015-01-19 15:23 ` [PATCH v3 0/2] DLN2 fixes related to suspend/resume Johan Hovold

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=20150120104809.GU5767@x1 \
    --to=lee.jones@linaro.org \
    --cc=johan@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=octavian.purdila@intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.