blob: 52006376febdedf75fc1691035bdee7a267e2ae4 [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
644il4965_rs_use_green(struct ieee80211_sta *sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800645{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200646 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
647 struct il_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800648
649 return (sta->ht_cap.cap & IEEE80211_HT_CAP_GRN_FLD) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100650 !(ctx->ht.non_gf_sta_present);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800651}
652
653/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200654 * il4965_rs_get_supported_rates - get the available rates
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800655 *
656 * if management frame or broadcast frame only return
657 * basic available rates.
658 *
659 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100660static u16
661il4965_rs_get_supported_rates(struct il_lq_sta *lq_sta,
662 struct ieee80211_hdr *hdr,
663 enum il_table_type rate_type)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800664{
665 if (is_legacy(rate_type)) {
666 return lq_sta->active_legacy_rate;
667 } else {
668 if (is_siso(rate_type))
669 return lq_sta->active_siso_rate;
670 else
671 return lq_sta->active_mimo2_rate;
672 }
673}
674
675static u16
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100676il4965_rs_get_adjacent_rate(struct il_priv *il, u8 idx, u16 rate_mask,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100677 int rate_type)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800678{
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200679 u8 high = RATE_INVALID;
680 u8 low = RATE_INVALID;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800681
682 /* 802.11A or ht walks to the next literal adjacent rate in
683 * the rate table */
684 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
685 int i;
686 u32 mask;
687
688 /* Find the previous rate that is in the rate mask */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100689 i = idx - 1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800690 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
691 if (rate_mask & mask) {
692 low = i;
693 break;
694 }
695 }
696
697 /* Find the next rate that is in the rate mask */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100698 i = idx + 1;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200699 for (mask = (1 << i); i < RATE_COUNT; i++, mask <<= 1) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800700 if (rate_mask & mask) {
701 high = i;
702 break;
703 }
704 }
705
706 return (high << 8) | low;
707 }
708
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100709 low = idx;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200710 while (low != RATE_INVALID) {
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200711 low = il_rates[low].prev_rs;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200712 if (low == RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800713 break;
714 if (rate_mask & (1 << low))
715 break;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100716 D_RATE("Skipping masked lower rate: %d\n", low);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800717 }
718
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100719 high = idx;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200720 while (high != RATE_INVALID) {
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +0200721 high = il_rates[high].next_rs;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200722 if (high == RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800723 break;
724 if (rate_mask & (1 << high))
725 break;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100726 D_RATE("Skipping masked higher rate: %d\n", high);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800727 }
728
729 return (high << 8) | low;
730}
731
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100732static u32
733il4965_rs_get_lower_rate(struct il_lq_sta *lq_sta,
734 struct il_scale_tbl_info *tbl, u8 scale_idx,
735 u8 ht_possible)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800736{
737 s32 low;
738 u16 rate_mask;
739 u16 high_low;
740 u8 switch_to_legacy = 0;
741 u8 is_green = lq_sta->is_green;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200742 struct il_priv *il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800743
744 /* check if we need to switch from HT to legacy rates.
745 * assumption is that mandatory rates (1Mbps or 6Mbps)
746 * are always supported (spec demand) */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100747 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_idx)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800748 switch_to_legacy = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100749 scale_idx = rs_ht_to_legacy[scale_idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800750 if (lq_sta->band == IEEE80211_BAND_5GHZ)
751 tbl->lq_type = LQ_A;
752 else
753 tbl->lq_type = LQ_G;
754
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200755 if (il4965_num_of_ant(tbl->ant_type) > 1)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800756 tbl->ant_type =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100757 il4965_first_antenna(il->hw_params.valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800758
759 tbl->is_ht40 = 0;
760 tbl->is_SGI = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200761 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800762 }
763
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200764 rate_mask = il4965_rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800765
766 /* Mask with station rate restriction */
767 if (is_legacy(tbl->lq_type)) {
768 /* supp_rates has no CCK bits in A mode */
769 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100770 rate_mask =
771 (u16) (rate_mask &
772 (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800773 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100774 rate_mask = (u16) (rate_mask & lq_sta->supp_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800775 }
776
777 /* If we switched from HT to legacy, check current rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100778 if (switch_to_legacy && (rate_mask & (1 << scale_idx))) {
779 low = scale_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800780 goto out;
781 }
782
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100783 high_low =
784 il4965_rs_get_adjacent_rate(lq_sta->drv, scale_idx, rate_mask,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800785 tbl->lq_type);
786 low = high_low & 0xff;
787
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +0200788 if (low == RATE_INVALID)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100789 low = scale_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800790
791out:
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200792 return il4965_rate_n_flags_from_tbl(lq_sta->drv, tbl, low, is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800793}
794
795/*
796 * Simple function to compare two rate scale table types
797 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100798static bool
799il4965_table_type_matches(struct il_scale_tbl_info *a,
800 struct il_scale_tbl_info *b)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800801{
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200802 return (a->lq_type == b->lq_type && a->ant_type == b->ant_type &&
803 a->is_SGI == b->is_SGI);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800804}
805
806/*
807 * mac80211 sends us Tx status
808 */
809static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200810il4965_rs_tx_status(void *il_r, struct ieee80211_supported_band *sband,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100811 struct ieee80211_sta *sta, void *il_sta,
812 struct sk_buff *skb)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800813{
814 int legacy_success;
815 int retries;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100816 int rs_idx, mac_idx, i;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200817 struct il_lq_sta *lq_sta = il_sta;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200818 struct il_link_quality_cmd *table;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800819 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200820 struct il_priv *il = (struct il_priv *)il_r;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800821 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
822 enum mac80211_rate_control_flags mac_flags;
823 u32 tx_rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200824 struct il_scale_tbl_info tbl_type;
825 struct il_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl;
826 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
827 struct il_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800828
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100829 D_RATE("get frame ack response, update rate scale win\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800830
831 /* Treat uninitialized rate scaling data same as non-existing. */
832 if (!lq_sta) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100833 D_RATE("Station rate scaling not created yet.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800834 return;
835 } else if (!lq_sta->drv) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +0100836 D_RATE("Rate scaling not initialized yet.\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800837 return;
838 }
839
840 if (!ieee80211_is_data(hdr->frame_control) ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200841 (info->flags & IEEE80211_TX_CTL_NO_ACK))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800842 return;
843
844 /* This packet was aggregated but doesn't carry status info */
845 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
846 !(info->flags & IEEE80211_TX_STAT_AMPDU))
847 return;
848
849 /*
850 * Ignore this Tx frame response if its initial rate doesn't match
851 * that of latest Link Quality command. There may be stragglers
852 * from a previous Link Quality command, but we're no longer interested
853 * in those; they're either from the "active" mode while we're trying
854 * to check "search" mode, or a prior "search" mode after we've moved
855 * to a new "search" mode (which might become the new "active" mode).
856 */
857 table = &lq_sta->lq;
858 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100859 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type, &rs_idx);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200860 if (il->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100861 rs_idx -= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800862 mac_flags = info->status.rates[0].flags;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100863 mac_idx = info->status.rates[0].idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800864 /* For HT packets, map MCS to PLCP */
865 if (mac_flags & IEEE80211_TX_RC_MCS) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100866 mac_idx &= RATE_MCS_CODE_MSK; /* Remove # of streams */
867 if (mac_idx >= (RATE_9M_IDX - IL_FIRST_OFDM_RATE))
868 mac_idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800869 /*
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100870 * mac80211 HT idx is always zero-idxed; we need to move
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800871 * HT OFDM rates after CCK rates in 2.4 GHz band
872 */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200873 if (il->band == IEEE80211_BAND_2GHZ)
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100874 mac_idx += IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800875 }
876 /* Here we actually compare this rate to the latest LQ command */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100877 if (mac_idx < 0 ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +0200878 tbl_type.is_SGI != !!(mac_flags & IEEE80211_TX_RC_SHORT_GI) ||
879 tbl_type.is_ht40 != !!(mac_flags & IEEE80211_TX_RC_40_MHZ_WIDTH) ||
880 tbl_type.is_dup != !!(mac_flags & IEEE80211_TX_RC_DUP_DATA) ||
881 tbl_type.ant_type != info->antenna_sel_tx ||
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100882 !!(tx_rate & RATE_MCS_HT_MSK) != !!(mac_flags & IEEE80211_TX_RC_MCS)
883 || !!(tx_rate & RATE_MCS_GF_MSK) !=
884 !!(mac_flags & IEEE80211_TX_RC_GREEN_FIELD) || rs_idx != mac_idx) {
885 D_RATE("initial rate %d does not match %d (0x%x)\n", mac_idx,
886 rs_idx, tx_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800887 /*
888 * Since rates mis-match, the last LQ command may have failed.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200889 * After IL_MISSED_RATE_MAX mis-matches, resync the uCode with
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800890 * ... driver.
891 */
892 lq_sta->missed_rate_counter++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200893 if (lq_sta->missed_rate_counter > IL_MISSED_RATE_MAX) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800894 lq_sta->missed_rate_counter = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100895 il_send_lq_cmd(il, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800896 }
897 /* Regardless, ignore this status info for outdated rate */
898 return;
899 } else
900 /* Rate did match, so reset the missed_rate_counter */
901 lq_sta->missed_rate_counter = 0;
902
903 /* Figure out if rate scale algorithm is in active or search table */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100904 if (il4965_table_type_matches
905 (&tbl_type, &(lq_sta->lq_info[lq_sta->active_tbl]))) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800906 curr_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
907 other_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100908 } else
909 if (il4965_table_type_matches
910 (&tbl_type, &lq_sta->lq_info[1 - lq_sta->active_tbl])) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800911 curr_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
912 other_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
913 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100914 D_RATE("Neither active nor search matches tx rate\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800915 tmp_tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100916 D_RATE("active- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
917 tmp_tbl->ant_type, tmp_tbl->is_SGI);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800918 tmp_tbl = &(lq_sta->lq_info[1 - lq_sta->active_tbl]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100919 D_RATE("search- lq:%x, ant:%x, SGI:%d\n", tmp_tbl->lq_type,
920 tmp_tbl->ant_type, tmp_tbl->is_SGI);
921 D_RATE("actual- lq:%x, ant:%x, SGI:%d\n", tbl_type.lq_type,
922 tbl_type.ant_type, tbl_type.is_SGI);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800923 /*
924 * no matching table found, let's by-pass the data collection
925 * and continue to perform rate scale to find the rate table
926 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200927 il4965_rs_stay_in_table(lq_sta, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800928 goto done;
929 }
930
931 /*
932 * Updating the frame history depends on whether packets were
933 * aggregated.
934 *
935 * For aggregation, all packets were transmitted at the same rate, the
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100936 * first idx into rate scale table.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800937 */
938 if (info->flags & IEEE80211_TX_STAT_AMPDU) {
939 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200940 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band, &tbl_type,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100941 &rs_idx);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100942 il4965_rs_collect_tx_data(curr_tbl, rs_idx,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100943 info->status.ampdu_len,
944 info->status.ampdu_ack_len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800945
946 /* Update success/fail counts if not searching for new mode */
947 if (lq_sta->stay_in_tbl) {
948 lq_sta->total_success += info->status.ampdu_ack_len;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100949 lq_sta->total_failed +=
950 (info->status.ampdu_len -
951 info->status.ampdu_ack_len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800952 }
953 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100954 /*
955 * For legacy, update frame history with for each Tx retry.
956 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800957 retries = info->status.rates[0].count - 1;
958 /* HW doesn't send more than 15 retries */
959 retries = min(retries, 15);
960
961 /* The last transmission may have been successful */
962 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK);
963 /* Collect data for each rate used during failed TX attempts */
964 for (i = 0; i <= retries; ++i) {
965 tx_rate = le32_to_cpu(table->rs_table[i].rate_n_flags);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200966 il4965_rs_get_tbl_info_from_mcs(tx_rate, il->band,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100967 &tbl_type, &rs_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800968 /*
969 * Only collect stats if retried rate is in the same RS
970 * table as active/search.
971 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +0200972 if (il4965_table_type_matches(&tbl_type, curr_tbl))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800973 tmp_tbl = curr_tbl;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100974 else if (il4965_table_type_matches
975 (&tbl_type, other_tbl))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800976 tmp_tbl = other_tbl;
977 else
978 continue;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +0100979 il4965_rs_collect_tx_data(tmp_tbl, rs_idx, 1,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100980 i <
981 retries ? 0 : legacy_success);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800982 }
983
984 /* Update success/fail counts if not searching for new mode */
985 if (lq_sta->stay_in_tbl) {
986 lq_sta->total_success += legacy_success;
987 lq_sta->total_failed += retries + (1 - legacy_success);
988 }
989 }
990 /* The last TX rate is cached in lq_sta; it's set in if/else above */
991 lq_sta->last_rate_n_flags = tx_rate;
992done:
993 /* See if there's a better rate or modulation mode to try. */
Greg Dietscheda6134d2011-09-06 17:38:34 -0500994 if (sta->supp_rates[sband->band])
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +0200995 il4965_rs_rate_scale_perform(il, skb, sta, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -0800996}
997
998/*
999 * Begin a period of staying with a selected modulation mode.
1000 * Set "stay_in_tbl" flag to prevent any mode switches.
1001 * Set frame tx success limits according to legacy vs. high-throughput,
Stanislaw Gruszkaebf0d902011-08-26 15:43:47 +02001002 * and reset overall (spanning all rates) tx success history stats.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001003 * These control how long we stay using same modulation mode before
1004 * searching for a new mode.
1005 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001006static void
1007il4965_rs_set_stay_in_table(struct il_priv *il, u8 is_legacy,
1008 struct il_lq_sta *lq_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001009{
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001010 D_RATE("we are staying in the same table\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001011 lq_sta->stay_in_tbl = 1; /* only place this gets set */
1012 if (is_legacy) {
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001013 lq_sta->table_count_limit = IL_LEGACY_TBL_COUNT;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001014 lq_sta->max_failure_limit = IL_LEGACY_FAILURE_LIMIT;
1015 lq_sta->max_success_limit = IL_LEGACY_SUCCESS_LIMIT;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001016 } else {
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001017 lq_sta->table_count_limit = IL_NONE_LEGACY_TBL_COUNT;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001018 lq_sta->max_failure_limit = IL_NONE_LEGACY_FAILURE_LIMIT;
1019 lq_sta->max_success_limit = IL_NONE_LEGACY_SUCCESS_LIMIT;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001020 }
1021 lq_sta->table_count = 0;
1022 lq_sta->total_failed = 0;
1023 lq_sta->total_success = 0;
1024 lq_sta->flush_timer = jiffies;
1025 lq_sta->action_counter = 0;
1026}
1027
1028/*
1029 * Find correct throughput table for given mode of modulation
1030 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001031static void
1032il4965_rs_set_expected_tpt_table(struct il_lq_sta *lq_sta,
1033 struct il_scale_tbl_info *tbl)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001034{
1035 /* Used to choose among HT tables */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001036 s32(*ht_tbl_pointer)[RATE_COUNT];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001037
1038 /* Check for invalid LQ type */
1039 if (WARN_ON_ONCE(!is_legacy(tbl->lq_type) && !is_Ht(tbl->lq_type))) {
1040 tbl->expected_tpt = expected_tpt_legacy;
1041 return;
1042 }
1043
1044 /* Legacy rates have only one table */
1045 if (is_legacy(tbl->lq_type)) {
1046 tbl->expected_tpt = expected_tpt_legacy;
1047 return;
1048 }
1049
1050 /* Choose among many HT tables depending on number of streams
1051 * (SISO/MIMO2), channel width (20/40), SGI, and aggregation
1052 * status */
1053 if (is_siso(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1054 ht_tbl_pointer = expected_tpt_siso20MHz;
1055 else if (is_siso(tbl->lq_type))
1056 ht_tbl_pointer = expected_tpt_siso40MHz;
1057 else if (is_mimo2(tbl->lq_type) && (!tbl->is_ht40 || lq_sta->is_dup))
1058 ht_tbl_pointer = expected_tpt_mimo2_20MHz;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001059 else /* if (is_mimo2(tbl->lq_type)) <-- must be true */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001060 ht_tbl_pointer = expected_tpt_mimo2_40MHz;
1061
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001062 if (!tbl->is_SGI && !lq_sta->is_agg) /* Normal */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001063 tbl->expected_tpt = ht_tbl_pointer[0];
1064 else if (tbl->is_SGI && !lq_sta->is_agg) /* SGI */
1065 tbl->expected_tpt = ht_tbl_pointer[1];
1066 else if (!tbl->is_SGI && lq_sta->is_agg) /* AGG */
1067 tbl->expected_tpt = ht_tbl_pointer[2];
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001068 else /* AGG+SGI */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001069 tbl->expected_tpt = ht_tbl_pointer[3];
1070}
1071
1072/*
1073 * Find starting rate for new "search" high-throughput mode of modulation.
1074 * Goal is to find lowest expected rate (under perfect conditions) that is
1075 * above the current measured throughput of "active" mode, to give new mode
1076 * a fair chance to prove itself without too many challenges.
1077 *
1078 * This gets called when transitioning to more aggressive modulation
1079 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1080 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1081 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1082 * bit rate will typically need to increase, but not if performance was bad.
1083 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001084static s32
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001085il4965_rs_get_best_rate(struct il_priv *il, struct il_lq_sta *lq_sta,
1086 struct il_scale_tbl_info *tbl, /* "search" */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001087 u16 rate_mask, s8 idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001088{
1089 /* "active" values */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001090 struct il_scale_tbl_info *active_tbl =
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001091 &(lq_sta->lq_info[lq_sta->active_tbl]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001092 s32 active_sr = active_tbl->win[idx].success_ratio;
1093 s32 active_tpt = active_tbl->expected_tpt[idx];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001094
1095 /* expected "search" throughput */
1096 s32 *tpt_tbl = tbl->expected_tpt;
1097
1098 s32 new_rate, high, low, start_hi;
1099 u16 high_low;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001100 s8 rate = idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001101
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001102 new_rate = high = low = start_hi = RATE_INVALID;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001103
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001104 for (;;) {
1105 high_low =
1106 il4965_rs_get_adjacent_rate(il, rate, rate_mask,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001107 tbl->lq_type);
1108
1109 low = high_low & 0xff;
1110 high = (high_low >> 8) & 0xff;
1111
1112 /*
1113 * Lower the "search" bit rate, to give new "search" mode
1114 * approximately the same throughput as "active" if:
1115 *
1116 * 1) "Active" mode has been working modestly well (but not
1117 * great), and expected "search" throughput (under perfect
1118 * conditions) at candidate rate is above the actual
1119 * measured "active" throughput (but less than expected
1120 * "active" throughput under perfect conditions).
1121 * OR
1122 * 2) "Active" mode has been working perfectly or very well
1123 * and expected "search" throughput (under perfect
1124 * conditions) at candidate rate is above expected
1125 * "active" throughput (under perfect conditions).
1126 */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001127 if ((100 * tpt_tbl[rate] > lq_sta->last_tpt &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001128 (active_sr > RATE_DECREASE_TH && active_sr <= RATE_HIGH_TH
1129 && tpt_tbl[rate] <= active_tpt)) ||
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001130 (active_sr >= RATE_SCALE_SWITCH &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001131 tpt_tbl[rate] > active_tpt)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001132
1133 /* (2nd or later pass)
1134 * If we've already tried to raise the rate, and are
1135 * now trying to lower it, use the higher rate. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001136 if (start_hi != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001137 new_rate = start_hi;
1138 break;
1139 }
1140
1141 new_rate = rate;
1142
1143 /* Loop again with lower rate */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001144 if (low != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001145 rate = low;
1146
1147 /* Lower rate not available, use the original */
1148 else
1149 break;
1150
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001151 /* Else try to raise the "search" rate to match "active" */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001152 } else {
1153 /* (2nd or later pass)
1154 * If we've already tried to lower the rate, and are
1155 * now trying to raise it, use the lower rate. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001156 if (new_rate != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001157 break;
1158
1159 /* Loop again with higher rate */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001160 else if (high != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001161 start_hi = high;
1162 rate = high;
1163
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001164 /* Higher rate not available, use the original */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001165 } else {
1166 new_rate = rate;
1167 break;
1168 }
1169 }
1170 }
1171
1172 return new_rate;
1173}
1174
1175/*
1176 * Set up search table for MIMO2
1177 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001178static int
1179il4965_rs_switch_to_mimo2(struct il_priv *il, struct il_lq_sta *lq_sta,
1180 struct ieee80211_conf *conf,
1181 struct ieee80211_sta *sta,
1182 struct il_scale_tbl_info *tbl, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001183{
1184 u16 rate_mask;
1185 s32 rate;
1186 s8 is_green = lq_sta->is_green;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001187 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
1188 struct il_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001189
1190 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1191 return -1;
1192
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001193 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2) ==
1194 WLAN_HT_CAP_SM_PS_STATIC)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001195 return -1;
1196
1197 /* Need both Tx chains/antennas to support MIMO */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001198 if (il->hw_params.tx_chains_num < 2)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001199 return -1;
1200
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001201 D_RATE("LQ: try to switch to MIMO2\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001202
1203 tbl->lq_type = LQ_MIMO2;
1204 tbl->is_dup = lq_sta->is_dup;
1205 tbl->action = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001206 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001207 rate_mask = lq_sta->active_mimo2_rate;
1208
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001209 if (il_is_ht40_tx_allowed(il, ctx, &sta->ht_cap))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001210 tbl->is_ht40 = 1;
1211 else
1212 tbl->is_ht40 = 0;
1213
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001214 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001215
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001216 rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001217
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001218 D_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001219 if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001220 D_RATE("Can't switch with idx %d rate mask %x\n", rate,
1221 rate_mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001222 return -1;
1223 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001224 tbl->current_rate =
1225 il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001226
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001227 D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
1228 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001229 return 0;
1230}
1231
1232/*
1233 * Set up search table for SISO
1234 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001235static int
1236il4965_rs_switch_to_siso(struct il_priv *il, struct il_lq_sta *lq_sta,
1237 struct ieee80211_conf *conf, struct ieee80211_sta *sta,
1238 struct il_scale_tbl_info *tbl, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001239{
1240 u16 rate_mask;
1241 u8 is_green = lq_sta->is_green;
1242 s32 rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001243 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
1244 struct il_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001245
1246 if (!conf_is_ht(conf) || !sta->ht_cap.ht_supported)
1247 return -1;
1248
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001249 D_RATE("LQ: try to switch to SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001250
1251 tbl->is_dup = lq_sta->is_dup;
1252 tbl->lq_type = LQ_SISO;
1253 tbl->action = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001254 tbl->max_search = IL_MAX_SEARCH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001255 rate_mask = lq_sta->active_siso_rate;
1256
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001257 if (il_is_ht40_tx_allowed(il, ctx, &sta->ht_cap))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001258 tbl->is_ht40 = 1;
1259 else
1260 tbl->is_ht40 = 0;
1261
1262 if (is_green)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001263 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001264
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001265 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001266 rate = il4965_rs_get_best_rate(il, lq_sta, tbl, rate_mask, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001267
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001268 D_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001269 if (rate == RATE_INVALID || !((1 << rate) & rate_mask)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001270 D_RATE("can not switch with idx %d rate mask %x\n", rate,
1271 rate_mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001272 return -1;
1273 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001274 tbl->current_rate =
1275 il4965_rate_n_flags_from_tbl(il, tbl, rate, is_green);
1276 D_RATE("LQ: Switch to new mcs %X idx is green %X\n", tbl->current_rate,
1277 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001278 return 0;
1279}
1280
1281/*
1282 * Try to switch to new modulation mode from legacy
1283 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001284static int
1285il4965_rs_move_legacy_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1286 struct ieee80211_conf *conf,
1287 struct ieee80211_sta *sta, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001288{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001289 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1290 struct il_scale_tbl_info *search_tbl =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001291 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001292 struct il_rate_scale_data *win = &(tbl->win[idx]);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001293 u32 sz =
1294 (sizeof(struct il_scale_tbl_info) -
1295 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001296 u8 start_action;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001297 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1298 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001299 int ret = 0;
1300 u8 update_search_tbl_counter = 0;
1301
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001302 tbl->action = IL_LEGACY_SWITCH_SISO;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001303
1304 start_action = tbl->action;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001305 for (;;) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001306 lq_sta->action_counter++;
1307 switch (tbl->action) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001308 case IL_LEGACY_SWITCH_ANTENNA1:
1309 case IL_LEGACY_SWITCH_ANTENNA2:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001310 D_RATE("LQ: Legacy toggle Antenna\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001311
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001312 if ((tbl->action == IL_LEGACY_SWITCH_ANTENNA1 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001313 tx_chains_num <= 1) ||
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001314 (tbl->action == IL_LEGACY_SWITCH_ANTENNA2 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001315 tx_chains_num <= 2))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001316 break;
1317
1318 /* Don't change antenna if success has been great */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001319 if (win->success_ratio >= IL_RS_GOOD_RATIO)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001320 break;
1321
1322 /* Set up search table to try other antenna */
1323 memcpy(search_tbl, tbl, sz);
1324
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001325 if (il4965_rs_toggle_antenna
1326 (valid_tx_ant, &search_tbl->current_rate,
1327 search_tbl)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001328 update_search_tbl_counter = 1;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001329 il4965_rs_set_expected_tpt_table(lq_sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001330 search_tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001331 goto out;
1332 }
1333 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001334 case IL_LEGACY_SWITCH_SISO:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001335 D_RATE("LQ: Legacy switch to SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001336
1337 /* Set up search table to try SISO */
1338 memcpy(search_tbl, tbl, sz);
1339 search_tbl->is_SGI = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001340 ret =
1341 il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
1342 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001343 if (!ret) {
1344 lq_sta->action_counter = 0;
1345 goto out;
1346 }
1347
1348 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001349 case IL_LEGACY_SWITCH_MIMO2_AB:
1350 case IL_LEGACY_SWITCH_MIMO2_AC:
1351 case IL_LEGACY_SWITCH_MIMO2_BC:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001352 D_RATE("LQ: Legacy switch to MIMO2\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001353
1354 /* Set up search table to try MIMO */
1355 memcpy(search_tbl, tbl, sz);
1356 search_tbl->is_SGI = 0;
1357
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001358 if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AB)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001359 search_tbl->ant_type = ANT_AB;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001360 else if (tbl->action == IL_LEGACY_SWITCH_MIMO2_AC)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001361 search_tbl->ant_type = ANT_AC;
1362 else
1363 search_tbl->ant_type = ANT_BC;
1364
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001365 if (!il4965_rs_is_valid_ant
1366 (valid_tx_ant, search_tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001367 break;
1368
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001369 ret =
1370 il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
1371 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001372 if (!ret) {
1373 lq_sta->action_counter = 0;
1374 goto out;
1375 }
1376 break;
1377 }
1378 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001379 if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
1380 tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001381
1382 if (tbl->action == start_action)
1383 break;
1384
1385 }
1386 search_tbl->lq_type = LQ_NONE;
1387 return 0;
1388
1389out:
1390 lq_sta->search_better_tbl = 1;
1391 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001392 if (tbl->action > IL_LEGACY_SWITCH_MIMO2_BC)
1393 tbl->action = IL_LEGACY_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001394 if (update_search_tbl_counter)
1395 search_tbl->action = tbl->action;
1396 return 0;
1397
1398}
1399
1400/*
1401 * Try to switch to new modulation mode from SISO
1402 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001403static int
1404il4965_rs_move_siso_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1405 struct ieee80211_conf *conf,
1406 struct ieee80211_sta *sta, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001407{
1408 u8 is_green = lq_sta->is_green;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001409 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1410 struct il_scale_tbl_info *search_tbl =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001411 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001412 struct il_rate_scale_data *win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001413 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001414 u32 sz =
1415 (sizeof(struct il_scale_tbl_info) -
1416 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001417 u8 start_action;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001418 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1419 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001420 u8 update_search_tbl_counter = 0;
1421 int ret;
1422
1423 start_action = tbl->action;
1424
1425 for (;;) {
1426 lq_sta->action_counter++;
1427 switch (tbl->action) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001428 case IL_SISO_SWITCH_ANTENNA1:
1429 case IL_SISO_SWITCH_ANTENNA2:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001430 D_RATE("LQ: SISO toggle Antenna\n");
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001431 if ((tbl->action == IL_SISO_SWITCH_ANTENNA1 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001432 tx_chains_num <= 1) ||
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001433 (tbl->action == IL_SISO_SWITCH_ANTENNA2 &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001434 tx_chains_num <= 2))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001435 break;
1436
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001437 if (win->success_ratio >= IL_RS_GOOD_RATIO)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001438 break;
1439
1440 memcpy(search_tbl, tbl, sz);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001441 if (il4965_rs_toggle_antenna
1442 (valid_tx_ant, &search_tbl->current_rate,
1443 search_tbl)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001444 update_search_tbl_counter = 1;
1445 goto out;
1446 }
1447 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001448 case IL_SISO_SWITCH_MIMO2_AB:
1449 case IL_SISO_SWITCH_MIMO2_AC:
1450 case IL_SISO_SWITCH_MIMO2_BC:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001451 D_RATE("LQ: SISO switch to MIMO2\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001452 memcpy(search_tbl, tbl, sz);
1453 search_tbl->is_SGI = 0;
1454
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001455 if (tbl->action == IL_SISO_SWITCH_MIMO2_AB)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001456 search_tbl->ant_type = ANT_AB;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001457 else if (tbl->action == IL_SISO_SWITCH_MIMO2_AC)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001458 search_tbl->ant_type = ANT_AC;
1459 else
1460 search_tbl->ant_type = ANT_BC;
1461
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001462 if (!il4965_rs_is_valid_ant
1463 (valid_tx_ant, search_tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001464 break;
1465
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001466 ret =
1467 il4965_rs_switch_to_mimo2(il, lq_sta, conf, sta,
1468 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001469 if (!ret)
1470 goto out;
1471 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001472 case IL_SISO_SWITCH_GI:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001473 if (!tbl->is_ht40 &&
1474 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001475 break;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001476 if (tbl->is_ht40 &&
1477 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001478 break;
1479
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001480 D_RATE("LQ: SISO toggle SGI/NGI\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001481
1482 memcpy(search_tbl, tbl, sz);
1483 if (is_green) {
1484 if (!tbl->is_SGI)
1485 break;
1486 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001487 IL_ERR("SGI was set in GF+SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001488 }
1489 search_tbl->is_SGI = !tbl->is_SGI;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001490 il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001491 if (tbl->is_SGI) {
1492 s32 tpt = lq_sta->last_tpt / 100;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001493 if (tpt >= search_tbl->expected_tpt[idx])
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001494 break;
1495 }
1496 search_tbl->current_rate =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001497 il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
1498 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001499 update_search_tbl_counter = 1;
1500 goto out;
1501 }
1502 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001503 if (tbl->action > IL_SISO_SWITCH_GI)
1504 tbl->action = IL_SISO_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001505
1506 if (tbl->action == start_action)
1507 break;
1508 }
1509 search_tbl->lq_type = LQ_NONE;
1510 return 0;
1511
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001512out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001513 lq_sta->search_better_tbl = 1;
1514 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001515 if (tbl->action > IL_SISO_SWITCH_GI)
1516 tbl->action = IL_SISO_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001517 if (update_search_tbl_counter)
1518 search_tbl->action = tbl->action;
1519
1520 return 0;
1521}
1522
1523/*
1524 * Try to switch to new modulation mode from MIMO2
1525 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001526static int
1527il4965_rs_move_mimo2_to_other(struct il_priv *il, struct il_lq_sta *lq_sta,
1528 struct ieee80211_conf *conf,
1529 struct ieee80211_sta *sta, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001530{
1531 s8 is_green = lq_sta->is_green;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001532 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1533 struct il_scale_tbl_info *search_tbl =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001534 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001535 struct il_rate_scale_data *win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001536 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001537 u32 sz =
1538 (sizeof(struct il_scale_tbl_info) -
1539 (sizeof(struct il_rate_scale_data) * RATE_COUNT));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001540 u8 start_action;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001541 u8 valid_tx_ant = il->hw_params.valid_tx_ant;
1542 u8 tx_chains_num = il->hw_params.tx_chains_num;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001543 u8 update_search_tbl_counter = 0;
1544 int ret;
1545
1546 start_action = tbl->action;
1547 for (;;) {
1548 lq_sta->action_counter++;
1549 switch (tbl->action) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001550 case IL_MIMO2_SWITCH_ANTENNA1:
1551 case IL_MIMO2_SWITCH_ANTENNA2:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001552 D_RATE("LQ: MIMO2 toggle Antennas\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001553
1554 if (tx_chains_num <= 2)
1555 break;
1556
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001557 if (win->success_ratio >= IL_RS_GOOD_RATIO)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001558 break;
1559
1560 memcpy(search_tbl, tbl, sz);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001561 if (il4965_rs_toggle_antenna
1562 (valid_tx_ant, &search_tbl->current_rate,
1563 search_tbl)) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001564 update_search_tbl_counter = 1;
1565 goto out;
1566 }
1567 break;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001568 case IL_MIMO2_SWITCH_SISO_A:
1569 case IL_MIMO2_SWITCH_SISO_B:
1570 case IL_MIMO2_SWITCH_SISO_C:
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001571 D_RATE("LQ: MIMO2 switch to SISO\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001572
1573 /* Set up new search table for SISO */
1574 memcpy(search_tbl, tbl, sz);
1575
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001576 if (tbl->action == IL_MIMO2_SWITCH_SISO_A)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001577 search_tbl->ant_type = ANT_A;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001578 else if (tbl->action == IL_MIMO2_SWITCH_SISO_B)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001579 search_tbl->ant_type = ANT_B;
1580 else
1581 search_tbl->ant_type = ANT_C;
1582
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001583 if (!il4965_rs_is_valid_ant
1584 (valid_tx_ant, search_tbl->ant_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001585 break;
1586
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001587 ret =
1588 il4965_rs_switch_to_siso(il, lq_sta, conf, sta,
1589 search_tbl, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001590 if (!ret)
1591 goto out;
1592
1593 break;
1594
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001595 case IL_MIMO2_SWITCH_GI:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001596 if (!tbl->is_ht40 &&
1597 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_20))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001598 break;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001599 if (tbl->is_ht40 &&
1600 !(ht_cap->cap & IEEE80211_HT_CAP_SGI_40))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001601 break;
1602
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001603 D_RATE("LQ: MIMO2 toggle SGI/NGI\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001604
1605 /* Set up new search table for MIMO2 */
1606 memcpy(search_tbl, tbl, sz);
1607 search_tbl->is_SGI = !tbl->is_SGI;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001608 il4965_rs_set_expected_tpt_table(lq_sta, search_tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001609 /*
1610 * If active table already uses the fastest possible
1611 * modulation (dual stream with short guard interval),
1612 * and it's working well, there's no need to look
1613 * for a better type of modulation!
1614 */
1615 if (tbl->is_SGI) {
1616 s32 tpt = lq_sta->last_tpt / 100;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001617 if (tpt >= search_tbl->expected_tpt[idx])
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001618 break;
1619 }
1620 search_tbl->current_rate =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001621 il4965_rate_n_flags_from_tbl(il, search_tbl, idx,
1622 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001623 update_search_tbl_counter = 1;
1624 goto out;
1625
1626 }
1627 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001628 if (tbl->action > IL_MIMO2_SWITCH_GI)
1629 tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001630
1631 if (tbl->action == start_action)
1632 break;
1633 }
1634 search_tbl->lq_type = LQ_NONE;
1635 return 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001636out:
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001637 lq_sta->search_better_tbl = 1;
1638 tbl->action++;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001639 if (tbl->action > IL_MIMO2_SWITCH_GI)
1640 tbl->action = IL_MIMO2_SWITCH_ANTENNA1;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001641 if (update_search_tbl_counter)
1642 search_tbl->action = tbl->action;
1643
1644 return 0;
1645
1646}
1647
1648/*
1649 * Check whether we should continue using same modulation mode, or
1650 * begin search for a new mode, based on:
1651 * 1) # tx successes or failures while using this mode
1652 * 2) # times calling this function
1653 * 3) elapsed time in this mode (not used, for now)
1654 */
1655static void
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001656il4965_rs_stay_in_table(struct il_lq_sta *lq_sta, bool force_search)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001657{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001658 struct il_scale_tbl_info *tbl;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001659 int i;
1660 int active_tbl;
1661 int flush_interval_passed = 0;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001662 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001663
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001664 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001665 active_tbl = lq_sta->active_tbl;
1666
1667 tbl = &(lq_sta->lq_info[active_tbl]);
1668
1669 /* If we've been disallowing search, see if we should now allow it */
1670 if (lq_sta->stay_in_tbl) {
1671
1672 /* Elapsed time using current modulation mode */
1673 if (lq_sta->flush_timer)
1674 flush_interval_passed =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001675 time_after(jiffies,
1676 (unsigned long)(lq_sta->flush_timer +
1677 RATE_SCALE_FLUSH_INTVL));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001678
1679 /*
1680 * Check if we should allow search for new modulation mode.
1681 * If many frames have failed or succeeded, or we've used
1682 * this same modulation for a long time, allow search, and
1683 * reset history stats that keep track of whether we should
1684 * allow a new search. Also (below) reset all bitmaps and
1685 * stats in active history.
1686 */
1687 if (force_search ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001688 lq_sta->total_failed > lq_sta->max_failure_limit ||
1689 lq_sta->total_success > lq_sta->max_success_limit ||
1690 (!lq_sta->search_better_tbl && lq_sta->flush_timer &&
1691 flush_interval_passed)) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001692 D_RATE("LQ: stay is expired %d %d %d\n:",
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001693 lq_sta->total_failed, lq_sta->total_success,
1694 flush_interval_passed);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001695
1696 /* Allow search for new mode */
1697 lq_sta->stay_in_tbl = 0; /* only place reset */
1698 lq_sta->total_failed = 0;
1699 lq_sta->total_success = 0;
1700 lq_sta->flush_timer = 0;
1701
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001702 /*
1703 * Else if we've used this modulation mode enough repetitions
1704 * (regardless of elapsed time or success/failure), reset
1705 * history bitmaps and rate-specific stats for all rates in
1706 * active table.
1707 */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001708 } else {
1709 lq_sta->table_count++;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001710 if (lq_sta->table_count >= lq_sta->table_count_limit) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001711 lq_sta->table_count = 0;
1712
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001713 D_RATE("LQ: stay in table clear win\n");
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001714 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001715 il4965_rs_rate_scale_clear_win(&
1716 (tbl->
1717 win
1718 [i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001719 }
1720 }
1721
1722 /* If transitioning to allow "search", reset all history
1723 * bitmaps and stats in active table (this will become the new
1724 * "search" table). */
1725 if (!lq_sta->stay_in_tbl) {
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001726 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001727 il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001728 }
1729 }
1730}
1731
1732/*
1733 * setup rate table in uCode
1734 * return rate_n_flags as used in the table
1735 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001736static u32
1737il4965_rs_update_rate_tbl(struct il_priv *il, struct il_rxon_context *ctx,
1738 struct il_lq_sta *lq_sta,
1739 struct il_scale_tbl_info *tbl, int idx, u8 is_green)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001740{
1741 u32 rate;
1742
1743 /* Update uCode's rate table. */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001744 rate = il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001745 il4965_rs_fill_link_cmd(il, lq_sta, rate);
1746 il_send_lq_cmd(il, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001747
1748 return rate;
1749}
1750
1751/*
1752 * Do rate scaling and search for new modulation mode.
1753 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001754static void
1755il4965_rs_rate_scale_perform(struct il_priv *il, struct sk_buff *skb,
1756 struct ieee80211_sta *sta,
1757 struct il_lq_sta *lq_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001758{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001759 struct ieee80211_hw *hw = il->hw;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001760 struct ieee80211_conf *conf = &hw->conf;
1761 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
1762 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001763 int low = RATE_INVALID;
1764 int high = RATE_INVALID;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001765 int idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001766 int i;
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001767 struct il_rate_scale_data *win = NULL;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001768 int current_tpt = IL_INVALID_VALUE;
1769 int low_tpt = IL_INVALID_VALUE;
1770 int high_tpt = IL_INVALID_VALUE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001771 u32 fail_count;
1772 s8 scale_action = 0;
1773 u16 rate_mask;
1774 u8 update_lq = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001775 struct il_scale_tbl_info *tbl, *tbl1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001776 u16 rate_scale_idx_msk = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001777 u32 rate;
1778 u8 is_green = 0;
1779 u8 active_tbl = 0;
1780 u8 done_search = 0;
1781 u16 high_low;
1782 s32 sr;
1783 u8 tid = MAX_TID_COUNT;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001784 struct il_tid_data *tid_data;
1785 struct il_station_priv *sta_priv = (void *)sta->drv_priv;
1786 struct il_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001787
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001788 D_RATE("rate scale calculate new rate for skb\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001789
1790 /* Send management frames and NO_ACK data using lowest rate. */
1791 /* TODO: this could probably be improved.. */
1792 if (!ieee80211_is_data(hdr->frame_control) ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001793 (info->flags & IEEE80211_TX_CTL_NO_ACK))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001794 return;
1795
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001796 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
1797
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001798 tid = il4965_rs_tl_add_packet(lq_sta, hdr);
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02001799 if (tid != MAX_TID_COUNT && (lq_sta->tx_agg_tid_en & (1 << tid))) {
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001800 tid_data = &il->stations[lq_sta->lq.sta_id].tid[tid];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001801 if (tid_data->agg.state == IL_AGG_OFF)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001802 lq_sta->is_agg = 0;
1803 else
1804 lq_sta->is_agg = 1;
1805 } else
1806 lq_sta->is_agg = 0;
1807
1808 /*
1809 * Select rate-scale / modulation-mode table to work with in
1810 * the rest of this function: "search" if searching for better
1811 * modulation mode, or "active" if doing rate scaling within a mode.
1812 */
1813 if (!lq_sta->search_better_tbl)
1814 active_tbl = lq_sta->active_tbl;
1815 else
1816 active_tbl = 1 - lq_sta->active_tbl;
1817
1818 tbl = &(lq_sta->lq_info[active_tbl]);
1819 if (is_legacy(tbl->lq_type))
1820 lq_sta->is_green = 0;
1821 else
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001822 lq_sta->is_green = il4965_rs_use_green(sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001823 is_green = lq_sta->is_green;
1824
1825 /* current tx rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001826 idx = lq_sta->last_txrate_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001827
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001828 D_RATE("Rate scale idx %d for type %d\n", idx, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001829
1830 /* rates available for this association, and for modulation mode */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001831 rate_mask = il4965_rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001832
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01001833 D_RATE("mask 0x%04X\n", rate_mask);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001834
1835 /* mask with station rate restriction */
1836 if (is_legacy(tbl->lq_type)) {
1837 if (lq_sta->band == IEEE80211_BAND_5GHZ)
1838 /* supp_rates has no CCK bits in A mode */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001839 rate_scale_idx_msk =
1840 (u16) (rate_mask &
1841 (lq_sta->supp_rates << IL_FIRST_OFDM_RATE));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001842 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001843 rate_scale_idx_msk =
1844 (u16) (rate_mask & lq_sta->supp_rates);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001845
1846 } else
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001847 rate_scale_idx_msk = rate_mask;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001848
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001849 if (!rate_scale_idx_msk)
1850 rate_scale_idx_msk = rate_mask;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001851
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001852 if (!((1 << idx) & rate_scale_idx_msk)) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001853 IL_ERR("Current Rate is not valid\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001854 if (lq_sta->search_better_tbl) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001855 /* revert to active table if search table is not valid */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001856 tbl->lq_type = LQ_NONE;
1857 lq_sta->search_better_tbl = 0;
1858 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1859 /* get "active" rate info */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001860 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001861 rate =
1862 il4965_rs_update_rate_tbl(il, ctx, lq_sta, tbl, idx,
1863 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001864 }
1865 return;
1866 }
1867
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001868 /* Get expected throughput table and history win for current rate */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001869 if (!tbl->expected_tpt) {
Stanislaw Gruszka9406f792011-08-18 22:07:57 +02001870 IL_ERR("tbl->expected_tpt is NULL\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001871 return;
1872 }
1873
1874 /* force user max rate if set by user */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001875 if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < idx) {
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001876 idx = lq_sta->max_rate_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001877 update_lq = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001878 win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001879 goto lq_update;
1880 }
1881
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001882 win = &(tbl->win[idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001883
1884 /*
1885 * If there is not enough history to calculate actual average
1886 * throughput, keep analyzing results of more tx frames, without
1887 * changing rate or mode (bypass most of the rest of this function).
1888 * Set up new rate table in uCode only if old rate is not supported
1889 * in current association (use new rate found above).
1890 */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001891 fail_count = win->counter - win->success_counter;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001892 if (fail_count < RATE_MIN_FAILURE_TH &&
1893 win->success_counter < RATE_MIN_SUCCESS_TH) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001894 D_RATE("LQ: still below TH. succ=%d total=%d " "for idx %d\n",
1895 win->success_counter, win->counter, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001896
1897 /* Can't calculate this yet; not enough history */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001898 win->average_tpt = IL_INVALID_VALUE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001899
1900 /* Should we stay with this modulation mode,
1901 * or search for a new one? */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001902 il4965_rs_stay_in_table(lq_sta, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001903
1904 goto out;
1905 }
1906 /* Else we have enough samples; calculate estimate of
1907 * actual average throughput */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001908 if (win->average_tpt !=
1909 ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128)) {
1910 IL_ERR("expected_tpt should have been calculated by now\n");
1911 win->average_tpt =
1912 ((win->success_ratio * tbl->expected_tpt[idx] + 64) / 128);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001913 }
1914
1915 /* If we are searching for better modulation mode, check success. */
1916 if (lq_sta->search_better_tbl) {
1917 /* If good success, continue using the "search" mode;
1918 * no need to send new link quality command, since we're
1919 * continuing to use the setup that we've been trying. */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001920 if (win->average_tpt > lq_sta->last_tpt) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001921
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001922 D_RATE("LQ: SWITCHING TO NEW TBL "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001923 "suc=%d cur-tpt=%d old-tpt=%d\n",
1924 win->success_ratio, win->average_tpt,
1925 lq_sta->last_tpt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001926
1927 if (!is_legacy(tbl->lq_type))
1928 lq_sta->enable_counter = 1;
1929
1930 /* Swap tables; "search" becomes "active" */
1931 lq_sta->active_tbl = active_tbl;
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001932 current_tpt = win->average_tpt;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001933
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001934 /* Else poor success; go back to mode in "active" table */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001935 } else {
1936
Stanislaw Gruszka3b98c7f2011-08-26 16:29:35 +02001937 D_RATE("LQ: GOING BACK TO THE OLD TBL "
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001938 "suc=%d cur-tpt=%d old-tpt=%d\n",
1939 win->success_ratio, win->average_tpt,
1940 lq_sta->last_tpt);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001941
1942 /* Nullify "search" table */
1943 tbl->lq_type = LQ_NONE;
1944
1945 /* Revert to "active" table */
1946 active_tbl = lq_sta->active_tbl;
1947 tbl = &(lq_sta->lq_info[active_tbl]);
1948
1949 /* Revert to "active" rate and throughput info */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01001950 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001951 current_tpt = lq_sta->last_tpt;
1952
1953 /* Need to set up a new rate table in uCode */
1954 update_lq = 1;
1955 }
1956
1957 /* Either way, we've made a decision; modulation mode
1958 * search is done, allow rate adjustment next time. */
1959 lq_sta->search_better_tbl = 0;
1960 done_search = 1; /* Don't switch modes below! */
1961 goto lq_update;
1962 }
1963
1964 /* (Else) not in search of better modulation mode, try for better
1965 * starting rate, while staying in this mode. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001966 high_low =
1967 il4965_rs_get_adjacent_rate(il, idx, rate_scale_idx_msk,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001968 tbl->lq_type);
1969 low = high_low & 0xff;
1970 high = (high_low >> 8) & 0xff;
1971
1972 /* If user set max rate, dont allow higher than user constrain */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001973 if (lq_sta->max_rate_idx != -1 && lq_sta->max_rate_idx < high)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001974 high = RATE_INVALID;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001975
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001976 sr = win->success_ratio;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001977
1978 /* Collect measured throughputs for current and adjacent rates */
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02001979 current_tpt = win->average_tpt;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001980 if (low != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001981 low_tpt = tbl->win[low].average_tpt;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001982 if (high != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001983 high_tpt = tbl->win[high].average_tpt;
1984
1985 scale_action = 0;
1986
1987 /* Too many failures, decrease rate */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001988 if (sr <= RATE_DECREASE_TH || current_tpt == 0) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001989 D_RATE("decrease rate because of low success_ratio\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001990 scale_action = -1;
1991
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001992 /* No throughput measured yet for adjacent rates; try increase. */
1993 } else if (low_tpt == IL_INVALID_VALUE && high_tpt == IL_INVALID_VALUE) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001994
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001995 if (high != RATE_INVALID && sr >= RATE_INCREASE_TH)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001996 scale_action = 1;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02001997 else if (low != RATE_INVALID)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001998 scale_action = 0;
1999 }
2000
2001 /* Both adjacent throughputs are measured, but neither one has better
2002 * throughput; we're using the best rate, don't change it! */
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002003 else if (low_tpt != IL_INVALID_VALUE && high_tpt != IL_INVALID_VALUE &&
2004 low_tpt < current_tpt && high_tpt < current_tpt)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002005 scale_action = 0;
2006
2007 /* At least one adjacent rate's throughput is measured,
2008 * and may have better performance. */
2009 else {
2010 /* Higher adjacent rate's throughput is measured */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002011 if (high_tpt != IL_INVALID_VALUE) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002012 /* Higher rate has better throughput */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002013 if (high_tpt > current_tpt && sr >= RATE_INCREASE_TH)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002014 scale_action = 1;
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002015 else
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002016 scale_action = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002017
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002018 /* Lower adjacent rate's throughput is measured */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002019 } else if (low_tpt != IL_INVALID_VALUE) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002020 /* Lower rate has better throughput */
2021 if (low_tpt > current_tpt) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002022 D_RATE("decrease rate because of low tpt\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002023 scale_action = -1;
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002024 } else if (sr >= RATE_INCREASE_TH) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002025 scale_action = 1;
2026 }
2027 }
2028 }
2029
2030 /* Sanity check; asked for decrease, but success rate or throughput
2031 * has been good at old rate. Don't change it. */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002032 if (scale_action == -1 && low != RATE_INVALID &&
2033 (sr > RATE_HIGH_TH || current_tpt > 100 * tbl->expected_tpt[low]))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002034 scale_action = 0;
2035
2036 switch (scale_action) {
2037 case -1:
2038 /* Decrease starting rate, update uCode's rate table */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002039 if (low != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002040 update_lq = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002041 idx = low;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002042 }
2043
2044 break;
2045 case 1:
2046 /* Increase starting rate, update uCode's rate table */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002047 if (high != RATE_INVALID) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002048 update_lq = 1;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002049 idx = high;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002050 }
2051
2052 break;
2053 case 0:
2054 /* No change */
2055 default:
2056 break;
2057 }
2058
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002059 D_RATE("choose rate scale idx %d action %d low %d " "high %d type %d\n",
2060 idx, scale_action, low, high, tbl->lq_type);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002061
2062lq_update:
2063 /* Replace uCode's rate table for the destination station. */
2064 if (update_lq)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002065 rate =
2066 il4965_rs_update_rate_tbl(il, ctx, lq_sta, tbl, idx,
2067 is_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002068
2069 /* Should we stay with this modulation mode,
2070 * or search for a new one? */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002071 il4965_rs_stay_in_table(lq_sta, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002072
2073 /*
2074 * Search for new modulation mode if we're:
2075 * 1) Not changing rates right now
2076 * 2) Not just finishing up a search
2077 * 3) Allowing a new search
2078 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002079 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && win->counter) {
2080 /* Save current throughput to compare with "search" throughput */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002081 lq_sta->last_tpt = current_tpt;
2082
2083 /* Select a new "search" modulation mode to try.
2084 * If one is found, set up the new "search" table. */
2085 if (is_legacy(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002086 il4965_rs_move_legacy_other(il, lq_sta, conf, sta, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002087 else if (is_siso(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002088 il4965_rs_move_siso_to_other(il, lq_sta, conf, sta,
2089 idx);
2090 else /* (is_mimo2(tbl->lq_type)) */
2091 il4965_rs_move_mimo2_to_other(il, lq_sta, conf, sta,
2092 idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002093
2094 /* If new "search" mode was selected, set up in uCode table */
2095 if (lq_sta->search_better_tbl) {
2096 /* Access the "search" table, clear its history. */
2097 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002098 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002099 il4965_rs_rate_scale_clear_win(&(tbl->win[i]));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002100
2101 /* Use new "search" start rate */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002102 idx = il4965_hwrate_to_plcp_idx(tbl->current_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002103
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002104 D_RATE("Switch current mcs: %X idx: %d\n",
2105 tbl->current_rate, idx);
2106 il4965_rs_fill_link_cmd(il, lq_sta, tbl->current_rate);
2107 il_send_lq_cmd(il, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002108 } else
2109 done_search = 1;
2110 }
2111
2112 if (done_search && !lq_sta->stay_in_tbl) {
2113 /* If the "active" (non-search) mode was legacy,
2114 * and we've tried switching antennas,
2115 * but we haven't been able to try HT modes (not available),
2116 * stay with best antenna legacy modulation for a while
2117 * before next round of mode comparisons. */
2118 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
2119 if (is_legacy(tbl1->lq_type) && !conf_is_ht(conf) &&
2120 lq_sta->action_counter > tbl1->max_search) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002121 D_RATE("LQ: STAY in legacy table\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002122 il4965_rs_set_stay_in_table(il, 1, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002123 }
2124
2125 /* If we're in an HT mode, and all 3 mode switch actions
2126 * have been tried and compared, stay in this best modulation
2127 * mode for a while before next round of mode comparisons. */
2128 if (lq_sta->enable_counter &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002129 lq_sta->action_counter >= tbl1->max_search) {
2130 if (lq_sta->last_tpt > IL_AGG_TPT_THREHOLD &&
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002131 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002132 tid != MAX_TID_COUNT) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002133 tid_data =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002134 &il->stations[lq_sta->lq.sta_id].tid[tid];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002135 if (tid_data->agg.state == IL_AGG_OFF) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002136 D_RATE("try to aggregate tid %d\n",
2137 tid);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002138 il4965_rs_tl_turn_on_agg(il, tid,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002139 lq_sta, sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002140 }
2141 }
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002142 il4965_rs_set_stay_in_table(il, 0, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002143 }
2144 }
2145
2146out:
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002147 tbl->current_rate =
2148 il4965_rate_n_flags_from_tbl(il, tbl, idx, is_green);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002149 i = idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002150 lq_sta->last_txrate_idx = i;
2151}
2152
2153/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002154 * il4965_rs_initialize_lq - Initialize a station's hardware rate table
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002155 *
2156 * The uCode's station table contains a table of fallback rates
2157 * for automatic fallback during transmission.
2158 *
2159 * NOTE: This sets up a default set of values. These will be replaced later
2160 * if the driver's iwl-4965-rs rate scaling algorithm is used, instead of
2161 * rc80211_simple.
2162 *
Stanislaw Gruszka4d69c752011-08-30 15:26:35 +02002163 * NOTE: Run C_ADD_STA command to set up station table entry, before
2164 * calling this function (which runs C_TX_LINK_QUALITY_CMD,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002165 * which requires station table entry to exist).
2166 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002167static void
2168il4965_rs_initialize_lq(struct il_priv *il, struct ieee80211_conf *conf,
2169 struct ieee80211_sta *sta, struct il_lq_sta *lq_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002170{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002171 struct il_scale_tbl_info *tbl;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002172 int rate_idx;
2173 int i;
2174 u32 rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002175 u8 use_green = il4965_rs_use_green(sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002176 u8 active_tbl = 0;
2177 u8 valid_tx_ant;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002178 struct il_station_priv *sta_priv;
2179 struct il_rxon_context *ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002180
2181 if (!sta || !lq_sta)
2182 return;
2183
2184 sta_priv = (void *)sta->drv_priv;
2185 ctx = sta_priv->common.ctx;
2186
2187 i = lq_sta->last_txrate_idx;
2188
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002189 valid_tx_ant = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002190
2191 if (!lq_sta->search_better_tbl)
2192 active_tbl = lq_sta->active_tbl;
2193 else
2194 active_tbl = 1 - lq_sta->active_tbl;
2195
2196 tbl = &(lq_sta->lq_info[active_tbl]);
2197
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002198 if (i < 0 || i >= RATE_COUNT)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002199 i = 0;
2200
Stanislaw Gruszkad2ddf622011-08-16 14:17:04 +02002201 rate = il_rates[i].plcp;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002202 tbl->ant_type = il4965_first_antenna(valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002203 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
2204
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002205 if (i >= IL_FIRST_CCK_RATE && i <= IL_LAST_CCK_RATE)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002206 rate |= RATE_MCS_CCK_MSK;
2207
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002208 il4965_rs_get_tbl_info_from_mcs(rate, il->band, tbl, &rate_idx);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002209 if (!il4965_rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2210 il4965_rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002211
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002212 rate = il4965_rate_n_flags_from_tbl(il, tbl, rate_idx, use_green);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002213 tbl->current_rate = rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002214 il4965_rs_set_expected_tpt_table(lq_sta, tbl);
2215 il4965_rs_fill_link_cmd(NULL, lq_sta, rate);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002216 il->stations[lq_sta->lq.sta_id].lq = &lq_sta->lq;
2217 il_send_lq_cmd(il, ctx, &lq_sta->lq, CMD_SYNC, true);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002218}
2219
2220static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002221il4965_rs_get_rate(void *il_r, struct ieee80211_sta *sta, void *il_sta,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002222 struct ieee80211_tx_rate_control *txrc)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002223{
2224
2225 struct sk_buff *skb = txrc->skb;
2226 struct ieee80211_supported_band *sband = txrc->sband;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002227 struct il_priv *il __maybe_unused = (struct il_priv *)il_r;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002228 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002229 struct il_lq_sta *lq_sta = il_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002230 int rate_idx;
2231
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002232 D_RATE("rate scale calculate new rate for skb\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002233
2234 /* Get max rate if user set max rate */
2235 if (lq_sta) {
2236 lq_sta->max_rate_idx = txrc->max_rate_idx;
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002237 if (sband->band == IEEE80211_BAND_5GHZ &&
2238 lq_sta->max_rate_idx != -1)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002239 lq_sta->max_rate_idx += IL_FIRST_OFDM_RATE;
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002240 if (lq_sta->max_rate_idx < 0 ||
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002241 lq_sta->max_rate_idx >= RATE_COUNT)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002242 lq_sta->max_rate_idx = -1;
2243 }
2244
2245 /* Treat uninitialized rate scaling data same as non-existing. */
2246 if (lq_sta && !lq_sta->drv) {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002247 D_RATE("Rate scaling not initialized yet.\n");
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002248 il_sta = NULL;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002249 }
2250
2251 /* Send management frames and NO_ACK data using lowest rate. */
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002252 if (rate_control_send_low(sta, il_sta, txrc))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002253 return;
2254
Greg Dietsche0c348612011-06-02 22:24:06 -05002255 if (!lq_sta)
2256 return;
2257
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002258 rate_idx = lq_sta->last_txrate_idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002259
2260 if (lq_sta->last_rate_n_flags & RATE_MCS_HT_MSK) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002261 rate_idx -= IL_FIRST_OFDM_RATE;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002262 /* 6M and 9M shared same MCS idx */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002263 rate_idx = (rate_idx > 0) ? (rate_idx - 1) : 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002264 if (il4965_rs_extract_rate(lq_sta->last_rate_n_flags) >=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002265 RATE_MIMO2_6M_PLCP)
Stanislaw Gruszka2d09b062011-08-26 16:10:40 +02002266 rate_idx = rate_idx + MCS_IDX_PER_STREAM;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002267 info->control.rates[0].flags = IEEE80211_TX_RC_MCS;
2268 if (lq_sta->last_rate_n_flags & RATE_MCS_SGI_MSK)
2269 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002270 IEEE80211_TX_RC_SHORT_GI;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002271 if (lq_sta->last_rate_n_flags & RATE_MCS_DUP_MSK)
2272 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002273 IEEE80211_TX_RC_DUP_DATA;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002274 if (lq_sta->last_rate_n_flags & RATE_MCS_HT40_MSK)
2275 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002276 IEEE80211_TX_RC_40_MHZ_WIDTH;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002277 if (lq_sta->last_rate_n_flags & RATE_MCS_GF_MSK)
2278 info->control.rates[0].flags |=
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002279 IEEE80211_TX_RC_GREEN_FIELD;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002280 } else {
2281 /* Check for invalid rates */
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002282 if (rate_idx < 0 || rate_idx >= RATE_COUNT_LEGACY ||
Stanislaw Gruszka232913b2011-08-26 10:45:16 +02002283 (sband->band == IEEE80211_BAND_5GHZ &&
2284 rate_idx < IL_FIRST_OFDM_RATE))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002285 rate_idx = rate_lowest_index(sband, sta);
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002286 /* On valid 5 GHz rate, adjust idx */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002287 else if (sband->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002288 rate_idx -= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002289 info->control.rates[0].flags = 0;
2290 }
2291 info->control.rates[0].idx = rate_idx;
2292
2293}
2294
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002295static void *
2296il4965_rs_alloc_sta(void *il_rate, struct ieee80211_sta *sta, gfp_t gfp)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002297{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002298 struct il_station_priv *sta_priv =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002299 (struct il_station_priv *)sta->drv_priv;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002300 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002301
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002302 il = (struct il_priv *)il_rate;
Stanislaw Gruszka6ce1dc42011-08-26 15:49:28 +02002303 D_RATE("create station rate scale win\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002304
Greg Dietsche3e4b0652011-09-06 18:12:05 -05002305 return &sta_priv->lq_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002306}
2307
2308/*
2309 * Called after adding a new station to initialize rate scaling
2310 */
2311void
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002312il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta, u8 sta_id)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002313{
2314 int i, j;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002315 struct ieee80211_hw *hw = il->hw;
2316 struct ieee80211_conf *conf = &il->hw->conf;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002317 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002318 struct il_station_priv *sta_priv;
2319 struct il_lq_sta *lq_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002320 struct ieee80211_supported_band *sband;
2321
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002322 sta_priv = (struct il_station_priv *)sta->drv_priv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002323 lq_sta = &sta_priv->lq_sta;
2324 sband = hw->wiphy->bands[conf->channel->band];
2325
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002326 lq_sta->lq.sta_id = sta_id;
2327
2328 for (j = 0; j < LQ_SIZE; j++)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002329 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002330 il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
2331 win[i]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002332
2333 lq_sta->flush_timer = 0;
2334 lq_sta->supp_rates = sta->supp_rates[sband->band];
2335 for (j = 0; j < LQ_SIZE; j++)
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002336 for (i = 0; i < RATE_COUNT; i++)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002337 il4965_rs_rate_scale_clear_win(&lq_sta->lq_info[j].
2338 win[i]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002339
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002340 D_RATE("LQ:" "*** rate scale station global init for station %d ***\n",
2341 sta_id);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002342 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2343 * the lowest or the highest rate.. Could consider using RSSI from
2344 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2345 * after assoc.. */
2346
2347 lq_sta->is_dup = 0;
2348 lq_sta->max_rate_idx = -1;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002349 lq_sta->missed_rate_counter = IL_MISSED_RATE_MAX;
2350 lq_sta->is_green = il4965_rs_use_green(sta);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002351 lq_sta->active_legacy_rate = il->active_rate & ~(0x1000);
2352 lq_sta->band = il->band;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002353 /*
2354 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2355 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2356 */
2357 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1;
2358 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002359 lq_sta->active_siso_rate &= ~((u16) 0x2);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002360 lq_sta->active_siso_rate <<= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002361
2362 /* Same here */
2363 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1;
2364 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002365 lq_sta->active_mimo2_rate &= ~((u16) 0x2);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002366 lq_sta->active_mimo2_rate <<= IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002367
2368 /* These values will be overridden later */
2369 lq_sta->lq.general_params.single_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002370 il4965_first_antenna(il->hw_params.valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002371 lq_sta->lq.general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002372 il->hw_params.valid_tx_ant & ~il4965_first_antenna(il->hw_params.
2373 valid_tx_ant);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002374 if (!lq_sta->lq.general_params.dual_stream_ant_msk) {
2375 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002376 } else if (il4965_num_of_ant(il->hw_params.valid_tx_ant) == 2) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002377 lq_sta->lq.general_params.dual_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002378 il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002379 }
2380
2381 /* as default allow aggregation for all tids */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002382 lq_sta->tx_agg_tid_en = IL_AGG_ALL_TID;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002383 lq_sta->drv = il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002384
2385 /* Set last_txrate_idx to lowest rate */
2386 lq_sta->last_txrate_idx = rate_lowest_index(sband, sta);
2387 if (sband->band == IEEE80211_BAND_5GHZ)
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002388 lq_sta->last_txrate_idx += IL_FIRST_OFDM_RATE;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002389 lq_sta->is_agg = 0;
2390
2391#ifdef CONFIG_MAC80211_DEBUGFS
2392 lq_sta->dbg_fixed_rate = 0;
2393#endif
2394
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002395 il4965_rs_initialize_lq(il, conf, sta, lq_sta);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002396}
2397
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002398static void
2399il4965_rs_fill_link_cmd(struct il_priv *il, struct il_lq_sta *lq_sta,
2400 u32 new_rate)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002401{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002402 struct il_scale_tbl_info tbl_type;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002403 int idx = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002404 int rate_idx;
2405 int repeat_rate = 0;
2406 u8 ant_toggle_cnt = 0;
2407 u8 use_ht_possible = 1;
2408 u8 valid_tx_ant = 0;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002409 struct il_link_quality_cmd *lq_cmd = &lq_sta->lq;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002410
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002411 /* Override starting rate (idx 0) if needed for debug purposes */
2412 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002413
2414 /* Interpret new_rate (rate_n_flags) */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002415 il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
2416 &rate_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002417
2418 /* How many times should we repeat the initial rate? */
2419 if (is_legacy(tbl_type.lq_type)) {
2420 ant_toggle_cnt = 1;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002421 repeat_rate = IL_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002422 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002423 repeat_rate = IL_HT_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002424 }
2425
2426 lq_cmd->general_params.mimo_delimiter =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002427 is_mimo(tbl_type.lq_type) ? 1 : 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002428
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002429 /* Fill 1st table entry (idx 0) */
2430 lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002431
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002432 if (il4965_num_of_ant(tbl_type.ant_type) == 1) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002433 lq_cmd->general_params.single_stream_ant_msk =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002434 tbl_type.ant_type;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002435 } else if (il4965_num_of_ant(tbl_type.ant_type) == 2) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002436 lq_cmd->general_params.dual_stream_ant_msk = tbl_type.ant_type;
2437 }
2438 /* otherwise we don't modify the existing value */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002439 idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002440 repeat_rate--;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002441 if (il)
2442 valid_tx_ant = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002443
2444 /* Fill rest of rate table */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002445 while (idx < LINK_QUAL_MAX_RETRY_NUM) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002446 /* Repeat initial/next rate.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002447 * For legacy IL_NUMBER_TRY == 1, this loop will not execute.
2448 * For HT IL_HT_NUMBER_TRY == 3, this executes twice. */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002449 while (repeat_rate > 0 && idx < LINK_QUAL_MAX_RETRY_NUM) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002450 if (is_legacy(tbl_type.lq_type)) {
2451 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2452 ant_toggle_cnt++;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002453 else if (il &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002454 il4965_rs_toggle_antenna(valid_tx_ant,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002455 &new_rate,
2456 &tbl_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002457 ant_toggle_cnt = 1;
2458 }
2459
2460 /* Override next rate if needed for debug purposes */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002461 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002462
2463 /* Fill next table entry */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002464 lq_cmd->rs_table[idx].rate_n_flags =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002465 cpu_to_le32(new_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002466 repeat_rate--;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002467 idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002468 }
2469
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002470 il4965_rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
2471 &tbl_type, &rate_idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002472
2473 /* Indicate to uCode which entries might be MIMO.
2474 * If initial rate was MIMO, this will finally end up
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002475 * as (IL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002476 if (is_mimo(tbl_type.lq_type))
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002477 lq_cmd->general_params.mimo_delimiter = idx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002478
2479 /* Get next rate */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002480 new_rate =
2481 il4965_rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002482 use_ht_possible);
2483
2484 /* How many times should we repeat the next rate? */
2485 if (is_legacy(tbl_type.lq_type)) {
2486 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2487 ant_toggle_cnt++;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002488 else if (il &&
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002489 il4965_rs_toggle_antenna(valid_tx_ant,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002490 &new_rate, &tbl_type))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002491 ant_toggle_cnt = 1;
2492
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002493 repeat_rate = IL_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002494 } else {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002495 repeat_rate = IL_HT_NUMBER_TRY;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002496 }
2497
2498 /* Don't allow HT rates after next pass.
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002499 * il4965_rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002500 use_ht_possible = 0;
2501
2502 /* Override next rate if needed for debug purposes */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002503 il4965_rs_dbgfs_set_mcs(lq_sta, &new_rate, idx);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002504
2505 /* Fill next table entry */
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002506 lq_cmd->rs_table[idx].rate_n_flags = cpu_to_le32(new_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002507
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002508 idx++;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002509 repeat_rate--;
2510 }
2511
2512 lq_cmd->agg_params.agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF;
2513 lq_cmd->agg_params.agg_dis_start_th = LINK_QUAL_AGG_DISABLE_START_DEF;
2514
2515 lq_cmd->agg_params.agg_time_limit =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002516 cpu_to_le16(LINK_QUAL_AGG_TIME_LIMIT_DEF);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002517}
2518
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002519static void *
2520il4965_rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002521{
2522 return hw->priv;
2523}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002524
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002525/* rate scale requires free function to be implemented */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002526static void
2527il4965_rs_free(void *il_rate)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002528{
2529 return;
2530}
2531
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002532static void
2533il4965_rs_free_sta(void *il_r, struct ieee80211_sta *sta, void *il_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002534{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002535 struct il_priv *il __maybe_unused = il_r;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002536
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002537 D_RATE("enter\n");
2538 D_RATE("leave\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002539}
2540
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002541#ifdef CONFIG_MAC80211_DEBUGFS
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002542static int
2543il4965_open_file_generic(struct inode *inode, struct file *file)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002544{
2545 file->private_data = inode->i_private;
2546 return 0;
2547}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002548
2549static void
2550il4965_rs_dbgfs_set_mcs(struct il_lq_sta *lq_sta, u32 * rate_n_flags, int idx)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002551{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002552 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002553 u8 valid_tx_ant;
2554 u8 ant_sel_tx;
2555
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002556 il = lq_sta->drv;
2557 valid_tx_ant = il->hw_params.valid_tx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002558 if (lq_sta->dbg_fixed_rate) {
2559 ant_sel_tx =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002560 ((lq_sta->
2561 dbg_fixed_rate & RATE_MCS_ANT_ABC_MSK) >>
2562 RATE_MCS_ANT_POS);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002563 if ((valid_tx_ant & ant_sel_tx) == ant_sel_tx) {
2564 *rate_n_flags = lq_sta->dbg_fixed_rate;
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002565 D_RATE("Fixed rate ON\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002566 } else {
2567 lq_sta->dbg_fixed_rate = 0;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002568 IL_ERR
2569 ("Invalid antenna selection 0x%X, Valid is 0x%X\n",
2570 ant_sel_tx, valid_tx_ant);
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002571 D_RATE("Fixed rate OFF\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002572 }
2573 } else {
Stanislaw Gruszka58de00a2011-11-15 11:21:01 +01002574 D_RATE("Fixed rate OFF\n");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002575 }
2576}
2577
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002578static ssize_t
2579il4965_rs_sta_dbgfs_scale_table_write(struct file *file,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002580 const char __user *user_buf,
2581 size_t count, loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002582{
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002583 struct il_lq_sta *lq_sta = file->private_data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002584 struct il_priv *il;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002585 char buf[64];
Stephen Boyd8220ba32011-05-12 16:50:04 -07002586 size_t buf_size;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002587 u32 parsed_rate;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002588 struct il_station_priv *sta_priv =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002589 container_of(lq_sta, struct il_station_priv, lq_sta);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002590 struct il_rxon_context *ctx = sta_priv->common.ctx;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002591
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002592 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002593 memset(buf, 0, sizeof(buf));
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002594 buf_size = min(count, sizeof(buf) - 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002595 if (copy_from_user(buf, user_buf, buf_size))
2596 return -EFAULT;
2597
2598 if (sscanf(buf, "%x", &parsed_rate) == 1)
2599 lq_sta->dbg_fixed_rate = parsed_rate;
2600 else
2601 lq_sta->dbg_fixed_rate = 0;
2602
2603 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002604 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2605 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002606
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002607 D_RATE("sta_id %d rate 0x%X\n", lq_sta->lq.sta_id,
2608 lq_sta->dbg_fixed_rate);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002609
2610 if (lq_sta->dbg_fixed_rate) {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002611 il4965_rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002612 il_send_lq_cmd(lq_sta->drv, ctx, &lq_sta->lq, CMD_ASYNC, false);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002613 }
2614
2615 return count;
2616}
2617
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002618static ssize_t
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002619il4965_rs_sta_dbgfs_scale_table_read(struct file *file, char __user *user_buf,
2620 size_t count, loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002621{
2622 char *buff;
2623 int desc = 0;
2624 int i = 0;
Stanislaw Gruszka0c2c8852011-11-15 12:30:17 +01002625 int idx = 0;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002626 ssize_t ret;
2627
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002628 struct il_lq_sta *lq_sta = file->private_data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002629 struct il_priv *il;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002630 struct il_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002631
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002632 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002633 buff = kmalloc(1024, GFP_KERNEL);
2634 if (!buff)
2635 return -ENOMEM;
2636
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002637 desc += sprintf(buff + desc, "sta_id %d\n", lq_sta->lq.sta_id);
2638 desc +=
2639 sprintf(buff + desc, "failed=%d success=%d rate=0%X\n",
2640 lq_sta->total_failed, lq_sta->total_success,
2641 lq_sta->active_legacy_rate);
2642 desc +=
2643 sprintf(buff + desc, "fixed rate 0x%X\n", lq_sta->dbg_fixed_rate);
2644 desc +=
2645 sprintf(buff + desc, "valid_tx_ant %s%s%s\n",
2646 (il->hw_params.valid_tx_ant & ANT_A) ? "ANT_A," : "",
2647 (il->hw_params.valid_tx_ant & ANT_B) ? "ANT_B," : "",
2648 (il->hw_params.valid_tx_ant & ANT_C) ? "ANT_C" : "");
2649 desc +=
2650 sprintf(buff + desc, "lq type %s\n",
2651 (is_legacy(tbl->lq_type)) ? "legacy" : "HT");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002652 if (is_Ht(tbl->lq_type)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002653 desc +=
2654 sprintf(buff + desc, " %s",
2655 (is_siso(tbl->lq_type)) ? "SISO" : "MIMO2");
2656 desc +=
2657 sprintf(buff + desc, " %s",
2658 (tbl->is_ht40) ? "40MHz" : "20MHz");
2659 desc +=
2660 sprintf(buff + desc, " %s %s %s\n",
2661 (tbl->is_SGI) ? "SGI" : "",
2662 (lq_sta->is_green) ? "GF enabled" : "",
2663 (lq_sta->is_agg) ? "AGG on" : "");
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002664 }
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002665 desc +=
2666 sprintf(buff + desc, "last tx rate=0x%X\n",
2667 lq_sta->last_rate_n_flags);
2668 desc +=
2669 sprintf(buff + desc,
2670 "general:" "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
2671 lq_sta->lq.general_params.flags,
2672 lq_sta->lq.general_params.mimo_delimiter,
2673 lq_sta->lq.general_params.single_stream_ant_msk,
2674 lq_sta->lq.general_params.dual_stream_ant_msk);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002675
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002676 desc +=
2677 sprintf(buff + desc,
2678 "agg:"
2679 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
2680 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2681 lq_sta->lq.agg_params.agg_dis_start_th,
2682 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002683
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002684 desc +=
2685 sprintf(buff + desc,
2686 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
2687 lq_sta->lq.general_params.start_rate_idx[0],
2688 lq_sta->lq.general_params.start_rate_idx[1],
2689 lq_sta->lq.general_params.start_rate_idx[2],
2690 lq_sta->lq.general_params.start_rate_idx[3]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002691
2692 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002693 idx =
2694 il4965_hwrate_to_plcp_idx(le32_to_cpu
2695 (lq_sta->lq.rs_table[i].
2696 rate_n_flags));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002697 if (is_legacy(tbl->lq_type)) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002698 desc +=
2699 sprintf(buff + desc, " rate[%d] 0x%X %smbps\n", i,
2700 le32_to_cpu(lq_sta->lq.rs_table[i].
2701 rate_n_flags),
2702 il_rate_mcs[idx].mbps);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002703 } else {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002704 desc +=
2705 sprintf(buff + desc, " rate[%d] 0x%X %smbps (%s)\n",
2706 i,
2707 le32_to_cpu(lq_sta->lq.rs_table[i].
2708 rate_n_flags),
2709 il_rate_mcs[idx].mbps,
2710 il_rate_mcs[idx].mcs);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002711 }
2712 }
2713
2714 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2715 kfree(buff);
2716 return ret;
2717}
2718
2719static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002720 .write = il4965_rs_sta_dbgfs_scale_table_write,
2721 .read = il4965_rs_sta_dbgfs_scale_table_read,
2722 .open = il4965_open_file_generic,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002723 .llseek = default_llseek,
2724};
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002725
2726static ssize_t
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002727il4965_rs_sta_dbgfs_stats_table_read(struct file *file, char __user *user_buf,
2728 size_t count, loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002729{
2730 char *buff;
2731 int desc = 0;
2732 int i, j;
2733 ssize_t ret;
2734
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002735 struct il_lq_sta *lq_sta = file->private_data;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002736
2737 buff = kmalloc(1024, GFP_KERNEL);
2738 if (!buff)
2739 return -ENOMEM;
2740
2741 for (i = 0; i < LQ_SIZE; i++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002742 desc +=
2743 sprintf(buff + desc,
2744 "%s type=%d SGI=%d HT40=%d DUP=%d GF=%d\n"
2745 "rate=0x%X\n", lq_sta->active_tbl == i ? "*" : "x",
2746 lq_sta->lq_info[i].lq_type,
2747 lq_sta->lq_info[i].is_SGI,
2748 lq_sta->lq_info[i].is_ht40,
2749 lq_sta->lq_info[i].is_dup, lq_sta->is_green,
2750 lq_sta->lq_info[i].current_rate);
Stanislaw Gruszka2eb05812011-08-26 16:07:43 +02002751 for (j = 0; j < RATE_COUNT; j++) {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002752 desc +=
2753 sprintf(buff + desc,
2754 "counter=%d success=%d %%=%d\n",
2755 lq_sta->lq_info[i].win[j].counter,
2756 lq_sta->lq_info[i].win[j].success_counter,
2757 lq_sta->lq_info[i].win[j].success_ratio);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002758 }
2759 }
2760 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2761 kfree(buff);
2762 return ret;
2763}
2764
2765static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002766 .read = il4965_rs_sta_dbgfs_stats_table_read,
2767 .open = il4965_open_file_generic,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002768 .llseek = default_llseek,
2769};
2770
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002771static ssize_t
2772il4965_rs_sta_dbgfs_rate_scale_data_read(struct file *file,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002773 char __user *user_buf, size_t count,
2774 loff_t *ppos)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002775{
2776 char buff[120];
2777 int desc = 0;
2778 ssize_t ret;
2779
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002780 struct il_lq_sta *lq_sta = file->private_data;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002781 struct il_priv *il;
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002782 struct il_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002783
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002784 il = lq_sta->drv;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002785
2786 if (is_Ht(tbl->lq_type))
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002787 desc +=
2788 sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
2789 tbl->expected_tpt[lq_sta->last_txrate_idx]);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002790 else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002791 desc +=
2792 sprintf(buff + desc, "Bit Rate= %d Mb/s\n",
2793 il_rates[lq_sta->last_txrate_idx].ieee >> 1);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002794
2795 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2796 return ret;
2797}
2798
2799static const struct file_operations rs_sta_dbgfs_rate_scale_data_ops = {
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002800 .read = il4965_rs_sta_dbgfs_rate_scale_data_read,
2801 .open = il4965_open_file_generic,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002802 .llseek = default_llseek,
2803};
2804
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002805static void
2806il4965_rs_add_debugfs(void *il, void *il_sta, struct dentry *dir)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002807{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002808 struct il_lq_sta *lq_sta = il_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002809 lq_sta->rs_sta_dbgfs_scale_table_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002810 debugfs_create_file("rate_scale_table", S_IRUSR | S_IWUSR, dir,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002811 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2812 lq_sta->rs_sta_dbgfs_stats_table_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002813 debugfs_create_file("rate_stats_table", S_IRUSR, dir, lq_sta,
2814 &rs_sta_dbgfs_stats_table_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002815 lq_sta->rs_sta_dbgfs_rate_scale_data_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002816 debugfs_create_file("rate_scale_data", S_IRUSR, dir, lq_sta,
2817 &rs_sta_dbgfs_rate_scale_data_ops);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002818 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002819 debugfs_create_u8("tx_agg_tid_enable", S_IRUSR | S_IWUSR, dir,
2820 &lq_sta->tx_agg_tid_en);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002821
2822}
2823
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002824static void
2825il4965_rs_remove_debugfs(void *il, void *il_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002826{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002827 struct il_lq_sta *lq_sta = il_sta;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002828 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2829 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
2830 debugfs_remove(lq_sta->rs_sta_dbgfs_rate_scale_data_file);
2831 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
2832}
2833#endif
2834
2835/*
2836 * Initialization of rate scaling information is done by driver after
2837 * the station is added. Since mac80211 calls this function before a
2838 * station is added we ignore it.
2839 */
2840static void
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002841il4965_rs_rate_init_stub(void *il_r, struct ieee80211_supported_band *sband,
2842 struct ieee80211_sta *sta, void *il_sta)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002843{
2844}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002845
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002846static struct rate_control_ops rs_4965_ops = {
2847 .module = NULL,
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01002848 .name = IL4965_RS_NAME,
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002849 .tx_status = il4965_rs_tx_status,
2850 .get_rate = il4965_rs_get_rate,
2851 .rate_init = il4965_rs_rate_init_stub,
2852 .alloc = il4965_rs_alloc,
2853 .free = il4965_rs_free,
2854 .alloc_sta = il4965_rs_alloc_sta,
2855 .free_sta = il4965_rs_free_sta,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002856#ifdef CONFIG_MAC80211_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002857 .add_sta_debugfs = il4965_rs_add_debugfs,
2858 .remove_sta_debugfs = il4965_rs_remove_debugfs,
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002859#endif
2860};
2861
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002862int
2863il4965_rate_control_register(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002864{
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002865 return ieee80211_rate_control_register(&rs_4965_ops);
2866}
2867
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002868void
2869il4965_rate_control_unregister(void)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002870{
2871 ieee80211_rate_control_unregister(&rs_4965_ops);
2872}