blob: b38bc297bf584f2c9c9789d037468e2a925fa11d [file] [log] [blame]
developera20cdc22024-05-31 18:57:31 +08001From bbcd1a6d3d84c1cb1a82fe996bf825c11878289c 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
developera20cdc22024-05-31 18:57:31 +08004Subject: [PATCH 1038/1051] 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
developera20cdc22024-05-31 18:57:31 +080013index 3ec65a7..3dc99f8 100644
developerbd9fa1e2023-10-16 11:04:00 +080014--- a/mt7915/mt7915.h
15+++ b/mt7915/mt7915.h
developera20cdc22024-05-31 18:57:31 +080016@@ -778,6 +778,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
developera20cdc22024-05-31 18:57:31 +080025index b653c34..dad5ed7 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