blob: fa53759525569b4f80b6ad390be3f0e16865f316 [file] [log] [blame]
developer8eb72a32023-03-30 08:32:07 +08001From a3732513f3acab7c60cdfe39909850b43c1a0839 Mon Sep 17 00:00:00 2001
developer483388c2023-03-08 13:52:15 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Mon, 6 Mar 2023 15:52:26 +0800
developer1bc2ce22023-03-25 00:47:41 +08004Subject: [PATCH 18/29] wifi: mt76: mt7996: set wcid in txp
developer483388c2023-03-08 13:52:15 +08005
6Set correct wcid in txp for SDO to get wtbl.
7
8Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com>
9---
10 mt7996/mac.c | 8 +++++---
11 1 file changed, 5 insertions(+), 3 deletions(-)
12
13diff --git a/mt7996/mac.c b/mt7996/mac.c
developer8eb72a32023-03-30 08:32:07 +080014index 4c0c8f1..bb23f53 100644
developer483388c2023-03-08 13:52:15 +080015--- a/mt7996/mac.c
16+++ b/mt7996/mac.c
17@@ -1168,10 +1168,12 @@ int mt7996_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
18 }
19
20 txp->fw.token = cpu_to_le16(id);
21- if (test_bit(MT_WCID_FLAG_4ADDR, &wcid->flags))
22- txp->fw.rept_wds_wcid = cpu_to_le16(wcid->idx);
23- else
24+ if ((is_8023 && is_multicast_ether_addr(tx_info->skb->data)) ||
25+ is_multicast_ether_addr(hdr->addr1))
26 txp->fw.rept_wds_wcid = cpu_to_le16(0xfff);
27+ else
28+ txp->fw.rept_wds_wcid = cpu_to_le16(wcid->idx);
29+
30 tx_info->skb = DMA_DUMMY_DATA;
31
32 /* pass partial skb header to fw */
33--
developer8eb72a32023-03-30 08:32:07 +0800342.18.0
developer483388c2023-03-08 13:52:15 +080035