linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 1/4] ARM: dts: omap4-panda: Add USB Host support
Date: Wed, 19 Jun 2013 00:46:06 -0700	[thread overview]
Message-ID: <20130619074605.GW5523@atomide.com> (raw)
In-Reply-To: <51C15F7E.5020305@ti.com>

* Roger Quadros <rogerq@ti.com> [130619 00:42]:
> Hi Benoit,
> 
> On 06/19/2013 04:17 AM, Benoit Cousson wrote:
> > Hi Roger,
> > 
> > On 06/18/2013 11:04 AM, Roger Quadros wrote:
> >> Provide the RESET and Power regulators for the USB PHY,
> >> the USB Host port mode and the PHY device.
> >>
> >> Also provide pin multiplexer information for the USB host
> >> pins.
> >>
> >> Signed-off-by: Roger Quadros <rogerq@ti.com>
> >> ---
> >>   arch/arm/boot/dts/omap4-panda-common.dtsi |   62 +++++++++++++++++++++++++++++
> >>   1 files changed, 62 insertions(+), 0 deletions(-)
> >>
> >> diff --git a/arch/arm/boot/dts/omap4-panda-common.dtsi b/arch/arm/boot/dts/omap4-panda-common.dtsi
> >> index 00cbaa5..7a21e8e 100644
> >> --- a/arch/arm/boot/dts/omap4-panda-common.dtsi
> >> +++ b/arch/arm/boot/dts/omap4-panda-common.dtsi
> >> @@ -59,6 +59,42 @@
> >>               "AFML", "Line In",
> >>               "AFMR", "Line In";
> >>       };
> >> +
> >> +    /* HS USB Port 1 RESET */
> >> +    hsusb1_reset: hsusb1_reset_reg {
> >> +        compatible = "regulator-fixed";
> >> +        regulator-name = "hsusb1_reset";
> >> +        regulator-min-microvolt = <3300000>;
> >> +        regulator-max-microvolt = <3300000>;
> >> +        gpio = <&gpio2 30 0>;    /* gpio_62 */
> >> +        startup-delay-us = <70000>;
> >> +        enable-active-high;
> >> +    };
> > 
> > Is this really a regulator? Or just a GPIO line used to reset the USB PHY?
> 
> It is in fact a GPIO line used as reset.
> > 
> > If this is the case, I don't think it should be represented as a regulator.
> 
> Why not? I think it fits very well in the regulator device model. I couldn't find a better
> way to represent this. It gives us a way to specify not only the GPIO line but also
> the polarity. I know mostly reset is active low but still there is flexibility as you never
> know for sure.

I think it's really a mux + a comparator. But from Linux driver point of view
a regulator fits well as we don't have anything better. After all, the pin
voltage changes, and then something can be done based on the comparator
value.
 
> Do you have any better ideas?

We have a similar issue with the MMC1 PBIAS. I think in the long run we
should expand regulator (and possibly pinctrl) framework(s) to handle
comparators. We could just assume that a comparatator is a regulator,
and have a comparator binding that just uses the regulator code.
 
> FYI. The USB PHY driver is already treating reset as a regulator and is into 3.10. Reworking that
> will take some time. Not getting these in will prevent USB host/ethernet support on panda.

Yes and we need to have some solution for v3.11 as we've dropped the
legacy data for omap4. Otherwise things won't work properly.

Regards,

Tony

  reply	other threads:[~2013-06-19  7:46 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-18 16:04 [PATCH v2 0/4] ARM: OMAP2+: Panda USB Host support and DVI EDID fix Roger Quadros
2013-06-18 16:04 ` [PATCH v2 1/4] ARM: dts: omap4-panda: Add USB Host support Roger Quadros
2013-06-19  1:17   ` Benoit Cousson
2013-06-19  7:36     ` Roger Quadros
2013-06-19  7:46       ` Tony Lindgren [this message]
2013-06-19 10:10         ` Benoit Cousson
2013-06-19 11:03           ` Roger Quadros
2013-06-19 11:30             ` Benoit Cousson
2013-06-19 14:02               ` Roger Quadros
2013-06-19 12:05             ` Florian Vaussard
2013-06-19 12:23               ` Benoit Cousson
2013-06-19 12:32                 ` Tony Lindgren
2013-06-19 14:05                 ` Roger Quadros
2013-06-19 18:17                   ` Benoit Cousson
2013-06-19 22:40                   ` Benoit Cousson
2013-06-20 11:49                     ` Roger Quadros
2013-06-19 12:27           ` Tony Lindgren
2013-06-19 12:34             ` Benoit Cousson
2013-06-19 12:44               ` Tony Lindgren
2013-06-18 16:04 ` [PATCH v2 2/4] ARM: dts: omap4-panda: Fix DVI EDID reads Roger Quadros
2013-06-18 16:04 ` [PATCH v2 3/4] ARM: dts: omap5-uevm: Provide USB Host PHY clock frequency Roger Quadros
2013-06-18 16:04 ` [PATCH v2 4/4] ARM: OMAP2+: Provide alias to USB PHY clock Roger Quadros
2013-07-15 14:05   ` Roger Quadros
2013-07-16 12:32     ` Tony Lindgren
2013-07-16 13:39       ` Roger Quadros
2013-07-16 13:43         ` Tony Lindgren
2013-07-16 13:12     ` Arend van Spriel
2013-07-16 13:18       ` Arend van Spriel

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=20130619074605.GW5523@atomide.com \
    --to=tony@atomide.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).