From: Deren Wu <deren.wu@mediatek.com>
To: Felix Fietkau <nbd@nbd.name>, Lorenzo Bianconi <lorenzo@kernel.org>
Cc: Sean Wang <sean.wang@mediatek.com>,
Ryder Lee <ryder.lee@mediatek.com>,
Shayne Chen <shayne.chen@mediatek.com>,
linux-wireless <linux-wireless@vger.kernel.org>,
linux-mediatek <linux-mediatek@lists.infradead.org>,
Deren Wu <deren.wu@mediatek.com>
Subject: [PATCH 00/11] mt76: introduce mt792x-usb support
Date: Wed, 28 Jun 2023 15:07:13 +0800 [thread overview]
Message-ID: <cover.1687920269.git.deren.wu@mediatek.com> (raw)
This patch set includes the new module mt792x-usb support.
Move some common header/functions from mt7921 to mt792x and also rename prefix
to mt792x. The new module would integrate the common functionalities of mt76
station driver mt7921 and upcoming WiFi7 solution.
(This patch set is based on preceding series "mt76: introduce mt792x-lib support")
Lorenzo Bianconi (11):
wifi: mt76: mt792x: move more dma shared code in mt792x_dma
wifi: mt76: mt7921: move hif_ops macro in mt792x.h
wifi: mt76: mt7921: move shared runtime-pm code on mt792x-lib
wifi: mt76: mt7921: move runtime-pm pci code in mt792x-lib
wifi: mt76: mt7921: move acpi_sar code in mt792x-lib module
wifi: mt76: mt792x: introduce mt792x-usb module
wifi: mt76: mt792x: move mt7921_load_firmware in mt792x-lib module
wifi: mt76: mt76_connac3: move lmac queue enumeration in
mt76_connac3_mac.h
wifi: mt76: mt792x: move MT7921_PM_TIMEOUT and MT7921_HW_SCAN_TIMEOUT
in common code
wifi: mt76: mt7921: move mt7921_dma_init in pci.c
wifi: mt76: mt7921: move mt7921u_disconnect mt792x-lib
drivers/net/wireless/mediatek/mt76/Kconfig | 4 +
drivers/net/wireless/mediatek/mt76/Makefile | 5 +-
.../wireless/mediatek/mt76/mt76_connac3_mac.h | 14 +
.../net/wireless/mediatek/mt76/mt7921/Kconfig | 2 +-
.../wireless/mediatek/mt76/mt7921/Makefile | 5 +-
.../wireless/mediatek/mt76/mt7921/acpi_sar.h | 105 ------
.../net/wireless/mediatek/mt76/mt7921/dma.c | 223 ------------
.../net/wireless/mediatek/mt76/mt7921/init.c | 16 +-
.../net/wireless/mediatek/mt76/mt7921/mac.c | 72 +---
.../net/wireless/mediatek/mt76/mt7921/main.c | 11 +-
.../net/wireless/mediatek/mt76/mt7921/mcu.c | 111 +-----
.../wireless/mediatek/mt76/mt7921/mt7921.h | 61 ----
.../net/wireless/mediatek/mt76/mt7921/pci.c | 170 +++++----
.../wireless/mediatek/mt76/mt7921/pci_mac.c | 4 +-
.../wireless/mediatek/mt76/mt7921/pci_mcu.c | 65 ----
.../net/wireless/mediatek/mt76/mt7921/sdio.c | 6 +-
.../wireless/mediatek/mt76/mt7921/testmode.c | 2 +-
.../net/wireless/mediatek/mt76/mt7921/usb.c | 179 ++++-----
.../wireless/mediatek/mt76/mt7921/usb_mac.c | 255 -------------
drivers/net/wireless/mediatek/mt76/mt792x.h | 94 ++++-
.../{mt7921/acpi_sar.c => mt792x_acpi_sar.c} | 125 ++++---
.../wireless/mediatek/mt76/mt792x_acpi_sar.h | 105 ++++++
.../net/wireless/mediatek/mt76/mt792x_core.c | 244 ++++++++-----
.../net/wireless/mediatek/mt76/mt792x_dma.c | 344 ++++++++++++++++++
.../net/wireless/mediatek/mt76/mt792x_mac.c | 72 ++++
.../net/wireless/mediatek/mt76/mt792x_usb.c | 309 ++++++++++++++++
.../wireless/mediatek/mt76/mt7996/mt7996.h | 14 -
27 files changed, 1334 insertions(+), 1283 deletions(-)
delete mode 100644 drivers/net/wireless/mediatek/mt76/mt7921/acpi_sar.h
delete mode 100644 drivers/net/wireless/mediatek/mt76/mt7921/dma.c
delete mode 100644 drivers/net/wireless/mediatek/mt76/mt7921/usb_mac.c
rename drivers/net/wireless/mediatek/mt76/{mt7921/acpi_sar.c => mt792x_acpi_sar.c} (64%)
create mode 100644 drivers/net/wireless/mediatek/mt76/mt792x_acpi_sar.h
create mode 100644 drivers/net/wireless/mediatek/mt76/mt792x_dma.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt792x_usb.c
--
2.18.0
next reply other threads:[~2023-06-28 7:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-28 7:07 Deren Wu [this message]
2023-06-28 7:07 ` [PATCH 01/11] wifi: mt76: mt792x: move more dma shared code in mt792x_dma Deren Wu
2023-06-28 7:07 ` [PATCH 02/11] wifi: mt76: mt7921: move hif_ops macro in mt792x.h Deren Wu
2023-06-28 7:07 ` [PATCH 03/11] wifi: mt76: mt7921: move shared runtime-pm code on mt792x-lib Deren Wu
2023-06-28 7:07 ` [PATCH 04/11] wifi: mt76: mt7921: move runtime-pm pci code in mt792x-lib Deren Wu
2023-06-28 7:07 ` [PATCH 05/11] wifi: mt76: mt7921: move acpi_sar code in mt792x-lib module Deren Wu
2023-06-28 7:07 ` [PATCH 06/11] wifi: mt76: mt792x: introduce mt792x-usb module Deren Wu
2023-06-28 7:07 ` [PATCH 07/11] wifi: mt76: mt792x: move mt7921_load_firmware in mt792x-lib module Deren Wu
2023-06-28 7:07 ` [PATCH 08/11] wifi: mt76: mt76_connac3: move lmac queue enumeration in mt76_connac3_mac.h Deren Wu
2023-06-28 7:07 ` [PATCH 09/11] wifi: mt76: mt792x: move MT7921_PM_TIMEOUT and MT7921_HW_SCAN_TIMEOUT in common code Deren Wu
2023-06-28 7:07 ` [PATCH 10/11] wifi: mt76: mt7921: move mt7921_dma_init in pci.c Deren Wu
2023-06-28 7:07 ` [PATCH 11/11] wifi: mt76: mt7921: move mt7921u_disconnect mt792x-lib Deren Wu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1687920269.git.deren.wu@mediatek.com \
--to=deren.wu@mediatek.com \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=lorenzo@kernel.org \
--cc=nbd@nbd.name \
--cc=ryder.lee@mediatek.com \
--cc=sean.wang@mediatek.com \
--cc=shayne.chen@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).