1. 23 2月, 2015 1 次提交
  2. 10 1月, 2015 1 次提交
  3. 07 1月, 2015 1 次提交
  4. 23 12月, 2014 1 次提交
  5. 04 12月, 2014 1 次提交
  6. 25 11月, 2014 1 次提交
  7. 24 11月, 2014 1 次提交
  8. 21 11月, 2014 1 次提交
  9. 12 11月, 2014 1 次提交
  10. 11 11月, 2014 1 次提交
    • K
      usb: gadget: dbgp: Fix endpoint config after USB disconnect · 6876d58f
      Kyösti Mälkki 提交于
      SET_FEATURE request with DEBUG_MODE only worked the first time after module
      initialisation. Per the USB 2.0 debug device specification, said request
      is to be treated as if it were a SET_CONFIGURATION request, i.e. endpoint
      must be re-configured.
      
      As configure_endpoints() may now get called multiple times, move it outside
      __init and move serial_alloc_tty() call into __init.
      
      Code has assumption that endpoint mapping remains unchanged with consecutive
      calls of configure_endpoints().
      Signed-off-by: NKyösti Mälkki <kyosti.malkki@gmail.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      6876d58f
  11. 07 11月, 2014 3 次提交
  12. 06 11月, 2014 2 次提交
  13. 29 10月, 2014 1 次提交
  14. 20 10月, 2014 1 次提交
  15. 09 10月, 2014 1 次提交
  16. 09 9月, 2014 5 次提交
  17. 08 9月, 2014 1 次提交
  18. 30 8月, 2014 1 次提交
  19. 28 8月, 2014 1 次提交
    • A
      usb: gadget: zero: Add support for interrupt EP · ef11982d
      Amit Virdi 提交于
      Interrupt endpoints behave quite similar to the bulk endpoints with the
      difference that the endpoints expect data sending/reception request at
      particular intervals till the whole data has not been transmitted.
      
      The interrupt EP support is added to gadget zero. A new alternate setting (=2)
      has been added. It has 2 interrupt endpoints. The default parameters are set as:
      	bInterval: 1 ms for FS and 8 uFrames (implying 1 ms) for HS/SS
      	wMaxPacketSize: 64 bytes for FS and 1024 bytes for HS/SS
      However, the same can be overridden through the module parameter interface.
      
      The code is tested for HS and SS on a platform having DWC3 controller.
      Signed-off-by: NAmit Virdi <amit.virdi@st.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      ef11982d
  20. 21 8月, 2014 9 次提交
  21. 19 8月, 2014 2 次提交
  22. 17 7月, 2014 3 次提交