diff options
author | Robert Baldyga <r.baldyga@samsung.com> | 2015-07-31 16:00:42 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-08-04 19:26:53 +0200 |
commit | bc1b9f300ae06c64fcd056fb959b3d709ad2ef33 (patch) | |
tree | 63027fb087107f8d66d65e425c8d7877ae11e693 /drivers/usb/gadget | |
parent | usb: gadget: r8a66597-udc: add ep capabilities support (diff) | |
download | linux-bc1b9f300ae06c64fcd056fb959b3d709ad2ef33.tar.xz linux-bc1b9f300ae06c64fcd056fb959b3d709ad2ef33.zip |
usb: gadget: s3c-hsudc: 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/gadget')
-rw-r--r-- | drivers/usb/gadget/udc/s3c-hsudc.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/usb/gadget/udc/s3c-hsudc.c b/drivers/usb/gadget/udc/s3c-hsudc.c index 85a712a03343..e9def42ce50d 100644 --- a/drivers/usb/gadget/udc/s3c-hsudc.c +++ b/drivers/usb/gadget/udc/s3c-hsudc.c @@ -1005,6 +1005,21 @@ static void s3c_hsudc_initep(struct s3c_hsudc *hsudc, hsep->stopped = 0; hsep->wedge = 0; + if (epnum == 0) { + hsep->ep.caps.type_control = true; + hsep->ep.caps.dir_in = true; + hsep->ep.caps.dir_out = true; + } else { + hsep->ep.caps.type_iso = true; + hsep->ep.caps.type_bulk = true; + hsep->ep.caps.type_int = true; + } + + if (epnum & 1) + hsep->ep.caps.dir_in = true; + else + hsep->ep.caps.dir_out = true; + set_index(hsudc, epnum); writel(hsep->ep.maxpacket, hsudc->regs + S3C_MPR); } |