From patchwork Fri Dec 13 15:38:30 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Crispin X-Patchwork-Id: 11290739 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2D1906C1 for ; Fri, 13 Dec 2019 20:37:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DF3542475B for ; Fri, 13 Dec 2019 20:37:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727965AbfLMPim (ORCPT ); Fri, 13 Dec 2019 10:38:42 -0500 Received: from nbd.name ([46.4.11.11]:54802 "EHLO nbd.name" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727796AbfLMPim (ORCPT ); Fri, 13 Dec 2019 10:38:42 -0500 Received: from pd95fd344.dip0.t-ipconnect.de ([217.95.211.68] helo=bertha.fritz.box) by ds12 with esmtpa (Exim 4.89) (envelope-from ) id 1ifn1d-0005pC-0s; Fri, 13 Dec 2019 16:38:41 +0100 From: John Crispin To: Kalle Valo Cc: linux-wireless@vger.kernel.org, ath11k@lists.infradead.org, John Crispin Subject: [PATCH V3 0/9] ath11k: resend pending patches Date: Fri, 13 Dec 2019 16:38:30 +0100 Message-Id: <20191213153839.12372-1-john@phrozen.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Kalle merged ath11k into his next tree and then applied the huge backlog from patchwork. This is a resend of pending patches that no longer apply due to merge order conflicts. John Crispin (9): ath11k: add wmi helper for turning STA PS on/off ath11k: disable PS for STA interfaces by default upon bringup ath11k: drop memset when setting up a tx cmd desc ath11k: rename ath11k_wmi_base instances from wmi_sc to wmi_ab ath11k: add WMI calls to manually add/del/pause/resume TWT dialogs ath11k: add debugfs for TWT debug calls ath11k: move some tx_status parsing to debugfs code ath11k: optimise ath11k_dp_tx_completion_handler ath11k: optimize ath11k_hal_tx_status_parse drivers/net/wireless/ath/ath11k/core.c | 4 +- drivers/net/wireless/ath/ath11k/core.h | 3 +- drivers/net/wireless/ath/ath11k/debug.c | 198 +++++++++ drivers/net/wireless/ath/ath11k/debug.h | 8 + drivers/net/wireless/ath/ath11k/debugfs_sta.c | 66 +-- drivers/net/wireless/ath/ath11k/dp.c | 16 +- drivers/net/wireless/ath/ath11k/dp.h | 11 +- drivers/net/wireless/ath/ath11k/dp_tx.c | 81 ++-- drivers/net/wireless/ath/ath11k/hal_tx.c | 74 +--- drivers/net/wireless/ath/ath11k/hal_tx.h | 13 +- drivers/net/wireless/ath/ath11k/htc.c | 2 +- drivers/net/wireless/ath/ath11k/mac.c | 15 +- drivers/net/wireless/ath/ath11k/testmode.c | 2 +- drivers/net/wireless/ath/ath11k/wmi.c | 408 ++++++++++++++---- drivers/net/wireless/ath/ath11k/wmi.h | 123 +++++- 15 files changed, 773 insertions(+), 251 deletions(-)