blob: cffb3bc1d634d3371101af24f501d4b6d9925861 [file] [log] [blame]
developerebda9012024-02-22 13:42:45 +08001From 4beaa0cd97bf405c0101f1410656f2641a802cad Mon Sep 17 00:00:00 2001
developer780b9152022-12-15 14:09:45 +08002From: TomLiu <tomml.liu@mediatek.com>
3Date: Wed, 14 Dec 2022 00:44:07 -0800
developerebda9012024-02-22 13:42:45 +08004Subject: [PATCH 1026/1048] wifi: mt76: mt7915: amsdu set and get control
developer780b9152022-12-15 14:09:45 +08005
6---
developer004e50c2023-06-29 20:33:22 +08007 mt7915/mac.c | 7 +++++++
developer780b9152022-12-15 14:09:45 +08008 mt7915/mt7915.h | 1 +
developer004e50c2023-06-29 20:33:22 +08009 mt7915/vendor.c | 30 ++++++++++++++++++++++++++++++
developer780b9152022-12-15 14:09:45 +080010 mt7915/vendor.h | 12 ++++++++++++
developer004e50c2023-06-29 20:33:22 +080011 4 files changed, 50 insertions(+)
developer780b9152022-12-15 14:09:45 +080012
13diff --git a/mt7915/mac.c b/mt7915/mac.c
developerebda9012024-02-22 13:42:45 +080014index 37183ca..f214bca 100644
developer780b9152022-12-15 14:09:45 +080015--- a/mt7915/mac.c
16+++ b/mt7915/mac.c
developerebda9012024-02-22 13:42:45 +080017@@ -2029,6 +2029,13 @@ static void mt7915_mac_sta_stats_work(struct mt7915_phy *phy)
developera43cc482023-04-17 15:57:28 +080018 spin_unlock_bh(&phy->stats_lock);
developer780b9152022-12-15 14:09:45 +080019 }
20
21+void mt7915_set_wireless_amsdu(struct ieee80211_hw *hw, u8 en) {
developer780b9152022-12-15 14:09:45 +080022+ if (en)
23+ ieee80211_hw_set(hw, SUPPORTS_AMSDU_IN_AMPDU);
24+ else
25+ ieee80211_hw_clear(hw, SUPPORTS_AMSDU_IN_AMPDU);
26+}
27+
28 #ifdef CONFIG_MTK_VENDOR
29 void mt7915_capi_sta_rc_work(void *data, struct ieee80211_sta *sta)
30 {
31diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h
developerebda9012024-02-22 13:42:45 +080032index bb4ef00..36b583e 100644
developer780b9152022-12-15 14:09:45 +080033--- a/mt7915/mt7915.h
34+++ b/mt7915/mt7915.h
developerebda9012024-02-22 13:42:45 +080035@@ -744,6 +744,7 @@ int mt7915_mmio_wed_init(struct mt7915_dev *dev, void *pdev_ptr,
developer780b9152022-12-15 14:09:45 +080036 bool pci, int *irq);
37
38 #ifdef CONFIG_MTK_VENDOR
39+void mt7915_set_wireless_amsdu(struct ieee80211_hw *hw, u8 en);
40 void mt7915_capi_sta_rc_work(void *data, struct ieee80211_sta *sta);
41 void mt7915_set_wireless_vif(void *data, u8 *mac, struct ieee80211_vif *vif);
42 void mt7915_mcu_set_rfeature_starec(void *data, struct mt7915_dev *dev,
43diff --git a/mt7915/vendor.c b/mt7915/vendor.c
developerebda9012024-02-22 13:42:45 +080044index a21cbce..e25a0ce 100644
developer780b9152022-12-15 14:09:45 +080045--- a/mt7915/vendor.c
46+++ b/mt7915/vendor.c
developerebda9012024-02-22 13:42:45 +080047@@ -31,10 +31,16 @@ wireless_ctrl_policy[NUM_MTK_VENDOR_ATTRS_WIRELESS_CTRL] = {
developer780b9152022-12-15 14:09:45 +080048 [MTK_VENDOR_ATTR_WIRELESS_CTRL_NUSERS_OFDMA] = {.type = NLA_U8 },
49 [MTK_VENDOR_ATTR_WIRELESS_CTRL_MIMO] = {.type = NLA_U8 },
50 [MTK_VENDOR_ATTR_WIRELESS_CTRL_BA_BUFFER_SIZE] = {.type = NLA_U16 },
51+ [MTK_VENDOR_ATTR_WIRELESS_CTRL_AMSDU] = {.type = NLA_U8 },
52 [MTK_VENDOR_ATTR_WIRELESS_CTRL_MU_EDCA] = {.type = NLA_U8 },
53 [MTK_VENDOR_ATTR_WIRELESS_CTRL_CERT] = {.type = NLA_U8 },
54 };
55
56+static const struct nla_policy
57+wireless_dump_policy[NUM_MTK_VENDOR_ATTRS_WIRELESS_DUMP] = {
58+ [MTK_VENDOR_ATTR_WIRELESS_DUMP_AMSDU] = { .type = NLA_U8 },
59+};
60+
61 static const struct nla_policy
developere0a1e0e2023-02-24 11:26:12 +080062 mu_ctrl_policy[NUM_MTK_VENDOR_ATTRS_MU_CTRL] = {
63 [MTK_VENDOR_ATTR_MU_CTRL_ONOFF] = {.type = NLA_U8 },
developerebda9012024-02-22 13:42:45 +080064@@ -1004,11 +1010,34 @@ static int mt7915_vendor_wireless_ctrl(struct wiphy *wiphy,
developer780b9152022-12-15 14:09:45 +080065 val8 = nla_get_u8(tb[MTK_VENDOR_ATTR_WIRELESS_CTRL_CERT]);
66 mt7915_mcu_set_cfg(phy, CFGINFO_CERT_CFG, val8); /* Cert Enable for OMI */
67 mt7915_mcu_set_bypass_smthint(phy, val8); /* Cert bypass smooth interpolation */
68+ } else if (tb[MTK_VENDOR_ATTR_WIRELESS_CTRL_AMSDU]) {
69+ val8 = nla_get_u8(tb[MTK_VENDOR_ATTR_WIRELESS_CTRL_AMSDU]);
70+ mt7915_set_wireless_amsdu(hw, val8);
71 }
72
73 return 0;
74 }
75
76+static int
77+mt7915_vendor_wireless_ctrl_dump(struct wiphy *wiphy, struct wireless_dev *wdev,
78+ struct sk_buff *skb, const void *data, int data_len,
79+ unsigned long *storage)
80+{
81+ struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
developer780b9152022-12-15 14:09:45 +080082+ int len = 0;
developer004e50c2023-06-29 20:33:22 +080083+
developer780b9152022-12-15 14:09:45 +080084+ if (*storage == 1)
85+ return -ENOENT;
86+ *storage = 1;
87+
88+ if (nla_put_u8(skb,
89+ MTK_VENDOR_ATTR_WIRELESS_DUMP_AMSDU, ieee80211_hw_check(hw, SUPPORTS_AMSDU_IN_AMPDU)))
90+ return -ENOMEM;
91+ len += 2;
92+
93+ return len;
94+}
95+
developere0a1e0e2023-02-24 11:26:12 +080096 static int mt7915_vendor_mu_ctrl(struct wiphy *wiphy,
developer780b9152022-12-15 14:09:45 +080097 struct wireless_dev *wdev,
98 const void *data,
developerebda9012024-02-22 13:42:45 +080099@@ -1307,6 +1336,7 @@ static const struct wiphy_vendor_command mt7915_vendor_commands[] = {
developer780b9152022-12-15 14:09:45 +0800100 .flags = WIPHY_VENDOR_CMD_NEED_NETDEV |
101 WIPHY_VENDOR_CMD_NEED_RUNNING,
102 .doit = mt7915_vendor_wireless_ctrl,
103+ .dumpit = mt7915_vendor_wireless_ctrl_dump,
104 .policy = wireless_ctrl_policy,
105 .maxattr = MTK_VENDOR_ATTR_WIRELESS_CTRL_MAX,
106 },
107diff --git a/mt7915/vendor.h b/mt7915/vendor.h
developerebda9012024-02-22 13:42:45 +0800108index 876edf3..7c4e914 100644
developer780b9152022-12-15 14:09:45 +0800109--- a/mt7915/vendor.h
110+++ b/mt7915/vendor.h
developerebda9012024-02-22 13:42:45 +0800111@@ -75,6 +75,7 @@ enum mtk_vendor_attr_wireless_ctrl {
developer780b9152022-12-15 14:09:45 +0800112 MTK_VENDOR_ATTR_WIRELESS_CTRL_NUSERS_OFDMA,
113 MTK_VENDOR_ATTR_WIRELESS_CTRL_BA_BUFFER_SIZE,
114 MTK_VENDOR_ATTR_WIRELESS_CTRL_MIMO,
115+ MTK_VENDOR_ATTR_WIRELESS_CTRL_AMSDU,
116 MTK_VENDOR_ATTR_WIRELESS_CTRL_CERT = 9,
117
118 MTK_VENDOR_ATTR_WIRELESS_CTRL_MU_EDCA, /* reserve */
developerebda9012024-02-22 13:42:45 +0800119@@ -84,6 +85,17 @@ enum mtk_vendor_attr_wireless_ctrl {
developer780b9152022-12-15 14:09:45 +0800120 NUM_MTK_VENDOR_ATTRS_WIRELESS_CTRL - 1
121 };
122
123+enum mtk_vendor_attr_wireless_dump {
124+ MTK_VENDOR_ATTR_WIRELESS_DUMP_UNSPEC,
125+
126+ MTK_VENDOR_ATTR_WIRELESS_DUMP_AMSDU,
127+
128+ /* keep last */
129+ NUM_MTK_VENDOR_ATTRS_WIRELESS_DUMP,
130+ MTK_VENDOR_ATTR_WIRELESS_DUMP_MAX =
131+ NUM_MTK_VENDOR_ATTRS_WIRELESS_DUMP - 1
132+};
133+
developere0a1e0e2023-02-24 11:26:12 +0800134 enum mtk_vendor_attr_mu_ctrl {
135 MTK_VENDOR_ATTR_MU_CTRL_UNSPEC,
developer780b9152022-12-15 14:09:45 +0800136
137--
developere35b8e42023-10-16 11:04:00 +08001382.18.0
developer780b9152022-12-15 14:09:45 +0800139