blob: 92f99a3039207220519316658cc547022a41222d [file] [log] [blame]
Larry Finger0c817332010-12-08 11:12:31 -06001/******************************************************************************
2 *
Larry Fingera8d76062012-01-07 20:46:42 -06003 * Copyright(c) 2009-2012 Realtek Corporation.
Larry Finger0c817332010-12-08 11:12:31 -06004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
Larry Finger0c817332010-12-08 11:12:31 -060014 * The full GNU General Public License is included in this distribution in the
15 * file called LICENSE.
16 *
17 * Contact Information:
18 * wlanfae <wlanfae@realtek.com>
19 * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
20 * Hsinchu 300, Taiwan.
21 *
22 * Larry Finger <Larry.Finger@lwfinger.net>
23 *
24 *****************************************************************************/
25
Larry Finger0c817332010-12-08 11:12:31 -060026#include "wifi.h"
27#include "rc.h"
28#include "base.h"
29#include "efuse.h"
30#include "cam.h"
31#include "ps.h"
32#include "regd.h"
Larry Finger9afa2e42014-09-22 09:39:21 -050033#include "pci.h"
Larry Fingerd273bb22012-01-27 13:59:25 -060034#include <linux/ip.h>
35#include <linux/module.h>
Mark Cave-Ayland0c5d63f2013-11-02 14:28:35 -050036#include <linux/udp.h>
Larry Fingerd273bb22012-01-27 13:59:25 -060037
Larry Finger0c817332010-12-08 11:12:31 -060038/*
Tristan Pourcelote1fa7462012-02-09 14:48:09 +010039 *NOTICE!!!: This file will be very big, we should
40 *keep it clear under following roles:
Larry Finger0c817332010-12-08 11:12:31 -060041 *
Tristan Pourcelote1fa7462012-02-09 14:48:09 +010042 *This file include following parts, so, if you add new
Larry Finger0c817332010-12-08 11:12:31 -060043 *functions into this file, please check which part it
44 *should includes. or check if you should add new part
45 *for this file:
46 *
47 *1) mac80211 init functions
48 *2) tx information functions
49 *3) functions called by core.c
50 *4) wq & timer callback functions
51 *5) frame process functions
Chaoming_Liacd48572011-04-25 12:52:54 -050052 *6) IOT functions
53 *7) sysfs functions
Larry Finger26634c42013-03-24 22:06:33 -050054 *8) vif functions
55 *9) ...
Larry Finger0c817332010-12-08 11:12:31 -060056 */
57
58/*********************************************************
59 *
60 * mac80211 init functions
61 *
62 *********************************************************/
Chaoming_Liacd48572011-04-25 12:52:54 -050063static struct ieee80211_channel rtl_channeltable_2g[] = {
Larry Finger0c817332010-12-08 11:12:31 -060064 {.center_freq = 2412, .hw_value = 1,},
65 {.center_freq = 2417, .hw_value = 2,},
66 {.center_freq = 2422, .hw_value = 3,},
67 {.center_freq = 2427, .hw_value = 4,},
68 {.center_freq = 2432, .hw_value = 5,},
69 {.center_freq = 2437, .hw_value = 6,},
70 {.center_freq = 2442, .hw_value = 7,},
71 {.center_freq = 2447, .hw_value = 8,},
72 {.center_freq = 2452, .hw_value = 9,},
73 {.center_freq = 2457, .hw_value = 10,},
74 {.center_freq = 2462, .hw_value = 11,},
75 {.center_freq = 2467, .hw_value = 12,},
76 {.center_freq = 2472, .hw_value = 13,},
77 {.center_freq = 2484, .hw_value = 14,},
78};
79
Chaoming_Liacd48572011-04-25 12:52:54 -050080static struct ieee80211_channel rtl_channeltable_5g[] = {
81 {.center_freq = 5180, .hw_value = 36,},
82 {.center_freq = 5200, .hw_value = 40,},
83 {.center_freq = 5220, .hw_value = 44,},
84 {.center_freq = 5240, .hw_value = 48,},
85 {.center_freq = 5260, .hw_value = 52,},
86 {.center_freq = 5280, .hw_value = 56,},
87 {.center_freq = 5300, .hw_value = 60,},
88 {.center_freq = 5320, .hw_value = 64,},
89 {.center_freq = 5500, .hw_value = 100,},
90 {.center_freq = 5520, .hw_value = 104,},
91 {.center_freq = 5540, .hw_value = 108,},
92 {.center_freq = 5560, .hw_value = 112,},
93 {.center_freq = 5580, .hw_value = 116,},
94 {.center_freq = 5600, .hw_value = 120,},
95 {.center_freq = 5620, .hw_value = 124,},
96 {.center_freq = 5640, .hw_value = 128,},
97 {.center_freq = 5660, .hw_value = 132,},
98 {.center_freq = 5680, .hw_value = 136,},
99 {.center_freq = 5700, .hw_value = 140,},
100 {.center_freq = 5745, .hw_value = 149,},
101 {.center_freq = 5765, .hw_value = 153,},
102 {.center_freq = 5785, .hw_value = 157,},
103 {.center_freq = 5805, .hw_value = 161,},
104 {.center_freq = 5825, .hw_value = 165,},
105};
106
107static struct ieee80211_rate rtl_ratetable_2g[] = {
Larry Finger0c817332010-12-08 11:12:31 -0600108 {.bitrate = 10, .hw_value = 0x00,},
109 {.bitrate = 20, .hw_value = 0x01,},
110 {.bitrate = 55, .hw_value = 0x02,},
111 {.bitrate = 110, .hw_value = 0x03,},
112 {.bitrate = 60, .hw_value = 0x04,},
113 {.bitrate = 90, .hw_value = 0x05,},
114 {.bitrate = 120, .hw_value = 0x06,},
115 {.bitrate = 180, .hw_value = 0x07,},
116 {.bitrate = 240, .hw_value = 0x08,},
117 {.bitrate = 360, .hw_value = 0x09,},
118 {.bitrate = 480, .hw_value = 0x0a,},
119 {.bitrate = 540, .hw_value = 0x0b,},
120};
121
Chaoming_Liacd48572011-04-25 12:52:54 -0500122static struct ieee80211_rate rtl_ratetable_5g[] = {
123 {.bitrate = 60, .hw_value = 0x04,},
124 {.bitrate = 90, .hw_value = 0x05,},
125 {.bitrate = 120, .hw_value = 0x06,},
126 {.bitrate = 180, .hw_value = 0x07,},
127 {.bitrate = 240, .hw_value = 0x08,},
128 {.bitrate = 360, .hw_value = 0x09,},
129 {.bitrate = 480, .hw_value = 0x0a,},
130 {.bitrate = 540, .hw_value = 0x0b,},
131};
132
Larry Finger0c817332010-12-08 11:12:31 -0600133static const struct ieee80211_supported_band rtl_band_2ghz = {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200134 .band = NL80211_BAND_2GHZ,
Larry Finger0c817332010-12-08 11:12:31 -0600135
Chaoming_Liacd48572011-04-25 12:52:54 -0500136 .channels = rtl_channeltable_2g,
137 .n_channels = ARRAY_SIZE(rtl_channeltable_2g),
Larry Finger0c817332010-12-08 11:12:31 -0600138
Chaoming_Liacd48572011-04-25 12:52:54 -0500139 .bitrates = rtl_ratetable_2g,
140 .n_bitrates = ARRAY_SIZE(rtl_ratetable_2g),
Larry Finger0c817332010-12-08 11:12:31 -0600141
142 .ht_cap = {0},
143};
144
Chaoming_Liacd48572011-04-25 12:52:54 -0500145static struct ieee80211_supported_band rtl_band_5ghz = {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200146 .band = NL80211_BAND_5GHZ,
Chaoming_Liacd48572011-04-25 12:52:54 -0500147
148 .channels = rtl_channeltable_5g,
149 .n_channels = ARRAY_SIZE(rtl_channeltable_5g),
150
151 .bitrates = rtl_ratetable_5g,
152 .n_bitrates = ARRAY_SIZE(rtl_ratetable_5g),
153
154 .ht_cap = {0},
155};
156
157static const u8 tid_to_ac[] = {
158 2, /* IEEE80211_AC_BE */
159 3, /* IEEE80211_AC_BK */
160 3, /* IEEE80211_AC_BK */
161 2, /* IEEE80211_AC_BE */
162 1, /* IEEE80211_AC_VI */
163 1, /* IEEE80211_AC_VI */
164 0, /* IEEE80211_AC_VO */
165 0, /* IEEE80211_AC_VO */
166};
167
Larry Finger2a00def2012-07-11 14:32:33 -0500168u8 rtl_tid_to_ac(u8 tid)
Chaoming_Liacd48572011-04-25 12:52:54 -0500169{
170 return tid_to_ac[tid];
171}
Larry Finger6f334c22013-07-12 15:32:15 -0500172EXPORT_SYMBOL_GPL(rtl_tid_to_ac);
Chaoming_Liacd48572011-04-25 12:52:54 -0500173
Larry Finger0c817332010-12-08 11:12:31 -0600174static void _rtl_init_hw_ht_capab(struct ieee80211_hw *hw,
175 struct ieee80211_sta_ht_cap *ht_cap)
176{
177 struct rtl_priv *rtlpriv = rtl_priv(hw);
178 struct rtl_phy *rtlphy = &(rtlpriv->phy);
179
180 ht_cap->ht_supported = true;
181 ht_cap->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
182 IEEE80211_HT_CAP_SGI_40 |
183 IEEE80211_HT_CAP_SGI_20 |
184 IEEE80211_HT_CAP_DSSSCCK40 | IEEE80211_HT_CAP_MAX_AMSDU;
185
Chaoming_Liacd48572011-04-25 12:52:54 -0500186 if (rtlpriv->rtlhal.disable_amsdu_8k)
187 ht_cap->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU;
188
Larry Finger0c817332010-12-08 11:12:31 -0600189 /*
190 *Maximum length of AMPDU that the STA can receive.
191 *Length = 2 ^ (13 + max_ampdu_length_exp) - 1 (octets)
192 */
193 ht_cap->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
194
195 /*Minimum MPDU start spacing , */
196 ht_cap->ampdu_density = IEEE80211_HT_MPDU_DENSITY_16;
197
198 ht_cap->mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
199
Johannes Berg57fbcce2016-04-12 15:56:15 +0200200 /*hw->wiphy->bands[NL80211_BAND_2GHZ]
Larry Finger0c817332010-12-08 11:12:31 -0600201 *base on ant_num
202 *rx_mask: RX mask
Larry Finger26634c42013-03-24 22:06:33 -0500203 *if rx_ant = 1 rx_mask[0]= 0xff;==>MCS0-MCS7
204 *if rx_ant = 2 rx_mask[1]= 0xff;==>MCS8-MCS15
205 *if rx_ant >= 3 rx_mask[2]= 0xff;
206 *if BW_40 rx_mask[4]= 0x01;
Larry Finger0c817332010-12-08 11:12:31 -0600207 *highest supported RX rate
208 */
Larry Finger26634c42013-03-24 22:06:33 -0500209 if (rtlpriv->dm.supp_phymode_switch) {
Larry Fingerb03d9682016-12-15 12:22:58 -0600210 pr_info("Support phy mode switch\n");
Larry Finger0c817332010-12-08 11:12:31 -0600211
212 ht_cap->mcs.rx_mask[0] = 0xFF;
213 ht_cap->mcs.rx_mask[1] = 0xFF;
214 ht_cap->mcs.rx_mask[4] = 0x01;
215
Larry Finger17c9ac62011-02-19 16:29:57 -0600216 ht_cap->mcs.rx_highest = cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS15);
Larry Finger26634c42013-03-24 22:06:33 -0500217 } else {
218 if (get_rf_type(rtlphy) == RF_1T2R ||
219 get_rf_type(rtlphy) == RF_2T2R) {
220 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
221 "1T2R or 2T2R\n");
222 ht_cap->mcs.rx_mask[0] = 0xFF;
223 ht_cap->mcs.rx_mask[1] = 0xFF;
224 ht_cap->mcs.rx_mask[4] = 0x01;
Larry Finger0c817332010-12-08 11:12:31 -0600225
Larry Finger26634c42013-03-24 22:06:33 -0500226 ht_cap->mcs.rx_highest =
227 cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS15);
228 } else if (get_rf_type(rtlphy) == RF_1T1R) {
229 RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "1T1R\n");
Larry Finger0c817332010-12-08 11:12:31 -0600230
Larry Finger26634c42013-03-24 22:06:33 -0500231 ht_cap->mcs.rx_mask[0] = 0xFF;
232 ht_cap->mcs.rx_mask[1] = 0x00;
233 ht_cap->mcs.rx_mask[4] = 0x01;
Larry Finger0c817332010-12-08 11:12:31 -0600234
Larry Finger26634c42013-03-24 22:06:33 -0500235 ht_cap->mcs.rx_highest =
236 cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS7);
237 }
Larry Finger0c817332010-12-08 11:12:31 -0600238 }
239}
240
Larry Finger9afa2e42014-09-22 09:39:21 -0500241static void _rtl_init_hw_vht_capab(struct ieee80211_hw *hw,
242 struct ieee80211_sta_vht_cap *vht_cap)
243{
244 struct rtl_priv *rtlpriv = rtl_priv(hw);
245 struct rtl_hal *rtlhal = rtl_hal(rtlpriv);
246
Ping-Ke Shih1ca72c32018-01-29 11:26:33 +0800247 if (!(rtlpriv->cfg->spec_ver & RTL_SPEC_SUPPORT_VHT))
248 return;
249
Ping-Ke Shihba3cca42018-01-19 14:45:49 +0800250 if (rtlhal->hw_type == HARDWARE_TYPE_RTL8812AE ||
251 rtlhal->hw_type == HARDWARE_TYPE_RTL8822BE) {
Larry Finger9afa2e42014-09-22 09:39:21 -0500252 u16 mcs_map;
253
254 vht_cap->vht_supported = true;
255 vht_cap->cap =
Larry Finger9afa2e42014-09-22 09:39:21 -0500256 IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
257 IEEE80211_VHT_CAP_SHORT_GI_80 |
258 IEEE80211_VHT_CAP_TXSTBC |
259 IEEE80211_VHT_CAP_RXSTBC_1 |
260 IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE |
261 IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
262 IEEE80211_VHT_CAP_HTC_VHT |
263 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK |
264 IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN |
265 IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN |
266 0;
267
268 mcs_map = IEEE80211_VHT_MCS_SUPPORT_0_9 << 0 |
269 IEEE80211_VHT_MCS_SUPPORT_0_9 << 2 |
270 IEEE80211_VHT_MCS_NOT_SUPPORTED << 4 |
271 IEEE80211_VHT_MCS_NOT_SUPPORTED << 6 |
272 IEEE80211_VHT_MCS_NOT_SUPPORTED << 8 |
273 IEEE80211_VHT_MCS_NOT_SUPPORTED << 10 |
274 IEEE80211_VHT_MCS_NOT_SUPPORTED << 12 |
275 IEEE80211_VHT_MCS_NOT_SUPPORTED << 14;
276
277 vht_cap->vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
278 vht_cap->vht_mcs.rx_highest =
279 cpu_to_le16(MAX_BIT_RATE_SHORT_GI_2NSS_80MHZ_MCS9);
280 vht_cap->vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
281 vht_cap->vht_mcs.tx_highest =
282 cpu_to_le16(MAX_BIT_RATE_SHORT_GI_2NSS_80MHZ_MCS9);
283 } else if (rtlhal->hw_type == HARDWARE_TYPE_RTL8821AE) {
284 u16 mcs_map;
285
286 vht_cap->vht_supported = true;
287 vht_cap->cap =
Larry Finger9afa2e42014-09-22 09:39:21 -0500288 IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
289 IEEE80211_VHT_CAP_SHORT_GI_80 |
290 IEEE80211_VHT_CAP_TXSTBC |
291 IEEE80211_VHT_CAP_RXSTBC_1 |
292 IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE |
293 IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
294 IEEE80211_VHT_CAP_HTC_VHT |
295 IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK |
296 IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN |
297 IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN |
298 0;
299
300 mcs_map = IEEE80211_VHT_MCS_SUPPORT_0_9 << 0 |
301 IEEE80211_VHT_MCS_NOT_SUPPORTED << 2 |
302 IEEE80211_VHT_MCS_NOT_SUPPORTED << 4 |
303 IEEE80211_VHT_MCS_NOT_SUPPORTED << 6 |
304 IEEE80211_VHT_MCS_NOT_SUPPORTED << 8 |
305 IEEE80211_VHT_MCS_NOT_SUPPORTED << 10 |
306 IEEE80211_VHT_MCS_NOT_SUPPORTED << 12 |
307 IEEE80211_VHT_MCS_NOT_SUPPORTED << 14;
308
309 vht_cap->vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
310 vht_cap->vht_mcs.rx_highest =
311 cpu_to_le16(MAX_BIT_RATE_SHORT_GI_1NSS_80MHZ_MCS9);
312 vht_cap->vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
313 vht_cap->vht_mcs.tx_highest =
314 cpu_to_le16(MAX_BIT_RATE_SHORT_GI_1NSS_80MHZ_MCS9);
315 }
316}
317
Larry Finger0c817332010-12-08 11:12:31 -0600318static void _rtl_init_mac80211(struct ieee80211_hw *hw)
319{
Chaoming_Liacd48572011-04-25 12:52:54 -0500320 struct rtl_priv *rtlpriv = rtl_priv(hw);
321 struct rtl_hal *rtlhal = rtl_hal(rtlpriv);
Larry Finger0c817332010-12-08 11:12:31 -0600322 struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw));
323 struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
324 struct ieee80211_supported_band *sband;
325
Larry Finger9afa2e42014-09-22 09:39:21 -0500326 if (rtlhal->macphymode == SINGLEMAC_SINGLEPHY &&
327 rtlhal->bandset == BAND_ON_BOTH) {
Chaoming_Liacd48572011-04-25 12:52:54 -0500328 /* 1: 2.4 G bands */
329 /* <1> use mac->bands as mem for hw->wiphy->bands */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200330 sband = &(rtlmac->bands[NL80211_BAND_2GHZ]);
Larry Finger0c817332010-12-08 11:12:31 -0600331
Johannes Berg57fbcce2016-04-12 15:56:15 +0200332 /* <2> set hw->wiphy->bands[NL80211_BAND_2GHZ]
Chaoming_Liacd48572011-04-25 12:52:54 -0500333 * to default value(1T1R) */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200334 memcpy(&(rtlmac->bands[NL80211_BAND_2GHZ]), &rtl_band_2ghz,
Chaoming_Liacd48572011-04-25 12:52:54 -0500335 sizeof(struct ieee80211_supported_band));
Larry Finger0c817332010-12-08 11:12:31 -0600336
Chaoming_Liacd48572011-04-25 12:52:54 -0500337 /* <3> init ht cap base on ant_num */
338 _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
Larry Finger0c817332010-12-08 11:12:31 -0600339
Chaoming_Liacd48572011-04-25 12:52:54 -0500340 /* <4> set mac->sband to wiphy->sband */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200341 hw->wiphy->bands[NL80211_BAND_2GHZ] = sband;
Chaoming_Liacd48572011-04-25 12:52:54 -0500342
343 /* 2: 5 G bands */
344 /* <1> use mac->bands as mem for hw->wiphy->bands */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200345 sband = &(rtlmac->bands[NL80211_BAND_5GHZ]);
Chaoming_Liacd48572011-04-25 12:52:54 -0500346
Johannes Berg57fbcce2016-04-12 15:56:15 +0200347 /* <2> set hw->wiphy->bands[NL80211_BAND_5GHZ]
Chaoming_Liacd48572011-04-25 12:52:54 -0500348 * to default value(1T1R) */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200349 memcpy(&(rtlmac->bands[NL80211_BAND_5GHZ]), &rtl_band_5ghz,
Chaoming_Liacd48572011-04-25 12:52:54 -0500350 sizeof(struct ieee80211_supported_band));
351
352 /* <3> init ht cap base on ant_num */
353 _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
354
Larry Finger9afa2e42014-09-22 09:39:21 -0500355 _rtl_init_hw_vht_capab(hw, &sband->vht_cap);
Chaoming_Liacd48572011-04-25 12:52:54 -0500356 /* <4> set mac->sband to wiphy->sband */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200357 hw->wiphy->bands[NL80211_BAND_5GHZ] = sband;
Chaoming_Liacd48572011-04-25 12:52:54 -0500358 } else {
359 if (rtlhal->current_bandtype == BAND_ON_2_4G) {
360 /* <1> use mac->bands as mem for hw->wiphy->bands */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200361 sband = &(rtlmac->bands[NL80211_BAND_2GHZ]);
Chaoming_Liacd48572011-04-25 12:52:54 -0500362
Johannes Berg57fbcce2016-04-12 15:56:15 +0200363 /* <2> set hw->wiphy->bands[NL80211_BAND_2GHZ]
Chaoming_Liacd48572011-04-25 12:52:54 -0500364 * to default value(1T1R) */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200365 memcpy(&(rtlmac->bands[NL80211_BAND_2GHZ]),
Larry Finger9afa2e42014-09-22 09:39:21 -0500366 &rtl_band_2ghz,
367 sizeof(struct ieee80211_supported_band));
Chaoming_Liacd48572011-04-25 12:52:54 -0500368
369 /* <3> init ht cap base on ant_num */
370 _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
371
372 /* <4> set mac->sband to wiphy->sband */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200373 hw->wiphy->bands[NL80211_BAND_2GHZ] = sband;
Chaoming_Liacd48572011-04-25 12:52:54 -0500374 } else if (rtlhal->current_bandtype == BAND_ON_5G) {
375 /* <1> use mac->bands as mem for hw->wiphy->bands */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200376 sband = &(rtlmac->bands[NL80211_BAND_5GHZ]);
Chaoming_Liacd48572011-04-25 12:52:54 -0500377
Johannes Berg57fbcce2016-04-12 15:56:15 +0200378 /* <2> set hw->wiphy->bands[NL80211_BAND_5GHZ]
Chaoming_Liacd48572011-04-25 12:52:54 -0500379 * to default value(1T1R) */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200380 memcpy(&(rtlmac->bands[NL80211_BAND_5GHZ]),
Larry Finger9afa2e42014-09-22 09:39:21 -0500381 &rtl_band_5ghz,
382 sizeof(struct ieee80211_supported_band));
Chaoming_Liacd48572011-04-25 12:52:54 -0500383
384 /* <3> init ht cap base on ant_num */
385 _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
386
Larry Finger9afa2e42014-09-22 09:39:21 -0500387 _rtl_init_hw_vht_capab(hw, &sband->vht_cap);
Chaoming_Liacd48572011-04-25 12:52:54 -0500388 /* <4> set mac->sband to wiphy->sband */
Johannes Berg57fbcce2016-04-12 15:56:15 +0200389 hw->wiphy->bands[NL80211_BAND_5GHZ] = sband;
Chaoming_Liacd48572011-04-25 12:52:54 -0500390 } else {
Larry Fingerb03d9682016-12-15 12:22:58 -0600391 pr_err("Err BAND %d\n",
392 rtlhal->current_bandtype);
Chaoming_Liacd48572011-04-25 12:52:54 -0500393 }
394 }
Larry Finger0c817332010-12-08 11:12:31 -0600395 /* <5> set hw caps */
Johannes Berg30686bf2015-06-02 21:39:54 +0200396 ieee80211_hw_set(hw, SIGNAL_DBM);
397 ieee80211_hw_set(hw, RX_INCLUDES_FCS);
398 ieee80211_hw_set(hw, AMPDU_AGGREGATION);
399 ieee80211_hw_set(hw, CONNECTION_MONITOR);
400 ieee80211_hw_set(hw, MFP_CAPABLE);
401 ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS);
Ping-Ke Shih5f906692018-01-18 09:26:14 +0800402 ieee80211_hw_set(hw, SUPPORTS_AMSDU_IN_AMPDU);
Ping-Ke Shih6942bdc2018-01-29 11:26:32 +0800403 ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
Larry Finger0c817332010-12-08 11:12:31 -0600404
Chaoming_Liacd48572011-04-25 12:52:54 -0500405 /* swlps or hwlps has been set in diff chip in init_sw_vars */
Johannes Berg30686bf2015-06-02 21:39:54 +0200406 if (rtlpriv->psc.swctrl_lps) {
407 ieee80211_hw_set(hw, SUPPORTS_PS);
408 ieee80211_hw_set(hw, PS_NULLFUNC_STACK);
409 }
Ping-Ke Shihe332e2a22017-06-18 11:12:42 -0500410 if (rtlpriv->psc.fwctrl_lps) {
411 ieee80211_hw_set(hw, SUPPORTS_PS);
412 ieee80211_hw_set(hw, SUPPORTS_DYNAMIC_PS);
413 }
Larry Finger0c817332010-12-08 11:12:31 -0600414 hw->wiphy->interface_modes =
Chaoming_Liacd48572011-04-25 12:52:54 -0500415 BIT(NL80211_IFTYPE_AP) |
416 BIT(NL80211_IFTYPE_STATION) |
Larry Finger26634c42013-03-24 22:06:33 -0500417 BIT(NL80211_IFTYPE_ADHOC) |
418 BIT(NL80211_IFTYPE_MESH_POINT) |
419 BIT(NL80211_IFTYPE_P2P_CLIENT) |
420 BIT(NL80211_IFTYPE_P2P_GO);
Larry Finger26634c42013-03-24 22:06:33 -0500421 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
Larry Finger9afa2e42014-09-22 09:39:21 -0500422
423 hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
424
Larry Finger0c817332010-12-08 11:12:31 -0600425 hw->wiphy->rts_threshold = 2347;
426
427 hw->queues = AC_MAX;
428 hw->extra_tx_headroom = RTL_TX_HEADER_SIZE;
429
430 /* TODO: Correct this value for our hw */
Souptick Joarder9d546192017-08-02 17:59:15 +0530431 hw->max_listen_interval = MAX_LISTEN_INTERVAL;
432 hw->max_rate_tries = MAX_RATE_TRIES;
Larry Finger0c817332010-12-08 11:12:31 -0600433 /* hw->max_rates = 1; */
Chaoming_Liacd48572011-04-25 12:52:54 -0500434 hw->sta_data_size = sizeof(struct rtl_sta_info);
Larry Finger0c817332010-12-08 11:12:31 -0600435
Larry Finger9afa2e42014-09-22 09:39:21 -0500436/* wowlan is not supported by kernel if CONFIG_PM is not defined */
437#ifdef CONFIG_PM
438 if (rtlpriv->psc.wo_wlan_mode) {
439 if (rtlpriv->psc.wo_wlan_mode & WAKE_ON_MAGIC_PACKET)
440 rtlpriv->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT;
441 if (rtlpriv->psc.wo_wlan_mode & WAKE_ON_PATTERN_MATCH) {
442 rtlpriv->wowlan.n_patterns =
443 MAX_SUPPORT_WOL_PATTERN_NUM;
444 rtlpriv->wowlan.pattern_min_len = MIN_WOL_PATTERN_SIZE;
445 rtlpriv->wowlan.pattern_max_len = MAX_WOL_PATTERN_SIZE;
446 }
447 hw->wiphy->wowlan = &rtlpriv->wowlan;
448 }
449#endif
450
Larry Finger0c817332010-12-08 11:12:31 -0600451 /* <6> mac address */
452 if (is_valid_ether_addr(rtlefuse->dev_addr)) {
453 SET_IEEE80211_PERM_ADDR(hw, rtlefuse->dev_addr);
454 } else {
Larry Fingerabfabc92011-11-17 12:14:44 -0600455 u8 rtlmac1[] = { 0x00, 0xe0, 0x4c, 0x81, 0x92, 0x00 };
456 get_random_bytes((rtlmac1 + (ETH_ALEN - 1)), 1);
457 SET_IEEE80211_PERM_ADDR(hw, rtlmac1);
Larry Finger0c817332010-12-08 11:12:31 -0600458 }
Larry Finger0c817332010-12-08 11:12:31 -0600459}
460
461static void _rtl_init_deferred_work(struct ieee80211_hw *hw)
462{
463 struct rtl_priv *rtlpriv = rtl_priv(hw);
464
465 /* <1> timer */
Kees Cook7c51d17c2017-10-24 02:28:29 -0700466 timer_setup(&rtlpriv->works.watchdog_timer,
467 rtl_watch_dog_timer_callback, 0);
468 timer_setup(&rtlpriv->works.dualmac_easyconcurrent_retrytimer,
469 rtl_easy_concurrent_retrytimer_callback, 0);
Larry Finger0c817332010-12-08 11:12:31 -0600470 /* <2> work queue */
471 rtlpriv->works.hw = hw;
Kees Cook598a0df2014-10-20 14:57:08 -0700472 rtlpriv->works.rtl_wq = alloc_workqueue("%s", 0, 0, rtlpriv->cfg->name);
Larry Finger0c817332010-12-08 11:12:31 -0600473 INIT_DELAYED_WORK(&rtlpriv->works.watchdog_wq,
474 (void *)rtl_watchdog_wq_callback);
475 INIT_DELAYED_WORK(&rtlpriv->works.ips_nic_off_wq,
476 (void *)rtl_ips_nic_off_wq_callback);
Chaoming_Liacd48572011-04-25 12:52:54 -0500477 INIT_DELAYED_WORK(&rtlpriv->works.ps_work,
478 (void *)rtl_swlps_wq_callback);
479 INIT_DELAYED_WORK(&rtlpriv->works.ps_rfon_wq,
480 (void *)rtl_swlps_rfon_wq_callback);
Larry Finger26634c42013-03-24 22:06:33 -0500481 INIT_DELAYED_WORK(&rtlpriv->works.fwevt_wq,
482 (void *)rtl_fwevt_wq_callback);
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -0600483 INIT_DELAYED_WORK(&rtlpriv->works.c2hcmd_wq,
484 (void *)rtl_c2hcmd_wq_callback);
Larry Finger0c817332010-12-08 11:12:31 -0600485
486}
487
488void rtl_deinit_deferred_work(struct ieee80211_hw *hw)
489{
490 struct rtl_priv *rtlpriv = rtl_priv(hw);
491
492 del_timer_sync(&rtlpriv->works.watchdog_timer);
493
494 cancel_delayed_work(&rtlpriv->works.watchdog_wq);
495 cancel_delayed_work(&rtlpriv->works.ips_nic_off_wq);
Chaoming_Liacd48572011-04-25 12:52:54 -0500496 cancel_delayed_work(&rtlpriv->works.ps_work);
497 cancel_delayed_work(&rtlpriv->works.ps_rfon_wq);
Larry Finger26634c42013-03-24 22:06:33 -0500498 cancel_delayed_work(&rtlpriv->works.fwevt_wq);
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -0600499 cancel_delayed_work(&rtlpriv->works.c2hcmd_wq);
Larry Finger0c817332010-12-08 11:12:31 -0600500}
Larry Finger6f334c22013-07-12 15:32:15 -0500501EXPORT_SYMBOL_GPL(rtl_deinit_deferred_work);
Larry Finger0c817332010-12-08 11:12:31 -0600502
503void rtl_init_rfkill(struct ieee80211_hw *hw)
504{
505 struct rtl_priv *rtlpriv = rtl_priv(hw);
506
507 bool radio_state;
508 bool blocked;
509 u8 valid = 0;
510
Chaoming Li228bdfc2011-04-10 18:30:23 -0500511 /*set init state to on */
Rusty Russell3db1cd52011-12-19 13:56:45 +0000512 rtlpriv->rfkill.rfkill_state = true;
Chaoming Li228bdfc2011-04-10 18:30:23 -0500513 wiphy_rfkill_set_hw_state(hw->wiphy, 0);
514
Larry Finger0c817332010-12-08 11:12:31 -0600515 radio_state = rtlpriv->cfg->ops->radio_onoff_checking(hw, &valid);
516
Larry Fingere6d8a812010-12-21 19:40:40 -0600517 if (valid) {
Larry Finger9afa2e42014-09-22 09:39:21 -0500518 pr_info("rtlwifi: wireless switch is %s\n",
Joe Perches292b1192011-07-20 08:51:35 -0700519 rtlpriv->rfkill.rfkill_state ? "on" : "off");
Chaoming Li228bdfc2011-04-10 18:30:23 -0500520
Larry Finger0c817332010-12-08 11:12:31 -0600521 rtlpriv->rfkill.rfkill_state = radio_state;
522
523 blocked = (rtlpriv->rfkill.rfkill_state == 1) ? 0 : 1;
524 wiphy_rfkill_set_hw_state(hw->wiphy, blocked);
525 }
526
527 wiphy_rfkill_start_polling(hw->wiphy);
528}
Larry Fingerb0302ab2012-01-30 09:54:49 -0600529EXPORT_SYMBOL(rtl_init_rfkill);
Larry Finger0c817332010-12-08 11:12:31 -0600530
531void rtl_deinit_rfkill(struct ieee80211_hw *hw)
532{
533 wiphy_rfkill_stop_polling(hw->wiphy);
534}
Larry Finger6f334c22013-07-12 15:32:15 -0500535EXPORT_SYMBOL_GPL(rtl_deinit_rfkill);
Larry Finger0c817332010-12-08 11:12:31 -0600536
537int rtl_init_core(struct ieee80211_hw *hw)
538{
539 struct rtl_priv *rtlpriv = rtl_priv(hw);
540 struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw));
541
542 /* <1> init mac80211 */
543 _rtl_init_mac80211(hw);
544 rtlmac->hw = hw;
545
546 /* <2> rate control register */
Chaoming Li375ff4c2011-02-28 16:40:28 -0600547 hw->rate_control_algorithm = "rtl_rc";
Larry Finger0c817332010-12-08 11:12:31 -0600548
549 /*
550 * <3> init CRDA must come after init
551 * mac80211 hw in _rtl_init_mac80211.
552 */
553 if (rtl_regd_init(hw, rtl_reg_notifier)) {
Larry Fingerb03d9682016-12-15 12:22:58 -0600554 pr_err("REGD init failed\n");
Larry Finger0c817332010-12-08 11:12:31 -0600555 return 1;
Larry Finger0c817332010-12-08 11:12:31 -0600556 }
557
558 /* <4> locks */
Larry Finger8a09d6d2010-12-16 11:13:57 -0600559 mutex_init(&rtlpriv->locks.conf_mutex);
Ping-Ke Shiha3fa3662018-01-17 14:15:21 +0800560 mutex_init(&rtlpriv->locks.ips_mutex);
561 mutex_init(&rtlpriv->locks.lps_mutex);
Larry Finger0c817332010-12-08 11:12:31 -0600562 spin_lock_init(&rtlpriv->locks.irq_th_lock);
563 spin_lock_init(&rtlpriv->locks.h2c_lock);
564 spin_lock_init(&rtlpriv->locks.rf_ps_lock);
565 spin_lock_init(&rtlpriv->locks.rf_lock);
Chaoming_Liacd48572011-04-25 12:52:54 -0500566 spin_lock_init(&rtlpriv->locks.waitq_lock);
Larry Finger26634c42013-03-24 22:06:33 -0500567 spin_lock_init(&rtlpriv->locks.entry_list_lock);
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -0600568 spin_lock_init(&rtlpriv->locks.c2hcmd_lock);
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -0500569 spin_lock_init(&rtlpriv->locks.scan_list_lock);
Chaoming_Liacd48572011-04-25 12:52:54 -0500570 spin_lock_init(&rtlpriv->locks.cck_and_rw_pagea_lock);
Larry Finger26634c42013-03-24 22:06:33 -0500571 spin_lock_init(&rtlpriv->locks.fw_ps_lock);
Larry Finger9afa2e42014-09-22 09:39:21 -0500572 spin_lock_init(&rtlpriv->locks.iqk_lock);
Larry Finger26634c42013-03-24 22:06:33 -0500573 /* <5> init list */
574 INIT_LIST_HEAD(&rtlpriv->entry_list);
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -0600575 INIT_LIST_HEAD(&rtlpriv->c2hcmd_list);
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -0500576 INIT_LIST_HEAD(&rtlpriv->scan_list.list);
Larry Finger0c817332010-12-08 11:12:31 -0600577
578 rtlmac->link_state = MAC80211_NOLINK;
579
Larry Finger26634c42013-03-24 22:06:33 -0500580 /* <6> init deferred work */
Larry Finger0c817332010-12-08 11:12:31 -0600581 _rtl_init_deferred_work(hw);
582
583 return 0;
584}
Larry Finger6f334c22013-07-12 15:32:15 -0500585EXPORT_SYMBOL_GPL(rtl_init_core);
Larry Finger0c817332010-12-08 11:12:31 -0600586
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -0500587static void rtl_free_entries_from_scan_list(struct ieee80211_hw *hw);
588
Larry Finger0c817332010-12-08 11:12:31 -0600589void rtl_deinit_core(struct ieee80211_hw *hw)
590{
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -0600591 rtl_c2hcmd_launcher(hw, 0);
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -0500592 rtl_free_entries_from_scan_list(hw);
Larry Finger0c817332010-12-08 11:12:31 -0600593}
Larry Finger6f334c22013-07-12 15:32:15 -0500594EXPORT_SYMBOL_GPL(rtl_deinit_core);
Larry Finger0c817332010-12-08 11:12:31 -0600595
596void rtl_init_rx_config(struct ieee80211_hw *hw)
597{
598 struct rtl_priv *rtlpriv = rtl_priv(hw);
599 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
600
601 rtlpriv->cfg->ops->get_hw_reg(hw, HW_VAR_RCR, (u8 *) (&mac->rx_conf));
Larry Finger0c817332010-12-08 11:12:31 -0600602}
Larry Finger6f334c22013-07-12 15:32:15 -0500603EXPORT_SYMBOL_GPL(rtl_init_rx_config);
Larry Finger0c817332010-12-08 11:12:31 -0600604
605/*********************************************************
606 *
607 * tx information functions
608 *
609 *********************************************************/
610static void _rtl_qurey_shortpreamble_mode(struct ieee80211_hw *hw,
611 struct rtl_tcb_desc *tcb_desc,
612 struct ieee80211_tx_info *info)
613{
614 struct rtl_priv *rtlpriv = rtl_priv(hw);
615 u8 rate_flag = info->control.rates[0].flags;
616
617 tcb_desc->use_shortpreamble = false;
618
619 /* 1M can only use Long Preamble. 11B spec */
620 if (tcb_desc->hw_rate == rtlpriv->cfg->maps[RTL_RC_CCK_RATE1M])
621 return;
622 else if (rate_flag & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
623 tcb_desc->use_shortpreamble = true;
624
625 return;
626}
627
628static void _rtl_query_shortgi(struct ieee80211_hw *hw,
Chaoming_Liacd48572011-04-25 12:52:54 -0500629 struct ieee80211_sta *sta,
Larry Finger0c817332010-12-08 11:12:31 -0600630 struct rtl_tcb_desc *tcb_desc,
631 struct ieee80211_tx_info *info)
632{
633 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
634 u8 rate_flag = info->control.rates[0].flags;
Chaoming_Liacd48572011-04-25 12:52:54 -0500635 u8 sgi_40 = 0, sgi_20 = 0, bw_40 = 0;
Larry Finger9afa2e42014-09-22 09:39:21 -0500636 u8 sgi_80 = 0, bw_80 = 0;
Larry Finger0c817332010-12-08 11:12:31 -0600637 tcb_desc->use_shortgi = false;
638
Chaoming_Liacd48572011-04-25 12:52:54 -0500639 if (sta == NULL)
Larry Finger0c817332010-12-08 11:12:31 -0600640 return;
641
Chaoming_Liacd48572011-04-25 12:52:54 -0500642 sgi_40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40;
643 sgi_20 = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_20;
Larry Finger9afa2e42014-09-22 09:39:21 -0500644 sgi_80 = sta->vht_cap.cap & IEEE80211_VHT_CAP_SHORT_GI_80;
Chaoming_Liacd48572011-04-25 12:52:54 -0500645
Larry Finger9afa2e42014-09-22 09:39:21 -0500646 if ((!sta->ht_cap.ht_supported) && (!sta->vht_cap.vht_supported))
Larry Finger0c817332010-12-08 11:12:31 -0600647 return;
648
Chaoming_Liacd48572011-04-25 12:52:54 -0500649 if (!sgi_40 && !sgi_20)
650 return;
651
Larry Finger9afa2e42014-09-22 09:39:21 -0500652 if (mac->opmode == NL80211_IFTYPE_STATION) {
Chaoming_Liacd48572011-04-25 12:52:54 -0500653 bw_40 = mac->bw_40;
Larry Finger9afa2e42014-09-22 09:39:21 -0500654 bw_80 = mac->bw_80;
655 } else if (mac->opmode == NL80211_IFTYPE_AP ||
Larry Finger26634c42013-03-24 22:06:33 -0500656 mac->opmode == NL80211_IFTYPE_ADHOC ||
Larry Finger9afa2e42014-09-22 09:39:21 -0500657 mac->opmode == NL80211_IFTYPE_MESH_POINT) {
658 bw_40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40;
659 bw_80 = sta->vht_cap.vht_supported;
660 }
Chaoming_Liacd48572011-04-25 12:52:54 -0500661
Larry Finger9afa2e42014-09-22 09:39:21 -0500662 if (bw_80) {
663 if (sgi_80)
664 tcb_desc->use_shortgi = true;
665 else
666 tcb_desc->use_shortgi = false;
667 } else {
668 if (bw_40 && sgi_40)
669 tcb_desc->use_shortgi = true;
670 else if (!bw_40 && sgi_20)
671 tcb_desc->use_shortgi = true;
672 }
Larry Finger0c817332010-12-08 11:12:31 -0600673
674 if (!(rate_flag & IEEE80211_TX_RC_SHORT_GI))
675 tcb_desc->use_shortgi = false;
Larry Finger0c817332010-12-08 11:12:31 -0600676}
677
678static void _rtl_query_protection_mode(struct ieee80211_hw *hw,
679 struct rtl_tcb_desc *tcb_desc,
680 struct ieee80211_tx_info *info)
681{
682 struct rtl_priv *rtlpriv = rtl_priv(hw);
683 u8 rate_flag = info->control.rates[0].flags;
684
685 /* Common Settings */
Larry Finger7ea47242011-02-19 16:28:57 -0600686 tcb_desc->rts_stbc = false;
687 tcb_desc->cts_enable = false;
Larry Finger0c817332010-12-08 11:12:31 -0600688 tcb_desc->rts_sc = 0;
Larry Finger7ea47242011-02-19 16:28:57 -0600689 tcb_desc->rts_bw = false;
690 tcb_desc->rts_use_shortpreamble = false;
691 tcb_desc->rts_use_shortgi = false;
Larry Finger0c817332010-12-08 11:12:31 -0600692
693 if (rate_flag & IEEE80211_TX_RC_USE_CTS_PROTECT) {
694 /* Use CTS-to-SELF in protection mode. */
Larry Finger7ea47242011-02-19 16:28:57 -0600695 tcb_desc->rts_enable = true;
696 tcb_desc->cts_enable = true;
Larry Finger0c817332010-12-08 11:12:31 -0600697 tcb_desc->rts_rate = rtlpriv->cfg->maps[RTL_RC_OFDM_RATE24M];
698 } else if (rate_flag & IEEE80211_TX_RC_USE_RTS_CTS) {
699 /* Use RTS-CTS in protection mode. */
Larry Finger7ea47242011-02-19 16:28:57 -0600700 tcb_desc->rts_enable = true;
Larry Finger0c817332010-12-08 11:12:31 -0600701 tcb_desc->rts_rate = rtlpriv->cfg->maps[RTL_RC_OFDM_RATE24M];
702 }
Larry Finger0c817332010-12-08 11:12:31 -0600703}
704
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800705u8 rtl_mrate_idx_to_arfr_id(struct ieee80211_hw *hw, u8 rate_index,
706 enum wireless_mode wirelessmode)
707{
708 struct rtl_priv *rtlpriv = rtl_priv(hw);
709 struct rtl_phy *rtlphy = &rtlpriv->phy;
710 u8 ret = 0;
711
712 switch (rate_index) {
713 case RATR_INX_WIRELESS_NGB:
714 if (rtlphy->rf_type == RF_1T1R)
715 ret = RATEID_IDX_BGN_40M_1SS;
716 else
717 ret = RATEID_IDX_BGN_40M_2SS;
718 ; break;
719 case RATR_INX_WIRELESS_N:
720 case RATR_INX_WIRELESS_NG:
721 if (rtlphy->rf_type == RF_1T1R)
722 ret = RATEID_IDX_GN_N1SS;
723 else
724 ret = RATEID_IDX_GN_N2SS;
725 ; break;
726 case RATR_INX_WIRELESS_NB:
727 if (rtlphy->rf_type == RF_1T1R)
728 ret = RATEID_IDX_BGN_20M_1SS_BN;
729 else
730 ret = RATEID_IDX_BGN_20M_2SS_BN;
731 ; break;
732 case RATR_INX_WIRELESS_GB:
733 ret = RATEID_IDX_BG;
734 break;
735 case RATR_INX_WIRELESS_G:
736 ret = RATEID_IDX_G;
737 break;
738 case RATR_INX_WIRELESS_B:
739 ret = RATEID_IDX_B;
740 break;
741 case RATR_INX_WIRELESS_MC:
742 if (wirelessmode == WIRELESS_MODE_B ||
743 wirelessmode == WIRELESS_MODE_G ||
744 wirelessmode == WIRELESS_MODE_N_24G ||
745 wirelessmode == WIRELESS_MODE_AC_24G)
746 ret = RATEID_IDX_BG;
747 else
748 ret = RATEID_IDX_G;
749 break;
750 case RATR_INX_WIRELESS_AC_5N:
751 if (rtlphy->rf_type == RF_1T1R)
752 ret = RATEID_IDX_VHT_1SS;
753 else
754 ret = RATEID_IDX_VHT_2SS;
755 break;
756 case RATR_INX_WIRELESS_AC_24N:
757 if (rtlphy->current_chan_bw == HT_CHANNEL_WIDTH_80) {
758 if (rtlphy->rf_type == RF_1T1R)
759 ret = RATEID_IDX_VHT_1SS;
760 else
761 ret = RATEID_IDX_VHT_2SS;
762 } else {
763 if (rtlphy->rf_type == RF_1T1R)
764 ret = RATEID_IDX_MIX1;
765 else
766 ret = RATEID_IDX_MIX2;
767 }
768 break;
769 default:
770 ret = RATEID_IDX_BGN_40M_2SS;
771 break;
772 }
773 return ret;
774}
775EXPORT_SYMBOL(rtl_mrate_idx_to_arfr_id);
776
Larry Finger0c817332010-12-08 11:12:31 -0600777static void _rtl_txrate_selectmode(struct ieee80211_hw *hw,
Chaoming_Liacd48572011-04-25 12:52:54 -0500778 struct ieee80211_sta *sta,
Larry Finger0c817332010-12-08 11:12:31 -0600779 struct rtl_tcb_desc *tcb_desc)
780{
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800781#define SET_RATE_ID(rate_id) \
782 ({typeof(rate_id) _id = rate_id; \
783 ((rtlpriv->cfg->spec_ver & RTL_SPEC_NEW_RATEID) ? \
784 rtl_mrate_idx_to_arfr_id(hw, _id, \
785 (sta_entry ? sta_entry->wireless_mode : \
786 WIRELESS_MODE_G)) : \
787 _id); })
788
Larry Finger0c817332010-12-08 11:12:31 -0600789 struct rtl_priv *rtlpriv = rtl_priv(hw);
790 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
Chaoming_Liacd48572011-04-25 12:52:54 -0500791 struct rtl_sta_info *sta_entry = NULL;
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800792 u8 ratr_index = SET_RATE_ID(RATR_INX_WIRELESS_MC);
Larry Finger0c817332010-12-08 11:12:31 -0600793
Chaoming_Liacd48572011-04-25 12:52:54 -0500794 if (sta) {
795 sta_entry = (struct rtl_sta_info *) sta->drv_priv;
796 ratr_index = sta_entry->ratr_index;
797 }
Larry Finger0c817332010-12-08 11:12:31 -0600798 if (!tcb_desc->disable_ratefallback || !tcb_desc->use_driver_rate) {
Chaoming_Liacd48572011-04-25 12:52:54 -0500799 if (mac->opmode == NL80211_IFTYPE_STATION) {
Larry Finger0c817332010-12-08 11:12:31 -0600800 tcb_desc->ratr_index = 0;
Larry Finger26634c42013-03-24 22:06:33 -0500801 } else if (mac->opmode == NL80211_IFTYPE_ADHOC ||
Larry Finger9afa2e42014-09-22 09:39:21 -0500802 mac->opmode == NL80211_IFTYPE_MESH_POINT) {
Larry Finger7ea47242011-02-19 16:28:57 -0600803 if (tcb_desc->multicast || tcb_desc->broadcast) {
Larry Finger0c817332010-12-08 11:12:31 -0600804 tcb_desc->hw_rate =
805 rtlpriv->cfg->maps[RTL_RC_CCK_RATE2M];
806 tcb_desc->use_driver_rate = 1;
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800807 tcb_desc->ratr_index =
808 SET_RATE_ID(RATR_INX_WIRELESS_MC);
Larry Finger0c817332010-12-08 11:12:31 -0600809 } else {
Larry Finger26634c42013-03-24 22:06:33 -0500810 tcb_desc->ratr_index = ratr_index;
Larry Finger0c817332010-12-08 11:12:31 -0600811 }
Chaoming_Liacd48572011-04-25 12:52:54 -0500812 } else if (mac->opmode == NL80211_IFTYPE_AP) {
813 tcb_desc->ratr_index = ratr_index;
Larry Finger0c817332010-12-08 11:12:31 -0600814 }
815 }
816
Larry Finger7ea47242011-02-19 16:28:57 -0600817 if (rtlpriv->dm.useramask) {
Larry Finger26634c42013-03-24 22:06:33 -0500818 tcb_desc->ratr_index = ratr_index;
819 /* TODO we will differentiate adhoc and station future */
820 if (mac->opmode == NL80211_IFTYPE_STATION ||
821 mac->opmode == NL80211_IFTYPE_MESH_POINT) {
Chaoming_Liacd48572011-04-25 12:52:54 -0500822 tcb_desc->mac_id = 0;
Larry Finger0c817332010-12-08 11:12:31 -0600823
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800824 if (sta &&
825 (rtlpriv->cfg->spec_ver & RTL_SPEC_NEW_RATEID))
826 ; /* use sta_entry->ratr_index */
827 else if (mac->mode == WIRELESS_MODE_AC_5G)
Larry Finger9afa2e42014-09-22 09:39:21 -0500828 tcb_desc->ratr_index =
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800829 SET_RATE_ID(RATR_INX_WIRELESS_AC_5N);
Larry Finger9afa2e42014-09-22 09:39:21 -0500830 else if (mac->mode == WIRELESS_MODE_AC_24G)
831 tcb_desc->ratr_index =
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800832 SET_RATE_ID(RATR_INX_WIRELESS_AC_24N);
Larry Finger9afa2e42014-09-22 09:39:21 -0500833 else if (mac->mode == WIRELESS_MODE_N_24G)
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800834 tcb_desc->ratr_index =
835 SET_RATE_ID(RATR_INX_WIRELESS_NGB);
Chaoming_Liacd48572011-04-25 12:52:54 -0500836 else if (mac->mode == WIRELESS_MODE_N_5G)
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800837 tcb_desc->ratr_index =
838 SET_RATE_ID(RATR_INX_WIRELESS_NG);
Chaoming_Liacd48572011-04-25 12:52:54 -0500839 else if (mac->mode & WIRELESS_MODE_G)
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800840 tcb_desc->ratr_index =
841 SET_RATE_ID(RATR_INX_WIRELESS_GB);
Chaoming_Liacd48572011-04-25 12:52:54 -0500842 else if (mac->mode & WIRELESS_MODE_B)
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800843 tcb_desc->ratr_index =
844 SET_RATE_ID(RATR_INX_WIRELESS_B);
Chaoming_Liacd48572011-04-25 12:52:54 -0500845 else if (mac->mode & WIRELESS_MODE_A)
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800846 tcb_desc->ratr_index =
847 SET_RATE_ID(RATR_INX_WIRELESS_G);
Larry Finger9afa2e42014-09-22 09:39:21 -0500848
Chaoming_Liacd48572011-04-25 12:52:54 -0500849 } else if (mac->opmode == NL80211_IFTYPE_AP ||
Larry Finger9afa2e42014-09-22 09:39:21 -0500850 mac->opmode == NL80211_IFTYPE_ADHOC) {
Chaoming_Liacd48572011-04-25 12:52:54 -0500851 if (NULL != sta) {
852 if (sta->aid > 0)
853 tcb_desc->mac_id = sta->aid + 1;
854 else
855 tcb_desc->mac_id = 1;
856 } else {
857 tcb_desc->mac_id = 0;
858 }
Larry Finger0c817332010-12-08 11:12:31 -0600859 }
860 }
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +0800861#undef SET_RATE_ID
Larry Finger0c817332010-12-08 11:12:31 -0600862}
863
864static void _rtl_query_bandwidth_mode(struct ieee80211_hw *hw,
Chaoming_Liacd48572011-04-25 12:52:54 -0500865 struct ieee80211_sta *sta,
Larry Finger0c817332010-12-08 11:12:31 -0600866 struct rtl_tcb_desc *tcb_desc)
867{
868 struct rtl_priv *rtlpriv = rtl_priv(hw);
869 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
870
Larry Finger7ea47242011-02-19 16:28:57 -0600871 tcb_desc->packet_bw = false;
Chaoming_Liacd48572011-04-25 12:52:54 -0500872 if (!sta)
Larry Finger0c817332010-12-08 11:12:31 -0600873 return;
Chaoming_Liacd48572011-04-25 12:52:54 -0500874 if (mac->opmode == NL80211_IFTYPE_AP ||
Larry Finger26634c42013-03-24 22:06:33 -0500875 mac->opmode == NL80211_IFTYPE_ADHOC ||
876 mac->opmode == NL80211_IFTYPE_MESH_POINT) {
Larry Finger9afa2e42014-09-22 09:39:21 -0500877 if (!(sta->ht_cap.ht_supported) ||
878 !(sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
Chaoming_Liacd48572011-04-25 12:52:54 -0500879 return;
880 } else if (mac->opmode == NL80211_IFTYPE_STATION) {
881 if (!mac->bw_40 || !(sta->ht_cap.ht_supported))
882 return;
883 }
Larry Finger7ea47242011-02-19 16:28:57 -0600884 if (tcb_desc->multicast || tcb_desc->broadcast)
Larry Finger0c817332010-12-08 11:12:31 -0600885 return;
886
887 /*use legency rate, shall use 20MHz */
888 if (tcb_desc->hw_rate <= rtlpriv->cfg->maps[RTL_RC_OFDM_RATE54M])
889 return;
890
Larry Finger9afa2e42014-09-22 09:39:21 -0500891 tcb_desc->packet_bw = HT_CHANNEL_WIDTH_20_40;
892
Ping-Ke Shih1ca72c32018-01-29 11:26:33 +0800893 if (rtlpriv->cfg->spec_ver & RTL_SPEC_SUPPORT_VHT) {
Larry Finger9afa2e42014-09-22 09:39:21 -0500894 if (mac->opmode == NL80211_IFTYPE_AP ||
895 mac->opmode == NL80211_IFTYPE_ADHOC ||
896 mac->opmode == NL80211_IFTYPE_MESH_POINT) {
897 if (!(sta->vht_cap.vht_supported))
898 return;
899 } else if (mac->opmode == NL80211_IFTYPE_STATION) {
900 if (!mac->bw_80 ||
901 !(sta->vht_cap.vht_supported))
902 return;
903 }
904 if (tcb_desc->hw_rate <=
905 rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS15])
906 return;
907 tcb_desc->packet_bw = HT_CHANNEL_WIDTH_80;
908 }
Larry Finger0c817332010-12-08 11:12:31 -0600909}
910
Larry Finger9afa2e42014-09-22 09:39:21 -0500911static u8 _rtl_get_vht_highest_n_rate(struct ieee80211_hw *hw,
912 struct ieee80211_sta *sta)
Larry Finger0c817332010-12-08 11:12:31 -0600913{
914 struct rtl_priv *rtlpriv = rtl_priv(hw);
915 struct rtl_phy *rtlphy = &(rtlpriv->phy);
916 u8 hw_rate;
Larry Finger9afa2e42014-09-22 09:39:21 -0500917 u16 tx_mcs_map = le16_to_cpu(sta->vht_cap.vht_mcs.tx_mcs_map);
Larry Finger0c817332010-12-08 11:12:31 -0600918
Larry Finger9afa2e42014-09-22 09:39:21 -0500919 if ((get_rf_type(rtlphy) == RF_2T2R) &&
920 (tx_mcs_map & 0x000c) != 0x000c) {
921 if ((tx_mcs_map & 0x000c) >> 2 ==
922 IEEE80211_VHT_MCS_SUPPORT_0_7)
923 hw_rate =
924 rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS7];
925 else if ((tx_mcs_map & 0x000c) >> 2 ==
926 IEEE80211_VHT_MCS_SUPPORT_0_8)
927 hw_rate =
Larry Fingera7986ce2017-10-14 20:54:02 -0500928 rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS8];
Larry Finger9afa2e42014-09-22 09:39:21 -0500929 else
930 hw_rate =
931 rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS9];
932 } else {
933 if ((tx_mcs_map & 0x0003) ==
934 IEEE80211_VHT_MCS_SUPPORT_0_7)
935 hw_rate =
936 rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS7];
937 else if ((tx_mcs_map & 0x0003) ==
938 IEEE80211_VHT_MCS_SUPPORT_0_8)
939 hw_rate =
Larry Fingera7986ce2017-10-14 20:54:02 -0500940 rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS8];
Larry Finger9afa2e42014-09-22 09:39:21 -0500941 else
942 hw_rate =
943 rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS9];
944 }
945
946 return hw_rate;
947}
948
949static u8 _rtl_get_highest_n_rate(struct ieee80211_hw *hw,
950 struct ieee80211_sta *sta)
951{
952 struct rtl_priv *rtlpriv = rtl_priv(hw);
953 struct rtl_phy *rtlphy = &rtlpriv->phy;
954 u8 hw_rate;
955
Frank A. Cancio Bellod63589c2017-12-29 16:31:08 +0800956 if (get_rf_type(rtlphy) == RF_2T2R &&
957 sta->ht_cap.mcs.rx_mask[1] != 0)
Larry Finger0c817332010-12-08 11:12:31 -0600958 hw_rate = rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS15];
959 else
960 hw_rate = rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS7];
961
962 return hw_rate;
963}
964
Larry Finger7ad0ce32011-08-22 16:50:14 -0500965/* mac80211's rate_idx is like this:
966 *
Johannes Berg57fbcce2016-04-12 15:56:15 +0200967 * 2.4G band:rx_status->band == NL80211_BAND_2GHZ
Larry Finger7ad0ce32011-08-22 16:50:14 -0500968 *
969 * B/G rate:
970 * (rx_status->flag & RX_FLAG_HT) = 0,
Larry Fingere0e776a2014-12-18 03:05:36 -0600971 * DESC_RATE1M-->DESC_RATE54M ==> idx is 0-->11,
Larry Finger7ad0ce32011-08-22 16:50:14 -0500972 *
973 * N rate:
974 * (rx_status->flag & RX_FLAG_HT) = 1,
Larry Fingere0e776a2014-12-18 03:05:36 -0600975 * DESC_RATEMCS0-->DESC_RATEMCS15 ==> idx is 0-->15
Larry Finger7ad0ce32011-08-22 16:50:14 -0500976 *
Johannes Berg57fbcce2016-04-12 15:56:15 +0200977 * 5G band:rx_status->band == NL80211_BAND_5GHZ
Larry Finger7ad0ce32011-08-22 16:50:14 -0500978 * A rate:
979 * (rx_status->flag & RX_FLAG_HT) = 0,
Larry Fingere0e776a2014-12-18 03:05:36 -0600980 * DESC_RATE6M-->DESC_RATE54M ==> idx is 0-->7,
Larry Finger7ad0ce32011-08-22 16:50:14 -0500981 *
982 * N rate:
983 * (rx_status->flag & RX_FLAG_HT) = 1,
Larry Fingere0e776a2014-12-18 03:05:36 -0600984 * DESC_RATEMCS0-->DESC_RATEMCS15 ==> idx is 0-->15
Larry Fingerfd3cb222014-12-18 03:05:40 -0600985 *
986 * VHT rates:
987 * DESC_RATEVHT1SS_MCS0-->DESC_RATEVHT1SS_MCS9 ==> idx is 0-->9
988 * DESC_RATEVHT2SS_MCS0-->DESC_RATEVHT2SS_MCS9 ==> idx is 0-->9
Larry Finger7ad0ce32011-08-22 16:50:14 -0500989 */
Larry Fingerfd3cb222014-12-18 03:05:40 -0600990int rtlwifi_rate_mapping(struct ieee80211_hw *hw, bool isht, bool isvht,
991 u8 desc_rate)
Larry Finger7ad0ce32011-08-22 16:50:14 -0500992{
993 int rate_idx;
994
Larry Fingerfd3cb222014-12-18 03:05:40 -0600995 if (isvht) {
996 switch (desc_rate) {
997 case DESC_RATEVHT1SS_MCS0:
998 rate_idx = 0;
999 break;
1000 case DESC_RATEVHT1SS_MCS1:
1001 rate_idx = 1;
1002 break;
1003 case DESC_RATEVHT1SS_MCS2:
1004 rate_idx = 2;
1005 break;
1006 case DESC_RATEVHT1SS_MCS3:
1007 rate_idx = 3;
1008 break;
1009 case DESC_RATEVHT1SS_MCS4:
1010 rate_idx = 4;
1011 break;
1012 case DESC_RATEVHT1SS_MCS5:
1013 rate_idx = 5;
1014 break;
1015 case DESC_RATEVHT1SS_MCS6:
1016 rate_idx = 6;
1017 break;
1018 case DESC_RATEVHT1SS_MCS7:
1019 rate_idx = 7;
1020 break;
1021 case DESC_RATEVHT1SS_MCS8:
1022 rate_idx = 8;
1023 break;
1024 case DESC_RATEVHT1SS_MCS9:
1025 rate_idx = 9;
1026 break;
1027 case DESC_RATEVHT2SS_MCS0:
1028 rate_idx = 0;
1029 break;
1030 case DESC_RATEVHT2SS_MCS1:
1031 rate_idx = 1;
1032 break;
1033 case DESC_RATEVHT2SS_MCS2:
1034 rate_idx = 2;
1035 break;
1036 case DESC_RATEVHT2SS_MCS3:
1037 rate_idx = 3;
1038 break;
1039 case DESC_RATEVHT2SS_MCS4:
1040 rate_idx = 4;
1041 break;
1042 case DESC_RATEVHT2SS_MCS5:
1043 rate_idx = 5;
1044 break;
1045 case DESC_RATEVHT2SS_MCS6:
1046 rate_idx = 6;
1047 break;
1048 case DESC_RATEVHT2SS_MCS7:
1049 rate_idx = 7;
1050 break;
1051 case DESC_RATEVHT2SS_MCS8:
1052 rate_idx = 8;
1053 break;
1054 case DESC_RATEVHT2SS_MCS9:
1055 rate_idx = 9;
1056 break;
1057 default:
1058 rate_idx = 0;
1059 break;
1060 }
1061 return rate_idx;
1062 }
Larry Finger7ad0ce32011-08-22 16:50:14 -05001063 if (false == isht) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02001064 if (NL80211_BAND_2GHZ == hw->conf.chandef.chan->band) {
Larry Finger7ad0ce32011-08-22 16:50:14 -05001065 switch (desc_rate) {
Larry Fingere0e776a2014-12-18 03:05:36 -06001066 case DESC_RATE1M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001067 rate_idx = 0;
1068 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001069 case DESC_RATE2M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001070 rate_idx = 1;
1071 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001072 case DESC_RATE5_5M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001073 rate_idx = 2;
1074 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001075 case DESC_RATE11M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001076 rate_idx = 3;
1077 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001078 case DESC_RATE6M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001079 rate_idx = 4;
1080 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001081 case DESC_RATE9M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001082 rate_idx = 5;
1083 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001084 case DESC_RATE12M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001085 rate_idx = 6;
1086 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001087 case DESC_RATE18M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001088 rate_idx = 7;
1089 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001090 case DESC_RATE24M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001091 rate_idx = 8;
1092 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001093 case DESC_RATE36M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001094 rate_idx = 9;
1095 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001096 case DESC_RATE48M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001097 rate_idx = 10;
1098 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001099 case DESC_RATE54M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001100 rate_idx = 11;
1101 break;
1102 default:
1103 rate_idx = 0;
1104 break;
1105 }
1106 } else {
1107 switch (desc_rate) {
Larry Fingere0e776a2014-12-18 03:05:36 -06001108 case DESC_RATE6M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001109 rate_idx = 0;
1110 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001111 case DESC_RATE9M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001112 rate_idx = 1;
1113 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001114 case DESC_RATE12M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001115 rate_idx = 2;
1116 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001117 case DESC_RATE18M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001118 rate_idx = 3;
1119 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001120 case DESC_RATE24M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001121 rate_idx = 4;
1122 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001123 case DESC_RATE36M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001124 rate_idx = 5;
1125 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001126 case DESC_RATE48M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001127 rate_idx = 6;
1128 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001129 case DESC_RATE54M:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001130 rate_idx = 7;
1131 break;
1132 default:
1133 rate_idx = 0;
1134 break;
1135 }
1136 }
Larry Finger7ad0ce32011-08-22 16:50:14 -05001137 } else {
Larry Finger7ad0ce32011-08-22 16:50:14 -05001138 switch (desc_rate) {
Larry Fingere0e776a2014-12-18 03:05:36 -06001139 case DESC_RATEMCS0:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001140 rate_idx = 0;
1141 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001142 case DESC_RATEMCS1:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001143 rate_idx = 1;
1144 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001145 case DESC_RATEMCS2:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001146 rate_idx = 2;
1147 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001148 case DESC_RATEMCS3:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001149 rate_idx = 3;
1150 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001151 case DESC_RATEMCS4:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001152 rate_idx = 4;
1153 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001154 case DESC_RATEMCS5:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001155 rate_idx = 5;
1156 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001157 case DESC_RATEMCS6:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001158 rate_idx = 6;
1159 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001160 case DESC_RATEMCS7:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001161 rate_idx = 7;
1162 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001163 case DESC_RATEMCS8:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001164 rate_idx = 8;
1165 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001166 case DESC_RATEMCS9:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001167 rate_idx = 9;
1168 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001169 case DESC_RATEMCS10:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001170 rate_idx = 10;
1171 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001172 case DESC_RATEMCS11:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001173 rate_idx = 11;
1174 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001175 case DESC_RATEMCS12:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001176 rate_idx = 12;
1177 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001178 case DESC_RATEMCS13:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001179 rate_idx = 13;
1180 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001181 case DESC_RATEMCS14:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001182 rate_idx = 14;
1183 break;
Larry Fingere0e776a2014-12-18 03:05:36 -06001184 case DESC_RATEMCS15:
Larry Finger7ad0ce32011-08-22 16:50:14 -05001185 rate_idx = 15;
1186 break;
1187 default:
1188 rate_idx = 0;
1189 break;
1190 }
1191 }
1192 return rate_idx;
1193}
1194EXPORT_SYMBOL(rtlwifi_rate_mapping);
1195
Ping-Ke Shihcdc9c7a2017-09-29 14:47:54 -05001196static u8 _rtl_get_tx_hw_rate(struct ieee80211_hw *hw,
1197 struct ieee80211_tx_info *info)
1198{
1199 struct rtl_priv *rtlpriv = rtl_priv(hw);
1200 struct ieee80211_tx_rate *r = &info->status.rates[0];
1201 struct ieee80211_rate *txrate;
1202 u8 hw_value = 0x0;
1203
1204 if (r->flags & IEEE80211_TX_RC_MCS) {
1205 /* HT MCS0-15 */
1206 hw_value = rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS15] - 15 +
1207 r->idx;
1208 } else if (r->flags & IEEE80211_TX_RC_VHT_MCS) {
1209 /* VHT MCS0-9, NSS */
1210 if (ieee80211_rate_get_vht_nss(r) == 2)
1211 hw_value = rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS9];
1212 else
1213 hw_value = rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS9];
1214
1215 hw_value = hw_value - 9 + ieee80211_rate_get_vht_mcs(r);
1216 } else {
1217 /* legacy */
1218 txrate = ieee80211_get_tx_rate(hw, info);
1219
1220 if (txrate)
1221 hw_value = txrate->hw_value;
1222 }
1223
1224 /* check 5G band */
1225 if (rtlpriv->rtlhal.current_bandtype == BAND_ON_5G &&
1226 hw_value < rtlpriv->cfg->maps[RTL_RC_OFDM_RATE6M])
1227 hw_value = rtlpriv->cfg->maps[RTL_RC_OFDM_RATE6M];
1228
1229 return hw_value;
1230}
1231
Larry Finger0c817332010-12-08 11:12:31 -06001232void rtl_get_tcb_desc(struct ieee80211_hw *hw,
1233 struct ieee80211_tx_info *info,
Chaoming_Liacd48572011-04-25 12:52:54 -05001234 struct ieee80211_sta *sta,
Larry Finger0c817332010-12-08 11:12:31 -06001235 struct sk_buff *skb, struct rtl_tcb_desc *tcb_desc)
1236{
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +08001237#define SET_RATE_ID(rate_id) \
1238 ({typeof(rate_id) _id = rate_id; \
1239 ((rtlpriv->cfg->spec_ver & RTL_SPEC_NEW_RATEID) ? \
1240 rtl_mrate_idx_to_arfr_id(hw, _id, \
1241 (sta_entry ? sta_entry->wireless_mode : \
1242 WIRELESS_MODE_G)) : \
1243 _id); })
1244
Larry Finger0c817332010-12-08 11:12:31 -06001245 struct rtl_priv *rtlpriv = rtl_priv(hw);
1246 struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw));
Chaoming_Liacd48572011-04-25 12:52:54 -05001247 struct ieee80211_hdr *hdr = rtl_get_hdr(skb);
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +08001248 struct rtl_sta_info *sta_entry =
1249 (sta ? (struct rtl_sta_info *)sta->drv_priv : NULL);
Ping-Ke Shihcdc9c7a2017-09-29 14:47:54 -05001250
Larry Finger9afa2e42014-09-22 09:39:21 -05001251 __le16 fc = rtl_get_fc(skb);
Larry Finger0c817332010-12-08 11:12:31 -06001252
Ping-Ke Shihcdc9c7a2017-09-29 14:47:54 -05001253 tcb_desc->hw_rate = _rtl_get_tx_hw_rate(hw, info);
Larry Finger0c817332010-12-08 11:12:31 -06001254
Ping-Ke Shih84795802017-06-18 11:12:44 -05001255 if (rtl_is_tx_report_skb(hw, skb))
1256 tcb_desc->use_spe_rpt = 1;
1257
Larry Finger0c817332010-12-08 11:12:31 -06001258 if (ieee80211_is_data(fc)) {
Larry Finger0c817332010-12-08 11:12:31 -06001259 /*
Chaoming_Liacd48572011-04-25 12:52:54 -05001260 *we set data rate INX 0
Larry Finger0c817332010-12-08 11:12:31 -06001261 *in rtl_rc.c if skb is special data or
1262 *mgt which need low data rate.
1263 */
1264
1265 /*
1266 *So tcb_desc->hw_rate is just used for
1267 *special data and mgt frames
1268 */
Chaoming Li09e92f02011-10-11 21:28:48 -05001269 if (info->control.rates[0].idx == 0 ||
Chaoming_Liacd48572011-04-25 12:52:54 -05001270 ieee80211_is_nullfunc(fc)) {
Larry Finger0c817332010-12-08 11:12:31 -06001271 tcb_desc->use_driver_rate = true;
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +08001272 tcb_desc->ratr_index =
1273 SET_RATE_ID(RATR_INX_WIRELESS_MC);
Larry Finger0c817332010-12-08 11:12:31 -06001274
Larry Finger0c817332010-12-08 11:12:31 -06001275 tcb_desc->disable_ratefallback = 1;
1276 } else {
1277 /*
1278 *because hw will nerver use hw_rate
1279 *when tcb_desc->use_driver_rate = false
1280 *so we never set highest N rate here,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001281 *and N rate will all be controlled by FW
Larry Finger0c817332010-12-08 11:12:31 -06001282 *when tcb_desc->use_driver_rate = false
1283 */
Larry Finger9afa2e42014-09-22 09:39:21 -05001284 if (sta && sta->vht_cap.vht_supported) {
1285 tcb_desc->hw_rate =
1286 _rtl_get_vht_highest_n_rate(hw, sta);
Larry Finger0c817332010-12-08 11:12:31 -06001287 } else {
Frank A. Cancio Bellod63589c2017-12-29 16:31:08 +08001288 if (sta && sta->ht_cap.ht_supported) {
Larry Finger0c817332010-12-08 11:12:31 -06001289 tcb_desc->hw_rate =
Larry Finger9afa2e42014-09-22 09:39:21 -05001290 _rtl_get_highest_n_rate(hw, sta);
Larry Finger0c817332010-12-08 11:12:31 -06001291 } else {
Larry Finger9afa2e42014-09-22 09:39:21 -05001292 if (rtlmac->mode == WIRELESS_MODE_B) {
1293 tcb_desc->hw_rate =
1294 rtlpriv->cfg->maps[RTL_RC_CCK_RATE11M];
1295 } else {
1296 tcb_desc->hw_rate =
1297 rtlpriv->cfg->maps[RTL_RC_OFDM_RATE54M];
1298 }
Larry Finger0c817332010-12-08 11:12:31 -06001299 }
1300 }
1301 }
1302
Ping-Ke Shihe7c52862017-07-02 13:12:36 -05001303 if (is_multicast_ether_addr(hdr->addr1))
Larry Finger7ea47242011-02-19 16:28:57 -06001304 tcb_desc->multicast = 1;
Ping-Ke Shihe7c52862017-07-02 13:12:36 -05001305 else if (is_broadcast_ether_addr(hdr->addr1))
Larry Finger7ea47242011-02-19 16:28:57 -06001306 tcb_desc->broadcast = 1;
Larry Finger0c817332010-12-08 11:12:31 -06001307
Chaoming_Liacd48572011-04-25 12:52:54 -05001308 _rtl_txrate_selectmode(hw, sta, tcb_desc);
1309 _rtl_query_bandwidth_mode(hw, sta, tcb_desc);
Larry Finger0c817332010-12-08 11:12:31 -06001310 _rtl_qurey_shortpreamble_mode(hw, tcb_desc, info);
Chaoming_Liacd48572011-04-25 12:52:54 -05001311 _rtl_query_shortgi(hw, sta, tcb_desc, info);
Larry Finger0c817332010-12-08 11:12:31 -06001312 _rtl_query_protection_mode(hw, tcb_desc, info);
1313 } else {
1314 tcb_desc->use_driver_rate = true;
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +08001315 tcb_desc->ratr_index = SET_RATE_ID(RATR_INX_WIRELESS_MC);
Larry Finger0c817332010-12-08 11:12:31 -06001316 tcb_desc->disable_ratefallback = 1;
1317 tcb_desc->mac_id = 0;
Chaoming_Liacd48572011-04-25 12:52:54 -05001318 tcb_desc->packet_bw = false;
Larry Finger0c817332010-12-08 11:12:31 -06001319 }
Ping-Ke Shiha75f3ee2018-01-19 14:45:51 +08001320#undef SET_RATE_ID
Larry Finger0c817332010-12-08 11:12:31 -06001321}
1322EXPORT_SYMBOL(rtl_get_tcb_desc);
1323
Larry Finger9afa2e42014-09-22 09:39:21 -05001324bool rtl_tx_mgmt_proc(struct ieee80211_hw *hw, struct sk_buff *skb)
1325{
1326 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
1327 struct rtl_priv *rtlpriv = rtl_priv(hw);
1328 __le16 fc = rtl_get_fc(skb);
1329
1330 if (rtlpriv->dm.supp_phymode_switch &&
1331 mac->link_state < MAC80211_LINKED &&
1332 (ieee80211_is_auth(fc) || ieee80211_is_probe_req(fc))) {
1333 if (rtlpriv->cfg->ops->chk_switch_dmdp)
1334 rtlpriv->cfg->ops->chk_switch_dmdp(hw);
1335 }
1336 if (ieee80211_is_auth(fc)) {
1337 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG, "MAC80211_LINKING\n");
Larry Finger9afa2e42014-09-22 09:39:21 -05001338
1339 mac->link_state = MAC80211_LINKING;
1340 /* Dul mac */
1341 rtlpriv->phy.need_iqk = true;
1342
1343 }
1344
1345 return true;
1346}
1347EXPORT_SYMBOL_GPL(rtl_tx_mgmt_proc);
1348
1349struct sk_buff *rtl_make_del_ba(struct ieee80211_hw *hw, u8 *sa,
1350 u8 *bssid, u16 tid);
1351
1352static void process_agg_start(struct ieee80211_hw *hw,
1353 struct ieee80211_hdr *hdr, u16 tid)
Larry Finger26634c42013-03-24 22:06:33 -05001354{
1355 struct rtl_priv *rtlpriv = rtl_priv(hw);
Larry Finger26634c42013-03-24 22:06:33 -05001356 struct ieee80211_rx_status rx_status = { 0 };
Larry Finger9afa2e42014-09-22 09:39:21 -05001357 struct sk_buff *skb_delba = NULL;
Larry Finger26634c42013-03-24 22:06:33 -05001358
Larry Finger9afa2e42014-09-22 09:39:21 -05001359 skb_delba = rtl_make_del_ba(hw, hdr->addr2, hdr->addr3, tid);
1360 if (skb_delba) {
1361 rx_status.freq = hw->conf.chandef.chan->center_freq;
1362 rx_status.band = hw->conf.chandef.chan->band;
1363 rx_status.flag |= RX_FLAG_DECRYPTED;
1364 rx_status.flag |= RX_FLAG_MACTIME_START;
1365 rx_status.rate_idx = 0;
1366 rx_status.signal = 50 + 10;
1367 memcpy(IEEE80211_SKB_RXCB(skb_delba),
1368 &rx_status, sizeof(rx_status));
1369 RT_PRINT_DATA(rtlpriv, COMP_INIT, DBG_DMESG,
1370 "fake del\n",
1371 skb_delba->data,
1372 skb_delba->len);
1373 ieee80211_rx_irqsafe(hw, skb_delba);
Larry Finger26634c42013-03-24 22:06:33 -05001374 }
Larry Finger26634c42013-03-24 22:06:33 -05001375}
1376
Larry Finger0c817332010-12-08 11:12:31 -06001377bool rtl_action_proc(struct ieee80211_hw *hw, struct sk_buff *skb, u8 is_tx)
1378{
1379 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
Chaoming_Liacd48572011-04-25 12:52:54 -05001380 struct ieee80211_hdr *hdr = rtl_get_hdr(skb);
Larry Finger0c817332010-12-08 11:12:31 -06001381 struct rtl_priv *rtlpriv = rtl_priv(hw);
Larry Finger9afa2e42014-09-22 09:39:21 -05001382 __le16 fc = rtl_get_fc(skb);
1383 u8 *act = (u8 *)(((u8 *)skb->data + MAC80211_3ADDR_LEN));
Larry Finger0c817332010-12-08 11:12:31 -06001384 u8 category;
1385
1386 if (!ieee80211_is_action(fc))
1387 return true;
1388
1389 category = *act;
1390 act++;
1391 switch (category) {
1392 case ACT_CAT_BA:
1393 switch (*act) {
1394 case ACT_ADDBAREQ:
1395 if (mac->act_scanning)
1396 return false;
1397
1398 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
Larry Finger9afa2e42014-09-22 09:39:21 -05001399 "%s ACT_ADDBAREQ From :%pM\n",
1400 is_tx ? "Tx" : "Rx", hdr->addr2);
Larry Finger26634c42013-03-24 22:06:33 -05001401 RT_PRINT_DATA(rtlpriv, COMP_INIT, DBG_DMESG, "req\n",
Larry Finger9afa2e42014-09-22 09:39:21 -05001402 skb->data, skb->len);
1403 if (!is_tx) {
1404 struct ieee80211_sta *sta = NULL;
1405 struct rtl_sta_info *sta_entry = NULL;
1406 struct rtl_tid_data *tid_data;
1407 struct ieee80211_mgmt *mgmt = (void *)skb->data;
1408 u16 capab = 0, tid = 0;
1409
1410 rcu_read_lock();
1411 sta = rtl_find_sta(hw, hdr->addr3);
1412 if (sta == NULL) {
1413 RT_TRACE(rtlpriv, COMP_SEND | COMP_RECV,
1414 DBG_DMESG, "sta is NULL\n");
1415 rcu_read_unlock();
Larry Finger26634c42013-03-24 22:06:33 -05001416 return true;
Larry Finger9afa2e42014-09-22 09:39:21 -05001417 }
1418
1419 sta_entry =
1420 (struct rtl_sta_info *)sta->drv_priv;
1421 if (!sta_entry) {
1422 rcu_read_unlock();
1423 return true;
1424 }
1425 capab =
1426 le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1427 tid = (capab &
1428 IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
Dan Carpenter5e0c1f02017-12-29 16:31:03 +08001429 if (tid >= MAX_TID_COUNT) {
1430 rcu_read_unlock();
1431 return true;
1432 }
Larry Finger9afa2e42014-09-22 09:39:21 -05001433 tid_data = &sta_entry->tids[tid];
1434 if (tid_data->agg.rx_agg_state ==
1435 RTL_RX_AGG_START)
1436 process_agg_start(hw, hdr, tid);
1437 rcu_read_unlock();
1438 }
Larry Finger0c817332010-12-08 11:12:31 -06001439 break;
1440 case ACT_ADDBARSP:
1441 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
Joe Perchesf30d7502012-01-04 19:40:41 -08001442 "%s ACT_ADDBARSP From :%pM\n",
Larry Finger9afa2e42014-09-22 09:39:21 -05001443 is_tx ? "Tx" : "Rx", hdr->addr2);
Larry Finger0c817332010-12-08 11:12:31 -06001444 break;
1445 case ACT_DELBA:
1446 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
Joe Perchesf30d7502012-01-04 19:40:41 -08001447 "ACT_ADDBADEL From :%pM\n", hdr->addr2);
Larry Finger0c817332010-12-08 11:12:31 -06001448 break;
1449 }
1450 break;
1451 default:
1452 break;
1453 }
1454
1455 return true;
1456}
Larry Finger6f334c22013-07-12 15:32:15 -05001457EXPORT_SYMBOL_GPL(rtl_action_proc);
Larry Finger0c817332010-12-08 11:12:31 -06001458
Ping-Ke Shih5b757ba2017-06-18 11:12:45 -05001459static void setup_special_tx(struct rtl_priv *rtlpriv, struct rtl_ps_ctl *ppsc,
1460 int type)
Larry Finger9afa2e42014-09-22 09:39:21 -05001461{
Larry Fingerba9f93f2016-11-26 14:43:35 -06001462 struct ieee80211_hw *hw = rtlpriv->hw;
1463
Larry Finger9afa2e42014-09-22 09:39:21 -05001464 rtlpriv->ra.is_special_data = true;
1465 if (rtlpriv->cfg->ops->get_btc_status())
1466 rtlpriv->btcoexist.btc_ops->btc_special_packet_notify(
Ping-Ke Shih5b757ba2017-06-18 11:12:45 -05001467 rtlpriv, type);
Larry Fingerba9f93f2016-11-26 14:43:35 -06001468 rtl_lps_leave(hw);
Larry Finger9afa2e42014-09-22 09:39:21 -05001469 ppsc->last_delaylps_stamp_jiffies = jiffies;
1470}
1471
Ping-Ke Shih84795802017-06-18 11:12:44 -05001472static const u8 *rtl_skb_ether_type_ptr(struct ieee80211_hw *hw,
1473 struct sk_buff *skb, bool is_enc)
Larry Finger0c817332010-12-08 11:12:31 -06001474{
1475 struct rtl_priv *rtlpriv = rtl_priv(hw);
Larry Finger0c817332010-12-08 11:12:31 -06001476 u8 mac_hdr_len = ieee80211_get_hdrlen_from_skb(skb);
Larry Finger9afa2e42014-09-22 09:39:21 -05001477 u8 encrypt_header_len = 0;
1478 u8 offset;
Larry Finger0c817332010-12-08 11:12:31 -06001479
Larry Finger9afa2e42014-09-22 09:39:21 -05001480 switch (rtlpriv->sec.pairwise_enc_algorithm) {
1481 case WEP40_ENCRYPTION:
1482 case WEP104_ENCRYPTION:
1483 encrypt_header_len = 4;/*WEP_IV_LEN*/
Mark Cave-Ayland0c5d63f2013-11-02 14:28:35 -05001484 break;
Larry Finger9afa2e42014-09-22 09:39:21 -05001485 case TKIP_ENCRYPTION:
1486 encrypt_header_len = 8;/*TKIP_IV_LEN*/
Mark Cave-Ayland0c5d63f2013-11-02 14:28:35 -05001487 break;
Larry Finger9afa2e42014-09-22 09:39:21 -05001488 case AESCCMP_ENCRYPTION:
1489 encrypt_header_len = 8;/*CCMP_HDR_LEN;*/
Mark Cave-Ayland0c5d63f2013-11-02 14:28:35 -05001490 break;
Mark Cave-Ayland0c5d63f2013-11-02 14:28:35 -05001491 default:
Larry Finger9afa2e42014-09-22 09:39:21 -05001492 break;
Larry Finger0c817332010-12-08 11:12:31 -06001493 }
Larry Finger9afa2e42014-09-22 09:39:21 -05001494
Taehee Yoocad737d2015-03-28 00:22:39 +09001495 offset = mac_hdr_len + SNAP_SIZE;
1496 if (is_enc)
1497 offset += encrypt_header_len;
Ping-Ke Shih84795802017-06-18 11:12:44 -05001498
1499 return skb->data + offset;
1500}
1501
1502/*should call before software enc*/
1503u8 rtl_is_special_data(struct ieee80211_hw *hw, struct sk_buff *skb, u8 is_tx,
1504 bool is_enc)
1505{
1506 struct rtl_priv *rtlpriv = rtl_priv(hw);
1507 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
1508 __le16 fc = rtl_get_fc(skb);
1509 u16 ether_type;
1510 const u8 *ether_type_ptr;
1511 const struct iphdr *ip;
1512
1513 if (!ieee80211_is_data(fc))
1514 goto end;
1515
1516 ether_type_ptr = rtl_skb_ether_type_ptr(hw, skb, is_enc);
1517 ether_type = be16_to_cpup((__be16 *)ether_type_ptr);
Larry Finger9afa2e42014-09-22 09:39:21 -05001518
1519 if (ETH_P_IP == ether_type) {
Ping-Ke Shih84795802017-06-18 11:12:44 -05001520 ip = (struct iphdr *)((u8 *)ether_type_ptr +
Larry Finger9afa2e42014-09-22 09:39:21 -05001521 PROTOC_TYPE_SIZE);
1522 if (IPPROTO_UDP == ip->protocol) {
1523 struct udphdr *udp = (struct udphdr *)((u8 *)ip +
1524 (ip->ihl << 2));
1525 if (((((u8 *)udp)[1] == 68) &&
1526 (((u8 *)udp)[3] == 67)) ||
1527 ((((u8 *)udp)[1] == 67) &&
1528 (((u8 *)udp)[3] == 68))) {
1529 /* 68 : UDP BOOTP client
1530 * 67 : UDP BOOTP server
1531 */
1532 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV),
1533 DBG_DMESG, "dhcp %s !!\n",
1534 (is_tx) ? "Tx" : "Rx");
1535
1536 if (is_tx)
Ping-Ke Shih5b757ba2017-06-18 11:12:45 -05001537 setup_special_tx(rtlpriv, ppsc,
1538 PACKET_DHCP);
1539
Larry Finger9afa2e42014-09-22 09:39:21 -05001540 return true;
1541 }
1542 }
1543 } else if (ETH_P_ARP == ether_type) {
1544 if (is_tx)
Ping-Ke Shih5b757ba2017-06-18 11:12:45 -05001545 setup_special_tx(rtlpriv, ppsc, PACKET_ARP);
Larry Finger9afa2e42014-09-22 09:39:21 -05001546
1547 return true;
1548 } else if (ETH_P_PAE == ether_type) {
Ping-Ke Shih11f35c92017-07-02 13:12:30 -05001549 /* EAPOL is seens as in-4way */
1550 rtlpriv->btcoexist.btc_info.in_4way = true;
1551 rtlpriv->btcoexist.btc_info.in_4way_ts = jiffies;
1552 rtlpriv->btcoexist.btc_info.in_4way_ts = jiffies;
1553
Larry Finger9afa2e42014-09-22 09:39:21 -05001554 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
1555 "802.1X %s EAPOL pkt!!\n", (is_tx) ? "Tx" : "Rx");
1556
1557 if (is_tx) {
1558 rtlpriv->ra.is_special_data = true;
Larry Fingerba9f93f2016-11-26 14:43:35 -06001559 rtl_lps_leave(hw);
Larry Finger9afa2e42014-09-22 09:39:21 -05001560 ppsc->last_delaylps_stamp_jiffies = jiffies;
Ping-Ke Shih5b757ba2017-06-18 11:12:45 -05001561
1562 setup_special_tx(rtlpriv, ppsc, PACKET_EAPOL);
Larry Finger9afa2e42014-09-22 09:39:21 -05001563 }
1564
1565 return true;
Larry Fingerc8f03452015-02-24 09:23:01 -06001566 } else if (ETH_P_IPV6 == ether_type) {
1567 /* TODO: Handle any IPv6 cases that need special handling.
1568 * For now, always return false
1569 */
1570 goto end;
Mark Cave-Ayland0c5d63f2013-11-02 14:28:35 -05001571 }
Larry Finger9afa2e42014-09-22 09:39:21 -05001572
1573end:
1574 rtlpriv->ra.is_special_data = false;
1575 return false;
Larry Finger0c817332010-12-08 11:12:31 -06001576}
Larry Finger6f334c22013-07-12 15:32:15 -05001577EXPORT_SYMBOL_GPL(rtl_is_special_data);
Larry Finger0c817332010-12-08 11:12:31 -06001578
Ping-Ke Shih84795802017-06-18 11:12:44 -05001579bool rtl_is_tx_report_skb(struct ieee80211_hw *hw, struct sk_buff *skb)
1580{
1581 u16 ether_type;
1582 const u8 *ether_type_ptr;
1583
1584 ether_type_ptr = rtl_skb_ether_type_ptr(hw, skb, true);
1585 ether_type = be16_to_cpup((__be16 *)ether_type_ptr);
1586
1587 /* EAPOL */
1588 if (ether_type == ETH_P_PAE)
1589 return true;
1590
1591 return false;
1592}
1593
1594static u16 rtl_get_tx_report_sn(struct ieee80211_hw *hw)
1595{
1596 struct rtl_priv *rtlpriv = rtl_priv(hw);
1597 struct rtl_tx_report *tx_report = &rtlpriv->tx_report;
1598 u16 sn;
1599
Ping-Ke Shih5f380ce2018-01-29 11:26:34 +08001600 /* SW_DEFINE[11:8] are reserved (driver fills zeros)
1601 * SW_DEFINE[7:2] are used by driver
1602 * SW_DEFINE[1:0] are reserved for firmware (driver fills zeros)
1603 */
1604 sn = (atomic_inc_return(&tx_report->sn) & 0x003F) << 2;
Ping-Ke Shih84795802017-06-18 11:12:44 -05001605
1606 tx_report->last_sent_sn = sn;
1607 tx_report->last_sent_time = jiffies;
1608
1609 RT_TRACE(rtlpriv, COMP_TX_REPORT, DBG_DMESG,
1610 "Send TX-Report sn=0x%X\n", sn);
1611
1612 return sn;
1613}
1614
1615void rtl_get_tx_report(struct rtl_tcb_desc *ptcb_desc, u8 *pdesc,
1616 struct ieee80211_hw *hw)
1617{
1618 if (ptcb_desc->use_spe_rpt) {
1619 u16 sn = rtl_get_tx_report_sn(hw);
1620
1621 SET_TX_DESC_SPE_RPT(pdesc, 1);
1622 SET_TX_DESC_SW_DEFINE(pdesc, sn);
1623 }
1624}
1625EXPORT_SYMBOL_GPL(rtl_get_tx_report);
1626
1627void rtl_tx_report_handler(struct ieee80211_hw *hw, u8 *tmp_buf, u8 c2h_cmd_len)
1628{
1629 struct rtl_priv *rtlpriv = rtl_priv(hw);
1630 struct rtl_tx_report *tx_report = &rtlpriv->tx_report;
1631 u16 sn;
Ping-Ke Shih5f380ce2018-01-29 11:26:34 +08001632 u8 st, retry;
Ping-Ke Shih84795802017-06-18 11:12:44 -05001633
Ping-Ke Shih5f380ce2018-01-29 11:26:34 +08001634 if (rtlpriv->cfg->spec_ver & RTL_SPEC_EXT_C2H) {
1635 sn = GET_TX_REPORT_SN_V2(tmp_buf);
1636 st = GET_TX_REPORT_ST_V2(tmp_buf);
1637 retry = GET_TX_REPORT_RETRY_V2(tmp_buf);
1638 } else {
1639 sn = GET_TX_REPORT_SN_V1(tmp_buf);
1640 st = GET_TX_REPORT_ST_V1(tmp_buf);
1641 retry = GET_TX_REPORT_RETRY_V1(tmp_buf);
1642 }
Ping-Ke Shih84795802017-06-18 11:12:44 -05001643
1644 tx_report->last_recv_sn = sn;
1645
1646 RT_TRACE(rtlpriv, COMP_TX_REPORT, DBG_DMESG,
1647 "Recv TX-Report st=0x%02X sn=0x%X retry=0x%X\n",
Ping-Ke Shih5f380ce2018-01-29 11:26:34 +08001648 st, sn, retry);
Ping-Ke Shih84795802017-06-18 11:12:44 -05001649}
1650EXPORT_SYMBOL_GPL(rtl_tx_report_handler);
1651
1652bool rtl_check_tx_report_acked(struct ieee80211_hw *hw)
1653{
1654 struct rtl_priv *rtlpriv = rtl_priv(hw);
1655 struct rtl_tx_report *tx_report = &rtlpriv->tx_report;
1656
1657 if (tx_report->last_sent_sn == tx_report->last_recv_sn)
1658 return true;
1659
1660 if (time_before(tx_report->last_sent_time + 3 * HZ, jiffies)) {
1661 RT_TRACE(rtlpriv, COMP_TX_REPORT, DBG_WARNING,
Ping-Ke Shih5f380ce2018-01-29 11:26:34 +08001662 "Check TX-Report timeout!! s_sn=0x%X r_sn=0x%X\n",
1663 tx_report->last_sent_sn, tx_report->last_recv_sn);
Ping-Ke Shih84795802017-06-18 11:12:44 -05001664 return true; /* 3 sec. (timeout) seen as acked */
1665 }
1666
1667 return false;
1668}
1669
1670void rtl_wait_tx_report_acked(struct ieee80211_hw *hw, u32 wait_ms)
1671{
1672 struct rtl_priv *rtlpriv = rtl_priv(hw);
1673 int i;
1674
1675 for (i = 0; i < wait_ms; i++) {
1676 if (rtl_check_tx_report_acked(hw))
1677 break;
1678 usleep_range(1000, 2000);
1679 RT_TRACE(rtlpriv, COMP_SEC, DBG_DMESG,
1680 "Wait 1ms (%d/%d) to disable key.\n", i, wait_ms);
1681 }
1682}
Ping-Ke Shihc1816f12017-09-29 14:47:55 -05001683
1684u32 rtl_get_hal_edca_param(struct ieee80211_hw *hw,
1685 struct ieee80211_vif *vif,
1686 enum wireless_mode wirelessmode,
1687 struct ieee80211_tx_queue_params *param)
1688{
1689 u32 reg = 0;
1690 u8 sifstime = 10;
1691 u8 slottime = 20;
1692
1693 /* AIFS = AIFSN * slot time + SIFS */
1694 switch (wirelessmode) {
1695 case WIRELESS_MODE_A:
1696 case WIRELESS_MODE_N_24G:
1697 case WIRELESS_MODE_N_5G:
1698 case WIRELESS_MODE_AC_5G:
1699 case WIRELESS_MODE_AC_24G:
1700 sifstime = 16;
1701 slottime = 9;
1702 break;
1703 case WIRELESS_MODE_G:
1704 slottime = (vif->bss_conf.use_short_slot ? 9 : 20);
1705 break;
1706 default:
1707 break;
1708 }
1709
1710 reg |= (param->txop & 0x7FF) << 16;
1711 reg |= (fls(param->cw_max) & 0xF) << 12;
1712 reg |= (fls(param->cw_min) & 0xF) << 8;
1713 reg |= (param->aifs & 0x0F) * slottime + sifstime;
1714
1715 return reg;
1716}
1717EXPORT_SYMBOL_GPL(rtl_get_hal_edca_param);
1718
Larry Finger0c817332010-12-08 11:12:31 -06001719/*********************************************************
1720 *
1721 * functions called by core.c
1722 *
1723 *********************************************************/
Larry Fingerf7953b22014-09-22 09:39:20 -05001724int rtl_tx_agg_start(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1725 struct ieee80211_sta *sta, u16 tid, u16 *ssn)
Larry Finger0c817332010-12-08 11:12:31 -06001726{
1727 struct rtl_priv *rtlpriv = rtl_priv(hw);
1728 struct rtl_tid_data *tid_data;
Chaoming_Liacd48572011-04-25 12:52:54 -05001729 struct rtl_sta_info *sta_entry = NULL;
Larry Finger0c817332010-12-08 11:12:31 -06001730
Chaoming_Liacd48572011-04-25 12:52:54 -05001731 if (sta == NULL)
1732 return -EINVAL;
Larry Finger0c817332010-12-08 11:12:31 -06001733
1734 if (unlikely(tid >= MAX_TID_COUNT))
1735 return -EINVAL;
1736
Chaoming_Liacd48572011-04-25 12:52:54 -05001737 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1738 if (!sta_entry)
Larry Finger0c817332010-12-08 11:12:31 -06001739 return -ENXIO;
Chaoming_Liacd48572011-04-25 12:52:54 -05001740 tid_data = &sta_entry->tids[tid];
Larry Finger0c817332010-12-08 11:12:31 -06001741
Larry Finger9afa2e42014-09-22 09:39:21 -05001742 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1743 "on ra = %pM tid = %d seq:%d\n", sta->addr, tid,
Ping-Ke Shih1d1aa8f2017-10-24 10:03:31 +08001744 *ssn);
Larry Finger0c817332010-12-08 11:12:31 -06001745
Chaoming_Liacd48572011-04-25 12:52:54 -05001746 tid_data->agg.agg_state = RTL_AGG_START;
1747
Larry Finger9afa2e42014-09-22 09:39:21 -05001748 ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Larry Finger0c817332010-12-08 11:12:31 -06001749 return 0;
1750}
1751
Larry Fingerf7953b22014-09-22 09:39:20 -05001752int rtl_tx_agg_stop(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1753 struct ieee80211_sta *sta, u16 tid)
Larry Finger0c817332010-12-08 11:12:31 -06001754{
Larry Finger0c817332010-12-08 11:12:31 -06001755 struct rtl_priv *rtlpriv = rtl_priv(hw);
Chaoming_Liacd48572011-04-25 12:52:54 -05001756 struct rtl_sta_info *sta_entry = NULL;
Larry Finger0c817332010-12-08 11:12:31 -06001757
Chaoming_Liacd48572011-04-25 12:52:54 -05001758 if (sta == NULL)
1759 return -EINVAL;
1760
Larry Finger9afa2e42014-09-22 09:39:21 -05001761 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1762 "on ra = %pM tid = %d\n", sta->addr, tid);
Chaoming_Liacd48572011-04-25 12:52:54 -05001763
Larry Finger0c817332010-12-08 11:12:31 -06001764 if (unlikely(tid >= MAX_TID_COUNT))
1765 return -EINVAL;
1766
Chaoming_Liacd48572011-04-25 12:52:54 -05001767 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
Chaoming_Liacd48572011-04-25 12:52:54 -05001768 sta_entry->tids[tid].agg.agg_state = RTL_AGG_STOP;
Larry Finger0c817332010-12-08 11:12:31 -06001769
Larry Finger9afa2e42014-09-22 09:39:21 -05001770 ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
Chaoming_Liacd48572011-04-25 12:52:54 -05001771 return 0;
1772}
Larry Finger0c817332010-12-08 11:12:31 -06001773
Larry Finger26634c42013-03-24 22:06:33 -05001774int rtl_rx_agg_start(struct ieee80211_hw *hw,
1775 struct ieee80211_sta *sta, u16 tid)
1776{
1777 struct rtl_priv *rtlpriv = rtl_priv(hw);
1778 struct rtl_tid_data *tid_data;
1779 struct rtl_sta_info *sta_entry = NULL;
Ping-Ke Shih26356642017-06-18 11:12:47 -05001780 u8 reject_agg;
Larry Finger26634c42013-03-24 22:06:33 -05001781
1782 if (sta == NULL)
1783 return -EINVAL;
1784
1785 if (unlikely(tid >= MAX_TID_COUNT))
1786 return -EINVAL;
1787
Ping-Ke Shih26356642017-06-18 11:12:47 -05001788 if (rtlpriv->cfg->ops->get_btc_status()) {
1789 rtlpriv->btcoexist.btc_ops->btc_get_ampdu_cfg(rtlpriv,
1790 &reject_agg,
1791 NULL, NULL);
1792 if (reject_agg)
1793 return -EINVAL;
1794 }
1795
Larry Finger26634c42013-03-24 22:06:33 -05001796 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1797 if (!sta_entry)
1798 return -ENXIO;
1799 tid_data = &sta_entry->tids[tid];
1800
1801 RT_TRACE(rtlpriv, COMP_RECV, DBG_DMESG,
Ping-Ke Shih1d1aa8f2017-10-24 10:03:31 +08001802 "on ra = %pM tid = %d\n", sta->addr, tid);
Larry Finger26634c42013-03-24 22:06:33 -05001803
1804 tid_data->agg.rx_agg_state = RTL_RX_AGG_START;
1805 return 0;
1806}
1807
1808int rtl_rx_agg_stop(struct ieee80211_hw *hw,
1809 struct ieee80211_sta *sta, u16 tid)
1810{
1811 struct rtl_priv *rtlpriv = rtl_priv(hw);
1812 struct rtl_sta_info *sta_entry = NULL;
1813
1814 if (sta == NULL)
1815 return -EINVAL;
1816
Larry Finger26634c42013-03-24 22:06:33 -05001817 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1818 "on ra = %pM tid = %d\n", sta->addr, tid);
1819
1820 if (unlikely(tid >= MAX_TID_COUNT))
1821 return -EINVAL;
1822
1823 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1824 sta_entry->tids[tid].agg.rx_agg_state = RTL_RX_AGG_STOP;
1825
1826 return 0;
1827}
Chaoming_Liacd48572011-04-25 12:52:54 -05001828int rtl_tx_agg_oper(struct ieee80211_hw *hw,
1829 struct ieee80211_sta *sta, u16 tid)
1830{
1831 struct rtl_priv *rtlpriv = rtl_priv(hw);
Chaoming_Liacd48572011-04-25 12:52:54 -05001832 struct rtl_sta_info *sta_entry = NULL;
1833
1834 if (sta == NULL)
1835 return -EINVAL;
1836
Larry Finger9afa2e42014-09-22 09:39:21 -05001837 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1838 "on ra = %pM tid = %d\n", sta->addr, tid);
Chaoming_Liacd48572011-04-25 12:52:54 -05001839
1840 if (unlikely(tid >= MAX_TID_COUNT))
1841 return -EINVAL;
1842
1843 sta_entry = (struct rtl_sta_info *)sta->drv_priv;
Chaoming_Liacd48572011-04-25 12:52:54 -05001844 sta_entry->tids[tid].agg.agg_state = RTL_AGG_OPERATIONAL;
Larry Finger0c817332010-12-08 11:12:31 -06001845
1846 return 0;
1847}
1848
Ping-Ke Shih26356642017-06-18 11:12:47 -05001849void rtl_rx_ampdu_apply(struct rtl_priv *rtlpriv)
1850{
1851 struct rtl_btc_ops *btc_ops = rtlpriv->btcoexist.btc_ops;
Nicolas Ioosse4779162017-12-10 20:51:59 +01001852 u8 reject_agg = 0, ctrl_agg_size = 0, agg_size = 0;
Ping-Ke Shih26356642017-06-18 11:12:47 -05001853
1854 if (rtlpriv->cfg->ops->get_btc_status())
1855 btc_ops->btc_get_ampdu_cfg(rtlpriv, &reject_agg,
1856 &ctrl_agg_size, &agg_size);
1857
1858 RT_TRACE(rtlpriv, COMP_BT_COEXIST, DBG_DMESG,
1859 "Set RX AMPDU: coex - reject=%d, ctrl_agg_size=%d, size=%d",
1860 reject_agg, ctrl_agg_size, agg_size);
1861
1862 rtlpriv->hw->max_rx_aggregation_subframes =
1863 (ctrl_agg_size ? agg_size : IEEE80211_MAX_AMPDU_BUF);
1864}
1865EXPORT_SYMBOL(rtl_rx_ampdu_apply);
1866
Larry Finger0c817332010-12-08 11:12:31 -06001867/*********************************************************
1868 *
1869 * wq & timer callback functions
1870 *
1871 *********************************************************/
Larry Finger26634c42013-03-24 22:06:33 -05001872/* this function is used for roaming */
1873void rtl_beacon_statistic(struct ieee80211_hw *hw, struct sk_buff *skb)
1874{
1875 struct rtl_priv *rtlpriv = rtl_priv(hw);
1876 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1877
1878 if (rtlpriv->mac80211.opmode != NL80211_IFTYPE_STATION)
1879 return;
1880
1881 if (rtlpriv->mac80211.link_state < MAC80211_LINKED)
1882 return;
1883
1884 /* check if this really is a beacon */
1885 if (!ieee80211_is_beacon(hdr->frame_control) &&
1886 !ieee80211_is_probe_resp(hdr->frame_control))
1887 return;
1888
1889 /* min. beacon length + FCS_LEN */
1890 if (skb->len <= 40 + FCS_LEN)
1891 return;
1892
1893 /* and only beacons from the associated BSSID, please */
Larry Finger9afa2e42014-09-22 09:39:21 -05001894 if (!ether_addr_equal(hdr->addr3, rtlpriv->mac80211.bssid))
Larry Finger26634c42013-03-24 22:06:33 -05001895 return;
1896
1897 rtlpriv->link_info.bcn_rx_inperiod++;
1898}
Larry Finger6f334c22013-07-12 15:32:15 -05001899EXPORT_SYMBOL_GPL(rtl_beacon_statistic);
Larry Finger26634c42013-03-24 22:06:33 -05001900
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -05001901static void rtl_free_entries_from_scan_list(struct ieee80211_hw *hw)
1902{
1903 struct rtl_priv *rtlpriv = rtl_priv(hw);
1904 struct rtl_bssid_entry *entry, *next;
1905
1906 list_for_each_entry_safe(entry, next, &rtlpriv->scan_list.list, list) {
1907 list_del(&entry->list);
1908 kfree(entry);
1909 rtlpriv->scan_list.num--;
1910 }
1911}
1912
1913void rtl_scan_list_expire(struct ieee80211_hw *hw)
1914{
1915 struct rtl_priv *rtlpriv = rtl_priv(hw);
1916 struct rtl_bssid_entry *entry, *next;
1917 unsigned long flags;
1918
1919 spin_lock_irqsave(&rtlpriv->locks.scan_list_lock, flags);
1920
1921 list_for_each_entry_safe(entry, next, &rtlpriv->scan_list.list, list) {
1922 /* 180 seconds */
1923 if (jiffies_to_msecs(jiffies - entry->age) < 180000)
1924 continue;
1925
1926 list_del(&entry->list);
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -05001927 rtlpriv->scan_list.num--;
1928
1929 RT_TRACE(rtlpriv, COMP_SCAN, DBG_LOUD,
1930 "BSSID=%pM is expire in scan list (total=%d)\n",
1931 entry->bssid, rtlpriv->scan_list.num);
Colin Ian Kingd0116f62017-06-30 11:08:43 +01001932 kfree(entry);
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -05001933 }
1934
1935 spin_unlock_irqrestore(&rtlpriv->locks.scan_list_lock, flags);
1936
1937 rtlpriv->btcoexist.btc_info.ap_num = rtlpriv->scan_list.num;
1938}
1939
1940void rtl_collect_scan_list(struct ieee80211_hw *hw, struct sk_buff *skb)
1941{
1942 struct rtl_priv *rtlpriv = rtl_priv(hw);
1943 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1944 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
1945 unsigned long flags;
1946
1947 struct rtl_bssid_entry *entry;
1948 bool entry_found = false;
1949
1950 /* check if it is scanning */
1951 if (!mac->act_scanning)
1952 return;
1953
1954 /* check if this really is a beacon */
1955 if (!ieee80211_is_beacon(hdr->frame_control) &&
1956 !ieee80211_is_probe_resp(hdr->frame_control))
1957 return;
1958
1959 spin_lock_irqsave(&rtlpriv->locks.scan_list_lock, flags);
1960
1961 list_for_each_entry(entry, &rtlpriv->scan_list.list, list) {
1962 if (memcmp(entry->bssid, hdr->addr3, ETH_ALEN) == 0) {
1963 list_del_init(&entry->list);
1964 entry_found = true;
1965 RT_TRACE(rtlpriv, COMP_SCAN, DBG_LOUD,
1966 "Update BSSID=%pM to scan list (total=%d)\n",
1967 hdr->addr3, rtlpriv->scan_list.num);
1968 break;
1969 }
1970 }
1971
1972 if (!entry_found) {
1973 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
1974
1975 if (!entry)
1976 goto label_err;
1977
1978 memcpy(entry->bssid, hdr->addr3, ETH_ALEN);
1979 rtlpriv->scan_list.num++;
1980
1981 RT_TRACE(rtlpriv, COMP_SCAN, DBG_LOUD,
1982 "Add BSSID=%pM to scan list (total=%d)\n",
1983 hdr->addr3, rtlpriv->scan_list.num);
1984 }
1985
1986 entry->age = jiffies;
1987
1988 list_add_tail(&entry->list, &rtlpriv->scan_list.list);
1989
1990label_err:
1991 spin_unlock_irqrestore(&rtlpriv->locks.scan_list_lock, flags);
1992}
1993EXPORT_SYMBOL(rtl_collect_scan_list);
1994
Larry Finger0c817332010-12-08 11:12:31 -06001995void rtl_watchdog_wq_callback(void *data)
1996{
1997 struct rtl_works *rtlworks = container_of_dwork_rtl(data,
1998 struct rtl_works,
1999 watchdog_wq);
2000 struct ieee80211_hw *hw = rtlworks->hw;
2001 struct rtl_priv *rtlpriv = rtl_priv(hw);
2002 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
2003 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
Larry Finger7ea47242011-02-19 16:28:57 -06002004 bool busytraffic = false;
Larry Finger26634c42013-03-24 22:06:33 -05002005 bool tx_busy_traffic = false;
2006 bool rx_busy_traffic = false;
Larry Finger7ea47242011-02-19 16:28:57 -06002007 bool higher_busytraffic = false;
2008 bool higher_busyrxtraffic = false;
Chaoming_Liacd48572011-04-25 12:52:54 -05002009 u8 idx, tid;
Larry Finger0c817332010-12-08 11:12:31 -06002010 u32 rx_cnt_inp4eriod = 0;
2011 u32 tx_cnt_inp4eriod = 0;
2012 u32 aver_rx_cnt_inperiod = 0;
2013 u32 aver_tx_cnt_inperiod = 0;
Chaoming_Liacd48572011-04-25 12:52:54 -05002014 u32 aver_tidtx_inperiod[MAX_TID_COUNT] = {0};
2015 u32 tidtx_inp4eriod[MAX_TID_COUNT] = {0};
Larry Finger0c817332010-12-08 11:12:31 -06002016
2017 if (is_hal_stop(rtlhal))
2018 return;
2019
2020 /* <1> Determine if action frame is allowed */
2021 if (mac->link_state > MAC80211_NOLINK) {
2022 if (mac->cnt_after_linked < 20)
2023 mac->cnt_after_linked++;
2024 } else {
2025 mac->cnt_after_linked = 0;
2026 }
2027
Larry Finger9afa2e42014-09-22 09:39:21 -05002028 /* <2> to check if traffic busy, if
Larry Finger0c817332010-12-08 11:12:31 -06002029 * busytraffic we don't change channel
2030 */
2031 if (mac->link_state >= MAC80211_LINKED) {
2032
2033 /* (1) get aver_rx_cnt_inperiod & aver_tx_cnt_inperiod */
2034 for (idx = 0; idx <= 2; idx++) {
2035 rtlpriv->link_info.num_rx_in4period[idx] =
2036 rtlpriv->link_info.num_rx_in4period[idx + 1];
2037 rtlpriv->link_info.num_tx_in4period[idx] =
2038 rtlpriv->link_info.num_tx_in4period[idx + 1];
2039 }
2040 rtlpriv->link_info.num_rx_in4period[3] =
2041 rtlpriv->link_info.num_rx_inperiod;
2042 rtlpriv->link_info.num_tx_in4period[3] =
2043 rtlpriv->link_info.num_tx_inperiod;
2044 for (idx = 0; idx <= 3; idx++) {
2045 rx_cnt_inp4eriod +=
2046 rtlpriv->link_info.num_rx_in4period[idx];
2047 tx_cnt_inp4eriod +=
2048 rtlpriv->link_info.num_tx_in4period[idx];
2049 }
2050 aver_rx_cnt_inperiod = rx_cnt_inp4eriod / 4;
2051 aver_tx_cnt_inperiod = tx_cnt_inp4eriod / 4;
2052
2053 /* (2) check traffic busy */
Larry Finger26634c42013-03-24 22:06:33 -05002054 if (aver_rx_cnt_inperiod > 100 || aver_tx_cnt_inperiod > 100) {
Larry Finger7ea47242011-02-19 16:28:57 -06002055 busytraffic = true;
Larry Finger26634c42013-03-24 22:06:33 -05002056 if (aver_rx_cnt_inperiod > aver_tx_cnt_inperiod)
2057 rx_busy_traffic = true;
2058 else
2059 tx_busy_traffic = false;
2060 }
Larry Finger0c817332010-12-08 11:12:31 -06002061
2062 /* Higher Tx/Rx data. */
2063 if (aver_rx_cnt_inperiod > 4000 ||
2064 aver_tx_cnt_inperiod > 4000) {
Larry Finger7ea47242011-02-19 16:28:57 -06002065 higher_busytraffic = true;
Larry Finger0c817332010-12-08 11:12:31 -06002066
2067 /* Extremely high Rx data. */
2068 if (aver_rx_cnt_inperiod > 5000)
Larry Finger7ea47242011-02-19 16:28:57 -06002069 higher_busyrxtraffic = true;
Chaoming_Liacd48572011-04-25 12:52:54 -05002070 }
2071
2072 /* check every tid's tx traffic */
2073 for (tid = 0; tid <= 7; tid++) {
2074 for (idx = 0; idx <= 2; idx++)
2075 rtlpriv->link_info.tidtx_in4period[tid][idx] =
Larry Finger9afa2e42014-09-22 09:39:21 -05002076 rtlpriv->link_info.tidtx_in4period[tid]
2077 [idx + 1];
Chaoming_Liacd48572011-04-25 12:52:54 -05002078 rtlpriv->link_info.tidtx_in4period[tid][3] =
2079 rtlpriv->link_info.tidtx_inperiod[tid];
2080
2081 for (idx = 0; idx <= 3; idx++)
2082 tidtx_inp4eriod[tid] +=
Larry Finger9afa2e42014-09-22 09:39:21 -05002083 rtlpriv->link_info.tidtx_in4period[tid][idx];
Chaoming_Liacd48572011-04-25 12:52:54 -05002084 aver_tidtx_inperiod[tid] = tidtx_inp4eriod[tid] / 4;
2085 if (aver_tidtx_inperiod[tid] > 5000)
2086 rtlpriv->link_info.higher_busytxtraffic[tid] =
Larry Finger9afa2e42014-09-22 09:39:21 -05002087 true;
Larry Finger0c817332010-12-08 11:12:31 -06002088 else
Chaoming_Liacd48572011-04-25 12:52:54 -05002089 rtlpriv->link_info.higher_busytxtraffic[tid] =
Larry Finger9afa2e42014-09-22 09:39:21 -05002090 false;
Larry Finger0c817332010-12-08 11:12:31 -06002091 }
2092
Ping-Ke Shih42213f22017-06-18 11:12:49 -05002093 /* PS is controlled by coex. */
2094 if (rtlpriv->cfg->ops->get_btc_status() &&
2095 rtlpriv->btcoexist.btc_ops->btc_is_bt_ctrl_lps(rtlpriv))
2096 goto label_lps_done;
2097
Frank A. Cancio Bellod63589c2017-12-29 16:31:08 +08002098 if (rtlpriv->link_info.num_rx_inperiod +
2099 rtlpriv->link_info.num_tx_inperiod > 8 ||
2100 rtlpriv->link_info.num_rx_inperiod > 2)
Larry Fingerfd09ff92014-09-22 09:39:18 -05002101 rtl_lps_leave(hw);
wang yanqing873ffe12016-05-03 00:38:36 +08002102 else
2103 rtl_lps_enter(hw);
Ping-Ke Shih42213f22017-06-18 11:12:49 -05002104
2105label_lps_done:
2106 ;
Larry Finger0c817332010-12-08 11:12:31 -06002107 }
2108
2109 rtlpriv->link_info.num_rx_inperiod = 0;
2110 rtlpriv->link_info.num_tx_inperiod = 0;
Chaoming_Liacd48572011-04-25 12:52:54 -05002111 for (tid = 0; tid <= 7; tid++)
2112 rtlpriv->link_info.tidtx_inperiod[tid] = 0;
Larry Finger0c817332010-12-08 11:12:31 -06002113
Larry Finger7ea47242011-02-19 16:28:57 -06002114 rtlpriv->link_info.busytraffic = busytraffic;
2115 rtlpriv->link_info.higher_busytraffic = higher_busytraffic;
Larry Finger26634c42013-03-24 22:06:33 -05002116 rtlpriv->link_info.rx_busy_traffic = rx_busy_traffic;
2117 rtlpriv->link_info.tx_busy_traffic = tx_busy_traffic;
Larry Finger7ea47242011-02-19 16:28:57 -06002118 rtlpriv->link_info.higher_busyrxtraffic = higher_busyrxtraffic;
Larry Finger0c817332010-12-08 11:12:31 -06002119
Ping-Ke Shih74451b92017-09-29 14:47:56 -05002120 rtlpriv->stats.txbytesunicast_inperiod =
2121 rtlpriv->stats.txbytesunicast -
2122 rtlpriv->stats.txbytesunicast_last;
2123 rtlpriv->stats.rxbytesunicast_inperiod =
2124 rtlpriv->stats.rxbytesunicast -
2125 rtlpriv->stats.rxbytesunicast_last;
2126 rtlpriv->stats.txbytesunicast_last = rtlpriv->stats.txbytesunicast;
2127 rtlpriv->stats.rxbytesunicast_last = rtlpriv->stats.rxbytesunicast;
2128
2129 rtlpriv->stats.txbytesunicast_inperiod_tp =
2130 (u32)(rtlpriv->stats.txbytesunicast_inperiod * 8 / 2 /
2131 1024 / 1024);
2132 rtlpriv->stats.rxbytesunicast_inperiod_tp =
2133 (u32)(rtlpriv->stats.rxbytesunicast_inperiod * 8 / 2 /
2134 1024 / 1024);
2135
Chaoming_Liacd48572011-04-25 12:52:54 -05002136 /* <3> DM */
Larry Finger9afa2e42014-09-22 09:39:21 -05002137 if (!rtlpriv->cfg->mod_params->disable_watchdog)
2138 rtlpriv->cfg->ops->dm_watchdog(hw);
Larry Finger26634c42013-03-24 22:06:33 -05002139
2140 /* <4> roaming */
2141 if (mac->link_state == MAC80211_LINKED &&
2142 mac->opmode == NL80211_IFTYPE_STATION) {
2143 if ((rtlpriv->link_info.bcn_rx_inperiod +
Larry Finger9afa2e42014-09-22 09:39:21 -05002144 rtlpriv->link_info.num_rx_inperiod) == 0) {
Larry Finger26634c42013-03-24 22:06:33 -05002145 rtlpriv->link_info.roam_times++;
2146 RT_TRACE(rtlpriv, COMP_ERR, DBG_DMESG,
2147 "AP off for %d s\n",
Larry Finger9afa2e42014-09-22 09:39:21 -05002148 (rtlpriv->link_info.roam_times * 2));
Larry Finger26634c42013-03-24 22:06:33 -05002149
Larry Finger9afa2e42014-09-22 09:39:21 -05002150 /* if we can't recv beacon for 10s,
2151 * we should reconnect this AP
Larry Finger26634c42013-03-24 22:06:33 -05002152 */
Larry Finger9afa2e42014-09-22 09:39:21 -05002153 if (rtlpriv->link_info.roam_times >= 5) {
Larry Fingerb03d9682016-12-15 12:22:58 -06002154 pr_err("AP off, try to reconnect now\n");
Larry Finger26634c42013-03-24 22:06:33 -05002155 rtlpriv->link_info.roam_times = 0;
Larry Finger9afa2e42014-09-22 09:39:21 -05002156 ieee80211_connection_loss(
2157 rtlpriv->mac80211.vif);
Larry Finger26634c42013-03-24 22:06:33 -05002158 }
2159 } else {
2160 rtlpriv->link_info.roam_times = 0;
2161 }
2162 }
Larry Finger9afa2e42014-09-22 09:39:21 -05002163
2164 if (rtlpriv->cfg->ops->get_btc_status())
2165 rtlpriv->btcoexist.btc_ops->btc_periodical(rtlpriv);
2166
Ping-Ke Shih11f35c92017-07-02 13:12:30 -05002167 if (rtlpriv->btcoexist.btc_info.in_4way) {
2168 if (time_after(jiffies, rtlpriv->btcoexist.btc_info.in_4way_ts +
2169 msecs_to_jiffies(IN_4WAY_TIMEOUT_TIME)))
2170 rtlpriv->btcoexist.btc_info.in_4way = false;
2171 }
2172
Larry Finger26634c42013-03-24 22:06:33 -05002173 rtlpriv->link_info.bcn_rx_inperiod = 0;
Ping-Ke Shihc76ab8e2017-06-21 12:15:37 -05002174
2175 /* <6> scan list */
2176 rtl_scan_list_expire(hw);
Larry Finger0c817332010-12-08 11:12:31 -06002177}
2178
Kees Cook7c51d17c2017-10-24 02:28:29 -07002179void rtl_watch_dog_timer_callback(struct timer_list *t)
Larry Finger0c817332010-12-08 11:12:31 -06002180{
Kees Cook7c51d17c2017-10-24 02:28:29 -07002181 struct rtl_priv *rtlpriv = from_timer(rtlpriv, t, works.watchdog_timer);
Larry Finger0c817332010-12-08 11:12:31 -06002182
2183 queue_delayed_work(rtlpriv->works.rtl_wq,
2184 &rtlpriv->works.watchdog_wq, 0);
2185
2186 mod_timer(&rtlpriv->works.watchdog_timer,
2187 jiffies + MSECS(RTL_WATCH_DOG_TIME));
2188}
Larry Finger26634c42013-03-24 22:06:33 -05002189void rtl_fwevt_wq_callback(void *data)
2190{
2191 struct rtl_works *rtlworks =
2192 container_of_dwork_rtl(data, struct rtl_works, fwevt_wq);
2193 struct ieee80211_hw *hw = rtlworks->hw;
2194 struct rtl_priv *rtlpriv = rtl_priv(hw);
2195
2196 rtlpriv->cfg->ops->c2h_command_handle(hw);
2197}
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -06002198
2199void rtl_c2hcmd_enqueue(struct ieee80211_hw *hw, u8 tag, u8 len, u8 *val)
2200{
2201 struct rtl_priv *rtlpriv = rtl_priv(hw);
2202 unsigned long flags;
2203 struct rtl_c2hcmd *c2hcmd;
2204
Larry Finger893dc682017-03-21 09:24:11 -05002205 c2hcmd = kmalloc(sizeof(*c2hcmd),
2206 in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -06002207
2208 if (!c2hcmd)
2209 goto label_err;
2210
Larry Finger893dc682017-03-21 09:24:11 -05002211 c2hcmd->val = kmalloc(len,
2212 in_interrupt() ? GFP_ATOMIC : GFP_KERNEL);
Ping-Ke Shihcceb0a52017-02-06 21:30:08 -06002213
2214 if (!c2hcmd->val)
2215 goto label_err2;
2216
2217 /* fill data */
2218 c2hcmd->tag = tag;
2219 c2hcmd->len = len;
2220 memcpy(c2hcmd->val, val, len);
2221
2222 /* enqueue */
2223 spin_lock_irqsave(&rtlpriv->locks.c2hcmd_lock, flags);
2224
2225 list_add_tail(&c2hcmd->list, &rtlpriv->c2hcmd_list);
2226
2227 spin_unlock_irqrestore(&rtlpriv->locks.c2hcmd_lock, flags);
2228
2229 /* wake up wq */
2230 queue_delayed_work(rtlpriv->works.rtl_wq, &rtlpriv->works.c2hcmd_wq, 0);
2231
2232 return;
2233
2234label_err2:
2235 kfree(c2hcmd);
2236
2237label_err:
2238 RT_TRACE(rtlpriv, COMP_CMD, DBG_WARNING,
2239 "C2H cmd enqueue fail.\n");
2240}
2241EXPORT_SYMBOL(rtl_c2hcmd_enqueue);
2242
2243void rtl_c2hcmd_launcher(struct ieee80211_hw *hw, int exec)
2244{
2245 struct rtl_priv *rtlpriv = rtl_priv(hw);
2246 unsigned long flags;
2247 struct rtl_c2hcmd *c2hcmd;
2248 int i;
2249
2250 for (i = 0; i < 200; i++) {
2251 /* dequeue a task */
2252 spin_lock_irqsave(&rtlpriv->locks.c2hcmd_lock, flags);
2253
2254 c2hcmd = list_first_entry_or_null(&rtlpriv->c2hcmd_list,
2255 struct rtl_c2hcmd, list);
2256
2257 if (c2hcmd)
2258 list_del(&c2hcmd->list);
2259
2260 spin_unlock_irqrestore(&rtlpriv->locks.c2hcmd_lock, flags);
2261
2262 /* do it */
2263 if (!c2hcmd)
2264 break;
2265
2266 if (rtlpriv->cfg->ops->c2h_content_parsing && exec)
2267 rtlpriv->cfg->ops->c2h_content_parsing(hw,
2268 c2hcmd->tag, c2hcmd->len, c2hcmd->val);
2269
2270 /* free */
2271 kfree(c2hcmd->val);
2272
2273 kfree(c2hcmd);
2274 }
2275}
2276
2277void rtl_c2hcmd_wq_callback(void *data)
2278{
2279 struct rtl_works *rtlworks = container_of_dwork_rtl(data,
2280 struct rtl_works,
2281 c2hcmd_wq);
2282 struct ieee80211_hw *hw = rtlworks->hw;
2283
2284 rtl_c2hcmd_launcher(hw, 1);
2285}
2286
Kees Cook7c51d17c2017-10-24 02:28:29 -07002287void rtl_easy_concurrent_retrytimer_callback(struct timer_list *t)
Larry Finger26634c42013-03-24 22:06:33 -05002288{
Kees Cook7c51d17c2017-10-24 02:28:29 -07002289 struct rtl_priv *rtlpriv =
2290 from_timer(rtlpriv, t, works.dualmac_easyconcurrent_retrytimer);
2291 struct ieee80211_hw *hw = rtlpriv->hw;
Larry Finger26634c42013-03-24 22:06:33 -05002292 struct rtl_priv *buddy_priv = rtlpriv->buddy_priv;
2293
2294 if (buddy_priv == NULL)
2295 return;
2296
2297 rtlpriv->cfg->ops->dualmac_easy_concurrent(hw);
2298}
Larry Finger0c817332010-12-08 11:12:31 -06002299/*********************************************************
2300 *
Chaoming_Liacd48572011-04-25 12:52:54 -05002301 * frame process functions
2302 *
2303 *********************************************************/
2304u8 *rtl_find_ie(u8 *data, unsigned int len, u8 ie)
2305{
2306 struct ieee80211_mgmt *mgmt = (void *)data;
2307 u8 *pos, *end;
2308
2309 pos = (u8 *)mgmt->u.beacon.variable;
2310 end = data + len;
2311 while (pos < end) {
2312 if (pos + 2 + pos[1] > end)
2313 return NULL;
2314
2315 if (pos[0] == ie)
2316 return pos;
2317
2318 pos += 2 + pos[1];
2319 }
2320 return NULL;
2321}
2322
2323/* when we use 2 rx ants we send IEEE80211_SMPS_OFF */
2324/* when we use 1 rx ant we send IEEE80211_SMPS_STATIC */
Larry Fingerd3bb1422011-04-25 13:23:20 -05002325static struct sk_buff *rtl_make_smps_action(struct ieee80211_hw *hw,
Larry Finger9afa2e42014-09-22 09:39:21 -05002326 enum ieee80211_smps_mode smps,
2327 u8 *da, u8 *bssid)
Chaoming_Liacd48572011-04-25 12:52:54 -05002328{
2329 struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
2330 struct sk_buff *skb;
2331 struct ieee80211_mgmt *action_frame;
2332
2333 /* 27 = header + category + action + smps mode */
2334 skb = dev_alloc_skb(27 + hw->extra_tx_headroom);
2335 if (!skb)
2336 return NULL;
2337
2338 skb_reserve(skb, hw->extra_tx_headroom);
Johannes Bergb080db52017-06-16 14:29:19 +02002339 action_frame = skb_put_zero(skb, 27);
Chaoming_Liacd48572011-04-25 12:52:54 -05002340 memcpy(action_frame->da, da, ETH_ALEN);
2341 memcpy(action_frame->sa, rtlefuse->dev_addr, ETH_ALEN);
2342 memcpy(action_frame->bssid, bssid, ETH_ALEN);
2343 action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2344 IEEE80211_STYPE_ACTION);
2345 action_frame->u.action.category = WLAN_CATEGORY_HT;
2346 action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS;
2347 switch (smps) {
2348 case IEEE80211_SMPS_AUTOMATIC:/* 0 */
2349 case IEEE80211_SMPS_NUM_MODES:/* 4 */
2350 WARN_ON(1);
Gustavo A. R. Silva032cf9a2017-12-29 16:31:07 +08002351 /* fall through */
Chaoming_Liacd48572011-04-25 12:52:54 -05002352 case IEEE80211_SMPS_OFF:/* 1 */ /*MIMO_PS_NOLIMIT*/
2353 action_frame->u.action.u.ht_smps.smps_control =
2354 WLAN_HT_SMPS_CONTROL_DISABLED;/* 0 */
2355 break;
2356 case IEEE80211_SMPS_STATIC:/* 2 */ /*MIMO_PS_STATIC*/
2357 action_frame->u.action.u.ht_smps.smps_control =
2358 WLAN_HT_SMPS_CONTROL_STATIC;/* 1 */
2359 break;
2360 case IEEE80211_SMPS_DYNAMIC:/* 3 */ /*MIMO_PS_DYNAMIC*/
2361 action_frame->u.action.u.ht_smps.smps_control =
2362 WLAN_HT_SMPS_CONTROL_DYNAMIC;/* 3 */
2363 break;
2364 }
2365
2366 return skb;
2367}
2368
2369int rtl_send_smps_action(struct ieee80211_hw *hw,
Larry Finger9afa2e42014-09-22 09:39:21 -05002370 struct ieee80211_sta *sta,
2371 enum ieee80211_smps_mode smps)
Chaoming_Liacd48572011-04-25 12:52:54 -05002372{
2373 struct rtl_priv *rtlpriv = rtl_priv(hw);
2374 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
2375 struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
Larry Finger26634c42013-03-24 22:06:33 -05002376 struct sk_buff *skb = NULL;
Chaoming_Liacd48572011-04-25 12:52:54 -05002377 struct rtl_tcb_desc tcb_desc;
Larry Finger26634c42013-03-24 22:06:33 -05002378 u8 bssid[ETH_ALEN] = {0};
2379
Chaoming_Liacd48572011-04-25 12:52:54 -05002380 memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc));
2381
2382 if (rtlpriv->mac80211.act_scanning)
2383 goto err_free;
2384
2385 if (!sta)
2386 goto err_free;
2387
2388 if (unlikely(is_hal_stop(rtlhal) || ppsc->rfpwr_state != ERFON))
2389 goto err_free;
2390
2391 if (!test_bit(RTL_STATUS_INTERFACE_START, &rtlpriv->status))
2392 goto err_free;
2393
Larry Finger26634c42013-03-24 22:06:33 -05002394 if (rtlpriv->mac80211.opmode == NL80211_IFTYPE_AP)
2395 memcpy(bssid, rtlpriv->efuse.dev_addr, ETH_ALEN);
2396 else
2397 memcpy(bssid, rtlpriv->mac80211.bssid, ETH_ALEN);
2398
2399 skb = rtl_make_smps_action(hw, smps, sta->addr, bssid);
Chaoming_Liacd48572011-04-25 12:52:54 -05002400 /* this is a type = mgmt * stype = action frame */
2401 if (skb) {
2402 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2403 struct rtl_sta_info *sta_entry =
2404 (struct rtl_sta_info *) sta->drv_priv;
2405 sta_entry->mimo_ps = smps;
Ping-Ke Shih1d22b172017-09-29 14:47:59 -05002406 /* rtlpriv->cfg->ops->update_rate_tbl(hw, sta, 0, true); */
Chaoming_Liacd48572011-04-25 12:52:54 -05002407
2408 info->control.rates[0].idx = 0;
Karl Beldan675a0b02013-03-25 16:26:57 +01002409 info->band = hw->conf.chandef.chan->band;
Thomas Huehn36323f82012-07-23 21:33:42 +02002410 rtlpriv->intf_ops->adapter_tx(hw, sta, skb, &tcb_desc);
Chaoming_Liacd48572011-04-25 12:52:54 -05002411 }
Larry Finger26634c42013-03-24 22:06:33 -05002412 return 1;
2413
Chaoming_Liacd48572011-04-25 12:52:54 -05002414err_free:
2415 return 0;
2416}
Larry Finger26634c42013-03-24 22:06:33 -05002417EXPORT_SYMBOL(rtl_send_smps_action);
2418
Larry Finger4f4826d2013-09-26 13:25:27 -05002419void rtl_phy_scan_operation_backup(struct ieee80211_hw *hw, u8 operation)
2420{
2421 struct rtl_priv *rtlpriv = rtl_priv(hw);
2422 struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
2423 enum io_type iotype;
2424
2425 if (!is_hal_stop(rtlhal)) {
2426 switch (operation) {
2427 case SCAN_OPT_BACKUP:
2428 iotype = IO_CMD_PAUSE_DM_BY_SCAN;
2429 rtlpriv->cfg->ops->set_hw_reg(hw,
2430 HW_VAR_IO_CMD,
2431 (u8 *)&iotype);
2432 break;
2433 case SCAN_OPT_RESTORE:
2434 iotype = IO_CMD_RESUME_DM_BY_SCAN;
2435 rtlpriv->cfg->ops->set_hw_reg(hw,
2436 HW_VAR_IO_CMD,
2437 (u8 *)&iotype);
2438 break;
2439 default:
Larry Fingerb03d9682016-12-15 12:22:58 -06002440 pr_err("Unknown Scan Backup operation.\n");
Larry Finger4f4826d2013-09-26 13:25:27 -05002441 break;
2442 }
2443 }
2444}
2445EXPORT_SYMBOL(rtl_phy_scan_operation_backup);
2446
Larry Finger9afa2e42014-09-22 09:39:21 -05002447/* because mac80211 have issues when can receive del ba
2448 * so here we just make a fake del_ba if we receive a ba_req
2449 * but rx_agg was opened to let mac80211 release some ba
2450 * related resources, so please this del_ba for tx
Larry Finger26634c42013-03-24 22:06:33 -05002451 */
2452struct sk_buff *rtl_make_del_ba(struct ieee80211_hw *hw,
2453 u8 *sa, u8 *bssid, u16 tid)
2454{
2455 struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
2456 struct sk_buff *skb;
2457 struct ieee80211_mgmt *action_frame;
2458 u16 params;
2459
2460 /* 27 = header + category + action + smps mode */
2461 skb = dev_alloc_skb(34 + hw->extra_tx_headroom);
2462 if (!skb)
2463 return NULL;
2464
2465 skb_reserve(skb, hw->extra_tx_headroom);
Johannes Bergb080db52017-06-16 14:29:19 +02002466 action_frame = skb_put_zero(skb, 34);
Larry Finger26634c42013-03-24 22:06:33 -05002467 memcpy(action_frame->sa, sa, ETH_ALEN);
2468 memcpy(action_frame->da, rtlefuse->dev_addr, ETH_ALEN);
2469 memcpy(action_frame->bssid, bssid, ETH_ALEN);
2470 action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2471 IEEE80211_STYPE_ACTION);
2472 action_frame->u.action.category = WLAN_CATEGORY_BACK;
2473 action_frame->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
2474 params = (u16)(1 << 11); /* bit 11 initiator */
Larry Finger9afa2e42014-09-22 09:39:21 -05002475 params |= (u16)(tid << 12); /* bit 15:12 TID number */
Larry Finger26634c42013-03-24 22:06:33 -05002476
2477 action_frame->u.action.u.delba.params = cpu_to_le16(params);
2478 action_frame->u.action.u.delba.reason_code =
2479 cpu_to_le16(WLAN_REASON_QSTA_TIMEOUT);
2480
2481 return skb;
2482}
Chaoming_Liacd48572011-04-25 12:52:54 -05002483
2484/*********************************************************
2485 *
2486 * IOT functions
2487 *
2488 *********************************************************/
2489static bool rtl_chk_vendor_ouisub(struct ieee80211_hw *hw,
Larry Finger9afa2e42014-09-22 09:39:21 -05002490 struct octet_string vendor_ie)
Chaoming_Liacd48572011-04-25 12:52:54 -05002491{
2492 struct rtl_priv *rtlpriv = rtl_priv(hw);
2493 bool matched = false;
2494 static u8 athcap_1[] = { 0x00, 0x03, 0x7F };
2495 static u8 athcap_2[] = { 0x00, 0x13, 0x74 };
2496 static u8 broadcap_1[] = { 0x00, 0x10, 0x18 };
2497 static u8 broadcap_2[] = { 0x00, 0x0a, 0xf7 };
2498 static u8 broadcap_3[] = { 0x00, 0x05, 0xb5 };
2499 static u8 racap[] = { 0x00, 0x0c, 0x43 };
2500 static u8 ciscocap[] = { 0x00, 0x40, 0x96 };
2501 static u8 marvcap[] = { 0x00, 0x50, 0x43 };
2502
2503 if (memcmp(vendor_ie.octet, athcap_1, 3) == 0 ||
2504 memcmp(vendor_ie.octet, athcap_2, 3) == 0) {
2505 rtlpriv->mac80211.vendor = PEER_ATH;
2506 matched = true;
2507 } else if (memcmp(vendor_ie.octet, broadcap_1, 3) == 0 ||
2508 memcmp(vendor_ie.octet, broadcap_2, 3) == 0 ||
2509 memcmp(vendor_ie.octet, broadcap_3, 3) == 0) {
2510 rtlpriv->mac80211.vendor = PEER_BROAD;
2511 matched = true;
2512 } else if (memcmp(vendor_ie.octet, racap, 3) == 0) {
2513 rtlpriv->mac80211.vendor = PEER_RAL;
2514 matched = true;
2515 } else if (memcmp(vendor_ie.octet, ciscocap, 3) == 0) {
2516 rtlpriv->mac80211.vendor = PEER_CISCO;
2517 matched = true;
2518 } else if (memcmp(vendor_ie.octet, marvcap, 3) == 0) {
2519 rtlpriv->mac80211.vendor = PEER_MARV;
2520 matched = true;
2521 }
2522
2523 return matched;
2524}
2525
Larry Fingerd3bb1422011-04-25 13:23:20 -05002526static bool rtl_find_221_ie(struct ieee80211_hw *hw, u8 *data,
Chaoming_Liacd48572011-04-25 12:52:54 -05002527 unsigned int len)
2528{
2529 struct ieee80211_mgmt *mgmt = (void *)data;
2530 struct octet_string vendor_ie;
2531 u8 *pos, *end;
2532
2533 pos = (u8 *)mgmt->u.beacon.variable;
2534 end = data + len;
2535 while (pos < end) {
2536 if (pos[0] == 221) {
2537 vendor_ie.length = pos[1];
2538 vendor_ie.octet = &pos[2];
2539 if (rtl_chk_vendor_ouisub(hw, vendor_ie))
2540 return true;
2541 }
2542
2543 if (pos + 2 + pos[1] > end)
2544 return false;
2545
2546 pos += 2 + pos[1];
2547 }
2548 return false;
2549}
2550
2551void rtl_recognize_peer(struct ieee80211_hw *hw, u8 *data, unsigned int len)
2552{
2553 struct rtl_priv *rtlpriv = rtl_priv(hw);
2554 struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
2555 struct ieee80211_hdr *hdr = (void *)data;
2556 u32 vendor = PEER_UNKNOWN;
2557
2558 static u8 ap3_1[3] = { 0x00, 0x14, 0xbf };
2559 static u8 ap3_2[3] = { 0x00, 0x1a, 0x70 };
2560 static u8 ap3_3[3] = { 0x00, 0x1d, 0x7e };
2561 static u8 ap4_1[3] = { 0x00, 0x90, 0xcc };
2562 static u8 ap4_2[3] = { 0x00, 0x0e, 0x2e };
2563 static u8 ap4_3[3] = { 0x00, 0x18, 0x02 };
2564 static u8 ap4_4[3] = { 0x00, 0x17, 0x3f };
2565 static u8 ap4_5[3] = { 0x00, 0x1c, 0xdf };
2566 static u8 ap5_1[3] = { 0x00, 0x1c, 0xf0 };
2567 static u8 ap5_2[3] = { 0x00, 0x21, 0x91 };
2568 static u8 ap5_3[3] = { 0x00, 0x24, 0x01 };
2569 static u8 ap5_4[3] = { 0x00, 0x15, 0xe9 };
2570 static u8 ap5_5[3] = { 0x00, 0x17, 0x9A };
2571 static u8 ap5_6[3] = { 0x00, 0x18, 0xE7 };
2572 static u8 ap6_1[3] = { 0x00, 0x17, 0x94 };
2573 static u8 ap7_1[3] = { 0x00, 0x14, 0xa4 };
2574
2575 if (mac->opmode != NL80211_IFTYPE_STATION)
2576 return;
2577
2578 if (mac->link_state == MAC80211_NOLINK) {
2579 mac->vendor = PEER_UNKNOWN;
2580 return;
2581 }
2582
2583 if (mac->cnt_after_linked > 2)
2584 return;
2585
2586 /* check if this really is a beacon */
2587 if (!ieee80211_is_beacon(hdr->frame_control))
2588 return;
2589
2590 /* min. beacon length + FCS_LEN */
2591 if (len <= 40 + FCS_LEN)
2592 return;
2593
2594 /* and only beacons from the associated BSSID, please */
Julia Lawall90908e12013-12-30 19:15:02 +01002595 if (!ether_addr_equal_64bits(hdr->addr3, rtlpriv->mac80211.bssid))
Chaoming_Liacd48572011-04-25 12:52:54 -05002596 return;
2597
2598 if (rtl_find_221_ie(hw, data, len))
2599 vendor = mac->vendor;
2600
2601 if ((memcmp(mac->bssid, ap5_1, 3) == 0) ||
2602 (memcmp(mac->bssid, ap5_2, 3) == 0) ||
2603 (memcmp(mac->bssid, ap5_3, 3) == 0) ||
2604 (memcmp(mac->bssid, ap5_4, 3) == 0) ||
2605 (memcmp(mac->bssid, ap5_5, 3) == 0) ||
2606 (memcmp(mac->bssid, ap5_6, 3) == 0) ||
2607 vendor == PEER_ATH) {
2608 vendor = PEER_ATH;
Joe Perchesf30d7502012-01-04 19:40:41 -08002609 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>ath find\n");
Chaoming_Liacd48572011-04-25 12:52:54 -05002610 } else if ((memcmp(mac->bssid, ap4_4, 3) == 0) ||
2611 (memcmp(mac->bssid, ap4_5, 3) == 0) ||
2612 (memcmp(mac->bssid, ap4_1, 3) == 0) ||
2613 (memcmp(mac->bssid, ap4_2, 3) == 0) ||
2614 (memcmp(mac->bssid, ap4_3, 3) == 0) ||
2615 vendor == PEER_RAL) {
Joe Perchesf30d7502012-01-04 19:40:41 -08002616 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>ral find\n");
Chaoming_Liacd48572011-04-25 12:52:54 -05002617 vendor = PEER_RAL;
2618 } else if (memcmp(mac->bssid, ap6_1, 3) == 0 ||
2619 vendor == PEER_CISCO) {
2620 vendor = PEER_CISCO;
Joe Perchesf30d7502012-01-04 19:40:41 -08002621 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>cisco find\n");
Chaoming_Liacd48572011-04-25 12:52:54 -05002622 } else if ((memcmp(mac->bssid, ap3_1, 3) == 0) ||
2623 (memcmp(mac->bssid, ap3_2, 3) == 0) ||
2624 (memcmp(mac->bssid, ap3_3, 3) == 0) ||
2625 vendor == PEER_BROAD) {
Joe Perchesf30d7502012-01-04 19:40:41 -08002626 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>broad find\n");
Chaoming_Liacd48572011-04-25 12:52:54 -05002627 vendor = PEER_BROAD;
2628 } else if (memcmp(mac->bssid, ap7_1, 3) == 0 ||
2629 vendor == PEER_MARV) {
2630 vendor = PEER_MARV;
Joe Perchesf30d7502012-01-04 19:40:41 -08002631 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>marv find\n");
Chaoming_Liacd48572011-04-25 12:52:54 -05002632 }
2633
2634 mac->vendor = vendor;
2635}
Larry Finger6f334c22013-07-12 15:32:15 -05002636EXPORT_SYMBOL_GPL(rtl_recognize_peer);
Chaoming_Liacd48572011-04-25 12:52:54 -05002637
Larry Finger0c817332010-12-08 11:12:31 -06002638MODULE_AUTHOR("lizhaoming <chaoming_li@realsil.com.cn>");
2639MODULE_AUTHOR("Realtek WlanFAE <wlanfae@realtek.com>");
2640MODULE_AUTHOR("Larry Finger <Larry.FInger@lwfinger.net>");
2641MODULE_LICENSE("GPL");
2642MODULE_DESCRIPTION("Realtek 802.11n PCI wireless core");
2643
Larry Finger6f334c22013-07-12 15:32:15 -05002644struct rtl_global_var rtl_global_var = {};
2645EXPORT_SYMBOL_GPL(rtl_global_var);
Larry Finger26634c42013-03-24 22:06:33 -05002646
Larry Finger0c817332010-12-08 11:12:31 -06002647static int __init rtl_core_module_init(void)
2648{
Chaoming Li375ff4c2011-02-28 16:40:28 -06002649 if (rtl_rate_control_register())
Larry Finger9afa2e42014-09-22 09:39:21 -05002650 pr_err("rtl: Unable to register rtl_rc, use default RC !!\n");
Chaoming_Liacd48572011-04-25 12:52:54 -05002651
Ping-Ke Shih610247f2017-12-29 16:31:10 +08002652 /* add debugfs */
2653 rtl_debugfs_add_topdir();
2654
Larry Finger26634c42013-03-24 22:06:33 -05002655 /* init some global vars */
Larry Finger6f334c22013-07-12 15:32:15 -05002656 INIT_LIST_HEAD(&rtl_global_var.glb_priv_list);
2657 spin_lock_init(&rtl_global_var.glb_list_lock);
Larry Finger26634c42013-03-24 22:06:33 -05002658
Larry Finger0c817332010-12-08 11:12:31 -06002659 return 0;
2660}
2661
2662static void __exit rtl_core_module_exit(void)
2663{
Chaoming_Liacd48572011-04-25 12:52:54 -05002664 /*RC*/
Chaoming Li375ff4c2011-02-28 16:40:28 -06002665 rtl_rate_control_unregister();
Ping-Ke Shih610247f2017-12-29 16:31:10 +08002666
2667 /* remove debugfs */
2668 rtl_debugfs_remove_topdir();
Larry Finger0c817332010-12-08 11:12:31 -06002669}
2670
2671module_init(rtl_core_module_init);
2672module_exit(rtl_core_module_exit);