From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Phil Edworthy <phil.edworthy@renesas.com>,
Kishon Vijay Abraham I <kishon@ti.com>
Cc: Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>
Subject: Re: [PATCH v3] phy: rcar-gen2 usb: Add Host/Function switching for USB0
Date: Mon, 13 Jul 2015 17:09:38 +0000 [thread overview]
Message-ID: <55A3F0D2.2080908@cogentembedded.com> (raw)
In-Reply-To: <SIXPR06MB063912FA28F435A8D46CE56CF59C0@SIXPR06MB0639.apcprd06.prod.outlook.com>
On 07/13/2015 07:55 PM, Phil Edworthy wrote:
>>>>>>> Instead of statically selecting the PHY connection to either the
>>>>>>> USBHS (Function) or PCI0 (Host) IP blocks, this change allows the
>>>>>>> dts to specifiy gpio pins for the vbus and id signals. Additional
>>>>>> These GPIOs don't have anything to do with the PHY, they're interfacing
>>>> Perhaps that was too strong statement but nevertheless...
>>> Looking at your MAX3355 extcon driver, I can't see how it would work on it's
>>> own.
>> I've added the 'extcon' support into the Renesas USBHS driver, so that it
>> should be able to sense the ID pin status.
>>> The system needs to sense vbus in order to determine that the board
>>> has been plugged into a USB Host.
>>
>>> Since the MAX3355 device doesn't
>>> directly provide any vbus signals, this shouldn't be part of the extcon driver,
>>> so where should it be?
>>
>> Sure, MAX3355 does provide voltage on Vbus, controlled by -OFFVBUS input.
>> It's just that the driver has only ID sensing support.
>> Do you have the MAX3355 datasheet at all?
> Sorry, I meant that the max3355 device does not directly provide vbus signals
> suitable for input as a gpio.
What about STATUS1/2? They are fed to GPIOs.
> Though as it provides the vbus signal to the usb
> connector, there is no reason this can't be used as a gpio input to rcar (just
> a level shifter needed ala the Koelsch board).
Well, STATUS1/2 provide better info about Vbus, OTG-wise.
>>> On the other hand, the MAX3355 has a pair of status pins that can be used
>>> to get vbus instead.
>> Sure, these bits reflect 4 OTG Vbus thresholds.
>>> If these pins aren't used for other functions, maybe
>>> it's better to use these in the extcon driver.
>> They are not.
> My comments were based on the view that vbus output from the max3355
> device wasn't a signal that could be input to the rcar via gpio. Since it is, I agree
> that we should use that!
I wasn't paying enough attention to the Koelsch scheme while replying, it
seems. Yes, USBHS can see Vbus (almost) directly when SW6 is set to 2-3.
>>> My intention is to make the USB PHY driver listen for extcon events instead
>>> of directly accessing the ID and VBUS signals, but otherwise behave in the
>>> same way it currently does.
>> I'm not sure the PHY driver should be interested in that...
> Then how is the PHY going to know when to switch between pci0 (host) and
> hsusb (function)?
As I said, I planted the extcon hooks directly into USBHS (merged patch)
and USB HCD code (unmerged, low quality hack).
>>> After reading some other threads, I also intend to set up a fixed regulator
>>> for the MAX3355 device to setup the shutdown and vbus enable pins. I know
>>> that the vbus enable should really be controlled some other way depending
>>> on the role, but for the moment I think it's ok just to enable it always.
>> It's OK only in the host mode.
>> I don't think we need regulators. SHDN- is already supported by the driver
>> (though it only drives it high at start-up time), in fact it was the only reason
>> not to use gpio.
>>> Do you think that is the correct way to progress this?
>> I didn't have a clear picture how to implement the OTG support at the time
>> of writing the MAX3355 driver; actually, I was tasked to only support ID p[in
>> sensing.
> Right, so the max3355 driver needs some changes to include vbus handling.
> Are you working on this, or should I take it on?
No, not working yet, I have other things on my plate still...
>> Note that there's some ongoing effort now on linux-usb to support OTG
>> functionality.
> Yes, I need to spend some time reading that list!
> Thanks
> Phil
WBR, Sergei
WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Phil Edworthy <phil.edworthy@renesas.com>,
Kishon Vijay Abraham I <kishon@ti.com>
Cc: Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>
Subject: Re: [PATCH v3] phy: rcar-gen2 usb: Add Host/Function switching for USB0
Date: Mon, 13 Jul 2015 20:09:38 +0300 [thread overview]
Message-ID: <55A3F0D2.2080908@cogentembedded.com> (raw)
In-Reply-To: <SIXPR06MB063912FA28F435A8D46CE56CF59C0@SIXPR06MB0639.apcprd06.prod.outlook.com>
On 07/13/2015 07:55 PM, Phil Edworthy wrote:
>>>>>>> Instead of statically selecting the PHY connection to either the
>>>>>>> USBHS (Function) or PCI0 (Host) IP blocks, this change allows the
>>>>>>> dts to specifiy gpio pins for the vbus and id signals. Additional
>>>>>> These GPIOs don't have anything to do with the PHY, they're interfacing
>>>> Perhaps that was too strong statement but nevertheless...
>>> Looking at your MAX3355 extcon driver, I can't see how it would work on it's
>>> own.
>> I've added the 'extcon' support into the Renesas USBHS driver, so that it
>> should be able to sense the ID pin status.
>>> The system needs to sense vbus in order to determine that the board
>>> has been plugged into a USB Host.
>>
>>> Since the MAX3355 device doesn't
>>> directly provide any vbus signals, this shouldn't be part of the extcon driver,
>>> so where should it be?
>>
>> Sure, MAX3355 does provide voltage on Vbus, controlled by -OFFVBUS input.
>> It's just that the driver has only ID sensing support.
>> Do you have the MAX3355 datasheet at all?
> Sorry, I meant that the max3355 device does not directly provide vbus signals
> suitable for input as a gpio.
What about STATUS1/2? They are fed to GPIOs.
> Though as it provides the vbus signal to the usb
> connector, there is no reason this can't be used as a gpio input to rcar (just
> a level shifter needed ala the Koelsch board).
Well, STATUS1/2 provide better info about Vbus, OTG-wise.
>>> On the other hand, the MAX3355 has a pair of status pins that can be used
>>> to get vbus instead.
>> Sure, these bits reflect 4 OTG Vbus thresholds.
>>> If these pins aren't used for other functions, maybe
>>> it's better to use these in the extcon driver.
>> They are not.
> My comments were based on the view that vbus output from the max3355
> device wasn't a signal that could be input to the rcar via gpio. Since it is, I agree
> that we should use that!
I wasn't paying enough attention to the Koelsch scheme while replying, it
seems. Yes, USBHS can see Vbus (almost) directly when SW6 is set to 2-3.
>>> My intention is to make the USB PHY driver listen for extcon events instead
>>> of directly accessing the ID and VBUS signals, but otherwise behave in the
>>> same way it currently does.
>> I'm not sure the PHY driver should be interested in that...
> Then how is the PHY going to know when to switch between pci0 (host) and
> hsusb (function)?
As I said, I planted the extcon hooks directly into USBHS (merged patch)
and USB HCD code (unmerged, low quality hack).
>>> After reading some other threads, I also intend to set up a fixed regulator
>>> for the MAX3355 device to setup the shutdown and vbus enable pins. I know
>>> that the vbus enable should really be controlled some other way depending
>>> on the role, but for the moment I think it's ok just to enable it always.
>> It's OK only in the host mode.
>> I don't think we need regulators. SHDN- is already supported by the driver
>> (though it only drives it high at start-up time), in fact it was the only reason
>> not to use gpio.
>>> Do you think that is the correct way to progress this?
>> I didn't have a clear picture how to implement the OTG support at the time
>> of writing the MAX3355 driver; actually, I was tasked to only support ID p[in
>> sensing.
> Right, so the max3355 driver needs some changes to include vbus handling.
> Are you working on this, or should I take it on?
No, not working yet, I have other things on my plate still...
>> Note that there's some ongoing effort now on linux-usb to support OTG
>> functionality.
> Yes, I need to spend some time reading that list!
> Thanks
> Phil
WBR, Sergei
next prev parent reply other threads:[~2015-07-13 17:09 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-02 8:05 [PATCH v2] phy: rcar-gen2 usb: Add Host/Function switching for USB0 Phil Edworthy
2015-07-02 8:05 ` Phil Edworthy
2015-07-02 8:05 ` Phil Edworthy
2015-07-06 7:18 ` Yoshihiro Shimoda
2015-07-06 7:18 ` Yoshihiro Shimoda
2015-07-06 7:18 ` Yoshihiro Shimoda
2015-07-07 8:38 ` Phil Edworthy
2015-07-07 8:38 ` Phil Edworthy
[not found] ` <SG2PR06MB0919835888EBD162D4B86C24D8930-ESzmfEwOt/zNQ8RBPPB5A20DtJ1/0DrXvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2015-07-07 11:55 ` [PATCH v3] " Phil Edworthy
2015-07-07 11:55 ` Phil Edworthy
2015-07-07 11:55 ` Phil Edworthy
[not found] ` <1436270121-25924-1-git-send-email-phil.edworthy-zM6kxYcvzFBBDgjK7y7TUQ@public.gmane.org>
2015-07-10 16:36 ` Sergei Shtylyov
2015-07-10 16:36 ` Sergei Shtylyov
2015-07-10 16:36 ` Sergei Shtylyov
[not found] ` <559FF47A.5000001-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2015-07-13 9:04 ` Phil Edworthy
2015-07-13 9:04 ` Phil Edworthy
2015-07-13 9:04 ` Phil Edworthy
[not found] ` <SIXPR06MB0639B9810214ACE6C7F91FB6F59C0-ptTgG45MbEnxWRUYInhZt20DtJ1/0DrXvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2015-07-13 10:17 ` Sergei Shtylyov
2015-07-13 10:17 ` Sergei Shtylyov
2015-07-13 10:17 ` Sergei Shtylyov
2015-07-13 15:02 ` Phil Edworthy
[not found] ` <SIXPR06MB0639D6F8EC3D9091D139FC36F59C0-ptTgG45MbEnxWRUYInhZt20DtJ1/0DrXvxpqHgZTriW3zl9H0oFU5g@public.gmane.org>
2015-07-13 16:37 ` Sergei Shtylyov
2015-07-13 16:37 ` Sergei Shtylyov
2015-07-13 16:37 ` Sergei Shtylyov
[not found] ` <55A3E937.2050804-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2015-07-13 16:55 ` Phil Edworthy
2015-07-13 16:55 ` Phil Edworthy
2015-07-13 16:55 ` Phil Edworthy
2015-07-13 17:09 ` Sergei Shtylyov [this message]
2015-07-13 17:09 ` Sergei Shtylyov
[not found] ` <55A3F0D2.2080908-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
2015-07-13 17:44 ` Phil Edworthy
2015-07-13 17:44 ` Phil Edworthy
2015-07-13 17:44 ` Phil Edworthy
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=55A3F0D2.2080908@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=kishon@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=phil.edworthy@renesas.com \
--cc=robh+dt@kernel.org \
--cc=yoshihiro.shimoda.uh@renesas.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.