developer | a20cdc2 | 2024-05-31 18:57:31 +0800 | [diff] [blame] | 1 | From bbcd1a6d3d84c1cb1a82fe996bf825c11878289c Mon Sep 17 00:00:00 2001 |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 2 | From: Peter Chiu <chui-hao.chiu@mediatek.com> |
| 3 | Date: Mon, 2 Oct 2023 14:00:13 +0800 |
developer | a20cdc2 | 2024-05-31 18:57:31 +0800 | [diff] [blame] | 4 | Subject: [PATCH 1038/1051] wifi: mt76: mt7915: add debuffs knob for protect |
developer | 1a17367 | 2023-12-21 14:49:33 +0800 | [diff] [blame] | 5 | threshold |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 6 | |
| 7 | --- |
| 8 | mt7915/mt7915.h | 1 + |
| 9 | mt7915/mtk_debugfs.c | 11 +++++++++++ |
| 10 | 2 files changed, 12 insertions(+) |
| 11 | |
| 12 | diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h |
developer | a20cdc2 | 2024-05-31 18:57:31 +0800 | [diff] [blame] | 13 | index 3ec65a7..3dc99f8 100644 |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 14 | --- a/mt7915/mt7915.h |
| 15 | +++ b/mt7915/mt7915.h |
developer | a20cdc2 | 2024-05-31 18:57:31 +0800 | [diff] [blame] | 16 | @@ -778,6 +778,7 @@ void mt7915_mcu_set_rfeature_starec(void *data, struct mt7915_dev *dev, |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 17 | 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); |
| 24 | diff --git a/mt7915/mtk_debugfs.c b/mt7915/mtk_debugfs.c |
developer | a20cdc2 | 2024-05-31 18:57:31 +0800 | [diff] [blame] | 25 | index b653c34..dad5ed7 100644 |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 26 | --- a/mt7915/mtk_debugfs.c |
| 27 | +++ b/mt7915/mtk_debugfs.c |
developer | a46f613 | 2024-03-26 14:09:54 +0800 | [diff] [blame] | 28 | @@ -2852,6 +2852,16 @@ static int mt7915_sta_tx_amsdu_set(void *data, u64 tx_amsdu) |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 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; |
developer | a46f613 | 2024-03-26 14:09:54 +0800 | [diff] [blame] | 45 | @@ -3879,6 +3889,7 @@ int mt7915_mtk_init_debugfs(struct mt7915_phy *phy, struct dentry *dir) |
developer | bd9fa1e | 2023-10-16 11:04:00 +0800 | [diff] [blame] | 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 | -- |
| 54 | 2.18.0 |
| 55 | |