blob: a39c895ad1c685abf5601170b960c57f956ea007 [file] [log] [blame]
developerad9333b2023-05-22 15:16:16 +08001From 73eb4f4af78b3158592dfeb97e15196f471bf4c1 Mon Sep 17 00:00:00 2001
2From: Evelyn Tsai <evelyn.tsai@mediatek.com>
3Date: Fri, 19 May 2023 07:05:22 +0800
4Subject: [PATCH 3002/3012] 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
developerad9333b2023-05-22 15:16:16 +080013index 13e797f..275c6a0 100644
developer3262bf82022-07-12 11:37:54 +080014--- a/mt7915/main.c
15+++ b/mt7915/main.c
developerad9333b2023-05-22 15:16:16 +080016@@ -1579,6 +1579,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,
40@@ -1644,6 +1661,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--
developera43cc482023-04-17 15:57:28 +0800492.18.0
developer3262bf82022-07-12 11:37:54 +080050