All of lore.kernel.org
 help / color / mirror / Atom feed
From: Robert Baldyga <r.baldyga@samsung.com>
To: gregkh@linuxfoundation.org
Cc: Peter.Chen@freescale.com, johnyoun@synopsys.com, balbi@ti.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, Robert Baldyga <r.baldyga@samsung.com>
Subject: [PATCH 33/37] usb: isp1760: udc: add ep capabilities support
Date: Wed, 08 Jul 2015 13:09:17 +0200	[thread overview]
Message-ID: <1436353761-7107-34-git-send-email-r.baldyga@samsung.com> (raw)
In-Reply-To: <1436353761-7107-1-git-send-email-r.baldyga@samsung.com>

Convert endpoint configuration to new capabilities model.

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

diff --git a/drivers/usb/isp1760/isp1760-udc.c b/drivers/usb/isp1760/isp1760-udc.c
index 3699962..1c3d0fd 100644
--- a/drivers/usb/isp1760/isp1760-udc.c
+++ b/drivers/usb/isp1760/isp1760-udc.c
@@ -1383,13 +1383,24 @@ static void isp1760_udc_init_eps(struct isp1760_udc *udc)
 		 */
 		if (ep_num == 0) {
 			usb_ep_set_maxpacket_limit(&ep->ep, 64);
+			ep->ep.caps.type_control = true;
+			ep->ep.caps.dir_in = true;
+			ep->ep.caps.dir_out = true;
 			ep->maxpacket = 64;
 			udc->gadget.ep0 = &ep->ep;
 		} else {
 			usb_ep_set_maxpacket_limit(&ep->ep, 512);
+			ep->ep.caps.type_iso = true;
+			ep->ep.caps.type_bulk = true;
+			ep->ep.caps.type_int = true;
 			ep->maxpacket = 0;
 			list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
 		}
+
+		if (is_in)
+			ep->ep.caps.dir_in = true;
+		else
+			ep->ep.caps.dir_out = true;
 	}
 }
 
-- 
1.9.1


WARNING: multiple messages have this Message-ID (diff)
From: Robert Baldyga <r.baldyga@samsung.com>
To: gregkh@linuxfoundation.org
Cc: devel@driverdev.osuosl.org, linux-usb@vger.kernel.org,
	m.szyprowski@samsung.com, linux-arm-kernel@lists.infradead.org,
	johnyoun@synopsys.com, linuxppc-dev@lists.ozlabs.org,
	cernekee@gmail.com, nicolas.ferre@atmel.com,
	michal.simek@xilinx.com, balbi@ti.com,
	linux-kernel@vger.kernel.org, haojian.zhuang@gmail.com,
	linux-omap@vger.kernel.org,
	Robert Baldyga <r.baldyga@samsung.com>,
	Peter.Chen@freescale.com, dahlmann.thomas@arcor.de,
	andrzej.p@samsung.com, leoli@freescale.com,
	robert.jarzmik@free.fr, daniel@zonque.org,
	linux-geode@lists.infradead.org
Subject: [PATCH 33/37] usb: isp1760: udc: add ep capabilities support
Date: Wed, 08 Jul 2015 13:09:17 +0200	[thread overview]
Message-ID: <1436353761-7107-34-git-send-email-r.baldyga@samsung.com> (raw)
In-Reply-To: <1436353761-7107-1-git-send-email-r.baldyga@samsung.com>

Convert endpoint configuration to new capabilities model.

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

diff --git a/drivers/usb/isp1760/isp1760-udc.c b/drivers/usb/isp1760/isp1760-udc.c
index 3699962..1c3d0fd 100644
--- a/drivers/usb/isp1760/isp1760-udc.c
+++ b/drivers/usb/isp1760/isp1760-udc.c
@@ -1383,13 +1383,24 @@ static void isp1760_udc_init_eps(struct isp1760_udc *udc)
 		 */
 		if (ep_num == 0) {
 			usb_ep_set_maxpacket_limit(&ep->ep, 64);
+			ep->ep.caps.type_control = true;
+			ep->ep.caps.dir_in = true;
+			ep->ep.caps.dir_out = true;
 			ep->maxpacket = 64;
 			udc->gadget.ep0 = &ep->ep;
 		} else {
 			usb_ep_set_maxpacket_limit(&ep->ep, 512);
+			ep->ep.caps.type_iso = true;
+			ep->ep.caps.type_bulk = true;
+			ep->ep.caps.type_int = true;
 			ep->maxpacket = 0;
 			list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
 		}
+
+		if (is_in)
+			ep->ep.caps.dir_in = true;
+		else
+			ep->ep.caps.dir_out = true;
 	}
 }
 
-- 
1.9.1

WARNING: multiple messages have this Message-ID (diff)
From: r.baldyga@samsung.com (Robert Baldyga)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 33/37] usb: isp1760: udc: add ep capabilities support
Date: Wed, 08 Jul 2015 13:09:17 +0200	[thread overview]
Message-ID: <1436353761-7107-34-git-send-email-r.baldyga@samsung.com> (raw)
In-Reply-To: <1436353761-7107-1-git-send-email-r.baldyga@samsung.com>

Convert endpoint configuration to new capabilities model.

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

diff --git a/drivers/usb/isp1760/isp1760-udc.c b/drivers/usb/isp1760/isp1760-udc.c
index 3699962..1c3d0fd 100644
--- a/drivers/usb/isp1760/isp1760-udc.c
+++ b/drivers/usb/isp1760/isp1760-udc.c
@@ -1383,13 +1383,24 @@ static void isp1760_udc_init_eps(struct isp1760_udc *udc)
 		 */
 		if (ep_num == 0) {
 			usb_ep_set_maxpacket_limit(&ep->ep, 64);
+			ep->ep.caps.type_control = true;
+			ep->ep.caps.dir_in = true;
+			ep->ep.caps.dir_out = true;
 			ep->maxpacket = 64;
 			udc->gadget.ep0 = &ep->ep;
 		} else {
 			usb_ep_set_maxpacket_limit(&ep->ep, 512);
+			ep->ep.caps.type_iso = true;
+			ep->ep.caps.type_bulk = true;
+			ep->ep.caps.type_int = true;
 			ep->maxpacket = 0;
 			list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
 		}
+
+		if (is_in)
+			ep->ep.caps.dir_in = true;
+		else
+			ep->ep.caps.dir_out = true;
 	}
 }
 
-- 
1.9.1

  parent reply	other threads:[~2015-07-08 11:15 UTC|newest]

Thread overview: 115+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-08 11:08 [PATCH 00/37] usb: gadget: rework ep matching and claiming mechanism Robert Baldyga
2015-07-08 11:08 ` Robert Baldyga
2015-07-08 11:08 ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 01/37] usb: gadget: encapsulate endpoint " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 02/37] usb: gadget: add endpoint capabilities flags Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 03/37] usb: gadget: add endpoint capabilities helper macros Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 04/37] staging: emxx_udc: add ep capabilities support Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 05/37] usb: chipidea: udc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 06/37] usb: dwc2: gadget: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 07/37] usb: dwc3: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 08/37] usb: gadget: amd5536udc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 09/37] usb: gadget: at91_udc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 10/37] usb: gadget: bcm63xx_udc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 11/37] usb: gadget: bdc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 12/37] usb: gadget: dummy-hcd: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 13/37] usb: gadget: fotg210-udc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 14/37] usb: gadget: fsl_qe_udc: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08 ` [PATCH 15/37] usb: gadget: fsl_udc_core: " Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:08   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 16/37] usb: gadget: fusb300_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 17/37] usb: gadget: goku_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 18/37] usb: gadget: gr_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 19/37] usb: gadget: lpc32xx_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 20/37] usb: gadget: m66592-udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 21/37] usb: gadget: mv_u3d_core: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 22/37] usb: gadget: mv_udc_core: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 23/37] usb: gadget: net2272: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 24/37] usb: gadget: net2280: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 25/37] usb: gadget: omap_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 26/37] usb: gadget: pch_ud: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 27/37] usb: gadget: pxa25x_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 28/37] usb: gadget: pxa27x_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 19:26   ` Robert Jarzmik
2015-07-08 19:26     ` Robert Jarzmik
2015-07-08 19:26     ` Robert Jarzmik
2015-07-08 11:09 ` [PATCH 29/37] usb: gadget: r8a66597-udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 30/37] usb: gadget: s3c-hsudc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 31/37] usb: gadget: s3c2410_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 32/37] usb: gadget: udc-xilinx: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` Robert Baldyga [this message]
2015-07-08 11:09   ` [PATCH 33/37] usb: isp1760: udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 34/37] usb: musb: gadget: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 35/37] usb: renesas: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 36/37] usb: gadget: atmel_usba_udc: " Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09 ` [PATCH 37/37] usb: gadget: epautoconf: add endpoint capabilities flags verification Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga
2015-07-08 11:09   ` Robert Baldyga

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=1436353761-7107-34-git-send-email-r.baldyga@samsung.com \
    --to=r.baldyga@samsung.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=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.