From patchwork Tue Oct 10 02:10:00 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ping-Ke Shih X-Patchwork-Id: 731901 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 71940CD68E4 for ; Tue, 10 Oct 2023 02:10:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1441848AbjJJCKs (ORCPT ); Mon, 9 Oct 2023 22:10:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37694 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1441847AbjJJCKr (ORCPT ); Mon, 9 Oct 2023 22:10:47 -0400 Received: from rtits2.realtek.com.tw (rtits2.realtek.com [211.75.126.72]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0C3AD8F for ; Mon, 9 Oct 2023 19:10:44 -0700 (PDT) X-SpamFilter-By: ArmorX SpamTrap 5.78 with qID 39A2AToT42015384, This message is accepted by code: ctloc85258 Received: from mail.realtek.com (rtexh36506.realtek.com.tw[172.21.6.27]) by rtits2.realtek.com.tw (8.15.2/2.92/5.92) with ESMTPS id 39A2AToT42015384 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Tue, 10 Oct 2023 10:10:29 +0800 Received: from RTEXMBS04.realtek.com.tw (172.21.6.97) by RTEXH36506.realtek.com.tw (172.21.6.27) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.17; Tue, 10 Oct 2023 10:10:29 +0800 Received: from [127.0.1.1] (172.16.16.25) by RTEXMBS04.realtek.com.tw (172.21.6.97) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.7; Tue, 10 Oct 2023 10:10:28 +0800 From: Ping-Ke Shih To: , CC: Subject: [PATCH v2 0/6] wifi: rtw89: handle EHT rate Date: Tue, 10 Oct 2023 10:10:00 +0800 Message-ID: <20231010021006.6061-1-pkshih@realtek.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Originating-IP: [172.16.16.25] X-ClientProxiedBy: RTEXMBS02.realtek.com.tw (172.21.6.95) To RTEXMBS04.realtek.com.tw (172.21.6.97) X-KSE-ServerInfo: RTEXMBS04.realtek.com.tw, 9 X-KSE-AntiSpam-Interceptor-Info: fallback X-KSE-Antivirus-Interceptor-Info: fallback X-KSE-AntiSpam-Interceptor-Info: fallback Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org We have parsed new formats used by WiFi 7 chips before, and this patchset is to handle EHT rate. The handlers contain - RX rate * from RX descriptor, which is also used to find corresponding PPDU status packet - TX rate * RA (Rate adaptive) mask to tell firmware selectable rates * RA report tells driver the rate selected by firmware - debugfs * show TX/RX rate above - monitor mode * add enumerators of radiotap bandwidth of EHT U-SIG * add EHT radiotap if working on monitor mode v2: - correct commit message of patch 5/6 about the source of bandwidth definition of EHT U-SIG suggested by Johannes Ping-Ke Shih (6): wifi: rtw89: parse EHT information from RX descriptor and PPDU status packet wifi: rtw89: Add EHT rate mask as parameters of RA H2C command wifi: rtw89: parse TX EHT rate selected by firmware from RA C2H report wifi: rtw89: show EHT rate in debugfs wifi: radiotap: add bandwidth definition of EHT U-SIG wifi: rtw89: add EHT radiotap in monitor mode drivers/net/wireless/realtek/rtw89/core.c | 125 ++++++++++++++++++--- drivers/net/wireless/realtek/rtw89/core.h | 11 +- drivers/net/wireless/realtek/rtw89/debug.c | 14 +++ drivers/net/wireless/realtek/rtw89/phy.c | 70 +++++++++++- drivers/net/wireless/realtek/rtw89/phy.h | 5 + include/net/ieee80211_radiotap.h | 6 + 6 files changed, 214 insertions(+), 17 deletions(-)