Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1184804 > unrolled thread

Re: [PATCH v3 00/11] USB: OTG/DRD Core functionality

Started byRoger Quadros <rogerq@ti.com>
First post2015-07-15 15:30 +0200
Last post2015-07-17 12:40 +0200
Articles 3 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH v3 00/11] USB: OTG/DRD Core functionality Roger Quadros <rogerq@ti.com> - 2015-07-15 15:30 +0200
    Re: [PATCH v3 00/11] USB: OTG/DRD Core functionality Andrew Bresticker <abrestic@chromium.org> - 2015-07-16 20:40 +0200
      Re: [PATCH v3 00/11] USB: OTG/DRD Core functionality Roger Quadros <rogerq@ti.com> - 2015-07-17 12:40 +0200

#1184804 — Re: [PATCH v3 00/11] USB: OTG/DRD Core functionality

FromRoger Quadros <rogerq@ti.com>
Date2015-07-15 15:30 +0200
SubjectRe: [PATCH v3 00/11] USB: OTG/DRD Core functionality
Message-ID<pMuV4-jB-21@gated-at.bofh.it>
Hi Andrew,

On 13/07/15 22:14, Andrew Bresticker wrote:
> Hi Roger,
> 
> On Wed, Jul 8, 2015 at 3:19 AM, Roger Quadros <rogerq@ti.com> wrote:
>> Usage model:
>> -----------
>>
>> - The OTG controller device is assumed to be the parent of
>> the host and gadget controller. It must call usb_otg_register()
>> before populating the host and gadget devices so that the OTG
>> core is aware that it is an OTG device before the host & gadget
>> register. The OTG controller must provide struct otg_fsm_ops *
>> which will be called by the OTG core depending on OTG bus state.
> 
> I'm wondering if the requirement that the OTG controller be the parent
> of the USB host/device-controllers makes sense.  For some context, I'm
> working on adding dual-role support for Tegra210, specifically on a
> system with USB Type-C.  On Tegra, the USB host-controller and USB
> device-controller are two separate IP blocks (XUSB host and XUSB
> device) with another, separate, IP block (XUSB padctl) for the USB PHY
> and OTG support.  In the non-Type-C case, your OTG framework could
> work well, though it's debatable as to whether or not the XUSB padctl
> device should be a parent to the XUSB host/device-controller devices
> (currently it isn't - it's just a PHY provider).  But in the Type-C
> case, it's an off-chip embedded controller that determines the
> dual-role status of the Type-C port, so the above requirement doesn't
> make sense at all.
> 
> My idea was to have the OTG/DRD controller explicitly specify its host
> and device controllers, so in DT, something like:
> 
> otg-controller {
>     ...
>     device-controller = <&usb_device>;
>     host-controller = <&usb_host>;
>     ...
> };
> 
> usb_device: usb-device@.... {
>     ...
> };
> 
> usb_host: usb-host@... {
>     ...
> };
> 
> What do you think?

I agree that we need to support your use case but how to do it
is not yet clear to me.

In your above example the otg controller knows what are the host
and gadget controllers but the host/gadget devices don't
know who is their otg controller.

So the problem is that when usb_otg_register_hcd/gadget() is called
we need to get a handle to the otg controller.

One solution I see is to iterate over the registered otg_controller_list
and check if we match the host/gadget controller in there.

Then there is also a possibility that host/gadget controllers get
registered before the OTG controller. Then we can't know for sure if
the host/gadget controller was meant for dual-role operation or not
and it will resort to single role operation.

Any idea to prevent the above situation?

Maybe we need to add some logic in host/gadget cores to check if the port
is meant for dual-role use and defer probe if OTG controller is not yet
registered?

cheers,
-roger
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1186186

FromAndrew Bresticker <abrestic@chromium.org>
Date2015-07-16 20:40 +0200
Message-ID<pMWeC-6sH-15@gated-at.bofh.it>
In reply to#1184804
Hi Roger,

On Wed, Jul 15, 2015 at 6:26 AM, Roger Quadros <rogerq@ti.com> wrote:
> Hi Andrew,
>
> On 13/07/15 22:14, Andrew Bresticker wrote:
>> Hi Roger,
>>
>> On Wed, Jul 8, 2015 at 3:19 AM, Roger Quadros <rogerq@ti.com> wrote:
>>> Usage model:
>>> -----------
>>>
>>> - The OTG controller device is assumed to be the parent of
>>> the host and gadget controller. It must call usb_otg_register()
>>> before populating the host and gadget devices so that the OTG
>>> core is aware that it is an OTG device before the host & gadget
>>> register. The OTG controller must provide struct otg_fsm_ops *
>>> which will be called by the OTG core depending on OTG bus state.
>>
>> I'm wondering if the requirement that the OTG controller be the parent
>> of the USB host/device-controllers makes sense.  For some context, I'm
>> working on adding dual-role support for Tegra210, specifically on a
>> system with USB Type-C.  On Tegra, the USB host-controller and USB
>> device-controller are two separate IP blocks (XUSB host and XUSB
>> device) with another, separate, IP block (XUSB padctl) for the USB PHY
>> and OTG support.  In the non-Type-C case, your OTG framework could
>> work well, though it's debatable as to whether or not the XUSB padctl
>> device should be a parent to the XUSB host/device-controller devices
>> (currently it isn't - it's just a PHY provider).  But in the Type-C
>> case, it's an off-chip embedded controller that determines the
>> dual-role status of the Type-C port, so the above requirement doesn't
>> make sense at all.
>>
>> My idea was to have the OTG/DRD controller explicitly specify its host
>> and device controllers, so in DT, something like:
>>
>> otg-controller {
>>     ...
>>     device-controller = <&usb_device>;
>>     host-controller = <&usb_host>;
>>     ...
>> };
>>
>> usb_device: usb-device@.... {
>>     ...
>> };
>>
>> usb_host: usb-host@... {
>>     ...
>> };
>>
>> What do you think?
>
> I agree that we need to support your use case but how to do it
> is not yet clear to me.
>
> In your above example the otg controller knows what are the host
> and gadget controllers but the host/gadget devices don't
> know who is their otg controller.
>
> So the problem is that when usb_otg_register_hcd/gadget() is called
> we need to get a handle to the otg controller.
>
> One solution I see is to iterate over the registered otg_controller_list
> and check if we match the host/gadget controller in there.
>
> Then there is also a possibility that host/gadget controllers get
> registered before the OTG controller. Then we can't know for sure if
> the host/gadget controller was meant for dual-role operation or not
> and it will resort to single role operation.
>
> Any idea to prevent the above situation?
>
> Maybe we need to add some logic in host/gadget cores to check if the port
> is meant for dual-role use and defer probe if OTG controller is not yet
> registered?

In the DT case, I think we could add an "otg-controller" property to
the host and gadget nodes, and in usb_otg_register_{hcd,gadget}()
check for that property and defer probe if the referenced OTG
controller has not yet been registered.  Not sure how to indicate that
a host/gadget is meant for dual-role operation on non-DT platforms
though.

Thanks,
Andrew
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1186688

FromRoger Quadros <rogerq@ti.com>
Date2015-07-17 12:40 +0200
Message-ID<pNbdD-2PM-15@gated-at.bofh.it>
In reply to#1186186
On 16/07/15 21:29, Andrew Bresticker wrote:
> Hi Roger,
> 
> On Wed, Jul 15, 2015 at 6:26 AM, Roger Quadros <rogerq@ti.com> wrote:
>> Hi Andrew,
>>
>> On 13/07/15 22:14, Andrew Bresticker wrote:
>>> Hi Roger,
>>>
>>> On Wed, Jul 8, 2015 at 3:19 AM, Roger Quadros <rogerq@ti.com> wrote:
>>>> Usage model:
>>>> -----------
>>>>
>>>> - The OTG controller device is assumed to be the parent of
>>>> the host and gadget controller. It must call usb_otg_register()
>>>> before populating the host and gadget devices so that the OTG
>>>> core is aware that it is an OTG device before the host & gadget
>>>> register. The OTG controller must provide struct otg_fsm_ops *
>>>> which will be called by the OTG core depending on OTG bus state.
>>>
>>> I'm wondering if the requirement that the OTG controller be the parent
>>> of the USB host/device-controllers makes sense.  For some context, I'm
>>> working on adding dual-role support for Tegra210, specifically on a
>>> system with USB Type-C.  On Tegra, the USB host-controller and USB
>>> device-controller are two separate IP blocks (XUSB host and XUSB
>>> device) with another, separate, IP block (XUSB padctl) for the USB PHY
>>> and OTG support.  In the non-Type-C case, your OTG framework could
>>> work well, though it's debatable as to whether or not the XUSB padctl
>>> device should be a parent to the XUSB host/device-controller devices
>>> (currently it isn't - it's just a PHY provider).  But in the Type-C
>>> case, it's an off-chip embedded controller that determines the
>>> dual-role status of the Type-C port, so the above requirement doesn't
>>> make sense at all.
>>>
>>> My idea was to have the OTG/DRD controller explicitly specify its host
>>> and device controllers, so in DT, something like:
>>>
>>> otg-controller {
>>>     ...
>>>     device-controller = <&usb_device>;
>>>     host-controller = <&usb_host>;
>>>     ...
>>> };
>>>
>>> usb_device: usb-device@.... {
>>>     ...
>>> };
>>>
>>> usb_host: usb-host@... {
>>>     ...
>>> };
>>>
>>> What do you think?
>>
>> I agree that we need to support your use case but how to do it
>> is not yet clear to me.
>>
>> In your above example the otg controller knows what are the host
>> and gadget controllers but the host/gadget devices don't
>> know who is their otg controller.
>>
>> So the problem is that when usb_otg_register_hcd/gadget() is called
>> we need to get a handle to the otg controller.
>>
>> One solution I see is to iterate over the registered otg_controller_list
>> and check if we match the host/gadget controller in there.
>>
>> Then there is also a possibility that host/gadget controllers get
>> registered before the OTG controller. Then we can't know for sure if
>> the host/gadget controller was meant for dual-role operation or not
>> and it will resort to single role operation.
>>
>> Any idea to prevent the above situation?
>>
>> Maybe we need to add some logic in host/gadget cores to check if the port
>> is meant for dual-role use and defer probe if OTG controller is not yet
>> registered?
> 
> In the DT case, I think we could add an "otg-controller" property to
> the host and gadget nodes, and in usb_otg_register_{hcd,gadget}()
> check for that property and defer probe if the referenced OTG
> controller has not yet been registered.  Not sure how to indicate that
> a host/gadget is meant for dual-role operation on non-DT platforms
> though.
> 

Sounds fine for DT case.

For non DT case I don't see any other way to connect the OTG controller
to the host/gadget controllers other than the parent child relationship.

Maybe for non DT case we can still have that constraint.
We can have this constraint regardless so that DT users who fit
in that model don't need to add 'otg-controller' property.

cheers,
-roger
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web