blob: f3b8e91aa3dcf40272655336b6127d43d742a944 [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
3 * Copyright(c) 2005 - 2011 Intel Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/skbuff.h>
29#include <linux/slab.h>
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080030#include <net/mac80211.h>
31
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/delay.h>
35
36#include <linux/workqueue.h>
37
Stanislaw Gruszka98613be2011-11-15 14:19:34 +010038#include "common.h"
Stanislaw Gruszkaaf038f42011-08-30 13:58:27 +020039#include "4965.h"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080040
Stanislaw Gruszkad3175162011-11-15 11:25:42 +010041#define IL4965_RS_NAME "iwl-4965-rs"
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080042
43#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020044#define IL_NUMBER_TRY 1
45#define IL_HT_NUMBER_TRY 3
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080046
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +020047#define RATE_MAX_WINDOW 62 /* # tx in history win */
48#define RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
49#define RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080050
51/* max allowed rate miss before sync LQ cmd */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020052#define IL_MISSED_RATE_MAX 15
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080053/* max time to accum history 2 seconds */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +020054#define RATE_SCALE_FLUSH_INTVL (3*HZ)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080055
56static u8 rs_ht_to_legacy[] = {
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +020057 RATE_6M_IDX, RATE_6M_IDX,
58 RATE_6M_IDX, RATE_6M_IDX,
59 RATE_6M_IDX,
60 RATE_6M_IDX, RATE_9M_IDX,
61 RATE_12M_IDX, RATE_18M_IDX,
62 RATE_24M_IDX, RATE_36M_IDX,
63 RATE_48M_IDX, RATE_54M_IDX
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080064};
65
66static const u8 ant_toggle_lookup[] = {
67 /*ANT_NONE -> */ ANT_NONE,
68 /*ANT_A -> */ ANT_B,
69 /*ANT_B -> */ ANT_C,
70 /*ANT_AB -> */ ANT_BC,
71 /*ANT_C -> */ ANT_A,
72 /*ANT_AC -> */ ANT_AB,
73 /*ANT_BC -> */ ANT_AC,
74 /*ANT_ABC -> */ ANT_ABC,
75};
76
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020077#define IL_DECLARE_RATE_INFO(r, s, ip, in, rp, rn, pp, np) \
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +020078 [RATE_##r##M_IDX] = { RATE_##r##M_PLCP, \
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +020079 RATE_SISO_##s##M_PLCP, \
80 RATE_MIMO2_##s##M_PLCP,\
81 RATE_##r##M_IEEE, \
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +020082 RATE_##ip##M_IDX, \
83 RATE_##in##M_IDX, \
84 RATE_##rp##M_IDX, \
85 RATE_##rn##M_IDX, \
86 RATE_##pp##M_IDX, \
87 RATE_##np##M_IDX }
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080088
89/*
90 * Parameter order:
91 * rate, ht rate, prev rate, next rate, prev tgg rate, next tgg rate
92 *
93 * If there isn't a valid next or previous rate then INV is used which
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +020094 * maps to RATE_INVALID
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080095 *
96 */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +020097const struct il_rate_info il_rates[RATE_COUNT] = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +010098 IL_DECLARE_RATE_INFO(1, INV, INV, 2, INV, 2, INV, 2), /* 1mbps */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +010099 IL_DECLARE_RATE_INFO(2, INV, 1, 5, 1, 5, 1, 5), /* 2mbps */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100100 IL_DECLARE_RATE_INFO(5, INV, 2, 6, 2, 11, 2, 11), /*5.5mbps */
101 IL_DECLARE_RATE_INFO(11, INV, 9, 12, 9, 12, 5, 18), /* 11mbps */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100102 IL_DECLARE_RATE_INFO(6, 6, 5, 9, 5, 11, 5, 11), /* 6mbps */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100103 IL_DECLARE_RATE_INFO(9, 6, 6, 11, 6, 11, 5, 11), /* 9mbps */
104 IL_DECLARE_RATE_INFO(12, 12, 11, 18, 11, 18, 11, 18), /* 12mbps */
105 IL_DECLARE_RATE_INFO(18, 18, 12, 24, 12, 24, 11, 24), /* 18mbps */
106 IL_DECLARE_RATE_INFO(24, 24, 18, 36, 18, 36, 18, 36), /* 24mbps */
107 IL_DECLARE_RATE_INFO(36, 36, 24, 48, 24, 48, 24, 48), /* 36mbps */
108 IL_DECLARE_RATE_INFO(48, 48, 36, 54, 36, 54, 36, 54), /* 48mbps */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100109 IL_DECLARE_RATE_INFO(54, 54, 48, INV, 48, INV, 48, INV),/* 54mbps */
110 IL_DECLARE_RATE_INFO(60, 60, 48, INV, 48, INV, 48, INV),/* 60mbps */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800111};
112
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100113static int
114il4965_hwrate_to_plcp_idx(u32 rate_n_flags)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800115{
116 int idx = 0;
117
118 /* HT rate format */
119 if (rate_n_flags & RATE_MCS_HT_MSK) {
120 idx = (rate_n_flags & 0xff);
121
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200122 if (idx >= RATE_MIMO2_6M_PLCP)
123 idx = idx - RATE_MIMO2_6M_PLCP;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800124
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200125 idx += IL_FIRST_OFDM_RATE;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100126 /* skip 9M not supported in ht */
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +0200127 if (idx >= RATE_9M_IDX)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800128 idx += 1;
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200129 if (idx >= IL_FIRST_OFDM_RATE && idx <= IL_LAST_OFDM_RATE)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800130 return idx;
131
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100132 /* legacy rate format, search for match in table */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800133 } else {
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200134 for (idx = 0; idx < ARRAY_SIZE(il_rates); idx++)
135 if (il_rates[idx].plcp == (rate_n_flags & 0xFF))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800136 return idx;
137 }
138
139 return -1;
140}
141
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200142static void il4965_rs_rate_scale_perform(struct il_priv *il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100143 struct sk_buff *skb,
144 struct ieee80211_sta *sta,
145 struct il_lq_sta *lq_sta);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200146static void il4965_rs_fill_link_cmd(struct il_priv *il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100147 struct il_lq_sta *lq_sta, u32 rate_n_flags);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200148static void il4965_rs_stay_in_table(struct il_lq_sta *lq_sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100149 bool force_search);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800150
151#ifdef CONFIG_MAC80211_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200152static void il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100153 u32 *rate_n_flags, int idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800154#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100155static void
156il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
157{
158}
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800159#endif
160
161/**
162 * The following tables contain the expected throughput metrics for all rates
163 *
164 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
165 *
166 * where invalid entries are zeros.
167 *
168 * CCK rates are only valid in legacy table and will only be used in G
169 * (2.4 GHz) band.
170 */
171
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200172static s32 expected_tpt_legacy[RATE_COUNT] = {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800173 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0
174};
175
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200176static s32 expected_tpt_siso20MHz[4][RATE_COUNT] = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100177 {0, 0, 0, 0, 42, 0, 76, 102, 124, 158, 183, 193, 202}, /* Norm */
178 {0, 0, 0, 0, 46, 0, 82, 110, 132, 167, 192, 202, 210}, /* SGI */
179 {0, 0, 0, 0, 48, 0, 93, 135, 176, 251, 319, 351, 381}, /* AGG */
180 {0, 0, 0, 0, 53, 0, 102, 149, 193, 275, 348, 381, 413}, /* AGG+SGI */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800181};
182
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200183static s32 expected_tpt_siso40MHz[4][RATE_COUNT] = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100184 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257}, /* Norm */
185 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264}, /* SGI */
186 {0, 0, 0, 0, 96, 0, 182, 259, 328, 451, 553, 598, 640}, /* AGG */
187 {0, 0, 0, 0, 106, 0, 199, 282, 357, 487, 593, 640, 683}, /* AGG+SGI */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800188};
189
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200190static s32 expected_tpt_mimo2_20MHz[4][RATE_COUNT] = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100191 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250}, /* Norm */
192 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256}, /* SGI */
193 {0, 0, 0, 0, 92, 0, 175, 250, 317, 436, 534, 578, 619}, /* AGG */
194 {0, 0, 0, 0, 102, 0, 192, 273, 344, 470, 573, 619, 660}, /* AGG+SGI */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800195};
196
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200197static s32 expected_tpt_mimo2_40MHz[4][RATE_COUNT] = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100198 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289}, /* Norm */
199 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293}, /* SGI */
200 {0, 0, 0, 0, 180, 0, 327, 446, 545, 708, 828, 878, 922}, /* AGG */
201 {0, 0, 0, 0, 197, 0, 355, 481, 584, 752, 872, 922, 966}, /* AGG+SGI */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800202};
203
204/* mbps, mcs */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200205static const struct il_rate_mcs_info il_rate_mcs[RATE_COUNT] = {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100206 {"1", "BPSK DSSS"},
207 {"2", "QPSK DSSS"},
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800208 {"5.5", "BPSK CCK"},
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100209 {"11", "QPSK CCK"},
210 {"6", "BPSK 1/2"},
211 {"9", "BPSK 1/2"},
212 {"12", "QPSK 1/2"},
213 {"18", "QPSK 3/4"},
214 {"24", "16QAM 1/2"},
215 {"36", "16QAM 3/4"},
216 {"48", "64QAM 2/3"},
217 {"54", "64QAM 3/4"},
218 {"60", "64QAM 5/6"},
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800219};
220
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +0200221#define MCS_IDX_PER_STREAM (8)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800222
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100223static inline u8
224il4965_rs_extract_rate(u32 rate_n_flags)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800225{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100226 return (u8) (rate_n_flags & 0xFF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800227}
228
229static void
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200230il4965_rs_rate_scale_clear_win(struct il_rate_scale_data *win)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800231{
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200232 win->data = 0;
233 win->success_counter = 0;
234 win->success_ratio = IL_INVALID_VALUE;
235 win->counter = 0;
236 win->average_tpt = IL_INVALID_VALUE;
237 win->stamp = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800238}
239
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100240static inline u8
241il4965_rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800242{
243 return (ant_type & valid_antenna) == ant_type;
244}
245
246/*
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +0200247 * removes the old data from the stats. All data that is older than
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800248 * TID_MAX_TIME_DIFF, will be deleted.
249 */
250static void
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200251il4965_rs_tl_rm_old_stats(struct il_traffic_load *tl, u32 curr_time)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800252{
253 /* The oldest age we want to keep */
254 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
255
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200256 while (tl->queue_count && tl->time_stamp < oldest_time) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800257 tl->total -= tl->packet_count[tl->head];
258 tl->packet_count[tl->head] = 0;
259 tl->time_stamp += TID_QUEUE_CELL_SPACING;
260 tl->queue_count--;
261 tl->head++;
262 if (tl->head >= TID_QUEUE_MAX_SIZE)
263 tl->head = 0;
264 }
265}
266
267/*
268 * increment traffic load value for tid and also remove
269 * any old values if passed the certain time period
270 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100271static u8
272il4965_rs_tl_add_packet(struct il_lq_sta *lq_data, struct ieee80211_hdr *hdr)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800273{
274 u32 curr_time = jiffies_to_msecs(jiffies);
275 u32 time_diff;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100276 s32 idx;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200277 struct il_traffic_load *tl = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800278 u8 tid;
279
280 if (ieee80211_is_data_qos(hdr->frame_control)) {
281 u8 *qc = ieee80211_get_qos_ctl(hdr);
282 tid = qc[0] & 0xf;
283 } else
284 return MAX_TID_COUNT;
285
286 if (unlikely(tid >= TID_MAX_LOAD_COUNT))
287 return MAX_TID_COUNT;
288
289 tl = &lq_data->load[tid];
290
291 curr_time -= curr_time % TID_ROUND_VALUE;
292
293 /* Happens only for the first packet. Initialize the data */
294 if (!(tl->queue_count)) {
295 tl->total = 1;
296 tl->time_stamp = curr_time;
297 tl->queue_count = 1;
298 tl->head = 0;
299 tl->packet_count[0] = 1;
300 return MAX_TID_COUNT;
301 }
302
303 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100304 idx = time_diff / TID_QUEUE_CELL_SPACING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800305
306 /* The history is too long: remove data that is older than */
307 /* TID_MAX_TIME_DIFF */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100308 if (idx >= TID_QUEUE_MAX_SIZE)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200309 il4965_rs_tl_rm_old_stats(tl, curr_time);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800310
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100311 idx = (tl->head + idx) % TID_QUEUE_MAX_SIZE;
312 tl->packet_count[idx] = tl->packet_count[idx] + 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800313 tl->total = tl->total + 1;
314
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100315 if ((idx + 1) > tl->queue_count)
316 tl->queue_count = idx + 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800317
318 return tid;
319}
320
321/*
322 get the traffic load value for tid
323*/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100324static u32
325il4965_rs_tl_get_load(struct il_lq_sta *lq_data, u8 tid)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800326{
327 u32 curr_time = jiffies_to_msecs(jiffies);
328 u32 time_diff;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100329 s32 idx;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200330 struct il_traffic_load *tl = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800331
332 if (tid >= TID_MAX_LOAD_COUNT)
333 return 0;
334
335 tl = &(lq_data->load[tid]);
336
337 curr_time -= curr_time % TID_ROUND_VALUE;
338
339 if (!(tl->queue_count))
340 return 0;
341
342 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100343 idx = time_diff / TID_QUEUE_CELL_SPACING;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800344
345 /* The history is too long: remove data that is older than */
346 /* TID_MAX_TIME_DIFF */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100347 if (idx >= TID_QUEUE_MAX_SIZE)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200348 il4965_rs_tl_rm_old_stats(tl, curr_time);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800349
350 return tl->total;
351}
352
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100353static int
354il4965_rs_tl_turn_on_agg_for_tid(struct il_priv *il, struct il_lq_sta *lq_data,
355 u8 tid, struct ieee80211_sta *sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800356{
357 int ret = -EAGAIN;
358 u32 load;
359
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200360 load = il4965_rs_tl_get_load(lq_data, tid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800361
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200362 if (load > IL_AGG_LOAD_THRESHOLD) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100363 D_HT("Starting Tx agg: STA: %pM tid: %d\n", sta->addr, tid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800364 ret = ieee80211_start_tx_ba_session(sta, tid, 5000);
365 if (ret == -EAGAIN) {
366 /*
367 * driver and mac80211 is out of sync
368 * this might be cause by reloading firmware
369 * stop the tx ba session here
370 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100371 IL_ERR("Fail start Tx agg on tid: %d\n", tid);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800372 ieee80211_stop_tx_ba_session(sta, tid);
373 }
Greg Dietschedd44eb92011-08-28 08:32:10 -0500374 } else
375 D_HT("Aggregation not enabled for tid %d because load = %u\n",
376 tid, load);
377
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800378 return ret;
379}
380
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100381static void
382il4965_rs_tl_turn_on_agg(struct il_priv *il, u8 tid, struct il_lq_sta *lq_data,
383 struct ieee80211_sta *sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800384{
385 if (tid < TID_MAX_LOAD_COUNT)
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200386 il4965_rs_tl_turn_on_agg_for_tid(il, lq_data, tid, sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800387 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100388 IL_ERR("tid exceeds max load count: %d/%d\n", tid,
389 TID_MAX_LOAD_COUNT);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800390}
391
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100392static inline int
393il4965_get_il4965_num_of_ant_from_rate(u32 rate_n_flags)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800394{
395 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100396 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
397 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800398}
399
400/*
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200401 * Static function to get the expected throughput from an il_scale_tbl_info
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800402 * that wraps a NULL pointer check
403 */
404static s32
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100405il4965_get_expected_tpt(struct il_scale_tbl_info *tbl, int rs_idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800406{
407 if (tbl->expected_tpt)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100408 return tbl->expected_tpt[rs_idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800409 return 0;
410}
411
412/**
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200413 * il4965_rs_collect_tx_data - Update the success/failure sliding win
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800414 *
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200415 * We keep a sliding win of the last 62 packets transmitted
416 * at this rate. win->data contains the bitmask of successful
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800417 * packets.
418 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100419static int
420il4965_rs_collect_tx_data(struct il_scale_tbl_info *tbl, int scale_idx,
421 int attempts, int successes)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800422{
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200423 struct il_rate_scale_data *win = NULL;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100424 static const u64 mask = (((u64) 1) << (RATE_MAX_WINDOW - 1));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800425 s32 fail_count, tpt;
426
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100427 if (scale_idx < 0 || scale_idx >= RATE_COUNT)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800428 return -EINVAL;
429
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200430 /* Select win for current tx bit rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100431 win = &(tbl->win[scale_idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800432
433 /* Get expected throughput */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100434 tpt = il4965_get_expected_tpt(tbl, scale_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800435
436 /*
437 * Keep track of only the latest 62 tx frame attempts in this rate's
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200438 * history win; anything older isn't really relevant any more.
439 * If we have filled up the sliding win, drop the oldest attempt;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800440 * if the oldest attempt (highest bit in bitmap) shows "success",
441 * subtract "1" from the success counter (this is the main reason
442 * we keep these bitmaps!).
443 */
444 while (attempts > 0) {
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200445 if (win->counter >= RATE_MAX_WINDOW) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800446
447 /* remove earliest */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200448 win->counter = RATE_MAX_WINDOW - 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800449
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200450 if (win->data & mask) {
451 win->data &= ~mask;
452 win->success_counter--;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800453 }
454 }
455
456 /* Increment frames-attempted counter */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200457 win->counter++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800458
459 /* Shift bitmap by one frame to throw away oldest history */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200460 win->data <<= 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800461
462 /* Mark the most recent #successes attempts as successful */
463 if (successes > 0) {
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200464 win->success_counter++;
465 win->data |= 0x1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800466 successes--;
467 }
468
469 attempts--;
470 }
471
472 /* Calculate current success ratio, avoid divide-by-0! */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200473 if (win->counter > 0)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100474 win->success_ratio =
475 128 * (100 * win->success_counter) / win->counter;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800476 else
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200477 win->success_ratio = IL_INVALID_VALUE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800478
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200479 fail_count = win->counter - win->success_counter;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800480
481 /* Calculate average throughput, if we have enough history. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200482 if (fail_count >= RATE_MIN_FAILURE_TH ||
483 win->success_counter >= RATE_MIN_SUCCESS_TH)
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200484 win->average_tpt = (win->success_ratio * tpt + 64) / 128;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800485 else
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200486 win->average_tpt = IL_INVALID_VALUE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800487
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +0200488 /* Tag this win as having been updated */
489 win->stamp = jiffies;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800490
491 return 0;
492}
493
494/*
495 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
496 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100497static u32
498il4965_rate_n_flags_from_tbl(struct il_priv *il, struct il_scale_tbl_info *tbl,
499 int idx, u8 use_green)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800500{
501 u32 rate_n_flags = 0;
502
503 if (is_legacy(tbl->lq_type)) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100504 rate_n_flags = il_rates[idx].plcp;
505 if (idx >= IL_FIRST_CCK_RATE && idx <= IL_LAST_CCK_RATE)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800506 rate_n_flags |= RATE_MCS_CCK_MSK;
507
508 } else if (is_Ht(tbl->lq_type)) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100509 if (idx > IL_LAST_OFDM_RATE) {
510 IL_ERR("Invalid HT rate idx %d\n", idx);
511 idx = IL_LAST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800512 }
513 rate_n_flags = RATE_MCS_HT_MSK;
514
515 if (is_siso(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100516 rate_n_flags |= il_rates[idx].plcp_siso;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800517 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100518 rate_n_flags |= il_rates[idx].plcp_mimo2;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800519 } else {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200520 IL_ERR("Invalid tbl->lq_type %d\n", tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800521 }
522
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100523 rate_n_flags |=
524 ((tbl->ant_type << RATE_MCS_ANT_POS) & RATE_MCS_ANT_ABC_MSK);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800525
526 if (is_Ht(tbl->lq_type)) {
527 if (tbl->is_ht40) {
528 if (tbl->is_dup)
529 rate_n_flags |= RATE_MCS_DUP_MSK;
530 else
531 rate_n_flags |= RATE_MCS_HT40_MSK;
532 }
533 if (tbl->is_SGI)
534 rate_n_flags |= RATE_MCS_SGI_MSK;
535
536 if (use_green) {
537 rate_n_flags |= RATE_MCS_GF_MSK;
538 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
539 rate_n_flags &= ~RATE_MCS_SGI_MSK;
Stanislaw Gruszka9406f792011-08-18 22:07:57 +0200540 IL_ERR("GF was set with SGI:SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800541 }
542 }
543 }
544 return rate_n_flags;
545}
546
547/*
548 * Interpret uCode API's rate_n_flags format,
549 * fill "search" or "active" tx mode table.
550 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100551static int
552il4965_rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
553 enum ieee80211_band band,
554 struct il_scale_tbl_info *tbl, int *rate_idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800555{
556 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100557 u8 il4965_num_of_ant =
558 il4965_get_il4965_num_of_ant_from_rate(rate_n_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800559 u8 mcs;
560
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200561 memset(tbl, 0, sizeof(struct il_scale_tbl_info));
562 *rate_idx = il4965_hwrate_to_plcp_idx(rate_n_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800563
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100564 if (*rate_idx == RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800565 *rate_idx = -1;
566 return -EINVAL;
567 }
568 tbl->is_SGI = 0; /* default legacy setup */
569 tbl->is_ht40 = 0;
570 tbl->is_dup = 0;
571 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
572 tbl->lq_type = LQ_NONE;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200573 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800574
575 /* legacy rate format */
576 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200577 if (il4965_num_of_ant == 1) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800578 if (band == IEEE80211_BAND_5GHZ)
579 tbl->lq_type = LQ_A;
580 else
581 tbl->lq_type = LQ_G;
582 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100583 /* HT rate format */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800584 } else {
585 if (rate_n_flags & RATE_MCS_SGI_MSK)
586 tbl->is_SGI = 1;
587
588 if ((rate_n_flags & RATE_MCS_HT40_MSK) ||
589 (rate_n_flags & RATE_MCS_DUP_MSK))
590 tbl->is_ht40 = 1;
591
592 if (rate_n_flags & RATE_MCS_DUP_MSK)
593 tbl->is_dup = 1;
594
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200595 mcs = il4965_rs_extract_rate(rate_n_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800596
597 /* SISO */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200598 if (mcs <= RATE_SISO_60M_PLCP) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200599 if (il4965_num_of_ant == 1)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100600 tbl->lq_type = LQ_SISO; /*else NONE */
601 /* MIMO2 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800602 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200603 if (il4965_num_of_ant == 2)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800604 tbl->lq_type = LQ_MIMO2;
605 }
606 }
607 return 0;
608}
609
610/* switch to another antenna/antennas and return 1 */
611/* if no other valid antenna found, return 0 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100612static int
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100613il4965_rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100614 struct il_scale_tbl_info *tbl)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800615{
616 u8 new_ant_type;
617
618 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
619 return 0;
620
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200621 if (!il4965_rs_is_valid_ant(valid_ant, tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800622 return 0;
623
624 new_ant_type = ant_toggle_lookup[tbl->ant_type];
625
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200626 while (new_ant_type != tbl->ant_type &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200627 !il4965_rs_is_valid_ant(valid_ant, new_ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800628 new_ant_type = ant_toggle_lookup[new_ant_type];
629
630 if (new_ant_type == tbl->ant_type)
631 return 0;
632
633 tbl->ant_type = new_ant_type;
634 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
635 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
636 return 1;
637}
638
639/**
640 * Green-field mode is valid if the station supports it and
641 * there are no non-GF stations present in the BSS.
642 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100643static bool
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +0100644il4965_rs_use_green(struct il_priv *il, struct ieee80211_sta *sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800645{
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800646 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +0100647 !il->ht.non_gf_sta_present;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800648}
649
650/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200651 * il4965_rs_get_supported_rates - get the available rates
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800652 *
653 * if management frame or broadcast frame only return
654 * basic available rates.
655 *
656 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100657static u16
658il4965_rs_get_supported_rates(struct il_lq_sta *lq_sta,
659 struct ieee80211_hdr *hdr,
660 enum il_table_type rate_type)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800661{
662 if (is_legacy(rate_type)) {
663 return lq_sta->active_legacy_rate;
664 } else {
665 if (is_siso(rate_type))
666 return lq_sta->active_siso_rate;
667 else
668 return lq_sta->active_mimo2_rate;
669 }
670}
671
672static u16
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100673il4965_rs_get_adjacent_rate(struct il_priv *il, u8 idx, u16 rate_mask,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100674 int rate_type)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800675{
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200676 u8 high = RATE_INVALID;
677 u8 low = RATE_INVALID;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800678
679 /* 802.11A or ht walks to the next literal adjacent rate in
680 * the rate table */
681 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
682 int i;
683 u32 mask;
684
685 /* Find the previous rate that is in the rate mask */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100686 i = idx - 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800687 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
688 if (rate_mask & mask) {
689 low = i;
690 break;
691 }
692 }
693
694 /* Find the next rate that is in the rate mask */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100695 i = idx + 1;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200696 for (mask = (1 << i); i < RATE_COUNT; i++, mask <<= 1) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800697 if (rate_mask & mask) {
698 high = i;
699 break;
700 }
701 }
702
703 return (high << 8) | low;
704 }
705
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100706 low = idx;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200707 while (low != RATE_INVALID) {
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200708 low = il_rates[low].prev_rs;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200709 if (low == RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800710 break;
711 if (rate_mask & (1 << low))
712 break;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100713 D_RATE("Skipping masked lower rate: %d\n", low);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800714 }
715
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100716 high = idx;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200717 while (high != RATE_INVALID) {
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200718 high = il_rates[high].next_rs;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200719 if (high == RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800720 break;
721 if (rate_mask & (1 << high))
722 break;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100723 D_RATE("Skipping masked higher rate: %d\n", high);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800724 }
725
726 return (high << 8) | low;
727}
728
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100729static u32
730il4965_rs_get_lower_rate(struct il_lq_sta *lq_sta,
731 struct il_scale_tbl_info *tbl, u8 scale_idx,
732 u8 ht_possible)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800733{
734 s32 low;
735 u16 rate_mask;
736 u16 high_low;
737 u8 switch_to_legacy = 0;
738 u8 is_green = lq_sta->is_green;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200739 struct il_priv *il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800740
741 /* check if we need to switch from HT to legacy rates.
742 * assumption is that mandatory rates (1Mbps or 6Mbps)
743 * are always supported (spec demand) */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100744 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_idx)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800745 switch_to_legacy = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100746 scale_idx = rs_ht_to_legacy[scale_idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800747 if (lq_sta->band == IEEE80211_BAND_5GHZ)
748 tbl->lq_type = LQ_A;
749 else
750 tbl->lq_type = LQ_G;
751
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200752 if (il4965_num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800753 tbl->ant_type =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100754 il4965_first_antenna(il->hw_params.valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800755
756 tbl->is_ht40 = 0;
757 tbl->is_SGI = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200758 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800759 }
760
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200761 rate_mask = il4965_rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800762
763 /* Mask with station rate restriction */
764 if (is_legacy(tbl->lq_type)) {
765 /* supp_rates has no CCK bits in A mode */
766 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100767 rate_mask =
768 (u16) (rate_mask &
769 (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800770 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100771 rate_mask = (u16) (rate_mask & lq_sta->supp_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800772 }
773
774 /* If we switched from HT to legacy, check current rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100775 if (switch_to_legacy && (rate_mask & (1 << scale_idx))) {
776 low = scale_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800777 goto out;
778 }
779
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100780 high_low =
781 il4965_rs_get_adjacent_rate(lq_sta->drv, scale_idx, rate_mask,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800782 tbl->lq_type);
783 low = high_low & 0xff;
784
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200785 if (low == RATE_INVALID)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100786 low = scale_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800787
788out:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200789 return il4965_rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800790}
791
792/*
793 * Simple function to compare two rate scale table types
794 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100795static bool
796il4965_table_type_matches(struct il_scale_tbl_info *a,
797 struct il_scale_tbl_info *b)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800798{
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200799 return (a->lq_type == b->lq_type && a->ant_type == b->ant_type &&
800 a->is_SGI == b->is_SGI);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800801}
802
803/*
804 * mac80211 sends us Tx status
805 */
806static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200807il4965_rs_tx_status(void *il_r, struct ieee80211_supported_band *sband,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100808 struct ieee80211_sta *sta, void *il_sta,
809 struct sk_buff *skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800810{
811 int legacy_success;
812 int retries;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100813 int rs_idx, mac_idx, i;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200814 struct il_lq_sta *lq_sta = il_sta;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200815 struct il_link_quality_cmd *table;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800816 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200817 struct il_priv *il = (struct il_priv *)il_r;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800818 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
819 enum mac80211_rate_control_flags mac_flags;
820 u32 tx_rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200821 struct il_scale_tbl_info tbl_type;
822 struct il_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800823
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100824 D_RATE("get frame ack response, update rate scale win\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800825
826 /* Treat uninitialized rate scaling data same as non-existing. */
827 if (!lq_sta) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100828 D_RATE("Station rate scaling not created yet.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800829 return;
830 } else if (!lq_sta->drv) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100831 D_RATE("Rate scaling not initialized yet.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800832 return;
833 }
834
835 if (!ieee80211_is_data(hdr->frame_control) ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200836 (info->flags & IEEE80211_TX_CTL_NO_ACK))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800837 return;
838
839 /* This packet was aggregated but doesn't carry status info */
840 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
841 !(info->flags & IEEE80211_TX_STAT_AMPDU))
842 return;
843
844 /*
845 * Ignore this Tx frame response if its initial rate doesn't match
846 * that of latest Link Quality command. There may be stragglers
847 * from a previous Link Quality command, but we're no longer interested
848 * in those; they're either from the "active" mode while we're trying
849 * to check "search" mode, or a prior "search" mode after we've moved
850 * to a new "search" mode (which might become the new "active" mode).
851 */
852 table = &lq_sta->lq;
853 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100854 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type, &rs_idx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200855 if (il->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100856 rs_idx -= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800857 mac_flags = info->status.rates[0].flags;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100858 mac_idx = info->status.rates[0].idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800859 /* For HT packets, map MCS to PLCP */
860 if (mac_flags & IEEE80211_TX_RC_MCS) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100861 mac_idx &= RATE_MCS_CODE_MSK; /* Remove # of streams */
862 if (mac_idx >= (RATE_9M_IDX - IL_FIRST_OFDM_RATE))
863 mac_idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800864 /*
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100865 * mac80211 HT idx is always zero-idxed; we need to move
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800866 * HT OFDM rates after CCK rates in 2.4 GHz band
867 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200868 if (il->band == IEEE80211_BAND_2GHZ)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100869 mac_idx += IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800870 }
871 /* Here we actually compare this rate to the latest LQ command */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100872 if (mac_idx < 0 ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200873 tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI) ||
874 tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ||
875 tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA) ||
Johannes Bergd748b462012-03-28 11:04:23 +0200876 tbl_type.ant_type != info->status.antenna ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100877 !!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)
878 || !!(tx_rate & RATE_MCS_GF_MSK) !=
879 !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD) || rs_idx != mac_idx) {
880 D_RATE("initial rate %d does not match %d (0x%x)\n", mac_idx,
881 rs_idx, tx_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800882 /*
883 * Since rates mis-match, the last LQ command may have failed.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200884 * After IL_MISSED_RATE_MAX mis-matches, resync the uCode with
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800885 * ... driver.
886 */
887 lq_sta->missed_rate_counter++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200888 if (lq_sta->missed_rate_counter > IL_MISSED_RATE_MAX) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800889 lq_sta->missed_rate_counter = 0;
Stanislaw Gruszka83007192012-02-03 17:31:57 +0100890 il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800891 }
892 /* Regardless, ignore this status info for outdated rate */
893 return;
894 } else
895 /* Rate did match, so reset the missed_rate_counter */
896 lq_sta->missed_rate_counter = 0;
897
898 /* Figure out if rate scale algorithm is in active or search table */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100899 if (il4965_table_type_matches
900 (&tbl_type, &(lq_sta->lq_info[lq_sta->active_tbl]))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800901 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
902 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100903 } else
904 if (il4965_table_type_matches
905 (&tbl_type, &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800906 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
907 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
908 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100909 D_RATE("Neither active nor search matches tx rate\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800910 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100911 D_RATE("active- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
912 tmp_tbl->ant_type, tmp_tbl->is_SGI);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800913 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100914 D_RATE("search- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
915 tmp_tbl->ant_type, tmp_tbl->is_SGI);
916 D_RATE("actual- lq:%x, ant:%x, SGI:%d\n", tbl_type.lq_type,
917 tbl_type.ant_type, tbl_type.is_SGI);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800918 /*
919 * no matching table found, let's by-pass the data collection
920 * and continue to perform rate scale to find the rate table
921 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200922 il4965_rs_stay_in_table(lq_sta, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800923 goto done;
924 }
925
926 /*
927 * Updating the frame history depends on whether packets were
928 * aggregated.
929 *
930 * For aggregation, all packets were transmitted at the same rate, the
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100931 * first idx into rate scale table.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800932 */
933 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
934 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200935 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100936 &rs_idx);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100937 il4965_rs_collect_tx_data(curr_tbl, rs_idx,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100938 info->status.ampdu_len,
939 info->status.ampdu_ack_len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800940
941 /* Update success/fail counts if not searching for new mode */
942 if (lq_sta->stay_in_tbl) {
943 lq_sta->total_success += info->status.ampdu_ack_len;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100944 lq_sta->total_failed +=
945 (info->status.ampdu_len -
946 info->status.ampdu_ack_len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800947 }
948 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100949 /*
950 * For legacy, update frame history with for each Tx retry.
951 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800952 retries = info->status.rates[0].count - 1;
953 /* HW doesn't send more than 15 retries */
954 retries = min(retries, 15);
955
956 /* The last transmission may have been successful */
957 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
958 /* Collect data for each rate used during failed TX attempts */
959 for (i = 0; i <= retries; ++i) {
960 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200961 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100962 &tbl_type, &rs_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800963 /*
964 * Only collect stats if retried rate is in the same RS
965 * table as active/search.
966 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200967 if (il4965_table_type_matches(&tbl_type, curr_tbl))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800968 tmp_tbl = curr_tbl;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100969 else if (il4965_table_type_matches
970 (&tbl_type, other_tbl))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800971 tmp_tbl = other_tbl;
972 else
973 continue;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100974 il4965_rs_collect_tx_data(tmp_tbl, rs_idx, 1,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100975 i <
976 retries ? 0 : legacy_success);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800977 }
978
979 /* Update success/fail counts if not searching for new mode */
980 if (lq_sta->stay_in_tbl) {
981 lq_sta->total_success += legacy_success;
982 lq_sta->total_failed += retries + (1 - legacy_success);
983 }
984 }
985 /* The last TX rate is cached in lq_sta; it's set in if/else above */
986 lq_sta->last_rate_n_flags = tx_rate;
987done:
988 /* See if there's a better rate or modulation mode to try. */
Greg Dietscheda6134d2011-09-06 17:38:34 -0500989 if (sta->supp_rates[sband->band])
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200990 il4965_rs_rate_scale_perform(il, skb, sta, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800991}
992
993/*
994 * Begin a period of staying with a selected modulation mode.
995 * Set "stay_in_tbl" flag to prevent any mode switches.
996 * Set frame tx success limits according to legacy vs. high-throughput,
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +0200997 * and reset overall (spanning all rates) tx success history stats.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800998 * These control how long we stay using same modulation mode before
999 * searching for a new mode.
1000 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001001static void
1002il4965_rs_set_stay_in_table(struct il_priv *il, u8 is_legacy,
1003 struct il_lq_sta *lq_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001004{
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001005 D_RATE("we are staying in the same table\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001006 lq_sta->stay_in_tbl = 1; /* only place this gets set */
1007 if (is_legacy) {
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001008 lq_sta->table_count_limit = IL_LEGACY_TBL_COUNT;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001009 lq_sta->max_failure_limit = IL_LEGACY_FAILURE_LIMIT;
1010 lq_sta->max_success_limit = IL_LEGACY_SUCCESS_LIMIT;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001011 } else {
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001012 lq_sta->table_count_limit = IL_NONE_LEGACY_TBL_COUNT;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001013 lq_sta->max_failure_limit = IL_NONE_LEGACY_FAILURE_LIMIT;
1014 lq_sta->max_success_limit = IL_NONE_LEGACY_SUCCESS_LIMIT;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001015 }
1016 lq_sta->table_count = 0;
1017 lq_sta->total_failed = 0;
1018 lq_sta->total_success = 0;
1019 lq_sta->flush_timer = jiffies;
1020 lq_sta->action_counter = 0;
1021}
1022
1023/*
1024 * Find correct throughput table for given mode of modulation
1025 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001026static void
1027il4965_rs_set_expected_tpt_table(struct il_lq_sta *lq_sta,
1028 struct il_scale_tbl_info *tbl)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001029{
1030 /* Used to choose among HT tables */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001031 s32(*ht_tbl_pointer)[RATE_COUNT];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001032
1033 /* Check for invalid LQ type */
1034 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1035 tbl->expected_tpt = expected_tpt_legacy;
1036 return;
1037 }
1038
1039 /* Legacy rates have only one table */
1040 if (is_legacy(tbl->lq_type)) {
1041 tbl->expected_tpt = expected_tpt_legacy;
1042 return;
1043 }
1044
1045 /* Choose among many HT tables depending on number of streams
1046 * (SISO/MIMO2), channel width (20/40), SGI, and aggregation
1047 * status */
1048 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1049 ht_tbl_pointer = expected_tpt_siso20MHz;
1050 else if (is_siso(tbl->lq_type))
1051 ht_tbl_pointer = expected_tpt_siso40MHz;
1052 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1053 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001054 else /* if (is_mimo2(tbl->lq_type)) <-- must be true */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001055 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1056
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001057 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001058 tbl->expected_tpt = ht_tbl_pointer[0];
1059 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1060 tbl->expected_tpt = ht_tbl_pointer[1];
1061 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1062 tbl->expected_tpt = ht_tbl_pointer[2];
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001063 else /* AGG+SGI */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001064 tbl->expected_tpt = ht_tbl_pointer[3];
1065}
1066
1067/*
1068 * Find starting rate for new "search" high-throughput mode of modulation.
1069 * Goal is to find lowest expected rate (under perfect conditions) that is
1070 * above the current measured throughput of "active" mode, to give new mode
1071 * a fair chance to prove itself without too many challenges.
1072 *
1073 * This gets called when transitioning to more aggressive modulation
1074 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1075 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1076 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1077 * bit rate will typically need to increase, but not if performance was bad.
1078 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001079static s32
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001080il4965_rs_get_best_rate(struct il_priv *il, struct il_lq_sta *lq_sta,
1081 struct il_scale_tbl_info *tbl, /* "search" */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001082 u16 rate_mask, s8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001083{
1084 /* "active" values */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001085 struct il_scale_tbl_info *active_tbl =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001086 &(lq_sta->lq_info[lq_sta->active_tbl]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001087 s32 active_sr = active_tbl->win[idx].success_ratio;
1088 s32 active_tpt = active_tbl->expected_tpt[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001089
1090 /* expected "search" throughput */
1091 s32 *tpt_tbl = tbl->expected_tpt;
1092
1093 s32 new_rate, high, low, start_hi;
1094 u16 high_low;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001095 s8 rate = idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001096
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001097 new_rate = high = low = start_hi = RATE_INVALID;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001098
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001099 for (;;) {
1100 high_low =
1101 il4965_rs_get_adjacent_rate(il, rate, rate_mask,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001102 tbl->lq_type);
1103
1104 low = high_low & 0xff;
1105 high = (high_low >> 8) & 0xff;
1106
1107 /*
1108 * Lower the "search" bit rate, to give new "search" mode
1109 * approximately the same throughput as "active" if:
1110 *
1111 * 1) "Active" mode has been working modestly well (but not
1112 * great), and expected "search" throughput (under perfect
1113 * conditions) at candidate rate is above the actual
1114 * measured "active" throughput (but less than expected
1115 * "active" throughput under perfect conditions).
1116 * OR
1117 * 2) "Active" mode has been working perfectly or very well
1118 * and expected "search" throughput (under perfect
1119 * conditions) at candidate rate is above expected
1120 * "active" throughput (under perfect conditions).
1121 */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001122 if ((100 * tpt_tbl[rate] > lq_sta->last_tpt &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001123 (active_sr > RATE_DECREASE_TH && active_sr <= RATE_HIGH_TH
1124 && tpt_tbl[rate] <= active_tpt)) ||
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001125 (active_sr >= RATE_SCALE_SWITCH &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001126 tpt_tbl[rate] > active_tpt)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001127
1128 /* (2nd or later pass)
1129 * If we've already tried to raise the rate, and are
1130 * now trying to lower it, use the higher rate. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001131 if (start_hi != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001132 new_rate = start_hi;
1133 break;
1134 }
1135
1136 new_rate = rate;
1137
1138 /* Loop again with lower rate */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001139 if (low != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001140 rate = low;
1141
1142 /* Lower rate not available, use the original */
1143 else
1144 break;
1145
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001146 /* Else try to raise the "search" rate to match "active" */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001147 } else {
1148 /* (2nd or later pass)
1149 * If we've already tried to lower the rate, and are
1150 * now trying to raise it, use the lower rate. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001151 if (new_rate != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001152 break;
1153
1154 /* Loop again with higher rate */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001155 else if (high != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001156 start_hi = high;
1157 rate = high;
1158
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001159 /* Higher rate not available, use the original */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001160 } else {
1161 new_rate = rate;
1162 break;
1163 }
1164 }
1165 }
1166
1167 return new_rate;
1168}
1169
1170/*
1171 * Set up search table for MIMO2
1172 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001173static int
1174il4965_rs_switch_to_mimo2(struct il_priv *il, struct il_lq_sta *lq_sta,
1175 struct ieee80211_conf *conf,
1176 struct ieee80211_sta *sta,
1177 struct il_scale_tbl_info *tbl, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001178{
1179 u16 rate_mask;
1180 s32 rate;
1181 s8 is_green = lq_sta->is_green;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001182
1183 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1184 return -1;
1185
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001186 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2) ==
1187 WLAN_HT_CAP_SM_PS_STATIC)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001188 return -1;
1189
1190 /* Need both Tx chains/antennas to support MIMO */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001191 if (il->hw_params.tx_chains_num < 2)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001192 return -1;
1193
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001194 D_RATE("LQ: try to switch to MIMO2\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001195
1196 tbl->lq_type = LQ_MIMO2;
1197 tbl->is_dup = lq_sta->is_dup;
1198 tbl->action = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001199 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001200 rate_mask = lq_sta->active_mimo2_rate;
1201
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001202 if (il_is_ht40_tx_allowed(il, &sta->ht_cap))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001203 tbl->is_ht40 = 1;
1204 else
1205 tbl->is_ht40 = 0;
1206
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001207 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001208
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001209 rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001210
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001211 D_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001212 if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001213 D_RATE("Can't switch with idx %d rate mask %x\n", rate,
1214 rate_mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001215 return -1;
1216 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001217 tbl->current_rate =
1218 il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001219
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001220 D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
1221 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001222 return 0;
1223}
1224
1225/*
1226 * Set up search table for SISO
1227 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001228static int
1229il4965_rs_switch_to_siso(struct il_priv *il, struct il_lq_sta *lq_sta,
1230 struct ieee80211_conf *conf, struct ieee80211_sta *sta,
1231 struct il_scale_tbl_info *tbl, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001232{
1233 u16 rate_mask;
1234 u8 is_green = lq_sta->is_green;
1235 s32 rate;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001236
1237 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1238 return -1;
1239
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001240 D_RATE("LQ: try to switch to SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001241
1242 tbl->is_dup = lq_sta->is_dup;
1243 tbl->lq_type = LQ_SISO;
1244 tbl->action = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001245 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001246 rate_mask = lq_sta->active_siso_rate;
1247
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001248 if (il_is_ht40_tx_allowed(il, &sta->ht_cap))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001249 tbl->is_ht40 = 1;
1250 else
1251 tbl->is_ht40 = 0;
1252
1253 if (is_green)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001254 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001255
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001256 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001257 rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001258
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001259 D_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001260 if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001261 D_RATE("can not switch with idx %d rate mask %x\n", rate,
1262 rate_mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001263 return -1;
1264 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001265 tbl->current_rate =
1266 il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
1267 D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
1268 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001269 return 0;
1270}
1271
1272/*
1273 * Try to switch to new modulation mode from legacy
1274 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001275static int
1276il4965_rs_move_legacy_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1277 struct ieee80211_conf *conf,
1278 struct ieee80211_sta *sta, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001279{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001280 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1281 struct il_scale_tbl_info *search_tbl =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001282 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001283 struct il_rate_scale_data *win = &(tbl->win[idx]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001284 u32 sz =
1285 (sizeof(struct il_scale_tbl_info) -
1286 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001287 u8 start_action;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001288 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1289 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001290 int ret = 0;
1291 u8 update_search_tbl_counter = 0;
1292
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001293 tbl->action = IL_LEGACY_SWITCH_SISO;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001294
1295 start_action = tbl->action;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001296 for (;;) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001297 lq_sta->action_counter++;
1298 switch (tbl->action) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001299 case IL_LEGACY_SWITCH_ANTENNA1:
1300 case IL_LEGACY_SWITCH_ANTENNA2:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001301 D_RATE("LQ: Legacy toggle Antenna\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001302
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001303 if ((tbl->action == IL_LEGACY_SWITCH_ANTENNA1 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001304 tx_chains_num <= 1) ||
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001305 (tbl->action == IL_LEGACY_SWITCH_ANTENNA2 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001306 tx_chains_num <= 2))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001307 break;
1308
1309 /* Don't change antenna if success has been great */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001310 if (win->success_ratio >= IL_RS_GOOD_RATIO)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001311 break;
1312
1313 /* Set up search table to try other antenna */
1314 memcpy(search_tbl, tbl, sz);
1315
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001316 if (il4965_rs_toggle_antenna
1317 (valid_tx_ant, &search_tbl->current_rate,
1318 search_tbl)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001319 update_search_tbl_counter = 1;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001320 il4965_rs_set_expected_tpt_table(lq_sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001321 search_tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001322 goto out;
1323 }
1324 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001325 case IL_LEGACY_SWITCH_SISO:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001326 D_RATE("LQ: Legacy switch to SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001327
1328 /* Set up search table to try SISO */
1329 memcpy(search_tbl, tbl, sz);
1330 search_tbl->is_SGI = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001331 ret =
1332 il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
1333 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001334 if (!ret) {
1335 lq_sta->action_counter = 0;
1336 goto out;
1337 }
1338
1339 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001340 case IL_LEGACY_SWITCH_MIMO2_AB:
1341 case IL_LEGACY_SWITCH_MIMO2_AC:
1342 case IL_LEGACY_SWITCH_MIMO2_BC:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001343 D_RATE("LQ: Legacy switch to MIMO2\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001344
1345 /* Set up search table to try MIMO */
1346 memcpy(search_tbl, tbl, sz);
1347 search_tbl->is_SGI = 0;
1348
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001349 if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AB)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001350 search_tbl->ant_type = ANT_AB;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001351 else if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AC)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001352 search_tbl->ant_type = ANT_AC;
1353 else
1354 search_tbl->ant_type = ANT_BC;
1355
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001356 if (!il4965_rs_is_valid_ant
1357 (valid_tx_ant, search_tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001358 break;
1359
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001360 ret =
1361 il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
1362 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001363 if (!ret) {
1364 lq_sta->action_counter = 0;
1365 goto out;
1366 }
1367 break;
1368 }
1369 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001370 if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
1371 tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001372
1373 if (tbl->action == start_action)
1374 break;
1375
1376 }
1377 search_tbl->lq_type = LQ_NONE;
1378 return 0;
1379
1380out:
1381 lq_sta->search_better_tbl = 1;
1382 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001383 if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
1384 tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001385 if (update_search_tbl_counter)
1386 search_tbl->action = tbl->action;
1387 return 0;
1388
1389}
1390
1391/*
1392 * Try to switch to new modulation mode from SISO
1393 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001394static int
1395il4965_rs_move_siso_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1396 struct ieee80211_conf *conf,
1397 struct ieee80211_sta *sta, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001398{
1399 u8 is_green = lq_sta->is_green;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001400 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1401 struct il_scale_tbl_info *search_tbl =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001402 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001403 struct il_rate_scale_data *win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001404 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001405 u32 sz =
1406 (sizeof(struct il_scale_tbl_info) -
1407 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001408 u8 start_action;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001409 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1410 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001411 u8 update_search_tbl_counter = 0;
1412 int ret;
1413
1414 start_action = tbl->action;
1415
1416 for (;;) {
1417 lq_sta->action_counter++;
1418 switch (tbl->action) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001419 case IL_SISO_SWITCH_ANTENNA1:
1420 case IL_SISO_SWITCH_ANTENNA2:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001421 D_RATE("LQ: SISO toggle Antenna\n");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001422 if ((tbl->action == IL_SISO_SWITCH_ANTENNA1 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001423 tx_chains_num <= 1) ||
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001424 (tbl->action == IL_SISO_SWITCH_ANTENNA2 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001425 tx_chains_num <= 2))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001426 break;
1427
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001428 if (win->success_ratio >= IL_RS_GOOD_RATIO)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001429 break;
1430
1431 memcpy(search_tbl, tbl, sz);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001432 if (il4965_rs_toggle_antenna
1433 (valid_tx_ant, &search_tbl->current_rate,
1434 search_tbl)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001435 update_search_tbl_counter = 1;
1436 goto out;
1437 }
1438 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001439 case IL_SISO_SWITCH_MIMO2_AB:
1440 case IL_SISO_SWITCH_MIMO2_AC:
1441 case IL_SISO_SWITCH_MIMO2_BC:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001442 D_RATE("LQ: SISO switch to MIMO2\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001443 memcpy(search_tbl, tbl, sz);
1444 search_tbl->is_SGI = 0;
1445
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001446 if (tbl->action == IL_SISO_SWITCH_MIMO2_AB)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001447 search_tbl->ant_type = ANT_AB;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001448 else if (tbl->action == IL_SISO_SWITCH_MIMO2_AC)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001449 search_tbl->ant_type = ANT_AC;
1450 else
1451 search_tbl->ant_type = ANT_BC;
1452
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001453 if (!il4965_rs_is_valid_ant
1454 (valid_tx_ant, search_tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001455 break;
1456
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001457 ret =
1458 il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
1459 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001460 if (!ret)
1461 goto out;
1462 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001463 case IL_SISO_SWITCH_GI:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001464 if (!tbl->is_ht40 &&
1465 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001466 break;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001467 if (tbl->is_ht40 &&
1468 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001469 break;
1470
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001471 D_RATE("LQ: SISO toggle SGI/NGI\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001472
1473 memcpy(search_tbl, tbl, sz);
1474 if (is_green) {
1475 if (!tbl->is_SGI)
1476 break;
1477 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001478 IL_ERR("SGI was set in GF+SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001479 }
1480 search_tbl->is_SGI = !tbl->is_SGI;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001481 il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001482 if (tbl->is_SGI) {
1483 s32 tpt = lq_sta->last_tpt / 100;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001484 if (tpt >= search_tbl->expected_tpt[idx])
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001485 break;
1486 }
1487 search_tbl->current_rate =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001488 il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
1489 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001490 update_search_tbl_counter = 1;
1491 goto out;
1492 }
1493 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001494 if (tbl->action > IL_SISO_SWITCH_GI)
1495 tbl->action = IL_SISO_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001496
1497 if (tbl->action == start_action)
1498 break;
1499 }
1500 search_tbl->lq_type = LQ_NONE;
1501 return 0;
1502
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001503out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001504 lq_sta->search_better_tbl = 1;
1505 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001506 if (tbl->action > IL_SISO_SWITCH_GI)
1507 tbl->action = IL_SISO_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001508 if (update_search_tbl_counter)
1509 search_tbl->action = tbl->action;
1510
1511 return 0;
1512}
1513
1514/*
1515 * Try to switch to new modulation mode from MIMO2
1516 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001517static int
1518il4965_rs_move_mimo2_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1519 struct ieee80211_conf *conf,
1520 struct ieee80211_sta *sta, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001521{
1522 s8 is_green = lq_sta->is_green;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001523 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1524 struct il_scale_tbl_info *search_tbl =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001525 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001526 struct il_rate_scale_data *win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001527 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001528 u32 sz =
1529 (sizeof(struct il_scale_tbl_info) -
1530 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001531 u8 start_action;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001532 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1533 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001534 u8 update_search_tbl_counter = 0;
1535 int ret;
1536
1537 start_action = tbl->action;
1538 for (;;) {
1539 lq_sta->action_counter++;
1540 switch (tbl->action) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001541 case IL_MIMO2_SWITCH_ANTENNA1:
1542 case IL_MIMO2_SWITCH_ANTENNA2:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001543 D_RATE("LQ: MIMO2 toggle Antennas\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001544
1545 if (tx_chains_num <= 2)
1546 break;
1547
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001548 if (win->success_ratio >= IL_RS_GOOD_RATIO)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001549 break;
1550
1551 memcpy(search_tbl, tbl, sz);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001552 if (il4965_rs_toggle_antenna
1553 (valid_tx_ant, &search_tbl->current_rate,
1554 search_tbl)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001555 update_search_tbl_counter = 1;
1556 goto out;
1557 }
1558 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001559 case IL_MIMO2_SWITCH_SISO_A:
1560 case IL_MIMO2_SWITCH_SISO_B:
1561 case IL_MIMO2_SWITCH_SISO_C:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001562 D_RATE("LQ: MIMO2 switch to SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001563
1564 /* Set up new search table for SISO */
1565 memcpy(search_tbl, tbl, sz);
1566
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001567 if (tbl->action == IL_MIMO2_SWITCH_SISO_A)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001568 search_tbl->ant_type = ANT_A;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001569 else if (tbl->action == IL_MIMO2_SWITCH_SISO_B)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001570 search_tbl->ant_type = ANT_B;
1571 else
1572 search_tbl->ant_type = ANT_C;
1573
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001574 if (!il4965_rs_is_valid_ant
1575 (valid_tx_ant, search_tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001576 break;
1577
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001578 ret =
1579 il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
1580 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001581 if (!ret)
1582 goto out;
1583
1584 break;
1585
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001586 case IL_MIMO2_SWITCH_GI:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001587 if (!tbl->is_ht40 &&
1588 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001589 break;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001590 if (tbl->is_ht40 &&
1591 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001592 break;
1593
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001594 D_RATE("LQ: MIMO2 toggle SGI/NGI\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001595
1596 /* Set up new search table for MIMO2 */
1597 memcpy(search_tbl, tbl, sz);
1598 search_tbl->is_SGI = !tbl->is_SGI;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001599 il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001600 /*
1601 * If active table already uses the fastest possible
1602 * modulation (dual stream with short guard interval),
1603 * and it's working well, there's no need to look
1604 * for a better type of modulation!
1605 */
1606 if (tbl->is_SGI) {
1607 s32 tpt = lq_sta->last_tpt / 100;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001608 if (tpt >= search_tbl->expected_tpt[idx])
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001609 break;
1610 }
1611 search_tbl->current_rate =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001612 il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
1613 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001614 update_search_tbl_counter = 1;
1615 goto out;
1616
1617 }
1618 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001619 if (tbl->action > IL_MIMO2_SWITCH_GI)
1620 tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001621
1622 if (tbl->action == start_action)
1623 break;
1624 }
1625 search_tbl->lq_type = LQ_NONE;
1626 return 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001627out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001628 lq_sta->search_better_tbl = 1;
1629 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001630 if (tbl->action > IL_MIMO2_SWITCH_GI)
1631 tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001632 if (update_search_tbl_counter)
1633 search_tbl->action = tbl->action;
1634
1635 return 0;
1636
1637}
1638
1639/*
1640 * Check whether we should continue using same modulation mode, or
1641 * begin search for a new mode, based on:
1642 * 1) # tx successes or failures while using this mode
1643 * 2) # times calling this function
1644 * 3) elapsed time in this mode (not used, for now)
1645 */
1646static void
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001647il4965_rs_stay_in_table(struct il_lq_sta *lq_sta, bool force_search)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001648{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001649 struct il_scale_tbl_info *tbl;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001650 int i;
1651 int active_tbl;
1652 int flush_interval_passed = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001653 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001654
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001655 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001656 active_tbl = lq_sta->active_tbl;
1657
1658 tbl = &(lq_sta->lq_info[active_tbl]);
1659
1660 /* If we've been disallowing search, see if we should now allow it */
1661 if (lq_sta->stay_in_tbl) {
1662
1663 /* Elapsed time using current modulation mode */
1664 if (lq_sta->flush_timer)
1665 flush_interval_passed =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001666 time_after(jiffies,
1667 (unsigned long)(lq_sta->flush_timer +
1668 RATE_SCALE_FLUSH_INTVL));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001669
1670 /*
1671 * Check if we should allow search for new modulation mode.
1672 * If many frames have failed or succeeded, or we've used
1673 * this same modulation for a long time, allow search, and
1674 * reset history stats that keep track of whether we should
1675 * allow a new search. Also (below) reset all bitmaps and
1676 * stats in active history.
1677 */
1678 if (force_search ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001679 lq_sta->total_failed > lq_sta->max_failure_limit ||
1680 lq_sta->total_success > lq_sta->max_success_limit ||
1681 (!lq_sta->search_better_tbl && lq_sta->flush_timer &&
1682 flush_interval_passed)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001683 D_RATE("LQ: stay is expired %d %d %d\n:",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001684 lq_sta->total_failed, lq_sta->total_success,
1685 flush_interval_passed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001686
1687 /* Allow search for new mode */
1688 lq_sta->stay_in_tbl = 0; /* only place reset */
1689 lq_sta->total_failed = 0;
1690 lq_sta->total_success = 0;
1691 lq_sta->flush_timer = 0;
1692
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001693 /*
1694 * Else if we've used this modulation mode enough repetitions
1695 * (regardless of elapsed time or success/failure), reset
1696 * history bitmaps and rate-specific stats for all rates in
1697 * active table.
1698 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001699 } else {
1700 lq_sta->table_count++;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001701 if (lq_sta->table_count >= lq_sta->table_count_limit) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001702 lq_sta->table_count = 0;
1703
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001704 D_RATE("LQ: stay in table clear win\n");
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001705 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001706 il4965_rs_rate_scale_clear_win(&
1707 (tbl->
1708 win
1709 [i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001710 }
1711 }
1712
1713 /* If transitioning to allow "search", reset all history
1714 * bitmaps and stats in active table (this will become the new
1715 * "search" table). */
1716 if (!lq_sta->stay_in_tbl) {
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001717 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001718 il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001719 }
1720 }
1721}
1722
1723/*
1724 * setup rate table in uCode
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001725 */
Greg Dietschea741b992011-09-06 17:49:07 -05001726static void
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001727il4965_rs_update_rate_tbl(struct il_priv *il, struct il_lq_sta *lq_sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001728 struct il_scale_tbl_info *tbl, int idx, u8 is_green)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001729{
1730 u32 rate;
1731
1732 /* Update uCode's rate table. */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001733 rate = il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001734 il4965_rs_fill_link_cmd(il, lq_sta, rate);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001735 il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001736}
1737
1738/*
1739 * Do rate scaling and search for new modulation mode.
1740 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001741static void
1742il4965_rs_rate_scale_perform(struct il_priv *il, struct sk_buff *skb,
1743 struct ieee80211_sta *sta,
1744 struct il_lq_sta *lq_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001745{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001746 struct ieee80211_hw *hw = il->hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001747 struct ieee80211_conf *conf = &hw->conf;
1748 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1749 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001750 int low = RATE_INVALID;
1751 int high = RATE_INVALID;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001752 int idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001753 int i;
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001754 struct il_rate_scale_data *win = NULL;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001755 int current_tpt = IL_INVALID_VALUE;
1756 int low_tpt = IL_INVALID_VALUE;
1757 int high_tpt = IL_INVALID_VALUE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001758 u32 fail_count;
1759 s8 scale_action = 0;
1760 u16 rate_mask;
1761 u8 update_lq = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001762 struct il_scale_tbl_info *tbl, *tbl1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001763 u16 rate_scale_idx_msk = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001764 u8 is_green = 0;
1765 u8 active_tbl = 0;
1766 u8 done_search = 0;
1767 u16 high_low;
1768 s32 sr;
1769 u8 tid = MAX_TID_COUNT;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001770 struct il_tid_data *tid_data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001771
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001772 D_RATE("rate scale calculate new rate for skb\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001773
1774 /* Send management frames and NO_ACK data using lowest rate. */
1775 /* TODO: this could probably be improved.. */
1776 if (!ieee80211_is_data(hdr->frame_control) ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001777 (info->flags & IEEE80211_TX_CTL_NO_ACK))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001778 return;
1779
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001780 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
1781
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001782 tid = il4965_rs_tl_add_packet(lq_sta, hdr);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001783 if (tid != MAX_TID_COUNT && (lq_sta->tx_agg_tid_en & (1 << tid))) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001784 tid_data = &il->stations[lq_sta->lq.sta_id].tid[tid];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001785 if (tid_data->agg.state == IL_AGG_OFF)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001786 lq_sta->is_agg = 0;
1787 else
1788 lq_sta->is_agg = 1;
1789 } else
1790 lq_sta->is_agg = 0;
1791
1792 /*
1793 * Select rate-scale / modulation-mode table to work with in
1794 * the rest of this function: "search" if searching for better
1795 * modulation mode, or "active" if doing rate scaling within a mode.
1796 */
1797 if (!lq_sta->search_better_tbl)
1798 active_tbl = lq_sta->active_tbl;
1799 else
1800 active_tbl = 1 - lq_sta->active_tbl;
1801
1802 tbl = &(lq_sta->lq_info[active_tbl]);
1803 if (is_legacy(tbl->lq_type))
1804 lq_sta->is_green = 0;
1805 else
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +01001806 lq_sta->is_green = il4965_rs_use_green(il, sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001807 is_green = lq_sta->is_green;
1808
1809 /* current tx rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001810 idx = lq_sta->last_txrate_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001811
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001812 D_RATE("Rate scale idx %d for type %d\n", idx, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001813
1814 /* rates available for this association, and for modulation mode */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001815 rate_mask = il4965_rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001816
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001817 D_RATE("mask 0x%04X\n", rate_mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001818
1819 /* mask with station rate restriction */
1820 if (is_legacy(tbl->lq_type)) {
1821 if (lq_sta->band == IEEE80211_BAND_5GHZ)
1822 /* supp_rates has no CCK bits in A mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001823 rate_scale_idx_msk =
1824 (u16) (rate_mask &
1825 (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001826 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001827 rate_scale_idx_msk =
1828 (u16) (rate_mask & lq_sta->supp_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001829
1830 } else
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001831 rate_scale_idx_msk = rate_mask;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001832
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001833 if (!rate_scale_idx_msk)
1834 rate_scale_idx_msk = rate_mask;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001835
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001836 if (!((1 << idx) & rate_scale_idx_msk)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001837 IL_ERR("Current Rate is not valid\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001838 if (lq_sta->search_better_tbl) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001839 /* revert to active table if search table is not valid */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001840 tbl->lq_type = LQ_NONE;
1841 lq_sta->search_better_tbl = 0;
1842 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1843 /* get "active" rate info */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001844 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001845 il4965_rs_update_rate_tbl(il, lq_sta, tbl, idx,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001846 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001847 }
1848 return;
1849 }
1850
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001851 /* Get expected throughput table and history win for current rate */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001852 if (!tbl->expected_tpt) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001853 IL_ERR("tbl->expected_tpt is NULL\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001854 return;
1855 }
1856
1857 /* force user max rate if set by user */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001858 if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < idx) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001859 idx = lq_sta->max_rate_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001860 update_lq = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001861 win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001862 goto lq_update;
1863 }
1864
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001865 win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001866
1867 /*
1868 * If there is not enough history to calculate actual average
1869 * throughput, keep analyzing results of more tx frames, without
1870 * changing rate or mode (bypass most of the rest of this function).
1871 * Set up new rate table in uCode only if old rate is not supported
1872 * in current association (use new rate found above).
1873 */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001874 fail_count = win->counter - win->success_counter;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001875 if (fail_count < RATE_MIN_FAILURE_TH &&
1876 win->success_counter < RATE_MIN_SUCCESS_TH) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001877 D_RATE("LQ: still below TH. succ=%d total=%d " "for idx %d\n",
1878 win->success_counter, win->counter, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001879
1880 /* Can't calculate this yet; not enough history */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001881 win->average_tpt = IL_INVALID_VALUE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001882
1883 /* Should we stay with this modulation mode,
1884 * or search for a new one? */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001885 il4965_rs_stay_in_table(lq_sta, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001886
1887 goto out;
1888 }
1889 /* Else we have enough samples; calculate estimate of
1890 * actual average throughput */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001891 if (win->average_tpt !=
1892 ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128)) {
1893 IL_ERR("expected_tpt should have been calculated by now\n");
1894 win->average_tpt =
1895 ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001896 }
1897
1898 /* If we are searching for better modulation mode, check success. */
1899 if (lq_sta->search_better_tbl) {
1900 /* If good success, continue using the "search" mode;
1901 * no need to send new link quality command, since we're
1902 * continuing to use the setup that we've been trying. */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001903 if (win->average_tpt > lq_sta->last_tpt) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001904
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001905 D_RATE("LQ: SWITCHING TO NEW TBL "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001906 "suc=%d cur-tpt=%d old-tpt=%d\n",
1907 win->success_ratio, win->average_tpt,
1908 lq_sta->last_tpt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001909
1910 if (!is_legacy(tbl->lq_type))
1911 lq_sta->enable_counter = 1;
1912
1913 /* Swap tables; "search" becomes "active" */
1914 lq_sta->active_tbl = active_tbl;
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001915 current_tpt = win->average_tpt;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001916
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001917 /* Else poor success; go back to mode in "active" table */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001918 } else {
1919
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001920 D_RATE("LQ: GOING BACK TO THE OLD TBL "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001921 "suc=%d cur-tpt=%d old-tpt=%d\n",
1922 win->success_ratio, win->average_tpt,
1923 lq_sta->last_tpt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001924
1925 /* Nullify "search" table */
1926 tbl->lq_type = LQ_NONE;
1927
1928 /* Revert to "active" table */
1929 active_tbl = lq_sta->active_tbl;
1930 tbl = &(lq_sta->lq_info[active_tbl]);
1931
1932 /* Revert to "active" rate and throughput info */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001933 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001934 current_tpt = lq_sta->last_tpt;
1935
1936 /* Need to set up a new rate table in uCode */
1937 update_lq = 1;
1938 }
1939
1940 /* Either way, we've made a decision; modulation mode
1941 * search is done, allow rate adjustment next time. */
1942 lq_sta->search_better_tbl = 0;
1943 done_search = 1; /* Don't switch modes below! */
1944 goto lq_update;
1945 }
1946
1947 /* (Else) not in search of better modulation mode, try for better
1948 * starting rate, while staying in this mode. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001949 high_low =
1950 il4965_rs_get_adjacent_rate(il, idx, rate_scale_idx_msk,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001951 tbl->lq_type);
1952 low = high_low & 0xff;
1953 high = (high_low >> 8) & 0xff;
1954
1955 /* If user set max rate, dont allow higher than user constrain */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001956 if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < high)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001957 high = RATE_INVALID;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001958
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001959 sr = win->success_ratio;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001960
1961 /* Collect measured throughputs for current and adjacent rates */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001962 current_tpt = win->average_tpt;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001963 if (low != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001964 low_tpt = tbl->win[low].average_tpt;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001965 if (high != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001966 high_tpt = tbl->win[high].average_tpt;
1967
1968 scale_action = 0;
1969
1970 /* Too many failures, decrease rate */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001971 if (sr <= RATE_DECREASE_TH || current_tpt == 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001972 D_RATE("decrease rate because of low success_ratio\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001973 scale_action = -1;
1974
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001975 /* No throughput measured yet for adjacent rates; try increase. */
1976 } else if (low_tpt == IL_INVALID_VALUE && high_tpt == IL_INVALID_VALUE) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001977
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001978 if (high != RATE_INVALID && sr >= RATE_INCREASE_TH)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001979 scale_action = 1;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001980 else if (low != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001981 scale_action = 0;
1982 }
1983
1984 /* Both adjacent throughputs are measured, but neither one has better
1985 * throughput; we're using the best rate, don't change it! */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001986 else if (low_tpt != IL_INVALID_VALUE && high_tpt != IL_INVALID_VALUE &&
1987 low_tpt < current_tpt && high_tpt < current_tpt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001988 scale_action = 0;
1989
1990 /* At least one adjacent rate's throughput is measured,
1991 * and may have better performance. */
1992 else {
1993 /* Higher adjacent rate's throughput is measured */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001994 if (high_tpt != IL_INVALID_VALUE) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001995 /* Higher rate has better throughput */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001996 if (high_tpt > current_tpt && sr >= RATE_INCREASE_TH)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001997 scale_action = 1;
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001998 else
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001999 scale_action = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002000
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002001 /* Lower adjacent rate's throughput is measured */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002002 } else if (low_tpt != IL_INVALID_VALUE) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002003 /* Lower rate has better throughput */
2004 if (low_tpt > current_tpt) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002005 D_RATE("decrease rate because of low tpt\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002006 scale_action = -1;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002007 } else if (sr >= RATE_INCREASE_TH) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002008 scale_action = 1;
2009 }
2010 }
2011 }
2012
2013 /* Sanity check; asked for decrease, but success rate or throughput
2014 * has been good at old rate. Don't change it. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002015 if (scale_action == -1 && low != RATE_INVALID &&
2016 (sr > RATE_HIGH_TH || current_tpt > 100 * tbl->expected_tpt[low]))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002017 scale_action = 0;
2018
2019 switch (scale_action) {
2020 case -1:
2021 /* Decrease starting rate, update uCode's rate table */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002022 if (low != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002023 update_lq = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002024 idx = low;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002025 }
2026
2027 break;
2028 case 1:
2029 /* Increase starting rate, update uCode's rate table */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002030 if (high != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002031 update_lq = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002032 idx = high;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002033 }
2034
2035 break;
2036 case 0:
2037 /* No change */
2038 default:
2039 break;
2040 }
2041
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002042 D_RATE("choose rate scale idx %d action %d low %d " "high %d type %d\n",
2043 idx, scale_action, low, high, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002044
2045lq_update:
2046 /* Replace uCode's rate table for the destination station. */
2047 if (update_lq)
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002048 il4965_rs_update_rate_tbl(il, lq_sta, tbl, idx, is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002049
2050 /* Should we stay with this modulation mode,
2051 * or search for a new one? */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002052 il4965_rs_stay_in_table(lq_sta, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002053
2054 /*
2055 * Search for new modulation mode if we're:
2056 * 1) Not changing rates right now
2057 * 2) Not just finishing up a search
2058 * 3) Allowing a new search
2059 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002060 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && win->counter) {
2061 /* Save current throughput to compare with "search" throughput */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002062 lq_sta->last_tpt = current_tpt;
2063
2064 /* Select a new "search" modulation mode to try.
2065 * If one is found, set up the new "search" table. */
2066 if (is_legacy(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002067 il4965_rs_move_legacy_other(il, lq_sta, conf, sta, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002068 else if (is_siso(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002069 il4965_rs_move_siso_to_other(il, lq_sta, conf, sta,
2070 idx);
2071 else /* (is_mimo2(tbl->lq_type)) */
2072 il4965_rs_move_mimo2_to_other(il, lq_sta, conf, sta,
2073 idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002074
2075 /* If new "search" mode was selected, set up in uCode table */
2076 if (lq_sta->search_better_tbl) {
2077 /* Access the "search" table, clear its history. */
2078 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002079 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002080 il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002081
2082 /* Use new "search" start rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002083 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002084
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002085 D_RATE("Switch current mcs: %X idx: %d\n",
2086 tbl->current_rate, idx);
2087 il4965_rs_fill_link_cmd(il, lq_sta, tbl->current_rate);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002088 il_send_lq_cmd(il, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002089 } else
2090 done_search = 1;
2091 }
2092
2093 if (done_search && !lq_sta->stay_in_tbl) {
2094 /* If the "active" (non-search) mode was legacy,
2095 * and we've tried switching antennas,
2096 * but we haven't been able to try HT modes (not available),
2097 * stay with best antenna legacy modulation for a while
2098 * before next round of mode comparisons. */
2099 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
2100 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
2101 lq_sta->action_counter > tbl1->max_search) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002102 D_RATE("LQ: STAY in legacy table\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002103 il4965_rs_set_stay_in_table(il, 1, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002104 }
2105
2106 /* If we're in an HT mode, and all 3 mode switch actions
2107 * have been tried and compared, stay in this best modulation
2108 * mode for a while before next round of mode comparisons. */
2109 if (lq_sta->enable_counter &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002110 lq_sta->action_counter >= tbl1->max_search) {
2111 if (lq_sta->last_tpt > IL_AGG_TPT_THREHOLD &&
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002112 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002113 tid != MAX_TID_COUNT) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002114 tid_data =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002115 &il->stations[lq_sta->lq.sta_id].tid[tid];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002116 if (tid_data->agg.state == IL_AGG_OFF) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002117 D_RATE("try to aggregate tid %d\n",
2118 tid);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002119 il4965_rs_tl_turn_on_agg(il, tid,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002120 lq_sta, sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002121 }
2122 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002123 il4965_rs_set_stay_in_table(il, 0, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002124 }
2125 }
2126
2127out:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002128 tbl->current_rate =
2129 il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002130 i = idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002131 lq_sta->last_txrate_idx = i;
2132}
2133
2134/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002135 * il4965_rs_initialize_lq - Initialize a station's hardware rate table
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002136 *
2137 * The uCode's station table contains a table of fallback rates
2138 * for automatic fallback during transmission.
2139 *
2140 * NOTE: This sets up a default set of values. These will be replaced later
2141 * if the driver's iwl-4965-rs rate scaling algorithm is used, instead of
2142 * rc80211_simple.
2143 *
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02002144 * NOTE: Run C_ADD_STA command to set up station table entry, before
2145 * calling this function (which runs C_TX_LINK_QUALITY_CMD,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002146 * which requires station table entry to exist).
2147 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002148static void
2149il4965_rs_initialize_lq(struct il_priv *il, struct ieee80211_conf *conf,
2150 struct ieee80211_sta *sta, struct il_lq_sta *lq_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002151{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002152 struct il_scale_tbl_info *tbl;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002153 int rate_idx;
2154 int i;
2155 u32 rate;
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +01002156 u8 use_green = il4965_rs_use_green(il, sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002157 u8 active_tbl = 0;
2158 u8 valid_tx_ant;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002159 struct il_station_priv *sta_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002160
2161 if (!sta || !lq_sta)
2162 return;
2163
2164 sta_priv = (void *)sta->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002165
2166 i = lq_sta->last_txrate_idx;
2167
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002168 valid_tx_ant = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002169
2170 if (!lq_sta->search_better_tbl)
2171 active_tbl = lq_sta->active_tbl;
2172 else
2173 active_tbl = 1 - lq_sta->active_tbl;
2174
2175 tbl = &(lq_sta->lq_info[active_tbl]);
2176
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002177 if (i < 0 || i >= RATE_COUNT)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002178 i = 0;
2179
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02002180 rate = il_rates[i].plcp;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002181 tbl->ant_type = il4965_first_antenna(valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002182 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
2183
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002184 if (i >= IL_FIRST_CCK_RATE && i <= IL_LAST_CCK_RATE)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002185 rate |= RATE_MCS_CCK_MSK;
2186
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002187 il4965_rs_get_tbl_info_from_mcs(rate, il->band, tbl, &rate_idx);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002188 if (!il4965_rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2189 il4965_rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002190
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002191 rate = il4965_rate_n_flags_from_tbl(il, tbl, rate_idx, use_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002192 tbl->current_rate = rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002193 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
2194 il4965_rs_fill_link_cmd(NULL, lq_sta, rate);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002195 il->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002196 il_send_lq_cmd(il, &lq_sta->lq, CMD_SYNC, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002197}
2198
2199static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002200il4965_rs_get_rate(void *il_r, struct ieee80211_sta *sta, void *il_sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002201 struct ieee80211_tx_rate_control *txrc)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002202{
2203
2204 struct sk_buff *skb = txrc->skb;
2205 struct ieee80211_supported_band *sband = txrc->sband;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002206 struct il_priv *il __maybe_unused = (struct il_priv *)il_r;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002207 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002208 struct il_lq_sta *lq_sta = il_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002209 int rate_idx;
2210
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002211 D_RATE("rate scale calculate new rate for skb\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002212
2213 /* Get max rate if user set max rate */
2214 if (lq_sta) {
2215 lq_sta->max_rate_idx = txrc->max_rate_idx;
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002216 if (sband->band == IEEE80211_BAND_5GHZ &&
2217 lq_sta->max_rate_idx != -1)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002218 lq_sta->max_rate_idx += IL_FIRST_OFDM_RATE;
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002219 if (lq_sta->max_rate_idx < 0 ||
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002220 lq_sta->max_rate_idx >= RATE_COUNT)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002221 lq_sta->max_rate_idx = -1;
2222 }
2223
2224 /* Treat uninitialized rate scaling data same as non-existing. */
2225 if (lq_sta && !lq_sta->drv) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002226 D_RATE("Rate scaling not initialized yet.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002227 il_sta = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002228 }
2229
2230 /* Send management frames and NO_ACK data using lowest rate. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002231 if (rate_control_send_low(sta, il_sta, txrc))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002232 return;
2233
Greg Dietsche0c348612011-06-02 22:24:06 -05002234 if (!lq_sta)
2235 return;
2236
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002237 rate_idx = lq_sta->last_txrate_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002238
2239 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002240 rate_idx -= IL_FIRST_OFDM_RATE;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002241 /* 6M and 9M shared same MCS idx */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002242 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002243 if (il4965_rs_extract_rate(lq_sta->last_rate_n_flags) >=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002244 RATE_MIMO2_6M_PLCP)
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +02002245 rate_idx = rate_idx + MCS_IDX_PER_STREAM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002246 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2247 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2248 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002249 IEEE80211_TX_RC_SHORT_GI;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002250 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2251 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002252 IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002253 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
2254 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002255 IEEE80211_TX_RC_40_MHZ_WIDTH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002256 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2257 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002258 IEEE80211_TX_RC_GREEN_FIELD;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002259 } else {
2260 /* Check for invalid rates */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002261 if (rate_idx < 0 || rate_idx >= RATE_COUNT_LEGACY ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002262 (sband->band == IEEE80211_BAND_5GHZ &&
2263 rate_idx < IL_FIRST_OFDM_RATE))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002264 rate_idx = rate_lowest_index(sband, sta);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002265 /* On valid 5 GHz rate, adjust idx */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002266 else if (sband->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002267 rate_idx -= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002268 info->control.rates[0].flags = 0;
2269 }
2270 info->control.rates[0].idx = rate_idx;
2271
2272}
2273
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002274static void *
2275il4965_rs_alloc_sta(void *il_rate, struct ieee80211_sta *sta, gfp_t gfp)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002276{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002277 struct il_station_priv *sta_priv =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002278 (struct il_station_priv *)sta->drv_priv;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002279 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002280
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002281 il = (struct il_priv *)il_rate;
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02002282 D_RATE("create station rate scale win\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002283
Greg Dietsche3e4b0652011-09-06 18:12:05 -05002284 return &sta_priv->lq_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002285}
2286
2287/*
2288 * Called after adding a new station to initialize rate scaling
2289 */
2290void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002291il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta, u8 sta_id)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002292{
2293 int i, j;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002294 struct ieee80211_hw *hw = il->hw;
2295 struct ieee80211_conf *conf = &il->hw->conf;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002296 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002297 struct il_station_priv *sta_priv;
2298 struct il_lq_sta *lq_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002299 struct ieee80211_supported_band *sband;
2300
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002301 sta_priv = (struct il_station_priv *)sta->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002302 lq_sta = &sta_priv->lq_sta;
2303 sband = hw->wiphy->bands[conf->channel->band];
2304
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002305 lq_sta->lq.sta_id = sta_id;
2306
2307 for (j = 0; j < LQ_SIZE; j++)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002308 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002309 il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
2310 win[i]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002311
2312 lq_sta->flush_timer = 0;
2313 lq_sta->supp_rates = sta->supp_rates[sband->band];
2314 for (j = 0; j < LQ_SIZE; j++)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002315 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002316 il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
2317 win[i]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002318
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002319 D_RATE("LQ:" "*** rate scale station global init for station %d ***\n",
2320 sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002321 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2322 * the lowest or the highest rate.. Could consider using RSSI from
2323 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2324 * after assoc.. */
2325
2326 lq_sta->is_dup = 0;
2327 lq_sta->max_rate_idx = -1;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002328 lq_sta->missed_rate_counter = IL_MISSED_RATE_MAX;
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +01002329 lq_sta->is_green = il4965_rs_use_green(il, sta);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002330 lq_sta->active_legacy_rate = il->active_rate & ~(0x1000);
2331 lq_sta->band = il->band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002332 /*
2333 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2334 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2335 */
2336 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2337 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002338 lq_sta->active_siso_rate &= ~((u16) 0x2);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002339 lq_sta->active_siso_rate <<= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002340
2341 /* Same here */
2342 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2343 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002344 lq_sta->active_mimo2_rate &= ~((u16) 0x2);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002345 lq_sta->active_mimo2_rate <<= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002346
2347 /* These values will be overridden later */
2348 lq_sta->lq.general_params.single_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002349 il4965_first_antenna(il->hw_params.valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002350 lq_sta->lq.general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002351 il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
2352 valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002353 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2354 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002355 } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002356 lq_sta->lq.general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002357 il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002358 }
2359
2360 /* as default allow aggregation for all tids */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002361 lq_sta->tx_agg_tid_en = IL_AGG_ALL_TID;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002362 lq_sta->drv = il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002363
2364 /* Set last_txrate_idx to lowest rate */
2365 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2366 if (sband->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002367 lq_sta->last_txrate_idx += IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002368 lq_sta->is_agg = 0;
2369
2370#ifdef CONFIG_MAC80211_DEBUGFS
2371 lq_sta->dbg_fixed_rate = 0;
2372#endif
2373
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002374 il4965_rs_initialize_lq(il, conf, sta, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002375}
2376
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002377static void
2378il4965_rs_fill_link_cmd(struct il_priv *il, struct il_lq_sta *lq_sta,
2379 u32 new_rate)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002380{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002381 struct il_scale_tbl_info tbl_type;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002382 int idx = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002383 int rate_idx;
2384 int repeat_rate = 0;
2385 u8 ant_toggle_cnt = 0;
2386 u8 use_ht_possible = 1;
2387 u8 valid_tx_ant = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002388 struct il_link_quality_cmd *lq_cmd = &lq_sta->lq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002389
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002390 /* Override starting rate (idx 0) if needed for debug purposes */
2391 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002392
2393 /* Interpret new_rate (rate_n_flags) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002394 il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
2395 &rate_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002396
2397 /* How many times should we repeat the initial rate? */
2398 if (is_legacy(tbl_type.lq_type)) {
2399 ant_toggle_cnt = 1;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002400 repeat_rate = IL_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002401 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002402 repeat_rate = IL_HT_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002403 }
2404
2405 lq_cmd->general_params.mimo_delimiter =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002406 is_mimo(tbl_type.lq_type) ? 1 : 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002407
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002408 /* Fill 1st table entry (idx 0) */
2409 lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002410
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002411 if (il4965_num_of_ant(tbl_type.ant_type) == 1) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002412 lq_cmd->general_params.single_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002413 tbl_type.ant_type;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002414 } else if (il4965_num_of_ant(tbl_type.ant_type) == 2) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002415 lq_cmd->general_params.dual_stream_ant_msk = tbl_type.ant_type;
2416 }
2417 /* otherwise we don't modify the existing value */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002418 idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002419 repeat_rate--;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002420 if (il)
2421 valid_tx_ant = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002422
2423 /* Fill rest of rate table */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002424 while (idx < LINK_QUAL_MAX_RETRY_NUM) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002425 /* Repeat initial/next rate.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002426 * For legacy IL_NUMBER_TRY == 1, this loop will not execute.
2427 * For HT IL_HT_NUMBER_TRY == 3, this executes twice. */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002428 while (repeat_rate > 0 && idx < LINK_QUAL_MAX_RETRY_NUM) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002429 if (is_legacy(tbl_type.lq_type)) {
2430 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2431 ant_toggle_cnt++;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002432 else if (il &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002433 il4965_rs_toggle_antenna(valid_tx_ant,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002434 &new_rate,
2435 &tbl_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002436 ant_toggle_cnt = 1;
2437 }
2438
2439 /* Override next rate if needed for debug purposes */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002440 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002441
2442 /* Fill next table entry */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002443 lq_cmd->rs_table[idx].rate_n_flags =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002444 cpu_to_le32(new_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002445 repeat_rate--;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002446 idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002447 }
2448
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002449 il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
2450 &tbl_type, &rate_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002451
2452 /* Indicate to uCode which entries might be MIMO.
2453 * If initial rate was MIMO, this will finally end up
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002454 * as (IL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002455 if (is_mimo(tbl_type.lq_type))
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002456 lq_cmd->general_params.mimo_delimiter = idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002457
2458 /* Get next rate */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002459 new_rate =
2460 il4965_rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002461 use_ht_possible);
2462
2463 /* How many times should we repeat the next rate? */
2464 if (is_legacy(tbl_type.lq_type)) {
2465 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2466 ant_toggle_cnt++;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002467 else if (il &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002468 il4965_rs_toggle_antenna(valid_tx_ant,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002469 &new_rate, &tbl_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002470 ant_toggle_cnt = 1;
2471
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002472 repeat_rate = IL_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002473 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002474 repeat_rate = IL_HT_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002475 }
2476
2477 /* Don't allow HT rates after next pass.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002478 * il4965_rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002479 use_ht_possible = 0;
2480
2481 /* Override next rate if needed for debug purposes */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002482 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002483
2484 /* Fill next table entry */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002485 lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002486
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002487 idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002488 repeat_rate--;
2489 }
2490
2491 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
2492 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2493
2494 lq_cmd->agg_params.agg_time_limit =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002495 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002496}
2497
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002498static void *
2499il4965_rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002500{
2501 return hw->priv;
2502}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002503
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002504/* rate scale requires free function to be implemented */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002505static void
2506il4965_rs_free(void *il_rate)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002507{
2508 return;
2509}
2510
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002511static void
2512il4965_rs_free_sta(void *il_r, struct ieee80211_sta *sta, void *il_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002513{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002514 struct il_priv *il __maybe_unused = il_r;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002515
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002516 D_RATE("enter\n");
2517 D_RATE("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002518}
2519
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002520#ifdef CONFIG_MAC80211_DEBUGFS
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002521
2522static void
2523il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002524{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002525 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002526 u8 valid_tx_ant;
2527 u8 ant_sel_tx;
2528
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002529 il = lq_sta->drv;
2530 valid_tx_ant = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002531 if (lq_sta->dbg_fixed_rate) {
2532 ant_sel_tx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002533 ((lq_sta->
2534 dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK) >>
2535 RATE_MCS_ANT_POS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002536 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
2537 *rate_n_flags = lq_sta->dbg_fixed_rate;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002538 D_RATE("Fixed rate ON\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002539 } else {
2540 lq_sta->dbg_fixed_rate = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002541 IL_ERR
2542 ("Invalid antenna selection 0x%X, Valid is 0x%X\n",
2543 ant_sel_tx, valid_tx_ant);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002544 D_RATE("Fixed rate OFF\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002545 }
2546 } else {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002547 D_RATE("Fixed rate OFF\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002548 }
2549}
2550
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002551static ssize_t
2552il4965_rs_sta_dbgfs_scale_table_write(struct file *file,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002553 const char __user *user_buf,
2554 size_t count, loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002555{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002556 struct il_lq_sta *lq_sta = file->private_data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002557 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002558 char buf[64];
Stephen Boyd8220ba32011-05-12 16:50:04 -07002559 size_t buf_size;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002560 u32 parsed_rate;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002561
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002562 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002563 memset(buf, 0, sizeof(buf));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002564 buf_size = min(count, sizeof(buf) - 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002565 if (copy_from_user(buf, user_buf, buf_size))
2566 return -EFAULT;
2567
2568 if (sscanf(buf, "%x", &parsed_rate) == 1)
2569 lq_sta->dbg_fixed_rate = parsed_rate;
2570 else
2571 lq_sta->dbg_fixed_rate = 0;
2572
2573 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002574 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2575 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002576
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002577 D_RATE("sta_id %d rate 0x%X\n", lq_sta->lq.sta_id,
2578 lq_sta->dbg_fixed_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002579
2580 if (lq_sta->dbg_fixed_rate) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002581 il4965_rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002582 il_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002583 }
2584
2585 return count;
2586}
2587
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002588static ssize_t
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002589il4965_rs_sta_dbgfs_scale_table_read(struct file *file, char __user *user_buf,
2590 size_t count, loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002591{
2592 char *buff;
2593 int desc = 0;
2594 int i = 0;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002595 int idx = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002596 ssize_t ret;
2597
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002598 struct il_lq_sta *lq_sta = file->private_data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002599 struct il_priv *il;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002600 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002601
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002602 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002603 buff = kmalloc(1024, GFP_KERNEL);
2604 if (!buff)
2605 return -ENOMEM;
2606
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002607 desc += sprintf(buff + desc, "sta_id %d\n", lq_sta->lq.sta_id);
2608 desc +=
2609 sprintf(buff + desc, "failed=%d success=%d rate=0%X\n",
2610 lq_sta->total_failed, lq_sta->total_success,
2611 lq_sta->active_legacy_rate);
2612 desc +=
2613 sprintf(buff + desc, "fixed rate 0x%X\n", lq_sta->dbg_fixed_rate);
2614 desc +=
2615 sprintf(buff + desc, "valid_tx_ant %s%s%s\n",
2616 (il->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2617 (il->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2618 (il->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
2619 desc +=
2620 sprintf(buff + desc, "lq type %s\n",
2621 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002622 if (is_Ht(tbl->lq_type)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002623 desc +=
2624 sprintf(buff + desc, " %s",
2625 (is_siso(tbl->lq_type)) ? "SISO" : "MIMO2");
2626 desc +=
2627 sprintf(buff + desc, " %s",
2628 (tbl->is_ht40) ? "40MHz" : "20MHz");
2629 desc +=
2630 sprintf(buff + desc, " %s %s %s\n",
2631 (tbl->is_SGI) ? "SGI" : "",
2632 (lq_sta->is_green) ? "GF enabled" : "",
2633 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002634 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002635 desc +=
2636 sprintf(buff + desc, "last tx rate=0x%X\n",
2637 lq_sta->last_rate_n_flags);
2638 desc +=
2639 sprintf(buff + desc,
2640 "general:" "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
2641 lq_sta->lq.general_params.flags,
2642 lq_sta->lq.general_params.mimo_delimiter,
2643 lq_sta->lq.general_params.single_stream_ant_msk,
2644 lq_sta->lq.general_params.dual_stream_ant_msk);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002645
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002646 desc +=
2647 sprintf(buff + desc,
2648 "agg:"
2649 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
2650 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2651 lq_sta->lq.agg_params.agg_dis_start_th,
2652 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002653
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002654 desc +=
2655 sprintf(buff + desc,
2656 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
2657 lq_sta->lq.general_params.start_rate_idx[0],
2658 lq_sta->lq.general_params.start_rate_idx[1],
2659 lq_sta->lq.general_params.start_rate_idx[2],
2660 lq_sta->lq.general_params.start_rate_idx[3]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002661
2662 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002663 idx =
2664 il4965_hwrate_to_plcp_idx(le32_to_cpu
2665 (lq_sta->lq.rs_table[i].
2666 rate_n_flags));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002667 if (is_legacy(tbl->lq_type)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002668 desc +=
2669 sprintf(buff + desc, " rate[%d] 0x%X %smbps\n", i,
2670 le32_to_cpu(lq_sta->lq.rs_table[i].
2671 rate_n_flags),
2672 il_rate_mcs[idx].mbps);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002673 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002674 desc +=
2675 sprintf(buff + desc, " rate[%d] 0x%X %smbps (%s)\n",
2676 i,
2677 le32_to_cpu(lq_sta->lq.rs_table[i].
2678 rate_n_flags),
2679 il_rate_mcs[idx].mbps,
2680 il_rate_mcs[idx].mcs);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002681 }
2682 }
2683
2684 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2685 kfree(buff);
2686 return ret;
2687}
2688
2689static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002690 .write = il4965_rs_sta_dbgfs_scale_table_write,
2691 .read = il4965_rs_sta_dbgfs_scale_table_read,
Stephen Boyd234e3402012-04-05 14:25:11 -07002692 .open = simple_open,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002693 .llseek = default_llseek,
2694};
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002695
2696static ssize_t
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002697il4965_rs_sta_dbgfs_stats_table_read(struct file *file, char __user *user_buf,
2698 size_t count, loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002699{
2700 char *buff;
2701 int desc = 0;
2702 int i, j;
2703 ssize_t ret;
2704
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002705 struct il_lq_sta *lq_sta = file->private_data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002706
2707 buff = kmalloc(1024, GFP_KERNEL);
2708 if (!buff)
2709 return -ENOMEM;
2710
2711 for (i = 0; i < LQ_SIZE; i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002712 desc +=
2713 sprintf(buff + desc,
2714 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
2715 "rate=0x%X\n", lq_sta->active_tbl == i ? "*" : "x",
2716 lq_sta->lq_info[i].lq_type,
2717 lq_sta->lq_info[i].is_SGI,
2718 lq_sta->lq_info[i].is_ht40,
2719 lq_sta->lq_info[i].is_dup, lq_sta->is_green,
2720 lq_sta->lq_info[i].current_rate);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002721 for (j = 0; j < RATE_COUNT; j++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002722 desc +=
2723 sprintf(buff + desc,
2724 "counter=%d success=%d %%=%d\n",
2725 lq_sta->lq_info[i].win[j].counter,
2726 lq_sta->lq_info[i].win[j].success_counter,
2727 lq_sta->lq_info[i].win[j].success_ratio);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002728 }
2729 }
2730 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2731 kfree(buff);
2732 return ret;
2733}
2734
2735static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002736 .read = il4965_rs_sta_dbgfs_stats_table_read,
Stephen Boyd234e3402012-04-05 14:25:11 -07002737 .open = simple_open,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002738 .llseek = default_llseek,
2739};
2740
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002741static ssize_t
2742il4965_rs_sta_dbgfs_rate_scale_data_read(struct file *file,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002743 char __user *user_buf, size_t count,
2744 loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002745{
2746 char buff[120];
2747 int desc = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002748 struct il_lq_sta *lq_sta = file->private_data;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002749 struct il_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002750
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002751 if (is_Ht(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002752 desc +=
2753 sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
2754 tbl->expected_tpt[lq_sta->last_txrate_idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002755 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002756 desc +=
2757 sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
2758 il_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002759
Greg Dietschee3a2c772011-09-06 18:25:32 -05002760 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002761}
2762
2763static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002764 .read = il4965_rs_sta_dbgfs_rate_scale_data_read,
Stephen Boyd234e3402012-04-05 14:25:11 -07002765 .open = simple_open,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002766 .llseek = default_llseek,
2767};
2768
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002769static void
2770il4965_rs_add_debugfs(void *il, void *il_sta, struct dentry *dir)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002771{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002772 struct il_lq_sta *lq_sta = il_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002773 lq_sta->rs_sta_dbgfs_scale_table_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002774 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002775 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2776 lq_sta->rs_sta_dbgfs_stats_table_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002777 debugfs_create_file("rate_stats_table", S_IRUSR, dir, lq_sta,
2778 &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002779 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002780 debugfs_create_file("rate_scale_data", S_IRUSR, dir, lq_sta,
2781 &rs_sta_dbgfs_rate_scale_data_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002782 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002783 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
2784 &lq_sta->tx_agg_tid_en);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002785
2786}
2787
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002788static void
2789il4965_rs_remove_debugfs(void *il, void *il_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002790{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002791 struct il_lq_sta *lq_sta = il_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002792 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2793 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
2794 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
2795 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
2796}
2797#endif
2798
2799/*
2800 * Initialization of rate scaling information is done by driver after
2801 * the station is added. Since mac80211 calls this function before a
2802 * station is added we ignore it.
2803 */
2804static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002805il4965_rs_rate_init_stub(void *il_r, struct ieee80211_supported_band *sband,
2806 struct ieee80211_sta *sta, void *il_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002807{
2808}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002809
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002810static struct rate_control_ops rs_4965_ops = {
2811 .module = NULL,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01002812 .name = IL4965_RS_NAME,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002813 .tx_status = il4965_rs_tx_status,
2814 .get_rate = il4965_rs_get_rate,
2815 .rate_init = il4965_rs_rate_init_stub,
2816 .alloc = il4965_rs_alloc,
2817 .free = il4965_rs_free,
2818 .alloc_sta = il4965_rs_alloc_sta,
2819 .free_sta = il4965_rs_free_sta,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002820#ifdef CONFIG_MAC80211_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002821 .add_sta_debugfs = il4965_rs_add_debugfs,
2822 .remove_sta_debugfs = il4965_rs_remove_debugfs,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002823#endif
2824};
2825
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002826int
2827il4965_rate_control_register(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002828{
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002829 return ieee80211_rate_control_register(&rs_4965_ops);
2830}
2831
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002832void
2833il4965_rate_control_unregister(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002834{
2835 ieee80211_rate_control_unregister(&rs_4965_ops);
2836}