1. 30 3月, 2016 1 次提交
  2. 10 3月, 2016 1 次提交
  3. 28 2月, 2016 1 次提交
  4. 31 1月, 2016 1 次提交
    • S
      iwlwifi: pcie: add 9000 series multi queue rx DMA support · 96a6497b
      Sara Sharon 提交于
      The 9000 series introduces several changes in the device
      DMA operation.
      As the device now supports multi-queue rx, several DMA channels
      should be configured.
      The flows of providing the device with the allocated RBDs now
      changes as well - the device maintains a separate table of used
      and free table.
      
      The hardware may use the free table to feed RBDs to any queue.
      This requires maintaing a shared table to map returned RBDs to
      the original RXB - for that purpose the VID is introduced - an
      internal identifier of the RB placed in the lower 12 bits and
      returned by HW in the used data.
      
      Another change is the support of 64 bit DMA address.
      Signed-off-by: NSara Sharon <sara.sharon@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      96a6497b
  5. 20 12月, 2015 1 次提交
  6. 02 12月, 2015 3 次提交
  7. 26 11月, 2015 1 次提交
  8. 18 11月, 2015 1 次提交
  9. 05 10月, 2015 1 次提交
  10. 04 8月, 2015 1 次提交
    • A
      iwlwifi: mvm: Enable Rx Checksum hw · 93190fb0
      Avri Altman 提交于
      TCP software implementation on the host requires extensive computing
      power.  Offloading even some of the TCP/IP stack to the NIC might save
      a significant overhead. In order to enable this feature on our hw,
      we need to configure it first. Once done, we mark this capability,
      to be advertised later to the OS via ieee80211_register_hw.
      The driver Rx indications for TCP Checksum is integrated within the
      standard Rx status. The driver responds to those indications as follows:
      If the frame was tested by hw and checksum ok report CHECKSUM_UNNECESSARY.
      Otherwise, report CHECKSUM_NONE.
      Signed-off-by: NAvri Altman <avri.altman@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      93190fb0
  11. 03 6月, 2015 1 次提交
  12. 29 4月, 2015 1 次提交
  13. 08 4月, 2015 1 次提交
  14. 02 4月, 2015 1 次提交
  15. 30 3月, 2015 1 次提交
  16. 26 3月, 2015 1 次提交
  17. 01 2月, 2015 1 次提交
  18. 22 1月, 2015 2 次提交
  19. 29 12月, 2014 3 次提交
  20. 28 12月, 2014 1 次提交
  21. 02 12月, 2014 1 次提交
  22. 24 11月, 2014 3 次提交
  23. 29 10月, 2014 2 次提交
  24. 14 9月, 2014 4 次提交
  25. 09 9月, 2014 1 次提交
  26. 08 9月, 2014 1 次提交
  27. 21 7月, 2014 1 次提交
  28. 25 6月, 2014 1 次提交
  29. 13 5月, 2014 1 次提交
    • E
      iwlwifi: mvm: revisit the NVM handling code · d6aeb354
      Eran Harary 提交于
      Fix a bug in nvm_read_section function if size of the section
      is a multiple of 2K:
      
         - if the size of the section is *not* multiple of 2K,
         then we will have: read(2K) - return 2K ... read(2K) - return 2K
         read(2K) - return the rest (in bytes) and exit the while loop.
         - else, if the size of the section is a multiple of 2K,
         then we have: read(2K) - return 2K read(2K) - return 2K read(2K) -
         return 2K read(2K) - return 0 and exit the while with an error.
      
      We should not return an error in the latter case, because it
      might well be that the section was completely read.
      
      Also, we try now to read all the sections as this is needed
      for new devices.
      Signed-off-by: NEran Harary <eran.harary@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      d6aeb354