From: Miri Korenblit <miriam.rachel.korenblit@intel.com>
To: linux-wireless@vger.kernel.org
Subject: [PATCH iwlwifi-next 00/15] wifi: iwlwifi: updates - 2025-03-18
Date: Wed, 18 Mar 2026 22:54:15 +0200 [thread overview]
Message-ID: <20260318205430.614577-1-miriam.rachel.korenblit@intel.com> (raw)
Hi,
features and cleanups from our internal tree.
Thanks,
Miri
---
Emmanuel Grumbach (9):
wifi: iwlwifi: mld: add support for iwl_mcc_allowed_ap_type_cmd v2
wifi: iwlwifi: ensure we don't read SAR values past the limit
wifi: iwlwifi: uefi: decouple UEFI and firmware APIs
wifi: iwlwifi: acpi: better use ARRAY_SIZE than a define
wifi: iwlwifi: uefi: open code the PPAG table store operation
wifi: iwlwifi: bring iwl_fill_ppag_table to the iwlmvm
wifi: iwlwifi: regulatory: support a new command for PPAG
wifi: iwlwifi: acpi: check the size of the ACPI PPAG tables
wifi: iwlwifi: acpi: add support for PPAG rev5
Ilan Peer (2):
wifi: iwlwifi: mld: Refactor scan command handling
wifi: iwlwifi: mld: Introduce scan command version 18
Johannes Berg (1):
wifi: iwlwifi: mld: correctly set wifi generation data
Miri Korenblit (1):
wifi: iwlwifi: mld: add support for sta command version 3
Nidhish A N (1):
wifi: iwlwifi: mvm: cleanup some more MLO code
Pagadala Yesu Anjaneyulu (1):
wifi: iwlwifi: mld: remove unused scan expire time constants
drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 31 +-
drivers/net/wireless/intel/iwlwifi/fw/acpi.h | 21 +-
.../wireless/intel/iwlwifi/fw/api/mac-cfg.h | 94 +++++-
.../wireless/intel/iwlwifi/fw/api/nvm-reg.h | 14 +-
.../net/wireless/intel/iwlwifi/fw/api/power.h | 8 +
.../net/wireless/intel/iwlwifi/fw/api/scan.h | 45 +++
.../wireless/intel/iwlwifi/fw/regulatory.c | 151 ++-------
.../wireless/intel/iwlwifi/fw/regulatory.h | 10 +-
.../net/wireless/intel/iwlwifi/fw/runtime.h | 8 +-
drivers/net/wireless/intel/iwlwifi/fw/uefi.c | 60 +++-
drivers/net/wireless/intel/iwlwifi/fw/uefi.h | 32 +-
.../wireless/intel/iwlwifi/mld/constants.h | 1 -
drivers/net/wireless/intel/iwlwifi/mld/fw.c | 2 +-
.../net/wireless/intel/iwlwifi/mld/iface.c | 101 ++++--
.../net/wireless/intel/iwlwifi/mld/mac80211.c | 19 ++
drivers/net/wireless/intel/iwlwifi/mld/mlo.c | 1 -
.../wireless/intel/iwlwifi/mld/regulatory.c | 98 +++++-
.../wireless/intel/iwlwifi/mld/regulatory.h | 2 +-
drivers/net/wireless/intel/iwlwifi/mld/scan.c | 218 ++++++++++---
drivers/net/wireless/intel/iwlwifi/mld/scan.h | 2 +
drivers/net/wireless/intel/iwlwifi/mld/sta.c | 42 ++-
drivers/net/wireless/intel/iwlwifi/mvm/fw.c | 153 ++++++++-
.../net/wireless/intel/iwlwifi/mvm/mld-key.c | 46 ---
.../wireless/intel/iwlwifi/mvm/mld-mac80211.c | 132 --------
.../net/wireless/intel/iwlwifi/mvm/mld-sta.c | 291 +-----------------
drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 5 -
drivers/net/wireless/intel/iwlwifi/mvm/sta.h | 4 -
27 files changed, 834 insertions(+), 757 deletions(-)
--
2.34.1
next reply other threads:[~2026-03-18 20:54 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-18 20:54 Miri Korenblit [this message]
2026-03-18 20:54 ` [PATCH iwlwifi-next 01/15] wifi: iwlwifi: mld: add support for iwl_mcc_allowed_ap_type_cmd v2 Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 02/15] wifi: iwlwifi: ensure we don't read SAR values past the limit Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 03/15] wifi: iwlwifi: uefi: decouple UEFI and firmware APIs Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 04/15] wifi: iwlwifi: acpi: better use ARRAY_SIZE than a define Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 05/15] wifi: iwlwifi: mvm: cleanup some more MLO code Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 06/15] wifi: iwlwifi: mld: remove unused scan expire time constants Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 07/15] wifi: iwlwifi: mld: Refactor scan command handling Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 08/15] wifi: iwlwifi: mld: Introduce scan command version 18 Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 09/15] wifi: iwlwifi: uefi: open code the PPAG table store operation Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 10/15] wifi: iwlwifi: bring iwl_fill_ppag_table to the iwlmvm Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 11/15] wifi: iwlwifi: mld: add support for sta command version 3 Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 12/15] wifi: iwlwifi: mld: correctly set wifi generation data Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 13/15] wifi: iwlwifi: regulatory: support a new command for PPAG Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 14/15] wifi: iwlwifi: acpi: check the size of the ACPI PPAG tables Miri Korenblit
2026-03-18 20:54 ` [PATCH iwlwifi-next 15/15] wifi: iwlwifi: acpi: add support for PPAG rev5 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=20260318205430.614577-1-miriam.rachel.korenblit@intel.com \
--to=miriam.rachel.korenblit@intel.com \
--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