From: maxime.ripard@free-electrons.com (Maxime Ripard)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/7] usb: ehci-platform: add optional reset controller retrieval
Date: Fri, 9 May 2014 20:17:47 -0500 [thread overview]
Message-ID: <20140510011747.GI7047@lukather> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1405081002190.1087-100000@iolanthe.rowland.org>
On Thu, May 08, 2014 at 10:07:25AM -0400, Alan Stern wrote:
> On Thu, 8 May 2014, Hans de Goede wrote:
>
> > Hi,
> >
> > On 05/08/2014 12:00 AM, Maxime Ripard wrote:
> > > On Wed, May 07, 2014 at 10:25:55AM -0400, Alan Stern wrote:
> > >> On Tue, 6 May 2014, Maxime Ripard wrote:
> > >>
> > >>> From: Boris BREZILLON <boris.brezillon@free-electrons.com>
> > >>>
> > >>> On the Allwinner's A31 SoC the reset line connected to the EHCI IP has to
> > >>> be deasserted for the EHCI block to be usable.
> > >>>
> > >>> Add support for an optional reset controller that will be deasserted on
> > >>> power off and asserted on power on.
> > >>>
> > >>> Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> > >>> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> > >>
> > >> Is this really a _reset_ line? That is, when you assert the reset
> > >> line, does it actually reset the EHCI controller, or does it merely
> > >> leave the controller in a partially powered-down state?
> > >
> > > It actually resets the whole controller.
> > >
> > >> The difference is important. During suspend, the controller is
> > >> supposed to remember the state of the port connections as well as other
> > >> settings. If it doesn't, the controller and all attached USB devices
> > >> will have to be reinitialized every time the controller resumes, which
> > >> will increase the latency.
> > >
> > > So you're saying that we should move this to the probe then?
> >
> > Yes.
>
> That's right. The controller should not be reset during suspend, if
> you can possibly avoid it.
>
> There isn't any real benefit to asserting the reset signal during
> suspend, is there? I mean, it won't use any less power, right?
I don't think it will. I'll update the patches and send a new version.
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140509/8145003e/attachment.sig>
WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: Alan Stern <stern@rowland.harvard.edu>
Cc: Hans de Goede <hdegoede@redhat.com>,
Emilio Lopez <emilio@elopez.com.ar>,
Mike Turquette <mturquette@linaro.org>,
kishon@ti.com, Boris Brezillon <boris@free-electrons.com>,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, linux-usb@vger.kernel.org,
kevin.z.m.zh@gmail.com, sunny@allwinnertech.com,
shuge@allwinnertech.com, zhuzhenhua@allwinnertech.com,
linux-sunxi@googlegroups.com,
Boris BREZILLON <boris.brezillon@free-electrons.com>
Subject: Re: [PATCH 4/7] usb: ehci-platform: add optional reset controller retrieval
Date: Fri, 9 May 2014 20:17:47 -0500 [thread overview]
Message-ID: <20140510011747.GI7047@lukather> (raw)
In-Reply-To: <Pine.LNX.4.44L0.1405081002190.1087-100000@iolanthe.rowland.org>
[-- Attachment #1: Type: text/plain, Size: 1986 bytes --]
On Thu, May 08, 2014 at 10:07:25AM -0400, Alan Stern wrote:
> On Thu, 8 May 2014, Hans de Goede wrote:
>
> > Hi,
> >
> > On 05/08/2014 12:00 AM, Maxime Ripard wrote:
> > > On Wed, May 07, 2014 at 10:25:55AM -0400, Alan Stern wrote:
> > >> On Tue, 6 May 2014, Maxime Ripard wrote:
> > >>
> > >>> From: Boris BREZILLON <boris.brezillon@free-electrons.com>
> > >>>
> > >>> On the Allwinner's A31 SoC the reset line connected to the EHCI IP has to
> > >>> be deasserted for the EHCI block to be usable.
> > >>>
> > >>> Add support for an optional reset controller that will be deasserted on
> > >>> power off and asserted on power on.
> > >>>
> > >>> Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
> > >>> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> > >>
> > >> Is this really a _reset_ line? That is, when you assert the reset
> > >> line, does it actually reset the EHCI controller, or does it merely
> > >> leave the controller in a partially powered-down state?
> > >
> > > It actually resets the whole controller.
> > >
> > >> The difference is important. During suspend, the controller is
> > >> supposed to remember the state of the port connections as well as other
> > >> settings. If it doesn't, the controller and all attached USB devices
> > >> will have to be reinitialized every time the controller resumes, which
> > >> will increase the latency.
> > >
> > > So you're saying that we should move this to the probe then?
> >
> > Yes.
>
> That's right. The controller should not be reset during suspend, if
> you can possibly avoid it.
>
> There isn't any real benefit to asserting the reset signal during
> suspend, is there? I mean, it won't use any less power, right?
I don't think it will. I'll update the patches and send a new version.
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2014-05-10 1:17 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-07 3:50 [PATCH 0/7] Add Allwinner A31 USB support Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 3:50 ` [PATCH 1/7] clk: sunxi: Implement A31 USB clock Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 3:50 ` [PATCH 2/7] ARM: sun6i: Add the USB clocks to the DTSI Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 3:50 ` [PATCH 3/7] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 13:35 ` Kishon Vijay Abraham I
2014-05-07 13:35 ` Kishon Vijay Abraham I
2014-05-07 21:57 ` Maxime Ripard
2014-05-07 21:57 ` Maxime Ripard
2014-05-07 3:50 ` [PATCH 4/7] usb: ehci-platform: add optional reset controller retrieval Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 14:25 ` Alan Stern
2014-05-07 14:25 ` Alan Stern
2014-05-07 22:00 ` Maxime Ripard
2014-05-07 22:00 ` Maxime Ripard
2014-05-08 7:29 ` Hans de Goede
2014-05-08 7:29 ` Hans de Goede
2014-05-08 14:07 ` Alan Stern
2014-05-08 14:07 ` Alan Stern
2014-05-10 1:17 ` Maxime Ripard [this message]
2014-05-10 1:17 ` Maxime Ripard
2014-05-07 3:50 ` [PATCH 5/7] usb: ohci-platform: Enable optional use of reset controller Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 16:26 ` Sergei Shtylyov
2014-05-07 16:26 ` Sergei Shtylyov
2014-05-07 22:03 ` Maxime Ripard
2014-05-07 22:03 ` Maxime Ripard
2014-05-08 13:11 ` Sergei Shtylyov
2014-05-08 13:11 ` Sergei Shtylyov
2014-05-07 3:50 ` [PATCH 6/7] ARM: sun6i: dt: Add support for the USB controllers Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 3:50 ` [PATCH 7/7] ARM: sunxi: dt: add APP4-EVB1 board support Maxime Ripard
2014-05-07 3:50 ` Maxime Ripard
2014-05-07 5:10 ` [linux-sunxi] " Koen Kooi
2014-05-07 5:10 ` Koen Kooi
2014-05-07 6:46 ` Hans de Goede
2014-05-07 6:46 ` Hans de Goede
2014-05-07 8:25 ` [PATCH 0/7] Add Allwinner A31 USB support Hans de Goede
2014-05-07 8:25 ` Hans de Goede
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=20140510011747.GI7047@lukather \
--to=maxime.ripard@free-electrons.com \
--cc=linux-arm-kernel@lists.infradead.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 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.