4965-rs.c 80.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/******************************************************************************
 *
 * Copyright(c) 2005 - 2011 Intel Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 * The full GNU General Public License is included in this distribution in the
 * file called LICENSE.
 *
 * Contact Information:
 *  Intel Linux Wireless <ilw@linux.intel.com>
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 *
 *****************************************************************************/
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <net/mac80211.h>

#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/delay.h>

#include <linux/workqueue.h>

37
#include "common.h"
38
#include "4965.h"
39

40
#define IL4965_RS_NAME "iwl-4965-rs"
41 42

#define NUM_TRY_BEFORE_ANT_TOGGLE 1
S
Stanislaw Gruszka 已提交
43 44
#define IL_NUMBER_TRY      1
#define IL_HT_NUMBER_TRY   3
45

S
Stanislaw Gruszka 已提交
46 47 48
#define RATE_MAX_WINDOW		62	/* # tx in history win */
#define RATE_MIN_FAILURE_TH		6	/* min failures to calc tpt */
#define RATE_MIN_SUCCESS_TH		8	/* min successes to calc tpt */
49 50

/* max allowed rate miss before sync LQ cmd */
S
Stanislaw Gruszka 已提交
51
#define IL_MISSED_RATE_MAX		15
52
/* max time to accum history 2 seconds */
S
Stanislaw Gruszka 已提交
53
#define RATE_SCALE_FLUSH_INTVL   (3*HZ)
54 55

static u8 rs_ht_to_legacy[] = {
S
Stanislaw Gruszka 已提交
56 57 58 59 60 61 62
	RATE_6M_IDX, RATE_6M_IDX,
	RATE_6M_IDX, RATE_6M_IDX,
	RATE_6M_IDX,
	RATE_6M_IDX, RATE_9M_IDX,
	RATE_12M_IDX, RATE_18M_IDX,
	RATE_24M_IDX, RATE_36M_IDX,
	RATE_48M_IDX, RATE_54M_IDX
63 64 65 66 67 68 69 70 71 72 73 74 75
};

static const u8 ant_toggle_lookup[] = {
	/*ANT_NONE -> */ ANT_NONE,
	/*ANT_A    -> */ ANT_B,
	/*ANT_B    -> */ ANT_C,
	/*ANT_AB   -> */ ANT_BC,
	/*ANT_C    -> */ ANT_A,
	/*ANT_AC   -> */ ANT_AB,
	/*ANT_BC   -> */ ANT_AC,
	/*ANT_ABC  -> */ ANT_ABC,
};

S
Stanislaw Gruszka 已提交
76
#define IL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np)    \
S
Stanislaw Gruszka 已提交
77
	[RATE_##r##M_IDX] = { RATE_##r##M_PLCP,      \
S
Stanislaw Gruszka 已提交
78 79 80
				    RATE_SISO_##s##M_PLCP, \
				    RATE_MIMO2_##s##M_PLCP,\
				    RATE_##r##M_IEEE,      \
S
Stanislaw Gruszka 已提交
81 82 83 84 85 86
				    RATE_##ip##M_IDX,    \
				    RATE_##in##M_IDX,    \
				    RATE_##rp##M_IDX,    \
				    RATE_##rn##M_IDX,    \
				    RATE_##pp##M_IDX,    \
				    RATE_##np##M_IDX }
87 88 89 90 91 92

/*
 * Parameter order:
 *   rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
 *
 * If there isn't a valid next or previous rate then INV is used which
S
Stanislaw Gruszka 已提交
93
 * maps to RATE_INVALID
94 95
 *
 */
S
Stanislaw Gruszka 已提交
96
const struct il_rate_info il_rates[RATE_COUNT] = {
97
	IL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2),	/*  1mbps */
S
Stanislaw Gruszka 已提交
98
	IL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5),		/*  2mbps */
99 100
	IL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11),	/*5.5mbps */
	IL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18),	/* 11mbps */
S
Stanislaw Gruszka 已提交
101
	IL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11),		/*  6mbps */
102 103 104 105 106 107
	IL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11),	/*  9mbps */
	IL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18),	/* 12mbps */
	IL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24),	/* 18mbps */
	IL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36),	/* 24mbps */
	IL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48),	/* 36mbps */
	IL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54),	/* 48mbps */
S
Stanislaw Gruszka 已提交
108 109
	IL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
	IL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
110 111
};

112 113
static int
il4965_hwrate_to_plcp_idx(u32 rate_n_flags)
114 115 116 117 118 119 120
{
	int idx = 0;

	/* HT rate format */
	if (rate_n_flags & RATE_MCS_HT_MSK) {
		idx = (rate_n_flags & 0xff);

S
Stanislaw Gruszka 已提交
121 122
		if (idx >= RATE_MIMO2_6M_PLCP)
			idx = idx - RATE_MIMO2_6M_PLCP;
123

S
Stanislaw Gruszka 已提交
124
		idx += IL_FIRST_OFDM_RATE;
125
		/* skip 9M not supported in ht */
S
Stanislaw Gruszka 已提交
126
		if (idx >= RATE_9M_IDX)
127
			idx += 1;
128
		if (idx >= IL_FIRST_OFDM_RATE && idx <= IL_LAST_OFDM_RATE)
129 130
			return idx;

131
		/* legacy rate format, search for match in table */
132
	} else {
133 134
		for (idx = 0; idx < ARRAY_SIZE(il_rates); idx++)
			if (il_rates[idx].plcp == (rate_n_flags & 0xFF))
135 136 137 138 139 140
				return idx;
	}

	return -1;
}

S
Stanislaw Gruszka 已提交
141
static void il4965_rs_rate_scale_perform(struct il_priv *il,
142 143 144
					 struct sk_buff *skb,
					 struct ieee80211_sta *sta,
					 struct il_lq_sta *lq_sta);
S
Stanislaw Gruszka 已提交
145
static void il4965_rs_fill_link_cmd(struct il_priv *il,
146
				    struct il_lq_sta *lq_sta, u32 rate_n_flags);
S
Stanislaw Gruszka 已提交
147
static void il4965_rs_stay_in_table(struct il_lq_sta *lq_sta,
148
				    bool force_search);
149 150

#ifdef CONFIG_MAC80211_DEBUGFS
S
Stanislaw Gruszka 已提交
151
static void il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta,
S
Stanislaw Gruszka 已提交
152
				    u32 *rate_n_flags, int idx);
153
#else
154 155 156 157
static void
il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
{
}
158 159 160 161 162 163 164 165 166 167 168 169 170
#endif

/**
 * The following tables contain the expected throughput metrics for all rates
 *
 *	1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
 *
 * where invalid entries are zeros.
 *
 * CCK rates are only valid in legacy table and will only be used in G
 * (2.4 GHz) band.
 */

S
Stanislaw Gruszka 已提交
171
static s32 expected_tpt_legacy[RATE_COUNT] = {
172 173 174
	7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
};

S
Stanislaw Gruszka 已提交
175
static s32 expected_tpt_siso20MHz[4][RATE_COUNT] = {
176 177 178 179
	{0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202},	/* Norm */
	{0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210},	/* SGI */
	{0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381},	/* AGG */
	{0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413},	/* AGG+SGI */
180 181
};

S
Stanislaw Gruszka 已提交
182
static s32 expected_tpt_siso40MHz[4][RATE_COUNT] = {
183 184 185 186
	{0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257},	/* Norm */
	{0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264},	/* SGI */
	{0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640},	/* AGG */
	{0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683},	/* AGG+SGI */
187 188
};

S
Stanislaw Gruszka 已提交
189
static s32 expected_tpt_mimo2_20MHz[4][RATE_COUNT] = {
190 191 192 193
	{0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250},	/* Norm */
	{0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256},	/* SGI */
	{0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619},	/* AGG */
	{0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660},	/* AGG+SGI */
194 195
};

S
Stanislaw Gruszka 已提交
196
static s32 expected_tpt_mimo2_40MHz[4][RATE_COUNT] = {
197 198 199 200
	{0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289},	/* Norm */
	{0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293},	/* SGI */
	{0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922},	/* AGG */
	{0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966},	/* AGG+SGI */
201 202 203
};

/* mbps, mcs */
S
Stanislaw Gruszka 已提交
204
static const struct il_rate_mcs_info il_rate_mcs[RATE_COUNT] = {
205 206
	{"1", "BPSK DSSS"},
	{"2", "QPSK DSSS"},
207
	{"5.5", "BPSK CCK"},
208 209 210 211 212 213 214 215 216 217
	{"11", "QPSK CCK"},
	{"6", "BPSK 1/2"},
	{"9", "BPSK 1/2"},
	{"12", "QPSK 1/2"},
	{"18", "QPSK 3/4"},
	{"24", "16QAM 1/2"},
	{"36", "16QAM 3/4"},
	{"48", "64QAM 2/3"},
	{"54", "64QAM 3/4"},
	{"60", "64QAM 5/6"},
218 219
};

S
Stanislaw Gruszka 已提交
220
#define MCS_IDX_PER_STREAM	(8)
221

222 223
static inline u8
il4965_rs_extract_rate(u32 rate_n_flags)
224
{
225
	return (u8) (rate_n_flags & 0xFF);
226 227 228
}

static void
S
Stanislaw Gruszka 已提交
229
il4965_rs_rate_scale_clear_win(struct il_rate_scale_data *win)
230
{
S
Stanislaw Gruszka 已提交
231 232 233 234 235 236
	win->data = 0;
	win->success_counter = 0;
	win->success_ratio = IL_INVALID_VALUE;
	win->counter = 0;
	win->average_tpt = IL_INVALID_VALUE;
	win->stamp = 0;
237 238
}

239 240
static inline u8
il4965_rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
241 242 243 244 245
{
	return (ant_type & valid_antenna) == ant_type;
}

/*
S
Stanislaw Gruszka 已提交
246
 *	removes the old data from the stats. All data that is older than
247 248 249
 *	TID_MAX_TIME_DIFF, will be deleted.
 */
static void
S
Stanislaw Gruszka 已提交
250
il4965_rs_tl_rm_old_stats(struct il_traffic_load *tl, u32 curr_time)
251 252 253 254
{
	/* The oldest age we want to keep */
	u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;

255
	while (tl->queue_count && tl->time_stamp < oldest_time) {
256 257 258 259 260 261 262 263 264 265 266 267 268 269
		tl->total -= tl->packet_count[tl->head];
		tl->packet_count[tl->head] = 0;
		tl->time_stamp += TID_QUEUE_CELL_SPACING;
		tl->queue_count--;
		tl->head++;
		if (tl->head >= TID_QUEUE_MAX_SIZE)
			tl->head = 0;
	}
}

/*
 *	increment traffic load value for tid and also remove
 *	any old values if passed the certain time period
 */
270 271
static u8
il4965_rs_tl_add_packet(struct il_lq_sta *lq_data, struct ieee80211_hdr *hdr)
272 273 274
{
	u32 curr_time = jiffies_to_msecs(jiffies);
	u32 time_diff;
S
Stanislaw Gruszka 已提交
275
	s32 idx;
S
Stanislaw Gruszka 已提交
276
	struct il_traffic_load *tl = NULL;
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
	u8 tid;

	if (ieee80211_is_data_qos(hdr->frame_control)) {
		u8 *qc = ieee80211_get_qos_ctl(hdr);
		tid = qc[0] & 0xf;
	} else
		return MAX_TID_COUNT;

	if (unlikely(tid >= TID_MAX_LOAD_COUNT))
		return MAX_TID_COUNT;

	tl = &lq_data->load[tid];

	curr_time -= curr_time % TID_ROUND_VALUE;

	/* Happens only for the first packet. Initialize the data */
	if (!(tl->queue_count)) {
		tl->total = 1;
		tl->time_stamp = curr_time;
		tl->queue_count = 1;
		tl->head = 0;
		tl->packet_count[0] = 1;
		return MAX_TID_COUNT;
	}

	time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
S
Stanislaw Gruszka 已提交
303
	idx = time_diff / TID_QUEUE_CELL_SPACING;
304 305 306

	/* The history is too long: remove data that is older than */
	/* TID_MAX_TIME_DIFF */
S
Stanislaw Gruszka 已提交
307
	if (idx >= TID_QUEUE_MAX_SIZE)
S
Stanislaw Gruszka 已提交
308
		il4965_rs_tl_rm_old_stats(tl, curr_time);
309

S
Stanislaw Gruszka 已提交
310 311
	idx = (tl->head + idx) % TID_QUEUE_MAX_SIZE;
	tl->packet_count[idx] = tl->packet_count[idx] + 1;
312 313
	tl->total = tl->total + 1;

S
Stanislaw Gruszka 已提交
314 315
	if ((idx + 1) > tl->queue_count)
		tl->queue_count = idx + 1;
316 317 318 319 320 321 322

	return tid;
}

/*
	get the traffic load value for tid
*/
323 324
static u32
il4965_rs_tl_get_load(struct il_lq_sta *lq_data, u8 tid)
325 326 327
{
	u32 curr_time = jiffies_to_msecs(jiffies);
	u32 time_diff;
S
Stanislaw Gruszka 已提交
328
	s32 idx;
S
Stanislaw Gruszka 已提交
329
	struct il_traffic_load *tl = NULL;
330 331 332 333 334 335 336 337 338 339 340 341

	if (tid >= TID_MAX_LOAD_COUNT)
		return 0;

	tl = &(lq_data->load[tid]);

	curr_time -= curr_time % TID_ROUND_VALUE;

	if (!(tl->queue_count))
		return 0;

	time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
S
Stanislaw Gruszka 已提交
342
	idx = time_diff / TID_QUEUE_CELL_SPACING;
343 344 345

	/* The history is too long: remove data that is older than */
	/* TID_MAX_TIME_DIFF */
S
Stanislaw Gruszka 已提交
346
	if (idx >= TID_QUEUE_MAX_SIZE)
S
Stanislaw Gruszka 已提交
347
		il4965_rs_tl_rm_old_stats(tl, curr_time);
348 349 350 351

	return tl->total;
}

352 353 354
static int
il4965_rs_tl_turn_on_agg_for_tid(struct il_priv *il, struct il_lq_sta *lq_data,
				 u8 tid, struct ieee80211_sta *sta)
355 356 357 358
{
	int ret = -EAGAIN;
	u32 load;

S
Stanislaw Gruszka 已提交
359
	load = il4965_rs_tl_get_load(lq_data, tid);
360

S
Stanislaw Gruszka 已提交
361
	if (load > IL_AGG_LOAD_THRESHOLD) {
362
		D_HT("Starting Tx agg: STA: %pM tid: %d\n", sta->addr, tid);
363 364 365 366 367 368 369
		ret = ieee80211_start_tx_ba_session(sta, tid, 5000);
		if (ret == -EAGAIN) {
			/*
			 * driver and mac80211 is out of sync
			 * this might be cause by reloading firmware
			 * stop the tx ba session here
			 */
370
			IL_ERR("Fail start Tx agg on tid: %d\n", tid);
371 372
			ieee80211_stop_tx_ba_session(sta, tid);
		}
373 374 375 376
	} else
		D_HT("Aggregation not enabled for tid %d because load = %u\n",
		     tid, load);

377 378 379
	return ret;
}

380 381 382
static void
il4965_rs_tl_turn_on_agg(struct il_priv *il, u8 tid, struct il_lq_sta *lq_data,
			 struct ieee80211_sta *sta)
383 384
{
	if (tid < TID_MAX_LOAD_COUNT)
S
Stanislaw Gruszka 已提交
385
		il4965_rs_tl_turn_on_agg_for_tid(il, lq_data, tid, sta);
386
	else
387 388
		IL_ERR("tid exceeds max load count: %d/%d\n", tid,
		       TID_MAX_LOAD_COUNT);
389 390
}

391 392
static inline int
il4965_get_il4965_num_of_ant_from_rate(u32 rate_n_flags)
393 394
{
	return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
395 396
	    !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
	    !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
397 398 399
}

/*
S
Stanislaw Gruszka 已提交
400
 * Static function to get the expected throughput from an il_scale_tbl_info
401 402 403
 * that wraps a NULL pointer check
 */
static s32
S
Stanislaw Gruszka 已提交
404
il4965_get_expected_tpt(struct il_scale_tbl_info *tbl, int rs_idx)
405 406
{
	if (tbl->expected_tpt)
S
Stanislaw Gruszka 已提交
407
		return tbl->expected_tpt[rs_idx];
408 409 410 411
	return 0;
}

/**
S
Stanislaw Gruszka 已提交
412
 * il4965_rs_collect_tx_data - Update the success/failure sliding win
413
 *
S
Stanislaw Gruszka 已提交
414 415
 * We keep a sliding win of the last 62 packets transmitted
 * at this rate.  win->data contains the bitmask of successful
416 417
 * packets.
 */
418 419 420
static int
il4965_rs_collect_tx_data(struct il_scale_tbl_info *tbl, int scale_idx,
			  int attempts, int successes)
421
{
S
Stanislaw Gruszka 已提交
422
	struct il_rate_scale_data *win = NULL;
423
	static const u64 mask = (((u64) 1) << (RATE_MAX_WINDOW - 1));
424 425
	s32 fail_count, tpt;

S
Stanislaw Gruszka 已提交
426
	if (scale_idx < 0 || scale_idx >= RATE_COUNT)
427 428
		return -EINVAL;

S
Stanislaw Gruszka 已提交
429
	/* Select win for current tx bit rate */
S
Stanislaw Gruszka 已提交
430
	win = &(tbl->win[scale_idx]);
431 432

	/* Get expected throughput */
S
Stanislaw Gruszka 已提交
433
	tpt = il4965_get_expected_tpt(tbl, scale_idx);
434 435 436

	/*
	 * Keep track of only the latest 62 tx frame attempts in this rate's
S
Stanislaw Gruszka 已提交
437 438
	 * history win; anything older isn't really relevant any more.
	 * If we have filled up the sliding win, drop the oldest attempt;
439 440 441 442 443
	 * if the oldest attempt (highest bit in bitmap) shows "success",
	 * subtract "1" from the success counter (this is the main reason
	 * we keep these bitmaps!).
	 */
	while (attempts > 0) {
S
Stanislaw Gruszka 已提交
444
		if (win->counter >= RATE_MAX_WINDOW) {
445 446

			/* remove earliest */
S
Stanislaw Gruszka 已提交
447
			win->counter = RATE_MAX_WINDOW - 1;
448

S
Stanislaw Gruszka 已提交
449 450 451
			if (win->data & mask) {
				win->data &= ~mask;
				win->success_counter--;
452 453 454 455
			}
		}

		/* Increment frames-attempted counter */
S
Stanislaw Gruszka 已提交
456
		win->counter++;
457 458

		/* Shift bitmap by one frame to throw away oldest history */
S
Stanislaw Gruszka 已提交
459
		win->data <<= 1;
460 461 462

		/* Mark the most recent #successes attempts as successful */
		if (successes > 0) {
S
Stanislaw Gruszka 已提交
463 464
			win->success_counter++;
			win->data |= 0x1;
465 466 467 468 469 470 471
			successes--;
		}

		attempts--;
	}

	/* Calculate current success ratio, avoid divide-by-0! */
S
Stanislaw Gruszka 已提交
472
	if (win->counter > 0)
473 474
		win->success_ratio =
		    128 * (100 * win->success_counter) / win->counter;
475
	else
S
Stanislaw Gruszka 已提交
476
		win->success_ratio = IL_INVALID_VALUE;
477

S
Stanislaw Gruszka 已提交
478
	fail_count = win->counter - win->success_counter;
479 480

	/* Calculate average throughput, if we have enough history. */
S
Stanislaw Gruszka 已提交
481 482
	if (fail_count >= RATE_MIN_FAILURE_TH ||
	    win->success_counter >= RATE_MIN_SUCCESS_TH)
S
Stanislaw Gruszka 已提交
483
		win->average_tpt = (win->success_ratio * tpt + 64) / 128;
484
	else
S
Stanislaw Gruszka 已提交
485
		win->average_tpt = IL_INVALID_VALUE;
486

S
Stanislaw Gruszka 已提交
487 488
	/* Tag this win as having been updated */
	win->stamp = jiffies;
489 490 491 492 493 494 495

	return 0;
}

/*
 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
 */
496 497 498
static u32
il4965_rate_n_flags_from_tbl(struct il_priv *il, struct il_scale_tbl_info *tbl,
			     int idx, u8 use_green)
499 500 501 502
{
	u32 rate_n_flags = 0;

	if (is_legacy(tbl->lq_type)) {
S
Stanislaw Gruszka 已提交
503 504
		rate_n_flags = il_rates[idx].plcp;
		if (idx >= IL_FIRST_CCK_RATE && idx <= IL_LAST_CCK_RATE)
505 506 507
			rate_n_flags |= RATE_MCS_CCK_MSK;

	} else if (is_Ht(tbl->lq_type)) {
S
Stanislaw Gruszka 已提交
508 509 510
		if (idx > IL_LAST_OFDM_RATE) {
			IL_ERR("Invalid HT rate idx %d\n", idx);
			idx = IL_LAST_OFDM_RATE;
511 512 513 514
		}
		rate_n_flags = RATE_MCS_HT_MSK;

		if (is_siso(tbl->lq_type))
515
			rate_n_flags |= il_rates[idx].plcp_siso;
516
		else
517
			rate_n_flags |= il_rates[idx].plcp_mimo2;
518
	} else {
519
		IL_ERR("Invalid tbl->lq_type %d\n", tbl->lq_type);
520 521
	}

522 523
	rate_n_flags |=
	    ((tbl->ant_type << RATE_MCS_ANT_POS) & RATE_MCS_ANT_ABC_MSK);
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538

	if (is_Ht(tbl->lq_type)) {
		if (tbl->is_ht40) {
			if (tbl->is_dup)
				rate_n_flags |= RATE_MCS_DUP_MSK;
			else
				rate_n_flags |= RATE_MCS_HT40_MSK;
		}
		if (tbl->is_SGI)
			rate_n_flags |= RATE_MCS_SGI_MSK;

		if (use_green) {
			rate_n_flags |= RATE_MCS_GF_MSK;
			if (is_siso(tbl->lq_type) && tbl->is_SGI) {
				rate_n_flags &= ~RATE_MCS_SGI_MSK;
539
				IL_ERR("GF was set with SGI:SISO\n");
540 541 542 543 544 545 546 547 548 549
			}
		}
	}
	return rate_n_flags;
}

/*
 * Interpret uCode API's rate_n_flags format,
 * fill "search" or "active" tx mode table.
 */
550 551 552 553
static int
il4965_rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
				enum ieee80211_band band,
				struct il_scale_tbl_info *tbl, int *rate_idx)
554 555
{
	u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
556 557
	u8 il4965_num_of_ant =
	    il4965_get_il4965_num_of_ant_from_rate(rate_n_flags);
558 559
	u8 mcs;

S
Stanislaw Gruszka 已提交
560 561
	memset(tbl, 0, sizeof(struct il_scale_tbl_info));
	*rate_idx = il4965_hwrate_to_plcp_idx(rate_n_flags);
562

563
	if (*rate_idx == RATE_INVALID) {
564 565 566 567 568 569 570 571
		*rate_idx = -1;
		return -EINVAL;
	}
	tbl->is_SGI = 0;	/* default legacy setup */
	tbl->is_ht40 = 0;
	tbl->is_dup = 0;
	tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
	tbl->lq_type = LQ_NONE;
S
Stanislaw Gruszka 已提交
572
	tbl->max_search = IL_MAX_SEARCH;
573 574 575

	/* legacy rate format */
	if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
S
Stanislaw Gruszka 已提交
576
		if (il4965_num_of_ant == 1) {
577 578 579 580 581
			if (band == IEEE80211_BAND_5GHZ)
				tbl->lq_type = LQ_A;
			else
				tbl->lq_type = LQ_G;
		}
582
		/* HT rate format */
583 584 585 586 587 588 589 590 591 592 593
	} else {
		if (rate_n_flags & RATE_MCS_SGI_MSK)
			tbl->is_SGI = 1;

		if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
		    (rate_n_flags & RATE_MCS_DUP_MSK))
			tbl->is_ht40 = 1;

		if (rate_n_flags & RATE_MCS_DUP_MSK)
			tbl->is_dup = 1;

S
Stanislaw Gruszka 已提交
594
		mcs = il4965_rs_extract_rate(rate_n_flags);
595 596

		/* SISO */
S
Stanislaw Gruszka 已提交
597
		if (mcs <= RATE_SISO_60M_PLCP) {
S
Stanislaw Gruszka 已提交
598
			if (il4965_num_of_ant == 1)
599 600
				tbl->lq_type = LQ_SISO;	/*else NONE */
			/* MIMO2 */
601
		} else {
S
Stanislaw Gruszka 已提交
602
			if (il4965_num_of_ant == 2)
603 604 605 606 607 608 609 610
				tbl->lq_type = LQ_MIMO2;
		}
	}
	return 0;
}

/* switch to another antenna/antennas and return 1 */
/* if no other valid antenna found, return 0 */
611
static int
S
Stanislaw Gruszka 已提交
612
il4965_rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
613
			 struct il_scale_tbl_info *tbl)
614 615 616 617 618 619
{
	u8 new_ant_type;

	if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
		return 0;

S
Stanislaw Gruszka 已提交
620
	if (!il4965_rs_is_valid_ant(valid_ant, tbl->ant_type))
621 622 623 624
		return 0;

	new_ant_type = ant_toggle_lookup[tbl->ant_type];

625
	while (new_ant_type != tbl->ant_type &&
S
Stanislaw Gruszka 已提交
626
	       !il4965_rs_is_valid_ant(valid_ant, new_ant_type))
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
		new_ant_type = ant_toggle_lookup[new_ant_type];

	if (new_ant_type == tbl->ant_type)
		return 0;

	tbl->ant_type = new_ant_type;
	*rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
	*rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
	return 1;
}

/**
 * Green-field mode is valid if the station supports it and
 * there are no non-GF stations present in the BSS.
 */
642
static bool
643
il4965_rs_use_green(struct il_priv *il, struct ieee80211_sta *sta)
644 645
{
	return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
646
	       !il->ht.non_gf_sta_present;
647 648 649
}

/**
S
Stanislaw Gruszka 已提交
650
 * il4965_rs_get_supported_rates - get the available rates
651 652 653 654 655
 *
 * if management frame or broadcast frame only return
 * basic available rates.
 *
 */
656 657 658 659
static u16
il4965_rs_get_supported_rates(struct il_lq_sta *lq_sta,
			      struct ieee80211_hdr *hdr,
			      enum il_table_type rate_type)
660 661 662 663 664 665 666 667 668 669 670 671
{
	if (is_legacy(rate_type)) {
		return lq_sta->active_legacy_rate;
	} else {
		if (is_siso(rate_type))
			return lq_sta->active_siso_rate;
		else
			return lq_sta->active_mimo2_rate;
	}
}

static u16
S
Stanislaw Gruszka 已提交
672
il4965_rs_get_adjacent_rate(struct il_priv *il, u8 idx, u16 rate_mask,
673
			    int rate_type)
674
{
S
Stanislaw Gruszka 已提交
675 676
	u8 high = RATE_INVALID;
	u8 low = RATE_INVALID;
677 678 679 680 681 682 683 684

	/* 802.11A or ht walks to the next literal adjacent rate in
	 * the rate table */
	if (is_a_band(rate_type) || !is_legacy(rate_type)) {
		int i;
		u32 mask;

		/* Find the previous rate that is in the rate mask */
S
Stanislaw Gruszka 已提交
685
		i = idx - 1;
686 687 688 689 690 691 692 693
		for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
			if (rate_mask & mask) {
				low = i;
				break;
			}
		}

		/* Find the next rate that is in the rate mask */
S
Stanislaw Gruszka 已提交
694
		i = idx + 1;
S
Stanislaw Gruszka 已提交
695
		for (mask = (1 << i); i < RATE_COUNT; i++, mask <<= 1) {
696 697 698 699 700 701 702 703 704
			if (rate_mask & mask) {
				high = i;
				break;
			}
		}

		return (high << 8) | low;
	}

S
Stanislaw Gruszka 已提交
705
	low = idx;
S
Stanislaw Gruszka 已提交
706
	while (low != RATE_INVALID) {
707
		low = il_rates[low].prev_rs;
S
Stanislaw Gruszka 已提交
708
		if (low == RATE_INVALID)
709 710 711
			break;
		if (rate_mask & (1 << low))
			break;
712
		D_RATE("Skipping masked lower rate: %d\n", low);
713 714
	}

S
Stanislaw Gruszka 已提交
715
	high = idx;
S
Stanislaw Gruszka 已提交
716
	while (high != RATE_INVALID) {
717
		high = il_rates[high].next_rs;
S
Stanislaw Gruszka 已提交
718
		if (high == RATE_INVALID)
719 720 721
			break;
		if (rate_mask & (1 << high))
			break;
722
		D_RATE("Skipping masked higher rate: %d\n", high);
723 724 725 726 727
	}

	return (high << 8) | low;
}

728 729 730 731
static u32
il4965_rs_get_lower_rate(struct il_lq_sta *lq_sta,
			 struct il_scale_tbl_info *tbl, u8 scale_idx,
			 u8 ht_possible)
732 733 734 735 736 737
{
	s32 low;
	u16 rate_mask;
	u16 high_low;
	u8 switch_to_legacy = 0;
	u8 is_green = lq_sta->is_green;
S
Stanislaw Gruszka 已提交
738
	struct il_priv *il = lq_sta->drv;
739 740 741 742

	/* check if we need to switch from HT to legacy rates.
	 * assumption is that mandatory rates (1Mbps or 6Mbps)
	 * are always supported (spec demand) */
S
Stanislaw Gruszka 已提交
743
	if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_idx)) {
744
		switch_to_legacy = 1;
S
Stanislaw Gruszka 已提交
745
		scale_idx = rs_ht_to_legacy[scale_idx];
746 747 748 749 750
		if (lq_sta->band == IEEE80211_BAND_5GHZ)
			tbl->lq_type = LQ_A;
		else
			tbl->lq_type = LQ_G;

S
Stanislaw Gruszka 已提交
751
		if (il4965_num_of_ant(tbl->ant_type) > 1)
752
			tbl->ant_type =
753
			    il4965_first_antenna(il->hw_params.valid_tx_ant);
754 755 756

		tbl->is_ht40 = 0;
		tbl->is_SGI = 0;
S
Stanislaw Gruszka 已提交
757
		tbl->max_search = IL_MAX_SEARCH;
758 759
	}

S
Stanislaw Gruszka 已提交
760
	rate_mask = il4965_rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
761 762 763 764 765

	/* Mask with station rate restriction */
	if (is_legacy(tbl->lq_type)) {
		/* supp_rates has no CCK bits in A mode */
		if (lq_sta->band == IEEE80211_BAND_5GHZ)
766 767 768
			rate_mask =
			    (u16) (rate_mask &
				   (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
769
		else
770
			rate_mask = (u16) (rate_mask & lq_sta->supp_rates);
771 772 773
	}

	/* If we switched from HT to legacy, check current rate */
S
Stanislaw Gruszka 已提交
774 775
	if (switch_to_legacy && (rate_mask & (1 << scale_idx))) {
		low = scale_idx;
776 777 778
		goto out;
	}

779 780
	high_low =
	    il4965_rs_get_adjacent_rate(lq_sta->drv, scale_idx, rate_mask,
781 782 783
					tbl->lq_type);
	low = high_low & 0xff;

S
Stanislaw Gruszka 已提交
784
	if (low == RATE_INVALID)
S
Stanislaw Gruszka 已提交
785
		low = scale_idx;
786 787

out:
S
Stanislaw Gruszka 已提交
788
	return il4965_rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
789 790 791 792 793
}

/*
 * Simple function to compare two rate scale table types
 */
794 795 796
static bool
il4965_table_type_matches(struct il_scale_tbl_info *a,
			  struct il_scale_tbl_info *b)
797
{
798 799
	return (a->lq_type == b->lq_type && a->ant_type == b->ant_type &&
		a->is_SGI == b->is_SGI);
800 801 802 803 804 805
}

/*
 * mac80211 sends us Tx status
 */
static void
S
Stanislaw Gruszka 已提交
806
il4965_rs_tx_status(void *il_r, struct ieee80211_supported_band *sband,
807 808
		    struct ieee80211_sta *sta, void *il_sta,
		    struct sk_buff *skb)
809 810 811
{
	int legacy_success;
	int retries;
S
Stanislaw Gruszka 已提交
812
	int rs_idx, mac_idx, i;
S
Stanislaw Gruszka 已提交
813
	struct il_lq_sta *lq_sta = il_sta;
S
Stanislaw Gruszka 已提交
814
	struct il_link_quality_cmd *table;
815
	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
S
Stanislaw Gruszka 已提交
816
	struct il_priv *il = (struct il_priv *)il_r;
817 818 819
	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
	enum mac80211_rate_control_flags mac_flags;
	u32 tx_rate;
S
Stanislaw Gruszka 已提交
820 821
	struct il_scale_tbl_info tbl_type;
	struct il_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
822

823
	D_RATE("get frame ack response, update rate scale win\n");
824 825 826

	/* Treat uninitialized rate scaling data same as non-existing. */
	if (!lq_sta) {
827
		D_RATE("Station rate scaling not created yet.\n");
828 829
		return;
	} else if (!lq_sta->drv) {
830
		D_RATE("Rate scaling not initialized yet.\n");
831 832 833 834
		return;
	}

	if (!ieee80211_is_data(hdr->frame_control) ||
835
	    (info->flags & IEEE80211_TX_CTL_NO_ACK))
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
		return;

	/* This packet was aggregated but doesn't carry status info */
	if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
	    !(info->flags & IEEE80211_TX_STAT_AMPDU))
		return;

	/*
	 * Ignore this Tx frame response if its initial rate doesn't match
	 * that of latest Link Quality command.  There may be stragglers
	 * from a previous Link Quality command, but we're no longer interested
	 * in those; they're either from the "active" mode while we're trying
	 * to check "search" mode, or a prior "search" mode after we've moved
	 * to a new "search" mode (which might become the new "active" mode).
	 */
	table = &lq_sta->lq;
	tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
853
	il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type, &rs_idx);
S
Stanislaw Gruszka 已提交
854
	if (il->band == IEEE80211_BAND_5GHZ)
S
Stanislaw Gruszka 已提交
855
		rs_idx -= IL_FIRST_OFDM_RATE;
856
	mac_flags = info->status.rates[0].flags;
S
Stanislaw Gruszka 已提交
857
	mac_idx = info->status.rates[0].idx;
858 859
	/* For HT packets, map MCS to PLCP */
	if (mac_flags & IEEE80211_TX_RC_MCS) {
S
Stanislaw Gruszka 已提交
860 861 862
		mac_idx &= RATE_MCS_CODE_MSK;	/* Remove # of streams */
		if (mac_idx >= (RATE_9M_IDX - IL_FIRST_OFDM_RATE))
			mac_idx++;
863
		/*
S
Stanislaw Gruszka 已提交
864
		 * mac80211 HT idx is always zero-idxed; we need to move
865 866
		 * HT OFDM rates after CCK rates in 2.4 GHz band
		 */
S
Stanislaw Gruszka 已提交
867
		if (il->band == IEEE80211_BAND_2GHZ)
S
Stanislaw Gruszka 已提交
868
			mac_idx += IL_FIRST_OFDM_RATE;
869 870
	}
	/* Here we actually compare this rate to the latest LQ command */
S
Stanislaw Gruszka 已提交
871
	if (mac_idx < 0 ||
872 873 874
	    tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI) ||
	    tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ||
	    tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA) ||
875
	    tbl_type.ant_type != info->status.antenna ||
876 877 878 879 880
	    !!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)
	    || !!(tx_rate & RATE_MCS_GF_MSK) !=
	    !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD) || rs_idx != mac_idx) {
		D_RATE("initial rate %d does not match %d (0x%x)\n", mac_idx,
		       rs_idx, tx_rate);
881 882
		/*
		 * Since rates mis-match, the last LQ command may have failed.
S
Stanislaw Gruszka 已提交
883
		 * After IL_MISSED_RATE_MAX mis-matches, resync the uCode with
884 885 886
		 * ... driver.
		 */
		lq_sta->missed_rate_counter++;
S
Stanislaw Gruszka 已提交
887
		if (lq_sta->missed_rate_counter > IL_MISSED_RATE_MAX) {
888
			lq_sta->missed_rate_counter = 0;
889
			il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
890 891 892 893 894 895 896 897
		}
		/* Regardless, ignore this status info for outdated rate */
		return;
	} else
		/* Rate did match, so reset the missed_rate_counter */
		lq_sta->missed_rate_counter = 0;

	/* Figure out if rate scale algorithm is in active or search table */
898 899
	if (il4965_table_type_matches
	    (&tbl_type, &(lq_sta->lq_info[lq_sta->active_tbl]))) {
900 901
		curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
		other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
902 903 904
	} else
	    if (il4965_table_type_matches
		(&tbl_type, &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
905 906 907
		curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
		other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
	} else {
908
		D_RATE("Neither active nor search matches tx rate\n");
909
		tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
910 911
		D_RATE("active- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
		       tmp_tbl->ant_type, tmp_tbl->is_SGI);
912
		tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
913 914 915 916
		D_RATE("search- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
		       tmp_tbl->ant_type, tmp_tbl->is_SGI);
		D_RATE("actual- lq:%x, ant:%x, SGI:%d\n", tbl_type.lq_type,
		       tbl_type.ant_type, tbl_type.is_SGI);
917 918 919 920
		/*
		 * no matching table found, let's by-pass the data collection
		 * and continue to perform rate scale to find the rate table
		 */
S
Stanislaw Gruszka 已提交
921
		il4965_rs_stay_in_table(lq_sta, true);
922 923 924 925 926 927 928 929
		goto done;
	}

	/*
	 * Updating the frame history depends on whether packets were
	 * aggregated.
	 *
	 * For aggregation, all packets were transmitted at the same rate, the
S
Stanislaw Gruszka 已提交
930
	 * first idx into rate scale table.
931 932 933
	 */
	if (info->flags & IEEE80211_TX_STAT_AMPDU) {
		tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
S
Stanislaw Gruszka 已提交
934
		il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type,
935
						&rs_idx);
S
Stanislaw Gruszka 已提交
936
		il4965_rs_collect_tx_data(curr_tbl, rs_idx,
937 938
					  info->status.ampdu_len,
					  info->status.ampdu_ack_len);
939 940 941 942

		/* Update success/fail counts if not searching for new mode */
		if (lq_sta->stay_in_tbl) {
			lq_sta->total_success += info->status.ampdu_ack_len;
943 944 945
			lq_sta->total_failed +=
			    (info->status.ampdu_len -
			     info->status.ampdu_ack_len);
946 947
		}
	} else {
948 949 950
		/*
		 * For legacy, update frame history with for each Tx retry.
		 */
951 952 953 954 955 956 957 958 959
		retries = info->status.rates[0].count - 1;
		/* HW doesn't send more than 15 retries */
		retries = min(retries, 15);

		/* The last transmission may have been successful */
		legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
		/* Collect data for each rate used during failed TX attempts */
		for (i = 0; i <= retries; ++i) {
			tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
S
Stanislaw Gruszka 已提交
960
			il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band,
961
							&tbl_type, &rs_idx);
962 963 964 965
			/*
			 * Only collect stats if retried rate is in the same RS
			 * table as active/search.
			 */
S
Stanislaw Gruszka 已提交
966
			if (il4965_table_type_matches(&tbl_type, curr_tbl))
967
				tmp_tbl = curr_tbl;
968 969
			else if (il4965_table_type_matches
				 (&tbl_type, other_tbl))
970 971 972
				tmp_tbl = other_tbl;
			else
				continue;
S
Stanislaw Gruszka 已提交
973
			il4965_rs_collect_tx_data(tmp_tbl, rs_idx, 1,
974 975
						  i <
						  retries ? 0 : legacy_success);
976 977 978 979 980 981 982 983 984 985 986 987
		}

		/* Update success/fail counts if not searching for new mode */
		if (lq_sta->stay_in_tbl) {
			lq_sta->total_success += legacy_success;
			lq_sta->total_failed += retries + (1 - legacy_success);
		}
	}
	/* The last TX rate is cached in lq_sta; it's set in if/else above */
	lq_sta->last_rate_n_flags = tx_rate;
done:
	/* See if there's a better rate or modulation mode to try. */
988
	if (sta->supp_rates[sband->band])
S
Stanislaw Gruszka 已提交
989
		il4965_rs_rate_scale_perform(il, skb, sta, lq_sta);
990 991 992 993 994 995
}

/*
 * Begin a period of staying with a selected modulation mode.
 * Set "stay_in_tbl" flag to prevent any mode switches.
 * Set frame tx success limits according to legacy vs. high-throughput,
S
Stanislaw Gruszka 已提交
996
 * and reset overall (spanning all rates) tx success history stats.
997 998 999
 * These control how long we stay using same modulation mode before
 * searching for a new mode.
 */
1000 1001 1002
static void
il4965_rs_set_stay_in_table(struct il_priv *il, u8 is_legacy,
			    struct il_lq_sta *lq_sta)
1003
{
1004
	D_RATE("we are staying in the same table\n");
1005 1006
	lq_sta->stay_in_tbl = 1;	/* only place this gets set */
	if (is_legacy) {
S
Stanislaw Gruszka 已提交
1007
		lq_sta->table_count_limit = IL_LEGACY_TBL_COUNT;
S
Stanislaw Gruszka 已提交
1008 1009
		lq_sta->max_failure_limit = IL_LEGACY_FAILURE_LIMIT;
		lq_sta->max_success_limit = IL_LEGACY_SUCCESS_LIMIT;
1010
	} else {
S
Stanislaw Gruszka 已提交
1011
		lq_sta->table_count_limit = IL_NONE_LEGACY_TBL_COUNT;
S
Stanislaw Gruszka 已提交
1012 1013
		lq_sta->max_failure_limit = IL_NONE_LEGACY_FAILURE_LIMIT;
		lq_sta->max_success_limit = IL_NONE_LEGACY_SUCCESS_LIMIT;
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
	}
	lq_sta->table_count = 0;
	lq_sta->total_failed = 0;
	lq_sta->total_success = 0;
	lq_sta->flush_timer = jiffies;
	lq_sta->action_counter = 0;
}

/*
 * Find correct throughput table for given mode of modulation
 */
1025 1026 1027
static void
il4965_rs_set_expected_tpt_table(struct il_lq_sta *lq_sta,
				 struct il_scale_tbl_info *tbl)
1028 1029
{
	/* Used to choose among HT tables */
1030
	s32(*ht_tbl_pointer)[RATE_COUNT];
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052

	/* Check for invalid LQ type */
	if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
		tbl->expected_tpt = expected_tpt_legacy;
		return;
	}

	/* Legacy rates have only one table */
	if (is_legacy(tbl->lq_type)) {
		tbl->expected_tpt = expected_tpt_legacy;
		return;
	}

	/* Choose among many HT tables depending on number of streams
	 * (SISO/MIMO2), channel width (20/40), SGI, and aggregation
	 * status */
	if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
		ht_tbl_pointer = expected_tpt_siso20MHz;
	else if (is_siso(tbl->lq_type))
		ht_tbl_pointer = expected_tpt_siso40MHz;
	else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
		ht_tbl_pointer = expected_tpt_mimo2_20MHz;
1053
	else			/* if (is_mimo2(tbl->lq_type)) <-- must be true */
1054 1055
		ht_tbl_pointer = expected_tpt_mimo2_40MHz;

1056
	if (!tbl->is_SGI && !lq_sta->is_agg)	/* Normal */
1057 1058 1059 1060 1061
		tbl->expected_tpt = ht_tbl_pointer[0];
	else if (tbl->is_SGI && !lq_sta->is_agg)	/* SGI */
		tbl->expected_tpt = ht_tbl_pointer[1];
	else if (!tbl->is_SGI && lq_sta->is_agg)	/* AGG */
		tbl->expected_tpt = ht_tbl_pointer[2];
1062
	else			/* AGG+SGI */
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
		tbl->expected_tpt = ht_tbl_pointer[3];
}

/*
 * Find starting rate for new "search" high-throughput mode of modulation.
 * Goal is to find lowest expected rate (under perfect conditions) that is
 * above the current measured throughput of "active" mode, to give new mode
 * a fair chance to prove itself without too many challenges.
 *
 * This gets called when transitioning to more aggressive modulation
 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
 * (i.e. MIMO to SISO).  When moving to MIMO, bit rate will typically need
 * to decrease to match "active" throughput.  When moving from MIMO to SISO,
 * bit rate will typically need to increase, but not if performance was bad.
 */
1078
static s32
S
Stanislaw Gruszka 已提交
1079 1080
il4965_rs_get_best_rate(struct il_priv *il, struct il_lq_sta *lq_sta,
			struct il_scale_tbl_info *tbl,	/* "search" */
1081
			u16 rate_mask, s8 idx)
1082 1083
{
	/* "active" values */
S
Stanislaw Gruszka 已提交
1084
	struct il_scale_tbl_info *active_tbl =
1085
	    &(lq_sta->lq_info[lq_sta->active_tbl]);
S
Stanislaw Gruszka 已提交
1086 1087
	s32 active_sr = active_tbl->win[idx].success_ratio;
	s32 active_tpt = active_tbl->expected_tpt[idx];
1088 1089 1090 1091 1092 1093

	/* expected "search" throughput */
	s32 *tpt_tbl = tbl->expected_tpt;

	s32 new_rate, high, low, start_hi;
	u16 high_low;
S
Stanislaw Gruszka 已提交
1094
	s8 rate = idx;
1095

S
Stanislaw Gruszka 已提交
1096
	new_rate = high = low = start_hi = RATE_INVALID;
1097

1098 1099 1100
	for (;;) {
		high_low =
		    il4965_rs_get_adjacent_rate(il, rate, rate_mask,
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
						tbl->lq_type);

		low = high_low & 0xff;
		high = (high_low >> 8) & 0xff;

		/*
		 * Lower the "search" bit rate, to give new "search" mode
		 * approximately the same throughput as "active" if:
		 *
		 * 1) "Active" mode has been working modestly well (but not
		 *    great), and expected "search" throughput (under perfect
		 *    conditions) at candidate rate is above the actual
		 *    measured "active" throughput (but less than expected
		 *    "active" throughput under perfect conditions).
		 * OR
		 * 2) "Active" mode has been working perfectly or very well
		 *    and expected "search" throughput (under perfect
		 *    conditions) at candidate rate is above expected
		 *    "active" throughput (under perfect conditions).
		 */
1121
		if ((100 * tpt_tbl[rate] > lq_sta->last_tpt &&
1122 1123
		     (active_sr > RATE_DECREASE_TH && active_sr <= RATE_HIGH_TH
		      && tpt_tbl[rate] <= active_tpt)) ||
S
Stanislaw Gruszka 已提交
1124
		    (active_sr >= RATE_SCALE_SWITCH &&
1125
		     tpt_tbl[rate] > active_tpt)) {
1126 1127 1128 1129

			/* (2nd or later pass)
			 * If we've already tried to raise the rate, and are
			 * now trying to lower it, use the higher rate. */
S
Stanislaw Gruszka 已提交
1130
			if (start_hi != RATE_INVALID) {
1131 1132 1133 1134 1135 1136 1137
				new_rate = start_hi;
				break;
			}

			new_rate = rate;

			/* Loop again with lower rate */
S
Stanislaw Gruszka 已提交
1138
			if (low != RATE_INVALID)
1139 1140 1141 1142 1143 1144
				rate = low;

			/* Lower rate not available, use the original */
			else
				break;

1145
			/* Else try to raise the "search" rate to match "active" */
1146 1147 1148 1149
		} else {
			/* (2nd or later pass)
			 * If we've already tried to lower the rate, and are
			 * now trying to raise it, use the lower rate. */
S
Stanislaw Gruszka 已提交
1150
			if (new_rate != RATE_INVALID)
1151 1152 1153
				break;

			/* Loop again with higher rate */
S
Stanislaw Gruszka 已提交
1154
			else if (high != RATE_INVALID) {
1155 1156 1157
				start_hi = high;
				rate = high;

1158
				/* Higher rate not available, use the original */
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
			} else {
				new_rate = rate;
				break;
			}
		}
	}

	return new_rate;
}

/*
 * Set up search table for MIMO2
 */
1172 1173 1174 1175 1176
static int
il4965_rs_switch_to_mimo2(struct il_priv *il, struct il_lq_sta *lq_sta,
			  struct ieee80211_conf *conf,
			  struct ieee80211_sta *sta,
			  struct il_scale_tbl_info *tbl, int idx)
1177 1178 1179 1180 1181 1182 1183 1184
{
	u16 rate_mask;
	s32 rate;
	s8 is_green = lq_sta->is_green;

	if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
		return -1;

1185
	if (sta->smps_mode == IEEE80211_SMPS_STATIC)
1186 1187 1188
		return -1;

	/* Need both Tx chains/antennas to support MIMO */
S
Stanislaw Gruszka 已提交
1189
	if (il->hw_params.tx_chains_num < 2)
1190 1191
		return -1;

1192
	D_RATE("LQ: try to switch to MIMO2\n");
1193 1194 1195 1196

	tbl->lq_type = LQ_MIMO2;
	tbl->is_dup = lq_sta->is_dup;
	tbl->action = 0;
S
Stanislaw Gruszka 已提交
1197
	tbl->max_search = IL_MAX_SEARCH;
1198 1199
	rate_mask = lq_sta->active_mimo2_rate;

1200
	if (il_is_ht40_tx_allowed(il, &sta->ht_cap))
1201 1202 1203 1204
		tbl->is_ht40 = 1;
	else
		tbl->is_ht40 = 0;

S
Stanislaw Gruszka 已提交
1205
	il4965_rs_set_expected_tpt_table(lq_sta, tbl);
1206

S
Stanislaw Gruszka 已提交
1207
	rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
1208

1209
	D_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
S
Stanislaw Gruszka 已提交
1210
	if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
1211 1212
		D_RATE("Can't switch with idx %d rate mask %x\n", rate,
		       rate_mask);
1213 1214
		return -1;
	}
1215 1216
	tbl->current_rate =
	    il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
1217

1218 1219
	D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
	       is_green);
1220 1221 1222 1223 1224 1225
	return 0;
}

/*
 * Set up search table for SISO
 */
1226 1227 1228 1229
static int
il4965_rs_switch_to_siso(struct il_priv *il, struct il_lq_sta *lq_sta,
			 struct ieee80211_conf *conf, struct ieee80211_sta *sta,
			 struct il_scale_tbl_info *tbl, int idx)
1230 1231 1232 1233 1234 1235 1236 1237
{
	u16 rate_mask;
	u8 is_green = lq_sta->is_green;
	s32 rate;

	if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
		return -1;

1238
	D_RATE("LQ: try to switch to SISO\n");
1239 1240 1241 1242

	tbl->is_dup = lq_sta->is_dup;
	tbl->lq_type = LQ_SISO;
	tbl->action = 0;
S
Stanislaw Gruszka 已提交
1243
	tbl->max_search = IL_MAX_SEARCH;
1244 1245
	rate_mask = lq_sta->active_siso_rate;

1246
	if (il_is_ht40_tx_allowed(il, &sta->ht_cap))
1247 1248 1249 1250 1251
		tbl->is_ht40 = 1;
	else
		tbl->is_ht40 = 0;

	if (is_green)
1252
		tbl->is_SGI = 0;	/*11n spec: no SGI in SISO+Greenfield */
1253

S
Stanislaw Gruszka 已提交
1254
	il4965_rs_set_expected_tpt_table(lq_sta, tbl);
S
Stanislaw Gruszka 已提交
1255
	rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
1256

1257
	D_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
S
Stanislaw Gruszka 已提交
1258
	if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
1259 1260
		D_RATE("can not switch with idx %d rate mask %x\n", rate,
		       rate_mask);
1261 1262
		return -1;
	}
1263 1264 1265 1266
	tbl->current_rate =
	    il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
	D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
	       is_green);
1267 1268 1269 1270 1271 1272
	return 0;
}

/*
 * Try to switch to new modulation mode from legacy
 */
1273 1274 1275 1276
static int
il4965_rs_move_legacy_other(struct il_priv *il, struct il_lq_sta *lq_sta,
			    struct ieee80211_conf *conf,
			    struct ieee80211_sta *sta, int idx)
1277
{
S
Stanislaw Gruszka 已提交
1278 1279
	struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
	struct il_scale_tbl_info *search_tbl =
1280
	    &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
S
Stanislaw Gruszka 已提交
1281
	struct il_rate_scale_data *win = &(tbl->win[idx]);
1282 1283 1284
	u32 sz =
	    (sizeof(struct il_scale_tbl_info) -
	     (sizeof(struct il_rate_scale_data) * RATE_COUNT));
1285
	u8 start_action;
S
Stanislaw Gruszka 已提交
1286 1287
	u8 valid_tx_ant = il->hw_params.valid_tx_ant;
	u8 tx_chains_num = il->hw_params.tx_chains_num;
1288 1289 1290
	int ret = 0;
	u8 update_search_tbl_counter = 0;

S
Stanislaw Gruszka 已提交
1291
	tbl->action = IL_LEGACY_SWITCH_SISO;
1292 1293

	start_action = tbl->action;
1294
	for (;;) {
1295 1296
		lq_sta->action_counter++;
		switch (tbl->action) {
S
Stanislaw Gruszka 已提交
1297 1298
		case IL_LEGACY_SWITCH_ANTENNA1:
		case IL_LEGACY_SWITCH_ANTENNA2:
1299
			D_RATE("LQ: Legacy toggle Antenna\n");
1300

S
Stanislaw Gruszka 已提交
1301
			if ((tbl->action == IL_LEGACY_SWITCH_ANTENNA1 &&
1302
			     tx_chains_num <= 1) ||
S
Stanislaw Gruszka 已提交
1303
			    (tbl->action == IL_LEGACY_SWITCH_ANTENNA2 &&
1304
			     tx_chains_num <= 2))
1305 1306 1307
				break;

			/* Don't change antenna if success has been great */
S
Stanislaw Gruszka 已提交
1308
			if (win->success_ratio >= IL_RS_GOOD_RATIO)
1309 1310 1311 1312 1313
				break;

			/* Set up search table to try other antenna */
			memcpy(search_tbl, tbl, sz);

1314 1315 1316
			if (il4965_rs_toggle_antenna
			    (valid_tx_ant, &search_tbl->current_rate,
			     search_tbl)) {
1317
				update_search_tbl_counter = 1;
S
Stanislaw Gruszka 已提交
1318
				il4965_rs_set_expected_tpt_table(lq_sta,
1319
								 search_tbl);
1320 1321 1322
				goto out;
			}
			break;
S
Stanislaw Gruszka 已提交
1323
		case IL_LEGACY_SWITCH_SISO:
1324
			D_RATE("LQ: Legacy switch to SISO\n");
1325 1326 1327 1328

			/* Set up search table to try SISO */
			memcpy(search_tbl, tbl, sz);
			search_tbl->is_SGI = 0;
1329 1330 1331
			ret =
			    il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
						     search_tbl, idx);
1332 1333 1334 1335 1336 1337
			if (!ret) {
				lq_sta->action_counter = 0;
				goto out;
			}

			break;
S
Stanislaw Gruszka 已提交
1338 1339 1340
		case IL_LEGACY_SWITCH_MIMO2_AB:
		case IL_LEGACY_SWITCH_MIMO2_AC:
		case IL_LEGACY_SWITCH_MIMO2_BC:
1341
			D_RATE("LQ: Legacy switch to MIMO2\n");
1342 1343 1344 1345 1346

			/* Set up search table to try MIMO */
			memcpy(search_tbl, tbl, sz);
			search_tbl->is_SGI = 0;

S
Stanislaw Gruszka 已提交
1347
			if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AB)
1348
				search_tbl->ant_type = ANT_AB;
S
Stanislaw Gruszka 已提交
1349
			else if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AC)
1350 1351 1352 1353
				search_tbl->ant_type = ANT_AC;
			else
				search_tbl->ant_type = ANT_BC;

1354 1355
			if (!il4965_rs_is_valid_ant
			    (valid_tx_ant, search_tbl->ant_type))
1356 1357
				break;

1358 1359 1360
			ret =
			    il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
						      search_tbl, idx);
1361 1362 1363 1364 1365 1366 1367
			if (!ret) {
				lq_sta->action_counter = 0;
				goto out;
			}
			break;
		}
		tbl->action++;
S
Stanislaw Gruszka 已提交
1368 1369
		if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
			tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380

		if (tbl->action == start_action)
			break;

	}
	search_tbl->lq_type = LQ_NONE;
	return 0;

out:
	lq_sta->search_better_tbl = 1;
	tbl->action++;
S
Stanislaw Gruszka 已提交
1381 1382
	if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
		tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
1383 1384 1385 1386 1387 1388 1389 1390 1391
	if (update_search_tbl_counter)
		search_tbl->action = tbl->action;
	return 0;

}

/*
 * Try to switch to new modulation mode from SISO
 */
1392 1393 1394 1395
static int
il4965_rs_move_siso_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
			     struct ieee80211_conf *conf,
			     struct ieee80211_sta *sta, int idx)
1396 1397
{
	u8 is_green = lq_sta->is_green;
S
Stanislaw Gruszka 已提交
1398 1399
	struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
	struct il_scale_tbl_info *search_tbl =
1400
	    &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
S
Stanislaw Gruszka 已提交
1401
	struct il_rate_scale_data *win = &(tbl->win[idx]);
1402
	struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
1403 1404 1405
	u32 sz =
	    (sizeof(struct il_scale_tbl_info) -
	     (sizeof(struct il_rate_scale_data) * RATE_COUNT));
1406
	u8 start_action;
S
Stanislaw Gruszka 已提交
1407 1408
	u8 valid_tx_ant = il->hw_params.valid_tx_ant;
	u8 tx_chains_num = il->hw_params.tx_chains_num;
1409 1410 1411 1412 1413 1414 1415 1416
	u8 update_search_tbl_counter = 0;
	int ret;

	start_action = tbl->action;

	for (;;) {
		lq_sta->action_counter++;
		switch (tbl->action) {
S
Stanislaw Gruszka 已提交
1417 1418
		case IL_SISO_SWITCH_ANTENNA1:
		case IL_SISO_SWITCH_ANTENNA2:
1419
			D_RATE("LQ: SISO toggle Antenna\n");
S
Stanislaw Gruszka 已提交
1420
			if ((tbl->action == IL_SISO_SWITCH_ANTENNA1 &&
1421
			     tx_chains_num <= 1) ||
S
Stanislaw Gruszka 已提交
1422
			    (tbl->action == IL_SISO_SWITCH_ANTENNA2 &&
1423
			     tx_chains_num <= 2))
1424 1425
				break;

S
Stanislaw Gruszka 已提交
1426
			if (win->success_ratio >= IL_RS_GOOD_RATIO)
1427 1428 1429
				break;

			memcpy(search_tbl, tbl, sz);
1430 1431 1432
			if (il4965_rs_toggle_antenna
			    (valid_tx_ant, &search_tbl->current_rate,
			     search_tbl)) {
1433 1434 1435 1436
				update_search_tbl_counter = 1;
				goto out;
			}
			break;
S
Stanislaw Gruszka 已提交
1437 1438 1439
		case IL_SISO_SWITCH_MIMO2_AB:
		case IL_SISO_SWITCH_MIMO2_AC:
		case IL_SISO_SWITCH_MIMO2_BC:
1440
			D_RATE("LQ: SISO switch to MIMO2\n");
1441 1442 1443
			memcpy(search_tbl, tbl, sz);
			search_tbl->is_SGI = 0;

S
Stanislaw Gruszka 已提交
1444
			if (tbl->action == IL_SISO_SWITCH_MIMO2_AB)
1445
				search_tbl->ant_type = ANT_AB;
S
Stanislaw Gruszka 已提交
1446
			else if (tbl->action == IL_SISO_SWITCH_MIMO2_AC)
1447 1448 1449 1450
				search_tbl->ant_type = ANT_AC;
			else
				search_tbl->ant_type = ANT_BC;

1451 1452
			if (!il4965_rs_is_valid_ant
			    (valid_tx_ant, search_tbl->ant_type))
1453 1454
				break;

1455 1456 1457
			ret =
			    il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
						      search_tbl, idx);
1458 1459 1460
			if (!ret)
				goto out;
			break;
S
Stanislaw Gruszka 已提交
1461
		case IL_SISO_SWITCH_GI:
1462 1463
			if (!tbl->is_ht40 &&
			    !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
1464
				break;
1465 1466
			if (tbl->is_ht40 &&
			    !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
1467 1468
				break;

1469
			D_RATE("LQ: SISO toggle SGI/NGI\n");
1470 1471 1472 1473 1474 1475

			memcpy(search_tbl, tbl, sz);
			if (is_green) {
				if (!tbl->is_SGI)
					break;
				else
1476
					IL_ERR("SGI was set in GF+SISO\n");
1477 1478
			}
			search_tbl->is_SGI = !tbl->is_SGI;
S
Stanislaw Gruszka 已提交
1479
			il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
1480 1481
			if (tbl->is_SGI) {
				s32 tpt = lq_sta->last_tpt / 100;
S
Stanislaw Gruszka 已提交
1482
				if (tpt >= search_tbl->expected_tpt[idx])
1483 1484 1485
					break;
			}
			search_tbl->current_rate =
1486 1487
			    il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
							 is_green);
1488 1489 1490 1491
			update_search_tbl_counter = 1;
			goto out;
		}
		tbl->action++;
S
Stanislaw Gruszka 已提交
1492 1493
		if (tbl->action > IL_SISO_SWITCH_GI)
			tbl->action = IL_SISO_SWITCH_ANTENNA1;
1494 1495 1496 1497 1498 1499 1500

		if (tbl->action == start_action)
			break;
	}
	search_tbl->lq_type = LQ_NONE;
	return 0;

1501
out:
1502 1503
	lq_sta->search_better_tbl = 1;
	tbl->action++;
S
Stanislaw Gruszka 已提交
1504 1505
	if (tbl->action > IL_SISO_SWITCH_GI)
		tbl->action = IL_SISO_SWITCH_ANTENNA1;
1506 1507 1508 1509 1510 1511 1512 1513 1514
	if (update_search_tbl_counter)
		search_tbl->action = tbl->action;

	return 0;
}

/*
 * Try to switch to new modulation mode from MIMO2
 */
1515 1516 1517 1518
static int
il4965_rs_move_mimo2_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
			      struct ieee80211_conf *conf,
			      struct ieee80211_sta *sta, int idx)
1519 1520
{
	s8 is_green = lq_sta->is_green;
S
Stanislaw Gruszka 已提交
1521 1522
	struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
	struct il_scale_tbl_info *search_tbl =
1523
	    &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
S
Stanislaw Gruszka 已提交
1524
	struct il_rate_scale_data *win = &(tbl->win[idx]);
1525
	struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
1526 1527 1528
	u32 sz =
	    (sizeof(struct il_scale_tbl_info) -
	     (sizeof(struct il_rate_scale_data) * RATE_COUNT));
1529
	u8 start_action;
S
Stanislaw Gruszka 已提交
1530 1531
	u8 valid_tx_ant = il->hw_params.valid_tx_ant;
	u8 tx_chains_num = il->hw_params.tx_chains_num;
1532 1533 1534 1535 1536 1537 1538
	u8 update_search_tbl_counter = 0;
	int ret;

	start_action = tbl->action;
	for (;;) {
		lq_sta->action_counter++;
		switch (tbl->action) {
S
Stanislaw Gruszka 已提交
1539 1540
		case IL_MIMO2_SWITCH_ANTENNA1:
		case IL_MIMO2_SWITCH_ANTENNA2:
1541
			D_RATE("LQ: MIMO2 toggle Antennas\n");
1542 1543 1544 1545

			if (tx_chains_num <= 2)
				break;

S
Stanislaw Gruszka 已提交
1546
			if (win->success_ratio >= IL_RS_GOOD_RATIO)
1547 1548 1549
				break;

			memcpy(search_tbl, tbl, sz);
1550 1551 1552
			if (il4965_rs_toggle_antenna
			    (valid_tx_ant, &search_tbl->current_rate,
			     search_tbl)) {
1553 1554 1555 1556
				update_search_tbl_counter = 1;
				goto out;
			}
			break;
S
Stanislaw Gruszka 已提交
1557 1558 1559
		case IL_MIMO2_SWITCH_SISO_A:
		case IL_MIMO2_SWITCH_SISO_B:
		case IL_MIMO2_SWITCH_SISO_C:
1560
			D_RATE("LQ: MIMO2 switch to SISO\n");
1561 1562 1563 1564

			/* Set up new search table for SISO */
			memcpy(search_tbl, tbl, sz);

S
Stanislaw Gruszka 已提交
1565
			if (tbl->action == IL_MIMO2_SWITCH_SISO_A)
1566
				search_tbl->ant_type = ANT_A;
S
Stanislaw Gruszka 已提交
1567
			else if (tbl->action == IL_MIMO2_SWITCH_SISO_B)
1568 1569 1570 1571
				search_tbl->ant_type = ANT_B;
			else
				search_tbl->ant_type = ANT_C;

1572 1573
			if (!il4965_rs_is_valid_ant
			    (valid_tx_ant, search_tbl->ant_type))
1574 1575
				break;

1576 1577 1578
			ret =
			    il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
						     search_tbl, idx);
1579 1580 1581 1582 1583
			if (!ret)
				goto out;

			break;

S
Stanislaw Gruszka 已提交
1584
		case IL_MIMO2_SWITCH_GI:
1585 1586
			if (!tbl->is_ht40 &&
			    !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
1587
				break;
1588 1589
			if (tbl->is_ht40 &&
			    !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
1590 1591
				break;

1592
			D_RATE("LQ: MIMO2 toggle SGI/NGI\n");
1593 1594 1595 1596

			/* Set up new search table for MIMO2 */
			memcpy(search_tbl, tbl, sz);
			search_tbl->is_SGI = !tbl->is_SGI;
S
Stanislaw Gruszka 已提交
1597
			il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
1598 1599 1600 1601 1602 1603 1604 1605
			/*
			 * If active table already uses the fastest possible
			 * modulation (dual stream with short guard interval),
			 * and it's working well, there's no need to look
			 * for a better type of modulation!
			 */
			if (tbl->is_SGI) {
				s32 tpt = lq_sta->last_tpt / 100;
S
Stanislaw Gruszka 已提交
1606
				if (tpt >= search_tbl->expected_tpt[idx])
1607 1608 1609
					break;
			}
			search_tbl->current_rate =
1610 1611
			    il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
							 is_green);
1612 1613 1614 1615 1616
			update_search_tbl_counter = 1;
			goto out;

		}
		tbl->action++;
S
Stanislaw Gruszka 已提交
1617 1618
		if (tbl->action > IL_MIMO2_SWITCH_GI)
			tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
1619 1620 1621 1622 1623 1624

		if (tbl->action == start_action)
			break;
	}
	search_tbl->lq_type = LQ_NONE;
	return 0;
1625
out:
1626 1627
	lq_sta->search_better_tbl = 1;
	tbl->action++;
S
Stanislaw Gruszka 已提交
1628 1629
	if (tbl->action > IL_MIMO2_SWITCH_GI)
		tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
	if (update_search_tbl_counter)
		search_tbl->action = tbl->action;

	return 0;

}

/*
 * Check whether we should continue using same modulation mode, or
 * begin search for a new mode, based on:
 * 1) # tx successes or failures while using this mode
 * 2) # times calling this function
 * 3) elapsed time in this mode (not used, for now)
 */
static void
S
Stanislaw Gruszka 已提交
1645
il4965_rs_stay_in_table(struct il_lq_sta *lq_sta, bool force_search)
1646
{
S
Stanislaw Gruszka 已提交
1647
	struct il_scale_tbl_info *tbl;
1648 1649 1650
	int i;
	int active_tbl;
	int flush_interval_passed = 0;
S
Stanislaw Gruszka 已提交
1651
	struct il_priv *il;
1652

S
Stanislaw Gruszka 已提交
1653
	il = lq_sta->drv;
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
	active_tbl = lq_sta->active_tbl;

	tbl = &(lq_sta->lq_info[active_tbl]);

	/* If we've been disallowing search, see if we should now allow it */
	if (lq_sta->stay_in_tbl) {

		/* Elapsed time using current modulation mode */
		if (lq_sta->flush_timer)
			flush_interval_passed =
1664 1665 1666
			    time_after(jiffies,
				       (unsigned long)(lq_sta->flush_timer +
						       RATE_SCALE_FLUSH_INTVL));
1667 1668 1669 1670 1671 1672 1673 1674 1675 1676

		/*
		 * Check if we should allow search for new modulation mode.
		 * If many frames have failed or succeeded, or we've used
		 * this same modulation for a long time, allow search, and
		 * reset history stats that keep track of whether we should
		 * allow a new search.  Also (below) reset all bitmaps and
		 * stats in active history.
		 */
		if (force_search ||
1677 1678 1679 1680
		    lq_sta->total_failed > lq_sta->max_failure_limit ||
		    lq_sta->total_success > lq_sta->max_success_limit ||
		    (!lq_sta->search_better_tbl && lq_sta->flush_timer &&
		     flush_interval_passed)) {
1681
			D_RATE("LQ: stay is expired %d %d %d\n:",
1682 1683
			       lq_sta->total_failed, lq_sta->total_success,
			       flush_interval_passed);
1684 1685 1686 1687 1688 1689 1690

			/* Allow search for new mode */
			lq_sta->stay_in_tbl = 0;	/* only place reset */
			lq_sta->total_failed = 0;
			lq_sta->total_success = 0;
			lq_sta->flush_timer = 0;

1691 1692 1693 1694 1695 1696
			/*
			 * Else if we've used this modulation mode enough repetitions
			 * (regardless of elapsed time or success/failure), reset
			 * history bitmaps and rate-specific stats for all rates in
			 * active table.
			 */
1697 1698
		} else {
			lq_sta->table_count++;
1699
			if (lq_sta->table_count >= lq_sta->table_count_limit) {
1700 1701
				lq_sta->table_count = 0;

1702
				D_RATE("LQ: stay in table clear win\n");
S
Stanislaw Gruszka 已提交
1703
				for (i = 0; i < RATE_COUNT; i++)
1704 1705 1706 1707
					il4965_rs_rate_scale_clear_win(&
								       (tbl->
									win
									[i]));
1708 1709 1710 1711 1712 1713 1714
			}
		}

		/* If transitioning to allow "search", reset all history
		 * bitmaps and stats in active table (this will become the new
		 * "search" table). */
		if (!lq_sta->stay_in_tbl) {
S
Stanislaw Gruszka 已提交
1715
			for (i = 0; i < RATE_COUNT; i++)
1716
				il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
1717 1718 1719 1720 1721 1722 1723
		}
	}
}

/*
 * setup rate table in uCode
 */
1724
static void
1725
il4965_rs_update_rate_tbl(struct il_priv *il, struct il_lq_sta *lq_sta,
1726
			  struct il_scale_tbl_info *tbl, int idx, u8 is_green)
1727 1728 1729 1730
{
	u32 rate;

	/* Update uCode's rate table. */
S
Stanislaw Gruszka 已提交
1731
	rate = il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
S
Stanislaw Gruszka 已提交
1732
	il4965_rs_fill_link_cmd(il, lq_sta, rate);
1733
	il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
1734 1735 1736 1737 1738
}

/*
 * Do rate scaling and search for new modulation mode.
 */
1739 1740 1741 1742
static void
il4965_rs_rate_scale_perform(struct il_priv *il, struct sk_buff *skb,
			     struct ieee80211_sta *sta,
			     struct il_lq_sta *lq_sta)
1743
{
S
Stanislaw Gruszka 已提交
1744
	struct ieee80211_hw *hw = il->hw;
1745 1746 1747
	struct ieee80211_conf *conf = &hw->conf;
	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
S
Stanislaw Gruszka 已提交
1748 1749
	int low = RATE_INVALID;
	int high = RATE_INVALID;
S
Stanislaw Gruszka 已提交
1750
	int idx;
1751
	int i;
S
Stanislaw Gruszka 已提交
1752
	struct il_rate_scale_data *win = NULL;
S
Stanislaw Gruszka 已提交
1753 1754 1755
	int current_tpt = IL_INVALID_VALUE;
	int low_tpt = IL_INVALID_VALUE;
	int high_tpt = IL_INVALID_VALUE;
1756 1757 1758 1759
	u32 fail_count;
	s8 scale_action = 0;
	u16 rate_mask;
	u8 update_lq = 0;
S
Stanislaw Gruszka 已提交
1760
	struct il_scale_tbl_info *tbl, *tbl1;
S
Stanislaw Gruszka 已提交
1761
	u16 rate_scale_idx_msk = 0;
1762 1763 1764 1765 1766 1767
	u8 is_green = 0;
	u8 active_tbl = 0;
	u8 done_search = 0;
	u16 high_low;
	s32 sr;
	u8 tid = MAX_TID_COUNT;
S
Stanislaw Gruszka 已提交
1768
	struct il_tid_data *tid_data;
1769

1770
	D_RATE("rate scale calculate new rate for skb\n");
1771 1772 1773 1774

	/* Send management frames and NO_ACK data using lowest rate. */
	/* TODO: this could probably be improved.. */
	if (!ieee80211_is_data(hdr->frame_control) ||
1775
	    (info->flags & IEEE80211_TX_CTL_NO_ACK))
1776 1777 1778 1779
		return;

	lq_sta->supp_rates = sta->supp_rates[lq_sta->band];

S
Stanislaw Gruszka 已提交
1780
	tid = il4965_rs_tl_add_packet(lq_sta, hdr);
1781
	if (tid != MAX_TID_COUNT && (lq_sta->tx_agg_tid_en & (1 << tid))) {
S
Stanislaw Gruszka 已提交
1782
		tid_data = &il->stations[lq_sta->lq.sta_id].tid[tid];
S
Stanislaw Gruszka 已提交
1783
		if (tid_data->agg.state == IL_AGG_OFF)
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
			lq_sta->is_agg = 0;
		else
			lq_sta->is_agg = 1;
	} else
		lq_sta->is_agg = 0;

	/*
	 * Select rate-scale / modulation-mode table to work with in
	 * the rest of this function:  "search" if searching for better
	 * modulation mode, or "active" if doing rate scaling within a mode.
	 */
	if (!lq_sta->search_better_tbl)
		active_tbl = lq_sta->active_tbl;
	else
		active_tbl = 1 - lq_sta->active_tbl;

	tbl = &(lq_sta->lq_info[active_tbl]);
	if (is_legacy(tbl->lq_type))
		lq_sta->is_green = 0;
	else
1804
		lq_sta->is_green = il4965_rs_use_green(il, sta);
1805 1806 1807
	is_green = lq_sta->is_green;

	/* current tx rate */
S
Stanislaw Gruszka 已提交
1808
	idx = lq_sta->last_txrate_idx;
1809

1810
	D_RATE("Rate scale idx %d for type %d\n", idx, tbl->lq_type);
1811 1812

	/* rates available for this association, and for modulation mode */
S
Stanislaw Gruszka 已提交
1813
	rate_mask = il4965_rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
1814

1815
	D_RATE("mask 0x%04X\n", rate_mask);
1816 1817 1818 1819 1820

	/* mask with station rate restriction */
	if (is_legacy(tbl->lq_type)) {
		if (lq_sta->band == IEEE80211_BAND_5GHZ)
			/* supp_rates has no CCK bits in A mode */
1821 1822 1823
			rate_scale_idx_msk =
			    (u16) (rate_mask &
				   (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
1824
		else
1825 1826
			rate_scale_idx_msk =
			    (u16) (rate_mask & lq_sta->supp_rates);
1827 1828

	} else
S
Stanislaw Gruszka 已提交
1829
		rate_scale_idx_msk = rate_mask;
1830

S
Stanislaw Gruszka 已提交
1831 1832
	if (!rate_scale_idx_msk)
		rate_scale_idx_msk = rate_mask;
1833

S
Stanislaw Gruszka 已提交
1834
	if (!((1 << idx) & rate_scale_idx_msk)) {
1835
		IL_ERR("Current Rate is not valid\n");
1836
		if (lq_sta->search_better_tbl) {
1837
			/* revert to active table if search table is not valid */
1838 1839 1840 1841
			tbl->lq_type = LQ_NONE;
			lq_sta->search_better_tbl = 0;
			tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
			/* get "active" rate info */
S
Stanislaw Gruszka 已提交
1842
			idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
1843
			il4965_rs_update_rate_tbl(il, lq_sta, tbl, idx,
1844
						      is_green);
1845 1846 1847 1848
		}
		return;
	}

S
Stanislaw Gruszka 已提交
1849
	/* Get expected throughput table and history win for current rate */
1850
	if (!tbl->expected_tpt) {
1851
		IL_ERR("tbl->expected_tpt is NULL\n");
1852 1853 1854 1855
		return;
	}

	/* force user max rate if set by user */
1856
	if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < idx) {
S
Stanislaw Gruszka 已提交
1857
		idx = lq_sta->max_rate_idx;
1858
		update_lq = 1;
S
Stanislaw Gruszka 已提交
1859
		win = &(tbl->win[idx]);
1860 1861 1862
		goto lq_update;
	}

S
Stanislaw Gruszka 已提交
1863
	win = &(tbl->win[idx]);
1864 1865 1866 1867 1868 1869 1870 1871

	/*
	 * If there is not enough history to calculate actual average
	 * throughput, keep analyzing results of more tx frames, without
	 * changing rate or mode (bypass most of the rest of this function).
	 * Set up new rate table in uCode only if old rate is not supported
	 * in current association (use new rate found above).
	 */
S
Stanislaw Gruszka 已提交
1872
	fail_count = win->counter - win->success_counter;
S
Stanislaw Gruszka 已提交
1873 1874
	if (fail_count < RATE_MIN_FAILURE_TH &&
	    win->success_counter < RATE_MIN_SUCCESS_TH) {
1875 1876
		D_RATE("LQ: still below TH. succ=%d total=%d " "for idx %d\n",
		       win->success_counter, win->counter, idx);
1877 1878

		/* Can't calculate this yet; not enough history */
S
Stanislaw Gruszka 已提交
1879
		win->average_tpt = IL_INVALID_VALUE;
1880 1881 1882

		/* Should we stay with this modulation mode,
		 * or search for a new one? */
S
Stanislaw Gruszka 已提交
1883
		il4965_rs_stay_in_table(lq_sta, false);
1884 1885 1886 1887 1888

		goto out;
	}
	/* Else we have enough samples; calculate estimate of
	 * actual average throughput */
1889 1890 1891 1892 1893
	if (win->average_tpt !=
	    ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128)) {
		IL_ERR("expected_tpt should have been calculated by now\n");
		win->average_tpt =
		    ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128);
1894 1895 1896 1897 1898 1899 1900
	}

	/* If we are searching for better modulation mode, check success. */
	if (lq_sta->search_better_tbl) {
		/* If good success, continue using the "search" mode;
		 * no need to send new link quality command, since we're
		 * continuing to use the setup that we've been trying. */
S
Stanislaw Gruszka 已提交
1901
		if (win->average_tpt > lq_sta->last_tpt) {
1902

S
Stanislaw Gruszka 已提交
1903
			D_RATE("LQ: SWITCHING TO NEW TBL "
1904 1905 1906
			       "suc=%d cur-tpt=%d old-tpt=%d\n",
			       win->success_ratio, win->average_tpt,
			       lq_sta->last_tpt);
1907 1908 1909 1910 1911 1912

			if (!is_legacy(tbl->lq_type))
				lq_sta->enable_counter = 1;

			/* Swap tables; "search" becomes "active" */
			lq_sta->active_tbl = active_tbl;
S
Stanislaw Gruszka 已提交
1913
			current_tpt = win->average_tpt;
1914

1915
			/* Else poor success; go back to mode in "active" table */
1916 1917
		} else {

S
Stanislaw Gruszka 已提交
1918
			D_RATE("LQ: GOING BACK TO THE OLD TBL "
1919 1920 1921
			       "suc=%d cur-tpt=%d old-tpt=%d\n",
			       win->success_ratio, win->average_tpt,
			       lq_sta->last_tpt);
1922 1923 1924 1925 1926 1927 1928 1929 1930

			/* Nullify "search" table */
			tbl->lq_type = LQ_NONE;

			/* Revert to "active" table */
			active_tbl = lq_sta->active_tbl;
			tbl = &(lq_sta->lq_info[active_tbl]);

			/* Revert to "active" rate and throughput info */
S
Stanislaw Gruszka 已提交
1931
			idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946
			current_tpt = lq_sta->last_tpt;

			/* Need to set up a new rate table in uCode */
			update_lq = 1;
		}

		/* Either way, we've made a decision; modulation mode
		 * search is done, allow rate adjustment next time. */
		lq_sta->search_better_tbl = 0;
		done_search = 1;	/* Don't switch modes below! */
		goto lq_update;
	}

	/* (Else) not in search of better modulation mode, try for better
	 * starting rate, while staying in this mode. */
1947 1948
	high_low =
	    il4965_rs_get_adjacent_rate(il, idx, rate_scale_idx_msk,
1949 1950 1951 1952 1953
					tbl->lq_type);
	low = high_low & 0xff;
	high = (high_low >> 8) & 0xff;

	/* If user set max rate, dont allow higher than user constrain */
1954
	if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < high)
S
Stanislaw Gruszka 已提交
1955
		high = RATE_INVALID;
1956

S
Stanislaw Gruszka 已提交
1957
	sr = win->success_ratio;
1958 1959

	/* Collect measured throughputs for current and adjacent rates */
S
Stanislaw Gruszka 已提交
1960
	current_tpt = win->average_tpt;
S
Stanislaw Gruszka 已提交
1961
	if (low != RATE_INVALID)
1962
		low_tpt = tbl->win[low].average_tpt;
S
Stanislaw Gruszka 已提交
1963
	if (high != RATE_INVALID)
1964 1965 1966 1967 1968
		high_tpt = tbl->win[high].average_tpt;

	scale_action = 0;

	/* Too many failures, decrease rate */
S
Stanislaw Gruszka 已提交
1969
	if (sr <= RATE_DECREASE_TH || current_tpt == 0) {
1970
		D_RATE("decrease rate because of low success_ratio\n");
1971 1972
		scale_action = -1;

1973 1974
		/* No throughput measured yet for adjacent rates; try increase. */
	} else if (low_tpt == IL_INVALID_VALUE && high_tpt == IL_INVALID_VALUE) {
1975

S
Stanislaw Gruszka 已提交
1976
		if (high != RATE_INVALID && sr >= RATE_INCREASE_TH)
1977
			scale_action = 1;
S
Stanislaw Gruszka 已提交
1978
		else if (low != RATE_INVALID)
1979 1980 1981 1982 1983
			scale_action = 0;
	}

	/* Both adjacent throughputs are measured, but neither one has better
	 * throughput; we're using the best rate, don't change it! */
1984 1985
	else if (low_tpt != IL_INVALID_VALUE && high_tpt != IL_INVALID_VALUE &&
		 low_tpt < current_tpt && high_tpt < current_tpt)
1986 1987 1988 1989 1990 1991
		scale_action = 0;

	/* At least one adjacent rate's throughput is measured,
	 * and may have better performance. */
	else {
		/* Higher adjacent rate's throughput is measured */
S
Stanislaw Gruszka 已提交
1992
		if (high_tpt != IL_INVALID_VALUE) {
1993
			/* Higher rate has better throughput */
S
Stanislaw Gruszka 已提交
1994
			if (high_tpt > current_tpt && sr >= RATE_INCREASE_TH)
1995
				scale_action = 1;
S
Stanislaw Gruszka 已提交
1996
			else
1997 1998
				scale_action = 0;

1999
			/* Lower adjacent rate's throughput is measured */
S
Stanislaw Gruszka 已提交
2000
		} else if (low_tpt != IL_INVALID_VALUE) {
2001 2002
			/* Lower rate has better throughput */
			if (low_tpt > current_tpt) {
2003
				D_RATE("decrease rate because of low tpt\n");
2004
				scale_action = -1;
S
Stanislaw Gruszka 已提交
2005
			} else if (sr >= RATE_INCREASE_TH) {
2006 2007 2008 2009 2010 2011 2012
				scale_action = 1;
			}
		}
	}

	/* Sanity check; asked for decrease, but success rate or throughput
	 * has been good at old rate.  Don't change it. */
S
Stanislaw Gruszka 已提交
2013 2014
	if (scale_action == -1 && low != RATE_INVALID &&
	    (sr > RATE_HIGH_TH || current_tpt > 100 * tbl->expected_tpt[low]))
2015 2016 2017 2018 2019
		scale_action = 0;

	switch (scale_action) {
	case -1:
		/* Decrease starting rate, update uCode's rate table */
S
Stanislaw Gruszka 已提交
2020
		if (low != RATE_INVALID) {
2021
			update_lq = 1;
S
Stanislaw Gruszka 已提交
2022
			idx = low;
2023 2024 2025 2026 2027
		}

		break;
	case 1:
		/* Increase starting rate, update uCode's rate table */
S
Stanislaw Gruszka 已提交
2028
		if (high != RATE_INVALID) {
2029
			update_lq = 1;
S
Stanislaw Gruszka 已提交
2030
			idx = high;
2031 2032 2033 2034 2035 2036 2037 2038 2039
		}

		break;
	case 0:
		/* No change */
	default:
		break;
	}

2040 2041
	D_RATE("choose rate scale idx %d action %d low %d " "high %d type %d\n",
	       idx, scale_action, low, high, tbl->lq_type);
2042 2043 2044 2045

lq_update:
	/* Replace uCode's rate table for the destination station. */
	if (update_lq)
2046
		il4965_rs_update_rate_tbl(il, lq_sta, tbl, idx, is_green);
2047 2048 2049

	/* Should we stay with this modulation mode,
	 * or search for a new one? */
2050
	il4965_rs_stay_in_table(lq_sta, false);
2051 2052 2053 2054 2055 2056 2057

	/*
	 * Search for new modulation mode if we're:
	 * 1)  Not changing rates right now
	 * 2)  Not just finishing up a search
	 * 3)  Allowing a new search
	 */
2058 2059
	if (!update_lq && !done_search && !lq_sta->stay_in_tbl && win->counter) {
		/* Save current throughput to compare with "search" throughput */
2060 2061 2062 2063 2064
		lq_sta->last_tpt = current_tpt;

		/* Select a new "search" modulation mode to try.
		 * If one is found, set up the new "search" table. */
		if (is_legacy(tbl->lq_type))
2065
			il4965_rs_move_legacy_other(il, lq_sta, conf, sta, idx);
2066
		else if (is_siso(tbl->lq_type))
2067 2068 2069 2070 2071
			il4965_rs_move_siso_to_other(il, lq_sta, conf, sta,
						     idx);
		else		/* (is_mimo2(tbl->lq_type)) */
			il4965_rs_move_mimo2_to_other(il, lq_sta, conf, sta,
						      idx);
2072 2073 2074 2075 2076

		/* If new "search" mode was selected, set up in uCode table */
		if (lq_sta->search_better_tbl) {
			/* Access the "search" table, clear its history. */
			tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
S
Stanislaw Gruszka 已提交
2077
			for (i = 0; i < RATE_COUNT; i++)
2078
				il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
2079 2080

			/* Use new "search" start rate */
S
Stanislaw Gruszka 已提交
2081
			idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
2082

2083 2084 2085
			D_RATE("Switch current  mcs: %X idx: %d\n",
			       tbl->current_rate, idx);
			il4965_rs_fill_link_cmd(il, lq_sta, tbl->current_rate);
2086
			il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
		} else
			done_search = 1;
	}

	if (done_search && !lq_sta->stay_in_tbl) {
		/* If the "active" (non-search) mode was legacy,
		 * and we've tried switching antennas,
		 * but we haven't been able to try HT modes (not available),
		 * stay with best antenna legacy modulation for a while
		 * before next round of mode comparisons. */
		tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
		if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
		    lq_sta->action_counter > tbl1->max_search) {
2100
			D_RATE("LQ: STAY in legacy table\n");
S
Stanislaw Gruszka 已提交
2101
			il4965_rs_set_stay_in_table(il, 1, lq_sta);
2102 2103 2104 2105 2106 2107
		}

		/* If we're in an HT mode, and all 3 mode switch actions
		 * have been tried and compared, stay in this best modulation
		 * mode for a while before next round of mode comparisons. */
		if (lq_sta->enable_counter &&
2108 2109
		    lq_sta->action_counter >= tbl1->max_search) {
			if (lq_sta->last_tpt > IL_AGG_TPT_THREHOLD &&
2110
			    (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2111
			    tid != MAX_TID_COUNT) {
2112
				tid_data =
2113
				    &il->stations[lq_sta->lq.sta_id].tid[tid];
S
Stanislaw Gruszka 已提交
2114
				if (tid_data->agg.state == IL_AGG_OFF) {
2115 2116
					D_RATE("try to aggregate tid %d\n",
					       tid);
S
Stanislaw Gruszka 已提交
2117
					il4965_rs_tl_turn_on_agg(il, tid,
2118
								 lq_sta, sta);
2119 2120
				}
			}
S
Stanislaw Gruszka 已提交
2121
			il4965_rs_set_stay_in_table(il, 0, lq_sta);
2122 2123 2124 2125
		}
	}

out:
2126 2127
	tbl->current_rate =
	    il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
S
Stanislaw Gruszka 已提交
2128
	i = idx;
2129 2130 2131 2132
	lq_sta->last_txrate_idx = i;
}

/**
S
Stanislaw Gruszka 已提交
2133
 * il4965_rs_initialize_lq - Initialize a station's hardware rate table
2134 2135 2136 2137 2138 2139 2140 2141
 *
 * The uCode's station table contains a table of fallback rates
 * for automatic fallback during transmission.
 *
 * NOTE: This sets up a default set of values.  These will be replaced later
 *       if the driver's iwl-4965-rs rate scaling algorithm is used, instead of
 *       rc80211_simple.
 *
2142 2143
 * NOTE: Run C_ADD_STA command to set up station table entry, before
 *       calling this function (which runs C_TX_LINK_QUALITY_CMD,
2144 2145
 *       which requires station table entry to exist).
 */
2146 2147 2148
static void
il4965_rs_initialize_lq(struct il_priv *il, struct ieee80211_conf *conf,
			struct ieee80211_sta *sta, struct il_lq_sta *lq_sta)
2149
{
S
Stanislaw Gruszka 已提交
2150
	struct il_scale_tbl_info *tbl;
2151 2152 2153
	int rate_idx;
	int i;
	u32 rate;
2154
	u8 use_green;
2155 2156
	u8 active_tbl = 0;
	u8 valid_tx_ant;
S
Stanislaw Gruszka 已提交
2157
	struct il_station_priv *sta_priv;
2158 2159 2160 2161

	if (!sta || !lq_sta)
		return;

2162
	use_green = il4965_rs_use_green(il, sta);
2163 2164 2165 2166
	sta_priv = (void *)sta->drv_priv;

	i = lq_sta->last_txrate_idx;

S
Stanislaw Gruszka 已提交
2167
	valid_tx_ant = il->hw_params.valid_tx_ant;
2168 2169 2170 2171 2172 2173 2174 2175

	if (!lq_sta->search_better_tbl)
		active_tbl = lq_sta->active_tbl;
	else
		active_tbl = 1 - lq_sta->active_tbl;

	tbl = &(lq_sta->lq_info[active_tbl]);

S
Stanislaw Gruszka 已提交
2176
	if (i < 0 || i >= RATE_COUNT)
2177 2178
		i = 0;

2179
	rate = il_rates[i].plcp;
S
Stanislaw Gruszka 已提交
2180
	tbl->ant_type = il4965_first_antenna(valid_tx_ant);
2181 2182
	rate |= tbl->ant_type << RATE_MCS_ANT_POS;

S
Stanislaw Gruszka 已提交
2183
	if (i >= IL_FIRST_CCK_RATE && i <= IL_LAST_CCK_RATE)
2184 2185
		rate |= RATE_MCS_CCK_MSK;

S
Stanislaw Gruszka 已提交
2186
	il4965_rs_get_tbl_info_from_mcs(rate, il->band, tbl, &rate_idx);
S
Stanislaw Gruszka 已提交
2187 2188
	if (!il4965_rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
		il4965_rs_toggle_antenna(valid_tx_ant, &rate, tbl);
2189

S
Stanislaw Gruszka 已提交
2190
	rate = il4965_rate_n_flags_from_tbl(il, tbl, rate_idx, use_green);
2191
	tbl->current_rate = rate;
S
Stanislaw Gruszka 已提交
2192 2193
	il4965_rs_set_expected_tpt_table(lq_sta, tbl);
	il4965_rs_fill_link_cmd(NULL, lq_sta, rate);
S
Stanislaw Gruszka 已提交
2194
	il->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2195
	il_send_lq_cmd(il, &lq_sta->lq, CMD_SYNC, true);
2196 2197 2198
}

static void
S
Stanislaw Gruszka 已提交
2199
il4965_rs_get_rate(void *il_r, struct ieee80211_sta *sta, void *il_sta,
2200
		   struct ieee80211_tx_rate_control *txrc)
2201 2202 2203 2204
{

	struct sk_buff *skb = txrc->skb;
	struct ieee80211_supported_band *sband = txrc->sband;
S
Stanislaw Gruszka 已提交
2205
	struct il_priv *il __maybe_unused = (struct il_priv *)il_r;
2206
	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
S
Stanislaw Gruszka 已提交
2207
	struct il_lq_sta *lq_sta = il_sta;
2208 2209
	int rate_idx;

2210
	D_RATE("rate scale calculate new rate for skb\n");
2211 2212 2213 2214

	/* Get max rate if user set max rate */
	if (lq_sta) {
		lq_sta->max_rate_idx = txrc->max_rate_idx;
2215 2216
		if (sband->band == IEEE80211_BAND_5GHZ &&
		    lq_sta->max_rate_idx != -1)
S
Stanislaw Gruszka 已提交
2217
			lq_sta->max_rate_idx += IL_FIRST_OFDM_RATE;
2218
		if (lq_sta->max_rate_idx < 0 ||
S
Stanislaw Gruszka 已提交
2219
		    lq_sta->max_rate_idx >= RATE_COUNT)
2220 2221 2222 2223 2224
			lq_sta->max_rate_idx = -1;
	}

	/* Treat uninitialized rate scaling data same as non-existing. */
	if (lq_sta && !lq_sta->drv) {
2225
		D_RATE("Rate scaling not initialized yet.\n");
S
Stanislaw Gruszka 已提交
2226
		il_sta = NULL;
2227 2228 2229
	}

	/* Send management frames and NO_ACK data using lowest rate. */
S
Stanislaw Gruszka 已提交
2230
	if (rate_control_send_low(sta, il_sta, txrc))
2231 2232
		return;

G
Greg Dietsche 已提交
2233 2234 2235
	if (!lq_sta)
		return;

2236
	rate_idx = lq_sta->last_txrate_idx;
2237 2238

	if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
S
Stanislaw Gruszka 已提交
2239
		rate_idx -= IL_FIRST_OFDM_RATE;
S
Stanislaw Gruszka 已提交
2240
		/* 6M and 9M shared same MCS idx */
2241
		rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
S
Stanislaw Gruszka 已提交
2242
		if (il4965_rs_extract_rate(lq_sta->last_rate_n_flags) >=
2243
		    RATE_MIMO2_6M_PLCP)
S
Stanislaw Gruszka 已提交
2244
			rate_idx = rate_idx + MCS_IDX_PER_STREAM;
2245 2246 2247
		info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
		if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
			info->control.rates[0].flags |=
2248
			    IEEE80211_TX_RC_SHORT_GI;
2249 2250
		if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
			info->control.rates[0].flags |=
2251
			    IEEE80211_TX_RC_DUP_DATA;
2252 2253
		if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
			info->control.rates[0].flags |=
2254
			    IEEE80211_TX_RC_40_MHZ_WIDTH;
2255 2256
		if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
			info->control.rates[0].flags |=
2257
			    IEEE80211_TX_RC_GREEN_FIELD;
2258 2259
	} else {
		/* Check for invalid rates */
S
Stanislaw Gruszka 已提交
2260
		if (rate_idx < 0 || rate_idx >= RATE_COUNT_LEGACY ||
2261 2262
		    (sband->band == IEEE80211_BAND_5GHZ &&
		     rate_idx < IL_FIRST_OFDM_RATE))
2263
			rate_idx = rate_lowest_index(sband, sta);
S
Stanislaw Gruszka 已提交
2264
		/* On valid 5 GHz rate, adjust idx */
2265
		else if (sband->band == IEEE80211_BAND_5GHZ)
S
Stanislaw Gruszka 已提交
2266
			rate_idx -= IL_FIRST_OFDM_RATE;
2267 2268 2269
		info->control.rates[0].flags = 0;
	}
	info->control.rates[0].idx = rate_idx;
2270
	info->control.rates[0].count = 1;
2271 2272
}

2273 2274
static void *
il4965_rs_alloc_sta(void *il_rate, struct ieee80211_sta *sta, gfp_t gfp)
2275
{
S
Stanislaw Gruszka 已提交
2276
	struct il_station_priv *sta_priv =
2277
	    (struct il_station_priv *)sta->drv_priv;
S
Stanislaw Gruszka 已提交
2278
	struct il_priv *il;
2279

S
Stanislaw Gruszka 已提交
2280
	il = (struct il_priv *)il_rate;
S
Stanislaw Gruszka 已提交
2281
	D_RATE("create station rate scale win\n");
2282

2283
	return &sta_priv->lq_sta;
2284 2285 2286 2287 2288 2289
}

/*
 * Called after adding a new station to initialize rate scaling
 */
void
2290
il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta, u8 sta_id)
2291 2292
{
	int i, j;
S
Stanislaw Gruszka 已提交
2293 2294
	struct ieee80211_hw *hw = il->hw;
	struct ieee80211_conf *conf = &il->hw->conf;
2295
	struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
S
Stanislaw Gruszka 已提交
2296 2297
	struct il_station_priv *sta_priv;
	struct il_lq_sta *lq_sta;
2298 2299
	struct ieee80211_supported_band *sband;

2300
	sta_priv = (struct il_station_priv *)sta->drv_priv;
2301
	lq_sta = &sta_priv->lq_sta;
2302
	sband = hw->wiphy->bands[conf->chandef.chan->band];
2303 2304 2305 2306

	lq_sta->lq.sta_id = sta_id;

	for (j = 0; j < LQ_SIZE; j++)
S
Stanislaw Gruszka 已提交
2307
		for (i = 0; i < RATE_COUNT; i++)
2308 2309
			il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
						       win[i]);
2310 2311 2312 2313

	lq_sta->flush_timer = 0;
	lq_sta->supp_rates = sta->supp_rates[sband->band];
	for (j = 0; j < LQ_SIZE; j++)
S
Stanislaw Gruszka 已提交
2314
		for (i = 0; i < RATE_COUNT; i++)
2315 2316
			il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
						       win[i]);
2317

2318 2319
	D_RATE("LQ:" "*** rate scale station global init for station %d ***\n",
	       sta_id);
2320 2321 2322 2323 2324 2325 2326
	/* TODO: what is a good starting rate for STA? About middle? Maybe not
	 * the lowest or the highest rate.. Could consider using RSSI from
	 * previous packets? Need to have IEEE 802.1X auth succeed immediately
	 * after assoc.. */

	lq_sta->is_dup = 0;
	lq_sta->max_rate_idx = -1;
S
Stanislaw Gruszka 已提交
2327
	lq_sta->missed_rate_counter = IL_MISSED_RATE_MAX;
2328
	lq_sta->is_green = il4965_rs_use_green(il, sta);
S
Stanislaw Gruszka 已提交
2329 2330
	lq_sta->active_legacy_rate = il->active_rate & ~(0x1000);
	lq_sta->band = il->band;
2331 2332 2333 2334 2335 2336
	/*
	 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
	 * supp_rates[] does not; shift to convert format, force 9 MBits off.
	 */
	lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
	lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
2337
	lq_sta->active_siso_rate &= ~((u16) 0x2);
S
Stanislaw Gruszka 已提交
2338
	lq_sta->active_siso_rate <<= IL_FIRST_OFDM_RATE;
2339 2340 2341 2342

	/* Same here */
	lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
	lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
2343
	lq_sta->active_mimo2_rate &= ~((u16) 0x2);
S
Stanislaw Gruszka 已提交
2344
	lq_sta->active_mimo2_rate <<= IL_FIRST_OFDM_RATE;
2345 2346 2347

	/* These values will be overridden later */
	lq_sta->lq.general_params.single_stream_ant_msk =
2348
	    il4965_first_antenna(il->hw_params.valid_tx_ant);
2349
	lq_sta->lq.general_params.dual_stream_ant_msk =
2350 2351
	    il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
							       valid_tx_ant);
2352 2353
	if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
		lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
S
Stanislaw Gruszka 已提交
2354
	} else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
2355
		lq_sta->lq.general_params.dual_stream_ant_msk =
2356
		    il->hw_params.valid_tx_ant;
2357 2358 2359
	}

	/* as default allow aggregation for all tids */
S
Stanislaw Gruszka 已提交
2360
	lq_sta->tx_agg_tid_en = IL_AGG_ALL_TID;
S
Stanislaw Gruszka 已提交
2361
	lq_sta->drv = il;
2362 2363 2364 2365

	/* Set last_txrate_idx to lowest rate */
	lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
	if (sband->band == IEEE80211_BAND_5GHZ)
S
Stanislaw Gruszka 已提交
2366
		lq_sta->last_txrate_idx += IL_FIRST_OFDM_RATE;
2367 2368 2369 2370 2371 2372
	lq_sta->is_agg = 0;

#ifdef CONFIG_MAC80211_DEBUGFS
	lq_sta->dbg_fixed_rate = 0;
#endif

S
Stanislaw Gruszka 已提交
2373
	il4965_rs_initialize_lq(il, conf, sta, lq_sta);
2374 2375
}

2376 2377 2378
static void
il4965_rs_fill_link_cmd(struct il_priv *il, struct il_lq_sta *lq_sta,
			u32 new_rate)
2379
{
S
Stanislaw Gruszka 已提交
2380
	struct il_scale_tbl_info tbl_type;
S
Stanislaw Gruszka 已提交
2381
	int idx = 0;
2382 2383 2384 2385 2386
	int rate_idx;
	int repeat_rate = 0;
	u8 ant_toggle_cnt = 0;
	u8 use_ht_possible = 1;
	u8 valid_tx_ant = 0;
S
Stanislaw Gruszka 已提交
2387
	struct il_link_quality_cmd *lq_cmd = &lq_sta->lq;
2388

S
Stanislaw Gruszka 已提交
2389 2390
	/* Override starting rate (idx 0) if needed for debug purposes */
	il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
2391 2392

	/* Interpret new_rate (rate_n_flags) */
2393 2394
	il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
					&rate_idx);
2395 2396 2397 2398

	/* How many times should we repeat the initial rate? */
	if (is_legacy(tbl_type.lq_type)) {
		ant_toggle_cnt = 1;
S
Stanislaw Gruszka 已提交
2399
		repeat_rate = IL_NUMBER_TRY;
2400
	} else {
S
Stanislaw Gruszka 已提交
2401
		repeat_rate = IL_HT_NUMBER_TRY;
2402 2403 2404
	}

	lq_cmd->general_params.mimo_delimiter =
2405
	    is_mimo(tbl_type.lq_type) ? 1 : 0;
2406

S
Stanislaw Gruszka 已提交
2407 2408
	/* Fill 1st table entry (idx 0) */
	lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
2409

S
Stanislaw Gruszka 已提交
2410
	if (il4965_num_of_ant(tbl_type.ant_type) == 1) {
2411
		lq_cmd->general_params.single_stream_ant_msk =
2412
		    tbl_type.ant_type;
S
Stanislaw Gruszka 已提交
2413
	} else if (il4965_num_of_ant(tbl_type.ant_type) == 2) {
2414 2415 2416
		lq_cmd->general_params.dual_stream_ant_msk = tbl_type.ant_type;
	}
	/* otherwise we don't modify the existing value */
S
Stanislaw Gruszka 已提交
2417
	idx++;
2418
	repeat_rate--;
S
Stanislaw Gruszka 已提交
2419 2420
	if (il)
		valid_tx_ant = il->hw_params.valid_tx_ant;
2421 2422

	/* Fill rest of rate table */
S
Stanislaw Gruszka 已提交
2423
	while (idx < LINK_QUAL_MAX_RETRY_NUM) {
2424
		/* Repeat initial/next rate.
S
Stanislaw Gruszka 已提交
2425 2426
		 * For legacy IL_NUMBER_TRY == 1, this loop will not execute.
		 * For HT IL_HT_NUMBER_TRY == 3, this executes twice. */
S
Stanislaw Gruszka 已提交
2427
		while (repeat_rate > 0 && idx < LINK_QUAL_MAX_RETRY_NUM) {
2428 2429 2430
			if (is_legacy(tbl_type.lq_type)) {
				if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
					ant_toggle_cnt++;
S
Stanislaw Gruszka 已提交
2431
				else if (il &&
S
Stanislaw Gruszka 已提交
2432
					 il4965_rs_toggle_antenna(valid_tx_ant,
2433 2434
								  &new_rate,
								  &tbl_type))
2435 2436 2437 2438
					ant_toggle_cnt = 1;
			}

			/* Override next rate if needed for debug purposes */
S
Stanislaw Gruszka 已提交
2439
			il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
2440 2441

			/* Fill next table entry */
S
Stanislaw Gruszka 已提交
2442
			lq_cmd->rs_table[idx].rate_n_flags =
2443
			    cpu_to_le32(new_rate);
2444
			repeat_rate--;
S
Stanislaw Gruszka 已提交
2445
			idx++;
2446 2447
		}

2448 2449
		il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
						&tbl_type, &rate_idx);
2450 2451 2452

		/* Indicate to uCode which entries might be MIMO.
		 * If initial rate was MIMO, this will finally end up
S
Stanislaw Gruszka 已提交
2453
		 * as (IL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
2454
		if (is_mimo(tbl_type.lq_type))
S
Stanislaw Gruszka 已提交
2455
			lq_cmd->general_params.mimo_delimiter = idx;
2456 2457

		/* Get next rate */
2458 2459
		new_rate =
		    il4965_rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2460 2461 2462 2463 2464 2465
					     use_ht_possible);

		/* How many times should we repeat the next rate? */
		if (is_legacy(tbl_type.lq_type)) {
			if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
				ant_toggle_cnt++;
S
Stanislaw Gruszka 已提交
2466
			else if (il &&
S
Stanislaw Gruszka 已提交
2467
				 il4965_rs_toggle_antenna(valid_tx_ant,
2468
							  &new_rate, &tbl_type))
2469 2470
				ant_toggle_cnt = 1;

S
Stanislaw Gruszka 已提交
2471
			repeat_rate = IL_NUMBER_TRY;
2472
		} else {
S
Stanislaw Gruszka 已提交
2473
			repeat_rate = IL_HT_NUMBER_TRY;
2474 2475 2476
		}

		/* Don't allow HT rates after next pass.
S
Stanislaw Gruszka 已提交
2477
		 * il4965_rs_get_lower_rate() will change type to LQ_A or LQ_G. */
2478 2479 2480
		use_ht_possible = 0;

		/* Override next rate if needed for debug purposes */
S
Stanislaw Gruszka 已提交
2481
		il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
2482 2483

		/* Fill next table entry */
S
Stanislaw Gruszka 已提交
2484
		lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
2485

S
Stanislaw Gruszka 已提交
2486
		idx++;
2487 2488 2489 2490 2491 2492 2493
		repeat_rate--;
	}

	lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
	lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;

	lq_cmd->agg_params.agg_time_limit =
2494
	    cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
2495 2496
}

2497 2498
static void *
il4965_rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
2499 2500 2501
{
	return hw->priv;
}
2502

2503
/* rate scale requires free function to be implemented */
2504 2505
static void
il4965_rs_free(void *il_rate)
2506 2507 2508 2509
{
	return;
}

2510 2511
static void
il4965_rs_free_sta(void *il_r, struct ieee80211_sta *sta, void *il_sta)
2512
{
S
Stanislaw Gruszka 已提交
2513
	struct il_priv *il __maybe_unused = il_r;
2514

2515 2516
	D_RATE("enter\n");
	D_RATE("leave\n");
2517 2518 2519
}

#ifdef CONFIG_MAC80211_DEBUGFS
2520 2521 2522

static void
il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
2523
{
S
Stanislaw Gruszka 已提交
2524
	struct il_priv *il;
2525 2526 2527
	u8 valid_tx_ant;
	u8 ant_sel_tx;

S
Stanislaw Gruszka 已提交
2528 2529
	il = lq_sta->drv;
	valid_tx_ant = il->hw_params.valid_tx_ant;
2530 2531
	if (lq_sta->dbg_fixed_rate) {
		ant_sel_tx =
2532 2533 2534
		    ((lq_sta->
		      dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK) >>
		     RATE_MCS_ANT_POS);
2535 2536
		if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
			*rate_n_flags = lq_sta->dbg_fixed_rate;
2537
			D_RATE("Fixed rate ON\n");
2538 2539
		} else {
			lq_sta->dbg_fixed_rate = 0;
2540 2541 2542
			IL_ERR
			    ("Invalid antenna selection 0x%X, Valid is 0x%X\n",
			     ant_sel_tx, valid_tx_ant);
2543
			D_RATE("Fixed rate OFF\n");
2544 2545
		}
	} else {
2546
		D_RATE("Fixed rate OFF\n");
2547 2548 2549
	}
}

2550 2551
static ssize_t
il4965_rs_sta_dbgfs_scale_table_write(struct file *file,
S
Stanislaw Gruszka 已提交
2552 2553
				      const char __user *user_buf,
				      size_t count, loff_t *ppos)
2554
{
S
Stanislaw Gruszka 已提交
2555
	struct il_lq_sta *lq_sta = file->private_data;
S
Stanislaw Gruszka 已提交
2556
	struct il_priv *il;
2557
	char buf[64];
2558
	size_t buf_size;
2559 2560
	u32 parsed_rate;

S
Stanislaw Gruszka 已提交
2561
	il = lq_sta->drv;
2562
	memset(buf, 0, sizeof(buf));
2563
	buf_size = min(count, sizeof(buf) - 1);
2564 2565 2566 2567 2568 2569 2570 2571 2572
	if (copy_from_user(buf, user_buf, buf_size))
		return -EFAULT;

	if (sscanf(buf, "%x", &parsed_rate) == 1)
		lq_sta->dbg_fixed_rate = parsed_rate;
	else
		lq_sta->dbg_fixed_rate = 0;

	lq_sta->active_legacy_rate = 0x0FFF;	/* 1 - 54 MBits, includes CCK */
2573 2574
	lq_sta->active_siso_rate = 0x1FD0;	/* 6 - 60 MBits, no 9, no CCK */
	lq_sta->active_mimo2_rate = 0x1FD0;	/* 6 - 60 MBits, no 9, no CCK */
2575

2576 2577
	D_RATE("sta_id %d rate 0x%X\n", lq_sta->lq.sta_id,
	       lq_sta->dbg_fixed_rate);
2578 2579

	if (lq_sta->dbg_fixed_rate) {
S
Stanislaw Gruszka 已提交
2580
		il4965_rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
2581
		il_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
2582 2583 2584 2585 2586
	}

	return count;
}

2587
static ssize_t
S
Stanislaw Gruszka 已提交
2588 2589
il4965_rs_sta_dbgfs_scale_table_read(struct file *file, char __user *user_buf,
				     size_t count, loff_t *ppos)
2590 2591 2592 2593
{
	char *buff;
	int desc = 0;
	int i = 0;
S
Stanislaw Gruszka 已提交
2594
	int idx = 0;
2595 2596
	ssize_t ret;

S
Stanislaw Gruszka 已提交
2597
	struct il_lq_sta *lq_sta = file->private_data;
S
Stanislaw Gruszka 已提交
2598
	struct il_priv *il;
S
Stanislaw Gruszka 已提交
2599
	struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
2600

S
Stanislaw Gruszka 已提交
2601
	il = lq_sta->drv;
2602 2603 2604 2605
	buff = kmalloc(1024, GFP_KERNEL);
	if (!buff)
		return -ENOMEM;

2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
	desc += sprintf(buff + desc, "sta_id %d\n", lq_sta->lq.sta_id);
	desc +=
	    sprintf(buff + desc, "failed=%d success=%d rate=0%X\n",
		    lq_sta->total_failed, lq_sta->total_success,
		    lq_sta->active_legacy_rate);
	desc +=
	    sprintf(buff + desc, "fixed rate 0x%X\n", lq_sta->dbg_fixed_rate);
	desc +=
	    sprintf(buff + desc, "valid_tx_ant %s%s%s\n",
		    (il->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
		    (il->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
		    (il->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
	desc +=
	    sprintf(buff + desc, "lq type %s\n",
		    (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
2621
	if (is_Ht(tbl->lq_type)) {
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632
		desc +=
		    sprintf(buff + desc, " %s",
			    (is_siso(tbl->lq_type)) ? "SISO" : "MIMO2");
		desc +=
		    sprintf(buff + desc, " %s",
			    (tbl->is_ht40) ? "40MHz" : "20MHz");
		desc +=
		    sprintf(buff + desc, " %s %s %s\n",
			    (tbl->is_SGI) ? "SGI" : "",
			    (lq_sta->is_green) ? "GF enabled" : "",
			    (lq_sta->is_agg) ? "AGG on" : "");
2633
	}
2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659
	desc +=
	    sprintf(buff + desc, "last tx rate=0x%X\n",
		    lq_sta->last_rate_n_flags);
	desc +=
	    sprintf(buff + desc,
		    "general:" "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
		    lq_sta->lq.general_params.flags,
		    lq_sta->lq.general_params.mimo_delimiter,
		    lq_sta->lq.general_params.single_stream_ant_msk,
		    lq_sta->lq.general_params.dual_stream_ant_msk);

	desc +=
	    sprintf(buff + desc,
		    "agg:"
		    "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
		    le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
		    lq_sta->lq.agg_params.agg_dis_start_th,
		    lq_sta->lq.agg_params.agg_frame_cnt_limit);

	desc +=
	    sprintf(buff + desc,
		    "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
		    lq_sta->lq.general_params.start_rate_idx[0],
		    lq_sta->lq.general_params.start_rate_idx[1],
		    lq_sta->lq.general_params.start_rate_idx[2],
		    lq_sta->lq.general_params.start_rate_idx[3]);
2660 2661

	for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
2662 2663 2664 2665
		idx =
		    il4965_hwrate_to_plcp_idx(le32_to_cpu
					      (lq_sta->lq.rs_table[i].
					       rate_n_flags));
2666
		if (is_legacy(tbl->lq_type)) {
2667 2668 2669 2670 2671
			desc +=
			    sprintf(buff + desc, " rate[%d] 0x%X %smbps\n", i,
				    le32_to_cpu(lq_sta->lq.rs_table[i].
						rate_n_flags),
				    il_rate_mcs[idx].mbps);
2672
		} else {
2673 2674 2675 2676 2677 2678 2679
			desc +=
			    sprintf(buff + desc, " rate[%d] 0x%X %smbps (%s)\n",
				    i,
				    le32_to_cpu(lq_sta->lq.rs_table[i].
						rate_n_flags),
				    il_rate_mcs[idx].mbps,
				    il_rate_mcs[idx].mcs);
2680 2681 2682 2683 2684 2685 2686 2687 2688
		}
	}

	ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
	kfree(buff);
	return ret;
}

static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
S
Stanislaw Gruszka 已提交
2689 2690
	.write = il4965_rs_sta_dbgfs_scale_table_write,
	.read = il4965_rs_sta_dbgfs_scale_table_read,
2691
	.open = simple_open,
2692 2693
	.llseek = default_llseek,
};
2694 2695

static ssize_t
S
Stanislaw Gruszka 已提交
2696 2697
il4965_rs_sta_dbgfs_stats_table_read(struct file *file, char __user *user_buf,
				     size_t count, loff_t *ppos)
2698 2699 2700 2701 2702 2703
{
	char *buff;
	int desc = 0;
	int i, j;
	ssize_t ret;

S
Stanislaw Gruszka 已提交
2704
	struct il_lq_sta *lq_sta = file->private_data;
2705 2706 2707 2708 2709 2710

	buff = kmalloc(1024, GFP_KERNEL);
	if (!buff)
		return -ENOMEM;

	for (i = 0; i < LQ_SIZE; i++) {
2711 2712 2713 2714 2715 2716 2717 2718 2719
		desc +=
		    sprintf(buff + desc,
			    "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
			    "rate=0x%X\n", lq_sta->active_tbl == i ? "*" : "x",
			    lq_sta->lq_info[i].lq_type,
			    lq_sta->lq_info[i].is_SGI,
			    lq_sta->lq_info[i].is_ht40,
			    lq_sta->lq_info[i].is_dup, lq_sta->is_green,
			    lq_sta->lq_info[i].current_rate);
S
Stanislaw Gruszka 已提交
2720
		for (j = 0; j < RATE_COUNT; j++) {
2721 2722 2723 2724 2725 2726
			desc +=
			    sprintf(buff + desc,
				    "counter=%d success=%d %%=%d\n",
				    lq_sta->lq_info[i].win[j].counter,
				    lq_sta->lq_info[i].win[j].success_counter,
				    lq_sta->lq_info[i].win[j].success_ratio);
2727 2728 2729 2730 2731 2732 2733 2734
		}
	}
	ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
	kfree(buff);
	return ret;
}

static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
S
Stanislaw Gruszka 已提交
2735
	.read = il4965_rs_sta_dbgfs_stats_table_read,
2736
	.open = simple_open,
2737 2738 2739
	.llseek = default_llseek,
};

2740 2741
static ssize_t
il4965_rs_sta_dbgfs_rate_scale_data_read(struct file *file,
S
Stanislaw Gruszka 已提交
2742 2743
					 char __user *user_buf, size_t count,
					 loff_t *ppos)
2744 2745 2746
{
	char buff[120];
	int desc = 0;
S
Stanislaw Gruszka 已提交
2747 2748
	struct il_lq_sta *lq_sta = file->private_data;
	struct il_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
2749 2750

	if (is_Ht(tbl->lq_type))
2751 2752 2753
		desc +=
		    sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
			    tbl->expected_tpt[lq_sta->last_txrate_idx]);
2754
	else
2755 2756 2757
		desc +=
		    sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
			    il_rates[lq_sta->last_txrate_idx].ieee >> 1);
2758

2759
	return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2760 2761 2762
}

static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
S
Stanislaw Gruszka 已提交
2763
	.read = il4965_rs_sta_dbgfs_rate_scale_data_read,
2764
	.open = simple_open,
2765 2766 2767
	.llseek = default_llseek,
};

2768 2769
static void
il4965_rs_add_debugfs(void *il, void *il_sta, struct dentry *dir)
2770
{
S
Stanislaw Gruszka 已提交
2771
	struct il_lq_sta *lq_sta = il_sta;
2772
	lq_sta->rs_sta_dbgfs_scale_table_file =
2773
	    debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
2774 2775
				lq_sta, &rs_sta_dbgfs_scale_table_ops);
	lq_sta->rs_sta_dbgfs_stats_table_file =
2776 2777
	    debugfs_create_file("rate_stats_table", S_IRUSR, dir, lq_sta,
				&rs_sta_dbgfs_stats_table_ops);
2778
	lq_sta->rs_sta_dbgfs_rate_scale_data_file =
2779 2780
	    debugfs_create_file("rate_scale_data", S_IRUSR, dir, lq_sta,
				&rs_sta_dbgfs_rate_scale_data_ops);
2781
	lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
2782 2783
	    debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
			      &lq_sta->tx_agg_tid_en);
2784 2785 2786

}

2787 2788
static void
il4965_rs_remove_debugfs(void *il, void *il_sta)
2789
{
S
Stanislaw Gruszka 已提交
2790
	struct il_lq_sta *lq_sta = il_sta;
2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803
	debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
	debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
	debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
	debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
}
#endif

/*
 * Initialization of rate scaling information is done by driver after
 * the station is added. Since mac80211 calls this function before a
 * station is added we ignore it.
 */
static void
S
Stanislaw Gruszka 已提交
2804
il4965_rs_rate_init_stub(void *il_r, struct ieee80211_supported_band *sband,
2805
			 struct cfg80211_chan_def *chandef,
S
Stanislaw Gruszka 已提交
2806
			 struct ieee80211_sta *sta, void *il_sta)
2807 2808
{
}
2809

2810
static const struct rate_control_ops rs_4965_ops = {
2811
	.module = NULL,
2812
	.name = IL4965_RS_NAME,
S
Stanislaw Gruszka 已提交
2813 2814 2815 2816 2817 2818 2819
	.tx_status = il4965_rs_tx_status,
	.get_rate = il4965_rs_get_rate,
	.rate_init = il4965_rs_rate_init_stub,
	.alloc = il4965_rs_alloc,
	.free = il4965_rs_free,
	.alloc_sta = il4965_rs_alloc_sta,
	.free_sta = il4965_rs_free_sta,
2820
#ifdef CONFIG_MAC80211_DEBUGFS
S
Stanislaw Gruszka 已提交
2821 2822
	.add_sta_debugfs = il4965_rs_add_debugfs,
	.remove_sta_debugfs = il4965_rs_remove_debugfs,
2823 2824 2825
#endif
};

2826 2827
int
il4965_rate_control_register(void)
2828 2829 2830 2831
{
	return ieee80211_rate_control_register(&rs_4965_ops);
}

2832 2833
void
il4965_rate_control_unregister(void)
2834 2835 2836
{
	ieee80211_rate_control_unregister(&rs_4965_ops);
}