All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] iwlwifi: updates intended for v5.10 2020-09-26
@ 2020-09-25 21:30 Luca Coelho
  2020-09-25 21:30 ` [PATCH 01/15] iwlwifi: dbg: remove IWL_FW_INI_TIME_POINT_WDG_TIMEOUT Luca Coelho
                   ` (14 more replies)
  0 siblings, 15 replies; 22+ messages in thread
From: Luca Coelho @ 2020-09-25 21:30 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

Here's the third set of patches intended for v5.10.  This is a bit
larger than your recommended 12 patches per series, because 4 of them
should actually have been in the previous series, but I have
mistankenly not sent.  Other than this, it is usual development, new
features, cleanups and bugfixes.

The changes are:

* Some clean-ups in the ACPI code;
* A fix for AP mode;
* Work on a better trans abstraction continues;
* Support for some new cards;
* Some updates for new or changed FW APIs;
* Some other small fixes and clean-ups;

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

Please review.

Cheers,
Luca.


Andrei Otcheretianski (1):
  iwlwifi: mvm: Don't install CMAC/GMAC key in AP mode

Dan Halperin (2):
  iwlwifi: mvm: add support for new  version of
    WOWLAN_TKIP_SETTING_API_S
  iwlwifi: mvm: add support for new WOWLAN_TSC_RSC_PARAM version

Emmanuel Grumbach (1):
  iwlwifi: mvm: split a print to avoid a WARNING in ROC

Gil Adam (1):
  iwlwifi: regulatory: regulatory capabilities api change

Johannes Berg (1):
  iwlwifi: mvm: use CHECKSUM_COMPLETE

Luca Coelho (4):
  iwlwifi: dbg: remove IWL_FW_INI_TIME_POINT_WDG_TIMEOUT
  iwlwifi: don't export acpi functions unnecessarily
  iwlwifi: remove iwl_validate_sar_geo_profile() export
  iwlwifi: acpi: remove dummy definition of iwl_sar_set_profile()

Mordechay Goodstein (3):
  iwlwifi: dbg: add dumping special device memory
  iwl-trans: move dev_cmd_offs, page_offs to a common trans header
  iwlwifi: mvm: remove redundant support_umac_log field

Naftali Goldstein (1):
  iwlwifi: mvm: process ba-notifications also when sta rcu is invalid

Roee Goldfiner (1):
  iwlwifi: add new card for MA family

 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  | 28 +-----
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  | 23 -----
 .../net/wireless/intel/iwlwifi/fw/api/d3.h    | 26 +++--
 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   | 26 ++++-
 .../net/wireless/intel/iwlwifi/fw/api/rx.h    |  6 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   | 56 +++++++++++
 .../wireless/intel/iwlwifi/fw/error-dump.h    | 14 +++
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  |  7 ++
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    | 98 +++++++++++++++++--
 .../wireless/intel/iwlwifi/iwl-nvm-parse.h    |  2 +-
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  4 +
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   | 60 ++++++++++--
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   | 41 ++++----
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 24 +++--
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |  1 -
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c | 73 ++++++++++----
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   | 77 ++++++++++-----
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  2 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |  1 +
 .../wireless/intel/iwlwifi/pcie/internal.h    |  4 +-
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  6 +-
 .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c |  9 +-
 drivers/net/wireless/intel/iwlwifi/pcie/tx.c  | 15 ++-
 23 files changed, 436 insertions(+), 167 deletions(-)

-- 
2.28.0


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

end of thread, other threads:[~2020-10-01 18:58 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-25 21:30 [PATCH 00/15] iwlwifi: updates intended for v5.10 2020-09-26 Luca Coelho
2020-09-25 21:30 ` [PATCH 01/15] iwlwifi: dbg: remove IWL_FW_INI_TIME_POINT_WDG_TIMEOUT Luca Coelho
2020-10-01 18:57   ` Luca Coelho
2020-09-25 21:30 ` [PATCH 02/15] iwlwifi: dbg: add dumping special device memory Luca Coelho
2020-09-25 21:30 ` [PATCH 03/15] iwlwifi: regulatory: regulatory capabilities api change Luca Coelho
2020-09-25 21:30 ` [PATCH 04/15] iwl-trans: move dev_cmd_offs, page_offs to a common trans header Luca Coelho
2020-09-25 21:30 ` [PATCH 05/15] iwlwifi: mvm: split a print to avoid a WARNING in ROC Luca Coelho
2020-09-29  7:52   ` Kalle Valo
2020-09-29  8:09     ` Luca Coelho
2020-09-30  7:31   ` [PATCH v2 " Luca Coelho
2020-10-01 18:57     ` Luca Coelho
2020-09-25 21:30 ` [PATCH 06/15] iwlwifi: mvm: Don't install CMAC/GMAC key in AP mode Luca Coelho
2020-10-01 18:58   ` Luca Coelho
2020-09-25 21:30 ` [PATCH 07/15] iwlwifi: mvm: add support for new version of WOWLAN_TKIP_SETTING_API_S Luca Coelho
2020-09-25 21:30 ` [PATCH 08/15] iwlwifi: mvm: process ba-notifications also when sta rcu is invalid Luca Coelho
2020-09-25 21:30 ` [PATCH 09/15] iwlwifi: don't export acpi functions unnecessarily Luca Coelho
2020-09-25 21:30 ` [PATCH 10/15] iwlwifi: mvm: add support for new WOWLAN_TSC_RSC_PARAM version Luca Coelho
2020-09-25 21:30 ` [PATCH 11/15] iwlwifi: mvm: remove redundant support_umac_log field Luca Coelho
2020-09-25 21:30 ` [PATCH 12/15] iwlwifi: mvm: use CHECKSUM_COMPLETE Luca Coelho
2020-09-25 21:30 ` [PATCH 13/15] iwlwifi: remove iwl_validate_sar_geo_profile() export Luca Coelho
2020-09-25 21:30 ` [PATCH 14/15] iwlwifi: acpi: remove dummy definition of iwl_sar_set_profile() Luca Coelho
2020-09-25 21:30 ` [PATCH 15/15] iwlwifi: add new card for MA family 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.