From patchwork Fri Dec 14 20:29:27 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 10731613 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 403496C5 for ; Fri, 14 Dec 2018 20:29:56 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6F6562D83C for ; Fri, 14 Dec 2018 20:29:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 610B02D863; Fri, 14 Dec 2018 20:29:55 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EF2F92D83C for ; Fri, 14 Dec 2018 20:29:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730770AbeLNU3x (ORCPT ); Fri, 14 Dec 2018 15:29:53 -0500 Received: from paleale.coelho.fi ([176.9.41.70]:41924 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1730709AbeLNU3w (ORCPT ); Fri, 14 Dec 2018 15:29:52 -0500 Received: from 91-156-4-241.elisa-laajakaista.fi ([91.156.4.241] helo=localhost.localdomain) by farmhouse.coelho.fi with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.91) (envelope-from ) id 1gXu5m-0002RG-4e; Fri, 14 Dec 2018 22:29:50 +0200 From: Luca Coelho To: kvalo@codeaurora.org Cc: linux-wireless@vger.kernel.org, Luca Coelho Date: Fri, 14 Dec 2018 22:29:27 +0200 Message-Id: <20181214202945.32375-1-luca@coelho.fi> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [PATCH 00/18] iwlwifi: updates intended for v4.21 2018-12-14 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Luca Coelho Hi, Here's the fourth set of patches intended for v4.21. It's the usual development, with support for a new FW version, some small new features, cleanups and bugfixes. The changes are: * Support for FW version 43 for 9000 and 22000 series; * A couple of janitorial fixes from the community; * More fixes in the 802.11ax code; * Other cleanups 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. y Colin Ian King (1): iwlwifi: mvm: fix spelling mistake "Recieved" -> "Received" Emmanuel Grumbach (1): iwlwifi: mvm: set TWT responder capability bit in 11AX SoftAP mode Gustavo A. R. Silva (1): iwlwifi: mvm: d3: use struct_size() in kzalloc() Luca Coelho (3): [BUGFIXiwlwifi: make MVM and DVM depend on MAC80211 iwlwifi: remove unused and wrong PHY_CFG_* macros iwlwifi: bump the API version to 43 for 9000 and 22000 Naftali Goldstein (1): iwlwifi: mvm: fix setting HE ppe FW config Sara Sharon (8): iwlwifi: pcie: use iwl_tx_cmd_gen2 and not iwl_tx_cmd iwlwifi: mvm: remove dead code iwlwifi: mvm: remove pointless NULL assignment iwlwifi: mvm: cleanup iwl_mvm_tx_skb_non_sta iwlwifi: mvm: take station lock later in the code iwlwifi: pcie: lock txq a bit later in reclaim code iwlwifi: mvm: clean up SSN incrementation iwlwifi: dbg: add debug data to warning Shahar S Matityahu (1): iwlwifi: wrt: add rt status and num of rx/tx fifos to dump Shaul Triebitz (2): iwlwifi: split HE capabilities between AP and STA iwlwifi: mvm: handle RX no data notification drivers/net/wireless/intel/iwlwifi/Kconfig | 4 +- .../net/wireless/intel/iwlwifi/cfg/22000.c | 2 +- drivers/net/wireless/intel/iwlwifi/cfg/9000.c | 2 +- .../wireless/intel/iwlwifi/fw/api/config.h | 13 +- .../wireless/intel/iwlwifi/fw/api/datapath.h | 5 + .../net/wireless/intel/iwlwifi/fw/api/mac.h | 2 +- .../net/wireless/intel/iwlwifi/fw/api/rx.h | 49 +++ drivers/net/wireless/intel/iwlwifi/fw/dbg.c | 4 +- drivers/net/wireless/intel/iwlwifi/fw/dbg.h | 1 + .../wireless/intel/iwlwifi/fw/error-dump.h | 3 + .../net/wireless/intel/iwlwifi/fw/runtime.h | 1 + .../wireless/intel/iwlwifi/iwl-nvm-parse.c | 290 ++++++++++++------ drivers/net/wireless/intel/iwlwifi/mvm/d3.c | 6 +- .../net/wireless/intel/iwlwifi/mvm/mac80211.c | 10 +- drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 2 + drivers/net/wireless/intel/iwlwifi/mvm/ops.c | 2 + drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c | 126 +++++++- drivers/net/wireless/intel/iwlwifi/mvm/sta.c | 10 +- drivers/net/wireless/intel/iwlwifi/mvm/tx.c | 56 ++-- .../net/wireless/intel/iwlwifi/mvm/utils.c | 3 + .../net/wireless/intel/iwlwifi/pcie/tx-gen2.c | 2 +- drivers/net/wireless/intel/iwlwifi/pcie/tx.c | 3 +- 22 files changed, 427 insertions(+), 169 deletions(-)