All of lore.kernel.org
 help / color / mirror / Atom feed
From: Miri Korenblit <miriam.rachel.korenblit@intel.com>
To: johannes@sipsolutions.net
Cc: linux-wireless@vger.kernel.org
Subject: [PATCH 00/15] wifi: iwlwifi: updates - 2024-02-05
Date: Mon,  5 Feb 2024 00:06:02 +0200	[thread overview]
Message-ID: <20240204220617.1456895-1-miriam.rachel.korenblit@intel.com> (raw)

Hi,

This patch set includes iwlwifi patches intended for v6.9. It contains a
few features, bugfixes and cleanups.

Thanks,

Anjaneyulu (1):
  wifi: iwlwifi: Add support for PPAG cmd v5 and PPAG revision 3

Avraham Stern (1):
  iwlwifi: mvm: advertise support for protected ranging negotiation

Daniel Gabay (1):
  wifi: iwlwifi: mvm: use correct address 3 in A-MSDU

Emmanuel Grumbach (1):
  wifi: iwlwifi: mvm: don't support reduced tx power on ack for new
    devices

Ilan Peer (1):
  wifi: iwlwifi: mvm: Declare support for secure LTF measurement

Johannes Berg (5):
  wifi: iwlwifi: pcie: don't allow hw-rfkill to stop device on gen2
  wifi: iwlwifi: mvm: const-ify chandef pointers
  wifi: iwlwifi: mvm: remove EHT code from mac80211.c
  wifi: iwlwifi: use system_unbound_wq for debug dump
  wifi: iwlwifi: mvm: remove one queue sync on BA session stop

Miri Korenblit (5):
  wifi: iwlwifi: add HONOR to PPAG approved list
  wifi: iwlwifi: adjust rx_phyinfo debugfs to MLO
  wifi: iwlwifi: read mac step from aux register
  wifi: iwlwifi: support EHT for WH
  wifi: iwlwifi: clear link_id in time_event

 drivers/net/wireless/intel/iwlwifi/fw/acpi.c  |  9 +--
 .../net/wireless/intel/iwlwifi/fw/api/power.h | 40 +++++++++--
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c   |  7 +-
 drivers/net/wireless/intel/iwlwifi/fw/file.h  |  3 +-
 .../wireless/intel/iwlwifi/fw/regulatory.c    | 25 +++++--
 .../wireless/intel/iwlwifi/fw/regulatory.h    |  9 ++-
 .../net/wireless/intel/iwlwifi/fw/runtime.h   |  2 +-
 drivers/net/wireless/intel/iwlwifi/fw/uefi.c  |  3 +-
 drivers/net/wireless/intel/iwlwifi/fw/uefi.h  |  3 +-
 .../wireless/intel/iwlwifi/iwl-nvm-parse.c    |  2 +-
 .../net/wireless/intel/iwlwifi/iwl-op-mode.h  |  4 +-
 drivers/net/wireless/intel/iwlwifi/iwl-prph.h |  6 +-
 drivers/net/wireless/intel/iwlwifi/mvm/coex.c |  3 +
 .../wireless/intel/iwlwifi/mvm/debugfs-vif.c  | 44 +++++++-----
 .../intel/iwlwifi/mvm/ftm-responder.c         |  6 ++
 .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 27 +++++---
 drivers/net/wireless/intel/iwlwifi/mvm/mvm.h  | 10 +--
 .../net/wireless/intel/iwlwifi/mvm/phy-ctxt.c | 14 ++--
 drivers/net/wireless/intel/iwlwifi/mvm/sta.c  | 12 +---
 .../wireless/intel/iwlwifi/mvm/time-event.c   |  3 +-
 drivers/net/wireless/intel/iwlwifi/mvm/tx.c   | 69 ++++++++++++++++---
 .../intel/iwlwifi/pcie/ctxt-info-gen3.c       |  2 +-
 .../wireless/intel/iwlwifi/pcie/ctxt-info.c   |  4 +-
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 14 ++++
 .../net/wireless/intel/iwlwifi/pcie/trans.c   |  9 +--
 25 files changed, 234 insertions(+), 96 deletions(-)

-- 
2.34.1


             reply	other threads:[~2024-02-04 22:06 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-04 22:06 Miri Korenblit [this message]
2024-02-04 22:06 ` [PATCH 01/15] wifi: iwlwifi: mvm: use correct address 3 in A-MSDU Miri Korenblit
2024-02-04 22:06 ` [PATCH 02/15] wifi: iwlwifi: add HONOR to PPAG approved list Miri Korenblit
2024-02-04 22:06 ` [PATCH 03/15] wifi: iwlwifi: pcie: don't allow hw-rfkill to stop device on gen2 Miri Korenblit
2024-02-04 22:06 ` [PATCH 04/15] wifi: iwlwifi: Add support for PPAG cmd v5 and PPAG revision 3 Miri Korenblit
2024-02-04 22:06 ` [PATCH 05/15] wifi: iwlwifi: mvm: const-ify chandef pointers Miri Korenblit
2024-02-04 22:06 ` [PATCH 06/15] wifi: iwlwifi: adjust rx_phyinfo debugfs to MLO Miri Korenblit
2024-02-04 22:06 ` [PATCH 07/15] wifi: iwlwifi: read mac step from aux register Miri Korenblit
2024-02-04 22:06 ` [PATCH 08/15] wifi: iwlwifi: mvm: remove EHT code from mac80211.c Miri Korenblit
2024-02-04 22:06 ` [PATCH 09/15] wifi: iwlwifi: use system_unbound_wq for debug dump Miri Korenblit
2024-02-04 22:06 ` [PATCH 10/15] wifi: iwlwifi: mvm: don't support reduced tx power on ack for new devices Miri Korenblit
2024-02-04 22:06 ` [PATCH 11/15] wifi: iwlwifi: support EHT for WH Miri Korenblit
2024-02-04 22:06 ` [PATCH 12/15] iwlwifi: mvm: advertise support for protected ranging negotiation Miri Korenblit
2024-02-06 10:18   ` Kalle Valo
2024-02-04 22:06 ` [PATCH 13/15] wifi: iwlwifi: mvm: Declare support for secure LTF measurement Miri Korenblit
2024-02-04 22:06 ` [PATCH 14/15] wifi: iwlwifi: clear link_id in time_event Miri Korenblit
2024-02-04 22:06 ` [PATCH 15/15] wifi: iwlwifi: mvm: remove one queue sync on BA session stop Miri Korenblit
2024-02-05 19:21 [PATCH 00/15] wifi: iwlwifi: updates - 2024-02-05 Miri Korenblit

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=20240204220617.1456895-1-miriam.rachel.korenblit@intel.com \
    --to=miriam.rachel.korenblit@intel.com \
    --cc=johannes@sipsolutions.net \
    --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 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.