All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
To: sean.wang@mediatek.com
Cc: nbd@nbd.name, Deren.Wu@mediatek.com,
	linux-wireless@vger.kernel.org,
	linux-mediatek@lists.infradead.org
Subject: Re: [PATCH 0/9] introduce mt7921u driver
Date: Sat, 5 Mar 2022 10:10:37 +0100	[thread overview]
Message-ID: <YiMpDQq8zMS9FWVd@lore-desk> (raw)
In-Reply-To: <1646461027-5374-1-git-send-email-sean.wang@mediatek.com>

[-- Attachment #1: Type: text/plain, Size: 2219 bytes --]

On Mar 05, Sean Wang wrote:
> From: Sean Wang <sean.wang@mediatek.com>
> 
> >Introduce support for MT7921U 802.11ax 2x2:2SS wireless devices.
> >
> 
> Tested the whole series with sta and monitor mode and it is working well.
> 
> Tested-by: Sean Wang <sean.wang@mediatek.com>

thx Sean for testing. I will post v2 with some fixes.

Regards,
Lorenzo

> 
> >Lorenzo Bianconi (9):
> >  mt76: usb: add req_type to ___mt76u_rr signature
> >  mt76: usb: add req_type to ___mt76u_wr signature
> >  mt76: usb: introduce __mt76u_init utility routine
> >  mt76: mt7921: disable runtime pm for usb
> >  mt76: mt7921: update mt7921_skb_add_usb_sdio_hdr to support usb
> >  mt76: mt7921: move mt7921_usb_sdio_tx_prepare_skb in common mac code
> >  mt76: mt7921: move mt7921_usb_sdio_tx_complete_skb in common mac code.
> >  mt76: mt7921: move mt7921_usb_sdio_tx_status_data in mac common code.
> >  mt76: mt7921: add mt7921u driver
> >
> > drivers/net/wireless/mediatek/mt76/mt76.h     |  12 +-
> > .../net/wireless/mediatek/mt76/mt7615/usb.c   |  68 ++-
> > .../net/wireless/mediatek/mt76/mt76x0/usb.c   |   2 +-
> > .../net/wireless/mediatek/mt76/mt76x2/usb.c   |   2 +-
> > .../net/wireless/mediatek/mt76/mt7921/Kconfig |  11 +
> > .../wireless/mediatek/mt76/mt7921/Makefile    |   2 +
> > .../wireless/mediatek/mt76/mt7921/debugfs.c   |   6 +
> > .../net/wireless/mediatek/mt76/mt7921/init.c  |  12 +-
> > .../net/wireless/mediatek/mt76/mt7921/mac.c   |  91 ++++
> > .../net/wireless/mediatek/mt76/mt7921/mac.h   |   1 +
> > .../net/wireless/mediatek/mt76/mt7921/main.c  |   3 +-
> > .../wireless/mediatek/mt76/mt7921/mt7921.h    |  25 +-
> > .../net/wireless/mediatek/mt76/mt7921/regs.h  |  36 +-
> > .../net/wireless/mediatek/mt76/mt7921/sdio.c  |   6 +-
> > .../wireless/mediatek/mt76/mt7921/sdio_mac.c  |  83 ----
> > .../wireless/mediatek/mt76/mt7921/sdio_mcu.c  |   2 +-
> > .../net/wireless/mediatek/mt76/mt7921/usb.c   | 397 ++++++++++++++++++
> > drivers/net/wireless/mediatek/mt76/usb.c      | 125 ++----
> > 18 files changed, 689 insertions(+), 195 deletions(-)  create mode 100644 drivers/net/wireless/mediatek/mt76/mt7921/usb.c
> >
> >--
> >2.35.1
> >
> >
> 
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
To: sean.wang@mediatek.com
Cc: nbd@nbd.name, Deren.Wu@mediatek.com,
	linux-wireless@vger.kernel.org,
	linux-mediatek@lists.infradead.org
Subject: Re: [PATCH 0/9] introduce mt7921u driver
Date: Sat, 5 Mar 2022 10:10:37 +0100	[thread overview]
Message-ID: <YiMpDQq8zMS9FWVd@lore-desk> (raw)
In-Reply-To: <1646461027-5374-1-git-send-email-sean.wang@mediatek.com>


[-- Attachment #1.1: Type: text/plain, Size: 2219 bytes --]

On Mar 05, Sean Wang wrote:
> From: Sean Wang <sean.wang@mediatek.com>
> 
> >Introduce support for MT7921U 802.11ax 2x2:2SS wireless devices.
> >
> 
> Tested the whole series with sta and monitor mode and it is working well.
> 
> Tested-by: Sean Wang <sean.wang@mediatek.com>

thx Sean for testing. I will post v2 with some fixes.

Regards,
Lorenzo

> 
> >Lorenzo Bianconi (9):
> >  mt76: usb: add req_type to ___mt76u_rr signature
> >  mt76: usb: add req_type to ___mt76u_wr signature
> >  mt76: usb: introduce __mt76u_init utility routine
> >  mt76: mt7921: disable runtime pm for usb
> >  mt76: mt7921: update mt7921_skb_add_usb_sdio_hdr to support usb
> >  mt76: mt7921: move mt7921_usb_sdio_tx_prepare_skb in common mac code
> >  mt76: mt7921: move mt7921_usb_sdio_tx_complete_skb in common mac code.
> >  mt76: mt7921: move mt7921_usb_sdio_tx_status_data in mac common code.
> >  mt76: mt7921: add mt7921u driver
> >
> > drivers/net/wireless/mediatek/mt76/mt76.h     |  12 +-
> > .../net/wireless/mediatek/mt76/mt7615/usb.c   |  68 ++-
> > .../net/wireless/mediatek/mt76/mt76x0/usb.c   |   2 +-
> > .../net/wireless/mediatek/mt76/mt76x2/usb.c   |   2 +-
> > .../net/wireless/mediatek/mt76/mt7921/Kconfig |  11 +
> > .../wireless/mediatek/mt76/mt7921/Makefile    |   2 +
> > .../wireless/mediatek/mt76/mt7921/debugfs.c   |   6 +
> > .../net/wireless/mediatek/mt76/mt7921/init.c  |  12 +-
> > .../net/wireless/mediatek/mt76/mt7921/mac.c   |  91 ++++
> > .../net/wireless/mediatek/mt76/mt7921/mac.h   |   1 +
> > .../net/wireless/mediatek/mt76/mt7921/main.c  |   3 +-
> > .../wireless/mediatek/mt76/mt7921/mt7921.h    |  25 +-
> > .../net/wireless/mediatek/mt76/mt7921/regs.h  |  36 +-
> > .../net/wireless/mediatek/mt76/mt7921/sdio.c  |   6 +-
> > .../wireless/mediatek/mt76/mt7921/sdio_mac.c  |  83 ----
> > .../wireless/mediatek/mt76/mt7921/sdio_mcu.c  |   2 +-
> > .../net/wireless/mediatek/mt76/mt7921/usb.c   | 397 ++++++++++++++++++
> > drivers/net/wireless/mediatek/mt76/usb.c      | 125 ++----
> > 18 files changed, 689 insertions(+), 195 deletions(-)  create mode 100644 drivers/net/wireless/mediatek/mt76/mt7921/usb.c
> >
> >--
> >2.35.1
> >
> >
> 
> 

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

  reply	other threads:[~2022-03-05  9:10 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-02 15:48 [PATCH 0/9] introduce mt7921u driver Lorenzo Bianconi
2022-03-02 15:48 ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 1/9] mt76: usb: add req_type to ___mt76u_rr signature Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 2/9] mt76: usb: add req_type to ___mt76u_wr signature Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 3/9] mt76: usb: introduce __mt76u_init utility routine Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 4/9] mt76: mt7921: disable runtime pm for usb Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 5/9] mt76: mt7921: update mt7921_skb_add_usb_sdio_hdr to support usb Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 6/9] mt76: mt7921: move mt7921_usb_sdio_tx_prepare_skb in common mac code Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 7/9] mt76: mt7921: move mt7921_usb_sdio_tx_complete_skb " Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 8/9] mt76: mt7921: move mt7921_usb_sdio_tx_status_data in mac common code Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-02 15:48 ` [PATCH 9/9] mt76: mt7921: add mt7921u driver Lorenzo Bianconi
2022-03-02 15:48   ` Lorenzo Bianconi
2022-03-05  6:17 ` [PATCH 0/9] introduce " sean.wang
2022-03-05  6:17   ` sean.wang
2022-03-05  9:10   ` Lorenzo Bianconi [this message]
2022-03-05  9:10     ` Lorenzo Bianconi

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=YiMpDQq8zMS9FWVd@lore-desk \
    --to=lorenzo.bianconi@redhat.com \
    --cc=Deren.Wu@mediatek.com \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=nbd@nbd.name \
    --cc=sean.wang@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.