diff options
author | Robert Baldyga <r.baldyga@samsung.com> | 2015-07-31 14:00:45 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-08-04 17:26:55 (GMT) |
commit | eb4cbc19526d62657b838d6f0b694a000e5b4c81 (patch) | |
tree | 5c5eae9d4e8220133d913f3c06cf382c15fe8d6c /drivers/usb/isp1760 | |
parent | 927d9f77fe3d5f9261eeb465e2b60768e400ffc9 (diff) | |
download | linux-eb4cbc19526d62657b838d6f0b694a000e5b4c81.tar.xz |
usb: isp1760: udc: add ep capabilities support
Convert endpoint configuration to new capabilities model.
Signed-off-by: Robert Baldyga <r.baldyga@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/isp1760')
-rw-r--r-- | drivers/usb/isp1760/isp1760-udc.c | 11 |
1 files changed, 11 insertions, 0 deletions
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; } } |