linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luca Coelho <luca@coelho.fi>
To: kvalo@codeaurora.org
Cc: luca@coelho.fi, linux-wireless@vger.kernel.org
Subject: [PATCH 00/12] iwlwifi: updates intended for v5.16 2021-10-17 part 2
Date: Sun, 17 Oct 2021 12:40:07 +0300	[thread overview]
Message-ID: <20211017094019.442271-1-luca@coelho.fi> (raw)

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

Hi,

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

The changes are:

* Small fix in TDLS;
* Code to sanitize firmware dumps;
* Updates for new FW rate and flags format;
* 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.



Johannes Berg (6):
  iwlwifi: fix fw/img.c license statement
  iwlwifi: api: fix struct iwl_wowlan_status_v7 kernel-doc
  iwlwifi: mvm: correct sta-state logic for TDLS
  iwlwifi: fw dump: add infrastructure for dump scrubbing
  iwlwifi: parse debug exclude data from firmware file
  iwlwifi: mvm: scrub key material in firmware dumps

Miri Korenblit (5):
  iwlwifi: mvm: update definitions due to new rate & flags
  iwlwifi: mvm: add definitions for new rate & flags
  iwlwifi: mvm: convert old rate & flags to the new format.
  iwlwifi: mvm: Support version 3 of tlc_update_notif.
  iwlwifi: mvm: Support new version of ranging response notification

Mukesh Sisodiya (1):
  iwlwifi: yoyo: fw debug config from context info and preset

 drivers/net/wireless/intel/iwlwifi/Makefile   |   2 +-
 .../net/wireless/intel/iwlwifi/fw/api/d3.h    |   2 +-
 .../wireless/intel/iwlwifi/fw/api/dbg-tlv.h   |  57 ++++
 .../net/wireless/intel/iwlwifi/fw/api/debug.h |  18 ++
 .../wireless/intel/iwlwifi/fw/api/location.h  |   7 +-
 .../net/wireless/intel/iwlwifi/fw/api/rs.h    | 229 +++++++++++++---
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  44 ++-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |   9 +
 drivers/net/wireless/intel/iwlwifi/fw/img.c   |  53 +---
 drivers/net/wireless/intel/iwlwifi/fw/img.h   |  10 +
 drivers/net/wireless/intel/iwlwifi/fw/init.c  |   6 +-
 .../net/wireless/intel/iwlwifi/fw/paging.c    |   4 +-
 drivers/net/wireless/intel/iwlwifi/fw/rs.c    | 252 ++++++++++++++++++
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |   5 +
 .../intel/iwlwifi/iwl-context-info-gen3.h     |   4 +-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.c  | 158 ++++++++++-
 .../net/wireless/intel/iwlwifi/iwl-dbg-tlv.h  |   2 +
 drivers/net/wireless/intel/iwlwifi/iwl-drv.c  |  43 +++
 .../net/wireless/intel/iwlwifi/iwl-trans.h    |  30 ++-
 .../net/wireless/intel/iwlwifi/mvm/debugfs.c  |   4 +-
 .../intel/iwlwifi/mvm/ftm-initiator.c         |   3 +-
 .../net/wireless/intel/iwlwifi/mvm/mac-ctxt.c |   2 +-
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 171 ++++++------
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/ops.c  | 183 ++++++++++++-
 .../net/wireless/intel/iwlwifi/mvm/rs-fw.c    |  12 +
 drivers/net/wireless/intel/iwlwifi/mvm/rs.c   | 145 ++++------
 drivers/net/wireless/intel/iwlwifi/mvm/rs.h   |  12 -
 drivers/net/wireless/intel/iwlwifi/mvm/rx.c   |  26 +-
 drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c |  78 +++---
 drivers/net/wireless/intel/iwlwifi/mvm/scan.c |   2 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   |  12 +-
 .../net/wireless/intel/iwlwifi/mvm/utils.c    |  27 +-
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |   4 +
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  12 +-
 35 files changed, 1249 insertions(+), 381 deletions(-)
 create mode 100644 drivers/net/wireless/intel/iwlwifi/fw/rs.c

-- 
2.33.0


             reply	other threads:[~2021-10-17  9:40 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-17  9:40 Luca Coelho [this message]
2021-10-17  9:40 ` [PATCH 01/12] iwlwifi: fix fw/img.c license statement Luca Coelho
2021-10-17  9:40 ` [PATCH 02/12] iwlwifi: api: fix struct iwl_wowlan_status_v7 kernel-doc Luca Coelho
2021-10-17  9:40 ` [PATCH 03/12] iwlwifi: mvm: correct sta-state logic for TDLS Luca Coelho
2021-10-17  9:40 ` [PATCH 04/12] iwlwifi: fw dump: add infrastructure for dump scrubbing Luca Coelho
2021-10-17  9:40 ` [PATCH 05/12] iwlwifi: parse debug exclude data from firmware file Luca Coelho
2021-10-17  9:40 ` [PATCH 06/12] iwlwifi: mvm: scrub key material in firmware dumps Luca Coelho
2021-10-17  9:40 ` [PATCH 07/12] iwlwifi: mvm: update definitions due to new rate & flags Luca Coelho
2021-10-17  9:40 ` [PATCH 08/12] iwlwifi: mvm: add definitions for " Luca Coelho
2021-10-17  9:40 ` [PATCH 09/12] iwlwifi: mvm: convert old rate & flags to the new format Luca Coelho
2021-10-17  9:40 ` [PATCH 10/12] iwlwifi: mvm: Support version 3 of tlc_update_notif Luca Coelho
2021-10-17  9:40 ` [PATCH 11/12] iwlwifi: mvm: Support new version of ranging response notification Luca Coelho
2021-10-17  9:40 ` [PATCH 12/12] iwlwifi: yoyo: fw debug config from context info and preset Luca Coelho

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211017094019.442271-1-luca@coelho.fi \
    --to=luca@coelho.fi \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).