usb: dwc2: Fix a bug in reading the endpoint directions from reg.
authorRoshan Pius <rpius@chromium.org>
Mon, 2 Feb 2015 22:55:38 +0000 (14:55 -0800)
committerFelipe Balbi <balbi@ti.com>
Wed, 4 Feb 2015 17:16:47 +0000 (11:16 -0600)
According to  the DWC2 datasheet, the HWCFG1 register stores
the configured endpoint directions for endpoints 0-15 in bit positions
0-31.
==========================
Endpoint Direction (EpDir)
This 32-bit field uses two bits per endpoint to determine the endpoint
direction.
Endpoint
Bits [31:30]: Endpoint 15 direction
Bits [29:28]: Endpoint 14 direction
....
Bits [3:2]: Endpoint 1 direction
Bits[1:0]: Endpoint 0 direction (always BIDIR)
==========================

The DWC2 driver is currently interpreting the contents of the register
as directions for endpoints 1-15 which leads to an error in determining
the configured endpoint directions in the core because the first 2 bits
determine the direction of endpoint 0 and not 1.

This is based on testing/next branch in Felipe's git.

Signed-off-by: Roshan Pius <rpius@chromium.org>
Acked-by: John Youn <johnyoun@synopsys.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc2/gadget.c

index 15aa5785090b8439c15acfc669d22ca169b7701b..6a30887082cd9d40eee84de06de8a55e85c9d8ca 100644 (file)
@@ -3308,7 +3308,7 @@ static int s3c_hsotg_hw_cfg(struct dwc2_hsotg *hsotg)
        hsotg->eps_out[0] = hsotg->eps_in[0];
 
        cfg = readl(hsotg->regs + GHWCFG1);
-       for (i = 1; i < hsotg->num_of_eps; i++, cfg >>= 2) {
+       for (i = 1, cfg >>= 2; i < hsotg->num_of_eps; i++, cfg >>= 2) {
                ep_type = cfg & 3;
                /* Direction in or both */
                if (!(ep_type & 2)) {