1 /******************************************************************************
3 * Copyright(c) 2005 - 2010 Intel Corporation. All rights reserved.
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.
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
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *****************************************************************************/
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/skbuff.h>
29 #include <linux/slab.h>
30 #include <linux/wireless.h>
31 #include <net/mac80211.h>
33 #include <linux/netdevice.h>
34 #include <linux/etherdevice.h>
35 #include <linux/delay.h>
37 #include <linux/workqueue.h>
44 #define RS_NAME "iwl-agn-rs"
46 #define NUM_TRY_BEFORE_ANT_TOGGLE 1
47 #define IWL_NUMBER_TRY 1
48 #define IWL_HT_NUMBER_TRY 3
50 #define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
51 #define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
52 #define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
54 /* max allowed rate miss before sync LQ cmd */
55 #define IWL_MISSED_RATE_MAX 15
56 /* max time to accum history 2 seconds */
57 #define IWL_RATE_SCALE_FLUSH_INTVL (3*HZ)
59 static u8 rs_ht_to_legacy
[] = {
60 IWL_RATE_6M_INDEX
, IWL_RATE_6M_INDEX
,
61 IWL_RATE_6M_INDEX
, IWL_RATE_6M_INDEX
,
63 IWL_RATE_6M_INDEX
, IWL_RATE_9M_INDEX
,
64 IWL_RATE_12M_INDEX
, IWL_RATE_18M_INDEX
,
65 IWL_RATE_24M_INDEX
, IWL_RATE_36M_INDEX
,
66 IWL_RATE_48M_INDEX
, IWL_RATE_54M_INDEX
69 static const u8 ant_toggle_lookup
[] = {
70 /*ANT_NONE -> */ ANT_NONE
,
73 /*ANT_AB -> */ ANT_BC
,
75 /*ANT_AC -> */ ANT_AB
,
76 /*ANT_BC -> */ ANT_AC
,
77 /*ANT_ABC -> */ ANT_ABC
,
80 #define IWL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np) \
81 [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \
82 IWL_RATE_SISO_##s##M_PLCP, \
83 IWL_RATE_MIMO2_##s##M_PLCP,\
84 IWL_RATE_MIMO3_##s##M_PLCP,\
85 IWL_RATE_##r##M_IEEE, \
86 IWL_RATE_##ip##M_INDEX, \
87 IWL_RATE_##in##M_INDEX, \
88 IWL_RATE_##rp##M_INDEX, \
89 IWL_RATE_##rn##M_INDEX, \
90 IWL_RATE_##pp##M_INDEX, \
91 IWL_RATE_##np##M_INDEX }
95 * rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
97 * If there isn't a valid next or previous rate then INV is used which
98 * maps to IWL_RATE_INVALID
101 const struct iwl_rate_info iwl_rates
[IWL_RATE_COUNT
] = {
102 IWL_DECLARE_RATE_INFO(1, INV
, INV
, 2, INV
, 2, INV
, 2), /* 1mbps */
103 IWL_DECLARE_RATE_INFO(2, INV
, 1, 5, 1, 5, 1, 5), /* 2mbps */
104 IWL_DECLARE_RATE_INFO(5, INV
, 2, 6, 2, 11, 2, 11), /*5.5mbps */
105 IWL_DECLARE_RATE_INFO(11, INV
, 9, 12, 9, 12, 5, 18), /* 11mbps */
106 IWL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11), /* 6mbps */
107 IWL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11), /* 9mbps */
108 IWL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18), /* 12mbps */
109 IWL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24), /* 18mbps */
110 IWL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36), /* 24mbps */
111 IWL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48), /* 36mbps */
112 IWL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54), /* 48mbps */
113 IWL_DECLARE_RATE_INFO(54, 54, 48, INV
, 48, INV
, 48, INV
),/* 54mbps */
114 IWL_DECLARE_RATE_INFO(60, 60, 48, INV
, 48, INV
, 48, INV
),/* 60mbps */
115 /* FIXME:RS: ^^ should be INV (legacy) */
118 static int iwl_hwrate_to_plcp_idx(u32 rate_n_flags
)
123 if (rate_n_flags
& RATE_MCS_HT_MSK
) {
124 idx
= (rate_n_flags
& 0xff);
126 if (idx
>= IWL_RATE_MIMO3_6M_PLCP
)
127 idx
= idx
- IWL_RATE_MIMO3_6M_PLCP
;
128 else if (idx
>= IWL_RATE_MIMO2_6M_PLCP
)
129 idx
= idx
- IWL_RATE_MIMO2_6M_PLCP
;
131 idx
+= IWL_FIRST_OFDM_RATE
;
132 /* skip 9M not supported in ht*/
133 if (idx
>= IWL_RATE_9M_INDEX
)
135 if ((idx
>= IWL_FIRST_OFDM_RATE
) && (idx
<= IWL_LAST_OFDM_RATE
))
138 /* legacy rate format, search for match in table */
140 for (idx
= 0; idx
< ARRAY_SIZE(iwl_rates
); idx
++)
141 if (iwl_rates
[idx
].plcp
== (rate_n_flags
& 0xFF))
148 static void rs_rate_scale_perform(struct iwl_priv
*priv
,
150 struct ieee80211_sta
*sta
,
151 struct iwl_lq_sta
*lq_sta
);
152 static void rs_fill_link_cmd(struct iwl_priv
*priv
,
153 struct iwl_lq_sta
*lq_sta
, u32 rate_n_flags
);
154 static void rs_stay_in_table(struct iwl_lq_sta
*lq_sta
, bool force_search
);
157 #ifdef CONFIG_MAC80211_DEBUGFS
158 static void rs_dbgfs_set_mcs(struct iwl_lq_sta
*lq_sta
,
159 u32
*rate_n_flags
, int index
);
161 static void rs_dbgfs_set_mcs(struct iwl_lq_sta
*lq_sta
,
162 u32
*rate_n_flags
, int index
)
167 * The following tables contain the expected throughput metrics for all rates
169 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
171 * where invalid entries are zeros.
173 * CCK rates are only valid in legacy table and will only be used in G
177 static s32 expected_tpt_legacy
[IWL_RATE_COUNT
] = {
178 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
181 static s32 expected_tpt_siso20MHz
[4][IWL_RATE_COUNT
] = {
182 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
183 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
184 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
185 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
188 static s32 expected_tpt_siso40MHz
[4][IWL_RATE_COUNT
] = {
189 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
190 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
191 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
192 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
195 static s32 expected_tpt_mimo2_20MHz
[4][IWL_RATE_COUNT
] = {
196 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
197 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
198 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
199 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI*/
202 static s32 expected_tpt_mimo2_40MHz
[4][IWL_RATE_COUNT
] = {
203 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
204 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
205 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
206 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
209 static s32 expected_tpt_mimo3_20MHz
[4][IWL_RATE_COUNT
] = {
210 {0, 0, 0, 0, 99, 0, 153, 186, 208, 239, 256, 263, 268}, /* Norm */
211 {0, 0, 0, 0, 106, 0, 162, 194, 215, 246, 262, 268, 273}, /* SGI */
212 {0, 0, 0, 0, 134, 0, 249, 346, 431, 574, 685, 732, 775}, /* AGG */
213 {0, 0, 0, 0, 148, 0, 272, 376, 465, 614, 727, 775, 818}, /* AGG+SGI */
216 static s32 expected_tpt_mimo3_40MHz
[4][IWL_RATE_COUNT
] = {
217 {0, 0, 0, 0, 152, 0, 211, 239, 255, 279, 290, 294, 297}, /* Norm */
218 {0, 0, 0, 0, 160, 0, 219, 245, 261, 284, 294, 297, 300}, /* SGI */
219 {0, 0, 0, 0, 254, 0, 443, 584, 695, 868, 984, 1030, 1070}, /* AGG */
220 {0, 0, 0, 0, 277, 0, 478, 624, 737, 911, 1026, 1070, 1109}, /* AGG+SGI */
224 static const struct iwl_rate_mcs_info iwl_rate_mcs
[IWL_RATE_COUNT
] = {
233 { "24", "16QAM 1/2"},
234 { "36", "16QAM 3/4"},
235 { "48", "64QAM 2/3"},
236 { "54", "64QAM 3/4"},
237 { "60", "64QAM 5/6"},
240 #define MCS_INDEX_PER_STREAM (8)
242 static inline u8
rs_extract_rate(u32 rate_n_flags
)
244 return (u8
)(rate_n_flags
& 0xFF);
247 static void rs_rate_scale_clear_window(struct iwl_rate_scale_data
*window
)
250 window
->success_counter
= 0;
251 window
->success_ratio
= IWL_INVALID_VALUE
;
253 window
->average_tpt
= IWL_INVALID_VALUE
;
257 static inline u8
rs_is_valid_ant(u8 valid_antenna
, u8 ant_type
)
259 return (ant_type
& valid_antenna
) == ant_type
;
263 * removes the old data from the statistics. All data that is older than
264 * TID_MAX_TIME_DIFF, will be deleted.
266 static void rs_tl_rm_old_stats(struct iwl_traffic_load
*tl
, u32 curr_time
)
268 /* The oldest age we want to keep */
269 u32 oldest_time
= curr_time
- TID_MAX_TIME_DIFF
;
271 while (tl
->queue_count
&&
272 (tl
->time_stamp
< oldest_time
)) {
273 tl
->total
-= tl
->packet_count
[tl
->head
];
274 tl
->packet_count
[tl
->head
] = 0;
275 tl
->time_stamp
+= TID_QUEUE_CELL_SPACING
;
278 if (tl
->head
>= TID_QUEUE_MAX_SIZE
)
284 * increment traffic load value for tid and also remove
285 * any old values if passed the certain time period
287 static u8
rs_tl_add_packet(struct iwl_lq_sta
*lq_data
,
288 struct ieee80211_hdr
*hdr
)
290 u32 curr_time
= jiffies_to_msecs(jiffies
);
293 struct iwl_traffic_load
*tl
= NULL
;
296 if (ieee80211_is_data_qos(hdr
->frame_control
)) {
297 u8
*qc
= ieee80211_get_qos_ctl(hdr
);
300 return MAX_TID_COUNT
;
302 if (unlikely(tid
>= TID_MAX_LOAD_COUNT
))
303 return MAX_TID_COUNT
;
305 tl
= &lq_data
->load
[tid
];
307 curr_time
-= curr_time
% TID_ROUND_VALUE
;
309 /* Happens only for the first packet. Initialize the data */
310 if (!(tl
->queue_count
)) {
312 tl
->time_stamp
= curr_time
;
315 tl
->packet_count
[0] = 1;
316 return MAX_TID_COUNT
;
319 time_diff
= TIME_WRAP_AROUND(tl
->time_stamp
, curr_time
);
320 index
= time_diff
/ TID_QUEUE_CELL_SPACING
;
322 /* The history is too long: remove data that is older than */
323 /* TID_MAX_TIME_DIFF */
324 if (index
>= TID_QUEUE_MAX_SIZE
)
325 rs_tl_rm_old_stats(tl
, curr_time
);
327 index
= (tl
->head
+ index
) % TID_QUEUE_MAX_SIZE
;
328 tl
->packet_count
[index
] = tl
->packet_count
[index
] + 1;
329 tl
->total
= tl
->total
+ 1;
331 if ((index
+ 1) > tl
->queue_count
)
332 tl
->queue_count
= index
+ 1;
338 get the traffic load value for tid
340 static u32
rs_tl_get_load(struct iwl_lq_sta
*lq_data
, u8 tid
)
342 u32 curr_time
= jiffies_to_msecs(jiffies
);
345 struct iwl_traffic_load
*tl
= NULL
;
347 if (tid
>= TID_MAX_LOAD_COUNT
)
350 tl
= &(lq_data
->load
[tid
]);
352 curr_time
-= curr_time
% TID_ROUND_VALUE
;
354 if (!(tl
->queue_count
))
357 time_diff
= TIME_WRAP_AROUND(tl
->time_stamp
, curr_time
);
358 index
= time_diff
/ TID_QUEUE_CELL_SPACING
;
360 /* The history is too long: remove data that is older than */
361 /* TID_MAX_TIME_DIFF */
362 if (index
>= TID_QUEUE_MAX_SIZE
)
363 rs_tl_rm_old_stats(tl
, curr_time
);
368 static int rs_tl_turn_on_agg_for_tid(struct iwl_priv
*priv
,
369 struct iwl_lq_sta
*lq_data
, u8 tid
,
370 struct ieee80211_sta
*sta
)
376 * Don't create TX aggregation sessions when in high
377 * BT traffic, as they would just be disrupted by BT.
379 if (priv
->bt_traffic_load
>= IWL_BT_COEX_TRAFFIC_LOAD_HIGH
) {
380 IWL_ERR(priv
, "BT traffic (%d), no aggregation allowed\n",
381 priv
->bt_traffic_load
);
385 load
= rs_tl_get_load(lq_data
, tid
);
387 if (load
> IWL_AGG_LOAD_THRESHOLD
) {
388 IWL_DEBUG_HT(priv
, "Starting Tx agg: STA: %pM tid: %d\n",
390 ret
= ieee80211_start_tx_ba_session(sta
, tid
, 5000);
391 if (ret
== -EAGAIN
) {
393 * driver and mac80211 is out of sync
394 * this might be cause by reloading firmware
395 * stop the tx ba session here
397 IWL_ERR(priv
, "Fail start Tx agg on tid: %d\n",
399 ieee80211_stop_tx_ba_session(sta
, tid
);
402 IWL_ERR(priv
, "Aggregation not enabled for tid %d "
403 "because load = %u\n", tid
, load
);
408 static void rs_tl_turn_on_agg(struct iwl_priv
*priv
, u8 tid
,
409 struct iwl_lq_sta
*lq_data
,
410 struct ieee80211_sta
*sta
)
412 if (tid
< TID_MAX_LOAD_COUNT
)
413 rs_tl_turn_on_agg_for_tid(priv
, lq_data
, tid
, sta
);
415 IWL_ERR(priv
, "tid exceeds max load count: %d/%d\n",
416 tid
, TID_MAX_LOAD_COUNT
);
419 static inline int get_num_of_ant_from_rate(u32 rate_n_flags
)
421 return !!(rate_n_flags
& RATE_MCS_ANT_A_MSK
) +
422 !!(rate_n_flags
& RATE_MCS_ANT_B_MSK
) +
423 !!(rate_n_flags
& RATE_MCS_ANT_C_MSK
);
427 * Static function to get the expected throughput from an iwl_scale_tbl_info
428 * that wraps a NULL pointer check
430 static s32
get_expected_tpt(struct iwl_scale_tbl_info
*tbl
, int rs_index
)
432 if (tbl
->expected_tpt
)
433 return tbl
->expected_tpt
[rs_index
];
438 * rs_collect_tx_data - Update the success/failure sliding window
440 * We keep a sliding window of the last 62 packets transmitted
441 * at this rate. window->data contains the bitmask of successful
444 static int rs_collect_tx_data(struct iwl_scale_tbl_info
*tbl
,
445 int scale_index
, int attempts
, int successes
)
447 struct iwl_rate_scale_data
*window
= NULL
;
448 static const u64 mask
= (((u64
)1) << (IWL_RATE_MAX_WINDOW
- 1));
451 if (scale_index
< 0 || scale_index
>= IWL_RATE_COUNT
)
454 /* Select window for current tx bit rate */
455 window
= &(tbl
->win
[scale_index
]);
457 /* Get expected throughput */
458 tpt
= get_expected_tpt(tbl
, scale_index
);
461 * Keep track of only the latest 62 tx frame attempts in this rate's
462 * history window; anything older isn't really relevant any more.
463 * If we have filled up the sliding window, drop the oldest attempt;
464 * if the oldest attempt (highest bit in bitmap) shows "success",
465 * subtract "1" from the success counter (this is the main reason
466 * we keep these bitmaps!).
468 while (attempts
> 0) {
469 if (window
->counter
>= IWL_RATE_MAX_WINDOW
) {
471 /* remove earliest */
472 window
->counter
= IWL_RATE_MAX_WINDOW
- 1;
474 if (window
->data
& mask
) {
475 window
->data
&= ~mask
;
476 window
->success_counter
--;
480 /* Increment frames-attempted counter */
483 /* Shift bitmap by one frame to throw away oldest history */
486 /* Mark the most recent #successes attempts as successful */
488 window
->success_counter
++;
496 /* Calculate current success ratio, avoid divide-by-0! */
497 if (window
->counter
> 0)
498 window
->success_ratio
= 128 * (100 * window
->success_counter
)
501 window
->success_ratio
= IWL_INVALID_VALUE
;
503 fail_count
= window
->counter
- window
->success_counter
;
505 /* Calculate average throughput, if we have enough history. */
506 if ((fail_count
>= IWL_RATE_MIN_FAILURE_TH
) ||
507 (window
->success_counter
>= IWL_RATE_MIN_SUCCESS_TH
))
508 window
->average_tpt
= (window
->success_ratio
* tpt
+ 64) / 128;
510 window
->average_tpt
= IWL_INVALID_VALUE
;
512 /* Tag this window as having been updated */
513 window
->stamp
= jiffies
;
519 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
521 /* FIXME:RS:remove this function and put the flags statically in the table */
522 static u32
rate_n_flags_from_tbl(struct iwl_priv
*priv
,
523 struct iwl_scale_tbl_info
*tbl
,
524 int index
, u8 use_green
)
526 u32 rate_n_flags
= 0;
528 if (is_legacy(tbl
->lq_type
)) {
529 rate_n_flags
= iwl_rates
[index
].plcp
;
530 if (index
>= IWL_FIRST_CCK_RATE
&& index
<= IWL_LAST_CCK_RATE
)
531 rate_n_flags
|= RATE_MCS_CCK_MSK
;
533 } else if (is_Ht(tbl
->lq_type
)) {
534 if (index
> IWL_LAST_OFDM_RATE
) {
535 IWL_ERR(priv
, "Invalid HT rate index %d\n", index
);
536 index
= IWL_LAST_OFDM_RATE
;
538 rate_n_flags
= RATE_MCS_HT_MSK
;
540 if (is_siso(tbl
->lq_type
))
541 rate_n_flags
|= iwl_rates
[index
].plcp_siso
;
542 else if (is_mimo2(tbl
->lq_type
))
543 rate_n_flags
|= iwl_rates
[index
].plcp_mimo2
;
545 rate_n_flags
|= iwl_rates
[index
].plcp_mimo3
;
547 IWL_ERR(priv
, "Invalid tbl->lq_type %d\n", tbl
->lq_type
);
550 rate_n_flags
|= ((tbl
->ant_type
<< RATE_MCS_ANT_POS
) &
551 RATE_MCS_ANT_ABC_MSK
);
553 if (is_Ht(tbl
->lq_type
)) {
556 rate_n_flags
|= RATE_MCS_DUP_MSK
;
558 rate_n_flags
|= RATE_MCS_HT40_MSK
;
561 rate_n_flags
|= RATE_MCS_SGI_MSK
;
564 rate_n_flags
|= RATE_MCS_GF_MSK
;
565 if (is_siso(tbl
->lq_type
) && tbl
->is_SGI
) {
566 rate_n_flags
&= ~RATE_MCS_SGI_MSK
;
567 IWL_ERR(priv
, "GF was set with SGI:SISO\n");
575 * Interpret uCode API's rate_n_flags format,
576 * fill "search" or "active" tx mode table.
578 static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags
,
579 enum ieee80211_band band
,
580 struct iwl_scale_tbl_info
*tbl
,
583 u32 ant_msk
= (rate_n_flags
& RATE_MCS_ANT_ABC_MSK
);
584 u8 num_of_ant
= get_num_of_ant_from_rate(rate_n_flags
);
587 memset(tbl
, 0, sizeof(struct iwl_scale_tbl_info
));
588 *rate_idx
= iwl_hwrate_to_plcp_idx(rate_n_flags
);
590 if (*rate_idx
== IWL_RATE_INVALID
) {
594 tbl
->is_SGI
= 0; /* default legacy setup */
597 tbl
->ant_type
= (ant_msk
>> RATE_MCS_ANT_POS
);
598 tbl
->lq_type
= LQ_NONE
;
599 tbl
->max_search
= IWL_MAX_SEARCH
;
601 /* legacy rate format */
602 if (!(rate_n_flags
& RATE_MCS_HT_MSK
)) {
603 if (num_of_ant
== 1) {
604 if (band
== IEEE80211_BAND_5GHZ
)
611 if (rate_n_flags
& RATE_MCS_SGI_MSK
)
614 if ((rate_n_flags
& RATE_MCS_HT40_MSK
) ||
615 (rate_n_flags
& RATE_MCS_DUP_MSK
))
618 if (rate_n_flags
& RATE_MCS_DUP_MSK
)
621 mcs
= rs_extract_rate(rate_n_flags
);
624 if (mcs
<= IWL_RATE_SISO_60M_PLCP
) {
626 tbl
->lq_type
= LQ_SISO
; /*else NONE*/
628 } else if (mcs
<= IWL_RATE_MIMO2_60M_PLCP
) {
630 tbl
->lq_type
= LQ_MIMO2
;
633 if (num_of_ant
== 3) {
634 tbl
->max_search
= IWL_MAX_11N_MIMO3_SEARCH
;
635 tbl
->lq_type
= LQ_MIMO3
;
642 /* switch to another antenna/antennas and return 1 */
643 /* if no other valid antenna found, return 0 */
644 static int rs_toggle_antenna(u32 valid_ant
, u32
*rate_n_flags
,
645 struct iwl_scale_tbl_info
*tbl
)
649 if (!tbl
->ant_type
|| tbl
->ant_type
> ANT_ABC
)
652 if (!rs_is_valid_ant(valid_ant
, tbl
->ant_type
))
655 new_ant_type
= ant_toggle_lookup
[tbl
->ant_type
];
657 while ((new_ant_type
!= tbl
->ant_type
) &&
658 !rs_is_valid_ant(valid_ant
, new_ant_type
))
659 new_ant_type
= ant_toggle_lookup
[new_ant_type
];
661 if (new_ant_type
== tbl
->ant_type
)
664 tbl
->ant_type
= new_ant_type
;
665 *rate_n_flags
&= ~RATE_MCS_ANT_ABC_MSK
;
666 *rate_n_flags
|= new_ant_type
<< RATE_MCS_ANT_POS
;
671 * Green-field mode is valid if the station supports it and
672 * there are no non-GF stations present in the BSS.
674 static bool rs_use_green(struct ieee80211_sta
*sta
)
676 struct iwl_station_priv
*sta_priv
= (void *)sta
->drv_priv
;
677 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
679 return (sta
->ht_cap
.cap
& IEEE80211_HT_CAP_GRN_FLD
) &&
680 !(ctx
->ht
.non_gf_sta_present
);
684 * rs_get_supported_rates - get the available rates
686 * if management frame or broadcast frame only return
687 * basic available rates.
690 static u16
rs_get_supported_rates(struct iwl_lq_sta
*lq_sta
,
691 struct ieee80211_hdr
*hdr
,
692 enum iwl_table_type rate_type
)
694 if (is_legacy(rate_type
)) {
695 return lq_sta
->active_legacy_rate
;
697 if (is_siso(rate_type
))
698 return lq_sta
->active_siso_rate
;
699 else if (is_mimo2(rate_type
))
700 return lq_sta
->active_mimo2_rate
;
702 return lq_sta
->active_mimo3_rate
;
706 static u16
rs_get_adjacent_rate(struct iwl_priv
*priv
, u8 index
, u16 rate_mask
,
709 u8 high
= IWL_RATE_INVALID
;
710 u8 low
= IWL_RATE_INVALID
;
712 /* 802.11A or ht walks to the next literal adjacent rate in
714 if (is_a_band(rate_type
) || !is_legacy(rate_type
)) {
718 /* Find the previous rate that is in the rate mask */
720 for (mask
= (1 << i
); i
>= 0; i
--, mask
>>= 1) {
721 if (rate_mask
& mask
) {
727 /* Find the next rate that is in the rate mask */
729 for (mask
= (1 << i
); i
< IWL_RATE_COUNT
; i
++, mask
<<= 1) {
730 if (rate_mask
& mask
) {
736 return (high
<< 8) | low
;
740 while (low
!= IWL_RATE_INVALID
) {
741 low
= iwl_rates
[low
].prev_rs
;
742 if (low
== IWL_RATE_INVALID
)
744 if (rate_mask
& (1 << low
))
746 IWL_DEBUG_RATE(priv
, "Skipping masked lower rate: %d\n", low
);
750 while (high
!= IWL_RATE_INVALID
) {
751 high
= iwl_rates
[high
].next_rs
;
752 if (high
== IWL_RATE_INVALID
)
754 if (rate_mask
& (1 << high
))
756 IWL_DEBUG_RATE(priv
, "Skipping masked higher rate: %d\n", high
);
759 return (high
<< 8) | low
;
762 static u32
rs_get_lower_rate(struct iwl_lq_sta
*lq_sta
,
763 struct iwl_scale_tbl_info
*tbl
,
764 u8 scale_index
, u8 ht_possible
)
769 u8 switch_to_legacy
= 0;
770 u8 is_green
= lq_sta
->is_green
;
771 struct iwl_priv
*priv
= lq_sta
->drv
;
773 /* check if we need to switch from HT to legacy rates.
774 * assumption is that mandatory rates (1Mbps or 6Mbps)
775 * are always supported (spec demand) */
776 if (!is_legacy(tbl
->lq_type
) && (!ht_possible
|| !scale_index
)) {
777 switch_to_legacy
= 1;
778 scale_index
= rs_ht_to_legacy
[scale_index
];
779 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
784 if (num_of_ant(tbl
->ant_type
) > 1)
786 first_antenna(priv
->hw_params
.valid_tx_ant
);
790 tbl
->max_search
= IWL_MAX_SEARCH
;
793 rate_mask
= rs_get_supported_rates(lq_sta
, NULL
, tbl
->lq_type
);
795 /* Mask with station rate restriction */
796 if (is_legacy(tbl
->lq_type
)) {
797 /* supp_rates has no CCK bits in A mode */
798 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
799 rate_mask
= (u16
)(rate_mask
&
800 (lq_sta
->supp_rates
<< IWL_FIRST_OFDM_RATE
));
802 rate_mask
= (u16
)(rate_mask
& lq_sta
->supp_rates
);
805 /* If we switched from HT to legacy, check current rate */
806 if (switch_to_legacy
&& (rate_mask
& (1 << scale_index
))) {
811 high_low
= rs_get_adjacent_rate(lq_sta
->drv
, scale_index
, rate_mask
,
813 low
= high_low
& 0xff;
815 if (low
== IWL_RATE_INVALID
)
819 return rate_n_flags_from_tbl(lq_sta
->drv
, tbl
, low
, is_green
);
823 * Simple function to compare two rate scale table types
825 static bool table_type_matches(struct iwl_scale_tbl_info
*a
,
826 struct iwl_scale_tbl_info
*b
)
828 return (a
->lq_type
== b
->lq_type
) && (a
->ant_type
== b
->ant_type
) &&
829 (a
->is_SGI
== b
->is_SGI
);
832 static void rs_bt_update_lq(struct iwl_priv
*priv
, struct iwl_rxon_context
*ctx
,
833 struct iwl_lq_sta
*lq_sta
)
835 struct iwl_scale_tbl_info
*tbl
;
836 bool full_concurrent
= priv
->bt_full_concurrent
;
839 if (priv
->bt_ant_couple_ok
) {
841 * Is there a need to switch between
842 * full concurrency and 3-wire?
844 spin_lock_irqsave(&priv
->lock
, flags
);
845 if (priv
->bt_ci_compliance
&& priv
->bt_ant_couple_ok
)
846 full_concurrent
= true;
848 full_concurrent
= false;
849 spin_unlock_irqrestore(&priv
->lock
, flags
);
851 if ((priv
->bt_traffic_load
!= priv
->last_bt_traffic_load
) ||
852 (priv
->bt_full_concurrent
!= full_concurrent
)) {
853 priv
->bt_full_concurrent
= full_concurrent
;
855 /* Update uCode's rate table. */
856 tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
857 rs_fill_link_cmd(priv
, lq_sta
, tbl
->current_rate
);
858 iwl_send_lq_cmd(priv
, ctx
, &lq_sta
->lq
, CMD_ASYNC
, false);
860 queue_work(priv
->workqueue
, &priv
->bt_full_concurrency
);
865 * mac80211 sends us Tx status
867 static void rs_tx_status(void *priv_r
, struct ieee80211_supported_band
*sband
,
868 struct ieee80211_sta
*sta
, void *priv_sta
,
873 int rs_index
, mac_index
, i
;
874 struct iwl_lq_sta
*lq_sta
= priv_sta
;
875 struct iwl_link_quality_cmd
*table
;
876 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
877 struct iwl_priv
*priv
= (struct iwl_priv
*)priv_r
;
878 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
879 enum mac80211_rate_control_flags mac_flags
;
881 struct iwl_scale_tbl_info tbl_type
;
882 struct iwl_scale_tbl_info
*curr_tbl
, *other_tbl
, *tmp_tbl
;
883 struct iwl_station_priv
*sta_priv
= (void *)sta
->drv_priv
;
884 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
886 IWL_DEBUG_RATE_LIMIT(priv
, "get frame ack response, update rate scale window\n");
888 /* Treat uninitialized rate scaling data same as non-existing. */
890 IWL_DEBUG_RATE(priv
, "Station rate scaling not created yet.\n");
892 } else if (!lq_sta
->drv
) {
893 IWL_DEBUG_RATE(priv
, "Rate scaling not initialized yet.\n");
897 if (!ieee80211_is_data(hdr
->frame_control
) ||
898 info
->flags
& IEEE80211_TX_CTL_NO_ACK
)
901 /* This packet was aggregated but doesn't carry status info */
902 if ((info
->flags
& IEEE80211_TX_CTL_AMPDU
) &&
903 !(info
->flags
& IEEE80211_TX_STAT_AMPDU
))
907 * Ignore this Tx frame response if its initial rate doesn't match
908 * that of latest Link Quality command. There may be stragglers
909 * from a previous Link Quality command, but we're no longer interested
910 * in those; they're either from the "active" mode while we're trying
911 * to check "search" mode, or a prior "search" mode after we've moved
912 * to a new "search" mode (which might become the new "active" mode).
915 tx_rate
= le32_to_cpu(table
->rs_table
[0].rate_n_flags
);
916 rs_get_tbl_info_from_mcs(tx_rate
, priv
->band
, &tbl_type
, &rs_index
);
917 if (priv
->band
== IEEE80211_BAND_5GHZ
)
918 rs_index
-= IWL_FIRST_OFDM_RATE
;
919 mac_flags
= info
->status
.rates
[0].flags
;
920 mac_index
= info
->status
.rates
[0].idx
;
921 /* For HT packets, map MCS to PLCP */
922 if (mac_flags
& IEEE80211_TX_RC_MCS
) {
923 mac_index
&= RATE_MCS_CODE_MSK
; /* Remove # of streams */
924 if (mac_index
>= (IWL_RATE_9M_INDEX
- IWL_FIRST_OFDM_RATE
))
927 * mac80211 HT index is always zero-indexed; we need to move
928 * HT OFDM rates after CCK rates in 2.4 GHz band
930 if (priv
->band
== IEEE80211_BAND_2GHZ
)
931 mac_index
+= IWL_FIRST_OFDM_RATE
;
933 /* Here we actually compare this rate to the latest LQ command */
934 if ((mac_index
< 0) ||
935 (tbl_type
.is_SGI
!= !!(mac_flags
& IEEE80211_TX_RC_SHORT_GI
)) ||
936 (tbl_type
.is_ht40
!= !!(mac_flags
& IEEE80211_TX_RC_40_MHZ_WIDTH
)) ||
937 (tbl_type
.is_dup
!= !!(mac_flags
& IEEE80211_TX_RC_DUP_DATA
)) ||
938 (tbl_type
.ant_type
!= info
->antenna_sel_tx
) ||
939 (!!(tx_rate
& RATE_MCS_HT_MSK
) != !!(mac_flags
& IEEE80211_TX_RC_MCS
)) ||
940 (!!(tx_rate
& RATE_MCS_GF_MSK
) != !!(mac_flags
& IEEE80211_TX_RC_GREEN_FIELD
)) ||
941 (rs_index
!= mac_index
)) {
942 IWL_DEBUG_RATE(priv
, "initial rate %d does not match %d (0x%x)\n", mac_index
, rs_index
, tx_rate
);
944 * Since rates mis-match, the last LQ command may have failed.
945 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with
948 lq_sta
->missed_rate_counter
++;
949 if (lq_sta
->missed_rate_counter
> IWL_MISSED_RATE_MAX
) {
950 lq_sta
->missed_rate_counter
= 0;
951 iwl_send_lq_cmd(priv
, ctx
, &lq_sta
->lq
, CMD_ASYNC
, false);
953 /* Regardless, ignore this status info for outdated rate */
956 /* Rate did match, so reset the missed_rate_counter */
957 lq_sta
->missed_rate_counter
= 0;
959 /* Figure out if rate scale algorithm is in active or search table */
960 if (table_type_matches(&tbl_type
,
961 &(lq_sta
->lq_info
[lq_sta
->active_tbl
]))) {
962 curr_tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
963 other_tbl
= &(lq_sta
->lq_info
[1 - lq_sta
->active_tbl
]);
964 } else if (table_type_matches(&tbl_type
,
965 &lq_sta
->lq_info
[1 - lq_sta
->active_tbl
])) {
966 curr_tbl
= &(lq_sta
->lq_info
[1 - lq_sta
->active_tbl
]);
967 other_tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
969 IWL_DEBUG_RATE(priv
, "Neither active nor search matches tx rate\n");
970 tmp_tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
971 IWL_DEBUG_RATE(priv
, "active- lq:%x, ant:%x, SGI:%d\n",
972 tmp_tbl
->lq_type
, tmp_tbl
->ant_type
, tmp_tbl
->is_SGI
);
973 tmp_tbl
= &(lq_sta
->lq_info
[1 - lq_sta
->active_tbl
]);
974 IWL_DEBUG_RATE(priv
, "search- lq:%x, ant:%x, SGI:%d\n",
975 tmp_tbl
->lq_type
, tmp_tbl
->ant_type
, tmp_tbl
->is_SGI
);
976 IWL_DEBUG_RATE(priv
, "actual- lq:%x, ant:%x, SGI:%d\n",
977 tbl_type
.lq_type
, tbl_type
.ant_type
, tbl_type
.is_SGI
);
979 * no matching table found, let's by-pass the data collection
980 * and continue to perform rate scale to find the rate table
982 rs_stay_in_table(lq_sta
, true);
987 * Updating the frame history depends on whether packets were
990 * For aggregation, all packets were transmitted at the same rate, the
991 * first index into rate scale table.
993 if (info
->flags
& IEEE80211_TX_STAT_AMPDU
) {
994 tx_rate
= le32_to_cpu(table
->rs_table
[0].rate_n_flags
);
995 rs_get_tbl_info_from_mcs(tx_rate
, priv
->band
, &tbl_type
,
997 rs_collect_tx_data(curr_tbl
, rs_index
,
998 info
->status
.ampdu_len
,
999 info
->status
.ampdu_ack_len
);
1001 /* Update success/fail counts if not searching for new mode */
1002 if (lq_sta
->stay_in_tbl
) {
1003 lq_sta
->total_success
+= info
->status
.ampdu_ack_len
;
1004 lq_sta
->total_failed
+= (info
->status
.ampdu_len
-
1005 info
->status
.ampdu_ack_len
);
1009 * For legacy, update frame history with for each Tx retry.
1011 retries
= info
->status
.rates
[0].count
- 1;
1012 /* HW doesn't send more than 15 retries */
1013 retries
= min(retries
, 15);
1015 /* The last transmission may have been successful */
1016 legacy_success
= !!(info
->flags
& IEEE80211_TX_STAT_ACK
);
1017 /* Collect data for each rate used during failed TX attempts */
1018 for (i
= 0; i
<= retries
; ++i
) {
1019 tx_rate
= le32_to_cpu(table
->rs_table
[i
].rate_n_flags
);
1020 rs_get_tbl_info_from_mcs(tx_rate
, priv
->band
,
1021 &tbl_type
, &rs_index
);
1023 * Only collect stats if retried rate is in the same RS
1024 * table as active/search.
1026 if (table_type_matches(&tbl_type
, curr_tbl
))
1028 else if (table_type_matches(&tbl_type
, other_tbl
))
1029 tmp_tbl
= other_tbl
;
1032 rs_collect_tx_data(tmp_tbl
, rs_index
, 1,
1033 i
< retries
? 0 : legacy_success
);
1036 /* Update success/fail counts if not searching for new mode */
1037 if (lq_sta
->stay_in_tbl
) {
1038 lq_sta
->total_success
+= legacy_success
;
1039 lq_sta
->total_failed
+= retries
+ (1 - legacy_success
);
1042 /* The last TX rate is cached in lq_sta; it's set in if/else above */
1043 lq_sta
->last_rate_n_flags
= tx_rate
;
1045 /* See if there's a better rate or modulation mode to try. */
1046 if (sta
&& sta
->supp_rates
[sband
->band
])
1047 rs_rate_scale_perform(priv
, skb
, sta
, lq_sta
);
1049 if (priv
->cfg
->bt_params
&& priv
->cfg
->bt_params
->advanced_bt_coexist
)
1050 rs_bt_update_lq(priv
, ctx
, lq_sta
);
1054 * Begin a period of staying with a selected modulation mode.
1055 * Set "stay_in_tbl" flag to prevent any mode switches.
1056 * Set frame tx success limits according to legacy vs. high-throughput,
1057 * and reset overall (spanning all rates) tx success history statistics.
1058 * These control how long we stay using same modulation mode before
1059 * searching for a new mode.
1061 static void rs_set_stay_in_table(struct iwl_priv
*priv
, u8 is_legacy
,
1062 struct iwl_lq_sta
*lq_sta
)
1064 IWL_DEBUG_RATE(priv
, "we are staying in the same table\n");
1065 lq_sta
->stay_in_tbl
= 1; /* only place this gets set */
1067 lq_sta
->table_count_limit
= IWL_LEGACY_TABLE_COUNT
;
1068 lq_sta
->max_failure_limit
= IWL_LEGACY_FAILURE_LIMIT
;
1069 lq_sta
->max_success_limit
= IWL_LEGACY_SUCCESS_LIMIT
;
1071 lq_sta
->table_count_limit
= IWL_NONE_LEGACY_TABLE_COUNT
;
1072 lq_sta
->max_failure_limit
= IWL_NONE_LEGACY_FAILURE_LIMIT
;
1073 lq_sta
->max_success_limit
= IWL_NONE_LEGACY_SUCCESS_LIMIT
;
1075 lq_sta
->table_count
= 0;
1076 lq_sta
->total_failed
= 0;
1077 lq_sta
->total_success
= 0;
1078 lq_sta
->flush_timer
= jiffies
;
1079 lq_sta
->action_counter
= 0;
1083 * Find correct throughput table for given mode of modulation
1085 static void rs_set_expected_tpt_table(struct iwl_lq_sta
*lq_sta
,
1086 struct iwl_scale_tbl_info
*tbl
)
1088 /* Used to choose among HT tables */
1089 s32 (*ht_tbl_pointer
)[IWL_RATE_COUNT
];
1091 /* Check for invalid LQ type */
1092 if (WARN_ON_ONCE(!is_legacy(tbl
->lq_type
) && !is_Ht(tbl
->lq_type
))) {
1093 tbl
->expected_tpt
= expected_tpt_legacy
;
1097 /* Legacy rates have only one table */
1098 if (is_legacy(tbl
->lq_type
)) {
1099 tbl
->expected_tpt
= expected_tpt_legacy
;
1103 /* Choose among many HT tables depending on number of streams
1104 * (SISO/MIMO2/MIMO3), channel width (20/40), SGI, and aggregation
1106 if (is_siso(tbl
->lq_type
) && (!tbl
->is_ht40
|| lq_sta
->is_dup
))
1107 ht_tbl_pointer
= expected_tpt_siso20MHz
;
1108 else if (is_siso(tbl
->lq_type
))
1109 ht_tbl_pointer
= expected_tpt_siso40MHz
;
1110 else if (is_mimo2(tbl
->lq_type
) && (!tbl
->is_ht40
|| lq_sta
->is_dup
))
1111 ht_tbl_pointer
= expected_tpt_mimo2_20MHz
;
1112 else if (is_mimo2(tbl
->lq_type
))
1113 ht_tbl_pointer
= expected_tpt_mimo2_40MHz
;
1114 else if (is_mimo3(tbl
->lq_type
) && (!tbl
->is_ht40
|| lq_sta
->is_dup
))
1115 ht_tbl_pointer
= expected_tpt_mimo3_20MHz
;
1116 else /* if (is_mimo3(tbl->lq_type)) <-- must be true */
1117 ht_tbl_pointer
= expected_tpt_mimo3_40MHz
;
1119 if (!tbl
->is_SGI
&& !lq_sta
->is_agg
) /* Normal */
1120 tbl
->expected_tpt
= ht_tbl_pointer
[0];
1121 else if (tbl
->is_SGI
&& !lq_sta
->is_agg
) /* SGI */
1122 tbl
->expected_tpt
= ht_tbl_pointer
[1];
1123 else if (!tbl
->is_SGI
&& lq_sta
->is_agg
) /* AGG */
1124 tbl
->expected_tpt
= ht_tbl_pointer
[2];
1126 tbl
->expected_tpt
= ht_tbl_pointer
[3];
1130 * Find starting rate for new "search" high-throughput mode of modulation.
1131 * Goal is to find lowest expected rate (under perfect conditions) that is
1132 * above the current measured throughput of "active" mode, to give new mode
1133 * a fair chance to prove itself without too many challenges.
1135 * This gets called when transitioning to more aggressive modulation
1136 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1137 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1138 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1139 * bit rate will typically need to increase, but not if performance was bad.
1141 static s32
rs_get_best_rate(struct iwl_priv
*priv
,
1142 struct iwl_lq_sta
*lq_sta
,
1143 struct iwl_scale_tbl_info
*tbl
, /* "search" */
1144 u16 rate_mask
, s8 index
)
1146 /* "active" values */
1147 struct iwl_scale_tbl_info
*active_tbl
=
1148 &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1149 s32 active_sr
= active_tbl
->win
[index
].success_ratio
;
1150 s32 active_tpt
= active_tbl
->expected_tpt
[index
];
1152 /* expected "search" throughput */
1153 s32
*tpt_tbl
= tbl
->expected_tpt
;
1155 s32 new_rate
, high
, low
, start_hi
;
1159 new_rate
= high
= low
= start_hi
= IWL_RATE_INVALID
;
1162 high_low
= rs_get_adjacent_rate(priv
, rate
, rate_mask
,
1165 low
= high_low
& 0xff;
1166 high
= (high_low
>> 8) & 0xff;
1169 * Lower the "search" bit rate, to give new "search" mode
1170 * approximately the same throughput as "active" if:
1172 * 1) "Active" mode has been working modestly well (but not
1173 * great), and expected "search" throughput (under perfect
1174 * conditions) at candidate rate is above the actual
1175 * measured "active" throughput (but less than expected
1176 * "active" throughput under perfect conditions).
1178 * 2) "Active" mode has been working perfectly or very well
1179 * and expected "search" throughput (under perfect
1180 * conditions) at candidate rate is above expected
1181 * "active" throughput (under perfect conditions).
1183 if ((((100 * tpt_tbl
[rate
]) > lq_sta
->last_tpt
) &&
1184 ((active_sr
> IWL_RATE_DECREASE_TH
) &&
1185 (active_sr
<= IWL_RATE_HIGH_TH
) &&
1186 (tpt_tbl
[rate
] <= active_tpt
))) ||
1187 ((active_sr
>= IWL_RATE_SCALE_SWITCH
) &&
1188 (tpt_tbl
[rate
] > active_tpt
))) {
1190 /* (2nd or later pass)
1191 * If we've already tried to raise the rate, and are
1192 * now trying to lower it, use the higher rate. */
1193 if (start_hi
!= IWL_RATE_INVALID
) {
1194 new_rate
= start_hi
;
1200 /* Loop again with lower rate */
1201 if (low
!= IWL_RATE_INVALID
)
1204 /* Lower rate not available, use the original */
1208 /* Else try to raise the "search" rate to match "active" */
1210 /* (2nd or later pass)
1211 * If we've already tried to lower the rate, and are
1212 * now trying to raise it, use the lower rate. */
1213 if (new_rate
!= IWL_RATE_INVALID
)
1216 /* Loop again with higher rate */
1217 else if (high
!= IWL_RATE_INVALID
) {
1221 /* Higher rate not available, use the original */
1233 * Set up search table for MIMO2
1235 static int rs_switch_to_mimo2(struct iwl_priv
*priv
,
1236 struct iwl_lq_sta
*lq_sta
,
1237 struct ieee80211_conf
*conf
,
1238 struct ieee80211_sta
*sta
,
1239 struct iwl_scale_tbl_info
*tbl
, int index
)
1243 s8 is_green
= lq_sta
->is_green
;
1244 struct iwl_station_priv
*sta_priv
= (void *)sta
->drv_priv
;
1245 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
1247 if (!conf_is_ht(conf
) || !sta
->ht_cap
.ht_supported
)
1250 if (((sta
->ht_cap
.cap
& IEEE80211_HT_CAP_SM_PS
) >> 2)
1251 == WLAN_HT_CAP_SM_PS_STATIC
)
1254 /* Need both Tx chains/antennas to support MIMO */
1255 if (priv
->hw_params
.tx_chains_num
< 2)
1258 IWL_DEBUG_RATE(priv
, "LQ: try to switch to MIMO2\n");
1260 tbl
->lq_type
= LQ_MIMO2
;
1261 tbl
->is_dup
= lq_sta
->is_dup
;
1263 tbl
->max_search
= IWL_MAX_SEARCH
;
1264 rate_mask
= lq_sta
->active_mimo2_rate
;
1266 if (iwl_is_ht40_tx_allowed(priv
, ctx
, &sta
->ht_cap
))
1271 rs_set_expected_tpt_table(lq_sta
, tbl
);
1273 rate
= rs_get_best_rate(priv
, lq_sta
, tbl
, rate_mask
, index
);
1275 IWL_DEBUG_RATE(priv
, "LQ: MIMO2 best rate %d mask %X\n", rate
, rate_mask
);
1276 if ((rate
== IWL_RATE_INVALID
) || !((1 << rate
) & rate_mask
)) {
1277 IWL_DEBUG_RATE(priv
, "Can't switch with index %d rate mask %x\n",
1281 tbl
->current_rate
= rate_n_flags_from_tbl(priv
, tbl
, rate
, is_green
);
1283 IWL_DEBUG_RATE(priv
, "LQ: Switch to new mcs %X index is green %X\n",
1284 tbl
->current_rate
, is_green
);
1289 * Set up search table for MIMO3
1291 static int rs_switch_to_mimo3(struct iwl_priv
*priv
,
1292 struct iwl_lq_sta
*lq_sta
,
1293 struct ieee80211_conf
*conf
,
1294 struct ieee80211_sta
*sta
,
1295 struct iwl_scale_tbl_info
*tbl
, int index
)
1299 s8 is_green
= lq_sta
->is_green
;
1300 struct iwl_station_priv
*sta_priv
= (void *)sta
->drv_priv
;
1301 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
1303 if (!conf_is_ht(conf
) || !sta
->ht_cap
.ht_supported
)
1306 if (((sta
->ht_cap
.cap
& IEEE80211_HT_CAP_SM_PS
) >> 2)
1307 == WLAN_HT_CAP_SM_PS_STATIC
)
1310 /* Need both Tx chains/antennas to support MIMO */
1311 if (priv
->hw_params
.tx_chains_num
< 3)
1314 IWL_DEBUG_RATE(priv
, "LQ: try to switch to MIMO3\n");
1316 tbl
->lq_type
= LQ_MIMO3
;
1317 tbl
->is_dup
= lq_sta
->is_dup
;
1319 tbl
->max_search
= IWL_MAX_11N_MIMO3_SEARCH
;
1320 rate_mask
= lq_sta
->active_mimo3_rate
;
1322 if (iwl_is_ht40_tx_allowed(priv
, ctx
, &sta
->ht_cap
))
1327 rs_set_expected_tpt_table(lq_sta
, tbl
);
1329 rate
= rs_get_best_rate(priv
, lq_sta
, tbl
, rate_mask
, index
);
1331 IWL_DEBUG_RATE(priv
, "LQ: MIMO3 best rate %d mask %X\n",
1333 if ((rate
== IWL_RATE_INVALID
) || !((1 << rate
) & rate_mask
)) {
1334 IWL_DEBUG_RATE(priv
, "Can't switch with index %d rate mask %x\n",
1338 tbl
->current_rate
= rate_n_flags_from_tbl(priv
, tbl
, rate
, is_green
);
1340 IWL_DEBUG_RATE(priv
, "LQ: Switch to new mcs %X index is green %X\n",
1341 tbl
->current_rate
, is_green
);
1346 * Set up search table for SISO
1348 static int rs_switch_to_siso(struct iwl_priv
*priv
,
1349 struct iwl_lq_sta
*lq_sta
,
1350 struct ieee80211_conf
*conf
,
1351 struct ieee80211_sta
*sta
,
1352 struct iwl_scale_tbl_info
*tbl
, int index
)
1355 u8 is_green
= lq_sta
->is_green
;
1357 struct iwl_station_priv
*sta_priv
= (void *)sta
->drv_priv
;
1358 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
1360 if (!conf_is_ht(conf
) || !sta
->ht_cap
.ht_supported
)
1363 IWL_DEBUG_RATE(priv
, "LQ: try to switch to SISO\n");
1365 tbl
->is_dup
= lq_sta
->is_dup
;
1366 tbl
->lq_type
= LQ_SISO
;
1368 tbl
->max_search
= IWL_MAX_SEARCH
;
1369 rate_mask
= lq_sta
->active_siso_rate
;
1371 if (iwl_is_ht40_tx_allowed(priv
, ctx
, &sta
->ht_cap
))
1377 tbl
->is_SGI
= 0; /*11n spec: no SGI in SISO+Greenfield*/
1379 rs_set_expected_tpt_table(lq_sta
, tbl
);
1380 rate
= rs_get_best_rate(priv
, lq_sta
, tbl
, rate_mask
, index
);
1382 IWL_DEBUG_RATE(priv
, "LQ: get best rate %d mask %X\n", rate
, rate_mask
);
1383 if ((rate
== IWL_RATE_INVALID
) || !((1 << rate
) & rate_mask
)) {
1384 IWL_DEBUG_RATE(priv
, "can not switch with index %d rate mask %x\n",
1388 tbl
->current_rate
= rate_n_flags_from_tbl(priv
, tbl
, rate
, is_green
);
1389 IWL_DEBUG_RATE(priv
, "LQ: Switch to new mcs %X index is green %X\n",
1390 tbl
->current_rate
, is_green
);
1395 * Try to switch to new modulation mode from legacy
1397 static int rs_move_legacy_other(struct iwl_priv
*priv
,
1398 struct iwl_lq_sta
*lq_sta
,
1399 struct ieee80211_conf
*conf
,
1400 struct ieee80211_sta
*sta
,
1403 struct iwl_scale_tbl_info
*tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1404 struct iwl_scale_tbl_info
*search_tbl
=
1405 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1406 struct iwl_rate_scale_data
*window
= &(tbl
->win
[index
]);
1407 u32 sz
= (sizeof(struct iwl_scale_tbl_info
) -
1408 (sizeof(struct iwl_rate_scale_data
) * IWL_RATE_COUNT
));
1410 u8 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
1411 u8 tx_chains_num
= priv
->hw_params
.tx_chains_num
;
1413 u8 update_search_tbl_counter
= 0;
1415 switch (priv
->bt_traffic_load
) {
1416 case IWL_BT_COEX_TRAFFIC_LOAD_NONE
:
1419 case IWL_BT_COEX_TRAFFIC_LOAD_LOW
:
1420 /* avoid antenna B unless MIMO */
1421 valid_tx_ant
= first_antenna(priv
->hw_params
.valid_tx_ant
);
1422 if (tbl
->action
== IWL_LEGACY_SWITCH_ANTENNA2
)
1423 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA1
;
1425 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH
:
1426 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS
:
1427 /* avoid antenna B and MIMO */
1428 valid_tx_ant
= first_antenna(priv
->hw_params
.valid_tx_ant
);
1429 if (tbl
->action
>= IWL_LEGACY_SWITCH_ANTENNA2
&&
1430 tbl
->action
!= IWL_LEGACY_SWITCH_SISO
)
1431 tbl
->action
= IWL_LEGACY_SWITCH_SISO
;
1434 IWL_ERR(priv
, "Invalid BT load %d", priv
->bt_traffic_load
);
1438 if (!iwl_ht_enabled(priv
))
1439 /* stay in Legacy */
1440 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA1
;
1441 else if (iwl_tx_ant_restriction(priv
) == IWL_ANT_OK_SINGLE
&&
1442 tbl
->action
> IWL_LEGACY_SWITCH_SISO
)
1443 tbl
->action
= IWL_LEGACY_SWITCH_SISO
;
1445 /* configure as 1x1 if bt full concurrency */
1446 if (priv
->bt_full_concurrent
) {
1447 if (!iwl_ht_enabled(priv
))
1448 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA1
;
1449 else if (tbl
->action
>= IWL_LEGACY_SWITCH_ANTENNA2
)
1450 tbl
->action
= IWL_LEGACY_SWITCH_SISO
;
1451 valid_tx_ant
= first_antenna(priv
->hw_params
.valid_tx_ant
);
1454 start_action
= tbl
->action
;
1456 lq_sta
->action_counter
++;
1457 switch (tbl
->action
) {
1458 case IWL_LEGACY_SWITCH_ANTENNA1
:
1459 case IWL_LEGACY_SWITCH_ANTENNA2
:
1460 IWL_DEBUG_RATE(priv
, "LQ: Legacy toggle Antenna\n");
1462 if ((tbl
->action
== IWL_LEGACY_SWITCH_ANTENNA1
&&
1463 tx_chains_num
<= 1) ||
1464 (tbl
->action
== IWL_LEGACY_SWITCH_ANTENNA2
&&
1465 tx_chains_num
<= 2))
1468 /* Don't change antenna if success has been great */
1469 if (window
->success_ratio
>= IWL_RS_GOOD_RATIO
&&
1470 !priv
->bt_full_concurrent
&&
1471 priv
->bt_traffic_load
==
1472 IWL_BT_COEX_TRAFFIC_LOAD_NONE
)
1475 /* Set up search table to try other antenna */
1476 memcpy(search_tbl
, tbl
, sz
);
1478 if (rs_toggle_antenna(valid_tx_ant
,
1479 &search_tbl
->current_rate
, search_tbl
)) {
1480 update_search_tbl_counter
= 1;
1481 rs_set_expected_tpt_table(lq_sta
, search_tbl
);
1485 case IWL_LEGACY_SWITCH_SISO
:
1486 IWL_DEBUG_RATE(priv
, "LQ: Legacy switch to SISO\n");
1488 /* Set up search table to try SISO */
1489 memcpy(search_tbl
, tbl
, sz
);
1490 search_tbl
->is_SGI
= 0;
1491 ret
= rs_switch_to_siso(priv
, lq_sta
, conf
, sta
,
1494 lq_sta
->action_counter
= 0;
1499 case IWL_LEGACY_SWITCH_MIMO2_AB
:
1500 case IWL_LEGACY_SWITCH_MIMO2_AC
:
1501 case IWL_LEGACY_SWITCH_MIMO2_BC
:
1502 IWL_DEBUG_RATE(priv
, "LQ: Legacy switch to MIMO2\n");
1504 /* Set up search table to try MIMO */
1505 memcpy(search_tbl
, tbl
, sz
);
1506 search_tbl
->is_SGI
= 0;
1508 if (tbl
->action
== IWL_LEGACY_SWITCH_MIMO2_AB
)
1509 search_tbl
->ant_type
= ANT_AB
;
1510 else if (tbl
->action
== IWL_LEGACY_SWITCH_MIMO2_AC
)
1511 search_tbl
->ant_type
= ANT_AC
;
1513 search_tbl
->ant_type
= ANT_BC
;
1515 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
1518 ret
= rs_switch_to_mimo2(priv
, lq_sta
, conf
, sta
,
1521 lq_sta
->action_counter
= 0;
1526 case IWL_LEGACY_SWITCH_MIMO3_ABC
:
1527 IWL_DEBUG_RATE(priv
, "LQ: Legacy switch to MIMO3\n");
1529 /* Set up search table to try MIMO3 */
1530 memcpy(search_tbl
, tbl
, sz
);
1531 search_tbl
->is_SGI
= 0;
1533 search_tbl
->ant_type
= ANT_ABC
;
1535 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
1538 ret
= rs_switch_to_mimo3(priv
, lq_sta
, conf
, sta
,
1541 lq_sta
->action_counter
= 0;
1547 if (tbl
->action
> IWL_LEGACY_SWITCH_MIMO3_ABC
)
1548 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA1
;
1550 if (tbl
->action
== start_action
)
1554 search_tbl
->lq_type
= LQ_NONE
;
1558 lq_sta
->search_better_tbl
= 1;
1560 if (tbl
->action
> IWL_LEGACY_SWITCH_MIMO3_ABC
)
1561 tbl
->action
= IWL_LEGACY_SWITCH_ANTENNA1
;
1562 if (update_search_tbl_counter
)
1563 search_tbl
->action
= tbl
->action
;
1569 * Try to switch to new modulation mode from SISO
1571 static int rs_move_siso_to_other(struct iwl_priv
*priv
,
1572 struct iwl_lq_sta
*lq_sta
,
1573 struct ieee80211_conf
*conf
,
1574 struct ieee80211_sta
*sta
, int index
)
1576 u8 is_green
= lq_sta
->is_green
;
1577 struct iwl_scale_tbl_info
*tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1578 struct iwl_scale_tbl_info
*search_tbl
=
1579 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1580 struct iwl_rate_scale_data
*window
= &(tbl
->win
[index
]);
1581 struct ieee80211_sta_ht_cap
*ht_cap
= &sta
->ht_cap
;
1582 u32 sz
= (sizeof(struct iwl_scale_tbl_info
) -
1583 (sizeof(struct iwl_rate_scale_data
) * IWL_RATE_COUNT
));
1585 u8 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
1586 u8 tx_chains_num
= priv
->hw_params
.tx_chains_num
;
1587 u8 update_search_tbl_counter
= 0;
1590 switch (priv
->bt_traffic_load
) {
1591 case IWL_BT_COEX_TRAFFIC_LOAD_NONE
:
1594 case IWL_BT_COEX_TRAFFIC_LOAD_LOW
:
1595 /* avoid antenna B unless MIMO */
1596 valid_tx_ant
= first_antenna(priv
->hw_params
.valid_tx_ant
);
1597 if (tbl
->action
== IWL_SISO_SWITCH_ANTENNA2
)
1598 tbl
->action
= IWL_SISO_SWITCH_ANTENNA1
;
1600 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH
:
1601 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS
:
1602 /* avoid antenna B and MIMO */
1603 valid_tx_ant
= first_antenna(priv
->hw_params
.valid_tx_ant
);
1604 if (tbl
->action
!= IWL_SISO_SWITCH_ANTENNA1
)
1605 tbl
->action
= IWL_SISO_SWITCH_ANTENNA1
;
1608 IWL_ERR(priv
, "Invalid BT load %d", priv
->bt_traffic_load
);
1612 if (iwl_tx_ant_restriction(priv
) == IWL_ANT_OK_SINGLE
&&
1613 tbl
->action
> IWL_SISO_SWITCH_ANTENNA2
) {
1615 tbl
->action
= IWL_SISO_SWITCH_ANTENNA1
;
1618 /* configure as 1x1 if bt full concurrency */
1619 if (priv
->bt_full_concurrent
) {
1620 valid_tx_ant
= first_antenna(priv
->hw_params
.valid_tx_ant
);
1621 if (tbl
->action
>= IWL_LEGACY_SWITCH_ANTENNA2
)
1622 tbl
->action
= IWL_SISO_SWITCH_ANTENNA1
;
1625 start_action
= tbl
->action
;
1627 lq_sta
->action_counter
++;
1628 switch (tbl
->action
) {
1629 case IWL_SISO_SWITCH_ANTENNA1
:
1630 case IWL_SISO_SWITCH_ANTENNA2
:
1631 IWL_DEBUG_RATE(priv
, "LQ: SISO toggle Antenna\n");
1632 if ((tbl
->action
== IWL_SISO_SWITCH_ANTENNA1
&&
1633 tx_chains_num
<= 1) ||
1634 (tbl
->action
== IWL_SISO_SWITCH_ANTENNA2
&&
1635 tx_chains_num
<= 2))
1638 if (window
->success_ratio
>= IWL_RS_GOOD_RATIO
&&
1639 !priv
->bt_full_concurrent
&&
1640 priv
->bt_traffic_load
==
1641 IWL_BT_COEX_TRAFFIC_LOAD_NONE
)
1644 memcpy(search_tbl
, tbl
, sz
);
1645 if (rs_toggle_antenna(valid_tx_ant
,
1646 &search_tbl
->current_rate
, search_tbl
)) {
1647 update_search_tbl_counter
= 1;
1651 case IWL_SISO_SWITCH_MIMO2_AB
:
1652 case IWL_SISO_SWITCH_MIMO2_AC
:
1653 case IWL_SISO_SWITCH_MIMO2_BC
:
1654 IWL_DEBUG_RATE(priv
, "LQ: SISO switch to MIMO2\n");
1655 memcpy(search_tbl
, tbl
, sz
);
1656 search_tbl
->is_SGI
= 0;
1658 if (tbl
->action
== IWL_SISO_SWITCH_MIMO2_AB
)
1659 search_tbl
->ant_type
= ANT_AB
;
1660 else if (tbl
->action
== IWL_SISO_SWITCH_MIMO2_AC
)
1661 search_tbl
->ant_type
= ANT_AC
;
1663 search_tbl
->ant_type
= ANT_BC
;
1665 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
1668 ret
= rs_switch_to_mimo2(priv
, lq_sta
, conf
, sta
,
1673 case IWL_SISO_SWITCH_GI
:
1674 if (!tbl
->is_ht40
&& !(ht_cap
->cap
&
1675 IEEE80211_HT_CAP_SGI_20
))
1677 if (tbl
->is_ht40
&& !(ht_cap
->cap
&
1678 IEEE80211_HT_CAP_SGI_40
))
1681 IWL_DEBUG_RATE(priv
, "LQ: SISO toggle SGI/NGI\n");
1683 memcpy(search_tbl
, tbl
, sz
);
1689 "SGI was set in GF+SISO\n");
1691 search_tbl
->is_SGI
= !tbl
->is_SGI
;
1692 rs_set_expected_tpt_table(lq_sta
, search_tbl
);
1694 s32 tpt
= lq_sta
->last_tpt
/ 100;
1695 if (tpt
>= search_tbl
->expected_tpt
[index
])
1698 search_tbl
->current_rate
=
1699 rate_n_flags_from_tbl(priv
, search_tbl
,
1701 update_search_tbl_counter
= 1;
1703 case IWL_SISO_SWITCH_MIMO3_ABC
:
1704 IWL_DEBUG_RATE(priv
, "LQ: SISO switch to MIMO3\n");
1705 memcpy(search_tbl
, tbl
, sz
);
1706 search_tbl
->is_SGI
= 0;
1707 search_tbl
->ant_type
= ANT_ABC
;
1709 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
1712 ret
= rs_switch_to_mimo3(priv
, lq_sta
, conf
, sta
,
1719 if (tbl
->action
> IWL_LEGACY_SWITCH_MIMO3_ABC
)
1720 tbl
->action
= IWL_SISO_SWITCH_ANTENNA1
;
1722 if (tbl
->action
== start_action
)
1725 search_tbl
->lq_type
= LQ_NONE
;
1729 lq_sta
->search_better_tbl
= 1;
1731 if (tbl
->action
> IWL_SISO_SWITCH_MIMO3_ABC
)
1732 tbl
->action
= IWL_SISO_SWITCH_ANTENNA1
;
1733 if (update_search_tbl_counter
)
1734 search_tbl
->action
= tbl
->action
;
1740 * Try to switch to new modulation mode from MIMO2
1742 static int rs_move_mimo2_to_other(struct iwl_priv
*priv
,
1743 struct iwl_lq_sta
*lq_sta
,
1744 struct ieee80211_conf
*conf
,
1745 struct ieee80211_sta
*sta
, int index
)
1747 s8 is_green
= lq_sta
->is_green
;
1748 struct iwl_scale_tbl_info
*tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1749 struct iwl_scale_tbl_info
*search_tbl
=
1750 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1751 struct iwl_rate_scale_data
*window
= &(tbl
->win
[index
]);
1752 struct ieee80211_sta_ht_cap
*ht_cap
= &sta
->ht_cap
;
1753 u32 sz
= (sizeof(struct iwl_scale_tbl_info
) -
1754 (sizeof(struct iwl_rate_scale_data
) * IWL_RATE_COUNT
));
1756 u8 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
1757 u8 tx_chains_num
= priv
->hw_params
.tx_chains_num
;
1758 u8 update_search_tbl_counter
= 0;
1761 switch (priv
->bt_traffic_load
) {
1762 case IWL_BT_COEX_TRAFFIC_LOAD_NONE
:
1765 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH
:
1766 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS
:
1767 /* avoid antenna B and MIMO */
1768 if (tbl
->action
!= IWL_MIMO2_SWITCH_SISO_A
)
1769 tbl
->action
= IWL_MIMO2_SWITCH_SISO_A
;
1771 case IWL_BT_COEX_TRAFFIC_LOAD_LOW
:
1772 /* avoid antenna B unless MIMO */
1773 if (tbl
->action
== IWL_MIMO2_SWITCH_SISO_B
||
1774 tbl
->action
== IWL_MIMO2_SWITCH_SISO_C
)
1775 tbl
->action
= IWL_MIMO2_SWITCH_SISO_A
;
1778 IWL_ERR(priv
, "Invalid BT load %d", priv
->bt_traffic_load
);
1782 if ((iwl_tx_ant_restriction(priv
) == IWL_ANT_OK_SINGLE
) &&
1783 (tbl
->action
< IWL_MIMO2_SWITCH_SISO_A
||
1784 tbl
->action
> IWL_MIMO2_SWITCH_SISO_C
)) {
1785 /* switch in SISO */
1786 tbl
->action
= IWL_MIMO2_SWITCH_SISO_A
;
1789 /* configure as 1x1 if bt full concurrency */
1790 if (priv
->bt_full_concurrent
&&
1791 (tbl
->action
< IWL_MIMO2_SWITCH_SISO_A
||
1792 tbl
->action
> IWL_MIMO2_SWITCH_SISO_C
))
1793 tbl
->action
= IWL_MIMO2_SWITCH_SISO_A
;
1795 start_action
= tbl
->action
;
1797 lq_sta
->action_counter
++;
1798 switch (tbl
->action
) {
1799 case IWL_MIMO2_SWITCH_ANTENNA1
:
1800 case IWL_MIMO2_SWITCH_ANTENNA2
:
1801 IWL_DEBUG_RATE(priv
, "LQ: MIMO2 toggle Antennas\n");
1803 if (tx_chains_num
<= 2)
1806 if (window
->success_ratio
>= IWL_RS_GOOD_RATIO
)
1809 memcpy(search_tbl
, tbl
, sz
);
1810 if (rs_toggle_antenna(valid_tx_ant
,
1811 &search_tbl
->current_rate
, search_tbl
)) {
1812 update_search_tbl_counter
= 1;
1816 case IWL_MIMO2_SWITCH_SISO_A
:
1817 case IWL_MIMO2_SWITCH_SISO_B
:
1818 case IWL_MIMO2_SWITCH_SISO_C
:
1819 IWL_DEBUG_RATE(priv
, "LQ: MIMO2 switch to SISO\n");
1821 /* Set up new search table for SISO */
1822 memcpy(search_tbl
, tbl
, sz
);
1824 if (tbl
->action
== IWL_MIMO2_SWITCH_SISO_A
)
1825 search_tbl
->ant_type
= ANT_A
;
1826 else if (tbl
->action
== IWL_MIMO2_SWITCH_SISO_B
)
1827 search_tbl
->ant_type
= ANT_B
;
1829 search_tbl
->ant_type
= ANT_C
;
1831 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
1834 ret
= rs_switch_to_siso(priv
, lq_sta
, conf
, sta
,
1841 case IWL_MIMO2_SWITCH_GI
:
1842 if (!tbl
->is_ht40
&& !(ht_cap
->cap
&
1843 IEEE80211_HT_CAP_SGI_20
))
1845 if (tbl
->is_ht40
&& !(ht_cap
->cap
&
1846 IEEE80211_HT_CAP_SGI_40
))
1849 IWL_DEBUG_RATE(priv
, "LQ: MIMO2 toggle SGI/NGI\n");
1851 /* Set up new search table for MIMO2 */
1852 memcpy(search_tbl
, tbl
, sz
);
1853 search_tbl
->is_SGI
= !tbl
->is_SGI
;
1854 rs_set_expected_tpt_table(lq_sta
, search_tbl
);
1856 * If active table already uses the fastest possible
1857 * modulation (dual stream with short guard interval),
1858 * and it's working well, there's no need to look
1859 * for a better type of modulation!
1862 s32 tpt
= lq_sta
->last_tpt
/ 100;
1863 if (tpt
>= search_tbl
->expected_tpt
[index
])
1866 search_tbl
->current_rate
=
1867 rate_n_flags_from_tbl(priv
, search_tbl
,
1869 update_search_tbl_counter
= 1;
1872 case IWL_MIMO2_SWITCH_MIMO3_ABC
:
1873 IWL_DEBUG_RATE(priv
, "LQ: MIMO2 switch to MIMO3\n");
1874 memcpy(search_tbl
, tbl
, sz
);
1875 search_tbl
->is_SGI
= 0;
1876 search_tbl
->ant_type
= ANT_ABC
;
1878 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
1881 ret
= rs_switch_to_mimo3(priv
, lq_sta
, conf
, sta
,
1889 if (tbl
->action
> IWL_MIMO2_SWITCH_MIMO3_ABC
)
1890 tbl
->action
= IWL_MIMO2_SWITCH_ANTENNA1
;
1892 if (tbl
->action
== start_action
)
1895 search_tbl
->lq_type
= LQ_NONE
;
1898 lq_sta
->search_better_tbl
= 1;
1900 if (tbl
->action
> IWL_MIMO2_SWITCH_MIMO3_ABC
)
1901 tbl
->action
= IWL_MIMO2_SWITCH_ANTENNA1
;
1902 if (update_search_tbl_counter
)
1903 search_tbl
->action
= tbl
->action
;
1910 * Try to switch to new modulation mode from MIMO3
1912 static int rs_move_mimo3_to_other(struct iwl_priv
*priv
,
1913 struct iwl_lq_sta
*lq_sta
,
1914 struct ieee80211_conf
*conf
,
1915 struct ieee80211_sta
*sta
, int index
)
1917 s8 is_green
= lq_sta
->is_green
;
1918 struct iwl_scale_tbl_info
*tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
1919 struct iwl_scale_tbl_info
*search_tbl
=
1920 &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
1921 struct iwl_rate_scale_data
*window
= &(tbl
->win
[index
]);
1922 struct ieee80211_sta_ht_cap
*ht_cap
= &sta
->ht_cap
;
1923 u32 sz
= (sizeof(struct iwl_scale_tbl_info
) -
1924 (sizeof(struct iwl_rate_scale_data
) * IWL_RATE_COUNT
));
1926 u8 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
1927 u8 tx_chains_num
= priv
->hw_params
.tx_chains_num
;
1929 u8 update_search_tbl_counter
= 0;
1931 switch (priv
->bt_traffic_load
) {
1932 case IWL_BT_COEX_TRAFFIC_LOAD_NONE
:
1935 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH
:
1936 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS
:
1937 /* avoid antenna B and MIMO */
1938 if (tbl
->action
!= IWL_MIMO3_SWITCH_SISO_A
)
1939 tbl
->action
= IWL_MIMO3_SWITCH_SISO_A
;
1941 case IWL_BT_COEX_TRAFFIC_LOAD_LOW
:
1942 /* avoid antenna B unless MIMO */
1943 if (tbl
->action
== IWL_MIMO3_SWITCH_SISO_B
||
1944 tbl
->action
== IWL_MIMO3_SWITCH_SISO_C
)
1945 tbl
->action
= IWL_MIMO3_SWITCH_SISO_A
;
1948 IWL_ERR(priv
, "Invalid BT load %d", priv
->bt_traffic_load
);
1952 if ((iwl_tx_ant_restriction(priv
) == IWL_ANT_OK_SINGLE
) &&
1953 (tbl
->action
< IWL_MIMO3_SWITCH_SISO_A
||
1954 tbl
->action
> IWL_MIMO3_SWITCH_SISO_C
)) {
1955 /* switch in SISO */
1956 tbl
->action
= IWL_MIMO3_SWITCH_SISO_A
;
1959 /* configure as 1x1 if bt full concurrency */
1960 if (priv
->bt_full_concurrent
&&
1961 (tbl
->action
< IWL_MIMO3_SWITCH_SISO_A
||
1962 tbl
->action
> IWL_MIMO3_SWITCH_SISO_C
))
1963 tbl
->action
= IWL_MIMO3_SWITCH_SISO_A
;
1965 start_action
= tbl
->action
;
1967 lq_sta
->action_counter
++;
1968 switch (tbl
->action
) {
1969 case IWL_MIMO3_SWITCH_ANTENNA1
:
1970 case IWL_MIMO3_SWITCH_ANTENNA2
:
1971 IWL_DEBUG_RATE(priv
, "LQ: MIMO3 toggle Antennas\n");
1973 if (tx_chains_num
<= 3)
1976 if (window
->success_ratio
>= IWL_RS_GOOD_RATIO
)
1979 memcpy(search_tbl
, tbl
, sz
);
1980 if (rs_toggle_antenna(valid_tx_ant
,
1981 &search_tbl
->current_rate
, search_tbl
))
1984 case IWL_MIMO3_SWITCH_SISO_A
:
1985 case IWL_MIMO3_SWITCH_SISO_B
:
1986 case IWL_MIMO3_SWITCH_SISO_C
:
1987 IWL_DEBUG_RATE(priv
, "LQ: MIMO3 switch to SISO\n");
1989 /* Set up new search table for SISO */
1990 memcpy(search_tbl
, tbl
, sz
);
1992 if (tbl
->action
== IWL_MIMO3_SWITCH_SISO_A
)
1993 search_tbl
->ant_type
= ANT_A
;
1994 else if (tbl
->action
== IWL_MIMO3_SWITCH_SISO_B
)
1995 search_tbl
->ant_type
= ANT_B
;
1997 search_tbl
->ant_type
= ANT_C
;
1999 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
2002 ret
= rs_switch_to_siso(priv
, lq_sta
, conf
, sta
,
2009 case IWL_MIMO3_SWITCH_MIMO2_AB
:
2010 case IWL_MIMO3_SWITCH_MIMO2_AC
:
2011 case IWL_MIMO3_SWITCH_MIMO2_BC
:
2012 IWL_DEBUG_RATE(priv
, "LQ: MIMO3 switch to MIMO2\n");
2014 memcpy(search_tbl
, tbl
, sz
);
2015 search_tbl
->is_SGI
= 0;
2016 if (tbl
->action
== IWL_MIMO3_SWITCH_MIMO2_AB
)
2017 search_tbl
->ant_type
= ANT_AB
;
2018 else if (tbl
->action
== IWL_MIMO3_SWITCH_MIMO2_AC
)
2019 search_tbl
->ant_type
= ANT_AC
;
2021 search_tbl
->ant_type
= ANT_BC
;
2023 if (!rs_is_valid_ant(valid_tx_ant
, search_tbl
->ant_type
))
2026 ret
= rs_switch_to_mimo2(priv
, lq_sta
, conf
, sta
,
2033 case IWL_MIMO3_SWITCH_GI
:
2034 if (!tbl
->is_ht40
&& !(ht_cap
->cap
&
2035 IEEE80211_HT_CAP_SGI_20
))
2037 if (tbl
->is_ht40
&& !(ht_cap
->cap
&
2038 IEEE80211_HT_CAP_SGI_40
))
2041 IWL_DEBUG_RATE(priv
, "LQ: MIMO3 toggle SGI/NGI\n");
2043 /* Set up new search table for MIMO */
2044 memcpy(search_tbl
, tbl
, sz
);
2045 search_tbl
->is_SGI
= !tbl
->is_SGI
;
2046 rs_set_expected_tpt_table(lq_sta
, search_tbl
);
2048 * If active table already uses the fastest possible
2049 * modulation (dual stream with short guard interval),
2050 * and it's working well, there's no need to look
2051 * for a better type of modulation!
2054 s32 tpt
= lq_sta
->last_tpt
/ 100;
2055 if (tpt
>= search_tbl
->expected_tpt
[index
])
2058 search_tbl
->current_rate
=
2059 rate_n_flags_from_tbl(priv
, search_tbl
,
2061 update_search_tbl_counter
= 1;
2065 if (tbl
->action
> IWL_MIMO3_SWITCH_GI
)
2066 tbl
->action
= IWL_MIMO3_SWITCH_ANTENNA1
;
2068 if (tbl
->action
== start_action
)
2071 search_tbl
->lq_type
= LQ_NONE
;
2074 lq_sta
->search_better_tbl
= 1;
2076 if (tbl
->action
> IWL_MIMO3_SWITCH_GI
)
2077 tbl
->action
= IWL_MIMO3_SWITCH_ANTENNA1
;
2078 if (update_search_tbl_counter
)
2079 search_tbl
->action
= tbl
->action
;
2086 * Check whether we should continue using same modulation mode, or
2087 * begin search for a new mode, based on:
2088 * 1) # tx successes or failures while using this mode
2089 * 2) # times calling this function
2090 * 3) elapsed time in this mode (not used, for now)
2092 static void rs_stay_in_table(struct iwl_lq_sta
*lq_sta
, bool force_search
)
2094 struct iwl_scale_tbl_info
*tbl
;
2097 int flush_interval_passed
= 0;
2098 struct iwl_priv
*priv
;
2101 active_tbl
= lq_sta
->active_tbl
;
2103 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
2105 /* If we've been disallowing search, see if we should now allow it */
2106 if (lq_sta
->stay_in_tbl
) {
2108 /* Elapsed time using current modulation mode */
2109 if (lq_sta
->flush_timer
)
2110 flush_interval_passed
=
2112 (unsigned long)(lq_sta
->flush_timer
+
2113 IWL_RATE_SCALE_FLUSH_INTVL
));
2116 * Check if we should allow search for new modulation mode.
2117 * If many frames have failed or succeeded, or we've used
2118 * this same modulation for a long time, allow search, and
2119 * reset history stats that keep track of whether we should
2120 * allow a new search. Also (below) reset all bitmaps and
2121 * stats in active history.
2124 (lq_sta
->total_failed
> lq_sta
->max_failure_limit
) ||
2125 (lq_sta
->total_success
> lq_sta
->max_success_limit
) ||
2126 ((!lq_sta
->search_better_tbl
) && (lq_sta
->flush_timer
)
2127 && (flush_interval_passed
))) {
2128 IWL_DEBUG_RATE(priv
, "LQ: stay is expired %d %d %d\n:",
2129 lq_sta
->total_failed
,
2130 lq_sta
->total_success
,
2131 flush_interval_passed
);
2133 /* Allow search for new mode */
2134 lq_sta
->stay_in_tbl
= 0; /* only place reset */
2135 lq_sta
->total_failed
= 0;
2136 lq_sta
->total_success
= 0;
2137 lq_sta
->flush_timer
= 0;
2140 * Else if we've used this modulation mode enough repetitions
2141 * (regardless of elapsed time or success/failure), reset
2142 * history bitmaps and rate-specific stats for all rates in
2146 lq_sta
->table_count
++;
2147 if (lq_sta
->table_count
>=
2148 lq_sta
->table_count_limit
) {
2149 lq_sta
->table_count
= 0;
2151 IWL_DEBUG_RATE(priv
, "LQ: stay in table clear win\n");
2152 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2153 rs_rate_scale_clear_window(
2158 /* If transitioning to allow "search", reset all history
2159 * bitmaps and stats in active table (this will become the new
2160 * "search" table). */
2161 if (!lq_sta
->stay_in_tbl
) {
2162 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2163 rs_rate_scale_clear_window(&(tbl
->win
[i
]));
2169 * setup rate table in uCode
2170 * return rate_n_flags as used in the table
2172 static u32
rs_update_rate_tbl(struct iwl_priv
*priv
,
2173 struct iwl_rxon_context
*ctx
,
2174 struct iwl_lq_sta
*lq_sta
,
2175 struct iwl_scale_tbl_info
*tbl
,
2176 int index
, u8 is_green
)
2180 /* Update uCode's rate table. */
2181 rate
= rate_n_flags_from_tbl(priv
, tbl
, index
, is_green
);
2182 rs_fill_link_cmd(priv
, lq_sta
, rate
);
2183 iwl_send_lq_cmd(priv
, ctx
, &lq_sta
->lq
, CMD_ASYNC
, false);
2189 * Do rate scaling and search for new modulation mode.
2191 static void rs_rate_scale_perform(struct iwl_priv
*priv
,
2192 struct sk_buff
*skb
,
2193 struct ieee80211_sta
*sta
,
2194 struct iwl_lq_sta
*lq_sta
)
2196 struct ieee80211_hw
*hw
= priv
->hw
;
2197 struct ieee80211_conf
*conf
= &hw
->conf
;
2198 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
2199 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
2200 int low
= IWL_RATE_INVALID
;
2201 int high
= IWL_RATE_INVALID
;
2204 struct iwl_rate_scale_data
*window
= NULL
;
2205 int current_tpt
= IWL_INVALID_VALUE
;
2206 int low_tpt
= IWL_INVALID_VALUE
;
2207 int high_tpt
= IWL_INVALID_VALUE
;
2209 s8 scale_action
= 0;
2212 struct iwl_scale_tbl_info
*tbl
, *tbl1
;
2213 u16 rate_scale_index_msk
= 0;
2220 u8 tid
= MAX_TID_COUNT
;
2221 struct iwl_tid_data
*tid_data
;
2222 struct iwl_station_priv
*sta_priv
= (void *)sta
->drv_priv
;
2223 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
2225 IWL_DEBUG_RATE(priv
, "rate scale calculate new rate for skb\n");
2227 /* Send management frames and NO_ACK data using lowest rate. */
2228 /* TODO: this could probably be improved.. */
2229 if (!ieee80211_is_data(hdr
->frame_control
) ||
2230 info
->flags
& IEEE80211_TX_CTL_NO_ACK
)
2233 if (!sta
|| !lq_sta
)
2236 lq_sta
->supp_rates
= sta
->supp_rates
[lq_sta
->band
];
2238 tid
= rs_tl_add_packet(lq_sta
, hdr
);
2239 if ((tid
!= MAX_TID_COUNT
) && (lq_sta
->tx_agg_tid_en
& (1 << tid
))) {
2240 tid_data
= &priv
->stations
[lq_sta
->lq
.sta_id
].tid
[tid
];
2241 if (tid_data
->agg
.state
== IWL_AGG_OFF
)
2249 * Select rate-scale / modulation-mode table to work with in
2250 * the rest of this function: "search" if searching for better
2251 * modulation mode, or "active" if doing rate scaling within a mode.
2253 if (!lq_sta
->search_better_tbl
)
2254 active_tbl
= lq_sta
->active_tbl
;
2256 active_tbl
= 1 - lq_sta
->active_tbl
;
2258 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
2259 if (is_legacy(tbl
->lq_type
))
2260 lq_sta
->is_green
= 0;
2262 lq_sta
->is_green
= rs_use_green(sta
);
2263 is_green
= lq_sta
->is_green
;
2265 /* current tx rate */
2266 index
= lq_sta
->last_txrate_idx
;
2268 IWL_DEBUG_RATE(priv
, "Rate scale index %d for type %d\n", index
,
2271 /* rates available for this association, and for modulation mode */
2272 rate_mask
= rs_get_supported_rates(lq_sta
, hdr
, tbl
->lq_type
);
2274 IWL_DEBUG_RATE(priv
, "mask 0x%04X\n", rate_mask
);
2276 /* mask with station rate restriction */
2277 if (is_legacy(tbl
->lq_type
)) {
2278 if (lq_sta
->band
== IEEE80211_BAND_5GHZ
)
2279 /* supp_rates has no CCK bits in A mode */
2280 rate_scale_index_msk
= (u16
) (rate_mask
&
2281 (lq_sta
->supp_rates
<< IWL_FIRST_OFDM_RATE
));
2283 rate_scale_index_msk
= (u16
) (rate_mask
&
2284 lq_sta
->supp_rates
);
2287 rate_scale_index_msk
= rate_mask
;
2289 if (!rate_scale_index_msk
)
2290 rate_scale_index_msk
= rate_mask
;
2292 if (!((1 << index
) & rate_scale_index_msk
)) {
2293 IWL_ERR(priv
, "Current Rate is not valid\n");
2294 if (lq_sta
->search_better_tbl
) {
2295 /* revert to active table if search table is not valid*/
2296 tbl
->lq_type
= LQ_NONE
;
2297 lq_sta
->search_better_tbl
= 0;
2298 tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
2299 /* get "active" rate info */
2300 index
= iwl_hwrate_to_plcp_idx(tbl
->current_rate
);
2301 rate
= rs_update_rate_tbl(priv
, ctx
, lq_sta
,
2302 tbl
, index
, is_green
);
2307 /* Get expected throughput table and history window for current rate */
2308 if (!tbl
->expected_tpt
) {
2309 IWL_ERR(priv
, "tbl->expected_tpt is NULL\n");
2313 /* force user max rate if set by user */
2314 if ((lq_sta
->max_rate_idx
!= -1) &&
2315 (lq_sta
->max_rate_idx
< index
)) {
2316 index
= lq_sta
->max_rate_idx
;
2318 window
= &(tbl
->win
[index
]);
2322 window
= &(tbl
->win
[index
]);
2325 * If there is not enough history to calculate actual average
2326 * throughput, keep analyzing results of more tx frames, without
2327 * changing rate or mode (bypass most of the rest of this function).
2328 * Set up new rate table in uCode only if old rate is not supported
2329 * in current association (use new rate found above).
2331 fail_count
= window
->counter
- window
->success_counter
;
2332 if ((fail_count
< IWL_RATE_MIN_FAILURE_TH
) &&
2333 (window
->success_counter
< IWL_RATE_MIN_SUCCESS_TH
)) {
2334 IWL_DEBUG_RATE(priv
, "LQ: still below TH. succ=%d total=%d "
2336 window
->success_counter
, window
->counter
, index
);
2338 /* Can't calculate this yet; not enough history */
2339 window
->average_tpt
= IWL_INVALID_VALUE
;
2341 /* Should we stay with this modulation mode,
2342 * or search for a new one? */
2343 rs_stay_in_table(lq_sta
, false);
2347 /* Else we have enough samples; calculate estimate of
2348 * actual average throughput */
2349 if (window
->average_tpt
!= ((window
->success_ratio
*
2350 tbl
->expected_tpt
[index
] + 64) / 128)) {
2351 IWL_ERR(priv
, "expected_tpt should have been calculated by now\n");
2352 window
->average_tpt
= ((window
->success_ratio
*
2353 tbl
->expected_tpt
[index
] + 64) / 128);
2356 /* If we are searching for better modulation mode, check success. */
2357 if (lq_sta
->search_better_tbl
&&
2358 (iwl_tx_ant_restriction(priv
) == IWL_ANT_OK_MULTI
)) {
2359 /* If good success, continue using the "search" mode;
2360 * no need to send new link quality command, since we're
2361 * continuing to use the setup that we've been trying. */
2362 if (window
->average_tpt
> lq_sta
->last_tpt
) {
2364 IWL_DEBUG_RATE(priv
, "LQ: SWITCHING TO NEW TABLE "
2365 "suc=%d cur-tpt=%d old-tpt=%d\n",
2366 window
->success_ratio
,
2367 window
->average_tpt
,
2370 if (!is_legacy(tbl
->lq_type
))
2371 lq_sta
->enable_counter
= 1;
2373 /* Swap tables; "search" becomes "active" */
2374 lq_sta
->active_tbl
= active_tbl
;
2375 current_tpt
= window
->average_tpt
;
2377 /* Else poor success; go back to mode in "active" table */
2380 IWL_DEBUG_RATE(priv
, "LQ: GOING BACK TO THE OLD TABLE "
2381 "suc=%d cur-tpt=%d old-tpt=%d\n",
2382 window
->success_ratio
,
2383 window
->average_tpt
,
2386 /* Nullify "search" table */
2387 tbl
->lq_type
= LQ_NONE
;
2389 /* Revert to "active" table */
2390 active_tbl
= lq_sta
->active_tbl
;
2391 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
2393 /* Revert to "active" rate and throughput info */
2394 index
= iwl_hwrate_to_plcp_idx(tbl
->current_rate
);
2395 current_tpt
= lq_sta
->last_tpt
;
2397 /* Need to set up a new rate table in uCode */
2401 /* Either way, we've made a decision; modulation mode
2402 * search is done, allow rate adjustment next time. */
2403 lq_sta
->search_better_tbl
= 0;
2404 done_search
= 1; /* Don't switch modes below! */
2408 /* (Else) not in search of better modulation mode, try for better
2409 * starting rate, while staying in this mode. */
2410 high_low
= rs_get_adjacent_rate(priv
, index
, rate_scale_index_msk
,
2412 low
= high_low
& 0xff;
2413 high
= (high_low
>> 8) & 0xff;
2415 /* If user set max rate, dont allow higher than user constrain */
2416 if ((lq_sta
->max_rate_idx
!= -1) &&
2417 (lq_sta
->max_rate_idx
< high
))
2418 high
= IWL_RATE_INVALID
;
2420 sr
= window
->success_ratio
;
2422 /* Collect measured throughputs for current and adjacent rates */
2423 current_tpt
= window
->average_tpt
;
2424 if (low
!= IWL_RATE_INVALID
)
2425 low_tpt
= tbl
->win
[low
].average_tpt
;
2426 if (high
!= IWL_RATE_INVALID
)
2427 high_tpt
= tbl
->win
[high
].average_tpt
;
2431 /* Too many failures, decrease rate */
2432 if ((sr
<= IWL_RATE_DECREASE_TH
) || (current_tpt
== 0)) {
2433 IWL_DEBUG_RATE(priv
, "decrease rate because of low success_ratio\n");
2436 /* No throughput measured yet for adjacent rates; try increase. */
2437 } else if ((low_tpt
== IWL_INVALID_VALUE
) &&
2438 (high_tpt
== IWL_INVALID_VALUE
)) {
2440 if (high
!= IWL_RATE_INVALID
&& sr
>= IWL_RATE_INCREASE_TH
)
2442 else if (low
!= IWL_RATE_INVALID
)
2446 /* Both adjacent throughputs are measured, but neither one has better
2447 * throughput; we're using the best rate, don't change it! */
2448 else if ((low_tpt
!= IWL_INVALID_VALUE
) &&
2449 (high_tpt
!= IWL_INVALID_VALUE
) &&
2450 (low_tpt
< current_tpt
) &&
2451 (high_tpt
< current_tpt
))
2454 /* At least one adjacent rate's throughput is measured,
2455 * and may have better performance. */
2457 /* Higher adjacent rate's throughput is measured */
2458 if (high_tpt
!= IWL_INVALID_VALUE
) {
2459 /* Higher rate has better throughput */
2460 if (high_tpt
> current_tpt
&&
2461 sr
>= IWL_RATE_INCREASE_TH
) {
2467 /* Lower adjacent rate's throughput is measured */
2468 } else if (low_tpt
!= IWL_INVALID_VALUE
) {
2469 /* Lower rate has better throughput */
2470 if (low_tpt
> current_tpt
) {
2471 IWL_DEBUG_RATE(priv
,
2472 "decrease rate because of low tpt\n");
2474 } else if (sr
>= IWL_RATE_INCREASE_TH
) {
2480 /* Sanity check; asked for decrease, but success rate or throughput
2481 * has been good at old rate. Don't change it. */
2482 if ((scale_action
== -1) && (low
!= IWL_RATE_INVALID
) &&
2483 ((sr
> IWL_RATE_HIGH_TH
) ||
2484 (current_tpt
> (100 * tbl
->expected_tpt
[low
]))))
2486 if (!iwl_ht_enabled(priv
) && !is_legacy(tbl
->lq_type
))
2488 if (iwl_tx_ant_restriction(priv
) != IWL_ANT_OK_MULTI
&&
2489 (is_mimo2(tbl
->lq_type
) || is_mimo3(tbl
->lq_type
)))
2492 if ((priv
->bt_traffic_load
>= IWL_BT_COEX_TRAFFIC_LOAD_HIGH
) &&
2493 (is_mimo2(tbl
->lq_type
) || is_mimo3(tbl
->lq_type
))) {
2494 if (lq_sta
->last_bt_traffic
> priv
->bt_traffic_load
) {
2496 * don't set scale_action, don't want to scale up if
2497 * the rate scale doesn't otherwise think that is a
2500 } else if (lq_sta
->last_bt_traffic
<= priv
->bt_traffic_load
) {
2504 lq_sta
->last_bt_traffic
= priv
->bt_traffic_load
;
2506 if ((priv
->bt_traffic_load
>= IWL_BT_COEX_TRAFFIC_LOAD_HIGH
) &&
2507 (is_mimo2(tbl
->lq_type
) || is_mimo3(tbl
->lq_type
))) {
2508 /* search for a new modulation */
2509 rs_stay_in_table(lq_sta
, true);
2513 switch (scale_action
) {
2515 /* Decrease starting rate, update uCode's rate table */
2516 if (low
!= IWL_RATE_INVALID
) {
2523 /* Increase starting rate, update uCode's rate table */
2524 if (high
!= IWL_RATE_INVALID
) {
2536 IWL_DEBUG_RATE(priv
, "choose rate scale index %d action %d low %d "
2537 "high %d type %d\n",
2538 index
, scale_action
, low
, high
, tbl
->lq_type
);
2541 /* Replace uCode's rate table for the destination station. */
2543 rate
= rs_update_rate_tbl(priv
, ctx
, lq_sta
,
2544 tbl
, index
, is_green
);
2546 if (iwl_tx_ant_restriction(priv
) == IWL_ANT_OK_MULTI
) {
2547 /* Should we stay with this modulation mode,
2548 * or search for a new one? */
2549 rs_stay_in_table(lq_sta
, false);
2552 * Search for new modulation mode if we're:
2553 * 1) Not changing rates right now
2554 * 2) Not just finishing up a search
2555 * 3) Allowing a new search
2557 if (!update_lq
&& !done_search
&& !lq_sta
->stay_in_tbl
&& window
->counter
) {
2558 /* Save current throughput to compare with "search" throughput*/
2559 lq_sta
->last_tpt
= current_tpt
;
2561 /* Select a new "search" modulation mode to try.
2562 * If one is found, set up the new "search" table. */
2563 if (is_legacy(tbl
->lq_type
))
2564 rs_move_legacy_other(priv
, lq_sta
, conf
, sta
, index
);
2565 else if (is_siso(tbl
->lq_type
))
2566 rs_move_siso_to_other(priv
, lq_sta
, conf
, sta
, index
);
2567 else if (is_mimo2(tbl
->lq_type
))
2568 rs_move_mimo2_to_other(priv
, lq_sta
, conf
, sta
, index
);
2570 rs_move_mimo3_to_other(priv
, lq_sta
, conf
, sta
, index
);
2572 /* If new "search" mode was selected, set up in uCode table */
2573 if (lq_sta
->search_better_tbl
) {
2574 /* Access the "search" table, clear its history. */
2575 tbl
= &(lq_sta
->lq_info
[(1 - lq_sta
->active_tbl
)]);
2576 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2577 rs_rate_scale_clear_window(&(tbl
->win
[i
]));
2579 /* Use new "search" start rate */
2580 index
= iwl_hwrate_to_plcp_idx(tbl
->current_rate
);
2582 IWL_DEBUG_RATE(priv
, "Switch current mcs: %X index: %d\n",
2583 tbl
->current_rate
, index
);
2584 rs_fill_link_cmd(priv
, lq_sta
, tbl
->current_rate
);
2585 iwl_send_lq_cmd(priv
, ctx
, &lq_sta
->lq
, CMD_ASYNC
, false);
2590 if (done_search
&& !lq_sta
->stay_in_tbl
) {
2591 /* If the "active" (non-search) mode was legacy,
2592 * and we've tried switching antennas,
2593 * but we haven't been able to try HT modes (not available),
2594 * stay with best antenna legacy modulation for a while
2595 * before next round of mode comparisons. */
2596 tbl1
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
2597 if (is_legacy(tbl1
->lq_type
) && !conf_is_ht(conf
) &&
2598 lq_sta
->action_counter
> tbl1
->max_search
) {
2599 IWL_DEBUG_RATE(priv
, "LQ: STAY in legacy table\n");
2600 rs_set_stay_in_table(priv
, 1, lq_sta
);
2603 /* If we're in an HT mode, and all 3 mode switch actions
2604 * have been tried and compared, stay in this best modulation
2605 * mode for a while before next round of mode comparisons. */
2606 if (lq_sta
->enable_counter
&&
2607 (lq_sta
->action_counter
>= tbl1
->max_search
) &&
2608 iwl_ht_enabled(priv
)) {
2609 if ((lq_sta
->last_tpt
> IWL_AGG_TPT_THREHOLD
) &&
2610 (lq_sta
->tx_agg_tid_en
& (1 << tid
)) &&
2611 (tid
!= MAX_TID_COUNT
)) {
2613 &priv
->stations
[lq_sta
->lq
.sta_id
].tid
[tid
];
2614 if (tid_data
->agg
.state
== IWL_AGG_OFF
) {
2615 IWL_DEBUG_RATE(priv
,
2616 "try to aggregate tid %d\n",
2618 rs_tl_turn_on_agg(priv
, tid
,
2622 rs_set_stay_in_table(priv
, 0, lq_sta
);
2627 tbl
->current_rate
= rate_n_flags_from_tbl(priv
, tbl
, index
, is_green
);
2629 lq_sta
->last_txrate_idx
= i
;
2633 * rs_initialize_lq - Initialize a station's hardware rate table
2635 * The uCode's station table contains a table of fallback rates
2636 * for automatic fallback during transmission.
2638 * NOTE: This sets up a default set of values. These will be replaced later
2639 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of
2642 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before
2643 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD,
2644 * which requires station table entry to exist).
2646 static void rs_initialize_lq(struct iwl_priv
*priv
,
2647 struct ieee80211_conf
*conf
,
2648 struct ieee80211_sta
*sta
,
2649 struct iwl_lq_sta
*lq_sta
)
2651 struct iwl_scale_tbl_info
*tbl
;
2655 u8 use_green
= rs_use_green(sta
);
2658 struct iwl_station_priv
*sta_priv
;
2659 struct iwl_rxon_context
*ctx
;
2661 if (!sta
|| !lq_sta
)
2664 sta_priv
= (void *)sta
->drv_priv
;
2665 ctx
= sta_priv
->common
.ctx
;
2667 i
= lq_sta
->last_txrate_idx
;
2669 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
2671 if (!lq_sta
->search_better_tbl
)
2672 active_tbl
= lq_sta
->active_tbl
;
2674 active_tbl
= 1 - lq_sta
->active_tbl
;
2676 tbl
= &(lq_sta
->lq_info
[active_tbl
]);
2678 if ((i
< 0) || (i
>= IWL_RATE_COUNT
))
2681 rate
= iwl_rates
[i
].plcp
;
2682 tbl
->ant_type
= first_antenna(valid_tx_ant
);
2683 rate
|= tbl
->ant_type
<< RATE_MCS_ANT_POS
;
2685 if (i
>= IWL_FIRST_CCK_RATE
&& i
<= IWL_LAST_CCK_RATE
)
2686 rate
|= RATE_MCS_CCK_MSK
;
2688 rs_get_tbl_info_from_mcs(rate
, priv
->band
, tbl
, &rate_idx
);
2689 if (!rs_is_valid_ant(valid_tx_ant
, tbl
->ant_type
))
2690 rs_toggle_antenna(valid_tx_ant
, &rate
, tbl
);
2692 rate
= rate_n_flags_from_tbl(priv
, tbl
, rate_idx
, use_green
);
2693 tbl
->current_rate
= rate
;
2694 rs_set_expected_tpt_table(lq_sta
, tbl
);
2695 rs_fill_link_cmd(NULL
, lq_sta
, rate
);
2696 priv
->stations
[lq_sta
->lq
.sta_id
].lq
= &lq_sta
->lq
;
2697 iwl_send_lq_cmd(priv
, ctx
, &lq_sta
->lq
, CMD_SYNC
, true);
2700 static void rs_get_rate(void *priv_r
, struct ieee80211_sta
*sta
, void *priv_sta
,
2701 struct ieee80211_tx_rate_control
*txrc
)
2704 struct sk_buff
*skb
= txrc
->skb
;
2705 struct ieee80211_supported_band
*sband
= txrc
->sband
;
2706 struct iwl_priv
*priv __maybe_unused
= (struct iwl_priv
*)priv_r
;
2707 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
2708 struct iwl_lq_sta
*lq_sta
= priv_sta
;
2711 IWL_DEBUG_RATE_LIMIT(priv
, "rate scale calculate new rate for skb\n");
2713 /* Get max rate if user set max rate */
2715 lq_sta
->max_rate_idx
= txrc
->max_rate_idx
;
2716 if ((sband
->band
== IEEE80211_BAND_5GHZ
) &&
2717 (lq_sta
->max_rate_idx
!= -1))
2718 lq_sta
->max_rate_idx
+= IWL_FIRST_OFDM_RATE
;
2719 if ((lq_sta
->max_rate_idx
< 0) ||
2720 (lq_sta
->max_rate_idx
>= IWL_RATE_COUNT
))
2721 lq_sta
->max_rate_idx
= -1;
2724 /* Treat uninitialized rate scaling data same as non-existing. */
2725 if (lq_sta
&& !lq_sta
->drv
) {
2726 IWL_DEBUG_RATE(priv
, "Rate scaling not initialized yet.\n");
2730 /* Send management frames and NO_ACK data using lowest rate. */
2731 if (rate_control_send_low(sta
, priv_sta
, txrc
))
2734 rate_idx
= lq_sta
->last_txrate_idx
;
2736 if (lq_sta
->last_rate_n_flags
& RATE_MCS_HT_MSK
) {
2737 rate_idx
-= IWL_FIRST_OFDM_RATE
;
2738 /* 6M and 9M shared same MCS index */
2739 rate_idx
= (rate_idx
> 0) ? (rate_idx
- 1) : 0;
2740 if (rs_extract_rate(lq_sta
->last_rate_n_flags
) >=
2741 IWL_RATE_MIMO3_6M_PLCP
)
2742 rate_idx
= rate_idx
+ (2 * MCS_INDEX_PER_STREAM
);
2743 else if (rs_extract_rate(lq_sta
->last_rate_n_flags
) >=
2744 IWL_RATE_MIMO2_6M_PLCP
)
2745 rate_idx
= rate_idx
+ MCS_INDEX_PER_STREAM
;
2746 info
->control
.rates
[0].flags
= IEEE80211_TX_RC_MCS
;
2747 if (lq_sta
->last_rate_n_flags
& RATE_MCS_SGI_MSK
)
2748 info
->control
.rates
[0].flags
|= IEEE80211_TX_RC_SHORT_GI
;
2749 if (lq_sta
->last_rate_n_flags
& RATE_MCS_DUP_MSK
)
2750 info
->control
.rates
[0].flags
|= IEEE80211_TX_RC_DUP_DATA
;
2751 if (lq_sta
->last_rate_n_flags
& RATE_MCS_HT40_MSK
)
2752 info
->control
.rates
[0].flags
|= IEEE80211_TX_RC_40_MHZ_WIDTH
;
2753 if (lq_sta
->last_rate_n_flags
& RATE_MCS_GF_MSK
)
2754 info
->control
.rates
[0].flags
|= IEEE80211_TX_RC_GREEN_FIELD
;
2756 /* Check for invalid rates */
2757 if ((rate_idx
< 0) || (rate_idx
>= IWL_RATE_COUNT_LEGACY
) ||
2758 ((sband
->band
== IEEE80211_BAND_5GHZ
) &&
2759 (rate_idx
< IWL_FIRST_OFDM_RATE
)))
2760 rate_idx
= rate_lowest_index(sband
, sta
);
2761 /* On valid 5 GHz rate, adjust index */
2762 else if (sband
->band
== IEEE80211_BAND_5GHZ
)
2763 rate_idx
-= IWL_FIRST_OFDM_RATE
;
2764 info
->control
.rates
[0].flags
= 0;
2766 info
->control
.rates
[0].idx
= rate_idx
;
2770 static void *rs_alloc_sta(void *priv_rate
, struct ieee80211_sta
*sta
,
2773 struct iwl_lq_sta
*lq_sta
;
2774 struct iwl_station_priv
*sta_priv
= (struct iwl_station_priv
*) sta
->drv_priv
;
2775 struct iwl_priv
*priv
;
2777 priv
= (struct iwl_priv
*)priv_rate
;
2778 IWL_DEBUG_RATE(priv
, "create station rate scale window\n");
2780 lq_sta
= &sta_priv
->lq_sta
;
2786 * Called after adding a new station to initialize rate scaling
2788 void iwl_rs_rate_init(struct iwl_priv
*priv
, struct ieee80211_sta
*sta
, u8 sta_id
)
2791 struct ieee80211_hw
*hw
= priv
->hw
;
2792 struct ieee80211_conf
*conf
= &priv
->hw
->conf
;
2793 struct ieee80211_sta_ht_cap
*ht_cap
= &sta
->ht_cap
;
2794 struct iwl_station_priv
*sta_priv
;
2795 struct iwl_lq_sta
*lq_sta
;
2796 struct ieee80211_supported_band
*sband
;
2798 sta_priv
= (struct iwl_station_priv
*) sta
->drv_priv
;
2799 lq_sta
= &sta_priv
->lq_sta
;
2800 sband
= hw
->wiphy
->bands
[conf
->channel
->band
];
2803 lq_sta
->lq
.sta_id
= sta_id
;
2805 for (j
= 0; j
< LQ_SIZE
; j
++)
2806 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2807 rs_rate_scale_clear_window(&lq_sta
->lq_info
[j
].win
[i
]);
2809 lq_sta
->flush_timer
= 0;
2810 lq_sta
->supp_rates
= sta
->supp_rates
[sband
->band
];
2811 for (j
= 0; j
< LQ_SIZE
; j
++)
2812 for (i
= 0; i
< IWL_RATE_COUNT
; i
++)
2813 rs_rate_scale_clear_window(&lq_sta
->lq_info
[j
].win
[i
]);
2815 IWL_DEBUG_RATE(priv
, "LQ: *** rate scale station global init for station %d ***\n",
2817 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2818 * the lowest or the highest rate.. Could consider using RSSI from
2819 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2823 lq_sta
->max_rate_idx
= -1;
2824 lq_sta
->missed_rate_counter
= IWL_MISSED_RATE_MAX
;
2825 lq_sta
->is_green
= rs_use_green(sta
);
2826 lq_sta
->active_legacy_rate
= priv
->active_rate
& ~(0x1000);
2827 lq_sta
->band
= priv
->band
;
2829 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2830 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2832 lq_sta
->active_siso_rate
= ht_cap
->mcs
.rx_mask
[0] << 1;
2833 lq_sta
->active_siso_rate
|= ht_cap
->mcs
.rx_mask
[0] & 0x1;
2834 lq_sta
->active_siso_rate
&= ~((u16
)0x2);
2835 lq_sta
->active_siso_rate
<<= IWL_FIRST_OFDM_RATE
;
2838 lq_sta
->active_mimo2_rate
= ht_cap
->mcs
.rx_mask
[1] << 1;
2839 lq_sta
->active_mimo2_rate
|= ht_cap
->mcs
.rx_mask
[1] & 0x1;
2840 lq_sta
->active_mimo2_rate
&= ~((u16
)0x2);
2841 lq_sta
->active_mimo2_rate
<<= IWL_FIRST_OFDM_RATE
;
2843 lq_sta
->active_mimo3_rate
= ht_cap
->mcs
.rx_mask
[2] << 1;
2844 lq_sta
->active_mimo3_rate
|= ht_cap
->mcs
.rx_mask
[2] & 0x1;
2845 lq_sta
->active_mimo3_rate
&= ~((u16
)0x2);
2846 lq_sta
->active_mimo3_rate
<<= IWL_FIRST_OFDM_RATE
;
2848 IWL_DEBUG_RATE(priv
, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
2849 lq_sta
->active_siso_rate
,
2850 lq_sta
->active_mimo2_rate
,
2851 lq_sta
->active_mimo3_rate
);
2853 /* These values will be overridden later */
2854 lq_sta
->lq
.general_params
.single_stream_ant_msk
=
2855 first_antenna(priv
->hw_params
.valid_tx_ant
);
2856 lq_sta
->lq
.general_params
.dual_stream_ant_msk
=
2857 priv
->hw_params
.valid_tx_ant
&
2858 ~first_antenna(priv
->hw_params
.valid_tx_ant
);
2859 if (!lq_sta
->lq
.general_params
.dual_stream_ant_msk
) {
2860 lq_sta
->lq
.general_params
.dual_stream_ant_msk
= ANT_AB
;
2861 } else if (num_of_ant(priv
->hw_params
.valid_tx_ant
) == 2) {
2862 lq_sta
->lq
.general_params
.dual_stream_ant_msk
=
2863 priv
->hw_params
.valid_tx_ant
;
2866 /* as default allow aggregation for all tids */
2867 lq_sta
->tx_agg_tid_en
= IWL_AGG_ALL_TID
;
2870 /* Set last_txrate_idx to lowest rate */
2871 lq_sta
->last_txrate_idx
= rate_lowest_index(sband
, sta
);
2872 if (sband
->band
== IEEE80211_BAND_5GHZ
)
2873 lq_sta
->last_txrate_idx
+= IWL_FIRST_OFDM_RATE
;
2876 #ifdef CONFIG_MAC80211_DEBUGFS
2877 lq_sta
->dbg_fixed_rate
= 0;
2880 rs_initialize_lq(priv
, conf
, sta
, lq_sta
);
2883 static void rs_fill_link_cmd(struct iwl_priv
*priv
,
2884 struct iwl_lq_sta
*lq_sta
, u32 new_rate
)
2886 struct iwl_scale_tbl_info tbl_type
;
2889 int repeat_rate
= 0;
2890 u8 ant_toggle_cnt
= 0;
2891 u8 use_ht_possible
= 1;
2892 u8 valid_tx_ant
= 0;
2893 struct iwl_link_quality_cmd
*lq_cmd
= &lq_sta
->lq
;
2895 /* Override starting rate (index 0) if needed for debug purposes */
2896 rs_dbgfs_set_mcs(lq_sta
, &new_rate
, index
);
2898 /* Interpret new_rate (rate_n_flags) */
2899 rs_get_tbl_info_from_mcs(new_rate
, lq_sta
->band
,
2900 &tbl_type
, &rate_idx
);
2902 if (priv
&& priv
->bt_full_concurrent
) {
2905 first_antenna(priv
->hw_params
.valid_tx_ant
);
2908 /* How many times should we repeat the initial rate? */
2909 if (is_legacy(tbl_type
.lq_type
)) {
2911 repeat_rate
= IWL_NUMBER_TRY
;
2913 repeat_rate
= IWL_HT_NUMBER_TRY
;
2916 lq_cmd
->general_params
.mimo_delimiter
=
2917 is_mimo(tbl_type
.lq_type
) ? 1 : 0;
2919 /* Fill 1st table entry (index 0) */
2920 lq_cmd
->rs_table
[index
].rate_n_flags
= cpu_to_le32(new_rate
);
2922 if (num_of_ant(tbl_type
.ant_type
) == 1) {
2923 lq_cmd
->general_params
.single_stream_ant_msk
=
2925 } else if (num_of_ant(tbl_type
.ant_type
) == 2) {
2926 lq_cmd
->general_params
.dual_stream_ant_msk
=
2928 } /* otherwise we don't modify the existing value */
2933 if (priv
->bt_full_concurrent
)
2934 valid_tx_ant
= ANT_A
;
2936 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
2939 /* Fill rest of rate table */
2940 while (index
< LINK_QUAL_MAX_RETRY_NUM
) {
2941 /* Repeat initial/next rate.
2942 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2943 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
2944 while (repeat_rate
> 0 && (index
< LINK_QUAL_MAX_RETRY_NUM
)) {
2945 if (is_legacy(tbl_type
.lq_type
)) {
2946 if (ant_toggle_cnt
< NUM_TRY_BEFORE_ANT_TOGGLE
)
2949 rs_toggle_antenna(valid_tx_ant
,
2950 &new_rate
, &tbl_type
))
2954 /* Override next rate if needed for debug purposes */
2955 rs_dbgfs_set_mcs(lq_sta
, &new_rate
, index
);
2957 /* Fill next table entry */
2958 lq_cmd
->rs_table
[index
].rate_n_flags
=
2959 cpu_to_le32(new_rate
);
2964 rs_get_tbl_info_from_mcs(new_rate
, lq_sta
->band
, &tbl_type
,
2967 if (priv
&& priv
->bt_full_concurrent
) {
2970 first_antenna(priv
->hw_params
.valid_tx_ant
);
2973 /* Indicate to uCode which entries might be MIMO.
2974 * If initial rate was MIMO, this will finally end up
2975 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
2976 if (is_mimo(tbl_type
.lq_type
))
2977 lq_cmd
->general_params
.mimo_delimiter
= index
;
2980 new_rate
= rs_get_lower_rate(lq_sta
, &tbl_type
, rate_idx
,
2983 /* How many times should we repeat the next rate? */
2984 if (is_legacy(tbl_type
.lq_type
)) {
2985 if (ant_toggle_cnt
< NUM_TRY_BEFORE_ANT_TOGGLE
)
2988 rs_toggle_antenna(valid_tx_ant
,
2989 &new_rate
, &tbl_type
))
2992 repeat_rate
= IWL_NUMBER_TRY
;
2994 repeat_rate
= IWL_HT_NUMBER_TRY
;
2997 /* Don't allow HT rates after next pass.
2998 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
2999 use_ht_possible
= 0;
3001 /* Override next rate if needed for debug purposes */
3002 rs_dbgfs_set_mcs(lq_sta
, &new_rate
, index
);
3004 /* Fill next table entry */
3005 lq_cmd
->rs_table
[index
].rate_n_flags
= cpu_to_le32(new_rate
);
3011 lq_cmd
->agg_params
.agg_frame_cnt_limit
= LINK_QUAL_AGG_FRAME_LIMIT_DEF
;
3012 lq_cmd
->agg_params
.agg_dis_start_th
= LINK_QUAL_AGG_DISABLE_START_DEF
;
3014 lq_cmd
->agg_params
.agg_time_limit
=
3015 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF
);
3017 * overwrite if needed, pass aggregation time limit
3020 if (priv
&& priv
->cfg
->bt_params
&&
3021 priv
->cfg
->bt_params
->agg_time_limit
&&
3022 priv
->bt_traffic_load
>= IWL_BT_COEX_TRAFFIC_LOAD_HIGH
)
3023 lq_cmd
->agg_params
.agg_time_limit
=
3024 cpu_to_le16(priv
->cfg
->bt_params
->agg_time_limit
);
3027 static void *rs_alloc(struct ieee80211_hw
*hw
, struct dentry
*debugfsdir
)
3031 /* rate scale requires free function to be implemented */
3032 static void rs_free(void *priv_rate
)
3037 static void rs_free_sta(void *priv_r
, struct ieee80211_sta
*sta
,
3040 struct iwl_priv
*priv __maybe_unused
= priv_r
;
3042 IWL_DEBUG_RATE(priv
, "enter\n");
3043 IWL_DEBUG_RATE(priv
, "leave\n");
3047 #ifdef CONFIG_MAC80211_DEBUGFS
3048 static int open_file_generic(struct inode
*inode
, struct file
*file
)
3050 file
->private_data
= inode
->i_private
;
3053 static void rs_dbgfs_set_mcs(struct iwl_lq_sta
*lq_sta
,
3054 u32
*rate_n_flags
, int index
)
3056 struct iwl_priv
*priv
;
3061 valid_tx_ant
= priv
->hw_params
.valid_tx_ant
;
3062 if (lq_sta
->dbg_fixed_rate
) {
3064 ((lq_sta
->dbg_fixed_rate
& RATE_MCS_ANT_ABC_MSK
)
3065 >> RATE_MCS_ANT_POS
);
3066 if ((valid_tx_ant
& ant_sel_tx
) == ant_sel_tx
) {
3067 *rate_n_flags
= lq_sta
->dbg_fixed_rate
;
3068 IWL_DEBUG_RATE(priv
, "Fixed rate ON\n");
3070 lq_sta
->dbg_fixed_rate
= 0;
3072 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
3073 ant_sel_tx
, valid_tx_ant
);
3074 IWL_DEBUG_RATE(priv
, "Fixed rate OFF\n");
3077 IWL_DEBUG_RATE(priv
, "Fixed rate OFF\n");
3081 static ssize_t
rs_sta_dbgfs_scale_table_write(struct file
*file
,
3082 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
3084 struct iwl_lq_sta
*lq_sta
= file
->private_data
;
3085 struct iwl_priv
*priv
;
3089 struct iwl_station_priv
*sta_priv
=
3090 container_of(lq_sta
, struct iwl_station_priv
, lq_sta
);
3091 struct iwl_rxon_context
*ctx
= sta_priv
->common
.ctx
;
3094 memset(buf
, 0, sizeof(buf
));
3095 buf_size
= min(count
, sizeof(buf
) - 1);
3096 if (copy_from_user(buf
, user_buf
, buf_size
))
3099 if (sscanf(buf
, "%x", &parsed_rate
) == 1)
3100 lq_sta
->dbg_fixed_rate
= parsed_rate
;
3102 lq_sta
->dbg_fixed_rate
= 0;
3104 lq_sta
->active_legacy_rate
= 0x0FFF; /* 1 - 54 MBits, includes CCK */
3105 lq_sta
->active_siso_rate
= 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3106 lq_sta
->active_mimo2_rate
= 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3107 lq_sta
->active_mimo3_rate
= 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
3109 IWL_DEBUG_RATE(priv
, "sta_id %d rate 0x%X\n",
3110 lq_sta
->lq
.sta_id
, lq_sta
->dbg_fixed_rate
);
3112 if (lq_sta
->dbg_fixed_rate
) {
3113 rs_fill_link_cmd(NULL
, lq_sta
, lq_sta
->dbg_fixed_rate
);
3114 iwl_send_lq_cmd(lq_sta
->drv
, ctx
, &lq_sta
->lq
, CMD_ASYNC
,
3121 static ssize_t
rs_sta_dbgfs_scale_table_read(struct file
*file
,
3122 char __user
*user_buf
, size_t count
, loff_t
*ppos
)
3130 struct iwl_lq_sta
*lq_sta
= file
->private_data
;
3131 struct iwl_priv
*priv
;
3132 struct iwl_scale_tbl_info
*tbl
= &(lq_sta
->lq_info
[lq_sta
->active_tbl
]);
3135 buff
= kmalloc(1024, GFP_KERNEL
);
3139 desc
+= sprintf(buff
+desc
, "sta_id %d\n", lq_sta
->lq
.sta_id
);
3140 desc
+= sprintf(buff
+desc
, "failed=%d success=%d rate=0%X\n",
3141 lq_sta
->total_failed
, lq_sta
->total_success
,
3142 lq_sta
->active_legacy_rate
);
3143 desc
+= sprintf(buff
+desc
, "fixed rate 0x%X\n",
3144 lq_sta
->dbg_fixed_rate
);
3145 desc
+= sprintf(buff
+desc
, "valid_tx_ant %s%s%s\n",
3146 (priv
->hw_params
.valid_tx_ant
& ANT_A
) ? "ANT_A," : "",
3147 (priv
->hw_params
.valid_tx_ant
& ANT_B
) ? "ANT_B," : "",
3148 (priv
->hw_params
.valid_tx_ant
& ANT_C
) ? "ANT_C" : "");
3149 desc
+= sprintf(buff
+desc
, "lq type %s\n",
3150 (is_legacy(tbl
->lq_type
)) ? "legacy" : "HT");
3151 if (is_Ht(tbl
->lq_type
)) {
3152 desc
+= sprintf(buff
+desc
, " %s",
3153 (is_siso(tbl
->lq_type
)) ? "SISO" :
3154 ((is_mimo2(tbl
->lq_type
)) ? "MIMO2" : "MIMO3"));
3155 desc
+= sprintf(buff
+desc
, " %s",
3156 (tbl
->is_ht40
) ? "40MHz" : "20MHz");
3157 desc
+= sprintf(buff
+desc
, " %s %s %s\n", (tbl
->is_SGI
) ? "SGI" : "",
3158 (lq_sta
->is_green
) ? "GF enabled" : "",
3159 (lq_sta
->is_agg
) ? "AGG on" : "");
3161 desc
+= sprintf(buff
+desc
, "last tx rate=0x%X\n",
3162 lq_sta
->last_rate_n_flags
);
3163 desc
+= sprintf(buff
+desc
, "general:"
3164 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
3165 lq_sta
->lq
.general_params
.flags
,
3166 lq_sta
->lq
.general_params
.mimo_delimiter
,
3167 lq_sta
->lq
.general_params
.single_stream_ant_msk
,
3168 lq_sta
->lq
.general_params
.dual_stream_ant_msk
);
3170 desc
+= sprintf(buff
+desc
, "agg:"
3171 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
3172 le16_to_cpu(lq_sta
->lq
.agg_params
.agg_time_limit
),
3173 lq_sta
->lq
.agg_params
.agg_dis_start_th
,
3174 lq_sta
->lq
.agg_params
.agg_frame_cnt_limit
);
3176 desc
+= sprintf(buff
+desc
,
3177 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
3178 lq_sta
->lq
.general_params
.start_rate_index
[0],
3179 lq_sta
->lq
.general_params
.start_rate_index
[1],
3180 lq_sta
->lq
.general_params
.start_rate_index
[2],
3181 lq_sta
->lq
.general_params
.start_rate_index
[3]);
3183 for (i
= 0; i
< LINK_QUAL_MAX_RETRY_NUM
; i
++) {
3184 index
= iwl_hwrate_to_plcp_idx(
3185 le32_to_cpu(lq_sta
->lq
.rs_table
[i
].rate_n_flags
));
3186 if (is_legacy(tbl
->lq_type
)) {
3187 desc
+= sprintf(buff
+desc
, " rate[%d] 0x%X %smbps\n",
3188 i
, le32_to_cpu(lq_sta
->lq
.rs_table
[i
].rate_n_flags
),
3189 iwl_rate_mcs
[index
].mbps
);
3191 desc
+= sprintf(buff
+desc
, " rate[%d] 0x%X %smbps (%s)\n",
3192 i
, le32_to_cpu(lq_sta
->lq
.rs_table
[i
].rate_n_flags
),
3193 iwl_rate_mcs
[index
].mbps
, iwl_rate_mcs
[index
].mcs
);
3197 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buff
, desc
);
3202 static const struct file_operations rs_sta_dbgfs_scale_table_ops
= {
3203 .write
= rs_sta_dbgfs_scale_table_write
,
3204 .read
= rs_sta_dbgfs_scale_table_read
,
3205 .open
= open_file_generic
,
3206 .llseek
= default_llseek
,
3208 static ssize_t
rs_sta_dbgfs_stats_table_read(struct file
*file
,
3209 char __user
*user_buf
, size_t count
, loff_t
*ppos
)
3216 struct iwl_lq_sta
*lq_sta
= file
->private_data
;
3218 buff
= kmalloc(1024, GFP_KERNEL
);
3222 for (i
= 0; i
< LQ_SIZE
; i
++) {
3223 desc
+= sprintf(buff
+desc
,
3224 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
3226 lq_sta
->active_tbl
== i
? "*" : "x",
3227 lq_sta
->lq_info
[i
].lq_type
,
3228 lq_sta
->lq_info
[i
].is_SGI
,
3229 lq_sta
->lq_info
[i
].is_ht40
,
3230 lq_sta
->lq_info
[i
].is_dup
,
3232 lq_sta
->lq_info
[i
].current_rate
);
3233 for (j
= 0; j
< IWL_RATE_COUNT
; j
++) {
3234 desc
+= sprintf(buff
+desc
,
3235 "counter=%d success=%d %%=%d\n",
3236 lq_sta
->lq_info
[i
].win
[j
].counter
,
3237 lq_sta
->lq_info
[i
].win
[j
].success_counter
,
3238 lq_sta
->lq_info
[i
].win
[j
].success_ratio
);
3241 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buff
, desc
);
3246 static const struct file_operations rs_sta_dbgfs_stats_table_ops
= {
3247 .read
= rs_sta_dbgfs_stats_table_read
,
3248 .open
= open_file_generic
,
3249 .llseek
= default_llseek
,
3252 static ssize_t
rs_sta_dbgfs_rate_scale_data_read(struct file
*file
,
3253 char __user
*user_buf
, size_t count
, loff_t
*ppos
)
3259 struct iwl_lq_sta
*lq_sta
= file
->private_data
;
3260 struct iwl_priv
*priv
;
3261 struct iwl_scale_tbl_info
*tbl
= &lq_sta
->lq_info
[lq_sta
->active_tbl
];
3265 if (is_Ht(tbl
->lq_type
))
3266 desc
+= sprintf(buff
+desc
,
3267 "Bit Rate= %d Mb/s\n",
3268 tbl
->expected_tpt
[lq_sta
->last_txrate_idx
]);
3270 desc
+= sprintf(buff
+desc
,
3271 "Bit Rate= %d Mb/s\n",
3272 iwl_rates
[lq_sta
->last_txrate_idx
].ieee
>> 1);
3274 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buff
, desc
);
3278 static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops
= {
3279 .read
= rs_sta_dbgfs_rate_scale_data_read
,
3280 .open
= open_file_generic
,
3281 .llseek
= default_llseek
,
3284 static void rs_add_debugfs(void *priv
, void *priv_sta
,
3287 struct iwl_lq_sta
*lq_sta
= priv_sta
;
3288 lq_sta
->rs_sta_dbgfs_scale_table_file
=
3289 debugfs_create_file("rate_scale_table", S_IRUSR
| S_IWUSR
, dir
,
3290 lq_sta
, &rs_sta_dbgfs_scale_table_ops
);
3291 lq_sta
->rs_sta_dbgfs_stats_table_file
=
3292 debugfs_create_file("rate_stats_table", S_IRUSR
, dir
,
3293 lq_sta
, &rs_sta_dbgfs_stats_table_ops
);
3294 lq_sta
->rs_sta_dbgfs_rate_scale_data_file
=
3295 debugfs_create_file("rate_scale_data", S_IRUSR
, dir
,
3296 lq_sta
, &rs_sta_dbgfs_rate_scale_data_ops
);
3297 lq_sta
->rs_sta_dbgfs_tx_agg_tid_en_file
=
3298 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR
| S_IWUSR
, dir
,
3299 &lq_sta
->tx_agg_tid_en
);
3303 static void rs_remove_debugfs(void *priv
, void *priv_sta
)
3305 struct iwl_lq_sta
*lq_sta
= priv_sta
;
3306 debugfs_remove(lq_sta
->rs_sta_dbgfs_scale_table_file
);
3307 debugfs_remove(lq_sta
->rs_sta_dbgfs_stats_table_file
);
3308 debugfs_remove(lq_sta
->rs_sta_dbgfs_rate_scale_data_file
);
3309 debugfs_remove(lq_sta
->rs_sta_dbgfs_tx_agg_tid_en_file
);
3314 * Initialization of rate scaling information is done by driver after
3315 * the station is added. Since mac80211 calls this function before a
3316 * station is added we ignore it.
3318 static void rs_rate_init_stub(void *priv_r
, struct ieee80211_supported_band
*sband
,
3319 struct ieee80211_sta
*sta
, void *priv_sta
)
3322 static struct rate_control_ops rs_ops
= {
3325 .tx_status
= rs_tx_status
,
3326 .get_rate
= rs_get_rate
,
3327 .rate_init
= rs_rate_init_stub
,
3330 .alloc_sta
= rs_alloc_sta
,
3331 .free_sta
= rs_free_sta
,
3332 #ifdef CONFIG_MAC80211_DEBUGFS
3333 .add_sta_debugfs
= rs_add_debugfs
,
3334 .remove_sta_debugfs
= rs_remove_debugfs
,
3338 int iwlagn_rate_control_register(void)
3340 return ieee80211_rate_control_register(&rs_ops
);
3343 void iwlagn_rate_control_unregister(void)
3345 ieee80211_rate_control_unregister(&rs_ops
);