1. 06 2月, 2012 3 次提交
  2. 24 1月, 2012 1 次提交
  3. 05 1月, 2012 1 次提交
    • F
      usb: ch9: fix up MaxStreams helper · 18b7ede5
      Felipe Balbi 提交于
      According to USB 3.0 Specification Table 9-22, if
      bmAttributes [4:0] are set to zero, it means "no
      streams supported", but the way this helper was
      defined on Linux, we will *always* have one stream
      which might cause several problems.
      
      For example on DWC3, we would tell the controller
      endpoint has streams enabled and yet start transfers
      with Stream ID set to 0, which would goof up the host
      side.
      
      While doing that, convert the macro to an inline
      function due to the different checks we now need.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      Signed-off-by: NSarah Sharp <sarah.a.sharp@linux.intel.com>
      Cc: stable <stable@vger.kernel.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      18b7ede5
  4. 21 12月, 2011 5 次提交
  5. 12 12月, 2011 12 次提交
  6. 15 11月, 2011 1 次提交
  7. 05 10月, 2011 9 次提交
  8. 09 9月, 2011 8 次提交
    • F
      usb: dwc3: gadget: improve debug on link state change · 019ac832
      Felipe Balbi 提交于
      It's useful to know which states core is going
      through, as it might help us figure out misbehavior
      on specific link states.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      019ac832
    • F
      usb: dwc3: gadget: drop the useless dma_sync_single* calls · bb7ea284
      Felipe Balbi 提交于
      if req->dma isn't DMA_ADDR_INVALID it means gadget driver
      mapped the request or allocated from coherent, so it's
      unnecessary to do anything.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      bb7ea284
    • F
      usb: dwc3: gadget: fix GCTL programming · 771f184e
      Felipe Balbi 提交于
      ensure a few bits are cleared before enabling
      what we need.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      771f184e
    • S
      usb: dwc3: gadget: do not map/unmap ZLP transfers · 78c58a53
      Sebastian Andrzej Siewior 提交于
      If the gadget drivers sends a ZLP we are trying to map this this request
      which does not work on all implementations. So we simply skip mapping
      it.
      Signed-off-by: NSebastian Andrzej Siewior <bigeasy@linutronix.de>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      78c58a53
    • F
      usb: dwc3: drop EP0_STALL state · 0b7836a9
      Felipe Balbi 提交于
      Whenever we issue a Set Stall command on EP0,
      the state machine will be restarted and Stall
      is cleared automatically, when core receives
      the next SETUP packet.
      
      There's no need to track that EP0_STALL state.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      0b7836a9
    • S
      usb: dwc3: gadget: replace mdelay with udelay in the busy loop · 61d58242
      Sebastian Andrzej Siewior 提交于
      There are two spots where we wait until the HW finishes processing a
      certain command. Initially we had a few problems and we used 500ms as a
      limit to be on a the safe side. Paul Zimmerman mentioned this is little too
      much. After a debugging session, we noticed that we hardly ever go over 20us
      and didn't pass 30usec so far. Using mdelay() seems way overloaded.
      
      Giving the current numbers 500usec as the upper limit is more than  enough.
      Should it ever timeout then something is definitely wrong.
      
      While here, also replace the type with u32 since long does not really
      fit here.
      
      Cc: Paul Zimmerman <paul.zimmerman@synopsys.com>
      Signed-off-by: NSebastian Andrzej Siewior <bigeasy@linutronix.de>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      61d58242
    • S
      usb: dwc3: gadget: rework the dequeue on RESET & DISCONNECT · 624407f9
      Sebastian Andrzej Siewior 提交于
      - since a while we are disabling an endpoint and purging every requests on
        RESET and DISCONNECT which leads to a warning since the endpoint was
        disabled twice (once by the UDC, and second time by the gadget). I
        think UDC should nuke all requests because all those requests
        become invalid. It's gadget driver's responsability, though, to disable
        its used endpoints. This is done by merging dwc3_stop_active_transfer()
        and dwc3_gadget_nuke_reqs() into dwc3_remove_requests().
      
      - dwc3_stop_active_transfer() is now no longer called unconditionaly.
        This has the advantage that it is always called to disable an active
        transfer which means if res_trans_idx 0 than something went wrong and
        it is an error condition because we can't clean up the requests.
      
      - Remove the DWC3_EP_WILL_SHUTDOWN which was introduced while
        introducing the command complete part for dequeue. All requests on
        req_queued list should be removed during the dwc3_cleanup_done_reqs()
        callback so there is no reason to go through the list again.
        We consider it an error condition if requests are still on this
        list since we never queue TRB without LST=1 (the last requests has
        always LST=1, there are no requests with LST=0 behind it).
      
      [ balbi@ti.com : reworked commit log a bit, made patch apply ]
      Signed-off-by: NSebastian Andrzej Siewior <bigeasy@linutronix.de>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      624407f9
    • F
      usb: dwc3: ep0: simplify EP0 state machine · c7fcdeb2
      Felipe Balbi 提交于
      The DesignWare USB3 core tells us which phase
      of a control transfer should be started, it
      also tells us which physical endpoint needs
      that transfer.
      
      With these two informations, we have all we
      need to simply EP0 handling quite a lot and
      get rid rid of the SW state machine tracking
      ep0 states.
      
      For achieving this perfectly, we needed to
      add support for situations where we get
      XferNotReady while endpoint is still busy
      and XferNotReady while gadget driver still
      hasn't queued a request.
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      c7fcdeb2