All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] iwlwifi: updates intended for v5.13 2021-03-31
@ 2021-03-31  9:14 Luca Coelho
  2021-03-31  9:14 ` [PATCH 01/12] iwlwifi: mvm: write queue_sync_state only for sync Luca Coelho
                   ` (11 more replies)
  0 siblings, 12 replies; 22+ messages in thread
From: Luca Coelho @ 2021-03-31  9:14 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

From: Luca Coelho <luciano.coelho@intel.com>

Hi,

Here's the second set of patches intended for v5.13.  It's the usual
development, new features, cleanups and bugfixes.

The changes are:

* One fix in PMF;
* Some new regulatory features;
* Support for passive scan in 6GHz;
* Some improvements in the sync queue implementation;
* Support for new devices;
* Some other small fixes, clean-ups and improvements.

As usual, I'm pushing this to a pending branch, for kbuild bot, and
will send a pull-request later.

Please review.

Cheers,
Luca.


Avraham Stern (1):
  iwlwifi: mvm: when associated with PMF, use protected NDP ranging
    negotiation

Harish Mitty (1):
  iwlwifi: mvm: refactor ACPI DSM evaluation function

Ilan Peer (1):
  iwlwifi: mvm: Add support for 6GHz passive scan

Johannes Berg (3):
  iwlwifi: mvm: write queue_sync_state only for sync
  iwlwifi: mvm: clean up queue sync implementation
  iwlwifi: pcie: try to grab NIC access early

Miri Korenblit (2):
  iwlwifi: mvm: enable PPAG in China
  iwlwifi: mvm: support BIOS enable/disable for 11ax in Ukraine

Mordechay Goodstein (1):
  iwlwifi: move iwl_configure_rxq to be used by other op_modes

Ravi Darsi (1):
  iwlwifi: mvm: Use IWL_INFO in fw_reset_handshake()

ybaruch (2):
  iwlwifi: add ax201 killer device
  iwlwifi: add new so-gf device

 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   4 +
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  |  84 ++++++-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |  13 +-
 .../wireless/intel/iwlwifi/fw/api/nvm-reg.h   |   3 +
 .../net/wireless/intel/iwlwifi/fw/api/power.h |  22 +-
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |  30 ---
 .../net/wireless/intel/iwlwifi/fw/api/scan.h  |   8 +
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   3 +
 drivers/net/wireless/intel/iwlwifi/fw/init.c  |  59 +++++
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   1 +
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   2 +
 .../wireless/intel/iwlwifi/mvm/constants.h    |   2 +
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |   2 +
 .../intel/iwlwifi/mvm/ftm-initiator.c         |   9 +
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   | 209 +++++-------------
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |  49 ++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  11 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  58 +----
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c | 128 +++++++++++
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  |  10 +-
 drivers/net/wireless/intel/iwlwifi/mvm/sta.h  |  38 +++-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |  29 ++-
 .../wireless/intel/iwlwifi/pcie/trans-gen2.c  |   4 +-
 23 files changed, 491 insertions(+), 287 deletions(-)

-- 
2.31.0


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2021-04-13 12:50 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-31  9:14 [PATCH 00/12] iwlwifi: updates intended for v5.13 2021-03-31 Luca Coelho
2021-03-31  9:14 ` [PATCH 01/12] iwlwifi: mvm: write queue_sync_state only for sync Luca Coelho
2021-04-12 10:24   ` Luca Coelho
2021-03-31  9:14 ` [PATCH 02/12] iwlwifi: mvm: clean up queue sync implementation Luca Coelho
2021-03-31  9:14 ` [PATCH 03/12] iwlwifi: mvm: when associated with PMF, use protected NDP ranging negotiation Luca Coelho
2021-03-31  9:14 ` [PATCH 04/12] iwlwifi: add ax201 killer device Luca Coelho
2021-03-31  9:14 ` [PATCH 05/12] iwlwifi: pcie: try to grab NIC access early Luca Coelho
2021-04-12 10:22   ` Luca Coelho
2021-03-31  9:14 ` [PATCH 06/12] iwlwifi: mvm: Add support for 6GHz passive scan Luca Coelho
2021-03-31 12:03   ` Ben Greear
2021-04-11  9:41     ` Luca Coelho
2021-04-11 10:14     ` Peer, Ilan
2021-04-11 11:16       ` Ben Greear
2021-04-11 12:14         ` Peer, Ilan
2021-04-11 16:15           ` Ben Greear
2021-04-13 12:49             ` Peer, Ilan
2021-03-31  9:14 ` [PATCH 07/12] iwlwifi: mvm: enable PPAG in China Luca Coelho
2021-03-31  9:14 ` [PATCH 08/12] iwlwifi: add new so-gf device Luca Coelho
2021-03-31  9:14 ` [PATCH 09/12] iwlwifi: move iwl_configure_rxq to be used by other op_modes Luca Coelho
2021-03-31  9:14 ` [PATCH 10/12] iwlwifi: mvm: support BIOS enable/disable for 11ax in Ukraine Luca Coelho
2021-03-31  9:14 ` [PATCH 11/12] iwlwifi: mvm: refactor ACPI DSM evaluation function Luca Coelho
2021-03-31  9:14 ` [PATCH 12/12] iwlwifi: mvm: Use IWL_INFO in fw_reset_handshake() Luca Coelho

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.