mac80211: add helper for management / no-ack frame rate decision
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / drivers / net / wireless / iwlwifi / iwl-agn-rs.c
1 /******************************************************************************
2 *
3 * Copyright(c) 2005 - 2009 Intel Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * 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
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/skbuff.h>
29 #include <linux/wireless.h>
30 #include <net/mac80211.h>
31
32 #include <linux/netdevice.h>
33 #include <linux/etherdevice.h>
34 #include <linux/delay.h>
35
36 #include <linux/workqueue.h>
37
38 #include "iwl-dev.h"
39 #include "iwl-sta.h"
40 #include "iwl-core.h"
41
42 #define RS_NAME "iwl-agn-rs"
43
44 #define NUM_TRY_BEFORE_ANT_TOGGLE 1
45 #define IWL_NUMBER_TRY 1
46 #define IWL_HT_NUMBER_TRY 3
47
48 #define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
49 #define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
50 #define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
51
52 /* max allowed rate miss before sync LQ cmd */
53 #define IWL_MISSED_RATE_MAX 15
54 /* max time to accum history 2 seconds */
55 #define IWL_RATE_SCALE_FLUSH_INTVL (3*HZ)
56
57 static u8 rs_ht_to_legacy[] = {
58 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
59 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
60 IWL_RATE_6M_INDEX,
61 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
62 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
63 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
64 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
65 };
66
67 static const u8 ant_toggle_lookup[] = {
68 /*ANT_NONE -> */ ANT_NONE,
69 /*ANT_A -> */ ANT_B,
70 /*ANT_B -> */ ANT_C,
71 /*ANT_AB -> */ ANT_BC,
72 /*ANT_C -> */ ANT_A,
73 /*ANT_AC -> */ ANT_AB,
74 /*ANT_BC -> */ ANT_AC,
75 /*ANT_ABC -> */ ANT_ABC,
76 };
77
78 /**
79 * struct iwl_rate_scale_data -- tx success history for one rate
80 */
81 struct iwl_rate_scale_data {
82 u64 data; /* bitmap of successful frames */
83 s32 success_counter; /* number of frames successful */
84 s32 success_ratio; /* per-cent * 128 */
85 s32 counter; /* number of frames attempted */
86 s32 average_tpt; /* success ratio * expected throughput */
87 unsigned long stamp;
88 };
89
90 /**
91 * struct iwl_scale_tbl_info -- tx params and success history for all rates
92 *
93 * There are two of these in struct iwl_lq_sta,
94 * one for "active", and one for "search".
95 */
96 struct iwl_scale_tbl_info {
97 enum iwl_table_type lq_type;
98 u8 ant_type;
99 u8 is_SGI; /* 1 = short guard interval */
100 u8 is_fat; /* 1 = 40 MHz channel width */
101 u8 is_dup; /* 1 = duplicated data streams */
102 u8 action; /* change modulation; IWL_[LEGACY/SISO/MIMO]_SWITCH_* */
103 u8 max_search; /* maximun number of tables we can search */
104 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
105 u32 current_rate; /* rate_n_flags, uCode API format */
106 struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
107 };
108
109 struct iwl_traffic_load {
110 unsigned long time_stamp; /* age of the oldest statistics */
111 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
112 * slice */
113 u32 total; /* total num of packets during the
114 * last TID_MAX_TIME_DIFF */
115 u8 queue_count; /* number of queues that has
116 * been used since the last cleanup */
117 u8 head; /* start of the circular buffer */
118 };
119
120 /**
121 * struct iwl_lq_sta -- driver's rate scaling private structure
122 *
123 * Pointer to this gets passed back and forth between driver and mac80211.
124 */
125 struct iwl_lq_sta {
126 u8 active_tbl; /* index of active table, range 0-1 */
127 u8 enable_counter; /* indicates HT mode */
128 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
129 u8 search_better_tbl; /* 1: currently trying alternate mode */
130 s32 last_tpt;
131
132 /* The following determine when to search for a new mode */
133 u32 table_count_limit;
134 u32 max_failure_limit; /* # failed frames before new search */
135 u32 max_success_limit; /* # successful frames before new search */
136 u32 table_count;
137 u32 total_failed; /* total failed frames, any/all rates */
138 u32 total_success; /* total successful frames, any/all rates */
139 u64 flush_timer; /* time staying in mode before new search */
140
141 u8 action_counter; /* # mode-switch actions tried */
142 u8 is_green;
143 u8 is_dup;
144 enum ieee80211_band band;
145 u8 ibss_sta_added;
146
147 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
148 u32 supp_rates;
149 u16 active_legacy_rate;
150 u16 active_siso_rate;
151 u16 active_mimo2_rate;
152 u16 active_mimo3_rate;
153 u16 active_rate_basic;
154 s8 max_rate_idx; /* Max rate set by user */
155 u8 missed_rate_counter;
156
157 struct iwl_link_quality_cmd lq;
158 struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
159 struct iwl_traffic_load load[TID_MAX_LOAD_COUNT];
160 u8 tx_agg_tid_en;
161 #ifdef CONFIG_MAC80211_DEBUGFS
162 struct dentry *rs_sta_dbgfs_scale_table_file;
163 struct dentry *rs_sta_dbgfs_stats_table_file;
164 struct dentry *rs_sta_dbgfs_rate_scale_data_file;
165 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
166 u32 dbg_fixed_rate;
167 #endif
168 struct iwl_priv *drv;
169
170 /* used to be in sta_info */
171 int last_txrate_idx;
172 /* last tx rate_n_flags */
173 u32 last_rate_n_flags;
174 };
175
176 static void rs_rate_scale_perform(struct iwl_priv *priv,
177 struct sk_buff *skb,
178 struct ieee80211_sta *sta,
179 struct iwl_lq_sta *lq_sta);
180 static void rs_fill_link_cmd(const struct iwl_priv *priv,
181 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
182
183
184 #ifdef CONFIG_MAC80211_DEBUGFS
185 static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
186 u32 *rate_n_flags, int index);
187 #else
188 static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
189 u32 *rate_n_flags, int index)
190 {}
191 #endif
192
193 /*
194 * Expected throughput metrics for following rates:
195 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
196 * "G" is the only table that supports CCK (the first 4 rates).
197 */
198
199 static s32 expected_tpt_A[IWL_RATE_COUNT] = {
200 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186, 186
201 };
202
203 static s32 expected_tpt_G[IWL_RATE_COUNT] = {
204 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 186
205 };
206
207 static s32 expected_tpt_siso20MHz[IWL_RATE_COUNT] = {
208 0, 0, 0, 0, 42, 42, 76, 102, 124, 159, 183, 193, 202
209 };
210
211 static s32 expected_tpt_siso20MHzSGI[IWL_RATE_COUNT] = {
212 0, 0, 0, 0, 46, 46, 82, 110, 132, 168, 192, 202, 211
213 };
214
215 static s32 expected_tpt_mimo2_20MHz[IWL_RATE_COUNT] = {
216 0, 0, 0, 0, 74, 74, 123, 155, 179, 214, 236, 244, 251
217 };
218
219 static s32 expected_tpt_mimo2_20MHzSGI[IWL_RATE_COUNT] = {
220 0, 0, 0, 0, 81, 81, 131, 164, 188, 222, 243, 251, 257
221 };
222
223 static s32 expected_tpt_siso40MHz[IWL_RATE_COUNT] = {
224 0, 0, 0, 0, 77, 77, 127, 160, 184, 220, 242, 250, 257
225 };
226
227 static s32 expected_tpt_siso40MHzSGI[IWL_RATE_COUNT] = {
228 0, 0, 0, 0, 83, 83, 135, 169, 193, 229, 250, 257, 264
229 };
230
231 static s32 expected_tpt_mimo2_40MHz[IWL_RATE_COUNT] = {
232 0, 0, 0, 0, 123, 123, 182, 214, 235, 264, 279, 285, 289
233 };
234
235 static s32 expected_tpt_mimo2_40MHzSGI[IWL_RATE_COUNT] = {
236 0, 0, 0, 0, 131, 131, 191, 222, 242, 270, 284, 289, 293
237 };
238
239 /* Expected throughput metric MIMO3 */
240 static s32 expected_tpt_mimo3_20MHz[IWL_RATE_COUNT] = {
241 0, 0, 0, 0, 99, 99, 153, 186, 208, 239, 256, 263, 268
242 };
243
244 static s32 expected_tpt_mimo3_20MHzSGI[IWL_RATE_COUNT] = {
245 0, 0, 0, 0, 106, 106, 162, 194, 215, 246, 262, 268, 273
246 };
247
248 static s32 expected_tpt_mimo3_40MHz[IWL_RATE_COUNT] = {
249 0, 0, 0, 0, 152, 152, 211, 239, 255, 279, 290, 294, 297
250 };
251
252 static s32 expected_tpt_mimo3_40MHzSGI[IWL_RATE_COUNT] = {
253 0, 0, 0, 0, 160, 160, 219, 245, 261, 284, 294, 297, 300
254 };
255
256 /* mbps, mcs */
257 const static struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = {
258 {"1", ""},
259 {"2", ""},
260 {"5.5", ""},
261 {"11", ""},
262 {"6", "BPSK 1/2"},
263 {"9", "BPSK 1/2"},
264 {"12", "QPSK 1/2"},
265 {"18", "QPSK 3/4"},
266 {"24", "16QAM 1/2"},
267 {"36", "16QAM 3/4"},
268 {"48", "64QAM 2/3"},
269 {"54", "64QAM 3/4"},
270 {"60", "64QAM 5/6"}
271 };
272
273 #define MCS_INDEX_PER_STREAM (8)
274
275 static inline u8 rs_extract_rate(u32 rate_n_flags)
276 {
277 return (u8)(rate_n_flags & 0xFF);
278 }
279
280 static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
281 {
282 window->data = 0;
283 window->success_counter = 0;
284 window->success_ratio = IWL_INVALID_VALUE;
285 window->counter = 0;
286 window->average_tpt = IWL_INVALID_VALUE;
287 window->stamp = 0;
288 }
289
290 static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
291 {
292 return (ant_type & valid_antenna) == ant_type;
293 }
294
295 /*
296 * removes the old data from the statistics. All data that is older than
297 * TID_MAX_TIME_DIFF, will be deleted.
298 */
299 static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
300 {
301 /* The oldest age we want to keep */
302 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
303
304 while (tl->queue_count &&
305 (tl->time_stamp < oldest_time)) {
306 tl->total -= tl->packet_count[tl->head];
307 tl->packet_count[tl->head] = 0;
308 tl->time_stamp += TID_QUEUE_CELL_SPACING;
309 tl->queue_count--;
310 tl->head++;
311 if (tl->head >= TID_QUEUE_MAX_SIZE)
312 tl->head = 0;
313 }
314 }
315
316 /*
317 * increment traffic load value for tid and also remove
318 * any old values if passed the certain time period
319 */
320 static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
321 struct ieee80211_hdr *hdr)
322 {
323 u32 curr_time = jiffies_to_msecs(jiffies);
324 u32 time_diff;
325 s32 index;
326 struct iwl_traffic_load *tl = NULL;
327 u8 tid;
328
329 if (ieee80211_is_data_qos(hdr->frame_control)) {
330 u8 *qc = ieee80211_get_qos_ctl(hdr);
331 tid = qc[0] & 0xf;
332 } else
333 return MAX_TID_COUNT;
334
335 tl = &lq_data->load[tid];
336
337 curr_time -= curr_time % TID_ROUND_VALUE;
338
339 /* Happens only for the first packet. Initialize the data */
340 if (!(tl->queue_count)) {
341 tl->total = 1;
342 tl->time_stamp = curr_time;
343 tl->queue_count = 1;
344 tl->head = 0;
345 tl->packet_count[0] = 1;
346 return MAX_TID_COUNT;
347 }
348
349 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
350 index = time_diff / TID_QUEUE_CELL_SPACING;
351
352 /* The history is too long: remove data that is older than */
353 /* TID_MAX_TIME_DIFF */
354 if (index >= TID_QUEUE_MAX_SIZE)
355 rs_tl_rm_old_stats(tl, curr_time);
356
357 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
358 tl->packet_count[index] = tl->packet_count[index] + 1;
359 tl->total = tl->total + 1;
360
361 if ((index + 1) > tl->queue_count)
362 tl->queue_count = index + 1;
363
364 return tid;
365 }
366
367 /*
368 get the traffic load value for tid
369 */
370 static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
371 {
372 u32 curr_time = jiffies_to_msecs(jiffies);
373 u32 time_diff;
374 s32 index;
375 struct iwl_traffic_load *tl = NULL;
376
377 if (tid >= TID_MAX_LOAD_COUNT)
378 return 0;
379
380 tl = &(lq_data->load[tid]);
381
382 curr_time -= curr_time % TID_ROUND_VALUE;
383
384 if (!(tl->queue_count))
385 return 0;
386
387 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
388 index = time_diff / TID_QUEUE_CELL_SPACING;
389
390 /* The history is too long: remove data that is older than */
391 /* TID_MAX_TIME_DIFF */
392 if (index >= TID_QUEUE_MAX_SIZE)
393 rs_tl_rm_old_stats(tl, curr_time);
394
395 return tl->total;
396 }
397
398 static void rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
399 struct iwl_lq_sta *lq_data, u8 tid,
400 struct ieee80211_sta *sta)
401 {
402 if (rs_tl_get_load(lq_data, tid) > IWL_AGG_LOAD_THRESHOLD) {
403 IWL_DEBUG_HT(priv, "Starting Tx agg: STA: %pM tid: %d\n",
404 sta->addr, tid);
405 ieee80211_start_tx_ba_session(priv->hw, sta->addr, tid);
406 }
407 }
408
409 static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
410 struct iwl_lq_sta *lq_data,
411 struct ieee80211_sta *sta)
412 {
413 if ((tid < TID_MAX_LOAD_COUNT))
414 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
415 else if (tid == IWL_AGG_ALL_TID)
416 for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++)
417 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
418 }
419
420 static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
421 {
422 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
423 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
424 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
425 }
426
427 /**
428 * rs_collect_tx_data - Update the success/failure sliding window
429 *
430 * We keep a sliding window of the last 62 packets transmitted
431 * at this rate. window->data contains the bitmask of successful
432 * packets.
433 */
434 static int rs_collect_tx_data(struct iwl_rate_scale_data *windows,
435 int scale_index, s32 tpt, int retries,
436 int successes)
437 {
438 struct iwl_rate_scale_data *window = NULL;
439 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
440 s32 fail_count;
441
442 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
443 return -EINVAL;
444
445 /* Select data for current tx bit rate */
446 window = &(windows[scale_index]);
447
448 /*
449 * Keep track of only the latest 62 tx frame attempts in this rate's
450 * history window; anything older isn't really relevant any more.
451 * If we have filled up the sliding window, drop the oldest attempt;
452 * if the oldest attempt (highest bit in bitmap) shows "success",
453 * subtract "1" from the success counter (this is the main reason
454 * we keep these bitmaps!).
455 */
456 while (retries > 0) {
457 if (window->counter >= IWL_RATE_MAX_WINDOW) {
458
459 /* remove earliest */
460 window->counter = IWL_RATE_MAX_WINDOW - 1;
461
462 if (window->data & mask) {
463 window->data &= ~mask;
464 window->success_counter--;
465 }
466 }
467
468 /* Increment frames-attempted counter */
469 window->counter++;
470
471 /* Shift bitmap by one frame (throw away oldest history),
472 * OR in "1", and increment "success" if this
473 * frame was successful. */
474 window->data <<= 1;
475 if (successes > 0) {
476 window->success_counter++;
477 window->data |= 0x1;
478 successes--;
479 }
480
481 retries--;
482 }
483
484 /* Calculate current success ratio, avoid divide-by-0! */
485 if (window->counter > 0)
486 window->success_ratio = 128 * (100 * window->success_counter)
487 / window->counter;
488 else
489 window->success_ratio = IWL_INVALID_VALUE;
490
491 fail_count = window->counter - window->success_counter;
492
493 /* Calculate average throughput, if we have enough history. */
494 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
495 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
496 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
497 else
498 window->average_tpt = IWL_INVALID_VALUE;
499
500 /* Tag this window as having been updated */
501 window->stamp = jiffies;
502
503 return 0;
504 }
505
506 /*
507 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
508 */
509 /* FIXME:RS:remove this function and put the flags statically in the table */
510 static u32 rate_n_flags_from_tbl(struct iwl_priv *priv,
511 struct iwl_scale_tbl_info *tbl,
512 int index, u8 use_green)
513 {
514 u32 rate_n_flags = 0;
515
516 if (is_legacy(tbl->lq_type)) {
517 rate_n_flags = iwl_rates[index].plcp;
518 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
519 rate_n_flags |= RATE_MCS_CCK_MSK;
520
521 } else if (is_Ht(tbl->lq_type)) {
522 if (index > IWL_LAST_OFDM_RATE) {
523 IWL_ERR(priv, "Invalid HT rate index %d\n", index);
524 index = IWL_LAST_OFDM_RATE;
525 }
526 rate_n_flags = RATE_MCS_HT_MSK;
527
528 if (is_siso(tbl->lq_type))
529 rate_n_flags |= iwl_rates[index].plcp_siso;
530 else if (is_mimo2(tbl->lq_type))
531 rate_n_flags |= iwl_rates[index].plcp_mimo2;
532 else
533 rate_n_flags |= iwl_rates[index].plcp_mimo3;
534 } else {
535 IWL_ERR(priv, "Invalid tbl->lq_type %d\n", tbl->lq_type);
536 }
537
538 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
539 RATE_MCS_ANT_ABC_MSK);
540
541 if (is_Ht(tbl->lq_type)) {
542 if (tbl->is_fat) {
543 if (tbl->is_dup)
544 rate_n_flags |= RATE_MCS_DUP_MSK;
545 else
546 rate_n_flags |= RATE_MCS_FAT_MSK;
547 }
548 if (tbl->is_SGI)
549 rate_n_flags |= RATE_MCS_SGI_MSK;
550
551 if (use_green) {
552 rate_n_flags |= RATE_MCS_GF_MSK;
553 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
554 rate_n_flags &= ~RATE_MCS_SGI_MSK;
555 IWL_ERR(priv, "GF was set with SGI:SISO\n");
556 }
557 }
558 }
559 return rate_n_flags;
560 }
561
562 /*
563 * Interpret uCode API's rate_n_flags format,
564 * fill "search" or "active" tx mode table.
565 */
566 static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
567 enum ieee80211_band band,
568 struct iwl_scale_tbl_info *tbl,
569 int *rate_idx)
570 {
571 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
572 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
573 u8 mcs;
574
575 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
576
577 if (*rate_idx == IWL_RATE_INVALID) {
578 *rate_idx = -1;
579 return -EINVAL;
580 }
581 tbl->is_SGI = 0; /* default legacy setup */
582 tbl->is_fat = 0;
583 tbl->is_dup = 0;
584 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
585 tbl->lq_type = LQ_NONE;
586 tbl->max_search = IWL_MAX_SEARCH;
587
588 /* legacy rate format */
589 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
590 if (num_of_ant == 1) {
591 if (band == IEEE80211_BAND_5GHZ)
592 tbl->lq_type = LQ_A;
593 else
594 tbl->lq_type = LQ_G;
595 }
596 /* HT rate format */
597 } else {
598 if (rate_n_flags & RATE_MCS_SGI_MSK)
599 tbl->is_SGI = 1;
600
601 if ((rate_n_flags & RATE_MCS_FAT_MSK) ||
602 (rate_n_flags & RATE_MCS_DUP_MSK))
603 tbl->is_fat = 1;
604
605 if (rate_n_flags & RATE_MCS_DUP_MSK)
606 tbl->is_dup = 1;
607
608 mcs = rs_extract_rate(rate_n_flags);
609
610 /* SISO */
611 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
612 if (num_of_ant == 1)
613 tbl->lq_type = LQ_SISO; /*else NONE*/
614 /* MIMO2 */
615 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
616 if (num_of_ant == 2)
617 tbl->lq_type = LQ_MIMO2;
618 /* MIMO3 */
619 } else {
620 if (num_of_ant == 3) {
621 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
622 tbl->lq_type = LQ_MIMO3;
623 }
624 }
625 }
626 return 0;
627 }
628
629 /* switch to another antenna/antennas and return 1 */
630 /* if no other valid antenna found, return 0 */
631 static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
632 struct iwl_scale_tbl_info *tbl)
633 {
634 u8 new_ant_type;
635
636 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
637 return 0;
638
639 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
640 return 0;
641
642 new_ant_type = ant_toggle_lookup[tbl->ant_type];
643
644 while ((new_ant_type != tbl->ant_type) &&
645 !rs_is_valid_ant(valid_ant, new_ant_type))
646 new_ant_type = ant_toggle_lookup[new_ant_type];
647
648 if (new_ant_type == tbl->ant_type)
649 return 0;
650
651 tbl->ant_type = new_ant_type;
652 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
653 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
654 return 1;
655 }
656
657 /* in 4965 we don't use greenfield at all */
658 static inline u8 rs_use_green(struct iwl_priv *priv,
659 struct ieee80211_conf *conf)
660 {
661 u8 is_green;
662
663 if ((priv->hw_rev & CSR_HW_REV_TYPE_MSK) == CSR_HW_REV_TYPE_4965)
664 is_green = 0;
665 else
666 is_green = (conf_is_ht(conf) &&
667 priv->current_ht_config.is_green_field &&
668 !priv->current_ht_config.non_GF_STA_present);
669 return is_green;
670 }
671
672 /**
673 * rs_get_supported_rates - get the available rates
674 *
675 * if management frame or broadcast frame only return
676 * basic available rates.
677 *
678 */
679 static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
680 struct ieee80211_hdr *hdr,
681 enum iwl_table_type rate_type)
682 {
683 if (hdr && is_multicast_ether_addr(hdr->addr1) &&
684 lq_sta->active_rate_basic)
685 return lq_sta->active_rate_basic;
686
687 if (is_legacy(rate_type)) {
688 return lq_sta->active_legacy_rate;
689 } else {
690 if (is_siso(rate_type))
691 return lq_sta->active_siso_rate;
692 else if (is_mimo2(rate_type))
693 return lq_sta->active_mimo2_rate;
694 else
695 return lq_sta->active_mimo3_rate;
696 }
697 }
698
699 static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
700 int rate_type)
701 {
702 u8 high = IWL_RATE_INVALID;
703 u8 low = IWL_RATE_INVALID;
704
705 /* 802.11A or ht walks to the next literal adjacent rate in
706 * the rate table */
707 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
708 int i;
709 u32 mask;
710
711 /* Find the previous rate that is in the rate mask */
712 i = index - 1;
713 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
714 if (rate_mask & mask) {
715 low = i;
716 break;
717 }
718 }
719
720 /* Find the next rate that is in the rate mask */
721 i = index + 1;
722 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
723 if (rate_mask & mask) {
724 high = i;
725 break;
726 }
727 }
728
729 return (high << 8) | low;
730 }
731
732 low = index;
733 while (low != IWL_RATE_INVALID) {
734 low = iwl_rates[low].prev_rs;
735 if (low == IWL_RATE_INVALID)
736 break;
737 if (rate_mask & (1 << low))
738 break;
739 IWL_DEBUG_RATE(priv, "Skipping masked lower rate: %d\n", low);
740 }
741
742 high = index;
743 while (high != IWL_RATE_INVALID) {
744 high = iwl_rates[high].next_rs;
745 if (high == IWL_RATE_INVALID)
746 break;
747 if (rate_mask & (1 << high))
748 break;
749 IWL_DEBUG_RATE(priv, "Skipping masked higher rate: %d\n", high);
750 }
751
752 return (high << 8) | low;
753 }
754
755 static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
756 struct iwl_scale_tbl_info *tbl,
757 u8 scale_index, u8 ht_possible)
758 {
759 s32 low;
760 u16 rate_mask;
761 u16 high_low;
762 u8 switch_to_legacy = 0;
763 u8 is_green = lq_sta->is_green;
764
765 /* check if we need to switch from HT to legacy rates.
766 * assumption is that mandatory rates (1Mbps or 6Mbps)
767 * are always supported (spec demand) */
768 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
769 switch_to_legacy = 1;
770 scale_index = rs_ht_to_legacy[scale_index];
771 if (lq_sta->band == IEEE80211_BAND_5GHZ)
772 tbl->lq_type = LQ_A;
773 else
774 tbl->lq_type = LQ_G;
775
776 if (num_of_ant(tbl->ant_type) > 1)
777 tbl->ant_type = ANT_A;/*FIXME:RS*/
778
779 tbl->is_fat = 0;
780 tbl->is_SGI = 0;
781 tbl->max_search = IWL_MAX_SEARCH;
782 }
783
784 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
785
786 /* Mask with station rate restriction */
787 if (is_legacy(tbl->lq_type)) {
788 /* supp_rates has no CCK bits in A mode */
789 if (lq_sta->band == IEEE80211_BAND_5GHZ)
790 rate_mask = (u16)(rate_mask &
791 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
792 else
793 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
794 }
795
796 /* If we switched from HT to legacy, check current rate */
797 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
798 low = scale_index;
799 goto out;
800 }
801
802 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
803 tbl->lq_type);
804 low = high_low & 0xff;
805
806 if (low == IWL_RATE_INVALID)
807 low = scale_index;
808
809 out:
810 return rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
811 }
812
813 /*
814 * mac80211 sends us Tx status
815 */
816 static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
817 struct ieee80211_sta *sta, void *priv_sta,
818 struct sk_buff *skb)
819 {
820 int status;
821 u8 retries;
822 int rs_index, index = 0;
823 struct iwl_lq_sta *lq_sta = priv_sta;
824 struct iwl_link_quality_cmd *table;
825 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
826 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
827 struct ieee80211_hw *hw = priv->hw;
828 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
829 struct iwl_rate_scale_data *window = NULL;
830 struct iwl_rate_scale_data *search_win = NULL;
831 u32 tx_rate;
832 struct iwl_scale_tbl_info tbl_type;
833 struct iwl_scale_tbl_info *curr_tbl, *search_tbl;
834 u8 active_index = 0;
835 s32 tpt = 0;
836
837 IWL_DEBUG_RATE_LIMIT(priv, "get frame ack response, update rate scale window\n");
838
839 if (!ieee80211_is_data(hdr->frame_control) ||
840 info->flags & IEEE80211_TX_CTL_NO_ACK)
841 return;
842
843 /* This packet was aggregated but doesn't carry rate scale info */
844 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
845 !(info->flags & IEEE80211_TX_STAT_AMPDU))
846 return;
847
848 if (info->flags & IEEE80211_TX_STAT_AMPDU)
849 retries = 0;
850 else
851 retries = info->status.rates[0].count - 1;
852
853 if (retries > 15)
854 retries = 15;
855
856 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
857 !lq_sta->ibss_sta_added)
858 goto out;
859
860 table = &lq_sta->lq;
861 active_index = lq_sta->active_tbl;
862
863 curr_tbl = &(lq_sta->lq_info[active_index]);
864 search_tbl = &(lq_sta->lq_info[(1 - active_index)]);
865 window = (struct iwl_rate_scale_data *)&(curr_tbl->win[0]);
866 search_win = (struct iwl_rate_scale_data *)&(search_tbl->win[0]);
867
868 /*
869 * Ignore this Tx frame response if its initial rate doesn't match
870 * that of latest Link Quality command. There may be stragglers
871 * from a previous Link Quality command, but we're no longer interested
872 * in those; they're either from the "active" mode while we're trying
873 * to check "search" mode, or a prior "search" mode after we've moved
874 * to a new "search" mode (which might become the new "active" mode).
875 */
876 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
877 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
878 if (priv->band == IEEE80211_BAND_5GHZ)
879 rs_index -= IWL_FIRST_OFDM_RATE;
880
881 if ((info->status.rates[0].idx < 0) ||
882 (tbl_type.is_SGI != !!(info->status.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)) ||
883 (tbl_type.is_fat != !!(info->status.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
884 (tbl_type.is_dup != !!(info->status.rates[0].flags & IEEE80211_TX_RC_DUP_DATA)) ||
885 (tbl_type.ant_type != info->antenna_sel_tx) ||
886 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(info->status.rates[0].flags & IEEE80211_TX_RC_MCS)) ||
887 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(info->status.rates[0].flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
888 (hw->wiphy->bands[priv->band]->bitrates[rs_index].bitrate !=
889 hw->wiphy->bands[info->band]->bitrates[info->status.rates[0].idx].bitrate)) {
890 IWL_DEBUG_RATE(priv, "initial rate does not match 0x%x\n", tx_rate);
891 /* the last LQ command could failed so the LQ in ucode not
892 * the same in driver sync up
893 */
894 lq_sta->missed_rate_counter++;
895 if (lq_sta->missed_rate_counter > IWL_MISSED_RATE_MAX) {
896 lq_sta->missed_rate_counter = 0;
897 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
898 }
899 goto out;
900 }
901
902 lq_sta->missed_rate_counter = 0;
903 /* Update frame history window with "failure" for each Tx retry. */
904 while (retries) {
905 /* Look up the rate and other info used for each tx attempt.
906 * Each tx attempt steps one entry deeper in the rate table. */
907 tx_rate = le32_to_cpu(table->rs_table[index].rate_n_flags);
908 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
909 &tbl_type, &rs_index);
910
911 /* If type matches "search" table,
912 * add failure to "search" history */
913 if ((tbl_type.lq_type == search_tbl->lq_type) &&
914 (tbl_type.ant_type == search_tbl->ant_type) &&
915 (tbl_type.is_SGI == search_tbl->is_SGI)) {
916 if (search_tbl->expected_tpt)
917 tpt = search_tbl->expected_tpt[rs_index];
918 else
919 tpt = 0;
920 rs_collect_tx_data(search_win, rs_index, tpt, 1, 0);
921
922 /* Else if type matches "current/active" table,
923 * add failure to "current/active" history */
924 } else if ((tbl_type.lq_type == curr_tbl->lq_type) &&
925 (tbl_type.ant_type == curr_tbl->ant_type) &&
926 (tbl_type.is_SGI == curr_tbl->is_SGI)) {
927 if (curr_tbl->expected_tpt)
928 tpt = curr_tbl->expected_tpt[rs_index];
929 else
930 tpt = 0;
931 rs_collect_tx_data(window, rs_index, tpt, 1, 0);
932 }
933
934 /* If not searching for a new mode, increment failed counter
935 * ... this helps determine when to start searching again */
936 if (lq_sta->stay_in_tbl)
937 lq_sta->total_failed++;
938 --retries;
939 index++;
940
941 }
942
943 /*
944 * Find (by rate) the history window to update with final Tx attempt;
945 * if Tx was successful first try, use original rate,
946 * else look up the rate that was, finally, successful.
947 */
948 tx_rate = le32_to_cpu(table->rs_table[index].rate_n_flags);
949 lq_sta->last_rate_n_flags = tx_rate;
950 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
951
952 /* Update frame history window with "success" if Tx got ACKed ... */
953 status = !!(info->flags & IEEE80211_TX_STAT_ACK);
954
955 /* If type matches "search" table,
956 * add final tx status to "search" history */
957 if ((tbl_type.lq_type == search_tbl->lq_type) &&
958 (tbl_type.ant_type == search_tbl->ant_type) &&
959 (tbl_type.is_SGI == search_tbl->is_SGI)) {
960 if (search_tbl->expected_tpt)
961 tpt = search_tbl->expected_tpt[rs_index];
962 else
963 tpt = 0;
964 if (info->flags & IEEE80211_TX_STAT_AMPDU)
965 rs_collect_tx_data(search_win, rs_index, tpt,
966 info->status.ampdu_ack_len,
967 info->status.ampdu_ack_map);
968 else
969 rs_collect_tx_data(search_win, rs_index, tpt,
970 1, status);
971 /* Else if type matches "current/active" table,
972 * add final tx status to "current/active" history */
973 } else if ((tbl_type.lq_type == curr_tbl->lq_type) &&
974 (tbl_type.ant_type == curr_tbl->ant_type) &&
975 (tbl_type.is_SGI == curr_tbl->is_SGI)) {
976 if (curr_tbl->expected_tpt)
977 tpt = curr_tbl->expected_tpt[rs_index];
978 else
979 tpt = 0;
980 if (info->flags & IEEE80211_TX_STAT_AMPDU)
981 rs_collect_tx_data(window, rs_index, tpt,
982 info->status.ampdu_ack_len,
983 info->status.ampdu_ack_map);
984 else
985 rs_collect_tx_data(window, rs_index, tpt,
986 1, status);
987 }
988
989 /* If not searching for new mode, increment success/failed counter
990 * ... these help determine when to start searching again */
991 if (lq_sta->stay_in_tbl) {
992 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
993 lq_sta->total_success += info->status.ampdu_ack_map;
994 lq_sta->total_failed +=
995 (info->status.ampdu_ack_len - info->status.ampdu_ack_map);
996 } else {
997 if (status)
998 lq_sta->total_success++;
999 else
1000 lq_sta->total_failed++;
1001 }
1002 }
1003
1004 /* See if there's a better rate or modulation mode to try. */
1005 if (sta && sta->supp_rates[sband->band])
1006 rs_rate_scale_perform(priv, skb, sta, lq_sta);
1007 out:
1008 return;
1009 }
1010
1011 /*
1012 * Begin a period of staying with a selected modulation mode.
1013 * Set "stay_in_tbl" flag to prevent any mode switches.
1014 * Set frame tx success limits according to legacy vs. high-throughput,
1015 * and reset overall (spanning all rates) tx success history statistics.
1016 * These control how long we stay using same modulation mode before
1017 * searching for a new mode.
1018 */
1019 static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
1020 struct iwl_lq_sta *lq_sta)
1021 {
1022 IWL_DEBUG_RATE(priv, "we are staying in the same table\n");
1023 lq_sta->stay_in_tbl = 1; /* only place this gets set */
1024 if (is_legacy) {
1025 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
1026 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
1027 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
1028 } else {
1029 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
1030 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
1031 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
1032 }
1033 lq_sta->table_count = 0;
1034 lq_sta->total_failed = 0;
1035 lq_sta->total_success = 0;
1036 lq_sta->flush_timer = jiffies;
1037 lq_sta->action_counter = 0;
1038 }
1039
1040 /*
1041 * Find correct throughput table for given mode of modulation
1042 */
1043 static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
1044 struct iwl_scale_tbl_info *tbl)
1045 {
1046 if (is_legacy(tbl->lq_type)) {
1047 if (!is_a_band(tbl->lq_type))
1048 tbl->expected_tpt = expected_tpt_G;
1049 else
1050 tbl->expected_tpt = expected_tpt_A;
1051 } else if (is_siso(tbl->lq_type)) {
1052 if (tbl->is_fat && !lq_sta->is_dup)
1053 if (tbl->is_SGI)
1054 tbl->expected_tpt = expected_tpt_siso40MHzSGI;
1055 else
1056 tbl->expected_tpt = expected_tpt_siso40MHz;
1057 else if (tbl->is_SGI)
1058 tbl->expected_tpt = expected_tpt_siso20MHzSGI;
1059 else
1060 tbl->expected_tpt = expected_tpt_siso20MHz;
1061 } else if (is_mimo2(tbl->lq_type)) {
1062 if (tbl->is_fat && !lq_sta->is_dup)
1063 if (tbl->is_SGI)
1064 tbl->expected_tpt = expected_tpt_mimo2_40MHzSGI;
1065 else
1066 tbl->expected_tpt = expected_tpt_mimo2_40MHz;
1067 else if (tbl->is_SGI)
1068 tbl->expected_tpt = expected_tpt_mimo2_20MHzSGI;
1069 else
1070 tbl->expected_tpt = expected_tpt_mimo2_20MHz;
1071 } else if (is_mimo3(tbl->lq_type)) {
1072 if (tbl->is_fat && !lq_sta->is_dup)
1073 if (tbl->is_SGI)
1074 tbl->expected_tpt = expected_tpt_mimo3_40MHzSGI;
1075 else
1076 tbl->expected_tpt = expected_tpt_mimo3_40MHz;
1077 else if (tbl->is_SGI)
1078 tbl->expected_tpt = expected_tpt_mimo3_20MHzSGI;
1079 else
1080 tbl->expected_tpt = expected_tpt_mimo3_20MHz;
1081 } else
1082 tbl->expected_tpt = expected_tpt_G;
1083 }
1084
1085 /*
1086 * Find starting rate for new "search" high-throughput mode of modulation.
1087 * Goal is to find lowest expected rate (under perfect conditions) that is
1088 * above the current measured throughput of "active" mode, to give new mode
1089 * a fair chance to prove itself without too many challenges.
1090 *
1091 * This gets called when transitioning to more aggressive modulation
1092 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1093 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1094 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1095 * bit rate will typically need to increase, but not if performance was bad.
1096 */
1097 static s32 rs_get_best_rate(struct iwl_priv *priv,
1098 struct iwl_lq_sta *lq_sta,
1099 struct iwl_scale_tbl_info *tbl, /* "search" */
1100 u16 rate_mask, s8 index)
1101 {
1102 /* "active" values */
1103 struct iwl_scale_tbl_info *active_tbl =
1104 &(lq_sta->lq_info[lq_sta->active_tbl]);
1105 s32 active_sr = active_tbl->win[index].success_ratio;
1106 s32 active_tpt = active_tbl->expected_tpt[index];
1107
1108 /* expected "search" throughput */
1109 s32 *tpt_tbl = tbl->expected_tpt;
1110
1111 s32 new_rate, high, low, start_hi;
1112 u16 high_low;
1113 s8 rate = index;
1114
1115 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1116
1117 for (; ;) {
1118 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1119 tbl->lq_type);
1120
1121 low = high_low & 0xff;
1122 high = (high_low >> 8) & 0xff;
1123
1124 /*
1125 * Lower the "search" bit rate, to give new "search" mode
1126 * approximately the same throughput as "active" if:
1127 *
1128 * 1) "Active" mode has been working modestly well (but not
1129 * great), and expected "search" throughput (under perfect
1130 * conditions) at candidate rate is above the actual
1131 * measured "active" throughput (but less than expected
1132 * "active" throughput under perfect conditions).
1133 * OR
1134 * 2) "Active" mode has been working perfectly or very well
1135 * and expected "search" throughput (under perfect
1136 * conditions) at candidate rate is above expected
1137 * "active" throughput (under perfect conditions).
1138 */
1139 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
1140 ((active_sr > IWL_RATE_DECREASE_TH) &&
1141 (active_sr <= IWL_RATE_HIGH_TH) &&
1142 (tpt_tbl[rate] <= active_tpt))) ||
1143 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1144 (tpt_tbl[rate] > active_tpt))) {
1145
1146 /* (2nd or later pass)
1147 * If we've already tried to raise the rate, and are
1148 * now trying to lower it, use the higher rate. */
1149 if (start_hi != IWL_RATE_INVALID) {
1150 new_rate = start_hi;
1151 break;
1152 }
1153
1154 new_rate = rate;
1155
1156 /* Loop again with lower rate */
1157 if (low != IWL_RATE_INVALID)
1158 rate = low;
1159
1160 /* Lower rate not available, use the original */
1161 else
1162 break;
1163
1164 /* Else try to raise the "search" rate to match "active" */
1165 } else {
1166 /* (2nd or later pass)
1167 * If we've already tried to lower the rate, and are
1168 * now trying to raise it, use the lower rate. */
1169 if (new_rate != IWL_RATE_INVALID)
1170 break;
1171
1172 /* Loop again with higher rate */
1173 else if (high != IWL_RATE_INVALID) {
1174 start_hi = high;
1175 rate = high;
1176
1177 /* Higher rate not available, use the original */
1178 } else {
1179 new_rate = rate;
1180 break;
1181 }
1182 }
1183 }
1184
1185 return new_rate;
1186 }
1187
1188 /*
1189 * Set up search table for MIMO2
1190 */
1191 static int rs_switch_to_mimo2(struct iwl_priv *priv,
1192 struct iwl_lq_sta *lq_sta,
1193 struct ieee80211_conf *conf,
1194 struct ieee80211_sta *sta,
1195 struct iwl_scale_tbl_info *tbl, int index)
1196 {
1197 u16 rate_mask;
1198 s32 rate;
1199 s8 is_green = lq_sta->is_green;
1200
1201 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1202 return -1;
1203
1204 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1205 == WLAN_HT_CAP_SM_PS_STATIC)
1206 return -1;
1207
1208 /* Need both Tx chains/antennas to support MIMO */
1209 if (priv->hw_params.tx_chains_num < 2)
1210 return -1;
1211
1212 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO2\n");
1213
1214 tbl->lq_type = LQ_MIMO2;
1215 tbl->is_dup = lq_sta->is_dup;
1216 tbl->action = 0;
1217 tbl->max_search = IWL_MAX_SEARCH;
1218 rate_mask = lq_sta->active_mimo2_rate;
1219
1220 if (iwl_is_fat_tx_allowed(priv, &sta->ht_cap))
1221 tbl->is_fat = 1;
1222 else
1223 tbl->is_fat = 0;
1224
1225 /* FIXME: - don't toggle SGI here
1226 if (tbl->is_fat) {
1227 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
1228 tbl->is_SGI = 1;
1229 else
1230 tbl->is_SGI = 0;
1231 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
1232 tbl->is_SGI = 1;
1233 else
1234 tbl->is_SGI = 0;
1235 */
1236
1237 rs_set_expected_tpt_table(lq_sta, tbl);
1238
1239 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1240
1241 IWL_DEBUG_RATE(priv, "LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
1242 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1243 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1244 rate, rate_mask);
1245 return -1;
1246 }
1247 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
1248
1249 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1250 tbl->current_rate, is_green);
1251 return 0;
1252 }
1253
1254 /*
1255 * Set up search table for MIMO3
1256 */
1257 static int rs_switch_to_mimo3(struct iwl_priv *priv,
1258 struct iwl_lq_sta *lq_sta,
1259 struct ieee80211_conf *conf,
1260 struct ieee80211_sta *sta,
1261 struct iwl_scale_tbl_info *tbl, int index)
1262 {
1263 u16 rate_mask;
1264 s32 rate;
1265 s8 is_green = lq_sta->is_green;
1266
1267 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1268 return -1;
1269
1270 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
1271 == WLAN_HT_CAP_SM_PS_STATIC)
1272 return -1;
1273
1274 /* Need both Tx chains/antennas to support MIMO */
1275 if (priv->hw_params.tx_chains_num < 3)
1276 return -1;
1277
1278 IWL_DEBUG_RATE(priv, "LQ: try to switch to MIMO3\n");
1279
1280 tbl->lq_type = LQ_MIMO3;
1281 tbl->is_dup = lq_sta->is_dup;
1282 tbl->action = 0;
1283 tbl->max_search = IWL_MAX_11N_MIMO3_SEARCH;
1284 rate_mask = lq_sta->active_mimo3_rate;
1285
1286 if (iwl_is_fat_tx_allowed(priv, &sta->ht_cap))
1287 tbl->is_fat = 1;
1288 else
1289 tbl->is_fat = 0;
1290
1291 /* FIXME: - don't toggle SGI here
1292 if (tbl->is_fat) {
1293 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
1294 tbl->is_SGI = 1;
1295 else
1296 tbl->is_SGI = 0;
1297 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
1298 tbl->is_SGI = 1;
1299 else
1300 tbl->is_SGI = 0;
1301 */
1302
1303 rs_set_expected_tpt_table(lq_sta, tbl);
1304
1305 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1306
1307 IWL_DEBUG_RATE(priv, "LQ: MIMO3 best rate %d mask %X\n",
1308 rate, rate_mask);
1309 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1310 IWL_DEBUG_RATE(priv, "Can't switch with index %d rate mask %x\n",
1311 rate, rate_mask);
1312 return -1;
1313 }
1314 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
1315
1316 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1317 tbl->current_rate, is_green);
1318 return 0;
1319 }
1320
1321 /*
1322 * Set up search table for SISO
1323 */
1324 static int rs_switch_to_siso(struct iwl_priv *priv,
1325 struct iwl_lq_sta *lq_sta,
1326 struct ieee80211_conf *conf,
1327 struct ieee80211_sta *sta,
1328 struct iwl_scale_tbl_info *tbl, int index)
1329 {
1330 u16 rate_mask;
1331 u8 is_green = lq_sta->is_green;
1332 s32 rate;
1333
1334 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1335 return -1;
1336
1337 IWL_DEBUG_RATE(priv, "LQ: try to switch to SISO\n");
1338
1339 tbl->is_dup = lq_sta->is_dup;
1340 tbl->lq_type = LQ_SISO;
1341 tbl->action = 0;
1342 tbl->max_search = IWL_MAX_SEARCH;
1343 rate_mask = lq_sta->active_siso_rate;
1344
1345 if (iwl_is_fat_tx_allowed(priv, &sta->ht_cap))
1346 tbl->is_fat = 1;
1347 else
1348 tbl->is_fat = 0;
1349
1350 /* FIXME: - don't toggle SGI here
1351 if (tbl->is_fat) {
1352 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
1353 tbl->is_SGI = 1;
1354 else
1355 tbl->is_SGI = 0;
1356 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
1357 tbl->is_SGI = 1;
1358 else
1359 tbl->is_SGI = 0;
1360 */
1361
1362 if (is_green)
1363 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
1364
1365 rs_set_expected_tpt_table(lq_sta, tbl);
1366 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
1367
1368 IWL_DEBUG_RATE(priv, "LQ: get best rate %d mask %X\n", rate, rate_mask);
1369 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
1370 IWL_DEBUG_RATE(priv, "can not switch with index %d rate mask %x\n",
1371 rate, rate_mask);
1372 return -1;
1373 }
1374 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, rate, is_green);
1375 IWL_DEBUG_RATE(priv, "LQ: Switch to new mcs %X index is green %X\n",
1376 tbl->current_rate, is_green);
1377 return 0;
1378 }
1379
1380 /*
1381 * Try to switch to new modulation mode from legacy
1382 */
1383 static int rs_move_legacy_other(struct iwl_priv *priv,
1384 struct iwl_lq_sta *lq_sta,
1385 struct ieee80211_conf *conf,
1386 struct ieee80211_sta *sta,
1387 int index)
1388 {
1389 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1390 struct iwl_scale_tbl_info *search_tbl =
1391 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1392 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1393 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1394 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1395 u8 start_action = tbl->action;
1396 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1397 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1398 int ret = 0;
1399 u8 update_search_tbl_counter = 0;
1400
1401 for (; ;) {
1402 lq_sta->action_counter++;
1403 switch (tbl->action) {
1404 case IWL_LEGACY_SWITCH_ANTENNA1:
1405 case IWL_LEGACY_SWITCH_ANTENNA2:
1406 IWL_DEBUG_RATE(priv, "LQ: Legacy toggle Antenna\n");
1407
1408 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1409 tx_chains_num <= 1) ||
1410 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1411 tx_chains_num <= 2))
1412 break;
1413
1414 /* Don't change antenna if success has been great */
1415 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1416 break;
1417
1418 /* Set up search table to try other antenna */
1419 memcpy(search_tbl, tbl, sz);
1420
1421 if (rs_toggle_antenna(valid_tx_ant,
1422 &search_tbl->current_rate, search_tbl)) {
1423 update_search_tbl_counter = 1;
1424 rs_set_expected_tpt_table(lq_sta, search_tbl);
1425 goto out;
1426 }
1427 break;
1428 case IWL_LEGACY_SWITCH_SISO:
1429 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to SISO\n");
1430
1431 /* Set up search table to try SISO */
1432 memcpy(search_tbl, tbl, sz);
1433 search_tbl->is_SGI = 0;
1434 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1435 search_tbl, index);
1436 if (!ret) {
1437 lq_sta->action_counter = 0;
1438 goto out;
1439 }
1440
1441 break;
1442 case IWL_LEGACY_SWITCH_MIMO2_AB:
1443 case IWL_LEGACY_SWITCH_MIMO2_AC:
1444 case IWL_LEGACY_SWITCH_MIMO2_BC:
1445 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO2\n");
1446
1447 /* Set up search table to try MIMO */
1448 memcpy(search_tbl, tbl, sz);
1449 search_tbl->is_SGI = 0;
1450
1451 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1452 search_tbl->ant_type = ANT_AB;
1453 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1454 search_tbl->ant_type = ANT_AC;
1455 else
1456 search_tbl->ant_type = ANT_BC;
1457
1458 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1459 break;
1460
1461 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1462 search_tbl, index);
1463 if (!ret) {
1464 lq_sta->action_counter = 0;
1465 goto out;
1466 }
1467 break;
1468
1469 case IWL_LEGACY_SWITCH_MIMO3_ABC:
1470 IWL_DEBUG_RATE(priv, "LQ: Legacy switch to MIMO3\n");
1471
1472 /* Set up search table to try MIMO3 */
1473 memcpy(search_tbl, tbl, sz);
1474 search_tbl->is_SGI = 0;
1475
1476 search_tbl->ant_type = ANT_ABC;
1477
1478 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1479 break;
1480
1481 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1482 search_tbl, index);
1483 if (!ret) {
1484 lq_sta->action_counter = 0;
1485 goto out;
1486 }
1487 break;
1488 }
1489 tbl->action++;
1490 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
1491 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1492
1493 if (tbl->action == start_action)
1494 break;
1495
1496 }
1497 search_tbl->lq_type = LQ_NONE;
1498 return 0;
1499
1500 out:
1501 lq_sta->search_better_tbl = 1;
1502 tbl->action++;
1503 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
1504 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
1505 if (update_search_tbl_counter)
1506 search_tbl->action = tbl->action;
1507 return 0;
1508
1509 }
1510
1511 /*
1512 * Try to switch to new modulation mode from SISO
1513 */
1514 static int rs_move_siso_to_other(struct iwl_priv *priv,
1515 struct iwl_lq_sta *lq_sta,
1516 struct ieee80211_conf *conf,
1517 struct ieee80211_sta *sta, int index)
1518 {
1519 u8 is_green = lq_sta->is_green;
1520 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1521 struct iwl_scale_tbl_info *search_tbl =
1522 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1523 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1524 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1525 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1526 u8 start_action = tbl->action;
1527 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1528 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1529 u8 update_search_tbl_counter = 0;
1530 int ret;
1531
1532 for (;;) {
1533 lq_sta->action_counter++;
1534 switch (tbl->action) {
1535 case IWL_SISO_SWITCH_ANTENNA1:
1536 case IWL_SISO_SWITCH_ANTENNA2:
1537 IWL_DEBUG_RATE(priv, "LQ: SISO toggle Antenna\n");
1538
1539 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1540 tx_chains_num <= 1) ||
1541 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1542 tx_chains_num <= 2))
1543 break;
1544
1545 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1546 break;
1547
1548 memcpy(search_tbl, tbl, sz);
1549 if (rs_toggle_antenna(valid_tx_ant,
1550 &search_tbl->current_rate, search_tbl)) {
1551 update_search_tbl_counter = 1;
1552 goto out;
1553 }
1554 break;
1555 case IWL_SISO_SWITCH_MIMO2_AB:
1556 case IWL_SISO_SWITCH_MIMO2_AC:
1557 case IWL_SISO_SWITCH_MIMO2_BC:
1558 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO2\n");
1559 memcpy(search_tbl, tbl, sz);
1560 search_tbl->is_SGI = 0;
1561
1562 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1563 search_tbl->ant_type = ANT_AB;
1564 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1565 search_tbl->ant_type = ANT_AC;
1566 else
1567 search_tbl->ant_type = ANT_BC;
1568
1569 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1570 break;
1571
1572 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1573 search_tbl, index);
1574 if (!ret)
1575 goto out;
1576 break;
1577 case IWL_SISO_SWITCH_GI:
1578 if (!tbl->is_fat &&
1579 !(priv->current_ht_config.sgf &
1580 HT_SHORT_GI_20MHZ))
1581 break;
1582 if (tbl->is_fat &&
1583 !(priv->current_ht_config.sgf &
1584 HT_SHORT_GI_40MHZ))
1585 break;
1586
1587 IWL_DEBUG_RATE(priv, "LQ: SISO toggle SGI/NGI\n");
1588
1589 memcpy(search_tbl, tbl, sz);
1590 if (is_green) {
1591 if (!tbl->is_SGI)
1592 break;
1593 else
1594 IWL_ERR(priv,
1595 "SGI was set in GF+SISO\n");
1596 }
1597 search_tbl->is_SGI = !tbl->is_SGI;
1598 rs_set_expected_tpt_table(lq_sta, search_tbl);
1599 if (tbl->is_SGI) {
1600 s32 tpt = lq_sta->last_tpt / 100;
1601 if (tpt >= search_tbl->expected_tpt[index])
1602 break;
1603 }
1604 search_tbl->current_rate =
1605 rate_n_flags_from_tbl(priv, search_tbl,
1606 index, is_green);
1607 update_search_tbl_counter = 1;
1608 goto out;
1609 case IWL_SISO_SWITCH_MIMO3_ABC:
1610 IWL_DEBUG_RATE(priv, "LQ: SISO switch to MIMO3\n");
1611 memcpy(search_tbl, tbl, sz);
1612 search_tbl->is_SGI = 0;
1613 search_tbl->ant_type = ANT_ABC;
1614
1615 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1616 break;
1617
1618 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1619 search_tbl, index);
1620 if (!ret)
1621 goto out;
1622 break;
1623 }
1624 tbl->action++;
1625 if (tbl->action > IWL_LEGACY_SWITCH_MIMO3_ABC)
1626 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1627
1628 if (tbl->action == start_action)
1629 break;
1630 }
1631 search_tbl->lq_type = LQ_NONE;
1632 return 0;
1633
1634 out:
1635 lq_sta->search_better_tbl = 1;
1636 tbl->action++;
1637 if (tbl->action > IWL_SISO_SWITCH_MIMO3_ABC)
1638 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
1639 if (update_search_tbl_counter)
1640 search_tbl->action = tbl->action;
1641
1642 return 0;
1643 }
1644
1645 /*
1646 * Try to switch to new modulation mode from MIMO2
1647 */
1648 static int rs_move_mimo2_to_other(struct iwl_priv *priv,
1649 struct iwl_lq_sta *lq_sta,
1650 struct ieee80211_conf *conf,
1651 struct ieee80211_sta *sta, int index)
1652 {
1653 s8 is_green = lq_sta->is_green;
1654 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1655 struct iwl_scale_tbl_info *search_tbl =
1656 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1657 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1658 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1659 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1660 u8 start_action = tbl->action;
1661 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1662 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1663 u8 update_search_tbl_counter = 0;
1664 int ret;
1665
1666 for (;;) {
1667 lq_sta->action_counter++;
1668 switch (tbl->action) {
1669 case IWL_MIMO2_SWITCH_ANTENNA1:
1670 case IWL_MIMO2_SWITCH_ANTENNA2:
1671 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle Antennas\n");
1672
1673 if (tx_chains_num <= 2)
1674 break;
1675
1676 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1677 break;
1678
1679 memcpy(search_tbl, tbl, sz);
1680 if (rs_toggle_antenna(valid_tx_ant,
1681 &search_tbl->current_rate, search_tbl)) {
1682 update_search_tbl_counter = 1;
1683 goto out;
1684 }
1685 break;
1686 case IWL_MIMO2_SWITCH_SISO_A:
1687 case IWL_MIMO2_SWITCH_SISO_B:
1688 case IWL_MIMO2_SWITCH_SISO_C:
1689 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to SISO\n");
1690
1691 /* Set up new search table for SISO */
1692 memcpy(search_tbl, tbl, sz);
1693
1694 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
1695 search_tbl->ant_type = ANT_A;
1696 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
1697 search_tbl->ant_type = ANT_B;
1698 else
1699 search_tbl->ant_type = ANT_C;
1700
1701 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1702 break;
1703
1704 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1705 search_tbl, index);
1706 if (!ret)
1707 goto out;
1708
1709 break;
1710
1711 case IWL_MIMO2_SWITCH_GI:
1712 if (!tbl->is_fat &&
1713 !(priv->current_ht_config.sgf &
1714 HT_SHORT_GI_20MHZ))
1715 break;
1716 if (tbl->is_fat &&
1717 !(priv->current_ht_config.sgf &
1718 HT_SHORT_GI_40MHZ))
1719 break;
1720
1721 IWL_DEBUG_RATE(priv, "LQ: MIMO2 toggle SGI/NGI\n");
1722
1723 /* Set up new search table for MIMO2 */
1724 memcpy(search_tbl, tbl, sz);
1725 search_tbl->is_SGI = !tbl->is_SGI;
1726 rs_set_expected_tpt_table(lq_sta, search_tbl);
1727 /*
1728 * If active table already uses the fastest possible
1729 * modulation (dual stream with short guard interval),
1730 * and it's working well, there's no need to look
1731 * for a better type of modulation!
1732 */
1733 if (tbl->is_SGI) {
1734 s32 tpt = lq_sta->last_tpt / 100;
1735 if (tpt >= search_tbl->expected_tpt[index])
1736 break;
1737 }
1738 search_tbl->current_rate =
1739 rate_n_flags_from_tbl(priv, search_tbl,
1740 index, is_green);
1741 update_search_tbl_counter = 1;
1742 goto out;
1743
1744 case IWL_MIMO2_SWITCH_MIMO3_ABC:
1745 IWL_DEBUG_RATE(priv, "LQ: MIMO2 switch to MIMO3\n");
1746 memcpy(search_tbl, tbl, sz);
1747 search_tbl->is_SGI = 0;
1748 search_tbl->ant_type = ANT_ABC;
1749
1750 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1751 break;
1752
1753 ret = rs_switch_to_mimo3(priv, lq_sta, conf, sta,
1754 search_tbl, index);
1755 if (!ret)
1756 goto out;
1757
1758 break;
1759 }
1760 tbl->action++;
1761 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1762 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1763
1764 if (tbl->action == start_action)
1765 break;
1766 }
1767 search_tbl->lq_type = LQ_NONE;
1768 return 0;
1769 out:
1770 lq_sta->search_better_tbl = 1;
1771 tbl->action++;
1772 if (tbl->action > IWL_MIMO2_SWITCH_MIMO3_ABC)
1773 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
1774 if (update_search_tbl_counter)
1775 search_tbl->action = tbl->action;
1776
1777 return 0;
1778
1779 }
1780
1781 /*
1782 * Try to switch to new modulation mode from MIMO3
1783 */
1784 static int rs_move_mimo3_to_other(struct iwl_priv *priv,
1785 struct iwl_lq_sta *lq_sta,
1786 struct ieee80211_conf *conf,
1787 struct ieee80211_sta *sta, int index)
1788 {
1789 s8 is_green = lq_sta->is_green;
1790 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1791 struct iwl_scale_tbl_info *search_tbl =
1792 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1793 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1794 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1795 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
1796 u8 start_action = tbl->action;
1797 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1798 u8 tx_chains_num = priv->hw_params.tx_chains_num;
1799 int ret;
1800 u8 update_search_tbl_counter = 0;
1801
1802 for (;;) {
1803 lq_sta->action_counter++;
1804 switch (tbl->action) {
1805 case IWL_MIMO3_SWITCH_ANTENNA1:
1806 case IWL_MIMO3_SWITCH_ANTENNA2:
1807 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle Antennas\n");
1808
1809 if (tx_chains_num <= 3)
1810 break;
1811
1812 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1813 break;
1814
1815 memcpy(search_tbl, tbl, sz);
1816 if (rs_toggle_antenna(valid_tx_ant,
1817 &search_tbl->current_rate, search_tbl))
1818 goto out;
1819 break;
1820 case IWL_MIMO3_SWITCH_SISO_A:
1821 case IWL_MIMO3_SWITCH_SISO_B:
1822 case IWL_MIMO3_SWITCH_SISO_C:
1823 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to SISO\n");
1824
1825 /* Set up new search table for SISO */
1826 memcpy(search_tbl, tbl, sz);
1827
1828 if (tbl->action == IWL_MIMO3_SWITCH_SISO_A)
1829 search_tbl->ant_type = ANT_A;
1830 else if (tbl->action == IWL_MIMO3_SWITCH_SISO_B)
1831 search_tbl->ant_type = ANT_B;
1832 else
1833 search_tbl->ant_type = ANT_C;
1834
1835 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1836 break;
1837
1838 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
1839 search_tbl, index);
1840 if (!ret)
1841 goto out;
1842
1843 break;
1844
1845 case IWL_MIMO3_SWITCH_MIMO2_AB:
1846 case IWL_MIMO3_SWITCH_MIMO2_AC:
1847 case IWL_MIMO3_SWITCH_MIMO2_BC:
1848 IWL_DEBUG_RATE(priv, "LQ: MIMO3 switch to MIMO2\n");
1849
1850 memcpy(search_tbl, tbl, sz);
1851 search_tbl->is_SGI = 0;
1852 if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AB)
1853 search_tbl->ant_type = ANT_AB;
1854 else if (tbl->action == IWL_MIMO3_SWITCH_MIMO2_AC)
1855 search_tbl->ant_type = ANT_AC;
1856 else
1857 search_tbl->ant_type = ANT_BC;
1858
1859 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1860 break;
1861
1862 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
1863 search_tbl, index);
1864 if (!ret)
1865 goto out;
1866
1867 break;
1868
1869 case IWL_MIMO3_SWITCH_GI:
1870 if (!tbl->is_fat &&
1871 !(priv->current_ht_config.sgf &
1872 HT_SHORT_GI_20MHZ))
1873 break;
1874 if (tbl->is_fat &&
1875 !(priv->current_ht_config.sgf &
1876 HT_SHORT_GI_40MHZ))
1877 break;
1878
1879 IWL_DEBUG_RATE(priv, "LQ: MIMO3 toggle SGI/NGI\n");
1880
1881 /* Set up new search table for MIMO */
1882 memcpy(search_tbl, tbl, sz);
1883 search_tbl->is_SGI = !tbl->is_SGI;
1884 rs_set_expected_tpt_table(lq_sta, search_tbl);
1885 /*
1886 * If active table already uses the fastest possible
1887 * modulation (dual stream with short guard interval),
1888 * and it's working well, there's no need to look
1889 * for a better type of modulation!
1890 */
1891 if (tbl->is_SGI) {
1892 s32 tpt = lq_sta->last_tpt / 100;
1893 if (tpt >= search_tbl->expected_tpt[index])
1894 break;
1895 }
1896 search_tbl->current_rate =
1897 rate_n_flags_from_tbl(priv, search_tbl,
1898 index, is_green);
1899 update_search_tbl_counter = 1;
1900 goto out;
1901 }
1902 tbl->action++;
1903 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1904 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
1905
1906 if (tbl->action == start_action)
1907 break;
1908 }
1909 search_tbl->lq_type = LQ_NONE;
1910 return 0;
1911 out:
1912 lq_sta->search_better_tbl = 1;
1913 tbl->action++;
1914 if (tbl->action > IWL_MIMO3_SWITCH_GI)
1915 tbl->action = IWL_MIMO3_SWITCH_ANTENNA1;
1916 if (update_search_tbl_counter)
1917 search_tbl->action = tbl->action;
1918
1919 return 0;
1920
1921 }
1922
1923 /*
1924 * Check whether we should continue using same modulation mode, or
1925 * begin search for a new mode, based on:
1926 * 1) # tx successes or failures while using this mode
1927 * 2) # times calling this function
1928 * 3) elapsed time in this mode (not used, for now)
1929 */
1930 static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
1931 {
1932 struct iwl_scale_tbl_info *tbl;
1933 int i;
1934 int active_tbl;
1935 int flush_interval_passed = 0;
1936 struct iwl_priv *priv;
1937
1938 priv = lq_sta->drv;
1939 active_tbl = lq_sta->active_tbl;
1940
1941 tbl = &(lq_sta->lq_info[active_tbl]);
1942
1943 /* If we've been disallowing search, see if we should now allow it */
1944 if (lq_sta->stay_in_tbl) {
1945
1946 /* Elapsed time using current modulation mode */
1947 if (lq_sta->flush_timer)
1948 flush_interval_passed =
1949 time_after(jiffies,
1950 (unsigned long)(lq_sta->flush_timer +
1951 IWL_RATE_SCALE_FLUSH_INTVL));
1952
1953 /*
1954 * Check if we should allow search for new modulation mode.
1955 * If many frames have failed or succeeded, or we've used
1956 * this same modulation for a long time, allow search, and
1957 * reset history stats that keep track of whether we should
1958 * allow a new search. Also (below) reset all bitmaps and
1959 * stats in active history.
1960 */
1961 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1962 (lq_sta->total_success > lq_sta->max_success_limit) ||
1963 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
1964 && (flush_interval_passed))) {
1965 IWL_DEBUG_RATE(priv, "LQ: stay is expired %d %d %d\n:",
1966 lq_sta->total_failed,
1967 lq_sta->total_success,
1968 flush_interval_passed);
1969
1970 /* Allow search for new mode */
1971 lq_sta->stay_in_tbl = 0; /* only place reset */
1972 lq_sta->total_failed = 0;
1973 lq_sta->total_success = 0;
1974 lq_sta->flush_timer = 0;
1975
1976 /*
1977 * Else if we've used this modulation mode enough repetitions
1978 * (regardless of elapsed time or success/failure), reset
1979 * history bitmaps and rate-specific stats for all rates in
1980 * active table.
1981 */
1982 } else {
1983 lq_sta->table_count++;
1984 if (lq_sta->table_count >=
1985 lq_sta->table_count_limit) {
1986 lq_sta->table_count = 0;
1987
1988 IWL_DEBUG_RATE(priv, "LQ: stay in table clear win\n");
1989 for (i = 0; i < IWL_RATE_COUNT; i++)
1990 rs_rate_scale_clear_window(
1991 &(tbl->win[i]));
1992 }
1993 }
1994
1995 /* If transitioning to allow "search", reset all history
1996 * bitmaps and stats in active table (this will become the new
1997 * "search" table). */
1998 if (!lq_sta->stay_in_tbl) {
1999 for (i = 0; i < IWL_RATE_COUNT; i++)
2000 rs_rate_scale_clear_window(&(tbl->win[i]));
2001 }
2002 }
2003 }
2004
2005 /*
2006 * Do rate scaling and search for new modulation mode.
2007 */
2008 static void rs_rate_scale_perform(struct iwl_priv *priv,
2009 struct sk_buff *skb,
2010 struct ieee80211_sta *sta,
2011 struct iwl_lq_sta *lq_sta)
2012 {
2013 struct ieee80211_hw *hw = priv->hw;
2014 struct ieee80211_conf *conf = &hw->conf;
2015 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2016 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2017 int low = IWL_RATE_INVALID;
2018 int high = IWL_RATE_INVALID;
2019 int index;
2020 int i;
2021 struct iwl_rate_scale_data *window = NULL;
2022 int current_tpt = IWL_INVALID_VALUE;
2023 int low_tpt = IWL_INVALID_VALUE;
2024 int high_tpt = IWL_INVALID_VALUE;
2025 u32 fail_count;
2026 s8 scale_action = 0;
2027 u16 rate_mask;
2028 u8 update_lq = 0;
2029 struct iwl_scale_tbl_info *tbl, *tbl1;
2030 u16 rate_scale_index_msk = 0;
2031 u32 rate;
2032 u8 is_green = 0;
2033 u8 active_tbl = 0;
2034 u8 done_search = 0;
2035 u16 high_low;
2036 s32 sr;
2037 u8 tid = MAX_TID_COUNT;
2038 struct iwl_tid_data *tid_data;
2039
2040 IWL_DEBUG_RATE(priv, "rate scale calculate new rate for skb\n");
2041
2042 /* Send management frames and NO_ACK data using lowest rate. */
2043 /* TODO: this could probably be improved.. */
2044 if (!ieee80211_is_data(hdr->frame_control) ||
2045 info->flags & IEEE80211_TX_CTL_NO_ACK)
2046 return;
2047
2048 if (!sta || !lq_sta)
2049 return;
2050
2051 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
2052
2053 tid = rs_tl_add_packet(lq_sta, hdr);
2054
2055 /*
2056 * Select rate-scale / modulation-mode table to work with in
2057 * the rest of this function: "search" if searching for better
2058 * modulation mode, or "active" if doing rate scaling within a mode.
2059 */
2060 if (!lq_sta->search_better_tbl)
2061 active_tbl = lq_sta->active_tbl;
2062 else
2063 active_tbl = 1 - lq_sta->active_tbl;
2064
2065 tbl = &(lq_sta->lq_info[active_tbl]);
2066 if (is_legacy(tbl->lq_type))
2067 lq_sta->is_green = 0;
2068 else
2069 lq_sta->is_green = rs_use_green(priv, conf);
2070 is_green = lq_sta->is_green;
2071
2072 /* current tx rate */
2073 index = lq_sta->last_txrate_idx;
2074
2075 IWL_DEBUG_RATE(priv, "Rate scale index %d for type %d\n", index,
2076 tbl->lq_type);
2077
2078 /* rates available for this association, and for modulation mode */
2079 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
2080
2081 IWL_DEBUG_RATE(priv, "mask 0x%04X \n", rate_mask);
2082
2083 /* mask with station rate restriction */
2084 if (is_legacy(tbl->lq_type)) {
2085 if (lq_sta->band == IEEE80211_BAND_5GHZ)
2086 /* supp_rates has no CCK bits in A mode */
2087 rate_scale_index_msk = (u16) (rate_mask &
2088 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
2089 else
2090 rate_scale_index_msk = (u16) (rate_mask &
2091 lq_sta->supp_rates);
2092
2093 } else
2094 rate_scale_index_msk = rate_mask;
2095
2096 if (!rate_scale_index_msk)
2097 rate_scale_index_msk = rate_mask;
2098
2099 if (!((1 << index) & rate_scale_index_msk)) {
2100 IWL_ERR(priv, "Current Rate is not valid\n");
2101 return;
2102 }
2103
2104 /* Get expected throughput table and history window for current rate */
2105 if (!tbl->expected_tpt) {
2106 IWL_ERR(priv, "tbl->expected_tpt is NULL\n");
2107 return;
2108 }
2109
2110 /* force user max rate if set by user */
2111 if ((lq_sta->max_rate_idx != -1) &&
2112 (lq_sta->max_rate_idx < index)) {
2113 index = lq_sta->max_rate_idx;
2114 update_lq = 1;
2115 window = &(tbl->win[index]);
2116 goto lq_update;
2117 }
2118
2119 window = &(tbl->win[index]);
2120
2121 /*
2122 * If there is not enough history to calculate actual average
2123 * throughput, keep analyzing results of more tx frames, without
2124 * changing rate or mode (bypass most of the rest of this function).
2125 * Set up new rate table in uCode only if old rate is not supported
2126 * in current association (use new rate found above).
2127 */
2128 fail_count = window->counter - window->success_counter;
2129 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
2130 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
2131 IWL_DEBUG_RATE(priv, "LQ: still below TH. succ=%d total=%d "
2132 "for index %d\n",
2133 window->success_counter, window->counter, index);
2134
2135 /* Can't calculate this yet; not enough history */
2136 window->average_tpt = IWL_INVALID_VALUE;
2137
2138 /* Should we stay with this modulation mode,
2139 * or search for a new one? */
2140 rs_stay_in_table(lq_sta);
2141
2142 goto out;
2143 }
2144
2145 /* Else we have enough samples; calculate estimate of
2146 * actual average throughput */
2147
2148 BUG_ON(window->average_tpt != ((window->success_ratio *
2149 tbl->expected_tpt[index] + 64) / 128));
2150
2151 /* If we are searching for better modulation mode, check success. */
2152 if (lq_sta->search_better_tbl) {
2153
2154 /* If good success, continue using the "search" mode;
2155 * no need to send new link quality command, since we're
2156 * continuing to use the setup that we've been trying. */
2157 if (window->average_tpt > lq_sta->last_tpt) {
2158
2159 IWL_DEBUG_RATE(priv, "LQ: SWITCHING TO NEW TABLE "
2160 "suc=%d cur-tpt=%d old-tpt=%d\n",
2161 window->success_ratio,
2162 window->average_tpt,
2163 lq_sta->last_tpt);
2164
2165 if (!is_legacy(tbl->lq_type))
2166 lq_sta->enable_counter = 1;
2167
2168 /* Swap tables; "search" becomes "active" */
2169 lq_sta->active_tbl = active_tbl;
2170 current_tpt = window->average_tpt;
2171
2172 /* Else poor success; go back to mode in "active" table */
2173 } else {
2174
2175 IWL_DEBUG_RATE(priv, "LQ: GOING BACK TO THE OLD TABLE "
2176 "suc=%d cur-tpt=%d old-tpt=%d\n",
2177 window->success_ratio,
2178 window->average_tpt,
2179 lq_sta->last_tpt);
2180
2181 /* Nullify "search" table */
2182 tbl->lq_type = LQ_NONE;
2183
2184 /* Revert to "active" table */
2185 active_tbl = lq_sta->active_tbl;
2186 tbl = &(lq_sta->lq_info[active_tbl]);
2187
2188 /* Revert to "active" rate and throughput info */
2189 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2190 current_tpt = lq_sta->last_tpt;
2191
2192 /* Need to set up a new rate table in uCode */
2193 update_lq = 1;
2194 }
2195
2196 /* Either way, we've made a decision; modulation mode
2197 * search is done, allow rate adjustment next time. */
2198 lq_sta->search_better_tbl = 0;
2199 done_search = 1; /* Don't switch modes below! */
2200 goto lq_update;
2201 }
2202
2203 /* (Else) not in search of better modulation mode, try for better
2204 * starting rate, while staying in this mode. */
2205 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
2206 tbl->lq_type);
2207 low = high_low & 0xff;
2208 high = (high_low >> 8) & 0xff;
2209
2210 /* If user set max rate, dont allow higher than user constrain */
2211 if ((lq_sta->max_rate_idx != -1) &&
2212 (lq_sta->max_rate_idx < high))
2213 high = IWL_RATE_INVALID;
2214
2215 sr = window->success_ratio;
2216
2217 /* Collect measured throughputs for current and adjacent rates */
2218 current_tpt = window->average_tpt;
2219 if (low != IWL_RATE_INVALID)
2220 low_tpt = tbl->win[low].average_tpt;
2221 if (high != IWL_RATE_INVALID)
2222 high_tpt = tbl->win[high].average_tpt;
2223
2224 scale_action = 0;
2225
2226 /* Too many failures, decrease rate */
2227 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
2228 IWL_DEBUG_RATE(priv, "decrease rate because of low success_ratio\n");
2229 scale_action = -1;
2230
2231 /* No throughput measured yet for adjacent rates; try increase. */
2232 } else if ((low_tpt == IWL_INVALID_VALUE) &&
2233 (high_tpt == IWL_INVALID_VALUE)) {
2234
2235 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
2236 scale_action = 1;
2237 else if (low != IWL_RATE_INVALID)
2238 scale_action = 0;
2239 }
2240
2241 /* Both adjacent throughputs are measured, but neither one has better
2242 * throughput; we're using the best rate, don't change it! */
2243 else if ((low_tpt != IWL_INVALID_VALUE) &&
2244 (high_tpt != IWL_INVALID_VALUE) &&
2245 (low_tpt < current_tpt) &&
2246 (high_tpt < current_tpt))
2247 scale_action = 0;
2248
2249 /* At least one adjacent rate's throughput is measured,
2250 * and may have better performance. */
2251 else {
2252 /* Higher adjacent rate's throughput is measured */
2253 if (high_tpt != IWL_INVALID_VALUE) {
2254 /* Higher rate has better throughput */
2255 if (high_tpt > current_tpt &&
2256 sr >= IWL_RATE_INCREASE_TH) {
2257 scale_action = 1;
2258 } else {
2259 scale_action = 0;
2260 }
2261
2262 /* Lower adjacent rate's throughput is measured */
2263 } else if (low_tpt != IWL_INVALID_VALUE) {
2264 /* Lower rate has better throughput */
2265 if (low_tpt > current_tpt) {
2266 IWL_DEBUG_RATE(priv,
2267 "decrease rate because of low tpt\n");
2268 scale_action = -1;
2269 } else if (sr >= IWL_RATE_INCREASE_TH) {
2270 scale_action = 1;
2271 }
2272 }
2273 }
2274
2275 /* Sanity check; asked for decrease, but success rate or throughput
2276 * has been good at old rate. Don't change it. */
2277 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
2278 ((sr > IWL_RATE_HIGH_TH) ||
2279 (current_tpt > (100 * tbl->expected_tpt[low]))))
2280 scale_action = 0;
2281
2282 switch (scale_action) {
2283 case -1:
2284 /* Decrease starting rate, update uCode's rate table */
2285 if (low != IWL_RATE_INVALID) {
2286 update_lq = 1;
2287 index = low;
2288 }
2289
2290 break;
2291 case 1:
2292 /* Increase starting rate, update uCode's rate table */
2293 if (high != IWL_RATE_INVALID) {
2294 update_lq = 1;
2295 index = high;
2296 }
2297
2298 break;
2299 case 0:
2300 /* No change */
2301 default:
2302 break;
2303 }
2304
2305 IWL_DEBUG_RATE(priv, "choose rate scale index %d action %d low %d "
2306 "high %d type %d\n",
2307 index, scale_action, low, high, tbl->lq_type);
2308
2309 lq_update:
2310 /* Replace uCode's rate table for the destination station. */
2311 if (update_lq) {
2312 rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
2313 rs_fill_link_cmd(priv, lq_sta, rate);
2314 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
2315 }
2316
2317 /* Should we stay with this modulation mode, or search for a new one? */
2318 rs_stay_in_table(lq_sta);
2319
2320 /*
2321 * Search for new modulation mode if we're:
2322 * 1) Not changing rates right now
2323 * 2) Not just finishing up a search
2324 * 3) Allowing a new search
2325 */
2326 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
2327 /* Save current throughput to compare with "search" throughput*/
2328 lq_sta->last_tpt = current_tpt;
2329
2330 /* Select a new "search" modulation mode to try.
2331 * If one is found, set up the new "search" table. */
2332 if (is_legacy(tbl->lq_type))
2333 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
2334 else if (is_siso(tbl->lq_type))
2335 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
2336 else if (is_mimo2(tbl->lq_type))
2337 rs_move_mimo2_to_other(priv, lq_sta, conf, sta, index);
2338 else
2339 rs_move_mimo3_to_other(priv, lq_sta, conf, sta, index);
2340
2341 /* If new "search" mode was selected, set up in uCode table */
2342 if (lq_sta->search_better_tbl) {
2343 /* Access the "search" table, clear its history. */
2344 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
2345 for (i = 0; i < IWL_RATE_COUNT; i++)
2346 rs_rate_scale_clear_window(&(tbl->win[i]));
2347
2348 /* Use new "search" start rate */
2349 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
2350
2351 IWL_DEBUG_RATE(priv, "Switch current mcs: %X index: %d\n",
2352 tbl->current_rate, index);
2353 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
2354 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
2355 } else
2356 done_search = 1;
2357 }
2358
2359 if (done_search && !lq_sta->stay_in_tbl) {
2360 /* If the "active" (non-search) mode was legacy,
2361 * and we've tried switching antennas,
2362 * but we haven't been able to try HT modes (not available),
2363 * stay with best antenna legacy modulation for a while
2364 * before next round of mode comparisons. */
2365 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
2366 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
2367 lq_sta->action_counter > tbl1->max_search) {
2368 IWL_DEBUG_RATE(priv, "LQ: STAY in legacy table\n");
2369 rs_set_stay_in_table(priv, 1, lq_sta);
2370 }
2371
2372 /* If we're in an HT mode, and all 3 mode switch actions
2373 * have been tried and compared, stay in this best modulation
2374 * mode for a while before next round of mode comparisons. */
2375 if (lq_sta->enable_counter &&
2376 (lq_sta->action_counter >= tbl1->max_search)) {
2377 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2378 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2379 (tid != MAX_TID_COUNT)) {
2380 tid_data =
2381 &priv->stations[lq_sta->lq.sta_id].tid[tid];
2382 if (tid_data->agg.state == IWL_AGG_OFF) {
2383 IWL_DEBUG_RATE(priv,
2384 "try to aggregate tid %d\n",
2385 tid);
2386 rs_tl_turn_on_agg(priv, tid,
2387 lq_sta, sta);
2388 }
2389 }
2390 rs_set_stay_in_table(priv, 0, lq_sta);
2391 }
2392 }
2393
2394 out:
2395 tbl->current_rate = rate_n_flags_from_tbl(priv, tbl, index, is_green);
2396 i = index;
2397 lq_sta->last_txrate_idx = i;
2398
2399 return;
2400 }
2401
2402
2403 static void rs_initialize_lq(struct iwl_priv *priv,
2404 struct ieee80211_conf *conf,
2405 struct ieee80211_sta *sta,
2406 struct iwl_lq_sta *lq_sta)
2407 {
2408 struct iwl_scale_tbl_info *tbl;
2409 int rate_idx;
2410 int i;
2411 u32 rate;
2412 u8 use_green = rs_use_green(priv, conf);
2413 u8 active_tbl = 0;
2414 u8 valid_tx_ant;
2415
2416 if (!sta || !lq_sta)
2417 goto out;
2418
2419 i = lq_sta->last_txrate_idx;
2420
2421 if ((lq_sta->lq.sta_id == 0xff) &&
2422 (priv->iw_mode == NL80211_IFTYPE_ADHOC))
2423 goto out;
2424
2425 valid_tx_ant = priv->hw_params.valid_tx_ant;
2426
2427 if (!lq_sta->search_better_tbl)
2428 active_tbl = lq_sta->active_tbl;
2429 else
2430 active_tbl = 1 - lq_sta->active_tbl;
2431
2432 tbl = &(lq_sta->lq_info[active_tbl]);
2433
2434 if ((i < 0) || (i >= IWL_RATE_COUNT))
2435 i = 0;
2436
2437 rate = iwl_rates[i].plcp;
2438 tbl->ant_type = first_antenna(valid_tx_ant);
2439 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
2440
2441 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
2442 rate |= RATE_MCS_CCK_MSK;
2443
2444 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
2445 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2446 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
2447
2448 rate = rate_n_flags_from_tbl(priv, tbl, rate_idx, use_green);
2449 tbl->current_rate = rate;
2450 rs_set_expected_tpt_table(lq_sta, tbl);
2451 rs_fill_link_cmd(NULL, lq_sta, rate);
2452 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
2453 out:
2454 return;
2455 }
2456
2457 static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2458 struct ieee80211_tx_rate_control *txrc)
2459 {
2460
2461 struct sk_buff *skb = txrc->skb;
2462 struct ieee80211_supported_band *sband = txrc->sband;
2463 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2464 struct ieee80211_conf *conf = &priv->hw->conf;
2465 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
2466 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
2467 struct iwl_lq_sta *lq_sta = priv_sta;
2468 int rate_idx;
2469
2470 IWL_DEBUG_RATE_LIMIT(priv, "rate scale calculate new rate for skb\n");
2471
2472 /* Get max rate if user set max rate */
2473 if (lq_sta) {
2474 lq_sta->max_rate_idx = txrc->max_rate_idx;
2475 if ((sband->band == IEEE80211_BAND_5GHZ) &&
2476 (lq_sta->max_rate_idx != -1))
2477 lq_sta->max_rate_idx += IWL_FIRST_OFDM_RATE;
2478 if ((lq_sta->max_rate_idx < 0) ||
2479 (lq_sta->max_rate_idx >= IWL_RATE_COUNT))
2480 lq_sta->max_rate_idx = -1;
2481 }
2482
2483 /* Send management frames and NO_ACK data using lowest rate. */
2484 if (rate_control_send_low(sta, priv_sta, txrc))
2485 return;
2486
2487 rate_idx = lq_sta->last_txrate_idx;
2488
2489 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
2490 !lq_sta->ibss_sta_added) {
2491 u8 sta_id = iwl_find_station(priv, hdr->addr1);
2492
2493 if (sta_id == IWL_INVALID_STATION) {
2494 IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n",
2495 hdr->addr1);
2496 sta_id = iwl_add_station(priv, hdr->addr1,
2497 false, CMD_ASYNC, NULL);
2498 }
2499 if ((sta_id != IWL_INVALID_STATION)) {
2500 lq_sta->lq.sta_id = sta_id;
2501 lq_sta->lq.rs_table[0].rate_n_flags = 0;
2502 lq_sta->ibss_sta_added = 1;
2503 rs_initialize_lq(priv, conf, sta, lq_sta);
2504 }
2505 }
2506
2507 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
2508 rate_idx -= IWL_FIRST_OFDM_RATE;
2509 /* 6M and 9M shared same MCS index */
2510 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
2511 if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2512 IWL_RATE_MIMO3_6M_PLCP)
2513 rate_idx = rate_idx + (2 * MCS_INDEX_PER_STREAM);
2514 else if (rs_extract_rate(lq_sta->last_rate_n_flags) >=
2515 IWL_RATE_MIMO2_6M_PLCP)
2516 rate_idx = rate_idx + MCS_INDEX_PER_STREAM;
2517 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2518 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2519 info->control.rates[0].flags |= IEEE80211_TX_RC_SHORT_GI;
2520 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2521 info->control.rates[0].flags |= IEEE80211_TX_RC_DUP_DATA;
2522 if (lq_sta->last_rate_n_flags & RATE_MCS_FAT_MSK)
2523 info->control.rates[0].flags |= IEEE80211_TX_RC_40_MHZ_WIDTH;
2524 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2525 info->control.rates[0].flags |= IEEE80211_TX_RC_GREEN_FIELD;
2526 } else {
2527 if (rate_idx < 0 || rate_idx > IWL_RATE_COUNT)
2528 rate_idx = rate_lowest_index(sband, sta);
2529 else if (sband->band == IEEE80211_BAND_5GHZ)
2530 rate_idx -= IWL_FIRST_OFDM_RATE;
2531 }
2532 info->control.rates[0].idx = rate_idx;
2533
2534 }
2535
2536 static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2537 gfp_t gfp)
2538 {
2539 struct iwl_lq_sta *lq_sta;
2540 struct iwl_priv *priv;
2541 int i, j;
2542
2543 priv = (struct iwl_priv *)priv_rate;
2544 IWL_DEBUG_RATE(priv, "create station rate scale window\n");
2545
2546 lq_sta = kzalloc(sizeof(struct iwl_lq_sta), gfp);
2547
2548 if (lq_sta == NULL)
2549 return NULL;
2550 lq_sta->lq.sta_id = 0xff;
2551
2552
2553 for (j = 0; j < LQ_SIZE; j++)
2554 for (i = 0; i < IWL_RATE_COUNT; i++)
2555 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2556
2557 return lq_sta;
2558 }
2559
2560 static void rs_rate_init(void *priv_r, struct ieee80211_supported_band *sband,
2561 struct ieee80211_sta *sta, void *priv_sta)
2562 {
2563 int i, j;
2564 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2565 struct ieee80211_conf *conf = &priv->hw->conf;
2566 struct iwl_lq_sta *lq_sta = priv_sta;
2567 u16 mask_bit = 0;
2568 int count;
2569 int start_rate = 0;
2570
2571 lq_sta->flush_timer = 0;
2572 lq_sta->supp_rates = sta->supp_rates[sband->band];
2573 for (j = 0; j < LQ_SIZE; j++)
2574 for (i = 0; i < IWL_RATE_COUNT; i++)
2575 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
2576
2577 IWL_DEBUG_RATE(priv, "LQ: *** rate scale station global init ***\n");
2578 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2579 * the lowest or the highest rate.. Could consider using RSSI from
2580 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2581 * after assoc.. */
2582
2583 lq_sta->ibss_sta_added = 0;
2584 if (priv->iw_mode == NL80211_IFTYPE_AP) {
2585 u8 sta_id = iwl_find_station(priv,
2586 sta->addr);
2587
2588 /* for IBSS the call are from tasklet */
2589 IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n", sta->addr);
2590
2591 if (sta_id == IWL_INVALID_STATION) {
2592 IWL_DEBUG_RATE(priv, "LQ: ADD station %pM\n", sta->addr);
2593 sta_id = iwl_add_station(priv, sta->addr, false,
2594 CMD_ASYNC, NULL);
2595 }
2596 if ((sta_id != IWL_INVALID_STATION)) {
2597 lq_sta->lq.sta_id = sta_id;
2598 lq_sta->lq.rs_table[0].rate_n_flags = 0;
2599 }
2600 /* FIXME: this is w/a remove it later */
2601 priv->assoc_station_added = 1;
2602 }
2603
2604 lq_sta->is_dup = 0;
2605 lq_sta->max_rate_idx = -1;
2606 lq_sta->missed_rate_counter = IWL_MISSED_RATE_MAX;
2607 lq_sta->is_green = rs_use_green(priv, conf);
2608 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
2609 lq_sta->active_rate_basic = priv->active_rate_basic;
2610 lq_sta->band = priv->band;
2611 /*
2612 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2613 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2614 */
2615 lq_sta->active_siso_rate = sta->ht_cap.mcs.rx_mask[0] << 1;
2616 lq_sta->active_siso_rate |= sta->ht_cap.mcs.rx_mask[0] & 0x1;
2617 lq_sta->active_siso_rate &= ~((u16)0x2);
2618 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
2619
2620 /* Same here */
2621 lq_sta->active_mimo2_rate = sta->ht_cap.mcs.rx_mask[1] << 1;
2622 lq_sta->active_mimo2_rate |= sta->ht_cap.mcs.rx_mask[1] & 0x1;
2623 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2624 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2625
2626 lq_sta->active_mimo3_rate = sta->ht_cap.mcs.rx_mask[2] << 1;
2627 lq_sta->active_mimo3_rate |= sta->ht_cap.mcs.rx_mask[2] & 0x1;
2628 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2629 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2630
2631 IWL_DEBUG_RATE(priv, "SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
2632 lq_sta->active_siso_rate,
2633 lq_sta->active_mimo2_rate,
2634 lq_sta->active_mimo3_rate);
2635
2636 /* These values will be overridden later */
2637 lq_sta->lq.general_params.single_stream_ant_msk = ANT_A;
2638 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2639
2640 /* as default allow aggregation for all tids */
2641 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
2642 lq_sta->drv = priv;
2643
2644 /* Find highest tx rate supported by hardware and destination station */
2645 mask_bit = sta->supp_rates[sband->band];
2646 count = sband->n_bitrates;
2647 if (sband->band == IEEE80211_BAND_5GHZ) {
2648 count += IWL_FIRST_OFDM_RATE;
2649 start_rate = IWL_FIRST_OFDM_RATE;
2650 mask_bit <<= IWL_FIRST_OFDM_RATE;
2651 }
2652
2653 mask_bit = mask_bit & lq_sta->active_legacy_rate;
2654 lq_sta->last_txrate_idx = 4;
2655 for (i = start_rate; i < count; i++)
2656 if (mask_bit & BIT(i))
2657 lq_sta->last_txrate_idx = i;
2658
2659 rs_initialize_lq(priv, conf, sta, lq_sta);
2660 }
2661
2662 static void rs_fill_link_cmd(const struct iwl_priv *priv,
2663 struct iwl_lq_sta *lq_sta, u32 new_rate)
2664 {
2665 struct iwl_scale_tbl_info tbl_type;
2666 int index = 0;
2667 int rate_idx;
2668 int repeat_rate = 0;
2669 u8 ant_toggle_cnt = 0;
2670 u8 use_ht_possible = 1;
2671 u8 valid_tx_ant = 0;
2672 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
2673
2674 /* Override starting rate (index 0) if needed for debug purposes */
2675 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
2676
2677 /* Interpret new_rate (rate_n_flags) */
2678 memset(&tbl_type, 0, sizeof(tbl_type));
2679 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
2680 &tbl_type, &rate_idx);
2681
2682 /* How many times should we repeat the initial rate? */
2683 if (is_legacy(tbl_type.lq_type)) {
2684 ant_toggle_cnt = 1;
2685 repeat_rate = IWL_NUMBER_TRY;
2686 } else {
2687 repeat_rate = IWL_HT_NUMBER_TRY;
2688 }
2689
2690 lq_cmd->general_params.mimo_delimiter =
2691 is_mimo(tbl_type.lq_type) ? 1 : 0;
2692
2693 /* Fill 1st table entry (index 0) */
2694 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
2695
2696 if (num_of_ant(tbl_type.ant_type) == 1) {
2697 lq_cmd->general_params.single_stream_ant_msk =
2698 tbl_type.ant_type;
2699 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2700 lq_cmd->general_params.dual_stream_ant_msk =
2701 tbl_type.ant_type;
2702 } /* otherwise we don't modify the existing value */
2703
2704 index++;
2705 repeat_rate--;
2706
2707 if (priv)
2708 valid_tx_ant = priv->hw_params.valid_tx_ant;
2709
2710 /* Fill rest of rate table */
2711 while (index < LINK_QUAL_MAX_RETRY_NUM) {
2712 /* Repeat initial/next rate.
2713 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2714 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
2715 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
2716 if (is_legacy(tbl_type.lq_type)) {
2717 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2718 ant_toggle_cnt++;
2719 else if (priv &&
2720 rs_toggle_antenna(valid_tx_ant,
2721 &new_rate, &tbl_type))
2722 ant_toggle_cnt = 1;
2723 }
2724
2725 /* Override next rate if needed for debug purposes */
2726 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
2727
2728 /* Fill next table entry */
2729 lq_cmd->rs_table[index].rate_n_flags =
2730 cpu_to_le32(new_rate);
2731 repeat_rate--;
2732 index++;
2733 }
2734
2735 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
2736 &rate_idx);
2737
2738 /* Indicate to uCode which entries might be MIMO.
2739 * If initial rate was MIMO, this will finally end up
2740 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
2741 if (is_mimo(tbl_type.lq_type))
2742 lq_cmd->general_params.mimo_delimiter = index;
2743
2744 /* Get next rate */
2745 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2746 use_ht_possible);
2747
2748 /* How many times should we repeat the next rate? */
2749 if (is_legacy(tbl_type.lq_type)) {
2750 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2751 ant_toggle_cnt++;
2752 else if (priv &&
2753 rs_toggle_antenna(valid_tx_ant,
2754 &new_rate, &tbl_type))
2755 ant_toggle_cnt = 1;
2756
2757 repeat_rate = IWL_NUMBER_TRY;
2758 } else {
2759 repeat_rate = IWL_HT_NUMBER_TRY;
2760 }
2761
2762 /* Don't allow HT rates after next pass.
2763 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
2764 use_ht_possible = 0;
2765
2766 /* Override next rate if needed for debug purposes */
2767 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
2768
2769 /* Fill next table entry */
2770 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
2771
2772 index++;
2773 repeat_rate--;
2774 }
2775
2776 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_MAX;
2777 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2778 lq_cmd->agg_params.agg_time_limit =
2779 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
2780 }
2781
2782 static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
2783 {
2784 return hw->priv;
2785 }
2786 /* rate scale requires free function to be implemented */
2787 static void rs_free(void *priv_rate)
2788 {
2789 return;
2790 }
2791
2792 static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2793 void *priv_sta)
2794 {
2795 struct iwl_lq_sta *lq_sta = priv_sta;
2796 struct iwl_priv *priv __maybe_unused = priv_r;
2797
2798 IWL_DEBUG_RATE(priv, "enter\n");
2799 kfree(lq_sta);
2800 IWL_DEBUG_RATE(priv, "leave\n");
2801 }
2802
2803
2804 #ifdef CONFIG_MAC80211_DEBUGFS
2805 static int open_file_generic(struct inode *inode, struct file *file)
2806 {
2807 file->private_data = inode->i_private;
2808 return 0;
2809 }
2810 static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2811 u32 *rate_n_flags, int index)
2812 {
2813 struct iwl_priv *priv;
2814 u8 valid_tx_ant;
2815 u8 ant_sel_tx;
2816
2817 priv = lq_sta->drv;
2818 valid_tx_ant = priv->hw_params.valid_tx_ant;
2819 if (lq_sta->dbg_fixed_rate) {
2820 ant_sel_tx =
2821 ((lq_sta->dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK)
2822 >> RATE_MCS_ANT_POS);
2823 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
2824 *rate_n_flags = lq_sta->dbg_fixed_rate;
2825 IWL_DEBUG_RATE(priv, "Fixed rate ON\n");
2826 } else {
2827 lq_sta->dbg_fixed_rate = 0;
2828 IWL_ERR(priv,
2829 "Invalid antenna selection 0x%X, Valid is 0x%X\n",
2830 ant_sel_tx, valid_tx_ant);
2831 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
2832 }
2833 } else {
2834 IWL_DEBUG_RATE(priv, "Fixed rate OFF\n");
2835 }
2836 }
2837
2838 static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2839 const char __user *user_buf, size_t count, loff_t *ppos)
2840 {
2841 struct iwl_lq_sta *lq_sta = file->private_data;
2842 struct iwl_priv *priv;
2843 char buf[64];
2844 int buf_size;
2845 u32 parsed_rate;
2846
2847 priv = lq_sta->drv;
2848 memset(buf, 0, sizeof(buf));
2849 buf_size = min(count, sizeof(buf) - 1);
2850 if (copy_from_user(buf, user_buf, buf_size))
2851 return -EFAULT;
2852
2853 if (sscanf(buf, "%x", &parsed_rate) == 1)
2854 lq_sta->dbg_fixed_rate = parsed_rate;
2855 else
2856 lq_sta->dbg_fixed_rate = 0;
2857
2858 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2859 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2860 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2861 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2862
2863 IWL_DEBUG_RATE(priv, "sta_id %d rate 0x%X\n",
2864 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
2865
2866 if (lq_sta->dbg_fixed_rate) {
2867 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
2868 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC);
2869 }
2870
2871 return count;
2872 }
2873
2874 static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2875 char __user *user_buf, size_t count, loff_t *ppos)
2876 {
2877 char *buff;
2878 int desc = 0;
2879 int i = 0;
2880 int index = 0;
2881 ssize_t ret;
2882
2883 struct iwl_lq_sta *lq_sta = file->private_data;
2884 struct iwl_priv *priv;
2885 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2886
2887 priv = lq_sta->drv;
2888 buff = kmalloc(1024, GFP_KERNEL);
2889 if (!buff)
2890 return -ENOMEM;
2891
2892 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
2893 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
2894 lq_sta->total_failed, lq_sta->total_success,
2895 lq_sta->active_legacy_rate);
2896 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
2897 lq_sta->dbg_fixed_rate);
2898 desc += sprintf(buff+desc, "valid_tx_ant %s%s%s\n",
2899 (priv->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2900 (priv->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2901 (priv->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
2902 desc += sprintf(buff+desc, "lq type %s\n",
2903 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2904 if (is_Ht(tbl->lq_type)) {
2905 desc += sprintf(buff+desc, " %s",
2906 (is_siso(tbl->lq_type)) ? "SISO" :
2907 ((is_mimo2(tbl->lq_type)) ? "MIMO2" : "MIMO3"));
2908 desc += sprintf(buff+desc, " %s",
2909 (tbl->is_fat) ? "40MHz" : "20MHz");
2910 desc += sprintf(buff+desc, " %s %s\n", (tbl->is_SGI) ? "SGI" : "",
2911 (lq_sta->is_green) ? "GF enabled" : "");
2912 }
2913 desc += sprintf(buff+desc, "last tx rate=0x%X\n",
2914 lq_sta->last_rate_n_flags);
2915 desc += sprintf(buff+desc, "general:"
2916 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
2917 lq_sta->lq.general_params.flags,
2918 lq_sta->lq.general_params.mimo_delimiter,
2919 lq_sta->lq.general_params.single_stream_ant_msk,
2920 lq_sta->lq.general_params.dual_stream_ant_msk);
2921
2922 desc += sprintf(buff+desc, "agg:"
2923 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
2924 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2925 lq_sta->lq.agg_params.agg_dis_start_th,
2926 lq_sta->lq.agg_params.agg_frame_cnt_limit);
2927
2928 desc += sprintf(buff+desc,
2929 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
2930 lq_sta->lq.general_params.start_rate_index[0],
2931 lq_sta->lq.general_params.start_rate_index[1],
2932 lq_sta->lq.general_params.start_rate_index[2],
2933 lq_sta->lq.general_params.start_rate_index[3]);
2934
2935 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2936 index = iwl_hwrate_to_plcp_idx(
2937 le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
2938 if (is_legacy(tbl->lq_type)) {
2939 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps\n",
2940 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2941 iwl_rate_mcs[index].mbps);
2942 } else {
2943 desc += sprintf(buff+desc, " rate[%d] 0x%X %smbps (%s)\n",
2944 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags),
2945 iwl_rate_mcs[index].mbps, iwl_rate_mcs[index].mcs);
2946 }
2947 }
2948
2949 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2950 kfree(buff);
2951 return ret;
2952 }
2953
2954 static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
2955 .write = rs_sta_dbgfs_scale_table_write,
2956 .read = rs_sta_dbgfs_scale_table_read,
2957 .open = open_file_generic,
2958 };
2959 static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2960 char __user *user_buf, size_t count, loff_t *ppos)
2961 {
2962 char *buff;
2963 int desc = 0;
2964 int i, j;
2965 ssize_t ret;
2966
2967 struct iwl_lq_sta *lq_sta = file->private_data;
2968
2969 buff = kmalloc(1024, GFP_KERNEL);
2970 if (!buff)
2971 return -ENOMEM;
2972
2973 for (i = 0; i < LQ_SIZE; i++) {
2974 desc += sprintf(buff+desc, "%s type=%d SGI=%d FAT=%d DUP=%d GF=%d\n"
2975 "rate=0x%X\n",
2976 lq_sta->active_tbl == i ? "*" : "x",
2977 lq_sta->lq_info[i].lq_type,
2978 lq_sta->lq_info[i].is_SGI,
2979 lq_sta->lq_info[i].is_fat,
2980 lq_sta->lq_info[i].is_dup,
2981 lq_sta->is_green,
2982 lq_sta->lq_info[i].current_rate);
2983 for (j = 0; j < IWL_RATE_COUNT; j++) {
2984 desc += sprintf(buff+desc,
2985 "counter=%d success=%d %%=%d\n",
2986 lq_sta->lq_info[i].win[j].counter,
2987 lq_sta->lq_info[i].win[j].success_counter,
2988 lq_sta->lq_info[i].win[j].success_ratio);
2989 }
2990 }
2991 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2992 kfree(buff);
2993 return ret;
2994 }
2995
2996 static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2997 .read = rs_sta_dbgfs_stats_table_read,
2998 .open = open_file_generic,
2999 };
3000
3001 static ssize_t rs_sta_dbgfs_rate_scale_data_read(struct file *file,
3002 char __user *user_buf, size_t count, loff_t *ppos)
3003 {
3004 char buff[120];
3005 int desc = 0;
3006 ssize_t ret;
3007
3008 struct iwl_lq_sta *lq_sta = file->private_data;
3009 struct iwl_priv *priv;
3010 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
3011
3012 priv = lq_sta->drv;
3013
3014 if (is_Ht(tbl->lq_type))
3015 desc += sprintf(buff+desc,
3016 "Bit Rate= %d Mb/s\n",
3017 tbl->expected_tpt[lq_sta->last_txrate_idx]);
3018 else
3019 desc += sprintf(buff+desc,
3020 "Bit Rate= %d Mb/s\n",
3021 iwl_rates[lq_sta->last_txrate_idx].ieee >> 1);
3022 desc += sprintf(buff+desc,
3023 "Signal Level= %d dBm\tNoise Level= %d dBm\n",
3024 priv->last_rx_rssi, priv->last_rx_noise);
3025 desc += sprintf(buff+desc,
3026 "Tsf= 0x%llx\tBeacon time= 0x%08X\n",
3027 priv->last_tsf, priv->last_beacon_time);
3028
3029 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
3030 return ret;
3031 }
3032
3033 static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
3034 .read = rs_sta_dbgfs_rate_scale_data_read,
3035 .open = open_file_generic,
3036 };
3037
3038 static void rs_add_debugfs(void *priv, void *priv_sta,
3039 struct dentry *dir)
3040 {
3041 struct iwl_lq_sta *lq_sta = priv_sta;
3042 lq_sta->rs_sta_dbgfs_scale_table_file =
3043 debugfs_create_file("rate_scale_table", 0600, dir,
3044 lq_sta, &rs_sta_dbgfs_scale_table_ops);
3045 lq_sta->rs_sta_dbgfs_stats_table_file =
3046 debugfs_create_file("rate_stats_table", 0600, dir,
3047 lq_sta, &rs_sta_dbgfs_stats_table_ops);
3048 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
3049 debugfs_create_file("rate_scale_data", 0600, dir,
3050 lq_sta, &rs_sta_dbgfs_rate_scale_data_ops);
3051 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
3052 debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
3053 &lq_sta->tx_agg_tid_en);
3054
3055 }
3056
3057 static void rs_remove_debugfs(void *priv, void *priv_sta)
3058 {
3059 struct iwl_lq_sta *lq_sta = priv_sta;
3060 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
3061 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
3062 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
3063 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
3064 }
3065 #endif
3066
3067 static struct rate_control_ops rs_ops = {
3068 .module = NULL,
3069 .name = RS_NAME,
3070 .tx_status = rs_tx_status,
3071 .get_rate = rs_get_rate,
3072 .rate_init = rs_rate_init,
3073 .alloc = rs_alloc,
3074 .free = rs_free,
3075 .alloc_sta = rs_alloc_sta,
3076 .free_sta = rs_free_sta,
3077 #ifdef CONFIG_MAC80211_DEBUGFS
3078 .add_sta_debugfs = rs_add_debugfs,
3079 .remove_sta_debugfs = rs_remove_debugfs,
3080 #endif
3081 };
3082
3083 int iwlagn_rate_control_register(void)
3084 {
3085 return ieee80211_rate_control_register(&rs_ops);
3086 }
3087
3088 void iwlagn_rate_control_unregister(void)
3089 {
3090 ieee80211_rate_control_unregister(&rs_ops);
3091 }
3092