From patchwork Sun Nov 29 13:14:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 335017 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1E969C64E7D for ; Sun, 29 Nov 2020 13:15:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C81F4207FF for ; Sun, 29 Nov 2020 13:15:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727820AbgK2NPc (ORCPT ); Sun, 29 Nov 2020 08:15:32 -0500 Received: from paleale.coelho.fi ([176.9.41.70]:33394 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727357AbgK2NPb (ORCPT ); Sun, 29 Nov 2020 08:15:31 -0500 Received: from 91-156-6-193.elisa-laajakaista.fi ([91.156.6.193] helo=redipa.ger.corp.intel.com) by farmhouse.coelho.fi with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1kjMXM-0035gF-4n; Sun, 29 Nov 2020 15:14:44 +0200 From: Luca Coelho To: kvalo@codeaurora.org Cc: linux-wireless@vger.kernel.org Date: Sun, 29 Nov 2020 15:14:30 +0200 Message-Id: <20201129131442.1857561-1-luca@coelho.fi> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Subject: [PATCH 00/12] iwlwifi: updates intended for v5.11 2020-11-29 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org From: Luca Coelho Hi, Here's the first set of patches intended for v5.11. It's the usual development, new features, cleanups and bugfixes. The changes are: * A few fixes and improvements in the FW debugging framework; * A fix in the HE capabilities settings; * Small fix in the logs for SAR; * Move queue code to a common place; * Some other clean-ups and 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. Avraham Stern (1): iwlwifi: mvm: set station HE capabilities before authentication Emmanuel Grumbach (3): cfg80211: flush scan entries upon suspend iwlwifi: mvm: remove the read_nvm from iwl_run_init_mvm_ucode iwlwifi: pcie: remove obsolete pre-release support code Janie Tu (1): iwlwifi: mvm: fix sar profile printing issue Johannes Berg (1): iwlwifi: update MAINTAINERS entry Mordechay Goodstein (4): iwlwifi: remove all queue resources before free iwlwifi: yoyo: add the ability to dump phy periphery iwlwifi: move reclaim flows to the queue file iwlwifi: mvm: Init error table memory to zero Naftali Goldstein (1): iwlwifi: d3: do not send the WOWLAN_CONFIGURATION command for netdetect Rotem Saado (1): iwlwifi: yoyo: align the write pointer to DWs MAINTAINERS | 3 - drivers/net/wireless/intel/iwlwifi/fw/dbg.c | 82 +++++- drivers/net/wireless/intel/iwlwifi/iwl-prph.h | 22 +- drivers/net/wireless/intel/iwlwifi/mvm/d3.c | 14 - .../net/wireless/intel/iwlwifi/mvm/debugfs.c | 4 +- drivers/net/wireless/intel/iwlwifi/mvm/fw.c | 7 +- .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 3 + drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 2 +- drivers/net/wireless/intel/iwlwifi/mvm/ops.c | 2 +- .../net/wireless/intel/iwlwifi/mvm/utils.c | 4 +- drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 16 -- .../wireless/intel/iwlwifi/pcie/internal.h | 4 - .../net/wireless/intel/iwlwifi/pcie/trans.c | 81 +----- drivers/net/wireless/intel/iwlwifi/pcie/tx.c | 199 +------------- drivers/net/wireless/intel/iwlwifi/queue/tx.c | 254 +++++++++++++++++- drivers/net/wireless/intel/iwlwifi/queue/tx.h | 7 + include/net/cfg80211.h | 6 + net/wireless/sysfs.c | 2 + 18 files changed, 381 insertions(+), 331 deletions(-)