OSDN Git Service

BACKPORT: cfg80211: remove enum ieee80211_band
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / drivers / net / wireless / realtek / rtlwifi / base.c
1 /******************************************************************************
2  *
3  * Copyright(c) 2009-2012  Realtek Corporation.
4  *
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  *
14  * 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
26 #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"
33 #include "pci.h"
34 #include <linux/ip.h>
35 #include <linux/module.h>
36 #include <linux/udp.h>
37
38 /*
39  *NOTICE!!!: This file will be very big, we should
40  *keep it clear under following roles:
41  *
42  *This file include following parts, so, if you add new
43  *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
52  *6) IOT functions
53  *7) sysfs functions
54  *8) vif functions
55  *9) ...
56  */
57
58 /*********************************************************
59  *
60  * mac80211 init functions
61  *
62  *********************************************************/
63 static struct ieee80211_channel rtl_channeltable_2g[] = {
64         {.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
80 static 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
107 static struct ieee80211_rate rtl_ratetable_2g[] = {
108         {.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
122 static 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
133 static const struct ieee80211_supported_band rtl_band_2ghz = {
134         .band = NL80211_BAND_2GHZ,
135
136         .channels = rtl_channeltable_2g,
137         .n_channels = ARRAY_SIZE(rtl_channeltable_2g),
138
139         .bitrates = rtl_ratetable_2g,
140         .n_bitrates = ARRAY_SIZE(rtl_ratetable_2g),
141
142         .ht_cap = {0},
143 };
144
145 static struct ieee80211_supported_band rtl_band_5ghz = {
146         .band = NL80211_BAND_5GHZ,
147
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
157 static 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
168 u8 rtl_tid_to_ac(u8 tid)
169 {
170         return tid_to_ac[tid];
171 }
172 EXPORT_SYMBOL_GPL(rtl_tid_to_ac);
173
174 static 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
186         if (rtlpriv->rtlhal.disable_amsdu_8k)
187                 ht_cap->cap &= ~IEEE80211_HT_CAP_MAX_AMSDU;
188
189         /*
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
200         /*hw->wiphy->bands[NL80211_BAND_2GHZ]
201          *base on ant_num
202          *rx_mask: RX mask
203          *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;
207          *highest supported RX rate
208          */
209         if (rtlpriv->dm.supp_phymode_switch) {
210                 RT_TRACE(rtlpriv, COMP_INIT, DBG_EMERG,
211                          "Support phy mode switch\n");
212
213                 ht_cap->mcs.rx_mask[0] = 0xFF;
214                 ht_cap->mcs.rx_mask[1] = 0xFF;
215                 ht_cap->mcs.rx_mask[4] = 0x01;
216
217                 ht_cap->mcs.rx_highest = cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS15);
218         } else {
219                 if (get_rf_type(rtlphy) == RF_1T2R ||
220                     get_rf_type(rtlphy) == RF_2T2R) {
221                         RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG,
222                                  "1T2R or 2T2R\n");
223                         ht_cap->mcs.rx_mask[0] = 0xFF;
224                         ht_cap->mcs.rx_mask[1] = 0xFF;
225                         ht_cap->mcs.rx_mask[4] = 0x01;
226
227                         ht_cap->mcs.rx_highest =
228                                  cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS15);
229                 } else if (get_rf_type(rtlphy) == RF_1T1R) {
230                         RT_TRACE(rtlpriv, COMP_INIT, DBG_DMESG, "1T1R\n");
231
232                         ht_cap->mcs.rx_mask[0] = 0xFF;
233                         ht_cap->mcs.rx_mask[1] = 0x00;
234                         ht_cap->mcs.rx_mask[4] = 0x01;
235
236                         ht_cap->mcs.rx_highest =
237                                  cpu_to_le16(MAX_BIT_RATE_40MHZ_MCS7);
238                 }
239         }
240 }
241
242 static void _rtl_init_hw_vht_capab(struct ieee80211_hw *hw,
243                                    struct ieee80211_sta_vht_cap *vht_cap)
244 {
245         struct rtl_priv *rtlpriv = rtl_priv(hw);
246         struct rtl_hal *rtlhal = rtl_hal(rtlpriv);
247
248         if (rtlhal->hw_type == HARDWARE_TYPE_RTL8812AE) {
249                 u16 mcs_map;
250
251                 vht_cap->vht_supported = true;
252                 vht_cap->cap =
253                         IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 |
254                         IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 |
255                         IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
256                         IEEE80211_VHT_CAP_SHORT_GI_80 |
257                         IEEE80211_VHT_CAP_TXSTBC |
258                         IEEE80211_VHT_CAP_RXSTBC_1 |
259                         IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE |
260                         IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
261                         IEEE80211_VHT_CAP_HTC_VHT |
262                         IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK |
263                         IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN |
264                         IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN |
265                         0;
266
267                 mcs_map = IEEE80211_VHT_MCS_SUPPORT_0_9 << 0 |
268                         IEEE80211_VHT_MCS_SUPPORT_0_9 << 2 |
269                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 4 |
270                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 6 |
271                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 8 |
272                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 10 |
273                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 12 |
274                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 14;
275
276                 vht_cap->vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
277                 vht_cap->vht_mcs.rx_highest =
278                         cpu_to_le16(MAX_BIT_RATE_SHORT_GI_2NSS_80MHZ_MCS9);
279                 vht_cap->vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
280                 vht_cap->vht_mcs.tx_highest =
281                         cpu_to_le16(MAX_BIT_RATE_SHORT_GI_2NSS_80MHZ_MCS9);
282         } else if (rtlhal->hw_type == HARDWARE_TYPE_RTL8821AE) {
283                 u16 mcs_map;
284
285                 vht_cap->vht_supported = true;
286                 vht_cap->cap =
287                         IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_3895 |
288                         IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991 |
289                         IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
290                         IEEE80211_VHT_CAP_SHORT_GI_80 |
291                         IEEE80211_VHT_CAP_TXSTBC |
292                         IEEE80211_VHT_CAP_RXSTBC_1 |
293                         IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE |
294                         IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE |
295                         IEEE80211_VHT_CAP_HTC_VHT |
296                         IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MASK |
297                         IEEE80211_VHT_CAP_RX_ANTENNA_PATTERN |
298                         IEEE80211_VHT_CAP_TX_ANTENNA_PATTERN |
299                         0;
300
301                 mcs_map = IEEE80211_VHT_MCS_SUPPORT_0_9 << 0 |
302                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 2 |
303                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 4 |
304                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 6 |
305                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 8 |
306                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 10 |
307                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 12 |
308                         IEEE80211_VHT_MCS_NOT_SUPPORTED << 14;
309
310                 vht_cap->vht_mcs.rx_mcs_map = cpu_to_le16(mcs_map);
311                 vht_cap->vht_mcs.rx_highest =
312                         cpu_to_le16(MAX_BIT_RATE_SHORT_GI_1NSS_80MHZ_MCS9);
313                 vht_cap->vht_mcs.tx_mcs_map = cpu_to_le16(mcs_map);
314                 vht_cap->vht_mcs.tx_highest =
315                         cpu_to_le16(MAX_BIT_RATE_SHORT_GI_1NSS_80MHZ_MCS9);
316         }
317 }
318
319 static void _rtl_init_mac80211(struct ieee80211_hw *hw)
320 {
321         struct rtl_priv *rtlpriv = rtl_priv(hw);
322         struct rtl_hal *rtlhal = rtl_hal(rtlpriv);
323         struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw));
324         struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
325         struct ieee80211_supported_band *sband;
326
327         if (rtlhal->macphymode == SINGLEMAC_SINGLEPHY &&
328             rtlhal->bandset == BAND_ON_BOTH) {
329                 /* 1: 2.4 G bands */
330                 /* <1> use  mac->bands as mem for hw->wiphy->bands */
331                 sband = &(rtlmac->bands[NL80211_BAND_2GHZ]);
332
333                 /* <2> set hw->wiphy->bands[NL80211_BAND_2GHZ]
334                  * to default value(1T1R) */
335                 memcpy(&(rtlmac->bands[NL80211_BAND_2GHZ]), &rtl_band_2ghz,
336                                 sizeof(struct ieee80211_supported_band));
337
338                 /* <3> init ht cap base on ant_num */
339                 _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
340
341                 /* <4> set mac->sband to wiphy->sband */
342                 hw->wiphy->bands[NL80211_BAND_2GHZ] = sband;
343
344                 /* 2: 5 G bands */
345                 /* <1> use  mac->bands as mem for hw->wiphy->bands */
346                 sband = &(rtlmac->bands[NL80211_BAND_5GHZ]);
347
348                 /* <2> set hw->wiphy->bands[NL80211_BAND_5GHZ]
349                  * to default value(1T1R) */
350                 memcpy(&(rtlmac->bands[NL80211_BAND_5GHZ]), &rtl_band_5ghz,
351                                 sizeof(struct ieee80211_supported_band));
352
353                 /* <3> init ht cap base on ant_num */
354                 _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
355
356                 _rtl_init_hw_vht_capab(hw, &sband->vht_cap);
357                 /* <4> set mac->sband to wiphy->sband */
358                 hw->wiphy->bands[NL80211_BAND_5GHZ] = sband;
359         } else {
360                 if (rtlhal->current_bandtype == BAND_ON_2_4G) {
361                         /* <1> use  mac->bands as mem for hw->wiphy->bands */
362                         sband = &(rtlmac->bands[NL80211_BAND_2GHZ]);
363
364                         /* <2> set hw->wiphy->bands[NL80211_BAND_2GHZ]
365                          * to default value(1T1R) */
366                         memcpy(&(rtlmac->bands[NL80211_BAND_2GHZ]),
367                                &rtl_band_2ghz,
368                                sizeof(struct ieee80211_supported_band));
369
370                         /* <3> init ht cap base on ant_num */
371                         _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
372
373                         /* <4> set mac->sband to wiphy->sband */
374                         hw->wiphy->bands[NL80211_BAND_2GHZ] = sband;
375                 } else if (rtlhal->current_bandtype == BAND_ON_5G) {
376                         /* <1> use  mac->bands as mem for hw->wiphy->bands */
377                         sband = &(rtlmac->bands[NL80211_BAND_5GHZ]);
378
379                         /* <2> set hw->wiphy->bands[NL80211_BAND_5GHZ]
380                          * to default value(1T1R) */
381                         memcpy(&(rtlmac->bands[NL80211_BAND_5GHZ]),
382                                &rtl_band_5ghz,
383                                sizeof(struct ieee80211_supported_band));
384
385                         /* <3> init ht cap base on ant_num */
386                         _rtl_init_hw_ht_capab(hw, &sband->ht_cap);
387
388                         _rtl_init_hw_vht_capab(hw, &sband->vht_cap);
389                         /* <4> set mac->sband to wiphy->sband */
390                         hw->wiphy->bands[NL80211_BAND_5GHZ] = sband;
391                 } else {
392                         RT_TRACE(rtlpriv, COMP_INIT, DBG_EMERG, "Err BAND %d\n",
393                                  rtlhal->current_bandtype);
394                 }
395         }
396         /* <5> set hw caps */
397         ieee80211_hw_set(hw, SIGNAL_DBM);
398         ieee80211_hw_set(hw, RX_INCLUDES_FCS);
399         ieee80211_hw_set(hw, AMPDU_AGGREGATION);
400         ieee80211_hw_set(hw, CONNECTION_MONITOR);
401         ieee80211_hw_set(hw, MFP_CAPABLE);
402         ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS);
403
404         /* swlps or hwlps has been set in diff chip in init_sw_vars */
405         if (rtlpriv->psc.swctrl_lps) {
406                 ieee80211_hw_set(hw, SUPPORTS_PS);
407                 ieee80211_hw_set(hw, PS_NULLFUNC_STACK);
408         }
409         hw->wiphy->interface_modes =
410             BIT(NL80211_IFTYPE_AP) |
411             BIT(NL80211_IFTYPE_STATION) |
412             BIT(NL80211_IFTYPE_ADHOC) |
413             BIT(NL80211_IFTYPE_MESH_POINT) |
414             BIT(NL80211_IFTYPE_P2P_CLIENT) |
415             BIT(NL80211_IFTYPE_P2P_GO);
416         hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
417
418         hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
419
420         hw->wiphy->rts_threshold = 2347;
421
422         hw->queues = AC_MAX;
423         hw->extra_tx_headroom = RTL_TX_HEADER_SIZE;
424
425         /* TODO: Correct this value for our hw */
426         /* TODO: define these hard code value */
427         hw->max_listen_interval = 10;
428         hw->max_rate_tries = 4;
429         /* hw->max_rates = 1; */
430         hw->sta_data_size = sizeof(struct rtl_sta_info);
431
432 /* wowlan is not supported by kernel if CONFIG_PM is not defined */
433 #ifdef CONFIG_PM
434         if (rtlpriv->psc.wo_wlan_mode) {
435                 if (rtlpriv->psc.wo_wlan_mode & WAKE_ON_MAGIC_PACKET)
436                         rtlpriv->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT;
437                 if (rtlpriv->psc.wo_wlan_mode & WAKE_ON_PATTERN_MATCH) {
438                         rtlpriv->wowlan.n_patterns =
439                                 MAX_SUPPORT_WOL_PATTERN_NUM;
440                         rtlpriv->wowlan.pattern_min_len = MIN_WOL_PATTERN_SIZE;
441                         rtlpriv->wowlan.pattern_max_len = MAX_WOL_PATTERN_SIZE;
442                 }
443                 hw->wiphy->wowlan = &rtlpriv->wowlan;
444         }
445 #endif
446
447         /* <6> mac address */
448         if (is_valid_ether_addr(rtlefuse->dev_addr)) {
449                 SET_IEEE80211_PERM_ADDR(hw, rtlefuse->dev_addr);
450         } else {
451                 u8 rtlmac1[] = { 0x00, 0xe0, 0x4c, 0x81, 0x92, 0x00 };
452                 get_random_bytes((rtlmac1 + (ETH_ALEN - 1)), 1);
453                 SET_IEEE80211_PERM_ADDR(hw, rtlmac1);
454         }
455 }
456
457 static void _rtl_init_deferred_work(struct ieee80211_hw *hw)
458 {
459         struct rtl_priv *rtlpriv = rtl_priv(hw);
460
461         /* <1> timer */
462         setup_timer(&rtlpriv->works.watchdog_timer,
463                     rtl_watch_dog_timer_callback, (unsigned long)hw);
464         setup_timer(&rtlpriv->works.dualmac_easyconcurrent_retrytimer,
465                     rtl_easy_concurrent_retrytimer_callback, (unsigned long)hw);
466         /* <2> work queue */
467         rtlpriv->works.hw = hw;
468         rtlpriv->works.rtl_wq = alloc_workqueue("%s", 0, 0, rtlpriv->cfg->name);
469         if (unlikely(!rtlpriv->works.rtl_wq)) {
470                 pr_err("Failed to allocate work queue\n");
471                 return;
472         }
473
474         INIT_DELAYED_WORK(&rtlpriv->works.watchdog_wq,
475                           (void *)rtl_watchdog_wq_callback);
476         INIT_DELAYED_WORK(&rtlpriv->works.ips_nic_off_wq,
477                           (void *)rtl_ips_nic_off_wq_callback);
478         INIT_DELAYED_WORK(&rtlpriv->works.ps_work,
479                           (void *)rtl_swlps_wq_callback);
480         INIT_DELAYED_WORK(&rtlpriv->works.ps_rfon_wq,
481                           (void *)rtl_swlps_rfon_wq_callback);
482         INIT_DELAYED_WORK(&rtlpriv->works.fwevt_wq,
483                           (void *)rtl_fwevt_wq_callback);
484
485 }
486
487 void rtl_deinit_deferred_work(struct ieee80211_hw *hw)
488 {
489         struct rtl_priv *rtlpriv = rtl_priv(hw);
490
491         del_timer_sync(&rtlpriv->works.watchdog_timer);
492
493         cancel_delayed_work(&rtlpriv->works.watchdog_wq);
494         cancel_delayed_work(&rtlpriv->works.ips_nic_off_wq);
495         cancel_delayed_work(&rtlpriv->works.ps_work);
496         cancel_delayed_work(&rtlpriv->works.ps_rfon_wq);
497         cancel_delayed_work(&rtlpriv->works.fwevt_wq);
498 }
499 EXPORT_SYMBOL_GPL(rtl_deinit_deferred_work);
500
501 void rtl_init_rfkill(struct ieee80211_hw *hw)
502 {
503         struct rtl_priv *rtlpriv = rtl_priv(hw);
504
505         bool radio_state;
506         bool blocked;
507         u8 valid = 0;
508
509         /*set init state to on */
510         rtlpriv->rfkill.rfkill_state = true;
511         wiphy_rfkill_set_hw_state(hw->wiphy, 0);
512
513         radio_state = rtlpriv->cfg->ops->radio_onoff_checking(hw, &valid);
514
515         if (valid) {
516                 pr_info("rtlwifi: wireless switch is %s\n",
517                         rtlpriv->rfkill.rfkill_state ? "on" : "off");
518
519                 rtlpriv->rfkill.rfkill_state = radio_state;
520
521                 blocked = (rtlpriv->rfkill.rfkill_state == 1) ? 0 : 1;
522                 wiphy_rfkill_set_hw_state(hw->wiphy, blocked);
523         }
524
525         wiphy_rfkill_start_polling(hw->wiphy);
526 }
527 EXPORT_SYMBOL(rtl_init_rfkill);
528
529 void rtl_deinit_rfkill(struct ieee80211_hw *hw)
530 {
531         wiphy_rfkill_stop_polling(hw->wiphy);
532 }
533 EXPORT_SYMBOL_GPL(rtl_deinit_rfkill);
534
535 int rtl_init_core(struct ieee80211_hw *hw)
536 {
537         struct rtl_priv *rtlpriv = rtl_priv(hw);
538         struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw));
539
540         /* <1> init mac80211 */
541         _rtl_init_mac80211(hw);
542         rtlmac->hw = hw;
543
544         /* <2> rate control register */
545         hw->rate_control_algorithm = "rtl_rc";
546
547         /*
548          * <3> init CRDA must come after init
549          * mac80211 hw  in _rtl_init_mac80211.
550          */
551         if (rtl_regd_init(hw, rtl_reg_notifier)) {
552                 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG, "REGD init failed\n");
553                 return 1;
554         }
555
556         /* <4> locks */
557         mutex_init(&rtlpriv->locks.conf_mutex);
558         spin_lock_init(&rtlpriv->locks.ips_lock);
559         spin_lock_init(&rtlpriv->locks.irq_th_lock);
560         spin_lock_init(&rtlpriv->locks.h2c_lock);
561         spin_lock_init(&rtlpriv->locks.rf_ps_lock);
562         spin_lock_init(&rtlpriv->locks.rf_lock);
563         spin_lock_init(&rtlpriv->locks.waitq_lock);
564         spin_lock_init(&rtlpriv->locks.entry_list_lock);
565         spin_lock_init(&rtlpriv->locks.cck_and_rw_pagea_lock);
566         spin_lock_init(&rtlpriv->locks.check_sendpkt_lock);
567         spin_lock_init(&rtlpriv->locks.fw_ps_lock);
568         spin_lock_init(&rtlpriv->locks.lps_lock);
569         spin_lock_init(&rtlpriv->locks.iqk_lock);
570         /* <5> init list */
571         INIT_LIST_HEAD(&rtlpriv->entry_list);
572
573         rtlmac->link_state = MAC80211_NOLINK;
574
575         /* <6> init deferred work */
576         _rtl_init_deferred_work(hw);
577
578         return 0;
579 }
580 EXPORT_SYMBOL_GPL(rtl_init_core);
581
582 void rtl_deinit_core(struct ieee80211_hw *hw)
583 {
584 }
585 EXPORT_SYMBOL_GPL(rtl_deinit_core);
586
587 void rtl_init_rx_config(struct ieee80211_hw *hw)
588 {
589         struct rtl_priv *rtlpriv = rtl_priv(hw);
590         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
591
592         rtlpriv->cfg->ops->get_hw_reg(hw, HW_VAR_RCR, (u8 *) (&mac->rx_conf));
593 }
594 EXPORT_SYMBOL_GPL(rtl_init_rx_config);
595
596 /*********************************************************
597  *
598  * tx information functions
599  *
600  *********************************************************/
601 static void _rtl_qurey_shortpreamble_mode(struct ieee80211_hw *hw,
602                                           struct rtl_tcb_desc *tcb_desc,
603                                           struct ieee80211_tx_info *info)
604 {
605         struct rtl_priv *rtlpriv = rtl_priv(hw);
606         u8 rate_flag = info->control.rates[0].flags;
607
608         tcb_desc->use_shortpreamble = false;
609
610         /* 1M can only use Long Preamble. 11B spec */
611         if (tcb_desc->hw_rate == rtlpriv->cfg->maps[RTL_RC_CCK_RATE1M])
612                 return;
613         else if (rate_flag & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
614                 tcb_desc->use_shortpreamble = true;
615
616         return;
617 }
618
619 static void _rtl_query_shortgi(struct ieee80211_hw *hw,
620                                struct ieee80211_sta *sta,
621                                struct rtl_tcb_desc *tcb_desc,
622                                struct ieee80211_tx_info *info)
623 {
624         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
625         u8 rate_flag = info->control.rates[0].flags;
626         u8 sgi_40 = 0, sgi_20 = 0, bw_40 = 0;
627         u8 sgi_80 = 0, bw_80 = 0;
628         tcb_desc->use_shortgi = false;
629
630         if (sta == NULL)
631                 return;
632
633         sgi_40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_40;
634         sgi_20 = sta->ht_cap.cap & IEEE80211_HT_CAP_SGI_20;
635         sgi_80 = sta->vht_cap.cap & IEEE80211_VHT_CAP_SHORT_GI_80;
636
637         if ((!sta->ht_cap.ht_supported) && (!sta->vht_cap.vht_supported))
638                 return;
639
640         if (!sgi_40 && !sgi_20)
641                 return;
642
643         if (mac->opmode == NL80211_IFTYPE_STATION) {
644                 bw_40 = mac->bw_40;
645                 bw_80 = mac->bw_80;
646         } else if (mac->opmode == NL80211_IFTYPE_AP ||
647                  mac->opmode == NL80211_IFTYPE_ADHOC ||
648                  mac->opmode == NL80211_IFTYPE_MESH_POINT) {
649                 bw_40 = sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40;
650                 bw_80 = sta->vht_cap.vht_supported;
651         }
652
653         if (bw_80) {
654                 if (sgi_80)
655                         tcb_desc->use_shortgi = true;
656                 else
657                         tcb_desc->use_shortgi = false;
658         } else {
659                 if (bw_40 && sgi_40)
660                         tcb_desc->use_shortgi = true;
661                 else if (!bw_40 && sgi_20)
662                         tcb_desc->use_shortgi = true;
663         }
664
665         if (!(rate_flag & IEEE80211_TX_RC_SHORT_GI))
666                 tcb_desc->use_shortgi = false;
667 }
668
669 static void _rtl_query_protection_mode(struct ieee80211_hw *hw,
670                                        struct rtl_tcb_desc *tcb_desc,
671                                        struct ieee80211_tx_info *info)
672 {
673         struct rtl_priv *rtlpriv = rtl_priv(hw);
674         u8 rate_flag = info->control.rates[0].flags;
675
676         /* Common Settings */
677         tcb_desc->rts_stbc = false;
678         tcb_desc->cts_enable = false;
679         tcb_desc->rts_sc = 0;
680         tcb_desc->rts_bw = false;
681         tcb_desc->rts_use_shortpreamble = false;
682         tcb_desc->rts_use_shortgi = false;
683
684         if (rate_flag & IEEE80211_TX_RC_USE_CTS_PROTECT) {
685                 /* Use CTS-to-SELF in protection mode. */
686                 tcb_desc->rts_enable = true;
687                 tcb_desc->cts_enable = true;
688                 tcb_desc->rts_rate = rtlpriv->cfg->maps[RTL_RC_OFDM_RATE24M];
689         } else if (rate_flag & IEEE80211_TX_RC_USE_RTS_CTS) {
690                 /* Use RTS-CTS in protection mode. */
691                 tcb_desc->rts_enable = true;
692                 tcb_desc->rts_rate = rtlpriv->cfg->maps[RTL_RC_OFDM_RATE24M];
693         }
694 }
695
696 static void _rtl_txrate_selectmode(struct ieee80211_hw *hw,
697                                    struct ieee80211_sta *sta,
698                                    struct rtl_tcb_desc *tcb_desc)
699 {
700         struct rtl_priv *rtlpriv = rtl_priv(hw);
701         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
702         struct rtl_sta_info *sta_entry = NULL;
703         u8 ratr_index = 7;
704
705         if (sta) {
706                 sta_entry = (struct rtl_sta_info *) sta->drv_priv;
707                 ratr_index = sta_entry->ratr_index;
708         }
709         if (!tcb_desc->disable_ratefallback || !tcb_desc->use_driver_rate) {
710                 if (mac->opmode == NL80211_IFTYPE_STATION) {
711                         tcb_desc->ratr_index = 0;
712                 } else if (mac->opmode == NL80211_IFTYPE_ADHOC ||
713                                 mac->opmode == NL80211_IFTYPE_MESH_POINT) {
714                         if (tcb_desc->multicast || tcb_desc->broadcast) {
715                                 tcb_desc->hw_rate =
716                                     rtlpriv->cfg->maps[RTL_RC_CCK_RATE2M];
717                                 tcb_desc->use_driver_rate = 1;
718                                 tcb_desc->ratr_index = RATR_INX_WIRELESS_MC;
719                         } else {
720                                 tcb_desc->ratr_index = ratr_index;
721                         }
722                 } else if (mac->opmode == NL80211_IFTYPE_AP) {
723                         tcb_desc->ratr_index = ratr_index;
724                 }
725         }
726
727         if (rtlpriv->dm.useramask) {
728                 tcb_desc->ratr_index = ratr_index;
729                 /* TODO we will differentiate adhoc and station future  */
730                 if (mac->opmode == NL80211_IFTYPE_STATION ||
731                     mac->opmode == NL80211_IFTYPE_MESH_POINT) {
732                         tcb_desc->mac_id = 0;
733
734                         if (mac->mode == WIRELESS_MODE_AC_5G)
735                                 tcb_desc->ratr_index =
736                                         RATR_INX_WIRELESS_AC_5N;
737                         else if (mac->mode == WIRELESS_MODE_AC_24G)
738                                 tcb_desc->ratr_index =
739                                         RATR_INX_WIRELESS_AC_24N;
740                         else if (mac->mode == WIRELESS_MODE_N_24G)
741                                 tcb_desc->ratr_index = RATR_INX_WIRELESS_NGB;
742                         else if (mac->mode == WIRELESS_MODE_N_5G)
743                                 tcb_desc->ratr_index = RATR_INX_WIRELESS_NG;
744                         else if (mac->mode & WIRELESS_MODE_G)
745                                 tcb_desc->ratr_index = RATR_INX_WIRELESS_GB;
746                         else if (mac->mode & WIRELESS_MODE_B)
747                                 tcb_desc->ratr_index = RATR_INX_WIRELESS_B;
748                         else if (mac->mode & WIRELESS_MODE_A)
749                                 tcb_desc->ratr_index = RATR_INX_WIRELESS_G;
750
751                 } else if (mac->opmode == NL80211_IFTYPE_AP ||
752                         mac->opmode == NL80211_IFTYPE_ADHOC) {
753                         if (NULL != sta) {
754                                 if (sta->aid > 0)
755                                         tcb_desc->mac_id = sta->aid + 1;
756                                 else
757                                         tcb_desc->mac_id = 1;
758                         } else {
759                                 tcb_desc->mac_id = 0;
760                         }
761                 }
762         }
763 }
764
765 static void _rtl_query_bandwidth_mode(struct ieee80211_hw *hw,
766                                       struct ieee80211_sta *sta,
767                                       struct rtl_tcb_desc *tcb_desc)
768 {
769         struct rtl_priv *rtlpriv = rtl_priv(hw);
770         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
771
772         tcb_desc->packet_bw = false;
773         if (!sta)
774                 return;
775         if (mac->opmode == NL80211_IFTYPE_AP ||
776             mac->opmode == NL80211_IFTYPE_ADHOC ||
777             mac->opmode == NL80211_IFTYPE_MESH_POINT) {
778                 if (!(sta->ht_cap.ht_supported) ||
779                     !(sta->ht_cap.cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40))
780                         return;
781         } else if (mac->opmode == NL80211_IFTYPE_STATION) {
782                 if (!mac->bw_40 || !(sta->ht_cap.ht_supported))
783                         return;
784         }
785         if (tcb_desc->multicast || tcb_desc->broadcast)
786                 return;
787
788         /*use legency rate, shall use 20MHz */
789         if (tcb_desc->hw_rate <= rtlpriv->cfg->maps[RTL_RC_OFDM_RATE54M])
790                 return;
791
792         tcb_desc->packet_bw = HT_CHANNEL_WIDTH_20_40;
793
794         if (rtlpriv->rtlhal.hw_type == HARDWARE_TYPE_RTL8812AE ||
795             rtlpriv->rtlhal.hw_type == HARDWARE_TYPE_RTL8821AE) {
796                 if (mac->opmode == NL80211_IFTYPE_AP ||
797                     mac->opmode == NL80211_IFTYPE_ADHOC ||
798                     mac->opmode == NL80211_IFTYPE_MESH_POINT) {
799                         if (!(sta->vht_cap.vht_supported))
800                                 return;
801                 } else if (mac->opmode == NL80211_IFTYPE_STATION) {
802                         if (!mac->bw_80 ||
803                             !(sta->vht_cap.vht_supported))
804                                 return;
805                 }
806                 if (tcb_desc->hw_rate <=
807                         rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS15])
808                         return;
809                 tcb_desc->packet_bw = HT_CHANNEL_WIDTH_80;
810         }
811 }
812
813 static u8 _rtl_get_vht_highest_n_rate(struct ieee80211_hw *hw,
814                                       struct ieee80211_sta *sta)
815 {
816         struct rtl_priv *rtlpriv = rtl_priv(hw);
817         struct rtl_phy *rtlphy = &(rtlpriv->phy);
818         u8 hw_rate;
819         u16 tx_mcs_map = le16_to_cpu(sta->vht_cap.vht_mcs.tx_mcs_map);
820
821         if ((get_rf_type(rtlphy) == RF_2T2R) &&
822             (tx_mcs_map & 0x000c) != 0x000c) {
823                 if ((tx_mcs_map & 0x000c) >> 2 ==
824                         IEEE80211_VHT_MCS_SUPPORT_0_7)
825                         hw_rate =
826                         rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS7];
827                 else if ((tx_mcs_map  & 0x000c) >> 2 ==
828                         IEEE80211_VHT_MCS_SUPPORT_0_8)
829                         hw_rate =
830                         rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS9];
831                 else
832                         hw_rate =
833                         rtlpriv->cfg->maps[RTL_RC_VHT_RATE_2SS_MCS9];
834         } else {
835                 if ((tx_mcs_map  & 0x0003) ==
836                         IEEE80211_VHT_MCS_SUPPORT_0_7)
837                         hw_rate =
838                         rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS7];
839                 else if ((tx_mcs_map  & 0x0003) ==
840                         IEEE80211_VHT_MCS_SUPPORT_0_8)
841                         hw_rate =
842                         rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS9];
843                 else
844                         hw_rate =
845                         rtlpriv->cfg->maps[RTL_RC_VHT_RATE_1SS_MCS9];
846         }
847
848         return hw_rate;
849 }
850
851 static u8 _rtl_get_highest_n_rate(struct ieee80211_hw *hw,
852                                   struct ieee80211_sta *sta)
853 {
854         struct rtl_priv *rtlpriv = rtl_priv(hw);
855         struct rtl_phy *rtlphy = &rtlpriv->phy;
856         u8 hw_rate;
857
858         if ((get_rf_type(rtlphy) == RF_2T2R) &&
859             (sta->ht_cap.mcs.rx_mask[1] != 0))
860                 hw_rate = rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS15];
861         else
862                 hw_rate = rtlpriv->cfg->maps[RTL_RC_HT_RATEMCS7];
863
864         return hw_rate;
865 }
866
867 /* mac80211's rate_idx is like this:
868  *
869  * 2.4G band:rx_status->band == NL80211_BAND_2GHZ
870  *
871  * B/G rate:
872  * (rx_status->flag & RX_FLAG_HT) = 0,
873  * DESC_RATE1M-->DESC_RATE54M ==> idx is 0-->11,
874  *
875  * N rate:
876  * (rx_status->flag & RX_FLAG_HT) = 1,
877  * DESC_RATEMCS0-->DESC_RATEMCS15 ==> idx is 0-->15
878  *
879  * 5G band:rx_status->band == NL80211_BAND_5GHZ
880  * A rate:
881  * (rx_status->flag & RX_FLAG_HT) = 0,
882  * DESC_RATE6M-->DESC_RATE54M ==> idx is 0-->7,
883  *
884  * N rate:
885  * (rx_status->flag & RX_FLAG_HT) = 1,
886  * DESC_RATEMCS0-->DESC_RATEMCS15 ==> idx is 0-->15
887  *
888  * VHT rates:
889  * DESC_RATEVHT1SS_MCS0-->DESC_RATEVHT1SS_MCS9 ==> idx is 0-->9
890  * DESC_RATEVHT2SS_MCS0-->DESC_RATEVHT2SS_MCS9 ==> idx is 0-->9
891  */
892 int rtlwifi_rate_mapping(struct ieee80211_hw *hw, bool isht, bool isvht,
893                          u8 desc_rate)
894 {
895         int rate_idx;
896
897         if (isvht) {
898                 switch (desc_rate) {
899                 case DESC_RATEVHT1SS_MCS0:
900                         rate_idx = 0;
901                         break;
902                 case DESC_RATEVHT1SS_MCS1:
903                         rate_idx = 1;
904                         break;
905                 case DESC_RATEVHT1SS_MCS2:
906                         rate_idx = 2;
907                         break;
908                 case DESC_RATEVHT1SS_MCS3:
909                         rate_idx = 3;
910                         break;
911                 case DESC_RATEVHT1SS_MCS4:
912                         rate_idx = 4;
913                         break;
914                 case DESC_RATEVHT1SS_MCS5:
915                         rate_idx = 5;
916                         break;
917                 case DESC_RATEVHT1SS_MCS6:
918                         rate_idx = 6;
919                         break;
920                 case DESC_RATEVHT1SS_MCS7:
921                         rate_idx = 7;
922                         break;
923                 case DESC_RATEVHT1SS_MCS8:
924                         rate_idx = 8;
925                         break;
926                 case DESC_RATEVHT1SS_MCS9:
927                         rate_idx = 9;
928                         break;
929                 case DESC_RATEVHT2SS_MCS0:
930                         rate_idx = 0;
931                         break;
932                 case DESC_RATEVHT2SS_MCS1:
933                         rate_idx = 1;
934                         break;
935                 case DESC_RATEVHT2SS_MCS2:
936                         rate_idx = 2;
937                         break;
938                 case DESC_RATEVHT2SS_MCS3:
939                         rate_idx = 3;
940                         break;
941                 case DESC_RATEVHT2SS_MCS4:
942                         rate_idx = 4;
943                         break;
944                 case DESC_RATEVHT2SS_MCS5:
945                         rate_idx = 5;
946                         break;
947                 case DESC_RATEVHT2SS_MCS6:
948                         rate_idx = 6;
949                         break;
950                 case DESC_RATEVHT2SS_MCS7:
951                         rate_idx = 7;
952                         break;
953                 case DESC_RATEVHT2SS_MCS8:
954                         rate_idx = 8;
955                         break;
956                 case DESC_RATEVHT2SS_MCS9:
957                         rate_idx = 9;
958                         break;
959                 default:
960                         rate_idx = 0;
961                         break;
962                 }
963                 return rate_idx;
964         }
965         if (false == isht) {
966                 if (NL80211_BAND_2GHZ == hw->conf.chandef.chan->band) {
967                         switch (desc_rate) {
968                         case DESC_RATE1M:
969                                 rate_idx = 0;
970                                 break;
971                         case DESC_RATE2M:
972                                 rate_idx = 1;
973                                 break;
974                         case DESC_RATE5_5M:
975                                 rate_idx = 2;
976                                 break;
977                         case DESC_RATE11M:
978                                 rate_idx = 3;
979                                 break;
980                         case DESC_RATE6M:
981                                 rate_idx = 4;
982                                 break;
983                         case DESC_RATE9M:
984                                 rate_idx = 5;
985                                 break;
986                         case DESC_RATE12M:
987                                 rate_idx = 6;
988                                 break;
989                         case DESC_RATE18M:
990                                 rate_idx = 7;
991                                 break;
992                         case DESC_RATE24M:
993                                 rate_idx = 8;
994                                 break;
995                         case DESC_RATE36M:
996                                 rate_idx = 9;
997                                 break;
998                         case DESC_RATE48M:
999                                 rate_idx = 10;
1000                                 break;
1001                         case DESC_RATE54M:
1002                                 rate_idx = 11;
1003                                 break;
1004                         default:
1005                                 rate_idx = 0;
1006                                 break;
1007                         }
1008                 } else {
1009                         switch (desc_rate) {
1010                         case DESC_RATE6M:
1011                                 rate_idx = 0;
1012                                 break;
1013                         case DESC_RATE9M:
1014                                 rate_idx = 1;
1015                                 break;
1016                         case DESC_RATE12M:
1017                                 rate_idx = 2;
1018                                 break;
1019                         case DESC_RATE18M:
1020                                 rate_idx = 3;
1021                                 break;
1022                         case DESC_RATE24M:
1023                                 rate_idx = 4;
1024                                 break;
1025                         case DESC_RATE36M:
1026                                 rate_idx = 5;
1027                                 break;
1028                         case DESC_RATE48M:
1029                                 rate_idx = 6;
1030                                 break;
1031                         case DESC_RATE54M:
1032                                 rate_idx = 7;
1033                                 break;
1034                         default:
1035                                 rate_idx = 0;
1036                                 break;
1037                         }
1038                 }
1039         } else {
1040                 switch (desc_rate) {
1041                 case DESC_RATEMCS0:
1042                         rate_idx = 0;
1043                         break;
1044                 case DESC_RATEMCS1:
1045                         rate_idx = 1;
1046                         break;
1047                 case DESC_RATEMCS2:
1048                         rate_idx = 2;
1049                         break;
1050                 case DESC_RATEMCS3:
1051                         rate_idx = 3;
1052                         break;
1053                 case DESC_RATEMCS4:
1054                         rate_idx = 4;
1055                         break;
1056                 case DESC_RATEMCS5:
1057                         rate_idx = 5;
1058                         break;
1059                 case DESC_RATEMCS6:
1060                         rate_idx = 6;
1061                         break;
1062                 case DESC_RATEMCS7:
1063                         rate_idx = 7;
1064                         break;
1065                 case DESC_RATEMCS8:
1066                         rate_idx = 8;
1067                         break;
1068                 case DESC_RATEMCS9:
1069                         rate_idx = 9;
1070                         break;
1071                 case DESC_RATEMCS10:
1072                         rate_idx = 10;
1073                         break;
1074                 case DESC_RATEMCS11:
1075                         rate_idx = 11;
1076                         break;
1077                 case DESC_RATEMCS12:
1078                         rate_idx = 12;
1079                         break;
1080                 case DESC_RATEMCS13:
1081                         rate_idx = 13;
1082                         break;
1083                 case DESC_RATEMCS14:
1084                         rate_idx = 14;
1085                         break;
1086                 case DESC_RATEMCS15:
1087                         rate_idx = 15;
1088                         break;
1089                 default:
1090                         rate_idx = 0;
1091                         break;
1092                 }
1093         }
1094         return rate_idx;
1095 }
1096 EXPORT_SYMBOL(rtlwifi_rate_mapping);
1097
1098 void rtl_get_tcb_desc(struct ieee80211_hw *hw,
1099                       struct ieee80211_tx_info *info,
1100                       struct ieee80211_sta *sta,
1101                       struct sk_buff *skb, struct rtl_tcb_desc *tcb_desc)
1102 {
1103         struct rtl_priv *rtlpriv = rtl_priv(hw);
1104         struct rtl_mac *rtlmac = rtl_mac(rtl_priv(hw));
1105         struct ieee80211_hdr *hdr = rtl_get_hdr(skb);
1106         struct ieee80211_rate *txrate;
1107         __le16 fc = rtl_get_fc(skb);
1108
1109         txrate = ieee80211_get_tx_rate(hw, info);
1110         if (txrate)
1111                 tcb_desc->hw_rate = txrate->hw_value;
1112
1113         if (ieee80211_is_data(fc)) {
1114                 /*
1115                  *we set data rate INX 0
1116                  *in rtl_rc.c   if skb is special data or
1117                  *mgt which need low data rate.
1118                  */
1119
1120                 /*
1121                  *So tcb_desc->hw_rate is just used for
1122                  *special data and mgt frames
1123                  */
1124                 if (info->control.rates[0].idx == 0 ||
1125                                 ieee80211_is_nullfunc(fc)) {
1126                         tcb_desc->use_driver_rate = true;
1127                         tcb_desc->ratr_index = RATR_INX_WIRELESS_MC;
1128
1129                         tcb_desc->disable_ratefallback = 1;
1130                 } else {
1131                         /*
1132                          *because hw will nerver use hw_rate
1133                          *when tcb_desc->use_driver_rate = false
1134                          *so we never set highest N rate here,
1135                          *and N rate will all be controlled by FW
1136                          *when tcb_desc->use_driver_rate = false
1137                          */
1138                         if (sta && sta->vht_cap.vht_supported) {
1139                                 tcb_desc->hw_rate =
1140                                 _rtl_get_vht_highest_n_rate(hw, sta);
1141                         } else {
1142                                 if (sta && (sta->ht_cap.ht_supported)) {
1143                                         tcb_desc->hw_rate =
1144                                                 _rtl_get_highest_n_rate(hw, sta);
1145                                 } else {
1146                                         if (rtlmac->mode == WIRELESS_MODE_B) {
1147                                                 tcb_desc->hw_rate =
1148                                                     rtlpriv->cfg->maps[RTL_RC_CCK_RATE11M];
1149                                         } else {
1150                                                 tcb_desc->hw_rate =
1151                                                     rtlpriv->cfg->maps[RTL_RC_OFDM_RATE54M];
1152                                         }
1153                                 }
1154                         }
1155                 }
1156
1157                 if (is_multicast_ether_addr(ieee80211_get_DA(hdr)))
1158                         tcb_desc->multicast = 1;
1159                 else if (is_broadcast_ether_addr(ieee80211_get_DA(hdr)))
1160                         tcb_desc->broadcast = 1;
1161
1162                 _rtl_txrate_selectmode(hw, sta, tcb_desc);
1163                 _rtl_query_bandwidth_mode(hw, sta, tcb_desc);
1164                 _rtl_qurey_shortpreamble_mode(hw, tcb_desc, info);
1165                 _rtl_query_shortgi(hw, sta, tcb_desc, info);
1166                 _rtl_query_protection_mode(hw, tcb_desc, info);
1167         } else {
1168                 tcb_desc->use_driver_rate = true;
1169                 tcb_desc->ratr_index = RATR_INX_WIRELESS_MC;
1170                 tcb_desc->disable_ratefallback = 1;
1171                 tcb_desc->mac_id = 0;
1172                 tcb_desc->packet_bw = false;
1173         }
1174 }
1175 EXPORT_SYMBOL(rtl_get_tcb_desc);
1176
1177 bool rtl_tx_mgmt_proc(struct ieee80211_hw *hw, struct sk_buff *skb)
1178 {
1179         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
1180         struct rtl_priv *rtlpriv = rtl_priv(hw);
1181         __le16 fc = rtl_get_fc(skb);
1182
1183         if (rtlpriv->dm.supp_phymode_switch &&
1184             mac->link_state < MAC80211_LINKED &&
1185             (ieee80211_is_auth(fc) || ieee80211_is_probe_req(fc))) {
1186                 if (rtlpriv->cfg->ops->chk_switch_dmdp)
1187                         rtlpriv->cfg->ops->chk_switch_dmdp(hw);
1188         }
1189         if (ieee80211_is_auth(fc)) {
1190                 RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG, "MAC80211_LINKING\n");
1191                 rtl_ips_nic_on(hw);
1192
1193                 mac->link_state = MAC80211_LINKING;
1194                 /* Dul mac */
1195                 rtlpriv->phy.need_iqk = true;
1196
1197         }
1198
1199         return true;
1200 }
1201 EXPORT_SYMBOL_GPL(rtl_tx_mgmt_proc);
1202
1203 struct sk_buff *rtl_make_del_ba(struct ieee80211_hw *hw, u8 *sa,
1204                                 u8 *bssid, u16 tid);
1205
1206 static void process_agg_start(struct ieee80211_hw *hw,
1207                               struct ieee80211_hdr *hdr, u16 tid)
1208 {
1209         struct rtl_priv *rtlpriv = rtl_priv(hw);
1210         struct ieee80211_rx_status rx_status = { 0 };
1211         struct sk_buff *skb_delba = NULL;
1212
1213         skb_delba = rtl_make_del_ba(hw, hdr->addr2, hdr->addr3, tid);
1214         if (skb_delba) {
1215                 rx_status.freq = hw->conf.chandef.chan->center_freq;
1216                 rx_status.band = hw->conf.chandef.chan->band;
1217                 rx_status.flag |= RX_FLAG_DECRYPTED;
1218                 rx_status.flag |= RX_FLAG_MACTIME_START;
1219                 rx_status.rate_idx = 0;
1220                 rx_status.signal = 50 + 10;
1221                 memcpy(IEEE80211_SKB_RXCB(skb_delba),
1222                        &rx_status, sizeof(rx_status));
1223                 RT_PRINT_DATA(rtlpriv, COMP_INIT, DBG_DMESG,
1224                               "fake del\n",
1225                               skb_delba->data,
1226                               skb_delba->len);
1227                 ieee80211_rx_irqsafe(hw, skb_delba);
1228         }
1229 }
1230
1231 bool rtl_action_proc(struct ieee80211_hw *hw, struct sk_buff *skb, u8 is_tx)
1232 {
1233         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
1234         struct ieee80211_hdr *hdr = rtl_get_hdr(skb);
1235         struct rtl_priv *rtlpriv = rtl_priv(hw);
1236         __le16 fc = rtl_get_fc(skb);
1237         u8 *act = (u8 *)(((u8 *)skb->data + MAC80211_3ADDR_LEN));
1238         u8 category;
1239
1240         if (!ieee80211_is_action(fc))
1241                 return true;
1242
1243         category = *act;
1244         act++;
1245         switch (category) {
1246         case ACT_CAT_BA:
1247                 switch (*act) {
1248                 case ACT_ADDBAREQ:
1249                         if (mac->act_scanning)
1250                                 return false;
1251
1252                         RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
1253                                 "%s ACT_ADDBAREQ From :%pM\n",
1254                                 is_tx ? "Tx" : "Rx", hdr->addr2);
1255                         RT_PRINT_DATA(rtlpriv, COMP_INIT, DBG_DMESG, "req\n",
1256                                 skb->data, skb->len);
1257                         if (!is_tx) {
1258                                 struct ieee80211_sta *sta = NULL;
1259                                 struct rtl_sta_info *sta_entry = NULL;
1260                                 struct rtl_tid_data *tid_data;
1261                                 struct ieee80211_mgmt *mgmt = (void *)skb->data;
1262                                 u16 capab = 0, tid = 0;
1263
1264                                 rcu_read_lock();
1265                                 sta = rtl_find_sta(hw, hdr->addr3);
1266                                 if (sta == NULL) {
1267                                         RT_TRACE(rtlpriv, COMP_SEND | COMP_RECV,
1268                                                  DBG_DMESG, "sta is NULL\n");
1269                                         rcu_read_unlock();
1270                                         return true;
1271                                 }
1272
1273                                 sta_entry =
1274                                         (struct rtl_sta_info *)sta->drv_priv;
1275                                 if (!sta_entry) {
1276                                         rcu_read_unlock();
1277                                         return true;
1278                                 }
1279                                 capab =
1280                                   le16_to_cpu(mgmt->u.action.u.addba_req.capab);
1281                                 tid = (capab &
1282                                        IEEE80211_ADDBA_PARAM_TID_MASK) >> 2;
1283                                 tid_data = &sta_entry->tids[tid];
1284                                 if (tid_data->agg.rx_agg_state ==
1285                                     RTL_RX_AGG_START)
1286                                         process_agg_start(hw, hdr, tid);
1287                                 rcu_read_unlock();
1288                         }
1289                         break;
1290                 case ACT_ADDBARSP:
1291                         RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
1292                                  "%s ACT_ADDBARSP From :%pM\n",
1293                                   is_tx ? "Tx" : "Rx", hdr->addr2);
1294                         break;
1295                 case ACT_DELBA:
1296                         RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
1297                                  "ACT_ADDBADEL From :%pM\n", hdr->addr2);
1298                         break;
1299                 }
1300                 break;
1301         default:
1302                 break;
1303         }
1304
1305         return true;
1306 }
1307 EXPORT_SYMBOL_GPL(rtl_action_proc);
1308
1309 static void setup_arp_tx(struct rtl_priv *rtlpriv, struct rtl_ps_ctl *ppsc)
1310 {
1311         struct ieee80211_hw *hw = rtlpriv->hw;
1312
1313         rtlpriv->ra.is_special_data = true;
1314         if (rtlpriv->cfg->ops->get_btc_status())
1315                 rtlpriv->btcoexist.btc_ops->btc_special_packet_notify(
1316                                         rtlpriv, 1);
1317         rtl_lps_leave(hw);
1318         ppsc->last_delaylps_stamp_jiffies = jiffies;
1319 }
1320
1321 /*should call before software enc*/
1322 u8 rtl_is_special_data(struct ieee80211_hw *hw, struct sk_buff *skb, u8 is_tx,
1323                        bool is_enc)
1324 {
1325         struct rtl_priv *rtlpriv = rtl_priv(hw);
1326         struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
1327         __le16 fc = rtl_get_fc(skb);
1328         u16 ether_type;
1329         u8 mac_hdr_len = ieee80211_get_hdrlen_from_skb(skb);
1330         u8 encrypt_header_len = 0;
1331         u8 offset;
1332         const struct iphdr *ip;
1333
1334         if (!ieee80211_is_data(fc))
1335                 goto end;
1336
1337         switch (rtlpriv->sec.pairwise_enc_algorithm) {
1338         case WEP40_ENCRYPTION:
1339         case WEP104_ENCRYPTION:
1340                 encrypt_header_len = 4;/*WEP_IV_LEN*/
1341                 break;
1342         case TKIP_ENCRYPTION:
1343                 encrypt_header_len = 8;/*TKIP_IV_LEN*/
1344                 break;
1345         case AESCCMP_ENCRYPTION:
1346                 encrypt_header_len = 8;/*CCMP_HDR_LEN;*/
1347                 break;
1348         default:
1349                 break;
1350         }
1351
1352         offset = mac_hdr_len + SNAP_SIZE;
1353         if (is_enc)
1354                 offset += encrypt_header_len;
1355         ether_type = be16_to_cpup((__be16 *)(skb->data + offset));
1356
1357         if (ETH_P_IP == ether_type) {
1358                 ip = (struct iphdr *)((u8 *)skb->data + offset +
1359                      PROTOC_TYPE_SIZE);
1360                 if (IPPROTO_UDP == ip->protocol) {
1361                         struct udphdr *udp = (struct udphdr *)((u8 *)ip +
1362                                                                (ip->ihl << 2));
1363                         if (((((u8 *)udp)[1] == 68) &&
1364                              (((u8 *)udp)[3] == 67)) ||
1365                             ((((u8 *)udp)[1] == 67) &&
1366                              (((u8 *)udp)[3] == 68))) {
1367                                 /* 68 : UDP BOOTP client
1368                                  * 67 : UDP BOOTP server
1369                                  */
1370                                 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV),
1371                                          DBG_DMESG, "dhcp %s !!\n",
1372                                          (is_tx) ? "Tx" : "Rx");
1373
1374                                 if (is_tx)
1375                                         setup_arp_tx(rtlpriv, ppsc);
1376                                 return true;
1377                         }
1378                 }
1379         } else if (ETH_P_ARP == ether_type) {
1380                 if (is_tx)
1381                         setup_arp_tx(rtlpriv, ppsc);
1382
1383                 return true;
1384         } else if (ETH_P_PAE == ether_type) {
1385                 RT_TRACE(rtlpriv, (COMP_SEND | COMP_RECV), DBG_DMESG,
1386                          "802.1X %s EAPOL pkt!!\n", (is_tx) ? "Tx" : "Rx");
1387
1388                 if (is_tx) {
1389                         rtlpriv->ra.is_special_data = true;
1390                         rtl_lps_leave(hw);
1391                         ppsc->last_delaylps_stamp_jiffies = jiffies;
1392                 }
1393
1394                 return true;
1395         } else if (ETH_P_IPV6 == ether_type) {
1396                 /* TODO: Handle any IPv6 cases that need special handling.
1397                  * For now, always return false
1398                  */
1399                 goto end;
1400         }
1401
1402 end:
1403         rtlpriv->ra.is_special_data = false;
1404         return false;
1405 }
1406 EXPORT_SYMBOL_GPL(rtl_is_special_data);
1407
1408 /*********************************************************
1409  *
1410  * functions called by core.c
1411  *
1412  *********************************************************/
1413 int rtl_tx_agg_start(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1414                      struct ieee80211_sta *sta, u16 tid, u16 *ssn)
1415 {
1416         struct rtl_priv *rtlpriv = rtl_priv(hw);
1417         struct rtl_tid_data *tid_data;
1418         struct rtl_sta_info *sta_entry = NULL;
1419
1420         if (sta == NULL)
1421                 return -EINVAL;
1422
1423         if (unlikely(tid >= MAX_TID_COUNT))
1424                 return -EINVAL;
1425
1426         sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1427         if (!sta_entry)
1428                 return -ENXIO;
1429         tid_data = &sta_entry->tids[tid];
1430
1431         RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1432                  "on ra = %pM tid = %d seq:%d\n", sta->addr, tid,
1433                  tid_data->seq_number);
1434
1435         *ssn = tid_data->seq_number;
1436         tid_data->agg.agg_state = RTL_AGG_START;
1437
1438         ieee80211_start_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1439         return 0;
1440 }
1441
1442 int rtl_tx_agg_stop(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1443                     struct ieee80211_sta *sta, u16 tid)
1444 {
1445         struct rtl_priv *rtlpriv = rtl_priv(hw);
1446         struct rtl_tid_data *tid_data;
1447         struct rtl_sta_info *sta_entry = NULL;
1448
1449         if (sta == NULL)
1450                 return -EINVAL;
1451
1452         RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1453                  "on ra = %pM tid = %d\n", sta->addr, tid);
1454
1455         if (unlikely(tid >= MAX_TID_COUNT))
1456                 return -EINVAL;
1457
1458         sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1459         tid_data = &sta_entry->tids[tid];
1460         sta_entry->tids[tid].agg.agg_state = RTL_AGG_STOP;
1461
1462         ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
1463         return 0;
1464 }
1465
1466 int rtl_rx_agg_start(struct ieee80211_hw *hw,
1467                      struct ieee80211_sta *sta, u16 tid)
1468 {
1469         struct rtl_priv *rtlpriv = rtl_priv(hw);
1470         struct rtl_tid_data *tid_data;
1471         struct rtl_sta_info *sta_entry = NULL;
1472
1473         if (sta == NULL)
1474                 return -EINVAL;
1475
1476         if (unlikely(tid >= MAX_TID_COUNT))
1477                 return -EINVAL;
1478
1479         sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1480         if (!sta_entry)
1481                 return -ENXIO;
1482         tid_data = &sta_entry->tids[tid];
1483
1484         RT_TRACE(rtlpriv, COMP_RECV, DBG_DMESG,
1485                  "on ra = %pM tid = %d seq:%d\n", sta->addr, tid,
1486                  tid_data->seq_number);
1487
1488         tid_data->agg.rx_agg_state = RTL_RX_AGG_START;
1489         return 0;
1490 }
1491
1492 int rtl_rx_agg_stop(struct ieee80211_hw *hw,
1493                     struct ieee80211_sta *sta, u16 tid)
1494 {
1495         struct rtl_priv *rtlpriv = rtl_priv(hw);
1496         struct rtl_sta_info *sta_entry = NULL;
1497
1498         if (sta == NULL)
1499                 return -EINVAL;
1500
1501         RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1502                  "on ra = %pM tid = %d\n", sta->addr, tid);
1503
1504         if (unlikely(tid >= MAX_TID_COUNT))
1505                 return -EINVAL;
1506
1507         sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1508         sta_entry->tids[tid].agg.rx_agg_state = RTL_RX_AGG_STOP;
1509
1510         return 0;
1511 }
1512 int rtl_tx_agg_oper(struct ieee80211_hw *hw,
1513                 struct ieee80211_sta *sta, u16 tid)
1514 {
1515         struct rtl_priv *rtlpriv = rtl_priv(hw);
1516         struct rtl_sta_info *sta_entry = NULL;
1517
1518         if (sta == NULL)
1519                 return -EINVAL;
1520
1521         RT_TRACE(rtlpriv, COMP_SEND, DBG_DMESG,
1522                  "on ra = %pM tid = %d\n", sta->addr, tid);
1523
1524         if (unlikely(tid >= MAX_TID_COUNT))
1525                 return -EINVAL;
1526
1527         sta_entry = (struct rtl_sta_info *)sta->drv_priv;
1528         sta_entry->tids[tid].agg.agg_state = RTL_AGG_OPERATIONAL;
1529
1530         return 0;
1531 }
1532
1533 /*********************************************************
1534  *
1535  * wq & timer callback functions
1536  *
1537  *********************************************************/
1538 /* this function is used for roaming */
1539 void rtl_beacon_statistic(struct ieee80211_hw *hw, struct sk_buff *skb)
1540 {
1541         struct rtl_priv *rtlpriv = rtl_priv(hw);
1542         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1543
1544         if (rtlpriv->mac80211.opmode != NL80211_IFTYPE_STATION)
1545                 return;
1546
1547         if (rtlpriv->mac80211.link_state < MAC80211_LINKED)
1548                 return;
1549
1550         /* check if this really is a beacon */
1551         if (!ieee80211_is_beacon(hdr->frame_control) &&
1552             !ieee80211_is_probe_resp(hdr->frame_control))
1553                 return;
1554
1555         /* min. beacon length + FCS_LEN */
1556         if (skb->len <= 40 + FCS_LEN)
1557                 return;
1558
1559         /* and only beacons from the associated BSSID, please */
1560         if (!ether_addr_equal(hdr->addr3, rtlpriv->mac80211.bssid))
1561                 return;
1562
1563         rtlpriv->link_info.bcn_rx_inperiod++;
1564 }
1565 EXPORT_SYMBOL_GPL(rtl_beacon_statistic);
1566
1567 void rtl_watchdog_wq_callback(void *data)
1568 {
1569         struct rtl_works *rtlworks = container_of_dwork_rtl(data,
1570                                                             struct rtl_works,
1571                                                             watchdog_wq);
1572         struct ieee80211_hw *hw = rtlworks->hw;
1573         struct rtl_priv *rtlpriv = rtl_priv(hw);
1574         struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1575         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
1576         bool busytraffic = false;
1577         bool tx_busy_traffic = false;
1578         bool rx_busy_traffic = false;
1579         bool higher_busytraffic = false;
1580         bool higher_busyrxtraffic = false;
1581         u8 idx, tid;
1582         u32 rx_cnt_inp4eriod = 0;
1583         u32 tx_cnt_inp4eriod = 0;
1584         u32 aver_rx_cnt_inperiod = 0;
1585         u32 aver_tx_cnt_inperiod = 0;
1586         u32 aver_tidtx_inperiod[MAX_TID_COUNT] = {0};
1587         u32 tidtx_inp4eriod[MAX_TID_COUNT] = {0};
1588
1589         if (is_hal_stop(rtlhal))
1590                 return;
1591
1592         /* <1> Determine if action frame is allowed */
1593         if (mac->link_state > MAC80211_NOLINK) {
1594                 if (mac->cnt_after_linked < 20)
1595                         mac->cnt_after_linked++;
1596         } else {
1597                 mac->cnt_after_linked = 0;
1598         }
1599
1600         /* <2> to check if traffic busy, if
1601          * busytraffic we don't change channel
1602          */
1603         if (mac->link_state >= MAC80211_LINKED) {
1604
1605                 /* (1) get aver_rx_cnt_inperiod & aver_tx_cnt_inperiod */
1606                 for (idx = 0; idx <= 2; idx++) {
1607                         rtlpriv->link_info.num_rx_in4period[idx] =
1608                             rtlpriv->link_info.num_rx_in4period[idx + 1];
1609                         rtlpriv->link_info.num_tx_in4period[idx] =
1610                             rtlpriv->link_info.num_tx_in4period[idx + 1];
1611                 }
1612                 rtlpriv->link_info.num_rx_in4period[3] =
1613                     rtlpriv->link_info.num_rx_inperiod;
1614                 rtlpriv->link_info.num_tx_in4period[3] =
1615                     rtlpriv->link_info.num_tx_inperiod;
1616                 for (idx = 0; idx <= 3; idx++) {
1617                         rx_cnt_inp4eriod +=
1618                             rtlpriv->link_info.num_rx_in4period[idx];
1619                         tx_cnt_inp4eriod +=
1620                             rtlpriv->link_info.num_tx_in4period[idx];
1621                 }
1622                 aver_rx_cnt_inperiod = rx_cnt_inp4eriod / 4;
1623                 aver_tx_cnt_inperiod = tx_cnt_inp4eriod / 4;
1624
1625                 /* (2) check traffic busy */
1626                 if (aver_rx_cnt_inperiod > 100 || aver_tx_cnt_inperiod > 100) {
1627                         busytraffic = true;
1628                         if (aver_rx_cnt_inperiod > aver_tx_cnt_inperiod)
1629                                 rx_busy_traffic = true;
1630                         else
1631                                 tx_busy_traffic = false;
1632                 }
1633
1634                 /* Higher Tx/Rx data. */
1635                 if (aver_rx_cnt_inperiod > 4000 ||
1636                     aver_tx_cnt_inperiod > 4000) {
1637                         higher_busytraffic = true;
1638
1639                         /* Extremely high Rx data. */
1640                         if (aver_rx_cnt_inperiod > 5000)
1641                                 higher_busyrxtraffic = true;
1642                 }
1643
1644                 /* check every tid's tx traffic */
1645                 for (tid = 0; tid <= 7; tid++) {
1646                         for (idx = 0; idx <= 2; idx++)
1647                                 rtlpriv->link_info.tidtx_in4period[tid][idx] =
1648                                         rtlpriv->link_info.tidtx_in4period[tid]
1649                                         [idx + 1];
1650                         rtlpriv->link_info.tidtx_in4period[tid][3] =
1651                                 rtlpriv->link_info.tidtx_inperiod[tid];
1652
1653                         for (idx = 0; idx <= 3; idx++)
1654                                 tidtx_inp4eriod[tid] +=
1655                                    rtlpriv->link_info.tidtx_in4period[tid][idx];
1656                         aver_tidtx_inperiod[tid] = tidtx_inp4eriod[tid] / 4;
1657                         if (aver_tidtx_inperiod[tid] > 5000)
1658                                 rtlpriv->link_info.higher_busytxtraffic[tid] =
1659                                                                         true;
1660                         else
1661                                 rtlpriv->link_info.higher_busytxtraffic[tid] =
1662                                                                         false;
1663                 }
1664
1665                 if (((rtlpriv->link_info.num_rx_inperiod +
1666                       rtlpriv->link_info.num_tx_inperiod) > 8) ||
1667                     (rtlpriv->link_info.num_rx_inperiod > 2))
1668                         rtl_lps_leave(hw);
1669                 else
1670                         rtl_lps_enter(hw);
1671         }
1672
1673         rtlpriv->link_info.num_rx_inperiod = 0;
1674         rtlpriv->link_info.num_tx_inperiod = 0;
1675         for (tid = 0; tid <= 7; tid++)
1676                 rtlpriv->link_info.tidtx_inperiod[tid] = 0;
1677
1678         rtlpriv->link_info.busytraffic = busytraffic;
1679         rtlpriv->link_info.higher_busytraffic = higher_busytraffic;
1680         rtlpriv->link_info.rx_busy_traffic = rx_busy_traffic;
1681         rtlpriv->link_info.tx_busy_traffic = tx_busy_traffic;
1682         rtlpriv->link_info.higher_busyrxtraffic = higher_busyrxtraffic;
1683
1684         /* <3> DM */
1685         if (!rtlpriv->cfg->mod_params->disable_watchdog)
1686                 rtlpriv->cfg->ops->dm_watchdog(hw);
1687
1688         /* <4> roaming */
1689         if (mac->link_state == MAC80211_LINKED &&
1690             mac->opmode == NL80211_IFTYPE_STATION) {
1691                 if ((rtlpriv->link_info.bcn_rx_inperiod +
1692                     rtlpriv->link_info.num_rx_inperiod) == 0) {
1693                         rtlpriv->link_info.roam_times++;
1694                         RT_TRACE(rtlpriv, COMP_ERR, DBG_DMESG,
1695                                  "AP off for %d s\n",
1696                                 (rtlpriv->link_info.roam_times * 2));
1697
1698                         /* if we can't recv beacon for 10s,
1699                          * we should reconnect this AP
1700                          */
1701                         if (rtlpriv->link_info.roam_times >= 5) {
1702                                 RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
1703                                          "AP off, try to reconnect now\n");
1704                                 rtlpriv->link_info.roam_times = 0;
1705                                 ieee80211_connection_loss(
1706                                         rtlpriv->mac80211.vif);
1707                         }
1708                 } else {
1709                         rtlpriv->link_info.roam_times = 0;
1710                 }
1711         }
1712
1713         if (rtlpriv->cfg->ops->get_btc_status())
1714                 rtlpriv->btcoexist.btc_ops->btc_periodical(rtlpriv);
1715
1716         rtlpriv->link_info.bcn_rx_inperiod = 0;
1717 }
1718
1719 void rtl_watch_dog_timer_callback(unsigned long data)
1720 {
1721         struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
1722         struct rtl_priv *rtlpriv = rtl_priv(hw);
1723
1724         queue_delayed_work(rtlpriv->works.rtl_wq,
1725                            &rtlpriv->works.watchdog_wq, 0);
1726
1727         mod_timer(&rtlpriv->works.watchdog_timer,
1728                   jiffies + MSECS(RTL_WATCH_DOG_TIME));
1729 }
1730 void rtl_fwevt_wq_callback(void *data)
1731 {
1732         struct rtl_works *rtlworks =
1733                 container_of_dwork_rtl(data, struct rtl_works, fwevt_wq);
1734         struct ieee80211_hw *hw = rtlworks->hw;
1735         struct rtl_priv *rtlpriv = rtl_priv(hw);
1736
1737         rtlpriv->cfg->ops->c2h_command_handle(hw);
1738 }
1739 void rtl_easy_concurrent_retrytimer_callback(unsigned long data)
1740 {
1741         struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
1742         struct rtl_priv *rtlpriv = rtl_priv(hw);
1743         struct rtl_priv *buddy_priv = rtlpriv->buddy_priv;
1744
1745         if (buddy_priv == NULL)
1746                 return;
1747
1748         rtlpriv->cfg->ops->dualmac_easy_concurrent(hw);
1749 }
1750 /*********************************************************
1751  *
1752  * frame process functions
1753  *
1754  *********************************************************/
1755 u8 *rtl_find_ie(u8 *data, unsigned int len, u8 ie)
1756 {
1757         struct ieee80211_mgmt *mgmt = (void *)data;
1758         u8 *pos, *end;
1759
1760         pos = (u8 *)mgmt->u.beacon.variable;
1761         end = data + len;
1762         while (pos < end) {
1763                 if (pos + 2 + pos[1] > end)
1764                         return NULL;
1765
1766                 if (pos[0] == ie)
1767                         return pos;
1768
1769                 pos += 2 + pos[1];
1770         }
1771         return NULL;
1772 }
1773
1774 /* when we use 2 rx ants we send IEEE80211_SMPS_OFF */
1775 /* when we use 1 rx ant we send IEEE80211_SMPS_STATIC */
1776 static struct sk_buff *rtl_make_smps_action(struct ieee80211_hw *hw,
1777                                      enum ieee80211_smps_mode smps,
1778                                      u8 *da, u8 *bssid)
1779 {
1780         struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
1781         struct sk_buff *skb;
1782         struct ieee80211_mgmt *action_frame;
1783
1784         /* 27 = header + category + action + smps mode */
1785         skb = dev_alloc_skb(27 + hw->extra_tx_headroom);
1786         if (!skb)
1787                 return NULL;
1788
1789         skb_reserve(skb, hw->extra_tx_headroom);
1790         action_frame = (void *)skb_put(skb, 27);
1791         memset(action_frame, 0, 27);
1792         memcpy(action_frame->da, da, ETH_ALEN);
1793         memcpy(action_frame->sa, rtlefuse->dev_addr, ETH_ALEN);
1794         memcpy(action_frame->bssid, bssid, ETH_ALEN);
1795         action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1796                                                   IEEE80211_STYPE_ACTION);
1797         action_frame->u.action.category = WLAN_CATEGORY_HT;
1798         action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS;
1799         switch (smps) {
1800         case IEEE80211_SMPS_AUTOMATIC:/* 0 */
1801         case IEEE80211_SMPS_NUM_MODES:/* 4 */
1802                 WARN_ON(1);
1803         /* Here will get a 'MISSING_BREAK' in Coverity Test, just ignore it.
1804          * According to Kernel Code, here is right.
1805          */
1806         case IEEE80211_SMPS_OFF:/* 1 */ /*MIMO_PS_NOLIMIT*/
1807                 action_frame->u.action.u.ht_smps.smps_control =
1808                                 WLAN_HT_SMPS_CONTROL_DISABLED;/* 0 */
1809                 break;
1810         case IEEE80211_SMPS_STATIC:/* 2 */ /*MIMO_PS_STATIC*/
1811                 action_frame->u.action.u.ht_smps.smps_control =
1812                                 WLAN_HT_SMPS_CONTROL_STATIC;/* 1 */
1813                 break;
1814         case IEEE80211_SMPS_DYNAMIC:/* 3 */ /*MIMO_PS_DYNAMIC*/
1815                 action_frame->u.action.u.ht_smps.smps_control =
1816                                 WLAN_HT_SMPS_CONTROL_DYNAMIC;/* 3 */
1817                 break;
1818         }
1819
1820         return skb;
1821 }
1822
1823 int rtl_send_smps_action(struct ieee80211_hw *hw,
1824                          struct ieee80211_sta *sta,
1825                          enum ieee80211_smps_mode smps)
1826 {
1827         struct rtl_priv *rtlpriv = rtl_priv(hw);
1828         struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1829         struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));
1830         struct sk_buff *skb = NULL;
1831         struct rtl_tcb_desc tcb_desc;
1832         u8 bssid[ETH_ALEN] = {0};
1833
1834         memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc));
1835
1836         if (rtlpriv->mac80211.act_scanning)
1837                 goto err_free;
1838
1839         if (!sta)
1840                 goto err_free;
1841
1842         if (unlikely(is_hal_stop(rtlhal) || ppsc->rfpwr_state != ERFON))
1843                 goto err_free;
1844
1845         if (!test_bit(RTL_STATUS_INTERFACE_START, &rtlpriv->status))
1846                 goto err_free;
1847
1848         if (rtlpriv->mac80211.opmode == NL80211_IFTYPE_AP)
1849                 memcpy(bssid, rtlpriv->efuse.dev_addr, ETH_ALEN);
1850         else
1851                 memcpy(bssid, rtlpriv->mac80211.bssid, ETH_ALEN);
1852
1853         skb = rtl_make_smps_action(hw, smps, sta->addr, bssid);
1854         /* this is a type = mgmt * stype = action frame */
1855         if (skb) {
1856                 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1857                 struct rtl_sta_info *sta_entry =
1858                         (struct rtl_sta_info *) sta->drv_priv;
1859                 sta_entry->mimo_ps = smps;
1860                 /* rtlpriv->cfg->ops->update_rate_tbl(hw, sta, 0); */
1861
1862                 info->control.rates[0].idx = 0;
1863                 info->band = hw->conf.chandef.chan->band;
1864                 rtlpriv->intf_ops->adapter_tx(hw, sta, skb, &tcb_desc);
1865         }
1866         return 1;
1867
1868 err_free:
1869         return 0;
1870 }
1871 EXPORT_SYMBOL(rtl_send_smps_action);
1872
1873 void rtl_phy_scan_operation_backup(struct ieee80211_hw *hw, u8 operation)
1874 {
1875         struct rtl_priv *rtlpriv = rtl_priv(hw);
1876         struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw));
1877         enum io_type iotype;
1878
1879         if (!is_hal_stop(rtlhal)) {
1880                 switch (operation) {
1881                 case SCAN_OPT_BACKUP:
1882                         iotype = IO_CMD_PAUSE_DM_BY_SCAN;
1883                         rtlpriv->cfg->ops->set_hw_reg(hw,
1884                                                       HW_VAR_IO_CMD,
1885                                                       (u8 *)&iotype);
1886                         break;
1887                 case SCAN_OPT_RESTORE:
1888                         iotype = IO_CMD_RESUME_DM_BY_SCAN;
1889                         rtlpriv->cfg->ops->set_hw_reg(hw,
1890                                                       HW_VAR_IO_CMD,
1891                                                       (u8 *)&iotype);
1892                         break;
1893                 default:
1894                         RT_TRACE(rtlpriv, COMP_ERR, DBG_EMERG,
1895                                  "Unknown Scan Backup operation.\n");
1896                         break;
1897                 }
1898         }
1899 }
1900 EXPORT_SYMBOL(rtl_phy_scan_operation_backup);
1901
1902 /* because mac80211 have issues when can receive del ba
1903  * so here we just make a fake del_ba if we receive a ba_req
1904  * but rx_agg was opened to let mac80211 release some ba
1905  * related resources, so please this del_ba for tx
1906  */
1907 struct sk_buff *rtl_make_del_ba(struct ieee80211_hw *hw,
1908                                 u8 *sa, u8 *bssid, u16 tid)
1909 {
1910         struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
1911         struct sk_buff *skb;
1912         struct ieee80211_mgmt *action_frame;
1913         u16 params;
1914
1915         /* 27 = header + category + action + smps mode */
1916         skb = dev_alloc_skb(34 + hw->extra_tx_headroom);
1917         if (!skb)
1918                 return NULL;
1919
1920         skb_reserve(skb, hw->extra_tx_headroom);
1921         action_frame = (void *)skb_put(skb, 34);
1922         memset(action_frame, 0, 34);
1923         memcpy(action_frame->sa, sa, ETH_ALEN);
1924         memcpy(action_frame->da, rtlefuse->dev_addr, ETH_ALEN);
1925         memcpy(action_frame->bssid, bssid, ETH_ALEN);
1926         action_frame->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
1927                                                   IEEE80211_STYPE_ACTION);
1928         action_frame->u.action.category = WLAN_CATEGORY_BACK;
1929         action_frame->u.action.u.delba.action_code = WLAN_ACTION_DELBA;
1930         params = (u16)(1 << 11);        /* bit 11 initiator */
1931         params |= (u16)(tid << 12);     /* bit 15:12 TID number */
1932
1933         action_frame->u.action.u.delba.params = cpu_to_le16(params);
1934         action_frame->u.action.u.delba.reason_code =
1935                 cpu_to_le16(WLAN_REASON_QSTA_TIMEOUT);
1936
1937         return skb;
1938 }
1939
1940 /*********************************************************
1941  *
1942  * IOT functions
1943  *
1944  *********************************************************/
1945 static bool rtl_chk_vendor_ouisub(struct ieee80211_hw *hw,
1946                                   struct octet_string vendor_ie)
1947 {
1948         struct rtl_priv *rtlpriv = rtl_priv(hw);
1949         bool matched = false;
1950         static u8 athcap_1[] = { 0x00, 0x03, 0x7F };
1951         static u8 athcap_2[] = { 0x00, 0x13, 0x74 };
1952         static u8 broadcap_1[] = { 0x00, 0x10, 0x18 };
1953         static u8 broadcap_2[] = { 0x00, 0x0a, 0xf7 };
1954         static u8 broadcap_3[] = { 0x00, 0x05, 0xb5 };
1955         static u8 racap[] = { 0x00, 0x0c, 0x43 };
1956         static u8 ciscocap[] = { 0x00, 0x40, 0x96 };
1957         static u8 marvcap[] = { 0x00, 0x50, 0x43 };
1958
1959         if (memcmp(vendor_ie.octet, athcap_1, 3) == 0 ||
1960                 memcmp(vendor_ie.octet, athcap_2, 3) == 0) {
1961                 rtlpriv->mac80211.vendor = PEER_ATH;
1962                 matched = true;
1963         } else if (memcmp(vendor_ie.octet, broadcap_1, 3) == 0 ||
1964                 memcmp(vendor_ie.octet, broadcap_2, 3) == 0 ||
1965                 memcmp(vendor_ie.octet, broadcap_3, 3) == 0) {
1966                 rtlpriv->mac80211.vendor = PEER_BROAD;
1967                 matched = true;
1968         } else if (memcmp(vendor_ie.octet, racap, 3) == 0) {
1969                 rtlpriv->mac80211.vendor = PEER_RAL;
1970                 matched = true;
1971         } else if (memcmp(vendor_ie.octet, ciscocap, 3) == 0) {
1972                 rtlpriv->mac80211.vendor = PEER_CISCO;
1973                 matched = true;
1974         } else if (memcmp(vendor_ie.octet, marvcap, 3) == 0) {
1975                 rtlpriv->mac80211.vendor = PEER_MARV;
1976                 matched = true;
1977         }
1978
1979         return matched;
1980 }
1981
1982 static bool rtl_find_221_ie(struct ieee80211_hw *hw, u8 *data,
1983                 unsigned int len)
1984 {
1985         struct ieee80211_mgmt *mgmt = (void *)data;
1986         struct octet_string vendor_ie;
1987         u8 *pos, *end;
1988
1989         pos = (u8 *)mgmt->u.beacon.variable;
1990         end = data + len;
1991         while (pos < end) {
1992                 if (pos[0] == 221) {
1993                         vendor_ie.length = pos[1];
1994                         vendor_ie.octet = &pos[2];
1995                         if (rtl_chk_vendor_ouisub(hw, vendor_ie))
1996                                 return true;
1997                 }
1998
1999                 if (pos + 2 + pos[1] > end)
2000                         return false;
2001
2002                 pos += 2 + pos[1];
2003         }
2004         return false;
2005 }
2006
2007 void rtl_recognize_peer(struct ieee80211_hw *hw, u8 *data, unsigned int len)
2008 {
2009         struct rtl_priv *rtlpriv = rtl_priv(hw);
2010         struct rtl_mac *mac = rtl_mac(rtl_priv(hw));
2011         struct ieee80211_hdr *hdr = (void *)data;
2012         u32 vendor = PEER_UNKNOWN;
2013
2014         static u8 ap3_1[3] = { 0x00, 0x14, 0xbf };
2015         static u8 ap3_2[3] = { 0x00, 0x1a, 0x70 };
2016         static u8 ap3_3[3] = { 0x00, 0x1d, 0x7e };
2017         static u8 ap4_1[3] = { 0x00, 0x90, 0xcc };
2018         static u8 ap4_2[3] = { 0x00, 0x0e, 0x2e };
2019         static u8 ap4_3[3] = { 0x00, 0x18, 0x02 };
2020         static u8 ap4_4[3] = { 0x00, 0x17, 0x3f };
2021         static u8 ap4_5[3] = { 0x00, 0x1c, 0xdf };
2022         static u8 ap5_1[3] = { 0x00, 0x1c, 0xf0 };
2023         static u8 ap5_2[3] = { 0x00, 0x21, 0x91 };
2024         static u8 ap5_3[3] = { 0x00, 0x24, 0x01 };
2025         static u8 ap5_4[3] = { 0x00, 0x15, 0xe9 };
2026         static u8 ap5_5[3] = { 0x00, 0x17, 0x9A };
2027         static u8 ap5_6[3] = { 0x00, 0x18, 0xE7 };
2028         static u8 ap6_1[3] = { 0x00, 0x17, 0x94 };
2029         static u8 ap7_1[3] = { 0x00, 0x14, 0xa4 };
2030
2031         if (mac->opmode != NL80211_IFTYPE_STATION)
2032                 return;
2033
2034         if (mac->link_state == MAC80211_NOLINK) {
2035                 mac->vendor = PEER_UNKNOWN;
2036                 return;
2037         }
2038
2039         if (mac->cnt_after_linked > 2)
2040                 return;
2041
2042         /* check if this really is a beacon */
2043         if (!ieee80211_is_beacon(hdr->frame_control))
2044                 return;
2045
2046         /* min. beacon length + FCS_LEN */
2047         if (len <= 40 + FCS_LEN)
2048                 return;
2049
2050         /* and only beacons from the associated BSSID, please */
2051         if (!ether_addr_equal_64bits(hdr->addr3, rtlpriv->mac80211.bssid))
2052                 return;
2053
2054         if (rtl_find_221_ie(hw, data, len))
2055                 vendor = mac->vendor;
2056
2057         if ((memcmp(mac->bssid, ap5_1, 3) == 0) ||
2058                 (memcmp(mac->bssid, ap5_2, 3) == 0) ||
2059                 (memcmp(mac->bssid, ap5_3, 3) == 0) ||
2060                 (memcmp(mac->bssid, ap5_4, 3) == 0) ||
2061                 (memcmp(mac->bssid, ap5_5, 3) == 0) ||
2062                 (memcmp(mac->bssid, ap5_6, 3) == 0) ||
2063                 vendor == PEER_ATH) {
2064                 vendor = PEER_ATH;
2065                 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>ath find\n");
2066         } else if ((memcmp(mac->bssid, ap4_4, 3) == 0) ||
2067                 (memcmp(mac->bssid, ap4_5, 3) == 0) ||
2068                 (memcmp(mac->bssid, ap4_1, 3) == 0) ||
2069                 (memcmp(mac->bssid, ap4_2, 3) == 0) ||
2070                 (memcmp(mac->bssid, ap4_3, 3) == 0) ||
2071                 vendor == PEER_RAL) {
2072                 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>ral find\n");
2073                 vendor = PEER_RAL;
2074         } else if (memcmp(mac->bssid, ap6_1, 3) == 0 ||
2075                 vendor == PEER_CISCO) {
2076                 vendor = PEER_CISCO;
2077                 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>cisco find\n");
2078         } else if ((memcmp(mac->bssid, ap3_1, 3) == 0) ||
2079                 (memcmp(mac->bssid, ap3_2, 3) == 0) ||
2080                 (memcmp(mac->bssid, ap3_3, 3) == 0) ||
2081                 vendor == PEER_BROAD) {
2082                 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>broad find\n");
2083                 vendor = PEER_BROAD;
2084         } else if (memcmp(mac->bssid, ap7_1, 3) == 0 ||
2085                 vendor == PEER_MARV) {
2086                 vendor = PEER_MARV;
2087                 RT_TRACE(rtlpriv, COMP_MAC80211, DBG_LOUD, "=>marv find\n");
2088         }
2089
2090         mac->vendor = vendor;
2091 }
2092 EXPORT_SYMBOL_GPL(rtl_recognize_peer);
2093
2094 /*********************************************************
2095  *
2096  * sysfs functions
2097  *
2098  *********************************************************/
2099 static ssize_t rtl_show_debug_level(struct device *d,
2100                                     struct device_attribute *attr, char *buf)
2101 {
2102         struct ieee80211_hw *hw = dev_get_drvdata(d);
2103         struct rtl_priv *rtlpriv = rtl_priv(hw);
2104
2105         return sprintf(buf, "0x%08X\n", rtlpriv->dbg.global_debuglevel);
2106 }
2107
2108 static ssize_t rtl_store_debug_level(struct device *d,
2109                                      struct device_attribute *attr,
2110                                      const char *buf, size_t count)
2111 {
2112         struct ieee80211_hw *hw = dev_get_drvdata(d);
2113         struct rtl_priv *rtlpriv = rtl_priv(hw);
2114         unsigned long val;
2115         int ret;
2116
2117         ret = kstrtoul(buf, 0, &val);
2118         if (ret) {
2119                 RT_TRACE(rtlpriv, COMP_ERR, DBG_DMESG,
2120                          "%s is not in hex or decimal form.\n", buf);
2121         } else {
2122                 rtlpriv->dbg.global_debuglevel = val;
2123                 RT_TRACE(rtlpriv, COMP_ERR, DBG_DMESG,
2124                          "debuglevel:%x\n",
2125                          rtlpriv->dbg.global_debuglevel);
2126         }
2127
2128         return strnlen(buf, count);
2129 }
2130
2131 static DEVICE_ATTR(debug_level, S_IWUSR | S_IRUGO,
2132                    rtl_show_debug_level, rtl_store_debug_level);
2133
2134 static struct attribute *rtl_sysfs_entries[] = {
2135
2136         &dev_attr_debug_level.attr,
2137
2138         NULL
2139 };
2140
2141 /*
2142  * "name" is folder name witch will be
2143  * put in device directory like :
2144  * sys/devices/pci0000:00/0000:00:1c.4/
2145  * 0000:06:00.0/rtl_sysfs
2146  */
2147 struct attribute_group rtl_attribute_group = {
2148         .name = "rtlsysfs",
2149         .attrs = rtl_sysfs_entries,
2150 };
2151 EXPORT_SYMBOL_GPL(rtl_attribute_group);
2152
2153 MODULE_AUTHOR("lizhaoming       <chaoming_li@realsil.com.cn>");
2154 MODULE_AUTHOR("Realtek WlanFAE  <wlanfae@realtek.com>");
2155 MODULE_AUTHOR("Larry Finger     <Larry.FInger@lwfinger.net>");
2156 MODULE_LICENSE("GPL");
2157 MODULE_DESCRIPTION("Realtek 802.11n PCI wireless core");
2158
2159 struct rtl_global_var rtl_global_var = {};
2160 EXPORT_SYMBOL_GPL(rtl_global_var);
2161
2162 static int __init rtl_core_module_init(void)
2163 {
2164         if (rtl_rate_control_register())
2165                 pr_err("rtl: Unable to register rtl_rc, use default RC !!\n");
2166
2167         /* init some global vars */
2168         INIT_LIST_HEAD(&rtl_global_var.glb_priv_list);
2169         spin_lock_init(&rtl_global_var.glb_list_lock);
2170
2171         return 0;
2172 }
2173
2174 static void __exit rtl_core_module_exit(void)
2175 {
2176         /*RC*/
2177         rtl_rate_control_unregister();
2178 }
2179
2180 module_init(rtl_core_module_init);
2181 module_exit(rtl_core_module_exit);