blob: a367ad8cae3c8e3a010b882941f076d24a29cf9a [file] [log] [blame]
developer05f3b2b2024-08-19 19:17:34 +08001From 5fa70ee3f31733b9ddee67fdc78fe637df251aca 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
developer05f3b2b2024-08-19 19:17:34 +08004Subject: [PATCH 1038/1052] wifi: mt76: mt7915: add debuffs knob for protect
developer1a173672023-12-21 14:49:33 +08005 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
developer05f3b2b2024-08-19 19:17:34 +080013index bc0f313c..183d59da 100644
developerbd9fa1e2023-10-16 11:04:00 +080014--- a/mt7915/mt7915.h
15+++ b/mt7915/mt7915.h
developer05f3b2b2024-08-19 19:17:34 +080016@@ -792,6 +792,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
developer05f3b2b2024-08-19 19:17:34 +080025index c00184f8..c8efd266 100644
developerbd9fa1e2023-10-16 11:04:00 +080026--- a/mt7915/mtk_debugfs.c
27+++ b/mt7915/mtk_debugfs.c
developera46f6132024-03-26 14:09:54 +080028@@ -2852,6 +2852,16 @@ static int mt7915_sta_tx_amsdu_set(void *data, u64 tx_amsdu)
developerbd9fa1e2023-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;
developera46f6132024-03-26 14:09:54 +080045@@ -3879,6 +3889,7 @@ int mt7915_mtk_init_debugfs(struct mt7915_phy *phy, struct dentry *dir)
developerbd9fa1e2023-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