1. 21 12月, 2021 2 次提交
  2. 09 12月, 2021 1 次提交
  3. 27 11月, 2021 1 次提交
    • E
      iwlwifi: integrate with iwlmei · 6d19a5eb
      Emmanuel Grumbach 提交于
      iwlmei needs to know about the follwing events:
      
      * Association
      * De-association
      * Country Code change
      * SW Rfkill change
      * SAR table changes
      
      iwlmei can take the device away from us, so report the new
      rfkill type when this happens.
      Advertise the required data from the CSME firmware to the
      usersapce: mostly, the AP that the CSME firmware is currently
      associated to in case there is an active link protection
      session.
      Generate the HOST_ASSOC / HOST_DISSASSOC messages.
      
      Don't support WPA1 (non-RSNA) for now.
      Don't support shared wep either.
      We can then determine the AUTH parameter by checking the AKM.
      Feed the cipher from the key installation.
      
      SW Rfkill will be implemented later when cfg80211 will
      allow us to read the SW Rfkill state.
      Co-Developed-by: NAyala Beker <ayala.beker@intel.com>
      Signed-off-by: NAyala Beker <ayala.beker@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      
      v7: Ayala added her signed-off
          remove pointless function declaration
          fix a bug due to merge conflict in the HOST_ASSOC message
      v8: leave a print if we have a SAP connection on a device we do
          not support (yet)
      Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20211112062814.7502-4-emmanuel.grumbach@intel.com
      6d19a5eb
  4. 22 10月, 2021 5 次提交
  5. 23 6月, 2021 1 次提交
  6. 10 2月, 2021 1 次提交
  7. 05 2月, 2021 4 次提交
  8. 27 1月, 2021 1 次提交
  9. 12 12月, 2020 1 次提交
  10. 10 12月, 2020 2 次提交
  11. 09 10月, 2020 3 次提交
  12. 08 10月, 2020 1 次提交
    • L
      iwlwifi: mvm: tx: Demote misuse of kernel-doc headers · 91b4780f
      Lee Jones 提交于
      Fixes the following W=1 kernel build warning(s):
      
       drivers/net/wireless/intel/iwlwifi/mvm/tx.c:1379: warning: Function parameter or member 'rate_n_flags' not described in 'iwl_mvm_hwrate_to_tx_status'
       drivers/net/wireless/intel/iwlwifi/mvm/tx.c:1379: warning: Function parameter or member 'info' not described in 'iwl_mvm_hwrate_to_tx_status'
       drivers/net/wireless/intel/iwlwifi/mvm/tx.c:1431: warning: Function parameter or member 'mvm' not described in 'iwl_mvm_get_scd_ssn'
      
      Cc: Johannes Berg <johannes.berg@intel.com>
      Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
      Cc: Luca Coelho <luciano.coelho@intel.com>
      Cc: Intel Linux Wireless <linuxwifi@intel.com>
      Cc: Kalle Valo <kvalo@codeaurora.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jakub Kicinski <kuba@kernel.org>
      Cc: linux-wireless@vger.kernel.org
      Cc: netdev@vger.kernel.org
      Signed-off-by: NLee Jones <lee.jones@linaro.org>
      Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20200910065431.657636-14-lee.jones@linaro.org
      91b4780f
  13. 02 10月, 2020 1 次提交
  14. 08 5月, 2020 1 次提交
  15. 09 1月, 2020 1 次提交
  16. 24 12月, 2019 2 次提交
  17. 23 12月, 2019 1 次提交
    • J
      iwlwifi: pcie: allocate smaller dev_cmd for TX headers · a89c72ff
      Johannes Berg 提交于
      As noted in the previous commit, due to the way we allocate the
      dev_cmd headers with 324 byte size, and 4/8 byte alignment, the
      part we use of them (bytes 20..40-68) could still cross a page
      and thus 2^32 boundary.
      
      Address this by using alignment to ensure that the allocation
      cannot cross a page boundary, on hardware that's affected. To
      make that not cause more memory consumption, reduce the size of
      the allocations to the necessary size - we go from 324 bytes in
      each allocation to 60/68 on gen2 depending on family, and ~120
      or so on gen1 (so on gen1 it's a pure reduction in size, since
      we don't need alignment there).
      
      To avoid size and clearing issues, add a new structure that's
      just the header, and use kmem_cache_zalloc().
      Signed-off-by: NJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      a89c72ff
  18. 15 11月, 2019 2 次提交
  19. 25 10月, 2019 2 次提交
  20. 06 9月, 2019 3 次提交
  21. 31 7月, 2019 1 次提交
  22. 29 6月, 2019 3 次提交