Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1383887 > unrolled thread
| Started by | Jun Li <jun.li@nxp.com> |
|---|---|
| First post | 2016-04-21 08:40 +0200 |
| Last post | 2016-05-04 10:50 +0200 |
| Articles | 16 — 3 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.
RE: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Jun Li <jun.li@nxp.com> - 2016-04-21 08:40 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-04-25 16:10 +0200
RE: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Jun Li <jun.li@nxp.com> - 2016-04-26 02:10 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-04-27 13:30 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-04-28 12:00 +0200
RE: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Jun Li <jun.li@nxp.com> - 2016-04-28 12:50 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-04-28 14:30 +0200
RE: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Jun Li <jun.li@nxp.com> - 2016-05-03 09:10 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-05-03 17:50 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Peter Chen <hzpeterchen@gmail.com> - 2016-05-04 04:00 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Peter Chen <hzpeterchen@gmail.com> - 2016-05-04 05:50 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-05-04 08:40 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Peter Chen <hzpeterchen@gmail.com> - 2016-05-04 10:10 +0200
RE: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Jun Li <jun.li@nxp.com> - 2016-05-04 10:20 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Peter Chen <hzpeterchen@gmail.com> - 2016-05-04 10:50 +0200
Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core Roger Quadros <rogerq@ti.com> - 2016-05-04 10:50 +0200
| From | Jun Li <jun.li@nxp.com> |
|---|---|
| Date | 2016-04-21 08:40 +0200 |
| Subject | RE: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core |
| Message-ID | <rqgro-4xr-9@gated-at.bofh.it> |
Hi,
...
>
> /**
> + * usb_gadget_start - start the usb gadget controller and connect to
> +bus
> + * @gadget: the gadget device to start
> + *
> + * This is external API for use by OTG core.
> + *
> + * Start the usb device controller and connect to bus (enable pull).
> + */
> +static int usb_gadget_start(struct usb_gadget *gadget) {
> + int ret;
> + struct usb_udc *udc = NULL;
> +
> + dev_dbg(&gadget->dev, "%s\n", __func__);
> + mutex_lock(&udc_lock);
> + list_for_each_entry(udc, &udc_list, list)
> + if (udc->gadget == gadget)
> + goto found;
> +
> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> + __func__);
> + mutex_unlock(&udc_lock);
> + return -EINVAL;
> +
> +found:
> + ret = usb_gadget_udc_start(udc);
> + if (ret)
> + dev_err(&udc->dev, "USB Device Controller didn't start: %d\n",
> + ret);
> + else
> + usb_udc_connect_control(udc);
For drd, it's fine, but for real otg, gadget connect should be done
by loc_conn() instead of gadget start.
> +
> + mutex_unlock(&udc_lock);
> +
> + return ret;
> +}
> +
> +/**
> + * usb_gadget_stop - disconnect from bus and stop the usb gadget
> + * @gadget: The gadget device we want to stop
> + *
> + * This is external API for use by OTG core.
> + *
> + * Disconnect from the bus (disable pull) and stop the
> + * gadget controller.
> + */
> +static int usb_gadget_stop(struct usb_gadget *gadget) {
> + struct usb_udc *udc = NULL;
> +
> + dev_dbg(&gadget->dev, "%s\n", __func__);
> + mutex_lock(&udc_lock);
> + list_for_each_entry(udc, &udc_list, list)
> + if (udc->gadget == gadget)
> + goto found;
> +
> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> + __func__);
> + mutex_unlock(&udc_lock);
> + return -EINVAL;
> +
> +found:
> + usb_gadget_disconnect(udc->gadget);
Likewise, gadget disconnect also should be done by loc_conn()
instead of gadget stop.
> + udc->driver->disconnect(udc->gadget);
> + usb_gadget_udc_stop(udc);
> + mutex_unlock(&udc_lock);
> +
> + return 0;
> +}
> +
Li Jun
[toc] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-04-25 16:10 +0200 |
| Message-ID | <rrPn4-7cw-11@gated-at.bofh.it> |
| In reply to | #1383887 |
Hi,
On 21/04/16 09:38, Jun Li wrote:
> Hi,
>
> ...
>>
>> /**
>> + * usb_gadget_start - start the usb gadget controller and connect to
>> +bus
>> + * @gadget: the gadget device to start
>> + *
>> + * This is external API for use by OTG core.
>> + *
>> + * Start the usb device controller and connect to bus (enable pull).
>> + */
>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>> + int ret;
>> + struct usb_udc *udc = NULL;
>> +
>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>> + mutex_lock(&udc_lock);
>> + list_for_each_entry(udc, &udc_list, list)
>> + if (udc->gadget == gadget)
>> + goto found;
>> +
>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>> + __func__);
>> + mutex_unlock(&udc_lock);
>> + return -EINVAL;
>> +
>> +found:
>> + ret = usb_gadget_udc_start(udc);
>> + if (ret)
>> + dev_err(&udc->dev, "USB Device Controller didn't start: %d\n",
>> + ret);
>> + else
>> + usb_udc_connect_control(udc);
>
> For drd, it's fine, but for real otg, gadget connect should be done
> by loc_conn() instead of gadget start.
It is upto the OTG state machine to call gadget_start() when it needs to
connect to the bus (i.e. loc_conn()). I see no point in calling
gadget start before.
Do you see any issue in doing so?
cheers,
-roger
>
>> +
>> + mutex_unlock(&udc_lock);
>> +
>> + return ret;
>> +}
>> +
>> +/**
>> + * usb_gadget_stop - disconnect from bus and stop the usb gadget
>> + * @gadget: The gadget device we want to stop
>> + *
>> + * This is external API for use by OTG core.
>> + *
>> + * Disconnect from the bus (disable pull) and stop the
>> + * gadget controller.
>> + */
>> +static int usb_gadget_stop(struct usb_gadget *gadget) {
>> + struct usb_udc *udc = NULL;
>> +
>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>> + mutex_lock(&udc_lock);
>> + list_for_each_entry(udc, &udc_list, list)
>> + if (udc->gadget == gadget)
>> + goto found;
>> +
>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>> + __func__);
>> + mutex_unlock(&udc_lock);
>> + return -EINVAL;
>> +
>> +found:
>> + usb_gadget_disconnect(udc->gadget);
>
> Likewise, gadget disconnect also should be done by loc_conn()
> instead of gadget stop.
>
>> + udc->driver->disconnect(udc->gadget);
>> + usb_gadget_udc_stop(udc);
>> + mutex_unlock(&udc_lock);
>> +
>> + return 0;
>> +}
>> +
>
> Li Jun
>
[toc] | [prev] | [next] | [standalone]
| From | Jun Li <jun.li@nxp.com> |
|---|---|
| Date | 2016-04-26 02:10 +0200 |
| Message-ID | <rrYJI-6tj-17@gated-at.bofh.it> |
| In reply to | #1386489 |
Hi
> -----Original Message-----
> From: Roger Quadros [mailto:rogerq@ti.com]
> Sent: Monday, April 25, 2016 10:04 PM
> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
> gregkh@linuxfoundation.org; peter.chen@freescale.com
> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>
> Hi,
>
> On 21/04/16 09:38, Jun Li wrote:
> > Hi,
> >
> > ...
> >>
> >> /**
> >> + * usb_gadget_start - start the usb gadget controller and connect to
> >> +bus
> >> + * @gadget: the gadget device to start
> >> + *
> >> + * This is external API for use by OTG core.
> >> + *
> >> + * Start the usb device controller and connect to bus (enable pull).
> >> + */
> >> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >> + int ret;
> >> + struct usb_udc *udc = NULL;
> >> +
> >> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >> + mutex_lock(&udc_lock);
> >> + list_for_each_entry(udc, &udc_list, list)
> >> + if (udc->gadget == gadget)
> >> + goto found;
> >> +
> >> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >> + __func__);
> >> + mutex_unlock(&udc_lock);
> >> + return -EINVAL;
> >> +
> >> +found:
> >> + ret = usb_gadget_udc_start(udc);
> >> + if (ret)
> >> + dev_err(&udc->dev, "USB Device Controller didn't start: %d\n",
> >> + ret);
> >> + else
> >> + usb_udc_connect_control(udc);
> >
> > For drd, it's fine, but for real otg, gadget connect should be done by
> > loc_conn() instead of gadget start.
>
> It is upto the OTG state machine to call gadget_start() when it needs to
> connect to the bus (i.e. loc_conn()). I see no point in calling gadget
> start before.
>
> Do you see any issue in doing so?
This is what OTG state machine does:
case OTG_STATE_B_PERIPHERAL:
otg_chrg_vbus(otg, 0);
otg_loc_sof(otg, 0);
otg_set_protocol(fsm, PROTO_GADGET);
otg_loc_conn(otg, 1);
break;
You intend to abstract something common in this api when start gadget,
which should be called by otg_set_protocol(fsm, PROTO_GADGET); and
drd_set_protocol(fsm, PROTO_GADGET); right?
So you may move usb_udc_connect_control(IMO usb_gadget_connect()
is better)out of usb_gadget_start(), then for drd:
case OTG_STATE_B_PERIPHERAL:
drd_set_protocol(fsm, PROTO_GADGET);
otg_drv_vbus(otg, 0);
usb_gadget_connect();
Li Jun
>
> cheers,
> -roger
>
> >
> >> +
> >> + mutex_unlock(&udc_lock);
> >> +
> >> + return ret;
> >> +}
> >> +
> >> +/**
> >> + * usb_gadget_stop - disconnect from bus and stop the usb gadget
> >> + * @gadget: The gadget device we want to stop
> >> + *
> >> + * This is external API for use by OTG core.
> >> + *
> >> + * Disconnect from the bus (disable pull) and stop the
> >> + * gadget controller.
> >> + */
> >> +static int usb_gadget_stop(struct usb_gadget *gadget) {
> >> + struct usb_udc *udc = NULL;
> >> +
> >> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >> + mutex_lock(&udc_lock);
> >> + list_for_each_entry(udc, &udc_list, list)
> >> + if (udc->gadget == gadget)
> >> + goto found;
> >> +
> >> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >> + __func__);
> >> + mutex_unlock(&udc_lock);
> >> + return -EINVAL;
> >> +
> >> +found:
> >> + usb_gadget_disconnect(udc->gadget);
> >
> > Likewise, gadget disconnect also should be done by loc_conn() instead
> > of gadget stop.
> >
> >> + udc->driver->disconnect(udc->gadget);
> >> + usb_gadget_udc_stop(udc);
> >> + mutex_unlock(&udc_lock);
> >> +
> >> + return 0;
> >> +}
> >> +
> >
> > Li Jun
> >
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-04-27 13:30 +0200 |
| Message-ID | <rsvPl-jK-29@gated-at.bofh.it> |
| In reply to | #1387022 |
On 26/04/16 03:07, Jun Li wrote:
> Hi
>
>> -----Original Message-----
>> From: Roger Quadros [mailto:rogerq@ti.com]
>> Sent: Monday, April 25, 2016 10:04 PM
>> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
>> gregkh@linuxfoundation.org; peter.chen@freescale.com
>> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
>> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
>> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
>> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
>> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>>
>> Hi,
>>
>> On 21/04/16 09:38, Jun Li wrote:
>>> Hi,
>>>
>>> ...
>>>>
>>>> /**
>>>> + * usb_gadget_start - start the usb gadget controller and connect to
>>>> +bus
>>>> + * @gadget: the gadget device to start
>>>> + *
>>>> + * This is external API for use by OTG core.
>>>> + *
>>>> + * Start the usb device controller and connect to bus (enable pull).
>>>> + */
>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>>>> + int ret;
>>>> + struct usb_udc *udc = NULL;
>>>> +
>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>> + mutex_lock(&udc_lock);
>>>> + list_for_each_entry(udc, &udc_list, list)
>>>> + if (udc->gadget == gadget)
>>>> + goto found;
>>>> +
>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>> + __func__);
>>>> + mutex_unlock(&udc_lock);
>>>> + return -EINVAL;
>>>> +
>>>> +found:
>>>> + ret = usb_gadget_udc_start(udc);
>>>> + if (ret)
>>>> + dev_err(&udc->dev, "USB Device Controller didn't start: %d\n",
>>>> + ret);
>>>> + else
>>>> + usb_udc_connect_control(udc);
>>>
>>> For drd, it's fine, but for real otg, gadget connect should be done by
>>> loc_conn() instead of gadget start.
>>
>> It is upto the OTG state machine to call gadget_start() when it needs to
>> connect to the bus (i.e. loc_conn()). I see no point in calling gadget
>> start before.
>>
>> Do you see any issue in doing so?
>
> This is what OTG state machine does:
> case OTG_STATE_B_PERIPHERAL:
> otg_chrg_vbus(otg, 0);
> otg_loc_sof(otg, 0);
> otg_set_protocol(fsm, PROTO_GADGET);
> otg_loc_conn(otg, 1);
> break;
>
> You intend to abstract something common in this api when start gadget,
> which should be called by otg_set_protocol(fsm, PROTO_GADGET); and
> drd_set_protocol(fsm, PROTO_GADGET); right?
>
> So you may move usb_udc_connect_control(IMO usb_gadget_connect()
> is better)out of usb_gadget_start(), then for drd:
>
> case OTG_STATE_B_PERIPHERAL:
> drd_set_protocol(fsm, PROTO_GADGET);
> otg_drv_vbus(otg, 0);
> usb_gadget_connect();
OK. I understand now. I'll implement your suggestion. Thanks.
cheers,
-roger
>>>
>>>> +
>>>> + mutex_unlock(&udc_lock);
>>>> +
>>>> + return ret;
>>>> +}
>>>> +
>>>> +/**
>>>> + * usb_gadget_stop - disconnect from bus and stop the usb gadget
>>>> + * @gadget: The gadget device we want to stop
>>>> + *
>>>> + * This is external API for use by OTG core.
>>>> + *
>>>> + * Disconnect from the bus (disable pull) and stop the
>>>> + * gadget controller.
>>>> + */
>>>> +static int usb_gadget_stop(struct usb_gadget *gadget) {
>>>> + struct usb_udc *udc = NULL;
>>>> +
>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>> + mutex_lock(&udc_lock);
>>>> + list_for_each_entry(udc, &udc_list, list)
>>>> + if (udc->gadget == gadget)
>>>> + goto found;
>>>> +
>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>> + __func__);
>>>> + mutex_unlock(&udc_lock);
>>>> + return -EINVAL;
>>>> +
>>>> +found:
>>>> + usb_gadget_disconnect(udc->gadget);
>>>
>>> Likewise, gadget disconnect also should be done by loc_conn() instead
>>> of gadget stop.
>>>
>>>> + udc->driver->disconnect(udc->gadget);
>>>> + usb_gadget_udc_stop(udc);
>>>> + mutex_unlock(&udc_lock);
>>>> +
>>>> + return 0;
>>>> +}
>>>> +
>>>
>>> Li Jun
>>>
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-04-28 12:00 +0200 |
| Message-ID | <rsQTN-10l-21@gated-at.bofh.it> |
| In reply to | #1388918 |
Hi,
On 27/04/16 14:22, Roger Quadros wrote:
> On 26/04/16 03:07, Jun Li wrote:
>> Hi
>>
>>> -----Original Message-----
>>> From: Roger Quadros [mailto:rogerq@ti.com]
>>> Sent: Monday, April 25, 2016 10:04 PM
>>> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
>>> gregkh@linuxfoundation.org; peter.chen@freescale.com
>>> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
>>> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
>>> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
>>> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
>>> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>>>
>>> Hi,
>>>
>>> On 21/04/16 09:38, Jun Li wrote:
>>>> Hi,
>>>>
>>>> ...
>>>>>
>>>>> /**
>>>>> + * usb_gadget_start - start the usb gadget controller and connect to
>>>>> +bus
>>>>> + * @gadget: the gadget device to start
>>>>> + *
>>>>> + * This is external API for use by OTG core.
>>>>> + *
>>>>> + * Start the usb device controller and connect to bus (enable pull).
>>>>> + */
>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>>>>> + int ret;
>>>>> + struct usb_udc *udc = NULL;
>>>>> +
>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>>> + mutex_lock(&udc_lock);
>>>>> + list_for_each_entry(udc, &udc_list, list)
>>>>> + if (udc->gadget == gadget)
>>>>> + goto found;
>>>>> +
>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>>> + __func__);
>>>>> + mutex_unlock(&udc_lock);
>>>>> + return -EINVAL;
>>>>> +
>>>>> +found:
>>>>> + ret = usb_gadget_udc_start(udc);
>>>>> + if (ret)
>>>>> + dev_err(&udc->dev, "USB Device Controller didn't start: %d\n",
>>>>> + ret);
>>>>> + else
>>>>> + usb_udc_connect_control(udc);
>>>>
>>>> For drd, it's fine, but for real otg, gadget connect should be done by
>>>> loc_conn() instead of gadget start.
>>>
>>> It is upto the OTG state machine to call gadget_start() when it needs to
>>> connect to the bus (i.e. loc_conn()). I see no point in calling gadget
>>> start before.
>>>
>>> Do you see any issue in doing so?
>>
>> This is what OTG state machine does:
>> case OTG_STATE_B_PERIPHERAL:
>> otg_chrg_vbus(otg, 0);
>> otg_loc_sof(otg, 0);
>> otg_set_protocol(fsm, PROTO_GADGET);
>> otg_loc_conn(otg, 1);
>> break;
On second thoughts, after seen the OTG state machine.
otg_set_protocol(fsm, PROTO_GADGET); is always followed by otg_loc_conn(otg, 1);
And whenever protocol changes to anything other the PROTO_GADGET, we use
otg_loc_conn(otg, 0);
So otg_loc_conn seems redundant. Can we just get rid of it?
usb_gadget_start() implies that gadget controller starts up and enables pull.
usb_gadget_stop() implies that gadget controller disables pull and stops.
Can you please explain why just these 2 APIs are not sufficient for full OTG?
Do we want anything to happen between gadget controller start/stop and
pull on/off?
cheers,
-roger
>>
>> You intend to abstract something common in this api when start gadget,
>> which should be called by otg_set_protocol(fsm, PROTO_GADGET); and
>> drd_set_protocol(fsm, PROTO_GADGET); right?
>>
>> So you may move usb_udc_connect_control(IMO usb_gadget_connect()
>> is better)out of usb_gadget_start(), then for drd:
>>
>> case OTG_STATE_B_PERIPHERAL:
>> drd_set_protocol(fsm, PROTO_GADGET);
>> otg_drv_vbus(otg, 0);
>> usb_gadget_connect();
>
> OK. I understand now. I'll implement your suggestion. Thanks.
>
> cheers,
> -roger
>
>>>>
>>>>> +
>>>>> + mutex_unlock(&udc_lock);
>>>>> +
>>>>> + return ret;
>>>>> +}
>>>>> +
>>>>> +/**
>>>>> + * usb_gadget_stop - disconnect from bus and stop the usb gadget
>>>>> + * @gadget: The gadget device we want to stop
>>>>> + *
>>>>> + * This is external API for use by OTG core.
>>>>> + *
>>>>> + * Disconnect from the bus (disable pull) and stop the
>>>>> + * gadget controller.
>>>>> + */
>>>>> +static int usb_gadget_stop(struct usb_gadget *gadget) {
>>>>> + struct usb_udc *udc = NULL;
>>>>> +
>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>>> + mutex_lock(&udc_lock);
>>>>> + list_for_each_entry(udc, &udc_list, list)
>>>>> + if (udc->gadget == gadget)
>>>>> + goto found;
>>>>> +
>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>>> + __func__);
>>>>> + mutex_unlock(&udc_lock);
>>>>> + return -EINVAL;
>>>>> +
>>>>> +found:
>>>>> + usb_gadget_disconnect(udc->gadget);
>>>>
>>>> Likewise, gadget disconnect also should be done by loc_conn() instead
>>>> of gadget stop.
>>>>
>>>>> + udc->driver->disconnect(udc->gadget);
>>>>> + usb_gadget_udc_stop(udc);
>>>>> + mutex_unlock(&udc_lock);
>>>>> +
>>>>> + return 0;
>>>>> +}
>>>>> +
>>>>
>>>> Li Jun
>>>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
[toc] | [prev] | [next] | [standalone]
| From | Jun Li <jun.li@nxp.com> |
|---|---|
| Date | 2016-04-28 12:50 +0200 |
| Message-ID | <rsRGb-1DA-43@gated-at.bofh.it> |
| In reply to | #1389949 |
Hi
> -----Original Message-----
> From: Roger Quadros [mailto:rogerq@ti.com]
> Sent: Thursday, April 28, 2016 5:55 PM
> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
> gregkh@linuxfoundation.org; peter.chen@freescale.com
> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>
> Hi,
>
> On 27/04/16 14:22, Roger Quadros wrote:
> > On 26/04/16 03:07, Jun Li wrote:
> >> Hi
> >>
> >>> -----Original Message-----
> >>> From: Roger Quadros [mailto:rogerq@ti.com]
> >>> Sent: Monday, April 25, 2016 10:04 PM
> >>> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu;
> >>> balbi@kernel.org; gregkh@linuxfoundation.org;
> >>> peter.chen@freescale.com
> >>> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
> >>> mathias.nyman@linux.intel.com; tony@atomide.com;
> >>> Joao.Pinto@synopsys.com; abrestic@chromium.org;
> >>> r.baldyga@samsung.com; linux-usb@vger.kernel.org;
> >>> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
> >>> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
> >>>
> >>> Hi,
> >>>
> >>> On 21/04/16 09:38, Jun Li wrote:
> >>>> Hi,
> >>>>
> >>>> ...
> >>>>>
> >>>>> /**
> >>>>> + * usb_gadget_start - start the usb gadget controller and connect
> >>>>> +to bus
> >>>>> + * @gadget: the gadget device to start
> >>>>> + *
> >>>>> + * This is external API for use by OTG core.
> >>>>> + *
> >>>>> + * Start the usb device controller and connect to bus (enable pull).
> >>>>> + */
> >>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>> + int ret;
> >>>>> + struct usb_udc *udc = NULL;
> >>>>> +
> >>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>> + mutex_lock(&udc_lock);
> >>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>> + if (udc->gadget == gadget)
> >>>>> + goto found;
> >>>>> +
> >>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >>>>> + __func__);
> >>>>> + mutex_unlock(&udc_lock);
> >>>>> + return -EINVAL;
> >>>>> +
> >>>>> +found:
> >>>>> + ret = usb_gadget_udc_start(udc);
> >>>>> + if (ret)
> >>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> start: %d\n",
> >>>>> + ret);
> >>>>> + else
> >>>>> + usb_udc_connect_control(udc);
> >>>>
> >>>> For drd, it's fine, but for real otg, gadget connect should be done
> >>>> by
> >>>> loc_conn() instead of gadget start.
> >>>
> >>> It is upto the OTG state machine to call gadget_start() when it
> >>> needs to connect to the bus (i.e. loc_conn()). I see no point in
> >>> calling gadget start before.
> >>>
> >>> Do you see any issue in doing so?
> >>
> >> This is what OTG state machine does:
> >> case OTG_STATE_B_PERIPHERAL:
> >> otg_chrg_vbus(otg, 0);
> >> otg_loc_sof(otg, 0);
> >> otg_set_protocol(fsm, PROTO_GADGET);
> >> otg_loc_conn(otg, 1);
> >> break;
>
> On second thoughts, after seen the OTG state machine.
> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> otg_loc_conn(otg, 1); And whenever protocol changes to anything other the
> PROTO_GADGET, we use otg_loc_conn(otg, 0);
>
> So otg_loc_conn seems redundant. Can we just get rid of it?
>
> usb_gadget_start() implies that gadget controller starts up and enables
> pull.
> usb_gadget_stop() implies that gadget controller disables pull and stops.
>
>
> Can you please explain why just these 2 APIs are not sufficient for full
> OTG?
>
> Do we want anything to happen between gadget controller start/stop and
> pull on/off?
"loc_conn" is a standard output parameter in OTG spec, it deserves
a separate api, yes, current implementation of OTG state machine code
seems allow you to combine the 2 things into one, but don't do that,
because they do not always happen together, e.g. for peripheral only
B device (also a part OTG spec: section 7.3), will be fixed in gadget
mode, but it will do gadget connect and disconnect in its diff states,
so, to make the framework common, let's keep them separated.
Li Jun
>
> cheers,
> -roger
>
> >>
> >> You intend to abstract something common in this api when start
> >> gadget, which should be called by otg_set_protocol(fsm,
> >> PROTO_GADGET); and drd_set_protocol(fsm, PROTO_GADGET); right?
> >>
> >> So you may move usb_udc_connect_control(IMO usb_gadget_connect() is
> >> better)out of usb_gadget_start(), then for drd:
> >>
> >> case OTG_STATE_B_PERIPHERAL:
> >> drd_set_protocol(fsm, PROTO_GADGET);
> >> otg_drv_vbus(otg, 0);
> >> usb_gadget_connect();
> >
> > OK. I understand now. I'll implement your suggestion. Thanks.
> >
> > cheers,
> > -roger
> >
> >>>>
> >>>>> +
> >>>>> + mutex_unlock(&udc_lock);
> >>>>> +
> >>>>> + return ret;
> >>>>> +}
> >>>>> +
> >>>>> +/**
> >>>>> + * usb_gadget_stop - disconnect from bus and stop the usb gadget
> >>>>> + * @gadget: The gadget device we want to stop
> >>>>> + *
> >>>>> + * This is external API for use by OTG core.
> >>>>> + *
> >>>>> + * Disconnect from the bus (disable pull) and stop the
> >>>>> + * gadget controller.
> >>>>> + */
> >>>>> +static int usb_gadget_stop(struct usb_gadget *gadget) {
> >>>>> + struct usb_udc *udc = NULL;
> >>>>> +
> >>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>> + mutex_lock(&udc_lock);
> >>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>> + if (udc->gadget == gadget)
> >>>>> + goto found;
> >>>>> +
> >>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >>>>> + __func__);
> >>>>> + mutex_unlock(&udc_lock);
> >>>>> + return -EINVAL;
> >>>>> +
> >>>>> +found:
> >>>>> + usb_gadget_disconnect(udc->gadget);
> >>>>
> >>>> Likewise, gadget disconnect also should be done by loc_conn()
> >>>> instead of gadget stop.
> >>>>
> >>>>> + udc->driver->disconnect(udc->gadget);
> >>>>> + usb_gadget_udc_stop(udc);
> >>>>> + mutex_unlock(&udc_lock);
> >>>>> +
> >>>>> + return 0;
> >>>>> +}
> >>>>> +
> >>>>
> >>>> Li Jun
> >>>>
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-usb"
> > in the body of a message to majordomo@vger.kernel.org More majordomo
> > info at http://vger.kernel.org/majordomo-info.html
> >
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-04-28 14:30 +0200 |
| Message-ID | <rsTeW-32p-27@gated-at.bofh.it> |
| In reply to | #1390036 |
On 28/04/16 13:23, Jun Li wrote:
> Hi
>
>> -----Original Message-----
>> From: Roger Quadros [mailto:rogerq@ti.com]
>> Sent: Thursday, April 28, 2016 5:55 PM
>> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
>> gregkh@linuxfoundation.org; peter.chen@freescale.com
>> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
>> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
>> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
>> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
>> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>>
>> Hi,
>>
>> On 27/04/16 14:22, Roger Quadros wrote:
>>> On 26/04/16 03:07, Jun Li wrote:
>>>> Hi
>>>>
>>>>> -----Original Message-----
>>>>> From: Roger Quadros [mailto:rogerq@ti.com]
>>>>> Sent: Monday, April 25, 2016 10:04 PM
>>>>> To: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu;
>>>>> balbi@kernel.org; gregkh@linuxfoundation.org;
>>>>> peter.chen@freescale.com
>>>>> Cc: dan.j.williams@intel.com; jun.li@freescale.com;
>>>>> mathias.nyman@linux.intel.com; tony@atomide.com;
>>>>> Joao.Pinto@synopsys.com; abrestic@chromium.org;
>>>>> r.baldyga@samsung.com; linux-usb@vger.kernel.org;
>>>>> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
>>>>> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>>>>>
>>>>> Hi,
>>>>>
>>>>> On 21/04/16 09:38, Jun Li wrote:
>>>>>> Hi,
>>>>>>
>>>>>> ...
>>>>>>>
>>>>>>> /**
>>>>>>> + * usb_gadget_start - start the usb gadget controller and connect
>>>>>>> +to bus
>>>>>>> + * @gadget: the gadget device to start
>>>>>>> + *
>>>>>>> + * This is external API for use by OTG core.
>>>>>>> + *
>>>>>>> + * Start the usb device controller and connect to bus (enable pull).
>>>>>>> + */
>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>>>>>>> + int ret;
>>>>>>> + struct usb_udc *udc = NULL;
>>>>>>> +
>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>>>>> + mutex_lock(&udc_lock);
>>>>>>> + list_for_each_entry(udc, &udc_list, list)
>>>>>>> + if (udc->gadget == gadget)
>>>>>>> + goto found;
>>>>>>> +
>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>>>>> + __func__);
>>>>>>> + mutex_unlock(&udc_lock);
>>>>>>> + return -EINVAL;
>>>>>>> +
>>>>>>> +found:
>>>>>>> + ret = usb_gadget_udc_start(udc);
>>>>>>> + if (ret)
>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
>> start: %d\n",
>>>>>>> + ret);
>>>>>>> + else
>>>>>>> + usb_udc_connect_control(udc);
>>>>>>
>>>>>> For drd, it's fine, but for real otg, gadget connect should be done
>>>>>> by
>>>>>> loc_conn() instead of gadget start.
>>>>>
>>>>> It is upto the OTG state machine to call gadget_start() when it
>>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
>>>>> calling gadget start before.
>>>>>
>>>>> Do you see any issue in doing so?
>>>>
>>>> This is what OTG state machine does:
>>>> case OTG_STATE_B_PERIPHERAL:
>>>> otg_chrg_vbus(otg, 0);
>>>> otg_loc_sof(otg, 0);
>>>> otg_set_protocol(fsm, PROTO_GADGET);
>>>> otg_loc_conn(otg, 1);
>>>> break;
>>
>> On second thoughts, after seen the OTG state machine.
>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
>> otg_loc_conn(otg, 1); And whenever protocol changes to anything other the
>> PROTO_GADGET, we use otg_loc_conn(otg, 0);
>>
>> So otg_loc_conn seems redundant. Can we just get rid of it?
>>
>> usb_gadget_start() implies that gadget controller starts up and enables
>> pull.
>> usb_gadget_stop() implies that gadget controller disables pull and stops.
>>
>>
>> Can you please explain why just these 2 APIs are not sufficient for full
>> OTG?
>>
>> Do we want anything to happen between gadget controller start/stop and
>> pull on/off?
>
> "loc_conn" is a standard output parameter in OTG spec, it deserves
> a separate api, yes, current implementation of OTG state machine code
> seems allow you to combine the 2 things into one, but don't do that,
> because they do not always happen together, e.g. for peripheral only
> B device (also a part OTG spec: section 7.3), will be fixed in gadget
> mode, but it will do gadget connect and disconnect in its diff states,
> so, to make the framework common, let's keep them separated.
I'm sorry but I didn't understand your comment about "it will do gadget
connect and disconnect in its diff states"
I am reading the OTG v2.0 specification and loc_conn is always true when
b_peripheral or a_peripheral is true and false otherwise.
loc_conn is just an internal state variable and it corresponds to our gadget_start/stop() state.
As per 7.4.2.3
"loc_conn
The “local connect” (loc_conn) variable is TRUE when the local device has signaled that it is connected to
the bus. This variable is FALSE when the local device has signaled that it is disconnected from the bus"
Can you please point me in the specification if there is any place where loc_conn
is false and b_peripheral/a_peripheral is true?
cheers,
-roger
[toc] | [prev] | [next] | [standalone]
| From | Jun Li <jun.li@nxp.com> |
|---|---|
| Date | 2016-05-03 09:10 +0200 |
| Message-ID | <ruCD0-3sm-21@gated-at.bofh.it> |
| In reply to | #1390124 |
Hi
> >>>>>>> /**
> >>>>>>> + * usb_gadget_start - start the usb gadget controller and
> >>>>>>> +connect to bus
> >>>>>>> + * @gadget: the gadget device to start
> >>>>>>> + *
> >>>>>>> + * This is external API for use by OTG core.
> >>>>>>> + *
> >>>>>>> + * Start the usb device controller and connect to bus (enable
> pull).
> >>>>>>> + */
> >>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>>>> + int ret;
> >>>>>>> + struct usb_udc *udc = NULL;
> >>>>>>> +
> >>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>>>> + mutex_lock(&udc_lock);
> >>>>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>>>> + if (udc->gadget == gadget)
> >>>>>>> + goto found;
> >>>>>>> +
> >>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >>>>>>> + __func__);
> >>>>>>> + mutex_unlock(&udc_lock);
> >>>>>>> + return -EINVAL;
> >>>>>>> +
> >>>>>>> +found:
> >>>>>>> + ret = usb_gadget_udc_start(udc);
> >>>>>>> + if (ret)
> >>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> >> start: %d\n",
> >>>>>>> + ret);
> >>>>>>> + else
> >>>>>>> + usb_udc_connect_control(udc);
> >>>>>>
> >>>>>> For drd, it's fine, but for real otg, gadget connect should be
> >>>>>> done by
> >>>>>> loc_conn() instead of gadget start.
> >>>>>
> >>>>> It is upto the OTG state machine to call gadget_start() when it
> >>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
> >>>>> calling gadget start before.
> >>>>>
> >>>>> Do you see any issue in doing so?
> >>>>
> >>>> This is what OTG state machine does:
> >>>> case OTG_STATE_B_PERIPHERAL:
> >>>> otg_chrg_vbus(otg, 0);
> >>>> otg_loc_sof(otg, 0);
> >>>> otg_set_protocol(fsm, PROTO_GADGET);
> >>>> otg_loc_conn(otg, 1);
> >>>> break;
> >>
> >> On second thoughts, after seen the OTG state machine.
> >> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> >> otg_loc_conn(otg, 1); And whenever protocol changes to anything other
> >> the PROTO_GADGET, we use otg_loc_conn(otg, 0);
> >>
> >> So otg_loc_conn seems redundant. Can we just get rid of it?
> >>
> >> usb_gadget_start() implies that gadget controller starts up and
> >> enables pull.
> >> usb_gadget_stop() implies that gadget controller disables pull and
> stops.
> >>
> >>
> >> Can you please explain why just these 2 APIs are not sufficient for
> >> full OTG?
> >>
> >> Do we want anything to happen between gadget controller start/stop
> >> and pull on/off?
> >
> > "loc_conn" is a standard output parameter in OTG spec, it deserves a
> > separate api, yes, current implementation of OTG state machine code
> > seems allow you to combine the 2 things into one, but don't do that,
> > because they do not always happen together, e.g. for peripheral only B
> > device (also a part OTG spec: section 7.3), will be fixed in gadget
> > mode, but it will do gadget connect and disconnect in its diff states,
> > so, to make the framework common, let's keep them separated.
>
> I'm sorry but I didn't understand your comment about "it will do gadget
> connect and disconnect in its diff states"
Gadget connect means loc_conn(1).
>
> I am reading the OTG v2.0 specification and loc_conn is always true when
> b_peripheral or a_peripheral is true and false otherwise.
If you only talk about these 2 states, yes, loc_conn is ture.
>
> loc_conn is just an internal state variable and it corresponds to our
> gadget_start/stop() state.
It's not an internal variable, there are OTG state machine
parameters tables(table 7-x) in OTG spec which have clear lists
which are "internal variable", which are "input", which are "output"...
Those APIs are driven directly from OTG spec, easily understood so
code reader can know what's those APIs for. For real OTG, I don't
see the benefit if get rid of it.
>
> As per 7.4.2.3
> "loc_conn
> The "local connect" (loc_conn) variable is TRUE when the local device has
> signaled that it is connected to the bus. This variable is FALSE when the
> local device has signaled that it is disconnected from the bus"
>
> Can you please point me in the specification if there is any place where
> loc_conn is false and b_peripheral/a_peripheral is true?
>
> cheers,
> -roger
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-05-03 17:50 +0200 |
| Message-ID | <ruKKe-2eW-9@gated-at.bofh.it> |
| In reply to | #1393096 |
Hi,
On 03/05/16 10:06, Jun Li wrote:
> Hi
>
>>>>>>>>> /**
>>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
>>>>>>>>> +connect to bus
>>>>>>>>> + * @gadget: the gadget device to start
>>>>>>>>> + *
>>>>>>>>> + * This is external API for use by OTG core.
>>>>>>>>> + *
>>>>>>>>> + * Start the usb device controller and connect to bus (enable
>> pull).
>>>>>>>>> + */
>>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>>>>>>>>> + int ret;
>>>>>>>>> + struct usb_udc *udc = NULL;
>>>>>>>>> +
>>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>>>>>>> + mutex_lock(&udc_lock);
>>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
>>>>>>>>> + if (udc->gadget == gadget)
>>>>>>>>> + goto found;
>>>>>>>>> +
>>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>>>>>>> + __func__);
>>>>>>>>> + mutex_unlock(&udc_lock);
>>>>>>>>> + return -EINVAL;
>>>>>>>>> +
>>>>>>>>> +found:
>>>>>>>>> + ret = usb_gadget_udc_start(udc);
>>>>>>>>> + if (ret)
>>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
>>>> start: %d\n",
>>>>>>>>> + ret);
>>>>>>>>> + else
>>>>>>>>> + usb_udc_connect_control(udc);
>>>>>>>>
>>>>>>>> For drd, it's fine, but for real otg, gadget connect should be
>>>>>>>> done by
>>>>>>>> loc_conn() instead of gadget start.
>>>>>>>
>>>>>>> It is upto the OTG state machine to call gadget_start() when it
>>>>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
>>>>>>> calling gadget start before.
>>>>>>>
>>>>>>> Do you see any issue in doing so?
>>>>>>
>>>>>> This is what OTG state machine does:
>>>>>> case OTG_STATE_B_PERIPHERAL:
>>>>>> otg_chrg_vbus(otg, 0);
>>>>>> otg_loc_sof(otg, 0);
>>>>>> otg_set_protocol(fsm, PROTO_GADGET);
>>>>>> otg_loc_conn(otg, 1);
>>>>>> break;
>>>>
>>>> On second thoughts, after seen the OTG state machine.
>>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
>>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything other
>>>> the PROTO_GADGET, we use otg_loc_conn(otg, 0);
>>>>
>>>> So otg_loc_conn seems redundant. Can we just get rid of it?
>>>>
>>>> usb_gadget_start() implies that gadget controller starts up and
>>>> enables pull.
>>>> usb_gadget_stop() implies that gadget controller disables pull and
>> stops.
>>>>
>>>>
>>>> Can you please explain why just these 2 APIs are not sufficient for
>>>> full OTG?
>>>>
>>>> Do we want anything to happen between gadget controller start/stop
>>>> and pull on/off?
>>>
>>> "loc_conn" is a standard output parameter in OTG spec, it deserves a
>>> separate api, yes, current implementation of OTG state machine code
>>> seems allow you to combine the 2 things into one, but don't do that,
>>> because they do not always happen together, e.g. for peripheral only B
>>> device (also a part OTG spec: section 7.3), will be fixed in gadget
>>> mode, but it will do gadget connect and disconnect in its diff states,
>>> so, to make the framework common, let's keep them separated.
>>
>> I'm sorry but I didn't understand your comment about "it will do gadget
>> connect and disconnect in its diff states"
>
> Gadget connect means loc_conn(1).
>
>>
>> I am reading the OTG v2.0 specification and loc_conn is always true when
>> b_peripheral or a_peripheral is true and false otherwise.
>
> If you only talk about these 2 states, yes, loc_conn is ture.
>
>>
>> loc_conn is just an internal state variable and it corresponds to our
>> gadget_start/stop() state.
>
> It's not an internal variable, there are OTG state machine
> parameters tables(table 7-x) in OTG spec which have clear lists
> which are "internal variable", which are "input", which are "output"...
>
> Those APIs are driven directly from OTG spec, easily understood so
> code reader can know what's those APIs for. For real OTG, I don't
> see the benefit if get rid of it.
OK, no issues if we don't get rid of it. But I am still in favor of
doing a connect in usb_gadget_start(), because
1) If we split connect/disconnect() and usb_gadget_start/stop() then there is
additional overhead of keeping track whether connect was called or not during
usb_gadget_stop(). Plus we need to take care that users don't call connect/disconnect
outside of start/stop. It is just complicating things.
2) for many controllers there is no difference between run/stop and
connect/disconnect. i.e. a single register bit controls both.
3) it fits well with the OTG specification. OTG specification says
that loc_conn *variable* must be true *after* the device has signalled a connect.
So OTG state machine can safely set loc_conn variable to true after doing
otg_set_protocol(fsm, PROTO_GADGET); and set it to false otherwise.
Note, OTG specification does not say to take any action based on loc_conn.
It is just a connect indicator variable. So we might have to fix this in the
OTG state machine.
My suggestion is to keep it simple for now. Try the OTG implementation,
and later if we find issues then extend it as required.
cheers,
-roger
>
>>
>> As per 7.4.2.3
>> "loc_conn
>> The "local connect" (loc_conn) variable is TRUE when the local device has
>> signaled that it is connected to the bus. This variable is FALSE when the
>> local device has signaled that it is disconnected from the bus"
>>
>> Can you please point me in the specification if there is any place where
>> loc_conn is false and b_peripheral/a_peripheral is true?
>>
>> cheers,
>> -roger
[toc] | [prev] | [next] | [standalone]
| From | Peter Chen <hzpeterchen@gmail.com> |
|---|---|
| Date | 2016-05-04 04:00 +0200 |
| Message-ID | <ruUgx-2AT-1@gated-at.bofh.it> |
| In reply to | #1393550 |
On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
> Hi,
>
> On 03/05/16 10:06, Jun Li wrote:
> > Hi
> >
> >>>>>>>>> /**
> >>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
> >>>>>>>>> +connect to bus
> >>>>>>>>> + * @gadget: the gadget device to start
> >>>>>>>>> + *
> >>>>>>>>> + * This is external API for use by OTG core.
> >>>>>>>>> + *
> >>>>>>>>> + * Start the usb device controller and connect to bus (enable
> >> pull).
> >>>>>>>>> + */
> >>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>>>>>> + int ret;
> >>>>>>>>> + struct usb_udc *udc = NULL;
> >>>>>>>>> +
> >>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>>>>>> + mutex_lock(&udc_lock);
> >>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>>>>>> + if (udc->gadget == gadget)
> >>>>>>>>> + goto found;
> >>>>>>>>> +
> >>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >>>>>>>>> + __func__);
> >>>>>>>>> + mutex_unlock(&udc_lock);
> >>>>>>>>> + return -EINVAL;
> >>>>>>>>> +
> >>>>>>>>> +found:
> >>>>>>>>> + ret = usb_gadget_udc_start(udc);
> >>>>>>>>> + if (ret)
> >>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> >>>> start: %d\n",
> >>>>>>>>> + ret);
> >>>>>>>>> + else
> >>>>>>>>> + usb_udc_connect_control(udc);
> >>>>>>>>
> >>>>>>>> For drd, it's fine, but for real otg, gadget connect should be
> >>>>>>>> done by
> >>>>>>>> loc_conn() instead of gadget start.
> >>>>>>>
> >>>>>>> It is upto the OTG state machine to call gadget_start() when it
> >>>>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
> >>>>>>> calling gadget start before.
> >>>>>>>
> >>>>>>> Do you see any issue in doing so?
> >>>>>>
> >>>>>> This is what OTG state machine does:
> >>>>>> case OTG_STATE_B_PERIPHERAL:
> >>>>>> otg_chrg_vbus(otg, 0);
> >>>>>> otg_loc_sof(otg, 0);
> >>>>>> otg_set_protocol(fsm, PROTO_GADGET);
> >>>>>> otg_loc_conn(otg, 1);
> >>>>>> break;
> >>>>
> >>>> On second thoughts, after seen the OTG state machine.
> >>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> >>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything other
> >>>> the PROTO_GADGET, we use otg_loc_conn(otg, 0);
> >>>>
> >>>> So otg_loc_conn seems redundant. Can we just get rid of it?
> >>>>
> >>>> usb_gadget_start() implies that gadget controller starts up and
> >>>> enables pull.
> >>>> usb_gadget_stop() implies that gadget controller disables pull and
> >> stops.
> >>>>
> >>>>
> >>>> Can you please explain why just these 2 APIs are not sufficient for
> >>>> full OTG?
> >>>>
> >>>> Do we want anything to happen between gadget controller start/stop
> >>>> and pull on/off?
> >>>
> >>> "loc_conn" is a standard output parameter in OTG spec, it deserves a
> >>> separate api, yes, current implementation of OTG state machine code
> >>> seems allow you to combine the 2 things into one, but don't do that,
> >>> because they do not always happen together, e.g. for peripheral only B
> >>> device (also a part OTG spec: section 7.3), will be fixed in gadget
> >>> mode, but it will do gadget connect and disconnect in its diff states,
> >>> so, to make the framework common, let's keep them separated.
> >>
> >> I'm sorry but I didn't understand your comment about "it will do gadget
> >> connect and disconnect in its diff states"
> >
> > Gadget connect means loc_conn(1).
> >
> >>
> >> I am reading the OTG v2.0 specification and loc_conn is always true when
> >> b_peripheral or a_peripheral is true and false otherwise.
> >
> > If you only talk about these 2 states, yes, loc_conn is ture.
> >
> >>
> >> loc_conn is just an internal state variable and it corresponds to our
> >> gadget_start/stop() state.
> >
> > It's not an internal variable, there are OTG state machine
> > parameters tables(table 7-x) in OTG spec which have clear lists
> > which are "internal variable", which are "input", which are "output"...
> >
> > Those APIs are driven directly from OTG spec, easily understood so
> > code reader can know what's those APIs for. For real OTG, I don't
> > see the benefit if get rid of it.
>
> OK, no issues if we don't get rid of it. But I am still in favor of
> doing a connect in usb_gadget_start(), because
>
> 1) If we split connect/disconnect() and usb_gadget_start/stop() then there is
> additional overhead of keeping track whether connect was called or not during
> usb_gadget_stop(). Plus we need to take care that users don't call connect/disconnect
> outside of start/stop. It is just complicating things.
>
> 2) for many controllers there is no difference between run/stop and
> connect/disconnect. i.e. a single register bit controls both.
>
> 3) it fits well with the OTG specification. OTG specification says
> that loc_conn *variable* must be true *after* the device has signalled a connect.
> So OTG state machine can safely set loc_conn variable to true after doing
> otg_set_protocol(fsm, PROTO_GADGET); and set it to false otherwise.
>
> Note, OTG specification does not say to take any action based on loc_conn.
> It is just a connect indicator variable. So we might have to fix this in the
> OTG state machine.
>
> My suggestion is to keep it simple for now. Try the OTG implementation,
> and later if we find issues then extend it as required.
>
I agree with you, roger.
loc_conn action is only needed for peripheral, we can't do real !loc_conn
at host mode. Besides, loc_conn is the output, we need to set/clear it after
state has changed, and current gadget framework already takes well for
connection and disconnection state, so it is better to delete loc_conn
action at otg_fsm->ops, and only keeps it as indicator for OTG FSM
reference.
--
Best Regards,
Peter Chen
[toc] | [prev] | [next] | [standalone]
| From | Peter Chen <hzpeterchen@gmail.com> |
|---|---|
| Date | 2016-05-04 05:50 +0200 |
| Message-ID | <ruVZ0-4i0-21@gated-at.bofh.it> |
| In reply to | #1393550 |
On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
> Hi,
>
> On 03/05/16 10:06, Jun Li wrote:
> > Hi
> >
> >>>>>>>>> /**
> >>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
> >>>>>>>>> +connect to bus
> >>>>>>>>> + * @gadget: the gadget device to start
> >>>>>>>>> + *
> >>>>>>>>> + * This is external API for use by OTG core.
> >>>>>>>>> + *
> >>>>>>>>> + * Start the usb device controller and connect to bus (enable
> >> pull).
> >>>>>>>>> + */
> >>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>>>>>> + int ret;
> >>>>>>>>> + struct usb_udc *udc = NULL;
> >>>>>>>>> +
> >>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>>>>>> + mutex_lock(&udc_lock);
> >>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>>>>>> + if (udc->gadget == gadget)
> >>>>>>>>> + goto found;
> >>>>>>>>> +
> >>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >>>>>>>>> + __func__);
> >>>>>>>>> + mutex_unlock(&udc_lock);
> >>>>>>>>> + return -EINVAL;
> >>>>>>>>> +
> >>>>>>>>> +found:
> >>>>>>>>> + ret = usb_gadget_udc_start(udc);
> >>>>>>>>> + if (ret)
> >>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> >>>> start: %d\n",
> >>>>>>>>> + ret);
> >>>>>>>>> + else
> >>>>>>>>> + usb_udc_connect_control(udc);
> >>>>>>>>
> >>>>>>>> For drd, it's fine, but for real otg, gadget connect should be
> >>>>>>>> done by
> >>>>>>>> loc_conn() instead of gadget start.
> >>>>>>>
> >>>>>>> It is upto the OTG state machine to call gadget_start() when it
> >>>>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
> >>>>>>> calling gadget start before.
> >>>>>>>
> >>>>>>> Do you see any issue in doing so?
> >>>>>>
> >>>>>> This is what OTG state machine does:
> >>>>>> case OTG_STATE_B_PERIPHERAL:
> >>>>>> otg_chrg_vbus(otg, 0);
> >>>>>> otg_loc_sof(otg, 0);
> >>>>>> otg_set_protocol(fsm, PROTO_GADGET);
> >>>>>> otg_loc_conn(otg, 1);
> >>>>>> break;
> >>>>
> >>>> On second thoughts, after seen the OTG state machine.
> >>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> >>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything other
> >>>> the PROTO_GADGET, we use otg_loc_conn(otg, 0);
> >>>>
> >>>> So otg_loc_conn seems redundant. Can we just get rid of it?
> >>>>
> >>>> usb_gadget_start() implies that gadget controller starts up and
> >>>> enables pull.
> >>>> usb_gadget_stop() implies that gadget controller disables pull and
> >> stops.
> >>>>
> >>>>
> >>>> Can you please explain why just these 2 APIs are not sufficient for
> >>>> full OTG?
> >>>>
> >>>> Do we want anything to happen between gadget controller start/stop
> >>>> and pull on/off?
> >>>
> >>> "loc_conn" is a standard output parameter in OTG spec, it deserves a
> >>> separate api, yes, current implementation of OTG state machine code
> >>> seems allow you to combine the 2 things into one, but don't do that,
> >>> because they do not always happen together, e.g. for peripheral only B
> >>> device (also a part OTG spec: section 7.3), will be fixed in gadget
> >>> mode, but it will do gadget connect and disconnect in its diff states,
> >>> so, to make the framework common, let's keep them separated.
> >>
> >> I'm sorry but I didn't understand your comment about "it will do gadget
> >> connect and disconnect in its diff states"
> >
> > Gadget connect means loc_conn(1).
> >
> >>
> >> I am reading the OTG v2.0 specification and loc_conn is always true when
> >> b_peripheral or a_peripheral is true and false otherwise.
> >
> > If you only talk about these 2 states, yes, loc_conn is ture.
> >
> >>
> >> loc_conn is just an internal state variable and it corresponds to our
> >> gadget_start/stop() state.
> >
> > It's not an internal variable, there are OTG state machine
> > parameters tables(table 7-x) in OTG spec which have clear lists
> > which are "internal variable", which are "input", which are "output"...
> >
> > Those APIs are driven directly from OTG spec, easily understood so
> > code reader can know what's those APIs for. For real OTG, I don't
> > see the benefit if get rid of it.
>
> OK, no issues if we don't get rid of it. But I am still in favor of
> doing a connect in usb_gadget_start(), because
>
> 1) If we split connect/disconnect() and usb_gadget_start/stop() then there is
> additional overhead of keeping track whether connect was called or not during
> usb_gadget_stop(). Plus we need to take care that users don't call connect/disconnect
> outside of start/stop. It is just complicating things.
>
> 2) for many controllers there is no difference between run/stop and
> connect/disconnect. i.e. a single register bit controls both.
>
> 3) it fits well with the OTG specification. OTG specification says
> that loc_conn *variable* must be true *after* the device has signalled a connect.
> So OTG state machine can safely set loc_conn variable to true after doing
> otg_set_protocol(fsm, PROTO_GADGET); and set it to false otherwise.
>
> Note, OTG specification does not say to take any action based on loc_conn.
> It is just a connect indicator variable. So we might have to fix this in the
> OTG state machine.
>
> My suggestion is to keep it simple for now. Try the OTG implementation,
> and later if we find issues then extend it as required.
>
Just talked with Jun, he is worried if loc_conn != pullup_dp at some
situations. So, how about only calling start gadget at usb_start_gadget,
and pullup_dp at drd_set_state (see below).
static void drd_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state)
{
struct usb_otg *otg = container_of(fsm, struct usb_otg, fsm);
if (otg->state == new_state)
return;
fsm->state_changed = 1;
dev_dbg(otg->dev, "otg: set state: %s\n",
usb_otg_state_string(new_state));
switch (new_state) {
case OTG_STATE_B_IDLE:
+ usb_udc_vbus_handler(gadget, false);
drd_set_protocol(fsm, PROTO_UNDEF);
otg_drv_vbus(otg, 0);
break;
case OTG_STATE_B_PERIPHERAL:
drd_set_protocol(fsm, PROTO_GADGET);
+ usb_udc_vbus_handler(gadget, true);
otg_drv_vbus(otg, 0);
break;
......
};
}
When the OTG FSM is added to this framework, it can keep usb_fsm->ops->loc_conn,
and using the current FSM.
--
Best Regards,
Peter Chen
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-05-04 08:40 +0200 |
| Message-ID | <ruYDw-77h-27@gated-at.bofh.it> |
| In reply to | #1393936 |
Peter,
On 04/05/16 06:35, Peter Chen wrote:
> On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
>> Hi,
>>
>> On 03/05/16 10:06, Jun Li wrote:
>>> Hi
>>>
>>>>>>>>>>> /**
>>>>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
>>>>>>>>>>> +connect to bus
>>>>>>>>>>> + * @gadget: the gadget device to start
>>>>>>>>>>> + *
>>>>>>>>>>> + * This is external API for use by OTG core.
>>>>>>>>>>> + *
>>>>>>>>>>> + * Start the usb device controller and connect to bus (enable
>>>> pull).
>>>>>>>>>>> + */
>>>>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>>>>>>>>>>> + int ret;
>>>>>>>>>>> + struct usb_udc *udc = NULL;
>>>>>>>>>>> +
>>>>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>>>>>>>>> + mutex_lock(&udc_lock);
>>>>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
>>>>>>>>>>> + if (udc->gadget == gadget)
>>>>>>>>>>> + goto found;
>>>>>>>>>>> +
>>>>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
>>>>>>>>>>> + __func__);
>>>>>>>>>>> + mutex_unlock(&udc_lock);
>>>>>>>>>>> + return -EINVAL;
>>>>>>>>>>> +
>>>>>>>>>>> +found:
>>>>>>>>>>> + ret = usb_gadget_udc_start(udc);
>>>>>>>>>>> + if (ret)
>>>>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
>>>>>> start: %d\n",
>>>>>>>>>>> + ret);
>>>>>>>>>>> + else
>>>>>>>>>>> + usb_udc_connect_control(udc);
>>>>>>>>>>
>>>>>>>>>> For drd, it's fine, but for real otg, gadget connect should be
>>>>>>>>>> done by
>>>>>>>>>> loc_conn() instead of gadget start.
>>>>>>>>>
>>>>>>>>> It is upto the OTG state machine to call gadget_start() when it
>>>>>>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
>>>>>>>>> calling gadget start before.
>>>>>>>>>
>>>>>>>>> Do you see any issue in doing so?
>>>>>>>>
>>>>>>>> This is what OTG state machine does:
>>>>>>>> case OTG_STATE_B_PERIPHERAL:
>>>>>>>> otg_chrg_vbus(otg, 0);
>>>>>>>> otg_loc_sof(otg, 0);
>>>>>>>> otg_set_protocol(fsm, PROTO_GADGET);
>>>>>>>> otg_loc_conn(otg, 1);
>>>>>>>> break;
>>>>>>
>>>>>> On second thoughts, after seen the OTG state machine.
>>>>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
>>>>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything other
>>>>>> the PROTO_GADGET, we use otg_loc_conn(otg, 0);
>>>>>>
>>>>>> So otg_loc_conn seems redundant. Can we just get rid of it?
>>>>>>
>>>>>> usb_gadget_start() implies that gadget controller starts up and
>>>>>> enables pull.
>>>>>> usb_gadget_stop() implies that gadget controller disables pull and
>>>> stops.
>>>>>>
>>>>>>
>>>>>> Can you please explain why just these 2 APIs are not sufficient for
>>>>>> full OTG?
>>>>>>
>>>>>> Do we want anything to happen between gadget controller start/stop
>>>>>> and pull on/off?
>>>>>
>>>>> "loc_conn" is a standard output parameter in OTG spec, it deserves a
>>>>> separate api, yes, current implementation of OTG state machine code
>>>>> seems allow you to combine the 2 things into one, but don't do that,
>>>>> because they do not always happen together, e.g. for peripheral only B
>>>>> device (also a part OTG spec: section 7.3), will be fixed in gadget
>>>>> mode, but it will do gadget connect and disconnect in its diff states,
>>>>> so, to make the framework common, let's keep them separated.
>>>>
>>>> I'm sorry but I didn't understand your comment about "it will do gadget
>>>> connect and disconnect in its diff states"
>>>
>>> Gadget connect means loc_conn(1).
>>>
>>>>
>>>> I am reading the OTG v2.0 specification and loc_conn is always true when
>>>> b_peripheral or a_peripheral is true and false otherwise.
>>>
>>> If you only talk about these 2 states, yes, loc_conn is ture.
>>>
>>>>
>>>> loc_conn is just an internal state variable and it corresponds to our
>>>> gadget_start/stop() state.
>>>
>>> It's not an internal variable, there are OTG state machine
>>> parameters tables(table 7-x) in OTG spec which have clear lists
>>> which are "internal variable", which are "input", which are "output"...
>>>
>>> Those APIs are driven directly from OTG spec, easily understood so
>>> code reader can know what's those APIs for. For real OTG, I don't
>>> see the benefit if get rid of it.
>>
>> OK, no issues if we don't get rid of it. But I am still in favor of
>> doing a connect in usb_gadget_start(), because
>>
>> 1) If we split connect/disconnect() and usb_gadget_start/stop() then there is
>> additional overhead of keeping track whether connect was called or not during
>> usb_gadget_stop(). Plus we need to take care that users don't call connect/disconnect
>> outside of start/stop. It is just complicating things.
>>
>> 2) for many controllers there is no difference between run/stop and
>> connect/disconnect. i.e. a single register bit controls both.
>>
>> 3) it fits well with the OTG specification. OTG specification says
>> that loc_conn *variable* must be true *after* the device has signalled a connect.
>> So OTG state machine can safely set loc_conn variable to true after doing
>> otg_set_protocol(fsm, PROTO_GADGET); and set it to false otherwise.
>>
>> Note, OTG specification does not say to take any action based on loc_conn.
>> It is just a connect indicator variable. So we might have to fix this in the
>> OTG state machine.
>>
>> My suggestion is to keep it simple for now. Try the OTG implementation,
>> and later if we find issues then extend it as required.
>>
>
> Just talked with Jun, he is worried if loc_conn != pullup_dp at some
> situations. So, how about only calling start gadget at usb_start_gadget,
Which situations?
> and pullup_dp at drd_set_state (see below).
>
>
> static void drd_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state)
> {
> struct usb_otg *otg = container_of(fsm, struct usb_otg, fsm);
>
> if (otg->state == new_state)
> return;
>
> fsm->state_changed = 1;
> dev_dbg(otg->dev, "otg: set state: %s\n",
> usb_otg_state_string(new_state));
> switch (new_state) {
> case OTG_STATE_B_IDLE:
> + usb_udc_vbus_handler(gadget, false);
This is redundant, When we switch from PROTO_GADGET to PROTO_UNDEF
we do a usb_gadget_stop(), and a usb_gadget_disconnect() is done there.
> drd_set_protocol(fsm, PROTO_UNDEF);
> otg_drv_vbus(otg, 0);
> break;
> case OTG_STATE_B_PERIPHERAL:
> drd_set_protocol(fsm, PROTO_GADGET);
> + usb_udc_vbus_handler(gadget, true);
This is redundant as well since usb_gadget_start() is doing a
usb_gadget_connect().
> otg_drv_vbus(otg, 0);
> break;
> ......
> };
>
> }
>
> When the OTG FSM is added to this framework, it can keep usb_fsm->ops->loc_conn,
> and using the current FSM.
>
I have no strong opinions for or against usb_fsm->ops->loc_conn.
Although strictly speaking, we shouldn't take any action based on loc_conn.
It is just a state variable indicator.
cheers,
-roger
[toc] | [prev] | [next] | [standalone]
| From | Peter Chen <hzpeterchen@gmail.com> |
|---|---|
| Date | 2016-05-04 10:10 +0200 |
| Message-ID | <rv02B-jU-1@gated-at.bofh.it> |
| In reply to | #1394021 |
On Wed, May 04, 2016 at 09:37:29AM +0300, Roger Quadros wrote:
> Peter,
>
> On 04/05/16 06:35, Peter Chen wrote:
> > On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
> >> Hi,
> >>
> >> On 03/05/16 10:06, Jun Li wrote:
> >>> Hi
> >>>
> >>>>>>>>>>> /**
> >>>>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
> >>>>>>>>>>> +connect to bus
> >>>>>>>>>>> + * @gadget: the gadget device to start
> >>>>>>>>>>> + *
> >>>>>>>>>>> + * This is external API for use by OTG core.
> >>>>>>>>>>> + *
> >>>>>>>>>>> + * Start the usb device controller and connect to bus (enable
> >>>> pull).
> >>>>>>>>>>> + */
> >>>>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>>>>>>>> + int ret;
> >>>>>>>>>>> + struct usb_udc *udc = NULL;
> >>>>>>>>>>> +
> >>>>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>>>>>>>> + mutex_lock(&udc_lock);
> >>>>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>>>>>>>> + if (udc->gadget == gadget)
> >>>>>>>>>>> + goto found;
> >>>>>>>>>>> +
> >>>>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not registered.\n",
> >>>>>>>>>>> + __func__);
> >>>>>>>>>>> + mutex_unlock(&udc_lock);
> >>>>>>>>>>> + return -EINVAL;
> >>>>>>>>>>> +
> >>>>>>>>>>> +found:
> >>>>>>>>>>> + ret = usb_gadget_udc_start(udc);
> >>>>>>>>>>> + if (ret)
> >>>>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> >>>>>> start: %d\n",
> >>>>>>>>>>> + ret);
> >>>>>>>>>>> + else
> >>>>>>>>>>> + usb_udc_connect_control(udc);
> >>>>>>>>>>
> >>>>>>>>>> For drd, it's fine, but for real otg, gadget connect should be
> >>>>>>>>>> done by
> >>>>>>>>>> loc_conn() instead of gadget start.
> >>>>>>>>>
> >>>>>>>>> It is upto the OTG state machine to call gadget_start() when it
> >>>>>>>>> needs to connect to the bus (i.e. loc_conn()). I see no point in
> >>>>>>>>> calling gadget start before.
> >>>>>>>>>
> >>>>>>>>> Do you see any issue in doing so?
> >>>>>>>>
> >>>>>>>> This is what OTG state machine does:
> >>>>>>>> case OTG_STATE_B_PERIPHERAL:
> >>>>>>>> otg_chrg_vbus(otg, 0);
> >>>>>>>> otg_loc_sof(otg, 0);
> >>>>>>>> otg_set_protocol(fsm, PROTO_GADGET);
> >>>>>>>> otg_loc_conn(otg, 1);
> >>>>>>>> break;
> >>>>>>
> >>>>>> On second thoughts, after seen the OTG state machine.
> >>>>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> >>>>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything other
> >>>>>> the PROTO_GADGET, we use otg_loc_conn(otg, 0);
> >>>>>>
> >>>>>> So otg_loc_conn seems redundant. Can we just get rid of it?
> >>>>>>
> >>>>>> usb_gadget_start() implies that gadget controller starts up and
> >>>>>> enables pull.
> >>>>>> usb_gadget_stop() implies that gadget controller disables pull and
> >>>> stops.
> >>>>>>
> >>>>>>
> >>>>>> Can you please explain why just these 2 APIs are not sufficient for
> >>>>>> full OTG?
> >>>>>>
> >>>>>> Do we want anything to happen between gadget controller start/stop
> >>>>>> and pull on/off?
> >>>>>
> >>>>> "loc_conn" is a standard output parameter in OTG spec, it deserves a
> >>>>> separate api, yes, current implementation of OTG state machine code
> >>>>> seems allow you to combine the 2 things into one, but don't do that,
> >>>>> because they do not always happen together, e.g. for peripheral only B
> >>>>> device (also a part OTG spec: section 7.3), will be fixed in gadget
> >>>>> mode, but it will do gadget connect and disconnect in its diff states,
> >>>>> so, to make the framework common, let's keep them separated.
> >>>>
> >>>> I'm sorry but I didn't understand your comment about "it will do gadget
> >>>> connect and disconnect in its diff states"
> >>>
> >>> Gadget connect means loc_conn(1).
> >>>
> >>>>
> >>>> I am reading the OTG v2.0 specification and loc_conn is always true when
> >>>> b_peripheral or a_peripheral is true and false otherwise.
> >>>
> >>> If you only talk about these 2 states, yes, loc_conn is ture.
> >>>
> >>>>
> >>>> loc_conn is just an internal state variable and it corresponds to our
> >>>> gadget_start/stop() state.
> >>>
> >>> It's not an internal variable, there are OTG state machine
> >>> parameters tables(table 7-x) in OTG spec which have clear lists
> >>> which are "internal variable", which are "input", which are "output"...
> >>>
> >>> Those APIs are driven directly from OTG spec, easily understood so
> >>> code reader can know what's those APIs for. For real OTG, I don't
> >>> see the benefit if get rid of it.
> >>
> >> OK, no issues if we don't get rid of it. But I am still in favor of
> >> doing a connect in usb_gadget_start(), because
> >>
> >> 1) If we split connect/disconnect() and usb_gadget_start/stop() then there is
> >> additional overhead of keeping track whether connect was called or not during
> >> usb_gadget_stop(). Plus we need to take care that users don't call connect/disconnect
> >> outside of start/stop. It is just complicating things.
> >>
> >> 2) for many controllers there is no difference between run/stop and
> >> connect/disconnect. i.e. a single register bit controls both.
> >>
> >> 3) it fits well with the OTG specification. OTG specification says
> >> that loc_conn *variable* must be true *after* the device has signalled a connect.
> >> So OTG state machine can safely set loc_conn variable to true after doing
> >> otg_set_protocol(fsm, PROTO_GADGET); and set it to false otherwise.
> >>
> >> Note, OTG specification does not say to take any action based on loc_conn.
> >> It is just a connect indicator variable. So we might have to fix this in the
> >> OTG state machine.
> >>
> >> My suggestion is to keep it simple for now. Try the OTG implementation,
> >> and later if we find issues then extend it as required.
> >>
> >
> > Just talked with Jun, he is worried if loc_conn != pullup_dp at some
> > situations. So, how about only calling start gadget at usb_start_gadget,
>
> Which situations?
Not sure if all SoC works like that.
>
> > and pullup_dp at drd_set_state (see below).
> >
> >
> > static void drd_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state)
> > {
> > struct usb_otg *otg = container_of(fsm, struct usb_otg, fsm);
> >
> > if (otg->state == new_state)
> > return;
> >
> > fsm->state_changed = 1;
> > dev_dbg(otg->dev, "otg: set state: %s\n",
> > usb_otg_state_string(new_state));
> > switch (new_state) {
> > case OTG_STATE_B_IDLE:
> > + usb_udc_vbus_handler(gadget, false);
>
> This is redundant, When we switch from PROTO_GADGET to PROTO_UNDEF
> we do a usb_gadget_stop(), and a usb_gadget_disconnect() is done there.
Since fully OTG FSM needs to call usb_gadget_stop too, and it doesn't
want need to call usb_gadget_disconnect at usb_gadget_stop, it calls
usb_gadget_disconnect at otg_fsm->ops->loc_conn in its FSM.
You current code combines otg_fsm->ops->loc_conn into
otg_fsm->ops->start_gadget, but according to spec, ->loc_conn is an action
after ->start_gadget.
Keep two actions alone can be flexible.
>
> > drd_set_protocol(fsm, PROTO_UNDEF);
> > otg_drv_vbus(otg, 0);
> > break;
> > case OTG_STATE_B_PERIPHERAL:
> > drd_set_protocol(fsm, PROTO_GADGET);
> > + usb_udc_vbus_handler(gadget, true);
>
> This is redundant as well since usb_gadget_start() is doing a
> usb_gadget_connect().
>
The same for above.
> > otg_drv_vbus(otg, 0);
> > break;
> > ......
> > };
> >
> > }
> >
> > When the OTG FSM is added to this framework, it can keep usb_fsm->ops->loc_conn,
> > and using the current FSM.
> >
>
> I have no strong opinions for or against usb_fsm->ops->loc_conn.
> Although strictly speaking, we shouldn't take any action based on loc_conn.
> It is just a state variable indicator.
>
No, please check the six outputs at the spec, all of them need to
have an action, but your soc/code can do noop if the action has done at
start/stop_role. If it is only a state variable indicator, and we have no
code to use it, why it needs to be at fsm structure. We need to use
this indicator to know if related action needs to be done again, see below API.
static inline int otg_loc_conn(struct otg_fsm *fsm, int on)
{
if (!fsm->ops->loc_conn)
return -EOPNOTSUPP;
if (fsm->loc_conn != on) {
fsm->loc_conn = on;
fsm->ops->loc_conn(fsm, on);
}
return 0;
}
Yes, it can work even without loc_conn for fully OTG FSM, but it exists
at OTG spec. We'd better to keep it to reflect the spec.
So, since usb_gadget_stop/usb_gadget_start is common API for both drd
and fully fsm, we keep the same function for both. For drd, you doesn't
need to define otg_fsm->ops->loc_conn at your platform, it calls
usb_udc_vbus_handler at drd_set_state.
--
Best Regards,
Peter Chen
[toc] | [prev] | [next] | [standalone]
| From | Jun Li <jun.li@nxp.com> |
|---|---|
| Date | 2016-05-04 10:20 +0200 |
| Message-ID | <rv0cj-oI-15@gated-at.bofh.it> |
| In reply to | #1394021 |
Hi
> -----Original Message-----
> From: Roger Quadros [mailto:rogerq@ti.com]
> Sent: Wednesday, May 04, 2016 2:37 PM
> To: Peter Chen <hzpeterchen@gmail.com>
> Cc: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
> gregkh@linuxfoundation.org; peter.chen@freescale.com;
> dan.j.williams@intel.com; jun.li@freescale.com;
> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>
> Peter,
>
> On 04/05/16 06:35, Peter Chen wrote:
> > On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
> >> Hi,
> >>
> >> On 03/05/16 10:06, Jun Li wrote:
> >>> Hi
> >>>
> >>>>>>>>>>> /**
> >>>>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
> >>>>>>>>>>> +connect to bus
> >>>>>>>>>>> + * @gadget: the gadget device to start
> >>>>>>>>>>> + *
> >>>>>>>>>>> + * This is external API for use by OTG core.
> >>>>>>>>>>> + *
> >>>>>>>>>>> + * Start the usb device controller and connect to bus
> >>>>>>>>>>> +(enable
> >>>> pull).
> >>>>>>>>>>> + */
> >>>>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>>>>>>>> + int ret;
> >>>>>>>>>>> + struct usb_udc *udc = NULL;
> >>>>>>>>>>> +
> >>>>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>>>>>>>> + mutex_lock(&udc_lock);
> >>>>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>>>>>>>> + if (udc->gadget == gadget)
> >>>>>>>>>>> + goto found;
> >>>>>>>>>>> +
> >>>>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not
> registered.\n",
> >>>>>>>>>>> + __func__);
> >>>>>>>>>>> + mutex_unlock(&udc_lock);
> >>>>>>>>>>> + return -EINVAL;
> >>>>>>>>>>> +
> >>>>>>>>>>> +found:
> >>>>>>>>>>> + ret = usb_gadget_udc_start(udc);
> >>>>>>>>>>> + if (ret)
> >>>>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> >>>>>> start: %d\n",
> >>>>>>>>>>> + ret);
> >>>>>>>>>>> + else
> >>>>>>>>>>> + usb_udc_connect_control(udc);
> >>>>>>>>>>
> >>>>>>>>>> For drd, it's fine, but for real otg, gadget connect should
> >>>>>>>>>> be done by
> >>>>>>>>>> loc_conn() instead of gadget start.
> >>>>>>>>>
> >>>>>>>>> It is upto the OTG state machine to call gadget_start() when
> >>>>>>>>> it needs to connect to the bus (i.e. loc_conn()). I see no
> >>>>>>>>> point in calling gadget start before.
> >>>>>>>>>
> >>>>>>>>> Do you see any issue in doing so?
> >>>>>>>>
> >>>>>>>> This is what OTG state machine does:
> >>>>>>>> case OTG_STATE_B_PERIPHERAL:
> >>>>>>>> otg_chrg_vbus(otg, 0);
> >>>>>>>> otg_loc_sof(otg, 0);
> >>>>>>>> otg_set_protocol(fsm, PROTO_GADGET);
> >>>>>>>> otg_loc_conn(otg, 1);
> >>>>>>>> break;
> >>>>>>
> >>>>>> On second thoughts, after seen the OTG state machine.
> >>>>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> >>>>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything
> >>>>>> other the PROTO_GADGET, we use otg_loc_conn(otg, 0);
> >>>>>>
> >>>>>> So otg_loc_conn seems redundant. Can we just get rid of it?
> >>>>>>
> >>>>>> usb_gadget_start() implies that gadget controller starts up and
> >>>>>> enables pull.
> >>>>>> usb_gadget_stop() implies that gadget controller disables pull
> >>>>>> and
> >>>> stops.
> >>>>>>
> >>>>>>
> >>>>>> Can you please explain why just these 2 APIs are not sufficient
> >>>>>> for full OTG?
> >>>>>>
> >>>>>> Do we want anything to happen between gadget controller
> >>>>>> start/stop and pull on/off?
> >>>>>
> >>>>> "loc_conn" is a standard output parameter in OTG spec, it deserves
> >>>>> a separate api, yes, current implementation of OTG state machine
> >>>>> code seems allow you to combine the 2 things into one, but don't
> >>>>> do that, because they do not always happen together, e.g. for
> >>>>> peripheral only B device (also a part OTG spec: section 7.3), will
> >>>>> be fixed in gadget mode, but it will do gadget connect and
> >>>>> disconnect in its diff states, so, to make the framework common,
> let's keep them separated.
> >>>>
> >>>> I'm sorry but I didn't understand your comment about "it will do
> >>>> gadget connect and disconnect in its diff states"
> >>>
> >>> Gadget connect means loc_conn(1).
> >>>
> >>>>
> >>>> I am reading the OTG v2.0 specification and loc_conn is always true
> >>>> when b_peripheral or a_peripheral is true and false otherwise.
> >>>
> >>> If you only talk about these 2 states, yes, loc_conn is ture.
> >>>
> >>>>
> >>>> loc_conn is just an internal state variable and it corresponds to
> >>>> our
> >>>> gadget_start/stop() state.
> >>>
> >>> It's not an internal variable, there are OTG state machine
> >>> parameters tables(table 7-x) in OTG spec which have clear lists
> >>> which are "internal variable", which are "input", which are "output"...
> >>>
> >>> Those APIs are driven directly from OTG spec, easily understood so
> >>> code reader can know what's those APIs for. For real OTG, I don't
> >>> see the benefit if get rid of it.
> >>
> >> OK, no issues if we don't get rid of it. But I am still in favor of
> >> doing a connect in usb_gadget_start(), because
> >>
> >> 1) If we split connect/disconnect() and usb_gadget_start/stop() then
> >> there is additional overhead of keeping track whether connect was
> >> called or not during usb_gadget_stop(). Plus we need to take care
> >> that users don't call connect/disconnect outside of start/stop. It is
> just complicating things.
> >>
> >> 2) for many controllers there is no difference between run/stop and
> >> connect/disconnect. i.e. a single register bit controls both.
> >>
> >> 3) it fits well with the OTG specification. OTG specification says
> >> that loc_conn *variable* must be true *after* the device has signalled
> a connect.
> >> So OTG state machine can safely set loc_conn variable to true after
> >> doing otg_set_protocol(fsm, PROTO_GADGET); and set it to false
> otherwise.
> >>
> >> Note, OTG specification does not say to take any action based on
> loc_conn.
> >> It is just a connect indicator variable. So we might have to fix this
> >> in the OTG state machine.
> >>
> >> My suggestion is to keep it simple for now. Try the OTG
> >> implementation, and later if we find issues then extend it as required.
> >>
> >
> > Just talked with Jun, he is worried if loc_conn != pullup_dp at some
> > situations. So, how about only calling start gadget at
> > usb_start_gadget,
>
> Which situations?
When to pull-up DP is decided by application (while vbus is on),
not only by driver state machine.
>
> > and pullup_dp at drd_set_state (see below).
> >
> >
> > static void drd_set_state(struct otg_fsm *fsm, enum usb_otg_state
> > new_state) {
> > struct usb_otg *otg = container_of(fsm, struct usb_otg, fsm);
> >
> > if (otg->state == new_state)
> > return;
> >
> > fsm->state_changed = 1;
> > dev_dbg(otg->dev, "otg: set state: %s\n",
> > usb_otg_state_string(new_state));
> > switch (new_state) {
> > case OTG_STATE_B_IDLE:
> > + usb_udc_vbus_handler(gadget, false);
>
> This is redundant, When we switch from PROTO_GADGET to PROTO_UNDEF we do a
> usb_gadget_stop(), and a usb_gadget_disconnect() is done there.
>
> > drd_set_protocol(fsm, PROTO_UNDEF);
> > otg_drv_vbus(otg, 0);
> > break;
> > case OTG_STATE_B_PERIPHERAL:
> > drd_set_protocol(fsm, PROTO_GADGET);
> > + usb_udc_vbus_handler(gadget, true);
>
> This is redundant as well since usb_gadget_start() is doing a
> usb_gadget_connect().
>
> > otg_drv_vbus(otg, 0);
> > break;
> > ......
> > };
> >
> > }
> >
> > When the OTG FSM is added to this framework, it can keep
> > usb_fsm->ops->loc_conn, and using the current FSM.
> >
>
> I have no strong opinions for or against usb_fsm->ops->loc_conn.
> Although strictly speaking, we shouldn't take any action based on loc_conn.
Strictly speaking(OTG spec), all you does is for loc_conn, but you think
it's start_gadget.
> It is just a state variable indicator.
Nobody check this "indicator".
Of cos, this is not a big deal, you can define the new API as is,
do udc_start() + gadget_connect() in one shot, it's up to user to
decide if use your usb_otg_start_gadget(), in case of udc_start()
followed by gadget_connect() is not wanted, user can/need do udc_start()
and something else before do gadget_connect.
>
> cheers,
> -roger
[toc] | [prev] | [next] | [standalone]
| From | Peter Chen <hzpeterchen@gmail.com> |
|---|---|
| Date | 2016-05-04 10:50 +0200 |
| Message-ID | <rv0Fk-DB-15@gated-at.bofh.it> |
| In reply to | #1394078 |
On Wed, May 04, 2016 at 11:40:56AM +0300, Roger Quadros wrote:
> On 04/05/16 11:03, Jun Li wrote:
> > Hi
> >
> >> -----Original Message-----
> >> From: Roger Quadros [mailto:rogerq@ti.com]
> >> Sent: Wednesday, May 04, 2016 2:37 PM
> >> To: Peter Chen <hzpeterchen@gmail.com>
> >> Cc: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
> >> gregkh@linuxfoundation.org; peter.chen@freescale.com;
> >> dan.j.williams@intel.com; jun.li@freescale.com;
> >> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
> >> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
> >> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
> >> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
> >>
> >> Peter,
> >>
> >> On 04/05/16 06:35, Peter Chen wrote:
> >>> On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
> >>>> Hi,
> >>>>
> >>>> On 03/05/16 10:06, Jun Li wrote:
> >>>>> Hi
> >>>>>
> >>>>>>>>>>>>> /**
> >>>>>>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
> >>>>>>>>>>>>> +connect to bus
> >>>>>>>>>>>>> + * @gadget: the gadget device to start
> >>>>>>>>>>>>> + *
> >>>>>>>>>>>>> + * This is external API for use by OTG core.
> >>>>>>>>>>>>> + *
> >>>>>>>>>>>>> + * Start the usb device controller and connect to bus
> >>>>>>>>>>>>> +(enable
> >>>>>> pull).
> >>>>>>>>>>>>> + */
> >>>>>>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
> >>>>>>>>>>>>> + int ret;
> >>>>>>>>>>>>> + struct usb_udc *udc = NULL;
> >>>>>>>>>>>>> +
> >>>>>>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
> >>>>>>>>>>>>> + mutex_lock(&udc_lock);
> >>>>>>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
> >>>>>>>>>>>>> + if (udc->gadget == gadget)
> >>>>>>>>>>>>> + goto found;
> >>>>>>>>>>>>> +
> >>>>>>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not
> >> registered.\n",
> >>>>>>>>>>>>> + __func__);
> >>>>>>>>>>>>> + mutex_unlock(&udc_lock);
> >>>>>>>>>>>>> + return -EINVAL;
> >>>>>>>>>>>>> +
> >>>>>>>>>>>>> +found:
> >>>>>>>>>>>>> + ret = usb_gadget_udc_start(udc);
> >>>>>>>>>>>>> + if (ret)
> >>>>>>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
> >>>>>>>> start: %d\n",
> >>>>>>>>>>>>> + ret);
> >>>>>>>>>>>>> + else
> >>>>>>>>>>>>> + usb_udc_connect_control(udc);
> >>>>>>>>>>>>
> >>>>>>>>>>>> For drd, it's fine, but for real otg, gadget connect should
> >>>>>>>>>>>> be done by
> >>>>>>>>>>>> loc_conn() instead of gadget start.
> >>>>>>>>>>>
> >>>>>>>>>>> It is upto the OTG state machine to call gadget_start() when
> >>>>>>>>>>> it needs to connect to the bus (i.e. loc_conn()). I see no
> >>>>>>>>>>> point in calling gadget start before.
> >>>>>>>>>>>
> >>>>>>>>>>> Do you see any issue in doing so?
> >>>>>>>>>>
> >>>>>>>>>> This is what OTG state machine does:
> >>>>>>>>>> case OTG_STATE_B_PERIPHERAL:
> >>>>>>>>>> otg_chrg_vbus(otg, 0);
> >>>>>>>>>> otg_loc_sof(otg, 0);
> >>>>>>>>>> otg_set_protocol(fsm, PROTO_GADGET);
> >>>>>>>>>> otg_loc_conn(otg, 1);
> >>>>>>>>>> break;
> >>>>>>>>
> >>>>>>>> On second thoughts, after seen the OTG state machine.
> >>>>>>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
> >>>>>>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything
> >>>>>>>> other the PROTO_GADGET, we use otg_loc_conn(otg, 0);
> >>>>>>>>
> >>>>>>>> So otg_loc_conn seems redundant. Can we just get rid of it?
> >>>>>>>>
> >>>>>>>> usb_gadget_start() implies that gadget controller starts up and
> >>>>>>>> enables pull.
> >>>>>>>> usb_gadget_stop() implies that gadget controller disables pull
> >>>>>>>> and
> >>>>>> stops.
> >>>>>>>>
> >>>>>>>>
> >>>>>>>> Can you please explain why just these 2 APIs are not sufficient
> >>>>>>>> for full OTG?
> >>>>>>>>
> >>>>>>>> Do we want anything to happen between gadget controller
> >>>>>>>> start/stop and pull on/off?
> >>>>>>>
> >>>>>>> "loc_conn" is a standard output parameter in OTG spec, it deserves
> >>>>>>> a separate api, yes, current implementation of OTG state machine
> >>>>>>> code seems allow you to combine the 2 things into one, but don't
> >>>>>>> do that, because they do not always happen together, e.g. for
> >>>>>>> peripheral only B device (also a part OTG spec: section 7.3), will
> >>>>>>> be fixed in gadget mode, but it will do gadget connect and
> >>>>>>> disconnect in its diff states, so, to make the framework common,
> >> let's keep them separated.
> >>>>>>
> >>>>>> I'm sorry but I didn't understand your comment about "it will do
> >>>>>> gadget connect and disconnect in its diff states"
> >>>>>
> >>>>> Gadget connect means loc_conn(1).
> >>>>>
> >>>>>>
> >>>>>> I am reading the OTG v2.0 specification and loc_conn is always true
> >>>>>> when b_peripheral or a_peripheral is true and false otherwise.
> >>>>>
> >>>>> If you only talk about these 2 states, yes, loc_conn is ture.
> >>>>>
> >>>>>>
> >>>>>> loc_conn is just an internal state variable and it corresponds to
> >>>>>> our
> >>>>>> gadget_start/stop() state.
> >>>>>
> >>>>> It's not an internal variable, there are OTG state machine
> >>>>> parameters tables(table 7-x) in OTG spec which have clear lists
> >>>>> which are "internal variable", which are "input", which are "output"...
> >>>>>
> >>>>> Those APIs are driven directly from OTG spec, easily understood so
> >>>>> code reader can know what's those APIs for. For real OTG, I don't
> >>>>> see the benefit if get rid of it.
> >>>>
> >>>> OK, no issues if we don't get rid of it. But I am still in favor of
> >>>> doing a connect in usb_gadget_start(), because
> >>>>
> >>>> 1) If we split connect/disconnect() and usb_gadget_start/stop() then
> >>>> there is additional overhead of keeping track whether connect was
> >>>> called or not during usb_gadget_stop(). Plus we need to take care
> >>>> that users don't call connect/disconnect outside of start/stop. It is
> >> just complicating things.
> >>>>
> >>>> 2) for many controllers there is no difference between run/stop and
> >>>> connect/disconnect. i.e. a single register bit controls both.
> >>>>
> >>>> 3) it fits well with the OTG specification. OTG specification says
> >>>> that loc_conn *variable* must be true *after* the device has signalled
> >> a connect.
> >>>> So OTG state machine can safely set loc_conn variable to true after
> >>>> doing otg_set_protocol(fsm, PROTO_GADGET); and set it to false
> >> otherwise.
> >>>>
> >>>> Note, OTG specification does not say to take any action based on
> >> loc_conn.
> >>>> It is just a connect indicator variable. So we might have to fix this
> >>>> in the OTG state machine.
> >>>>
> >>>> My suggestion is to keep it simple for now. Try the OTG
> >>>> implementation, and later if we find issues then extend it as required.
> >>>>
> >>>
> >>> Just talked with Jun, he is worried if loc_conn != pullup_dp at some
> >>> situations. So, how about only calling start gadget at
> >>> usb_start_gadget,
> >>
> >> Which situations?
> >
> > When to pull-up DP is decided by application (while vbus is on),
> > not only by driver state machine.
>
> So when OTG state is B_PERIPHERAL or A_PERIPHERAL we still want DP pull-up
> to be disabled?
>
> >
> >>
> >>> and pullup_dp at drd_set_state (see below).
> >>>
> >>>
> >>> static void drd_set_state(struct otg_fsm *fsm, enum usb_otg_state
> >>> new_state) {
> >>> struct usb_otg *otg = container_of(fsm, struct usb_otg, fsm);
> >>>
> >>> if (otg->state == new_state)
> >>> return;
> >>>
> >>> fsm->state_changed = 1;
> >>> dev_dbg(otg->dev, "otg: set state: %s\n",
> >>> usb_otg_state_string(new_state));
> >>> switch (new_state) {
> >>> case OTG_STATE_B_IDLE:
> >>> + usb_udc_vbus_handler(gadget, false);
> >>
> >> This is redundant, When we switch from PROTO_GADGET to PROTO_UNDEF we do a
> >> usb_gadget_stop(), and a usb_gadget_disconnect() is done there.
> >>
> >>> drd_set_protocol(fsm, PROTO_UNDEF);
> >>> otg_drv_vbus(otg, 0);
> >>> break;
> >>> case OTG_STATE_B_PERIPHERAL:
> >>> drd_set_protocol(fsm, PROTO_GADGET);
> >>> + usb_udc_vbus_handler(gadget, true);
> >>
> >> This is redundant as well since usb_gadget_start() is doing a
> >> usb_gadget_connect().
> >>
> >>> otg_drv_vbus(otg, 0);
> >>> break;
> >>> ......
> >>> };
> >>>
> >>> }
> >>>
> >>> When the OTG FSM is added to this framework, it can keep
> >>> usb_fsm->ops->loc_conn, and using the current FSM.
> >>>
> >>
> >> I have no strong opinions for or against usb_fsm->ops->loc_conn.
> >> Although strictly speaking, we shouldn't take any action based on loc_conn.
> >
> > Strictly speaking(OTG spec), all you does is for loc_conn, but you think
> > it's start_gadget.
> >
> >> It is just a state variable indicator.
> >
> > Nobody check this "indicator".
> >
> > Of cos, this is not a big deal, you can define the new API as is,
> > do udc_start() + gadget_connect() in one shot, it's up to user to
> > decide if use your usb_otg_start_gadget(), in case of udc_start()
> > followed by gadget_connect() is not wanted, user can/need do udc_start()
> > and something else before do gadget_connect.
>
> Please don't get me wrong. I want the full OTG state machine to be able
> to use usb_otg_start/stop_gadget().
>
Sure, but you may change above APIs a little (delete
usb_gadget_connect).
--
Best Regards,
Peter Chen
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-05-04 10:50 +0200 |
| Message-ID | <rv0Fk-DB-17@gated-at.bofh.it> |
| In reply to | #1394078 |
On 04/05/16 11:03, Jun Li wrote:
> Hi
>
>> -----Original Message-----
>> From: Roger Quadros [mailto:rogerq@ti.com]
>> Sent: Wednesday, May 04, 2016 2:37 PM
>> To: Peter Chen <hzpeterchen@gmail.com>
>> Cc: Jun Li <jun.li@nxp.com>; stern@rowland.harvard.edu; balbi@kernel.org;
>> gregkh@linuxfoundation.org; peter.chen@freescale.com;
>> dan.j.williams@intel.com; jun.li@freescale.com;
>> mathias.nyman@linux.intel.com; tony@atomide.com; Joao.Pinto@synopsys.com;
>> abrestic@chromium.org; r.baldyga@samsung.com; linux-usb@vger.kernel.org;
>> linux-kernel@vger.kernel.org; linux-omap@vger.kernel.org
>> Subject: Re: [PATCH v6 09/12] usb: gadget: udc: adapt to OTG core
>>
>> Peter,
>>
>> On 04/05/16 06:35, Peter Chen wrote:
>>> On Tue, May 03, 2016 at 06:44:46PM +0300, Roger Quadros wrote:
>>>> Hi,
>>>>
>>>> On 03/05/16 10:06, Jun Li wrote:
>>>>> Hi
>>>>>
>>>>>>>>>>>>> /**
>>>>>>>>>>>>> + * usb_gadget_start - start the usb gadget controller and
>>>>>>>>>>>>> +connect to bus
>>>>>>>>>>>>> + * @gadget: the gadget device to start
>>>>>>>>>>>>> + *
>>>>>>>>>>>>> + * This is external API for use by OTG core.
>>>>>>>>>>>>> + *
>>>>>>>>>>>>> + * Start the usb device controller and connect to bus
>>>>>>>>>>>>> +(enable
>>>>>> pull).
>>>>>>>>>>>>> + */
>>>>>>>>>>>>> +static int usb_gadget_start(struct usb_gadget *gadget) {
>>>>>>>>>>>>> + int ret;
>>>>>>>>>>>>> + struct usb_udc *udc = NULL;
>>>>>>>>>>>>> +
>>>>>>>>>>>>> + dev_dbg(&gadget->dev, "%s\n", __func__);
>>>>>>>>>>>>> + mutex_lock(&udc_lock);
>>>>>>>>>>>>> + list_for_each_entry(udc, &udc_list, list)
>>>>>>>>>>>>> + if (udc->gadget == gadget)
>>>>>>>>>>>>> + goto found;
>>>>>>>>>>>>> +
>>>>>>>>>>>>> + dev_err(gadget->dev.parent, "%s: gadget not
>> registered.\n",
>>>>>>>>>>>>> + __func__);
>>>>>>>>>>>>> + mutex_unlock(&udc_lock);
>>>>>>>>>>>>> + return -EINVAL;
>>>>>>>>>>>>> +
>>>>>>>>>>>>> +found:
>>>>>>>>>>>>> + ret = usb_gadget_udc_start(udc);
>>>>>>>>>>>>> + if (ret)
>>>>>>>>>>>>> + dev_err(&udc->dev, "USB Device Controller didn't
>>>>>>>> start: %d\n",
>>>>>>>>>>>>> + ret);
>>>>>>>>>>>>> + else
>>>>>>>>>>>>> + usb_udc_connect_control(udc);
>>>>>>>>>>>>
>>>>>>>>>>>> For drd, it's fine, but for real otg, gadget connect should
>>>>>>>>>>>> be done by
>>>>>>>>>>>> loc_conn() instead of gadget start.
>>>>>>>>>>>
>>>>>>>>>>> It is upto the OTG state machine to call gadget_start() when
>>>>>>>>>>> it needs to connect to the bus (i.e. loc_conn()). I see no
>>>>>>>>>>> point in calling gadget start before.
>>>>>>>>>>>
>>>>>>>>>>> Do you see any issue in doing so?
>>>>>>>>>>
>>>>>>>>>> This is what OTG state machine does:
>>>>>>>>>> case OTG_STATE_B_PERIPHERAL:
>>>>>>>>>> otg_chrg_vbus(otg, 0);
>>>>>>>>>> otg_loc_sof(otg, 0);
>>>>>>>>>> otg_set_protocol(fsm, PROTO_GADGET);
>>>>>>>>>> otg_loc_conn(otg, 1);
>>>>>>>>>> break;
>>>>>>>>
>>>>>>>> On second thoughts, after seen the OTG state machine.
>>>>>>>> otg_set_protocol(fsm, PROTO_GADGET); is always followed by
>>>>>>>> otg_loc_conn(otg, 1); And whenever protocol changes to anything
>>>>>>>> other the PROTO_GADGET, we use otg_loc_conn(otg, 0);
>>>>>>>>
>>>>>>>> So otg_loc_conn seems redundant. Can we just get rid of it?
>>>>>>>>
>>>>>>>> usb_gadget_start() implies that gadget controller starts up and
>>>>>>>> enables pull.
>>>>>>>> usb_gadget_stop() implies that gadget controller disables pull
>>>>>>>> and
>>>>>> stops.
>>>>>>>>
>>>>>>>>
>>>>>>>> Can you please explain why just these 2 APIs are not sufficient
>>>>>>>> for full OTG?
>>>>>>>>
>>>>>>>> Do we want anything to happen between gadget controller
>>>>>>>> start/stop and pull on/off?
>>>>>>>
>>>>>>> "loc_conn" is a standard output parameter in OTG spec, it deserves
>>>>>>> a separate api, yes, current implementation of OTG state machine
>>>>>>> code seems allow you to combine the 2 things into one, but don't
>>>>>>> do that, because they do not always happen together, e.g. for
>>>>>>> peripheral only B device (also a part OTG spec: section 7.3), will
>>>>>>> be fixed in gadget mode, but it will do gadget connect and
>>>>>>> disconnect in its diff states, so, to make the framework common,
>> let's keep them separated.
>>>>>>
>>>>>> I'm sorry but I didn't understand your comment about "it will do
>>>>>> gadget connect and disconnect in its diff states"
>>>>>
>>>>> Gadget connect means loc_conn(1).
>>>>>
>>>>>>
>>>>>> I am reading the OTG v2.0 specification and loc_conn is always true
>>>>>> when b_peripheral or a_peripheral is true and false otherwise.
>>>>>
>>>>> If you only talk about these 2 states, yes, loc_conn is ture.
>>>>>
>>>>>>
>>>>>> loc_conn is just an internal state variable and it corresponds to
>>>>>> our
>>>>>> gadget_start/stop() state.
>>>>>
>>>>> It's not an internal variable, there are OTG state machine
>>>>> parameters tables(table 7-x) in OTG spec which have clear lists
>>>>> which are "internal variable", which are "input", which are "output"...
>>>>>
>>>>> Those APIs are driven directly from OTG spec, easily understood so
>>>>> code reader can know what's those APIs for. For real OTG, I don't
>>>>> see the benefit if get rid of it.
>>>>
>>>> OK, no issues if we don't get rid of it. But I am still in favor of
>>>> doing a connect in usb_gadget_start(), because
>>>>
>>>> 1) If we split connect/disconnect() and usb_gadget_start/stop() then
>>>> there is additional overhead of keeping track whether connect was
>>>> called or not during usb_gadget_stop(). Plus we need to take care
>>>> that users don't call connect/disconnect outside of start/stop. It is
>> just complicating things.
>>>>
>>>> 2) for many controllers there is no difference between run/stop and
>>>> connect/disconnect. i.e. a single register bit controls both.
>>>>
>>>> 3) it fits well with the OTG specification. OTG specification says
>>>> that loc_conn *variable* must be true *after* the device has signalled
>> a connect.
>>>> So OTG state machine can safely set loc_conn variable to true after
>>>> doing otg_set_protocol(fsm, PROTO_GADGET); and set it to false
>> otherwise.
>>>>
>>>> Note, OTG specification does not say to take any action based on
>> loc_conn.
>>>> It is just a connect indicator variable. So we might have to fix this
>>>> in the OTG state machine.
>>>>
>>>> My suggestion is to keep it simple for now. Try the OTG
>>>> implementation, and later if we find issues then extend it as required.
>>>>
>>>
>>> Just talked with Jun, he is worried if loc_conn != pullup_dp at some
>>> situations. So, how about only calling start gadget at
>>> usb_start_gadget,
>>
>> Which situations?
>
> When to pull-up DP is decided by application (while vbus is on),
> not only by driver state machine.
So when OTG state is B_PERIPHERAL or A_PERIPHERAL we still want DP pull-up
to be disabled?
>
>>
>>> and pullup_dp at drd_set_state (see below).
>>>
>>>
>>> static void drd_set_state(struct otg_fsm *fsm, enum usb_otg_state
>>> new_state) {
>>> struct usb_otg *otg = container_of(fsm, struct usb_otg, fsm);
>>>
>>> if (otg->state == new_state)
>>> return;
>>>
>>> fsm->state_changed = 1;
>>> dev_dbg(otg->dev, "otg: set state: %s\n",
>>> usb_otg_state_string(new_state));
>>> switch (new_state) {
>>> case OTG_STATE_B_IDLE:
>>> + usb_udc_vbus_handler(gadget, false);
>>
>> This is redundant, When we switch from PROTO_GADGET to PROTO_UNDEF we do a
>> usb_gadget_stop(), and a usb_gadget_disconnect() is done there.
>>
>>> drd_set_protocol(fsm, PROTO_UNDEF);
>>> otg_drv_vbus(otg, 0);
>>> break;
>>> case OTG_STATE_B_PERIPHERAL:
>>> drd_set_protocol(fsm, PROTO_GADGET);
>>> + usb_udc_vbus_handler(gadget, true);
>>
>> This is redundant as well since usb_gadget_start() is doing a
>> usb_gadget_connect().
>>
>>> otg_drv_vbus(otg, 0);
>>> break;
>>> ......
>>> };
>>>
>>> }
>>>
>>> When the OTG FSM is added to this framework, it can keep
>>> usb_fsm->ops->loc_conn, and using the current FSM.
>>>
>>
>> I have no strong opinions for or against usb_fsm->ops->loc_conn.
>> Although strictly speaking, we shouldn't take any action based on loc_conn.
>
> Strictly speaking(OTG spec), all you does is for loc_conn, but you think
> it's start_gadget.
>
>> It is just a state variable indicator.
>
> Nobody check this "indicator".
>
> Of cos, this is not a big deal, you can define the new API as is,
> do udc_start() + gadget_connect() in one shot, it's up to user to
> decide if use your usb_otg_start_gadget(), in case of udc_start()
> followed by gadget_connect() is not wanted, user can/need do udc_start()
> and something else before do gadget_connect.
Please don't get me wrong. I want the full OTG state machine to be able
to use usb_otg_start/stop_gadget().
Just trying to understand the real problem.
cheers,
-roger
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web