wlan-ap-Telecominfraproject/feeds/mediatek-sdk/mt76/patches/2002-wifi-mt76-mt7915-wed-add-fill-receive-path-to-report.patch
John Crispin e56a53e541 mediatek: update to mp2.3 SDK
Signed-off-by: John Crispin <john@phrozen.org>
2024-04-29 11:19:26 +02:00

51 lines
1.3 KiB
Diff

From 6fa429e617e59379bd82c8dbef851e99954676ed Mon Sep 17 00:00:00 2001
From: Evelyn Tsai <evelyn.tsai@mediatek.com>
Date: Fri, 19 May 2023 07:05:22 +0800
Subject: [PATCH 2002/2014] wifi: mt76: mt7915: wed: add fill receive path to
report wed idx
Signed-off-by: Sujuan Chen <sujuan.chen@mediatek.com>
---
mt7915/main.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/mt7915/main.c b/mt7915/main.c
index ab60159..b3e06aa 100644
--- a/mt7915/main.c
+++ b/mt7915/main.c
@@ -1785,6 +1785,23 @@ mt7915_net_fill_forward_path(struct ieee80211_hw *hw,
return 0;
}
+
+static int
+mt7915_net_fill_receive_path(struct ieee80211_hw *hw,
+ struct net_device_path_ctx *ctx,
+ struct net_device_path *path)
+{
+ struct mt7915_dev *dev = mt7915_hw_dev(hw);
+ struct mtk_wed_device *wed = &dev->mt76.mmio.wed;
+
+ if (!mtk_wed_device_active(wed))
+ return -ENODEV;
+
+ path->dev = ctx->dev;
+ path->mtk_wdma.wdma_idx = wed->wdma_idx;
+
+ return 0;
+}
#endif
const struct ieee80211_ops mt7915_ops = {
@@ -1841,6 +1858,7 @@ const struct ieee80211_ops mt7915_ops = {
.set_radar_background = mt7915_set_radar_background,
#ifdef CONFIG_NET_MEDIATEK_SOC_WED
.net_fill_forward_path = mt7915_net_fill_forward_path,
+ .net_fill_receive_path = mt7915_net_fill_receive_path,
.net_setup_tc = mt76_wed_net_setup_tc,
#endif
};
--
2.18.0