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>,
"Hao Zhang" <hao.zhang@mediatek.com>,
Leon Yen <leon.yen@mediatek.com>,
"Mingyen Hsieh" <mingyen.hsieh@mediatek.com>,
Nelson Yu <nelson.yu@mediatek.com>,
"Quan Zhou" <quan.zhou@mediatek.com>,
Rong Yan <rong.yan@mediatek.com>
Subject: [PATCH v3 00/17] Add support for Mediatek Wi-Fi7 driver mt7925
Date: Mon, 18 Sep 2023 17:30:53 +0800 [thread overview]
Message-ID: <cover.1695024367.git.deren.wu@mediatek.com> (raw)
This series adds mt7925, a new mac80211 driver for MediaTek Wi-Fi 7
(802.11be) device Filogic 360, which can support Station, AP, P2P, and
monitor modes. Filogic 360 supports max 4096-QAM/160MHz radio operation at 6 GHz,
5 GHz, or 2.4 GHz with 2x2 antennas. This chip supports PCIe and USB bus type.
mt7925 supports Wi-Fi 6E and EHT rate with single link only at this moment,
whereas Wi-Fi 7 and its specific features are working in progress. They will be
introduced in further patches.
The driver is build tested by Intel's kernel test robot with both GCC and Clang
with several architecture. Sparse reports no warnings.
There are multiple authors, they are listed in alphabetical order below.
Co-developed-by: Hao Zhang <hao.zhang@mediatek.com>
Signed-off-by: Hao Zhang <hao.zhang@mediatek.com>
Co-developed-by: Leon Yen <leon.yen@mediatek.com>
Signed-off-by: Leon Yen <leon.yen@mediatek.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Mingyen Hsieh <mingyen.hsieh@mediatek.com>
Signed-off-by: Mingyen Hsieh <mingyen.hsieh@mediatek.com>
Co-developed-by: Nelson Yu <nelson.yu@mediatek.com>
Signed-off-by: Nelson Yu <nelson.yu@mediatek.com>
Co-developed-by: Quan Zhou <quan.zhou@mediatek.com>
Signed-off-by: Quan Zhou <quan.zhou@mediatek.com>
Co-developed-by: Rong Yan <rong.yan@mediatek.com>
Signed-off-by: Rong Yan <rong.yan@mediatek.com>
Signed-off-by: Deren Wu <deren.wu@mediatek.com>
----------------[commit message cut here]----------------
v2:
- add patchwork link for preceding series
- rebase on top of staging tree and apply fixes for following new patches
* 586baa51d755 ("wifi: mt76: remove unused error path in mt76_connac_tx_complete_skb")
* 29b8fc6742a1 ("wifi: mt76: fix race condition related to checking tx queue fill status")
* e8c1841278a7 ("wifi: cfg80211: annotate iftype_data pointer with sparse")
v3:
- rebase on the top of maintainer tree
- align struct ieee80211_chanctx_conf migration to struct mt76_vif
- fix chip_reset fail
- this series is based on "wifi: mt76: move struct ieee80211_chanctx_conf up to struct mt76_vif"
https://patchwork.kernel.org/project/linux-wireless/patch/f1e86c1f90ebe75ce2ae0cb1ba34f8db2996792c.1695021398.git.deren.wu@mediatek.com/
Deren Wu (17):
wifi: mt76: mt7925: add Kconfig
wifi: mt76: mt7925: add Makefile
wifi: mt76: mt7925: add mt7925.h
wifi: mt76: mt7925: add regs.h
wifi: mt76: mt7925: add mcu.c
wifi: mt76: mt7925: add mcu.h
wifi: mt76: mt7925: add mac.c
wifi: mt76: mt7925: add mac.h
wifi: mt76: mt7925: add main.c
wifi: mt76: mt7925: add init.c
wifi: mt76: mt7925: add pci_mcu.c
wifi: mt76: mt7925: add pci_mac.c
wifi: mt76: mt7925: add pci.c
wifi: mt76: mt7925: add usb.c
wifi: mt76: mt7925: add debugfs.c
wifi: mt76: add mt7925 to Makefile
wifi: mt76: add mt7925 to Kconfig
drivers/net/wireless/mediatek/mt76/Kconfig | 1 +
drivers/net/wireless/mediatek/mt76/Makefile | 1 +
.../net/wireless/mediatek/mt76/mt7925/Kconfig | 30 +
.../wireless/mediatek/mt76/mt7925/Makefile | 9 +
.../wireless/mediatek/mt76/mt7925/debugfs.c | 319 ++
.../net/wireless/mediatek/mt76/mt7925/init.c | 235 ++
.../net/wireless/mediatek/mt76/mt7925/mac.c | 1452 ++++++++
.../net/wireless/mediatek/mt76/mt7925/mac.h | 23 +
.../net/wireless/mediatek/mt76/mt7925/main.c | 1471 ++++++++
.../net/wireless/mediatek/mt76/mt7925/mcu.c | 3174 +++++++++++++++++
.../net/wireless/mediatek/mt76/mt7925/mcu.h | 537 +++
.../wireless/mediatek/mt76/mt7925/mt7925.h | 325 ++
.../net/wireless/mediatek/mt76/mt7925/pci.c | 586 +++
.../wireless/mediatek/mt76/mt7925/pci_mac.c | 148 +
.../wireless/mediatek/mt76/mt7925/pci_mcu.c | 53 +
.../net/wireless/mediatek/mt76/mt7925/regs.h | 92 +
.../net/wireless/mediatek/mt76/mt7925/usb.c | 340 ++
17 files changed, 8796 insertions(+)
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/Kconfig
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/Makefile
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/debugfs.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/init.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/mac.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/mac.h
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/main.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/mcu.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/mcu.h
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/mt7925.h
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/pci.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/pci_mac.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/pci_mcu.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/regs.h
create mode 100644 drivers/net/wireless/mediatek/mt76/mt7925/usb.c
--
2.18.0
next reply other threads:[~2023-09-18 9:32 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-18 9:30 Deren Wu [this message]
2023-09-18 9:30 ` [PATCH v3 01/17] wifi: mt76: mt7925: add Kconfig Deren Wu
2023-09-18 9:30 ` [PATCH v3 02/17] wifi: mt76: mt7925: add Makefile Deren Wu
2023-09-18 9:30 ` [PATCH v3 03/17] wifi: mt76: mt7925: add mt7925.h Deren Wu
2023-09-18 9:30 ` [PATCH v3 04/17] wifi: mt76: mt7925: add regs.h Deren Wu
2023-09-18 9:30 ` [PATCH v3 05/17] wifi: mt76: mt7925: add mcu.c Deren Wu
2023-09-18 9:30 ` [PATCH v3 06/17] wifi: mt76: mt7925: add mcu.h Deren Wu
2023-09-18 9:31 ` [PATCH v3 07/17] wifi: mt76: mt7925: add mac.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 08/17] wifi: mt76: mt7925: add mac.h Deren Wu
2023-09-18 9:31 ` [PATCH v3 09/17] wifi: mt76: mt7925: add main.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 10/17] wifi: mt76: mt7925: add init.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 11/17] wifi: mt76: mt7925: add pci_mcu.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 12/17] wifi: mt76: mt7925: add pci_mac.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 13/17] wifi: mt76: mt7925: add pci.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 14/17] wifi: mt76: mt7925: add usb.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 15/17] wifi: mt76: mt7925: add debugfs.c Deren Wu
2023-09-18 9:31 ` [PATCH v3 16/17] wifi: mt76: add mt7925 to Makefile Deren Wu
2023-09-18 9:31 ` [PATCH v3 17/17] wifi: mt76: add mt7925 to Kconfig 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.1695024367.git.deren.wu@mediatek.com \
--to=deren.wu@mediatek.com \
--cc=hao.zhang@mediatek.com \
--cc=leon.yen@mediatek.com \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=lorenzo@kernel.org \
--cc=mingyen.hsieh@mediatek.com \
--cc=nbd@nbd.name \
--cc=nelson.yu@mediatek.com \
--cc=quan.zhou@mediatek.com \
--cc=rong.yan@mediatek.com \
--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).