blob: d612bdf70c5bc076ec42b61ae245f0cb9c284bc6 [file] [log] [blame]
developerde9ecce2023-05-22 11:17:16 +08001From 952869c0b481651e9c125d5cd7c4ea2b255521c5 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
developerde9ecce2023-05-22 11:17:16 +08004Subject: [PATCH 11/22] 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
developerde9ecce2023-05-22 11:17:16 +080014index 420c7403..ca163969 100644
developer483388c2023-03-08 13:52:15 +080015--- a/mt7996/mac.c
16+++ b/mt7996/mac.c
developerde9ecce2023-05-22 11:17:16 +080017@@ -1169,10 +1169,12 @@ int mt7996_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
developer483388c2023-03-08 13:52:15 +080018 }
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--
developerde9ecce2023-05-22 11:17:16 +0800342.39.2
developer483388c2023-03-08 13:52:15 +080035