All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] iwlwifi: updates intended for v5.10 2020-10-08 part 2
@ 2020-10-08 15:12 Luca Coelho
  2020-10-08 15:12 ` [PATCH 01/13] iwlwifi: pcie: fix xtal latency for 9560 devices Luca Coelho
                   ` (12 more replies)
  0 siblings, 13 replies; 19+ messages in thread
From: Luca Coelho @ 2020-10-08 15:12 UTC (permalink / raw)
  To: kvalo; +Cc: linux-wireless

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

Hi,

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

The changes are:

* Some more fixes in some device configurations;
* PNVM implementation continued;
* A few more FW API updates for newer FWs;
* Bump the FW API supported to 59;
* Some other small fixes;

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

Please review.

Cheers,
Luca.


Emmanuel Grumbach (1):
  iwlwifi: mvm: don't send a CSA command the firmware doesn't know

Luca Coelho (7):
  iwlwifi: pcie: fix xtal latency for 9560 devices
  iwlwifi: pcie: fix the xtal latency value for a few qu devices
  iwlwifi: move PNVM implementation to common code
  iwlwifi: add trans op to set PNVM
  iwlwifi: pcie: implement set_pnvm op
  iwlwifi: read and parse PNVM file
  iwlwifi: bump FW API to 59 for AX devices

Mordechay Goodstein (2):
  iwlwifi: stats: add new api fields for statistics cmd/ntfy
  iwlwifi: rs: align to new TLC config command API

Naftali Goldstein (1):
  iwlwifi: fix sar geo table initialization

Sara Sharon (2):
  iwlwifi: mvm: remove memset of kek_kck command
  iwlwifi: mvm: fix suspicious rcu usage warnings

 drivers/net/wireless/intel/iwlwifi/Makefile   |   2 +-
 .../net/wireless/intel/iwlwifi/cfg/22000.c    |   4 +-
 drivers/net/wireless/intel/iwlwifi/cfg/9000.c |  17 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  |  20 +-
 drivers/net/wireless/intel/iwlwifi/fw/acpi.h  |   1 -
 .../wireless/intel/iwlwifi/fw/api/commands.h  |   6 +-
 .../net/wireless/intel/iwlwifi/fw/api/rs.h    |   7 +-
 .../net/wireless/intel/iwlwifi/fw/api/stats.h | 461 ++++++++++++++++++
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   6 +-
 drivers/net/wireless/intel/iwlwifi/fw/pnvm.c  | 274 +++++++++++
 drivers/net/wireless/intel/iwlwifi/fw/pnvm.h  |  18 +
 .../net/wireless/intel/iwlwifi/iwl-config.h   |   1 +
 .../intel/iwlwifi/iwl-context-info-gen3.h     |   3 +
 .../wireless/intel/iwlwifi/iwl-context-info.h |   7 +-
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  20 +
 drivers/net/wireless/intel/iwlwifi/mvm/d3.c   |  21 +-
 drivers/net/wireless/intel/iwlwifi/mvm/fw.c   |  84 +---
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c |  12 +-
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    |   8 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c   | 195 +++++---
 .../wireless/intel/iwlwifi/mvm/time-event.c   |  22 +
 .../wireless/intel/iwlwifi/mvm/time-event.h   |   7 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  27 +
 .../wireless/intel/iwlwifi/pcie/ctxt-info.c   |  21 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |   2 +-
 .../wireless/intel/iwlwifi/pcie/internal.h    |   3 +
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |   7 +
 27 files changed, 1094 insertions(+), 162 deletions(-)
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/pnvm.c
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/pnvm.h

-- 
2.28.0


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

end of thread, other threads:[~2020-10-09  7:38 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08 15:12 [PATCH 00/13] iwlwifi: updates intended for v5.10 2020-10-08 part 2 Luca Coelho
2020-10-08 15:12 ` [PATCH 01/13] iwlwifi: pcie: fix xtal latency for 9560 devices Luca Coelho
2020-10-08 17:15   ` Kalle Valo
2020-10-08 15:12 ` [PATCH 02/13] iwlwifi: pcie: fix the xtal latency value for a few qu devices Luca Coelho
2020-10-08 15:47   ` Kalle Valo
2020-10-08 19:10     ` Luca Coelho
2020-10-09  7:35       ` Kalle Valo
2020-10-09  7:38         ` Luca Coelho
2020-10-08 15:12 ` [PATCH 03/13] iwlwifi: mvm: don't send a CSA command the firmware doesn't know Luca Coelho
2020-10-08 15:12 ` [PATCH 04/13] iwlwifi: mvm: remove memset of kek_kck command Luca Coelho
2020-10-08 15:12 ` [PATCH 05/13] iwlwifi: mvm: fix suspicious rcu usage warnings Luca Coelho
2020-10-08 15:12 ` [PATCH 06/13] iwlwifi: stats: add new api fields for statistics cmd/ntfy Luca Coelho
2020-10-08 15:12 ` [PATCH 07/13] iwlwifi: fix sar geo table initialization Luca Coelho
2020-10-08 15:12 ` [PATCH 08/13] iwlwifi: rs: align to new TLC config command API Luca Coelho
2020-10-08 15:12 ` [PATCH 09/13] iwlwifi: move PNVM implementation to common code Luca Coelho
2020-10-08 15:12 ` [PATCH 10/13] iwlwifi: add trans op to set PNVM Luca Coelho
2020-10-08 15:12 ` [PATCH 11/13] iwlwifi: pcie: implement set_pnvm op Luca Coelho
2020-10-08 15:12 ` [PATCH 12/13] iwlwifi: read and parse PNVM file Luca Coelho
2020-10-08 15:12 ` [PATCH 13/13] iwlwifi: bump FW API to 59 for AX devices 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.