All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Robert Baldyga <r.baldyga@samsung.com>,
	gregkh@linuxfoundation.org, balbi@ti.com
Cc: Peter.Chen@freescale.com, johnyoun@synopsys.com,
	dahlmann.thomas@arcor.de, nicolas.ferre@atmel.com,
	cernekee@gmail.com, leoli@freescale.com, daniel@zonque.org,
	haojian.zhuang@gmail.com, robert.jarzmik@free.fr,
	michal.simek@xilinx.com, devel@driverdev.osuosl.org,
	linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
	linux-omap@vger.kernel.org, linux-geode@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org,
	linuxppc-dev@lists.ozlabs.org, andrzej.p@samsung.com,
	m.szyprowski@samsung.com
Subject: Re: [PATCH v2 42/48] usb: gadget: epautoconf: use 'ep_match' gadget callback
Date: Tue, 14 Jul 2015 14:04:32 +0300	[thread overview]
Message-ID: <55A4ECC0.4030205@cogentembedded.com> (raw)
In-Reply-To: <1436866776-5004-43-git-send-email-r.baldyga@samsung.com>

Hello.

On 7/14/2015 12:39 PM, Robert Baldyga wrote:

> If gadget has set 'ep_match' callback we prefer to call it first to allow
> UDC driver to find the best matching endpoint basing on chip-specific "best
> usage" knowledge.

> Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
> ---
>   drivers/usb/gadget/epautoconf.c | 6 ++++++
>   1 file changed, 6 insertions(+)

> diff --git a/drivers/usb/gadget/epautoconf.c b/drivers/usb/gadget/epautoconf.c
> index ee0d4e6..92a1a4c 100644
> --- a/drivers/usb/gadget/epautoconf.c
> +++ b/drivers/usb/gadget/epautoconf.c
> @@ -165,6 +165,12 @@ struct usb_ep *usb_ep_autoconfig_ss(
>
>   	type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
>
> +	if (gadget->ops->match_ep) {
> +		ep = gadget->ops->match_ep(gadget, desc, ep_comp);
> +		if (ep)
> +			goto found_ep;
> +	}
> +

    I think this patch should be merged with the previous one.

[...]

WBR, Sergei


WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov-M4DtvfQ/ZS1MRgGoP+s0PdBPR1lH4CV8@public.gmane.org>
To: Robert Baldyga
	<r.baldyga-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>,
	gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org,
	balbi-l0cyMroinI0@public.gmane.org
Cc: Peter.Chen-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
	johnyoun-HKixBCOQz3hWk0Htik3J/w@public.gmane.org,
	dahlmann.thomas-KvP5wT2u2U0@public.gmane.org,
	nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org,
	cernekee-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	leoli-KZfg59tc24xl57MIdRCFDg@public.gmane.org,
	daniel-cYrQPVfZoowdnm+yROfE0A@public.gmane.org,
	haojian.zhuang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	robert.jarzmik-GANU6spQydw@public.gmane.org,
	michal.simek-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org,
	devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-geode-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linuxppc-dev-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	andrzej.p-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org,
	m.szyprowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org
Subject: Re: [PATCH v2 42/48] usb: gadget: epautoconf: use 'ep_match' gadget callback
Date: Tue, 14 Jul 2015 14:04:32 +0300	[thread overview]
Message-ID: <55A4ECC0.4030205@cogentembedded.com> (raw)
In-Reply-To: <1436866776-5004-43-git-send-email-r.baldyga-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

Hello.

On 7/14/2015 12:39 PM, Robert Baldyga wrote:

> If gadget has set 'ep_match' callback we prefer to call it first to allow
> UDC driver to find the best matching endpoint basing on chip-specific "best
> usage" knowledge.

> Signed-off-by: Robert Baldyga <r.baldyga-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
> ---
>   drivers/usb/gadget/epautoconf.c | 6 ++++++
>   1 file changed, 6 insertions(+)

> diff --git a/drivers/usb/gadget/epautoconf.c b/drivers/usb/gadget/epautoconf.c
> index ee0d4e6..92a1a4c 100644
> --- a/drivers/usb/gadget/epautoconf.c
> +++ b/drivers/usb/gadget/epautoconf.c
> @@ -165,6 +165,12 @@ struct usb_ep *usb_ep_autoconfig_ss(
>
>   	type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
>
> +	if (gadget->ops->match_ep) {
> +		ep = gadget->ops->match_ep(gadget, desc, ep_comp);
> +		if (ep)
> +			goto found_ep;
> +	}
> +

    I think this patch should be merged with the previous one.

[...]

WBR, Sergei

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: sergei.shtylyov@cogentembedded.com (Sergei Shtylyov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 42/48] usb: gadget: epautoconf: use 'ep_match' gadget callback
Date: Tue, 14 Jul 2015 14:04:32 +0300	[thread overview]
Message-ID: <55A4ECC0.4030205@cogentembedded.com> (raw)
In-Reply-To: <1436866776-5004-43-git-send-email-r.baldyga@samsung.com>

Hello.

On 7/14/2015 12:39 PM, Robert Baldyga wrote:

> If gadget has set 'ep_match' callback we prefer to call it first to allow
> UDC driver to find the best matching endpoint basing on chip-specific "best
> usage" knowledge.

> Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
> ---
>   drivers/usb/gadget/epautoconf.c | 6 ++++++
>   1 file changed, 6 insertions(+)

> diff --git a/drivers/usb/gadget/epautoconf.c b/drivers/usb/gadget/epautoconf.c
> index ee0d4e6..92a1a4c 100644
> --- a/drivers/usb/gadget/epautoconf.c
> +++ b/drivers/usb/gadget/epautoconf.c
> @@ -165,6 +165,12 @@ struct usb_ep *usb_ep_autoconfig_ss(
>
>   	type = desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK;
>
> +	if (gadget->ops->match_ep) {
> +		ep = gadget->ops->match_ep(gadget, desc, ep_comp);
> +		if (ep)
> +			goto found_ep;
> +	}
> +

    I think this patch should be merged with the previous one.

[...]

WBR, Sergei

  reply	other threads:[~2015-07-14 11:04 UTC|newest]

Thread overview: 153+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-14  9:38 [PATCH v2 00/48] usb: gadget: rework ep matching and claiming mechanism Robert Baldyga
2015-07-14  9:38 ` Robert Baldyga
2015-07-14  9:38 ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 01/48] usb: gadget: encapsulate endpoint " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 02/48] usb: gadget: add endpoint capabilities flags Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 03/48] usb: gadget: add endpoint capabilities helper macros Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 04/48] staging: emxx_udc: add ep capabilities support Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 05/48] usb: chipidea: udc: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 06/48] usb: dwc2: gadget: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 07/48] usb: dwc3: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 08/48] usb: gadget: amd5536udc: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 09/48] usb: gadget: at91_udc: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 10/48] usb: gadget: bcm63xx_udc: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38 ` [PATCH v2 11/48] usb: gadget: bdc: " Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:38   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 12/48] usb: gadget: dummy-hcd: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 13/48] usb: gadget: fotg210-udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 14/48] usb: gadget: fsl_qe_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 15/48] usb: gadget: fsl_udc_core: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 16/48] usb: gadget: fusb300_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 17/48] usb: gadget: goku_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 18/48] usb: gadget: gr_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 19/48] usb: gadget: lpc32xx_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 20/48] usb: gadget: m66592-udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 21/48] usb: gadget: mv_u3d_core: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 22/48] usb: gadget: mv_udc_core: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 23/48] usb: gadget: net2272: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 24/48] usb: gadget: net2280: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 25/48] usb: gadget: omap_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 26/48] usb: gadget: pch_ud: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 27/48] usb: gadget: pxa25x_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 28/48] usb: gadget: pxa27x_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 29/48] usb: gadget: r8a66597-udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 30/48] usb: gadget: s3c-hsudc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 31/48] usb: gadget: s3c2410_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 32/48] usb: gadget: udc-xilinx: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 33/48] usb: isp1760: udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 34/48] usb: musb: gadget: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 35/48] usb: renesas: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 36/48] usb: gadget: atmel_usba_udc: " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 37/48] usb: gadget: epautoconf: add endpoint capabilities flags verification Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 38/48] usb: gadget: epautoconf: remove pxa quirk from ep_matches() Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 39/48] usb: gadget: epautoconf: remove ep and desc configuration " Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 40/48] usb: gadget: epautoconf: rework ep_matches() function Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 41/48] usb: gadget: add 'ep_match' callback to usb_gadget_ops Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 42/48] usb: gadget: epautoconf: use 'ep_match' gadget callback Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14 11:04   ` Sergei Shtylyov [this message]
2015-07-14 11:04     ` Sergei Shtylyov
2015-07-14 11:04     ` Sergei Shtylyov
2015-07-14  9:39 ` [PATCH v2 43/48] usb: gadget: udc: add usb_gadget_ep_match_desc() function Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 44/48] usb: gadget: epautoconf: remove ep_matches() function Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 45/48] usb: gadget: net2280: add net2280_match_ep() function Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14 11:14   ` Sergei Shtylyov
2015-07-14 11:14     ` Sergei Shtylyov
2015-07-14 11:14     ` Sergei Shtylyov
2015-07-14  9:39 ` [PATCH v2 46/48] usb: gadget: goku_udc: add goku_match_ep() function Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14  9:39 ` [PATCH v2 47/48] usb: musb: gadget: add musb_match_ep() function Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14 11:11   ` Sergei Shtylyov
2015-07-14 11:11     ` Sergei Shtylyov
2015-07-14 11:11     ` Sergei Shtylyov
2015-07-14  9:39 ` [PATCH v2 48/48] usb: gadget: epautoconf: cleanup dead code Robert Baldyga
2015-07-14  9:39   ` Robert Baldyga
2015-07-14 11:16   ` Sergei Shtylyov
2015-07-14 11:16     ` Sergei Shtylyov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55A4ECC0.4030205@cogentembedded.com \
    --to=sergei.shtylyov@cogentembedded.com \
    --cc=Peter.Chen@freescale.com \
    --cc=andrzej.p@samsung.com \
    --cc=balbi@ti.com \
    --cc=cernekee@gmail.com \
    --cc=dahlmann.thomas@arcor.de \
    --cc=daniel@zonque.org \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=haojian.zhuang@gmail.com \
    --cc=johnyoun@synopsys.com \
    --cc=leoli@freescale.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-geode@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=m.szyprowski@samsung.com \
    --cc=michal.simek@xilinx.com \
    --cc=nicolas.ferre@atmel.com \
    --cc=r.baldyga@samsung.com \
    --cc=robert.jarzmik@free.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.