All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/21] wifi: mt76: mt7996: second preliminary work to support MLO
@ 2025-03-12 11:13 Lorenzo Bianconi
  2025-03-12 11:13 ` [PATCH 01/21] wifi: mt76: mt7996: Update mt7996_mcu_add_rate_ctrl to MLO Lorenzo Bianconi
                   ` (20 more replies)
  0 siblings, 21 replies; 27+ messages in thread
From: Lorenzo Bianconi @ 2025-03-12 11:13 UTC (permalink / raw)
  To: Felix Fietkau, Ryder Lee, Shayne Chen, Sean Wang, Johannes Berg,
	Matthias Brugger, AngeloGioacchino Del Regno
  Cc: linux-wireless, linux-arm-kernel, linux-mediatek, Bo Jiao,
	Peter Chiu, Lorenzo Bianconi

This series is the second preliminary work needed to support MLO in
MT7996 driver.

---
Lorenzo Bianconi (9):
      wifi: mt76: mt7996: Add mt7996_sta_link to mt7996_mcu_add_bss_info signature
      wifi: mt76: mt7996: rework mt7996_sta_hw_queue_read to support MLO
      wifi: mt76: mt7996: rework mt7996_mac_sta_rc_work to support MLO
      wifi: mt76: mt7996: rework mt7996_mac_sta_poll to support MLO
      wifi: mt76: mt7996: rework mt7996_update_mu_group to support MLO
      wifi: mt76: mt7996: rework mt7996_net_fill_forward_path to support MLO
      wifi: mt76: mt7996: set vif default link_id adding/removing vif links
      wifi: mt76: mt7996: rework mt7996_ampdu_action to support MLO
      wifi: mt76: mt7996: Update mt7996_tx to MLO support

Shayne Chen (12):
      wifi: mt76: mt7996: Update mt7996_mcu_add_rate_ctrl to MLO
      wifi: mt76: mt7996: Add mt7996_mcu_sta_mld_setup_tlv() and mt7996_mcu_sta_eht_mld_tlv()
      wifi: mt76: mt7996: Add mt7996_mcu_teardown_mld_sta rouine
      wifi: mt76: mt7996: rework mt7996_mac_write_txwi() for MLO support
      wifi: mt76: mt7996: Rely on wcid_to_sta in mt7996_mac_add_txs_skb()
      wifi: mt76: mt7996: rework mt7996_rx_get_wcid to support MLO
      wifi: mt76: mt7996: rework mt7996_sta_set_4addr and mt7996_sta_set_decap_offload to support MLO
      wifi: mt76: mt7996: rework mt7996_set_hw_key to support MLO
      wifi: mt76: mt7996: remove mt7996_mac_enable_rtscts()
      wifi: mt76: mt7996: rework mt7996_mcu_add_obss_spr to support MLO
      wifi: mt76: mt7996: rework mt7996_mcu_beacon_inband_discov to support MLO
      wifi: mt76: mt7996: rework set/get_tsf callabcks to support MLO

 .../net/wireless/mediatek/mt76/mt7996/debugfs.c    |  54 ++-
 drivers/net/wireless/mediatek/mt76/mt7996/mac.c    | 163 +++++--
 drivers/net/wireless/mediatek/mt76/mt7996/main.c   | 493 ++++++++++++++-------
 drivers/net/wireless/mediatek/mt76/mt7996/mcu.c    | 321 +++++++++-----
 drivers/net/wireless/mediatek/mt76/mt7996/mcu.h    |  32 ++
 drivers/net/wireless/mediatek/mt76/mt7996/mt7996.h |  43 +-
 6 files changed, 754 insertions(+), 352 deletions(-)
---
base-commit: 61cf5540d86945a531dd939e90e72a4b134d7cb8
change-id: 20250312-b4-mt7996-mlo-p2-dd8efe4b6964

Best regards,
-- 
Lorenzo Bianconi <lorenzo@kernel.org>



^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2025-03-18 13:59 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-12 11:13 [PATCH 00/21] wifi: mt76: mt7996: second preliminary work to support MLO Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 01/21] wifi: mt76: mt7996: Update mt7996_mcu_add_rate_ctrl to MLO Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 02/21] wifi: mt76: mt7996: Add mt7996_mcu_sta_mld_setup_tlv() and mt7996_mcu_sta_eht_mld_tlv() Lorenzo Bianconi
2025-03-18  8:51   ` Shayne Chen (陳軒丞)
2025-03-18 13:53     ` lorenzo
2025-03-12 11:13 ` [PATCH 03/21] wifi: mt76: mt7996: Add mt7996_mcu_teardown_mld_sta rouine Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 04/21] wifi: mt76: mt7996: rework mt7996_mac_write_txwi() for MLO support Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 05/21] wifi: mt76: mt7996: Rely on wcid_to_sta in mt7996_mac_add_txs_skb() Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 06/21] wifi: mt76: mt7996: rework mt7996_rx_get_wcid to support MLO Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 07/21] wifi: mt76: mt7996: rework mt7996_sta_set_4addr and mt7996_sta_set_decap_offload " Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 08/21] wifi: mt76: mt7996: Add mt7996_sta_link to mt7996_mcu_add_bss_info signature Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 09/21] wifi: mt76: mt7996: rework mt7996_set_hw_key to support MLO Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 10/21] wifi: mt76: mt7996: rework mt7996_sta_hw_queue_read " Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 11/21] wifi: mt76: mt7996: remove mt7996_mac_enable_rtscts() Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 12/21] wifi: mt76: mt7996: rework mt7996_mac_sta_rc_work to support MLO Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 13/21] wifi: mt76: mt7996: rework mt7996_mac_sta_poll " Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 14/21] wifi: mt76: mt7996: rework mt7996_update_mu_group " Lorenzo Bianconi
2025-03-12 11:13 ` [PATCH 15/21] wifi: mt76: mt7996: rework mt7996_net_fill_forward_path " Lorenzo Bianconi
2025-03-12 11:14 ` [PATCH 16/21] wifi: mt76: mt7996: rework mt7996_mcu_add_obss_spr " Lorenzo Bianconi
2025-03-12 11:14 ` [PATCH 17/21] wifi: mt76: mt7996: rework mt7996_mcu_beacon_inband_discov " Lorenzo Bianconi
2025-03-12 11:14 ` [PATCH 18/21] wifi: mt76: mt7996: set vif default link_id adding/removing vif links Lorenzo Bianconi
2025-03-12 11:14 ` [PATCH 19/21] wifi: mt76: mt7996: rework set/get_tsf callabcks to support MLO Lorenzo Bianconi
2025-03-12 11:14 ` [PATCH 20/21] wifi: mt76: mt7996: rework mt7996_ampdu_action " Lorenzo Bianconi
2025-03-18  6:28   ` Shayne Chen
2025-03-18  8:30     ` Shayne Chen
2025-03-18 13:53       ` Lorenzo Bianconi
2025-03-12 11:14 ` [PATCH 21/21] wifi: mt76: mt7996: Update mt7996_tx to MLO support Lorenzo Bianconi

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.