blob: f90df8702f58b49799955b2b355f1983836d0e72 [file] [log] [blame]
developer1a173672023-12-21 14:49:33 +08001From 93bf76280034ba4ecb511bad9843daa29234818a Mon Sep 17 00:00:00 2001
developerbd9fa1e2023-10-16 11:04:00 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Mon, 2 Oct 2023 14:00:13 +0800
developer1a173672023-12-21 14:49:33 +08004Subject: [PATCH 54/76] wifi: mt76: mt7915: add debuffs knob for protect
5 threshold
developerbd9fa1e2023-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
developer1a173672023-12-21 14:49:33 +080013index 346333e..ad08582 100644
developerbd9fa1e2023-10-16 11:04:00 +080014--- a/mt7915/mt7915.h
15+++ b/mt7915/mt7915.h
developer1a173672023-12-21 14:49:33 +080016@@ -719,6 +719,7 @@ void mt7915_mcu_set_rfeature_starec(void *data, struct mt7915_dev *dev,
developerbd9fa1e2023-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
developer1a173672023-12-21 14:49:33 +080025index 4a0bb4c..49fd6c5 100644
developerbd9fa1e2023-10-16 11:04:00 +080026--- a/mt7915/mtk_debugfs.c
27+++ b/mt7915/mtk_debugfs.c
28@@ -2838,6 +2838,16 @@ static int mt7915_sta_tx_amsdu_set(void *data, u64 tx_amsdu)
29 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;
45@@ -3735,6 +3745,7 @@ int mt7915_mtk_init_debugfs(struct mt7915_phy *phy, struct dentry *dir)
46 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