blob: 9f4450652bd2d58122e879fe812fee107ea99f2a [file] [log] [blame]
developerebda9012024-02-22 13:42:45 +08001From 186c70f993d72481e3b1e20379f389291f455d56 Mon Sep 17 00:00:00 2001
developere35b8e42023-10-16 11:04:00 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Mon, 2 Oct 2023 14:00:13 +0800
developerebda9012024-02-22 13:42:45 +08004Subject: [PATCH 1042/1048] wifi: mt76: mt7915: add debuffs knob for protect
developerd243af02023-12-21 14:49:33 +08005 threshold
developere35b8e42023-10-16 11:04:00 +08006
7---
8 mt7915/mt7915.h | 1 +
9 mt7915/mtk_debugfs.c | 11 +++++++++++
10 2 files changed, 12 insertions(+)
11
12diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h
developerebda9012024-02-22 13:42:45 +080013index ffc2e0b..f3d9ee5 100644
developere35b8e42023-10-16 11:04:00 +080014--- a/mt7915/mt7915.h
15+++ b/mt7915/mt7915.h
developerebda9012024-02-22 13:42:45 +080016@@ -761,6 +761,7 @@ void mt7915_mcu_set_rfeature_starec(void *data, struct mt7915_dev *dev,
developere35b8e42023-10-16 11:04:00 +080017 struct ieee80211_vif *vif, struct ieee80211_sta *sta);
18 int mt7915_mcu_set_rfeature_trig_type(struct mt7915_phy *phy, u8 enable, u8 trig_type);
19 int mt7915_mcu_set_mu_dl_ack_policy(struct mt7915_phy *phy, u8 policy_num);
20+int mt7915_mcu_set_mu_prot_frame_th(struct mt7915_phy *phy, u32 val);
21 void mt7915_mcu_set_ppdu_tx_type(struct mt7915_phy *phy, u8 ppdu_type);
22 void mt7915_mcu_set_nusers_ofdma(struct mt7915_phy *phy, u8 type, u8 ofdma_user_cnt);
23 void mt7915_mcu_set_mimo(struct mt7915_phy *phy, u8 direction);
24diff --git a/mt7915/mtk_debugfs.c b/mt7915/mtk_debugfs.c
developerebda9012024-02-22 13:42:45 +080025index e706f64..3802de8 100644
developere35b8e42023-10-16 11:04:00 +080026--- a/mt7915/mtk_debugfs.c
27+++ b/mt7915/mtk_debugfs.c
developerebda9012024-02-22 13:42:45 +080028@@ -2836,6 +2836,16 @@ static int mt7915_sta_tx_amsdu_set(void *data, u64 tx_amsdu)
developere35b8e42023-10-16 11:04:00 +080029 DEFINE_DEBUGFS_ATTRIBUTE(fops_tx_amsdu, NULL,
30 mt7915_sta_tx_amsdu_set, "%llx\n");
31
32+static int mt7915_muru_set_prot_thr(void *data, u64 val)
33+{
34+ struct mt7915_phy *phy = data;
35+
36+ return mt7915_mcu_set_mu_prot_frame_th(phy, (u32)val);
37+}
38+
39+DEFINE_DEBUGFS_ATTRIBUTE(fops_muru_set_prot_thr, NULL,
40+ mt7915_muru_set_prot_thr, "%lld\n");
41+
42 static int mt7915_red_enable_set(void *data, u64 en)
43 {
44 struct mt7915_dev *dev = data;
developerebda9012024-02-22 13:42:45 +080045@@ -3856,6 +3866,7 @@ int mt7915_mtk_init_debugfs(struct mt7915_phy *phy, struct dentry *dir)
developere35b8e42023-10-16 11:04:00 +080046 debugfs_create_devm_seqfile(dev->mt76.dev, "fw_wm_info", dir,
47 mt7915_fw_wm_info_read);
48
49+ debugfs_create_file("prot_thr", 0200, dir, phy, &fops_muru_set_prot_thr);
50 debugfs_create_file("red_en", 0600, dir, dev,
51 &fops_red_en);
52 debugfs_create_file("red_show_sta", 0600, dir, dev,
53--
542.18.0
55