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