From patchwork Mon Apr 1 13:14:14 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Crispin X-Patchwork-Id: 10879927 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 724FB139A for ; Mon, 1 Apr 2019 13:14:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 58ABD284C7 for ; Mon, 1 Apr 2019 13:14:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4CC10284F0; Mon, 1 Apr 2019 13:14:42 +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 D2AB5284C7 for ; Mon, 1 Apr 2019 13:14:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726887AbfDANOk (ORCPT ); Mon, 1 Apr 2019 09:14:40 -0400 Received: from nbd.name ([46.4.11.11]:46122 "EHLO nbd.name" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726762AbfDANOk (ORCPT ); Mon, 1 Apr 2019 09:14:40 -0400 Received: from tmo-101-49.customers.d1-online.com ([80.187.101.49] helo=bertha.lan) by ds12 with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1hAwlp-0007tw-1x; Mon, 01 Apr 2019 15:14:37 +0200 From: John Crispin To: Johannes Berg , Kalle Valo Cc: linux-wireless@vger.kernel.org, Shashidhar Lakkavalli , John Crispin Subject: [RFC V3 0/2] mac80211: add 802.11 encapsulation offloading Date: Mon, 1 Apr 2019 15:14:14 +0200 Message-Id: <20190401131416.22646-1-john@phrozen.org> X-Mailer: git-send-email 2.11.0 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 This series picks up prior work from QCA. The patch is currently shipped inside QSDK as part of the wlan-open package. The series tries to address all feedback from the V2 -> https://patchwork.kernel.org/patch/9602585/ Changes in V3 * rebase on latest kernel * various code style clean ups * give so eof the variables and functions more obvious names * move the code that disables support for non linear frames to the core * disable monitor and tkip support Vasanthakumar Thiagarajan (2): mac80211: add hw 80211 encapsulation offloading support ath10k: add tx hw 802.11 encapusaltion offloading support drivers/net/wireless/ath/ath10k/core.c | 11 ++ drivers/net/wireless/ath/ath10k/core.h | 3 + drivers/net/wireless/ath/ath10k/htt_tx.c | 24 ++-- drivers/net/wireless/ath/ath10k/mac.c | 78 ++++++++++--- drivers/net/wireless/ath/ath10k/txrx.c | 11 +- include/net/mac80211.h | 25 ++++ net/mac80211/cfg.c | 12 +- net/mac80211/debugfs.c | 1 + net/mac80211/ieee80211_i.h | 10 ++ net/mac80211/iface.c | 54 +++++++++ net/mac80211/key.c | 3 + net/mac80211/main.c | 10 +- net/mac80211/status.c | 79 +++++++++++++ net/mac80211/tx.c | 188 ++++++++++++++++++++++++++++++- 14 files changed, 475 insertions(+), 34 deletions(-)