From: <sean.wang@mediatek.com>
To: <nbd@nbd.name>, <lorenzo.bianconi@redhat.com>
Cc: <sean.wang@mediatek.com>, <Soul.Huang@mediatek.com>,
<YN.Chen@mediatek.com>, <Leon.Yen@mediatek.com>,
<Eric-SY.Chang@mediatek.com>, <Deren.Wu@mediatek.com>,
<km.lin@mediatek.com>, <jenhao.yang@mediatek.com>,
<robin.chiu@mediatek.com>, <Eddie.Chen@mediatek.com>,
<ch.yeh@mediatek.com>, <posh.sun@mediatek.com>,
<ted.huang@mediatek.com>, <Stella.Chang@mediatek.com>,
<Tom.Chou@mediatek.com>, <steve.lee@mediatek.com>,
<jsiuda@google.com>, <frankgor@google.com>, <kuabhs@google.com>,
<druth@google.com>, <abhishekpandit@google.com>,
<shawnku@google.com>, <linux-wireless@vger.kernel.org>,
<linux-mediatek@lists.infradead.org>,
"Sean Wang" <objelf@gmail.com>
Subject: [PATCH v3 0/7] wifi: mt76: mt7921: introduce chanctx support
Date: Fri, 11 Nov 2022 05:23:42 +0800 [thread overview]
Message-ID: <cover.1668068326.git.objelf@gmail.com> (raw)
From: Sean Wang <objelf@gmail.com>
Update the driver to adapt the new firmware can have the capability to
manage the channel context scheduling on multiple roles running on the
device including Station, AP and P2P GC/GO mode (will be extended based
on the future patchset) to help users sharing the network with others
on a single device.
=== v2 ===
(at 1/7)
1. remove unneeded newline
2. squash this one with "wifi: mt76: connac: rely on
mt76_connac_mcu_uni_set_chctx"
(at 3/7)
1. remove unneeded newline and use 'u8 rsv' instead of origin one
(at 4/7)
1. drop mt7921_mcu_bss_event that is unused any more
(at 6/7)
1. move mt7921_check_offload_capability prior to ieee80211_alloc_hw
and decie what ieee80211_ops instance we should use by the
firmware capability bit.
(at 7/7)
1. decide the feature by the firmware capability bit
2. decide the channel by the hardware value in
mt7921_get_status_freq_info()
=== v3 ===
(at 6/7)
1. fix mt7921/usb.c:231:7: error: no member named 'ops' in
'struct mt7921_dev'
2. fix mt7921/main.c:425:13: warning: variable 'err' set but not used
[-Wunused-but-set-variable]
3. fix mt7921/init.c:173:9: warning: variable 'features' is used
uninitialized whenever 'while' loop exits because its condition is false
[-Wsometimes-uninitialized]
(at 7/7)
1. enhance the git message
Quan Zhou (1):
wifi: mt76: mt7921: add unified ROC cmd/event support
Sean Wang (6):
wifi: mt76: connac: add mt76_connac_mcu_uni_set_chctx
wifi: mt76: mt7921: add chanctx parameter to
mt76_connac_mcu_uni_add_bss signature
wifi: mt76: mt7921: drop ieee80211_[start, stop]_queues in driver
wifi: mt76: connac: accept hw scan request at a time
wifi: mt76: mt7921: introduce remain_on_channel support
wifi: mt76: mt7921: introduce chanctx support
.../net/wireless/mediatek/mt76/mt7615/mcu.c | 2 +-
.../wireless/mediatek/mt76/mt76_connac_mcu.c | 151 +++++-----
.../wireless/mediatek/mt76/mt76_connac_mcu.h | 16 +-
.../net/wireless/mediatek/mt76/mt7921/init.c | 90 +++++-
.../net/wireless/mediatek/mt76/mt7921/mac.c | 10 +-
.../net/wireless/mediatek/mt76/mt7921/main.c | 278 +++++++++++++++++-
.../net/wireless/mediatek/mt76/mt7921/mcu.c | 161 ++++++++--
.../wireless/mediatek/mt76/mt7921/mt7921.h | 69 +++++
.../net/wireless/mediatek/mt76/mt7921/pci.c | 26 +-
.../net/wireless/mediatek/mt76/mt7921/sdio.c | 17 +-
.../net/wireless/mediatek/mt76/mt7921/usb.c | 16 +-
11 files changed, 717 insertions(+), 119 deletions(-)
--
2.25.1
next reply other threads:[~2022-11-10 21:25 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-10 21:23 sean.wang [this message]
2022-11-10 21:23 ` [PATCH v3 1/7] wifi: mt76: connac: add mt76_connac_mcu_uni_set_chctx sean.wang
2022-11-10 21:23 ` [PATCH v3 2/7] wifi: mt76: mt7921: add chanctx parameter to mt76_connac_mcu_uni_add_bss signature sean.wang
2022-11-10 21:23 ` [PATCH v3 3/7] wifi: mt76: mt7921: add unified ROC cmd/event support sean.wang
2022-11-10 21:23 ` [PATCH v3 4/7] wifi: mt76: mt7921: drop ieee80211_[start, stop]_queues in driver sean.wang
2022-11-10 21:23 ` [PATCH v3 5/7] wifi: mt76: connac: accept hw scan request at a time sean.wang
2022-11-10 21:23 ` [PATCH v3 6/7] wifi: mt76: mt7921: introduce remain_on_channel support sean.wang
2022-11-11 11:52 ` Felix Fietkau
2022-11-10 21:23 ` [PATCH v3 7/7] wifi: mt76: mt7921: introduce chanctx support sean.wang
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.1668068326.git.objelf@gmail.com \
--to=sean.wang@mediatek.com \
--cc=Deren.Wu@mediatek.com \
--cc=Eddie.Chen@mediatek.com \
--cc=Eric-SY.Chang@mediatek.com \
--cc=Leon.Yen@mediatek.com \
--cc=Soul.Huang@mediatek.com \
--cc=Stella.Chang@mediatek.com \
--cc=Tom.Chou@mediatek.com \
--cc=YN.Chen@mediatek.com \
--cc=abhishekpandit@google.com \
--cc=ch.yeh@mediatek.com \
--cc=druth@google.com \
--cc=frankgor@google.com \
--cc=jenhao.yang@mediatek.com \
--cc=jsiuda@google.com \
--cc=km.lin@mediatek.com \
--cc=kuabhs@google.com \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=lorenzo.bianconi@redhat.com \
--cc=nbd@nbd.name \
--cc=objelf@gmail.com \
--cc=posh.sun@mediatek.com \
--cc=robin.chiu@mediatek.com \
--cc=shawnku@google.com \
--cc=steve.lee@mediatek.com \
--cc=ted.huang@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).