1. 27 9月, 2015 2 次提交
  2. 29 7月, 2015 1 次提交
    • F
      usb: dwc3: core: remove unnecessary dev_warn() · d9972f47
      Felipe Balbi 提交于
      When a SoC supports both PHY interfaces but
      doesn't define HSPHY in DT/pdata, we will get
      an unnecessary dev_warn() which can mislead users
      into thinking that they're missing something.
      
      Instead, let's just silently rely on a correct
      default. If the HW default is wrong, then HSPHY
      is required and USB won't work, this will be
      motivation enough for engineers to patch their
      way into a working setup.
      Reported-by: NMurali Karicheri <m-karicheri2@ti.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      d9972f47
  3. 07 7月, 2015 1 次提交
  4. 14 5月, 2015 6 次提交
  5. 11 3月, 2015 1 次提交
  6. 09 3月, 2015 1 次提交
  7. 28 1月, 2015 1 次提交
  8. 07 11月, 2014 1 次提交
  9. 04 11月, 2014 20 次提交
  10. 04 9月, 2014 2 次提交
    • F
      usb: dwc3: core: fix ordering for PHY suspend · dc99f16f
      Felipe Balbi 提交于
      We can't suspend the PHYs before dwc3_core_exit_mode()
      has been called, that's because the host and/or device
      sides might still need to communicate with the far end
      link partner.
      
      Fixes: 8ba007a9 (usb: dwc3: core: enable the USB2 and USB3 phy in probe)
      Cc: <stable@vger.kernel.org> # v3.9+
      Suggested-by: NAlan Stern <stern@rowland.harvard.edu>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      dc99f16f
    • F
      usb: dwc3: core: fix order of PM runtime calls · fed33afc
      Felipe Balbi 提交于
      Currently, we disable pm_runtime before all register
      accesses are done, this is dangerous and might lead
      to abort exceptions due to the driver trying to access
      a register which is clocked by a clock which was long
      gated.
      
      Fix that by moving pm_runtime_put_sync() and pm_runtime_disable()
      as the last thing we do before returning from our ->remove()
      method.
      
      Fixes: 72246da4 (usb: Introduce DesignWare USB3 DRD Driver)
      Cc: <stable@vger.kernel.org> # v3.2+
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      fed33afc
  11. 21 8月, 2014 1 次提交
  12. 01 7月, 2014 2 次提交
  13. 15 5月, 2014 1 次提交