1. 11 11月, 2018 1 次提交
  2. 08 10月, 2018 1 次提交
    • S
      iwlwifi: dump debug data before stop device · 4244e7fc
      Shahar S Matityahu 提交于
      Debug data dump is not working in flows that stop the device is used
      in their error handling. During these flows the op mode mutex is
      locked until the device stops.  Because of that, any assert generated
      from the firmware can be handled only after the device already
      stopped.
      
      Since dumping cannot occour after stopping the device, split the the
      dump function to two parts, Part that handles locking, and the part
      that starts the actual dumping and call the second part in the op mode
      stop device function.
      Signed-off-by: NShahar S Matityahu <shahar.s.matityahu@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      4244e7fc
  3. 06 10月, 2018 7 次提交
  4. 28 9月, 2018 4 次提交
  5. 31 8月, 2018 6 次提交
  6. 02 8月, 2018 1 次提交
  7. 29 3月, 2018 1 次提交
  8. 28 3月, 2018 1 次提交
  9. 02 3月, 2018 1 次提交
  10. 25 11月, 2017 1 次提交
  11. 06 10月, 2017 2 次提交
  12. 09 8月, 2017 1 次提交
  13. 01 8月, 2017 4 次提交
  14. 23 6月, 2017 2 次提交
  15. 06 6月, 2017 4 次提交
  16. 02 6月, 2017 1 次提交
  17. 20 4月, 2017 1 次提交
  18. 03 2月, 2017 1 次提交
    • S
      iwlwifi: mvm: synchronize firmware DMA paging memory · 4b70f076
      Sara Sharon 提交于
      When driver needs to access the contents of a streaming DMA buffer
      without unmapping it it should call dma_sync_single_for_cpu().
      Once the call has been made, the CPU "owns" the DMA buffer and can
      work with it as needed.
      Before the device accesses the buffer, however, ownership should be
      transferred back to it with dma_sync_single_for_device().
      Both calls weren't performed by the driver, resulting with odd paging
      errors on some platforms. Fix it.
      
      Fixes: a6c4fb44 ("iwlwifi: mvm: Add FW paging mechanism for the UMAC on PCI")
      Signed-off-by: NSara Sharon <sara.sharon@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      4b70f076