blob: 402eab4d76efdff6c131bce81c35757b00e40224 [file] [log] [blame]
developer3f52c302024-04-08 14:36:46 +08001From 4d3d3743e0e97b65c132cda36b4af0532a102607 Mon Sep 17 00:00:00 2001
developer32b0e0f2023-04-11 13:34:56 +08002From: Howard Hsu <howard-yh.hsu@mediatek.com>
3Date: Fri, 24 Feb 2023 16:29:42 +0800
developer3f52c302024-04-08 14:36:46 +08004Subject: [PATCH 1026/1053] wifi: mt76: mt7915: disable SW-ACI by default
developer32b0e0f2023-04-11 13:34:56 +08005
6Support to enable/disable SW-ACI by module parameter "sw_aci_enable".
7SW-ACI feature is disable by default.
8---
9 mt7915/main.c | 8 ++++++++
10 mt7915/mcu.c | 15 +++++++++++++++
11 mt7915/mt7915.h | 1 +
12 mt7915/mtk_debugfs.c | 14 +++++---------
13 4 files changed, 29 insertions(+), 9 deletions(-)
14
15diff --git a/mt7915/main.c b/mt7915/main.c
developer3f52c302024-04-08 14:36:46 +080016index da7a87b..69c4a41 100644
developer32b0e0f2023-04-11 13:34:56 +080017--- a/mt7915/main.c
18+++ b/mt7915/main.c
19@@ -8,6 +8,10 @@
20 #include "mt7915.h"
21 #include "mcu.h"
22
23+static bool sw_aci_enable = false;
24+module_param(sw_aci_enable, bool, 0644);
25+MODULE_PARM_DESC(sw_aci_enable, "Enable the feature of Adjacent Channel Interference Detection");
26+
27 static bool mt7915_dev_running(struct mt7915_dev *dev)
28 {
29 struct mt7915_phy *phy;
30@@ -41,6 +45,10 @@ int mt7915_run(struct ieee80211_hw *hw)
31 goto out;
32
33 mt7915_mac_enable_nf(dev, dev->phy.mt76->band_idx);
34+
35+ ret = mt7915_mcu_sw_aci_set(dev, sw_aci_enable);
36+ if (ret)
37+ goto out;
38 }
39
40 if (phy != &dev->phy) {
41diff --git a/mt7915/mcu.c b/mt7915/mcu.c
developer3f52c302024-04-08 14:36:46 +080042index 8e9b801..45b0907 100644
developer32b0e0f2023-04-11 13:34:56 +080043--- a/mt7915/mcu.c
44+++ b/mt7915/mcu.c
developer43a264f2024-03-26 14:09:54 +080045@@ -5223,3 +5223,18 @@ int mt7915_mcu_get_edcca(struct mt7915_phy *phy, u8 mode, s8 *value)
developer32b0e0f2023-04-11 13:34:56 +080046
47 return 0;
48 }
49+
50+int mt7915_mcu_sw_aci_set(struct mt7915_dev *dev, bool val)
51+{
52+#define SWLNA_ENABLE 6
53+ struct {
54+ u32 subcmd;
55+ u8 enable;
56+ } req = {
57+ .subcmd = SWLNA_ENABLE,
58+ .enable = val ? 1 : 0,
59+ };
60+
61+ return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(SWLNA_ACI_CTRL), &req,
62+ sizeof(req), NULL);
63+}
64diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h
developer3f52c302024-04-08 14:36:46 +080065index fe7c211..44dd0f4 100644
developer32b0e0f2023-04-11 13:34:56 +080066--- a/mt7915/mt7915.h
67+++ b/mt7915/mt7915.h
developer43a264f2024-03-26 14:09:54 +080068@@ -782,6 +782,7 @@ int mt7915_vendor_amnt_sta_remove(struct mt7915_phy *phy,
developer32b0e0f2023-04-11 13:34:56 +080069 #endif
70 int mt7915_mcu_set_edcca(struct mt7915_phy *phy, int mode, u8 *value, s8 compensation);
71 int mt7915_mcu_get_edcca(struct mt7915_phy *phy, u8 mode, s8 *value);
72+int mt7915_mcu_sw_aci_set(struct mt7915_dev *dev, bool val);
73 int mt7915_mcu_ipi_hist_ctrl(struct mt7915_phy *phy, void *data, u8 cmd, bool wait_resp);
74 int mt7915_mcu_ipi_hist_scan(struct mt7915_phy *phy, void *data, u8 mode, bool wait_resp);
75
76diff --git a/mt7915/mtk_debugfs.c b/mt7915/mtk_debugfs.c
developer3f52c302024-04-08 14:36:46 +080077index a433e67..f00ac10 100644
developer32b0e0f2023-04-11 13:34:56 +080078--- a/mt7915/mtk_debugfs.c
79+++ b/mt7915/mtk_debugfs.c
developer43a264f2024-03-26 14:09:54 +080080@@ -3773,16 +3773,12 @@ static int mt7915_show_eeprom_mode(struct seq_file *s, void *data)
developer32b0e0f2023-04-11 13:34:56 +080081 static int
82 mt7915_sw_aci_set(void *data, u64 val)
83 {
84-#define SWLNA_ENABLE 6
85 struct mt7915_dev *dev = data;
86- struct {
87- u32 subcmd;
88- u8 enable;
89- } req = {
90- .subcmd = SWLNA_ENABLE,
91- .enable = (u8) val,
92- };
93- return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(SWLNA_ACI_CTRL), &req, sizeof(req), NULL);
94+
95+ if (val > 1)
96+ return -EINVAL;
97+
98+ return mt7915_mcu_sw_aci_set(dev, !!val);
99 }
100
101
102--
developere35b8e42023-10-16 11:04:00 +08001032.18.0
developer32b0e0f2023-04-11 13:34:56 +0800104