From patchwork Mon Mar 7 06:04:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ping-Ke Shih X-Patchwork-Id: 549213 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 870D1C433EF for ; Mon, 7 Mar 2022 06:06:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235455AbiCGGGw (ORCPT ); Mon, 7 Mar 2022 01:06:52 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49126 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233203AbiCGGGv (ORCPT ); Mon, 7 Mar 2022 01:06:51 -0500 Received: from rtits2.realtek.com.tw (rtits2.realtek.com [211.75.126.72]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A8EDD5E140 for ; Sun, 6 Mar 2022 22:05:55 -0800 (PST) Authenticated-By: X-SpamFilter-By: ArmorX SpamTrap 5.73 with qID 22765goN6022517, This message is accepted by code: ctloc85258 Received: from mail.realtek.com (rtexh36504.realtek.com.tw[172.21.6.27]) by rtits2.realtek.com.tw (8.15.2/2.71/5.88) with ESMTPS id 22765goN6022517 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Mon, 7 Mar 2022 14:05:43 +0800 Received: from RTEXMBS04.realtek.com.tw (172.21.6.97) by RTEXH36504.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.2308.20; Mon, 7 Mar 2022 14:05:42 +0800 Received: from localhost (172.21.69.188) 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.2308.20; Mon, 7 Mar 2022 14:05:42 +0800 From: Ping-Ke Shih To: CC: Subject: [PATCH v2 00/13] rtw89: generalize functions shared with 8852CE Date: Mon, 7 Mar 2022 14:04:44 +0800 Message-ID: <20220307060457.56789-1-pkshih@realtek.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Originating-IP: [172.21.69.188] 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: trusted connection X-KSE-Antiphishing-Info: Clean X-KSE-Antiphishing-ScanningType: Deterministic X-KSE-Antiphishing-Method: None X-KSE-Antiphishing-Bases: 03/07/2022 05:48:00 X-KSE-AttachmentFiltering-Interceptor-Info: no applicable attachment filtering rules found X-KSE-Antivirus-Interceptor-Info: scan successful X-KSE-Antivirus-Info: =?big5_tw?b?Q2xlYW4sIGJhc2VzOiAyMDIyLzMvNyCkV6TIIDAzOjQ5?= =?big5_tw?b?OjAw?= X-KSE-BulkMessagesFiltering-Scan-Result: protection disabled X-KSE-ServerInfo: RTEXH36504.realtek.com.tw, 9 X-KSE-Attachment-Filter-Triggered-Rules: Clean X-KSE-Attachment-Filter-Triggered-Filters: Clean X-KSE-BulkMessagesFiltering-Scan-Result: protection disabled Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org The existing common flow can share with 8852CE, so I add chip_info and chip_ops to share the functions that doesn't change the behavior of existing chip 8852AE. In this patchset, I add 8852c files and add chip_info/chip_ops along with the process to generalize functions. But, I don't build the files, because it doesn't work unless I have all necessary chip information and functions. No function dependency, but this patchset is based on another patchset "rtw89: support hw_scan and tx_wake firmware features". v2: only patch 6/13 is changed -- define descriptive names to replace some magic numbers. Ping-Ke Shih (13): rtw89: 8852c: add 8852c empty files rtw89: pci: add struct rtw89_pci_info rtw89: pci: add V1 of PCI channel address rtw89: pci: use a struct to describe all registers address related to DMA channel rtw89: read chip version depends on chip ID rtw89: add power_{on/off}_func rtw89: add hci_func_en_addr to support variant generation rtw89: add chip_info::{h2c,c2h}_reg to support more chips rtw89: add page_regs to handle v1 chips rtw89: 8852c: add chip::dle_mem rtw89: support DAV efuse reading operation rtw89: 8852c: process efuse of phycap rtw89: 8852c: process logic efuse map drivers/net/wireless/realtek/rtw89/core.c | 3 +- drivers/net/wireless/realtek/rtw89/core.h | 38 ++ drivers/net/wireless/realtek/rtw89/efuse.c | 160 +++++- drivers/net/wireless/realtek/rtw89/fw.c | 20 +- drivers/net/wireless/realtek/rtw89/mac.c | 184 ++++++- drivers/net/wireless/realtek/rtw89/mac.h | 48 ++ drivers/net/wireless/realtek/rtw89/pci.c | 200 ++++---- drivers/net/wireless/realtek/rtw89/pci.h | 76 ++- drivers/net/wireless/realtek/rtw89/reg.h | 121 +++++ drivers/net/wireless/realtek/rtw89/rtw8852a.c | 36 ++ .../net/wireless/realtek/rtw89/rtw8852ae.c | 7 + drivers/net/wireless/realtek/rtw89/rtw8852c.c | 479 ++++++++++++++++++ drivers/net/wireless/realtek/rtw89/rtw8852c.h | 76 +++ .../net/wireless/realtek/rtw89/rtw8852ce.c | 43 ++ 14 files changed, 1349 insertions(+), 142 deletions(-) create mode 100644 drivers/net/wireless/realtek/rtw89/rtw8852c.c create mode 100644 drivers/net/wireless/realtek/rtw89/rtw8852c.h create mode 100644 drivers/net/wireless/realtek/rtw89/rtw8852ce.c