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