blob: 3e3d8be2b7dda71d034aa3fb78a3a36459c29741 [file] [log] [blame]
developer8cb3ac72022-07-04 10:55:14 +08001From bad890a89e289efc57091c0c08bbfad701147e4e Mon Sep 17 00:00:00 2001
2From: Sujuan Chen <sujuan.chen@mediatek.com>
3Date: Thu, 19 May 2022 13:44:42 +0800
4Subject: [PATCH 3/3] add fill receive path to report wed idx
5
6Signed-off-by: Sujuan Chen <sujuan.chen@mediatek.com>
7---
8 mt7915/main.c | 19 +++++++++++++++++++
9 1 file changed, 19 insertions(+)
10
11diff --git a/mt7915/main.c b/mt7915/main.c
12index f1396eed..a0798d46 100644
13--- a/mt7915/main.c
14+++ b/mt7915/main.c
15@@ -1458,6 +1458,24 @@ mt7915_net_fill_forward_path(struct ieee80211_hw *hw,
16
17 return 0;
18 }
19+
20+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+
37 #endif
38
39 const struct ieee80211_ops mt7915_ops = {
40@@ -1509,5 +1527,6 @@ const struct ieee80211_ops mt7915_ops = {
41 .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,
45 #endif
46 };
47--
482.18.0
49