blob: a41a99f6b3fa1c02ccbc20e8c2149733ae15ccf9 [file] [log] [blame]
developer36fe7092023-09-27 12:24:47 +08001From dd879c2a2e307c09f356fbf47cd4ae7451fb3bf4 Mon Sep 17 00:00:00 2001
developerad9333b2023-05-22 15:16:16 +08002From: Evelyn Tsai <evelyn.tsai@mediatek.com>
3Date: Fri, 19 May 2023 07:05:22 +0800
developer36fe7092023-09-27 12:24:47 +08004Subject: [PATCH 2002/2010] wifi: mt76: mt7915: wed: add fill receive path to
developer78848c62023-04-06 13:44:00 +08005 report wed idx
developer3262bf82022-07-12 11:37:54 +08006
7Signed-off-by: Sujuan Chen <sujuan.chen@mediatek.com>
8---
developerad9333b2023-05-22 15:16:16 +08009 mt7915/main.c | 18 ++++++++++++++++++
10 1 file changed, 18 insertions(+)
developer3262bf82022-07-12 11:37:54 +080011
12diff --git a/mt7915/main.c b/mt7915/main.c
developer36fe7092023-09-27 12:24:47 +080013index 2f4677ec..00c66000 100644
developer3262bf82022-07-12 11:37:54 +080014--- a/mt7915/main.c
15+++ b/mt7915/main.c
developer36fe7092023-09-27 12:24:47 +080016@@ -1705,6 +1705,23 @@ mt7915_net_fill_forward_path(struct ieee80211_hw *hw,
developer3262bf82022-07-12 11:37:54 +080017 return 0;
18 }
developerad9333b2023-05-22 15:16:16 +080019
developer3262bf82022-07-12 11:37:54 +080020+static int
21+mt7915_net_fill_receive_path(struct ieee80211_hw *hw,
22+ struct net_device_path_ctx *ctx,
23+ struct net_device_path *path)
24+{
25+ struct mt7915_dev *dev = mt7915_hw_dev(hw);
26+ struct mtk_wed_device *wed = &dev->mt76.mmio.wed;
27+
28+ if (!mtk_wed_device_active(wed))
29+ return -ENODEV;
30+
31+ path->dev = ctx->dev;
32+ path->mtk_wdma.wdma_idx = wed->wdma_idx;
33+
34+ return 0;
35+}
36+
developerad9333b2023-05-22 15:16:16 +080037 static int
38 mt7915_net_setup_tc(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
39 struct net_device *netdev, enum tc_setup_type type,
developer36fe7092023-09-27 12:24:47 +080040@@ -1772,6 +1789,7 @@ const struct ieee80211_ops mt7915_ops = {
developer3262bf82022-07-12 11:37:54 +080041 .set_radar_background = mt7915_set_radar_background,
42 #ifdef CONFIG_NET_MEDIATEK_SOC_WED
43 .net_fill_forward_path = mt7915_net_fill_forward_path,
44+ .net_fill_receive_path = mt7915_net_fill_receive_path,
developerad9333b2023-05-22 15:16:16 +080045 .net_setup_tc = mt7915_net_setup_tc,
developer3262bf82022-07-12 11:37:54 +080046 #endif
47 };
48--
developer36fe7092023-09-27 12:24:47 +0800492.39.2
developer3262bf82022-07-12 11:37:54 +080050