From: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
To: nbd@nbd.name
Cc: linux-wireless@vger.kernel.org, sgruszka@redhat.com
Subject: [PATCH v2 00/19] add mt76x2u support to mt76 driver
Date: Tue, 31 Jul 2018 10:09:01 +0200 [thread overview]
Message-ID: <cover.1533023328.git.lorenzo.bianconi@redhat.com> (raw)
Add usb layer to mt76 driver in order to support mt76x2u based devices.
Move common code between pci and usb in mt76x2-common module in order to
remove pci dependency from usb driver
Changes since v1:
- rebase on top of wireless-drivers-next master branch
- fix mt7662u fw definitions
- remove unused len variable in mt76x2u_remove_dma_hdr()
- move mt76u_mcu_fw_reset routine in mt76-usb module in order
to be reused by mt76x0 driver
- move mt76u_mcu_init_rx routine in mt76-usb module in order
to be reused by mt76x0 driver
Changes since RFCv3:
- rebase on top of wireless-drivers-next master branch
- fix some sparse warnings
- fix a race between stats wk and hw_stop
- move stats wk handler in mt76-usb module in order to be reused
for mt76x0u support
- move most of tx_status management in mt76-usb module in order
to be reused for mt76x0u support
- move some mcu utility routines in mt76-usb module in order to
be reused for mt76x0u support
- rename mt76_usb* in mt76u*
- drop 'mt76x2: use completion instead of wait_queue for mcu rx queue'
- move MT_TXD_INFO, MT_MCU_MSG and MT_RX_FCE_INFO defs in dma.h
Changes since RFCv2:
- move usb layer in a separate module
- add usb scatter/gather to properly support A-MSDU
- rebase on top of wireless-drivers-next master branch
- rename mt76_tx_queue_skb in mt76_dma_tx_queue_skb and move it in dma.c
Changes since RFCv1:
- added power management support
- updated usb_device_id list
- fixed 5GHz frequencies scan
- fixed various races during module load/unload
- implemented dynamic AGC tuning based on false packet detection count
- use netdev_alloc_frag/build_skb to get rid of rx frames copies
- addressed comments from Stanislaw
- added bss configuration support
- added tx power configuration support
- patchset rebased on top of current wireless-drivers-next master branch
Lorenzo Bianconi (19):
mt76: move MT_TXD_INFO, MT_MCU_MSG and MT_RX_FCE_INFO defs in dma.h
mt76x2: move mt76x2_fw_header and mt76x2_patch_header definitions in
mcu.h
mt76x2: move utility routines in mt76x2.h
mt76x2: introduce mt76x2_init_device routine
mt76x2: move interface_modes definition in mt76x2_init
mt76x2: introduce mt76x2_mac_load_tx_status routine
mt76x2: add napi struct to mt76_rx_poll_complete/mt76_rx_complete
signatures
mt76x2: add buffer len to mt76x2_mac_write_txwi signature
mt76: rename mt76_tx_queue_skb in mt76_dma_tx_queue_skb
mt76: introduce tx_queue_skb function pointer in mt76_bus_ops
mt76: introduce mt76x2-common module
mt76: add mt76x2_tx_common to mt76x2-common module
mt76: add mt76x2_mac_common to mt76x2-common module
mt76: add mt76x2_init_common to mt76x2-common module
mt76: add mt76x2_common to mt76x2-common module
mt76: add mt76x2_phy_common to mt76x2-common module
mt76: move mt76x2_debugfs in mt76-common module
mt76: add usb support to mt76 layer
mt76: add driver code for MT76x2u based devices
drivers/net/wireless/mediatek/mt76/Kconfig | 19 +
drivers/net/wireless/mediatek/mt76/Makefile | 19 +-
drivers/net/wireless/mediatek/mt76/agg-rx.c | 2 +-
drivers/net/wireless/mediatek/mt76/dma.c | 77 +-
drivers/net/wireless/mediatek/mt76/dma.h | 43 +
drivers/net/wireless/mediatek/mt76/mac80211.c | 20 +-
drivers/net/wireless/mediatek/mt76/mt76.h | 160 +++-
drivers/net/wireless/mediatek/mt76/mt76x2.h | 90 +-
.../wireless/mediatek/mt76/mt76x2_common.c | 350 ++++++++
.../wireless/mediatek/mt76/mt76x2_debugfs.c | 1 +
.../net/wireless/mediatek/mt76/mt76x2_dma.c | 21 -
.../net/wireless/mediatek/mt76/mt76x2_dma.h | 38 -
.../wireless/mediatek/mt76/mt76x2_eeprom.c | 13 +-
.../wireless/mediatek/mt76/mt76x2_eeprom.h | 1 +
.../net/wireless/mediatek/mt76/mt76x2_init.c | 311 +------
.../mediatek/mt76/mt76x2_init_common.c | 259 ++++++
.../net/wireless/mediatek/mt76/mt76x2_mac.c | 626 +------------
.../net/wireless/mediatek/mt76/mt76x2_mac.h | 2 +-
.../mediatek/mt76/mt76x2_mac_common.c | 699 +++++++++++++++
.../net/wireless/mediatek/mt76/mt76x2_main.c | 307 -------
.../net/wireless/mediatek/mt76/mt76x2_mcu.c | 17 -
.../net/wireless/mediatek/mt76/mt76x2_mcu.h | 17 +
.../net/wireless/mediatek/mt76/mt76x2_phy.c | 347 -------
.../mediatek/mt76/mt76x2_phy_common.c | 349 ++++++++
.../net/wireless/mediatek/mt76/mt76x2_regs.h | 30 +
.../net/wireless/mediatek/mt76/mt76x2_tx.c | 128 +--
.../wireless/mediatek/mt76/mt76x2_tx_common.c | 149 +++
.../net/wireless/mediatek/mt76/mt76x2_usb.c | 142 +++
drivers/net/wireless/mediatek/mt76/mt76x2u.h | 83 ++
.../net/wireless/mediatek/mt76/mt76x2u_core.c | 108 +++
.../net/wireless/mediatek/mt76/mt76x2u_init.c | 318 +++++++
.../net/wireless/mediatek/mt76/mt76x2u_mac.c | 240 +++++
.../net/wireless/mediatek/mt76/mt76x2u_main.c | 185 ++++
.../net/wireless/mediatek/mt76/mt76x2u_mcu.c | 463 ++++++++++
.../net/wireless/mediatek/mt76/mt76x2u_phy.c | 303 +++++++
drivers/net/wireless/mediatek/mt76/tx.c | 85 +-
drivers/net/wireless/mediatek/mt76/usb.c | 845 ++++++++++++++++++
drivers/net/wireless/mediatek/mt76/usb_mcu.c | 242 +++++
.../net/wireless/mediatek/mt76/usb_trace.c | 23 +
.../net/wireless/mediatek/mt76/usb_trace.h | 71 ++
40 files changed, 5321 insertions(+), 1882 deletions(-)
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2_common.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2_init_common.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2_mac_common.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2_phy_common.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2_tx_common.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2_usb.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u.h
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u_core.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u_init.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u_mac.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u_main.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u_mcu.c
create mode 100644 drivers/net/wireless/mediatek/mt76/mt76x2u_phy.c
create mode 100644 drivers/net/wireless/mediatek/mt76/usb.c
create mode 100644 drivers/net/wireless/mediatek/mt76/usb_mcu.c
create mode 100644 drivers/net/wireless/mediatek/mt76/usb_trace.c
create mode 100644 drivers/net/wireless/mediatek/mt76/usb_trace.h
--
2.17.1
next reply other threads:[~2018-07-31 9:48 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-31 8:09 Lorenzo Bianconi [this message]
2018-07-31 8:09 ` [PATCH v2 01/19] mt76: move MT_TXD_INFO, MT_MCU_MSG and MT_RX_FCE_INFO defs in dma.h Lorenzo Bianconi
2018-08-02 18:49 ` Kalle Valo
2018-07-31 8:09 ` [PATCH v2 02/19] mt76x2: move mt76x2_fw_header and mt76x2_patch_header definitions in mcu.h Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 03/19] mt76x2: move utility routines in mt76x2.h Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 04/19] mt76x2: introduce mt76x2_init_device routine Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 05/19] mt76x2: move interface_modes definition in mt76x2_init Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 06/19] mt76x2: introduce mt76x2_mac_load_tx_status routine Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 07/19] mt76x2: add napi struct to mt76_rx_poll_complete/mt76_rx_complete signatures Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 08/19] mt76x2: add buffer len to mt76x2_mac_write_txwi signature Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 09/19] mt76: rename mt76_tx_queue_skb in mt76_dma_tx_queue_skb Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 10/19] mt76: introduce tx_queue_skb function pointer in mt76_bus_ops Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 11/19] mt76: introduce mt76x2-common module Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 12/19] mt76: add mt76x2_tx_common to " Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 13/19] mt76: add mt76x2_mac_common " Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 14/19] mt76: add mt76x2_init_common " Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 15/19] mt76: add mt76x2_common " Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 16/19] mt76: add mt76x2_phy_common " Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 17/19] mt76: move mt76x2_debugfs in mt76-common module Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 18/19] mt76: add usb support to mt76 layer Lorenzo Bianconi
2018-07-31 8:09 ` [PATCH v2 19/19] mt76: add driver code for MT76x2u based devices Lorenzo Bianconi
2018-07-31 9:54 ` [PATCH v2 00/19] add mt76x2u support to mt76 driver Kalle Valo
2018-07-31 10:27 ` Stanislaw Gruszka
2018-07-31 10:33 ` Kalle Valo
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.1533023328.git.lorenzo.bianconi@redhat.com \
--to=lorenzo.bianconi@redhat.com \
--cc=linux-wireless@vger.kernel.org \
--cc=nbd@nbd.name \
--cc=sgruszka@redhat.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).