blob: 0332805cc6306e9d06ea101ad9b1d866a2db0863 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatreeb7ae892008-03-11 16:17:17 -07003 * Copyright(c) 2005 - 2008 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
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 * James P. Ketrenos <ipw2100-admin@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/wireless.h>
30#include <net/mac80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070031
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/delay.h>
35
36#include <linux/workqueue.h>
37
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070038#include "iwl-dev.h"
Emmanuel Grumbachbe1f3ab62008-06-12 09:47:18 +080039#include "iwl-sta.h"
Tomas Winkler857485c2008-03-21 13:53:44 -070040#include "iwl-core.h"
Zhu Yib481de92007-09-25 17:54:57 -070041#include "iwl-helpers.h"
42
Tomas Winklere227cea2008-07-18 13:53:05 +080043#define RS_NAME "iwl-agn-rs"
Zhu Yib481de92007-09-25 17:54:57 -070044
Guy Cohenaade00c2008-04-23 17:14:59 -070045#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Zhu Yib481de92007-09-25 17:54:57 -070046#define IWL_NUMBER_TRY 1
47#define IWL_HT_NUMBER_TRY 3
48
Ben Cahill77626352007-11-29 11:09:44 +080049#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
50#define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
51#define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
52
53/* max time to accum history 2 seconds */
54#define IWL_RATE_SCALE_FLUSH_INTVL (2*HZ)
Zhu Yib481de92007-09-25 17:54:57 -070055
56static u8 rs_ht_to_legacy[] = {
57 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
58 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
59 IWL_RATE_6M_INDEX,
60 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
61 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
62 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
63 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
64};
65
Guy Cohenaade00c2008-04-23 17:14:59 -070066static 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
Ben Cahill77626352007-11-29 11:09:44 +080077/**
Tomas Winklere227cea2008-07-18 13:53:05 +080078 * struct iwl_rate_scale_data -- tx success history for one rate
Ben Cahill77626352007-11-29 11:09:44 +080079 */
Tomas Winklere227cea2008-07-18 13:53:05 +080080struct iwl_rate_scale_data {
Ben Cahill77626352007-11-29 11:09:44 +080081 u64 data; /* bitmap of successful frames */
82 s32 success_counter; /* number of frames successful */
83 s32 success_ratio; /* per-cent * 128 */
84 s32 counter; /* number of frames attempted */
85 s32 average_tpt; /* success ratio * expected throughput */
Zhu Yib481de92007-09-25 17:54:57 -070086 unsigned long stamp;
87};
88
Ben Cahill77626352007-11-29 11:09:44 +080089/**
Tomas Winklere227cea2008-07-18 13:53:05 +080090 * struct iwl_scale_tbl_info -- tx params and success history for all rates
Ben Cahill77626352007-11-29 11:09:44 +080091 *
Tomas Winklere227cea2008-07-18 13:53:05 +080092 * There are two of these in struct iwl_lq_sta,
Ben Cahill77626352007-11-29 11:09:44 +080093 * one for "active", and one for "search".
94 */
Tomas Winklere227cea2008-07-18 13:53:05 +080095struct iwl_scale_tbl_info {
Guy Cohenfde0db32008-04-21 15:42:01 -070096 enum iwl_table_type lq_type;
97 u8 ant_type;
Ben Cahill77626352007-11-29 11:09:44 +080098 u8 is_SGI; /* 1 = short guard interval */
99 u8 is_fat; /* 1 = 40 MHz channel width */
100 u8 is_dup; /* 1 = duplicated data streams */
101 u8 action; /* change modulation; IWL_[LEGACY/SISO/MIMO]_SWITCH_* */
102 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Guy Cohen39e88502008-04-23 17:14:57 -0700103 u32 current_rate; /* rate_n_flags, uCode API format */
Tomas Winklere227cea2008-07-18 13:53:05 +0800104 struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
Zhu Yib481de92007-09-25 17:54:57 -0700105};
106
Tomas Winklere227cea2008-07-18 13:53:05 +0800107struct iwl_traffic_load {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200108 unsigned long time_stamp; /* age of the oldest statistics */
109 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
110 * slice */
111 u32 total; /* total num of packets during the
112 * last TID_MAX_TIME_DIFF */
113 u8 queue_count; /* number of queues that has
114 * been used since the last cleanup */
115 u8 head; /* start of the circular buffer */
116};
117
Ben Cahill77626352007-11-29 11:09:44 +0800118/**
Tomas Winklere227cea2008-07-18 13:53:05 +0800119 * struct iwl_lq_sta -- driver's rate scaling private structure
Ben Cahill77626352007-11-29 11:09:44 +0800120 *
121 * Pointer to this gets passed back and forth between driver and mac80211.
122 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800123struct iwl_lq_sta {
Ben Cahill77626352007-11-29 11:09:44 +0800124 u8 active_tbl; /* index of active table, range 0-1 */
125 u8 enable_counter; /* indicates HT mode */
126 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
127 u8 search_better_tbl; /* 1: currently trying alternate mode */
Zhu Yib481de92007-09-25 17:54:57 -0700128 s32 last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +0800129
130 /* The following determine when to search for a new mode */
Zhu Yib481de92007-09-25 17:54:57 -0700131 u32 table_count_limit;
Ben Cahill77626352007-11-29 11:09:44 +0800132 u32 max_failure_limit; /* # failed frames before new search */
133 u32 max_success_limit; /* # successful frames before new search */
Zhu Yib481de92007-09-25 17:54:57 -0700134 u32 table_count;
Ben Cahill77626352007-11-29 11:09:44 +0800135 u32 total_failed; /* total failed frames, any/all rates */
136 u32 total_success; /* total successful frames, any/all rates */
137 u32 flush_timer; /* time staying in mode before new search */
138
139 u8 action_counter; /* # mode-switch actions tried */
Zhu Yib481de92007-09-25 17:54:57 -0700140 u8 is_green;
141 u8 is_dup;
Johannes Berg8318d782008-01-24 19:38:38 +0100142 enum ieee80211_band band;
Zhu Yib481de92007-09-25 17:54:57 -0700143 u8 ibss_sta_added;
Ben Cahill77626352007-11-29 11:09:44 +0800144
145 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
Zhu Yi02dede02007-09-27 11:27:40 +0800146 u32 supp_rates;
Guy Cohen39e88502008-04-23 17:14:57 -0700147 u16 active_legacy_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700148 u16 active_siso_rate;
Guy Cohenfde0db32008-04-21 15:42:01 -0700149 u16 active_mimo2_rate;
150 u16 active_mimo3_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700151 u16 active_rate_basic;
Ben Cahill77626352007-11-29 11:09:44 +0800152
Tomas Winkler66c73db2008-04-15 16:01:40 -0700153 struct iwl_link_quality_cmd lq;
Tomas Winklere227cea2008-07-18 13:53:05 +0800154 struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
155 struct iwl_traffic_load load[TID_MAX_LOAD_COUNT];
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200156 u8 tx_agg_tid_en;
Zhu Yi5ae212c2007-09-27 11:27:38 +0800157#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi98d7e092007-09-27 11:27:42 +0800158 struct dentry *rs_sta_dbgfs_scale_table_file;
Zhu Yi0209dc12007-09-27 11:27:43 +0800159 struct dentry *rs_sta_dbgfs_stats_table_file;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200160 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
Guy Cohen39e88502008-04-23 17:14:57 -0700161 u32 dbg_fixed_rate;
Zhu Yi5ae212c2007-09-27 11:27:38 +0800162#endif
Zhu Yi62430652008-05-05 10:22:46 +0800163 struct iwl_priv *drv;
Johannes Bergb7e35002008-09-11 02:22:58 +0200164
165 /* used to be in sta_info */
166 int last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -0700167};
168
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700169static void rs_rate_scale_perform(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700170 struct ieee80211_hdr *hdr,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200171 struct ieee80211_sta *sta,
172 struct iwl_lq_sta *lq_sta);
Guy Cohenfde0db32008-04-21 15:42:01 -0700173static void rs_fill_link_cmd(const struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800174 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700175
176
Zhu Yi98d7e092007-09-27 11:27:42 +0800177#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +0800178static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
179 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +0800180#else
Tomas Winklere227cea2008-07-18 13:53:05 +0800181static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
182 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +0800183{}
184#endif
Ben Cahill77626352007-11-29 11:09:44 +0800185
186/*
187 * Expected throughput metrics for following rates:
188 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
189 * "G" is the only table that supports CCK (the first 4 rates).
190 */
Tomas Winklera96a27f2008-10-23 23:48:56 -0700191/*FIXME:RS:need to separate tables for MIMO2/MIMO3*/
Zhu Yib481de92007-09-25 17:54:57 -0700192static s32 expected_tpt_A[IWL_RATE_COUNT] = {
193 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186, 186
194};
195
196static s32 expected_tpt_G[IWL_RATE_COUNT] = {
197 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 186
198};
199
200static s32 expected_tpt_siso20MHz[IWL_RATE_COUNT] = {
201 0, 0, 0, 0, 42, 42, 76, 102, 124, 159, 183, 193, 202
202};
203
204static s32 expected_tpt_siso20MHzSGI[IWL_RATE_COUNT] = {
205 0, 0, 0, 0, 46, 46, 82, 110, 132, 168, 192, 202, 211
206};
207
208static s32 expected_tpt_mimo20MHz[IWL_RATE_COUNT] = {
209 0, 0, 0, 0, 74, 74, 123, 155, 179, 214, 236, 244, 251
210};
211
212static s32 expected_tpt_mimo20MHzSGI[IWL_RATE_COUNT] = {
213 0, 0, 0, 0, 81, 81, 131, 164, 188, 222, 243, 251, 257
214};
215
216static s32 expected_tpt_siso40MHz[IWL_RATE_COUNT] = {
217 0, 0, 0, 0, 77, 77, 127, 160, 184, 220, 242, 250, 257
218};
219
220static s32 expected_tpt_siso40MHzSGI[IWL_RATE_COUNT] = {
221 0, 0, 0, 0, 83, 83, 135, 169, 193, 229, 250, 257, 264
222};
223
224static s32 expected_tpt_mimo40MHz[IWL_RATE_COUNT] = {
225 0, 0, 0, 0, 123, 123, 182, 214, 235, 264, 279, 285, 289
226};
227
228static s32 expected_tpt_mimo40MHzSGI[IWL_RATE_COUNT] = {
229 0, 0, 0, 0, 131, 131, 191, 222, 242, 270, 284, 289, 293
230};
231
Guy Cohen39e88502008-04-23 17:14:57 -0700232static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700233{
234 return (u8)(rate_n_flags & 0xFF);
235}
236
Tomas Winklere227cea2008-07-18 13:53:05 +0800237static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700238{
239 window->data = 0;
240 window->success_counter = 0;
241 window->success_ratio = IWL_INVALID_VALUE;
242 window->counter = 0;
243 window->average_tpt = IWL_INVALID_VALUE;
244 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700245}
246
Guy Cohenaade00c2008-04-23 17:14:59 -0700247static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
248{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300249 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700250}
251
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200252/*
253 * removes the old data from the statistics. All data that is older than
254 * TID_MAX_TIME_DIFF, will be deleted.
255 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800256static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200257{
258 /* The oldest age we want to keep */
259 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
260
261 while (tl->queue_count &&
262 (tl->time_stamp < oldest_time)) {
263 tl->total -= tl->packet_count[tl->head];
264 tl->packet_count[tl->head] = 0;
265 tl->time_stamp += TID_QUEUE_CELL_SPACING;
266 tl->queue_count--;
267 tl->head++;
268 if (tl->head >= TID_QUEUE_MAX_SIZE)
269 tl->head = 0;
270 }
271}
272
273/*
274 * increment traffic load value for tid and also remove
275 * any old values if passed the certain time period
276 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800277static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800278 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200279{
280 u32 curr_time = jiffies_to_msecs(jiffies);
281 u32 time_diff;
282 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800283 struct iwl_traffic_load *tl = NULL;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700284 __le16 fc = hdr->frame_control;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800285 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200286
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700287 if (ieee80211_is_data_qos(fc)) {
288 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800289 tid = qc[0] & 0xf;
290 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800291 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200292
293 tl = &lq_data->load[tid];
294
295 curr_time -= curr_time % TID_ROUND_VALUE;
296
297 /* Happens only for the first packet. Initialize the data */
298 if (!(tl->queue_count)) {
299 tl->total = 1;
300 tl->time_stamp = curr_time;
301 tl->queue_count = 1;
302 tl->head = 0;
303 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800304 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200305 }
306
307 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
308 index = time_diff / TID_QUEUE_CELL_SPACING;
309
310 /* The history is too long: remove data that is older than */
311 /* TID_MAX_TIME_DIFF */
312 if (index >= TID_QUEUE_MAX_SIZE)
313 rs_tl_rm_old_stats(tl, curr_time);
314
315 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
316 tl->packet_count[index] = tl->packet_count[index] + 1;
317 tl->total = tl->total + 1;
318
319 if ((index + 1) > tl->queue_count)
320 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800321
322 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200323}
324
325/*
326 get the traffic load value for tid
327*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800328static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200329{
330 u32 curr_time = jiffies_to_msecs(jiffies);
331 u32 time_diff;
332 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800333 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200334
335 if (tid >= TID_MAX_LOAD_COUNT)
336 return 0;
337
338 tl = &(lq_data->load[tid]);
339
340 curr_time -= curr_time % TID_ROUND_VALUE;
341
342 if (!(tl->queue_count))
343 return 0;
344
345 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
346 index = time_diff / TID_QUEUE_CELL_SPACING;
347
348 /* The history is too long: remove data that is older than */
349 /* TID_MAX_TIME_DIFF */
350 if (index >= TID_QUEUE_MAX_SIZE)
351 rs_tl_rm_old_stats(tl, curr_time);
352
353 return tl->total;
354}
355
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700356static void rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800357 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200358 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200359{
Johannes Bergff550cb2008-09-11 03:17:05 +0200360 if (rs_tl_get_load(lq_data, tid) > IWL_AGG_LOAD_THRESHOLD) {
Johannes Berge1749612008-10-27 15:59:26 -0700361 IWL_DEBUG_HT("Starting Tx agg: STA: %pM tid: %d\n",
362 sta->addr, tid);
Johannes Berg4b7679a2008-09-18 18:14:18 +0200363 ieee80211_start_tx_ba_session(priv->hw, sta->addr, tid);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200364 }
365}
366
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700367static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800368 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200369 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200370{
371 if ((tid < TID_MAX_LOAD_COUNT))
372 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
373 else if (tid == IWL_AGG_ALL_TID)
374 for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++)
375 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
376}
377
Guy Cohen39e88502008-04-23 17:14:57 -0700378static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700379{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300380 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
381 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
382 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700383}
384
Ben Cahill77626352007-11-29 11:09:44 +0800385/**
386 * rs_collect_tx_data - Update the success/failure sliding window
387 *
388 * We keep a sliding window of the last 62 packets transmitted
389 * at this rate. window->data contains the bitmask of successful
390 * packets.
391 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800392static int rs_collect_tx_data(struct iwl_rate_scale_data *windows,
Ron Rindjunsky99556432008-01-28 14:07:25 +0200393 int scale_index, s32 tpt, int retries,
394 int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700395{
Tomas Winklere227cea2008-07-18 13:53:05 +0800396 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700397 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Zhu Yib481de92007-09-25 17:54:57 -0700398 s32 fail_count;
399
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800400 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
401 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700402
Ben Cahill77626352007-11-29 11:09:44 +0800403 /* Select data for current tx bit rate */
Zhu Yib481de92007-09-25 17:54:57 -0700404 window = &(windows[scale_index]);
405
Ben Cahill77626352007-11-29 11:09:44 +0800406 /*
407 * Keep track of only the latest 62 tx frame attempts in this rate's
408 * history window; anything older isn't really relevant any more.
409 * If we have filled up the sliding window, drop the oldest attempt;
410 * if the oldest attempt (highest bit in bitmap) shows "success",
411 * subtract "1" from the success counter (this is the main reason
412 * we keep these bitmaps!).
413 */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200414 while (retries > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700415 if (window->counter >= IWL_RATE_MAX_WINDOW) {
416
417 /* remove earliest */
418 window->counter = IWL_RATE_MAX_WINDOW - 1;
419
Ron Rindjunsky99556432008-01-28 14:07:25 +0200420 if (window->data & mask) {
421 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700422 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200423 }
Zhu Yib481de92007-09-25 17:54:57 -0700424 }
Zhu Yib481de92007-09-25 17:54:57 -0700425
Ron Rindjunsky99556432008-01-28 14:07:25 +0200426 /* Increment frames-attempted counter */
427 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800428
Ron Rindjunsky99556432008-01-28 14:07:25 +0200429 /* Shift bitmap by one frame (throw away oldest history),
430 * OR in "1", and increment "success" if this
431 * frame was successful. */
Guy Cohen90d77952008-09-09 10:54:53 +0800432 window->data <<= 1;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200433 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700434 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200435 window->data |= 0x1;
436 successes--;
437 }
438
439 retries--;
Zhu Yib481de92007-09-25 17:54:57 -0700440 }
441
Ben Cahill77626352007-11-29 11:09:44 +0800442 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700443 if (window->counter > 0)
444 window->success_ratio = 128 * (100 * window->success_counter)
445 / window->counter;
446 else
447 window->success_ratio = IWL_INVALID_VALUE;
448
449 fail_count = window->counter - window->success_counter;
450
Ben Cahill77626352007-11-29 11:09:44 +0800451 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700452 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
453 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
454 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
455 else
456 window->average_tpt = IWL_INVALID_VALUE;
457
Ben Cahill77626352007-11-29 11:09:44 +0800458 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700459 window->stamp = jiffies;
460
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800461 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700462}
463
Ben Cahill77626352007-11-29 11:09:44 +0800464/*
465 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
466 */
Guy Cohen39e88502008-04-23 17:14:57 -0700467/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winklere227cea2008-07-18 13:53:05 +0800468static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl,
Guy Cohen39e88502008-04-23 17:14:57 -0700469 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700470{
Guy Cohen39e88502008-04-23 17:14:57 -0700471 u32 rate_n_flags = 0;
472
Zhu Yib481de92007-09-25 17:54:57 -0700473 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800474 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700475 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700476 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700477
Guy Cohenfde0db32008-04-21 15:42:01 -0700478 } else if (is_Ht(tbl->lq_type)) {
479 if (index > IWL_LAST_OFDM_RATE) {
480 IWL_ERROR("invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700481 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700482 }
Guy Cohen39e88502008-04-23 17:14:57 -0700483 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700484
485 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800486 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700487 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800488 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700489 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800490 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700491 } else {
Guy Cohenfde0db32008-04-21 15:42:01 -0700492 IWL_ERROR("Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700493 }
494
Guy Cohen39e88502008-04-23 17:14:57 -0700495 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700496 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700497
Guy Cohen39e88502008-04-23 17:14:57 -0700498 if (is_Ht(tbl->lq_type)) {
499 if (tbl->is_fat) {
500 if (tbl->is_dup)
501 rate_n_flags |= RATE_MCS_DUP_MSK;
502 else
503 rate_n_flags |= RATE_MCS_FAT_MSK;
504 }
505 if (tbl->is_SGI)
506 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700507
Guy Cohen39e88502008-04-23 17:14:57 -0700508 if (use_green) {
509 rate_n_flags |= RATE_MCS_GF_MSK;
510 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
511 rate_n_flags &= ~RATE_MCS_SGI_MSK;
512 IWL_ERROR("GF was set with SGI:SISO\n");
513 }
514 }
Zhu Yib481de92007-09-25 17:54:57 -0700515 }
Guy Cohen39e88502008-04-23 17:14:57 -0700516 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700517}
518
Ben Cahill77626352007-11-29 11:09:44 +0800519/*
520 * Interpret uCode API's rate_n_flags format,
521 * fill "search" or "active" tx mode table.
522 */
Guy Cohen39e88502008-04-23 17:14:57 -0700523static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100524 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800525 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700526 int *rate_idx)
527{
Guy Cohen39e88502008-04-23 17:14:57 -0700528 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
529 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
530 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700531
Tomas Winklere7d326a2008-06-12 09:47:11 +0800532 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700533
Guy Cohenfde0db32008-04-21 15:42:01 -0700534 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700535 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800536 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700537 }
Ben Cahill77626352007-11-29 11:09:44 +0800538 tbl->is_SGI = 0; /* default legacy setup */
Zhu Yib481de92007-09-25 17:54:57 -0700539 tbl->is_fat = 0;
540 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700541 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
542 tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -0700543
Ben Cahill77626352007-11-29 11:09:44 +0800544 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700545 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700546 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100547 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700548 tbl->lq_type = LQ_A;
549 else
550 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700551 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700552 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700553 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700554 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700555 tbl->is_SGI = 1;
556
Guy Cohen39e88502008-04-23 17:14:57 -0700557 if ((rate_n_flags & RATE_MCS_FAT_MSK) ||
558 (rate_n_flags & RATE_MCS_DUP_MSK))
Zhu Yib481de92007-09-25 17:54:57 -0700559 tbl->is_fat = 1;
560
Guy Cohen39e88502008-04-23 17:14:57 -0700561 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700562 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700563
Guy Cohen39e88502008-04-23 17:14:57 -0700564 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700565
Guy Cohen39e88502008-04-23 17:14:57 -0700566 /* SISO */
567 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700568 if (num_of_ant == 1)
569 tbl->lq_type = LQ_SISO; /*else NONE*/
570 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700571 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700572 if (num_of_ant == 2)
573 tbl->lq_type = LQ_MIMO2;
574 /* MIMO3 */
575 } else {
576 if (num_of_ant == 3)
577 tbl->lq_type = LQ_MIMO3;
578 }
Zhu Yib481de92007-09-25 17:54:57 -0700579 }
580 return 0;
581}
Guy Cohenaade00c2008-04-23 17:14:59 -0700582
583/* switch to another antenna/antennas and return 1 */
584/* if no other valid antenna found, return 0 */
585static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800586 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700587{
Guy Cohenaade00c2008-04-23 17:14:59 -0700588 u8 new_ant_type;
589
590 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
591 return 0;
592
593 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
594 return 0;
595
596 new_ant_type = ant_toggle_lookup[tbl->ant_type];
597
598 while ((new_ant_type != tbl->ant_type) &&
599 !rs_is_valid_ant(valid_ant, new_ant_type))
600 new_ant_type = ant_toggle_lookup[new_ant_type];
601
602 if (new_ant_type == tbl->ant_type)
603 return 0;
604
605 tbl->ant_type = new_ant_type;
606 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
607 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
608 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700609}
610
Guy Cohen39e88502008-04-23 17:14:57 -0700611/* FIXME:RS: in 4965 we don't use greenfield at all */
Guy Cohenf935a6d2008-04-23 17:15:02 -0700612/* FIXME:RS: don't use greenfield for now in TX */
Guy Cohenf935a6d2008-04-23 17:15:02 -0700613#if 0
614static inline u8 rs_use_green(struct iwl_priv *priv, struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -0700615{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300616 return (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) &&
Ron Rindjunsky270243a2007-11-26 16:14:41 +0200617 priv->current_ht_config.is_green_field &&
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300618 !priv->current_ht_config.non_GF_STA_present;
Zhu Yib481de92007-09-25 17:54:57 -0700619}
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +0300620#endif
Guy Cohenf935a6d2008-04-23 17:15:02 -0700621static inline u8 rs_use_green(struct iwl_priv *priv, struct ieee80211_conf *conf)
622{
623 return 0;
624}
Zhu Yib481de92007-09-25 17:54:57 -0700625
626/**
627 * rs_get_supported_rates - get the available rates
628 *
629 * if management frame or broadcast frame only return
630 * basic available rates.
631 *
632 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800633static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
634 struct ieee80211_hdr *hdr,
635 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700636{
Zhu Yib481de92007-09-25 17:54:57 -0700637 if (hdr && is_multicast_ether_addr(hdr->addr1) &&
Guy Coheneecd6e52008-04-23 17:14:58 -0700638 lq_sta->active_rate_basic)
639 return lq_sta->active_rate_basic;
640
641 if (is_legacy(rate_type)) {
642 return lq_sta->active_legacy_rate;
643 } else {
644 if (is_siso(rate_type))
645 return lq_sta->active_siso_rate;
646 else if (is_mimo2(rate_type))
647 return lq_sta->active_mimo2_rate;
648 else
649 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800650 }
Zhu Yib481de92007-09-25 17:54:57 -0700651}
652
Ester Kummerbf403db2008-05-05 10:22:40 +0800653static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
654 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700655{
656 u8 high = IWL_RATE_INVALID;
657 u8 low = IWL_RATE_INVALID;
658
Ian Schram01ebd062007-10-25 17:15:22 +0800659 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700660 * the rate table */
661 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
662 int i;
663 u32 mask;
664
665 /* Find the previous rate that is in the rate mask */
666 i = index - 1;
667 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
668 if (rate_mask & mask) {
669 low = i;
670 break;
671 }
672 }
673
674 /* Find the next rate that is in the rate mask */
675 i = index + 1;
676 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
677 if (rate_mask & mask) {
678 high = i;
679 break;
680 }
681 }
682
683 return (high << 8) | low;
684 }
685
686 low = index;
687 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800688 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700689 if (low == IWL_RATE_INVALID)
690 break;
691 if (rate_mask & (1 << low))
692 break;
693 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low);
694 }
695
696 high = index;
697 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800698 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700699 if (high == IWL_RATE_INVALID)
700 break;
701 if (rate_mask & (1 << high))
702 break;
703 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high);
704 }
705
706 return (high << 8) | low;
707}
708
Tomas Winklere227cea2008-07-18 13:53:05 +0800709static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
710 struct iwl_scale_tbl_info *tbl,
711 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700712{
Zhu Yib481de92007-09-25 17:54:57 -0700713 s32 low;
714 u16 rate_mask;
715 u16 high_low;
716 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800717 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -0700718
719 /* check if we need to switch from HT to legacy rates.
720 * assumption is that mandatory rates (1Mbps or 6Mbps)
721 * are always supported (spec demand) */
722 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
723 switch_to_legacy = 1;
724 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100725 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700726 tbl->lq_type = LQ_A;
727 else
728 tbl->lq_type = LQ_G;
729
Guy Cohen69fdb302008-04-23 17:15:01 -0700730 if (num_of_ant(tbl->ant_type) > 1)
Guy Cohenfde0db32008-04-21 15:42:01 -0700731 tbl->ant_type = ANT_A;/*FIXME:RS*/
Zhu Yib481de92007-09-25 17:54:57 -0700732
733 tbl->is_fat = 0;
734 tbl->is_SGI = 0;
735 }
736
Guy Coheneecd6e52008-04-23 17:14:58 -0700737 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700738
Ben Cahill77626352007-11-29 11:09:44 +0800739 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700740 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800741 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100742 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700743 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800744 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700745 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800746 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700747 }
748
Ben Cahill77626352007-11-29 11:09:44 +0800749 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800750 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700751 low = scale_index;
752 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700753 }
754
Ester Kummerbf403db2008-05-05 10:22:40 +0800755 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
756 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700757 low = high_low & 0xff;
758
Guy Cohen39e88502008-04-23 17:14:57 -0700759 if (low == IWL_RATE_INVALID)
760 low = scale_index;
761
762out:
763 return rate_n_flags_from_tbl(tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700764}
765
Ben Cahill77626352007-11-29 11:09:44 +0800766/*
767 * mac80211 sends us Tx status
768 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200769static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
770 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200771 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700772{
773 int status;
774 u8 retries;
775 int rs_index, index = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +0800776 struct iwl_lq_sta *lq_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700777 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700778 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200779 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
780 struct ieee80211_hw *hw = priv->hw;
Johannes Berge039fa42008-05-15 12:55:29 +0200781 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winklere227cea2008-07-18 13:53:05 +0800782 struct iwl_rate_scale_data *window = NULL;
783 struct iwl_rate_scale_data *search_win = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700784 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800785 struct iwl_scale_tbl_info tbl_type;
786 struct iwl_scale_tbl_info *curr_tbl, *search_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700787 u8 active_index = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700788 __le16 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -0700789 s32 tpt = 0;
790
Zhu Yi58826352007-09-27 11:27:39 +0800791 IWL_DEBUG_RATE_LIMIT("get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700792
793 if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1))
794 return;
795
Ron Rindjunsky99556432008-01-28 14:07:25 +0200796 /* This packet was aggregated but doesn't carry rate scale info */
Johannes Berge039fa42008-05-15 12:55:29 +0200797 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
798 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200799 return;
800
Johannes Berge6a98542008-10-21 12:40:02 +0200801 retries = info->status.rates[0].count - 1;
Zhu Yib481de92007-09-25 17:54:57 -0700802
803 if (retries > 15)
804 retries = 15;
805
Johannes Berg4b7679a2008-09-18 18:14:18 +0200806 lq_sta = (struct iwl_lq_sta *)priv_sta;
Zhu Yib481de92007-09-25 17:54:57 -0700807
Johannes Berg05c914f2008-09-11 00:01:58 +0200808 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -0800809 !lq_sta->ibss_sta_added)
Tomas Winklerf4d60822008-03-05 11:31:00 -0800810 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700811
Tomas Winklerc33104f2008-01-14 17:46:21 -0800812 table = &lq_sta->lq;
813 active_index = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700814
Tomas Winklerc33104f2008-01-14 17:46:21 -0800815 curr_tbl = &(lq_sta->lq_info[active_index]);
816 search_tbl = &(lq_sta->lq_info[(1 - active_index)]);
Tomas Winklere227cea2008-07-18 13:53:05 +0800817 window = (struct iwl_rate_scale_data *)&(curr_tbl->win[0]);
818 search_win = (struct iwl_rate_scale_data *)&(search_tbl->win[0]);
Zhu Yib481de92007-09-25 17:54:57 -0700819
Ben Cahill77626352007-11-29 11:09:44 +0800820 /*
821 * Ignore this Tx frame response if its initial rate doesn't match
822 * that of latest Link Quality command. There may be stragglers
823 * from a previous Link Quality command, but we're no longer interested
824 * in those; they're either from the "active" mode while we're trying
825 * to check "search" mode, or a prior "search" mode after we've moved
826 * to a new "search" mode (which might become the new "active" mode).
827 */
Guy Cohen39e88502008-04-23 17:14:57 -0700828 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
829 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800830 if (priv->band == IEEE80211_BAND_5GHZ)
831 rs_index -= IWL_FIRST_OFDM_RATE;
832
Johannes Berge6a98542008-10-21 12:40:02 +0200833 if ((info->status.rates[0].idx < 0) ||
834 (tbl_type.is_SGI != !!(info->status.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)) ||
835 (tbl_type.is_fat != !!(info->status.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
836 (tbl_type.is_dup != !!(info->status.rates[0].flags & IEEE80211_TX_RC_DUP_DATA)) ||
837 (tbl_type.ant_type != info->antenna_sel_tx) ||
838 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(info->status.rates[0].flags & IEEE80211_TX_RC_MCS)) ||
839 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(info->status.rates[0].flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800840 (hw->wiphy->bands[priv->band]->bitrates[rs_index].bitrate !=
Johannes Berge6a98542008-10-21 12:40:02 +0200841 hw->wiphy->bands[info->band]->bitrates[info->status.rates[0].idx].bitrate)) {
Guy Cohen39e88502008-04-23 17:14:57 -0700842 IWL_DEBUG_RATE("initial rate does not match 0x%x\n", tx_rate);
Tomas Winklerf4d60822008-03-05 11:31:00 -0800843 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700844 }
845
Ben Cahill77626352007-11-29 11:09:44 +0800846 /* Update frame history window with "failure" for each Tx retry. */
Zhu Yib481de92007-09-25 17:54:57 -0700847 while (retries) {
Ben Cahill77626352007-11-29 11:09:44 +0800848 /* Look up the rate and other info used for each tx attempt.
849 * Each tx attempt steps one entry deeper in the rate table. */
Guy Cohen39e88502008-04-23 17:14:57 -0700850 tx_rate = le32_to_cpu(table->rs_table[index].rate_n_flags);
851 rs_get_tbl_info_from_mcs(tx_rate, priv->band,
Zhu Yib481de92007-09-25 17:54:57 -0700852 &tbl_type, &rs_index);
853
Ben Cahill77626352007-11-29 11:09:44 +0800854 /* If type matches "search" table,
855 * add failure to "search" history */
Zhu Yib481de92007-09-25 17:54:57 -0700856 if ((tbl_type.lq_type == search_tbl->lq_type) &&
Guy Cohenfde0db32008-04-21 15:42:01 -0700857 (tbl_type.ant_type == search_tbl->ant_type) &&
Zhu Yib481de92007-09-25 17:54:57 -0700858 (tbl_type.is_SGI == search_tbl->is_SGI)) {
859 if (search_tbl->expected_tpt)
860 tpt = search_tbl->expected_tpt[rs_index];
861 else
862 tpt = 0;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200863 rs_collect_tx_data(search_win, rs_index, tpt, 1, 0);
Ben Cahill77626352007-11-29 11:09:44 +0800864
865 /* Else if type matches "current/active" table,
866 * add failure to "current/active" history */
Zhu Yib481de92007-09-25 17:54:57 -0700867 } else if ((tbl_type.lq_type == curr_tbl->lq_type) &&
Guy Cohenfde0db32008-04-21 15:42:01 -0700868 (tbl_type.ant_type == curr_tbl->ant_type) &&
Zhu Yib481de92007-09-25 17:54:57 -0700869 (tbl_type.is_SGI == curr_tbl->is_SGI)) {
870 if (curr_tbl->expected_tpt)
871 tpt = curr_tbl->expected_tpt[rs_index];
872 else
873 tpt = 0;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200874 rs_collect_tx_data(window, rs_index, tpt, 1, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700875 }
Ben Cahill77626352007-11-29 11:09:44 +0800876
877 /* If not searching for a new mode, increment failed counter
878 * ... this helps determine when to start searching again */
Tomas Winklerc33104f2008-01-14 17:46:21 -0800879 if (lq_sta->stay_in_tbl)
880 lq_sta->total_failed++;
Zhu Yib481de92007-09-25 17:54:57 -0700881 --retries;
882 index++;
883
884 }
885
Ben Cahill77626352007-11-29 11:09:44 +0800886 /*
887 * Find (by rate) the history window to update with final Tx attempt;
888 * if Tx was successful first try, use original rate,
889 * else look up the rate that was, finally, successful.
890 */
Guy Cohen39e88502008-04-23 17:14:57 -0700891 tx_rate = le32_to_cpu(table->rs_table[index].rate_n_flags);
892 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Zhu Yib481de92007-09-25 17:54:57 -0700893
Ben Cahill77626352007-11-29 11:09:44 +0800894 /* Update frame history window with "success" if Tx got ACKed ... */
Johannes Berge039fa42008-05-15 12:55:29 +0200895 status = !!(info->flags & IEEE80211_TX_STAT_ACK);
Zhu Yib481de92007-09-25 17:54:57 -0700896
Ben Cahill77626352007-11-29 11:09:44 +0800897 /* If type matches "search" table,
898 * add final tx status to "search" history */
Zhu Yib481de92007-09-25 17:54:57 -0700899 if ((tbl_type.lq_type == search_tbl->lq_type) &&
Guy Cohenfde0db32008-04-21 15:42:01 -0700900 (tbl_type.ant_type == search_tbl->ant_type) &&
Zhu Yib481de92007-09-25 17:54:57 -0700901 (tbl_type.is_SGI == search_tbl->is_SGI)) {
902 if (search_tbl->expected_tpt)
903 tpt = search_tbl->expected_tpt[rs_index];
904 else
905 tpt = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200906 if (info->flags & IEEE80211_TX_CTL_AMPDU)
Ron Rindjunsky99556432008-01-28 14:07:25 +0200907 rs_collect_tx_data(search_win, rs_index, tpt,
Johannes Berge039fa42008-05-15 12:55:29 +0200908 info->status.ampdu_ack_len,
909 info->status.ampdu_ack_map);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200910 else
911 rs_collect_tx_data(search_win, rs_index, tpt,
912 1, status);
Ben Cahill77626352007-11-29 11:09:44 +0800913 /* Else if type matches "current/active" table,
914 * add final tx status to "current/active" history */
Zhu Yib481de92007-09-25 17:54:57 -0700915 } else if ((tbl_type.lq_type == curr_tbl->lq_type) &&
Guy Cohenfde0db32008-04-21 15:42:01 -0700916 (tbl_type.ant_type == curr_tbl->ant_type) &&
Zhu Yib481de92007-09-25 17:54:57 -0700917 (tbl_type.is_SGI == curr_tbl->is_SGI)) {
918 if (curr_tbl->expected_tpt)
919 tpt = curr_tbl->expected_tpt[rs_index];
920 else
921 tpt = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200922 if (info->flags & IEEE80211_TX_CTL_AMPDU)
Ron Rindjunsky99556432008-01-28 14:07:25 +0200923 rs_collect_tx_data(window, rs_index, tpt,
Johannes Berge039fa42008-05-15 12:55:29 +0200924 info->status.ampdu_ack_len,
925 info->status.ampdu_ack_map);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200926 else
927 rs_collect_tx_data(window, rs_index, tpt,
928 1, status);
Zhu Yib481de92007-09-25 17:54:57 -0700929 }
930
Ben Cahill77626352007-11-29 11:09:44 +0800931 /* If not searching for new mode, increment success/failed counter
932 * ... these help determine when to start searching again */
Tomas Winklerc33104f2008-01-14 17:46:21 -0800933 if (lq_sta->stay_in_tbl) {
Johannes Berge039fa42008-05-15 12:55:29 +0200934 if (info->flags & IEEE80211_TX_CTL_AMPDU) {
935 lq_sta->total_success += info->status.ampdu_ack_map;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200936 lq_sta->total_failed +=
Johannes Berge039fa42008-05-15 12:55:29 +0200937 (info->status.ampdu_ack_len - info->status.ampdu_ack_map);
Ron Rindjunsky99556432008-01-28 14:07:25 +0200938 } else {
939 if (status)
940 lq_sta->total_success++;
941 else
942 lq_sta->total_failed++;
943 }
Zhu Yib481de92007-09-25 17:54:57 -0700944 }
945
Ben Cahill77626352007-11-29 11:09:44 +0800946 /* See if there's a better rate or modulation mode to try. */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200947 rs_rate_scale_perform(priv, hdr, sta, lq_sta);
Tomas Winklerf4d60822008-03-05 11:31:00 -0800948out:
Zhu Yib481de92007-09-25 17:54:57 -0700949 return;
950}
951
Ben Cahill77626352007-11-29 11:09:44 +0800952/*
953 * Begin a period of staying with a selected modulation mode.
954 * Set "stay_in_tbl" flag to prevent any mode switches.
955 * Set frame tx success limits according to legacy vs. high-throughput,
956 * and reset overall (spanning all rates) tx success history statistics.
957 * These control how long we stay using same modulation mode before
958 * searching for a new mode.
959 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800960static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800961 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700962{
Guy Coheneecd6e52008-04-23 17:14:58 -0700963 IWL_DEBUG_RATE("we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800964 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700965 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800966 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
967 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
968 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700969 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800970 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
971 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
972 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700973 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800974 lq_sta->table_count = 0;
975 lq_sta->total_failed = 0;
976 lq_sta->total_success = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700977}
978
Ben Cahill77626352007-11-29 11:09:44 +0800979/*
980 * Find correct throughput table for given mode of modulation
981 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800982static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
983 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700984{
985 if (is_legacy(tbl->lq_type)) {
986 if (!is_a_band(tbl->lq_type))
987 tbl->expected_tpt = expected_tpt_G;
988 else
989 tbl->expected_tpt = expected_tpt_A;
990 } else if (is_siso(tbl->lq_type)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800991 if (tbl->is_fat && !lq_sta->is_dup)
Zhu Yib481de92007-09-25 17:54:57 -0700992 if (tbl->is_SGI)
993 tbl->expected_tpt = expected_tpt_siso40MHzSGI;
994 else
995 tbl->expected_tpt = expected_tpt_siso40MHz;
996 else if (tbl->is_SGI)
997 tbl->expected_tpt = expected_tpt_siso20MHzSGI;
998 else
999 tbl->expected_tpt = expected_tpt_siso20MHz;
1000
Guy Cohenfde0db32008-04-21 15:42:01 -07001001 } else if (is_mimo(tbl->lq_type)) { /* FIXME:need to separate mimo2/3 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001002 if (tbl->is_fat && !lq_sta->is_dup)
Zhu Yib481de92007-09-25 17:54:57 -07001003 if (tbl->is_SGI)
1004 tbl->expected_tpt = expected_tpt_mimo40MHzSGI;
1005 else
1006 tbl->expected_tpt = expected_tpt_mimo40MHz;
1007 else if (tbl->is_SGI)
1008 tbl->expected_tpt = expected_tpt_mimo20MHzSGI;
1009 else
1010 tbl->expected_tpt = expected_tpt_mimo20MHz;
1011 } else
1012 tbl->expected_tpt = expected_tpt_G;
1013}
1014
Ben Cahill77626352007-11-29 11:09:44 +08001015/*
1016 * Find starting rate for new "search" high-throughput mode of modulation.
1017 * Goal is to find lowest expected rate (under perfect conditions) that is
1018 * above the current measured throughput of "active" mode, to give new mode
1019 * a fair chance to prove itself without too many challenges.
1020 *
1021 * This gets called when transitioning to more aggressive modulation
1022 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1023 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1024 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1025 * bit rate will typically need to increase, but not if performance was bad.
1026 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001027static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001028 struct iwl_lq_sta *lq_sta,
1029 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001030 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001031{
Ben Cahill77626352007-11-29 11:09:44 +08001032 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001033 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001034 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001035 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001036 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001037
1038 /* expected "search" throughput */
1039 s32 *tpt_tbl = tbl->expected_tpt;
1040
1041 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001042 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001043 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001044
1045 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1046
1047 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001048 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1049 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001050
1051 low = high_low & 0xff;
1052 high = (high_low >> 8) & 0xff;
1053
Ben Cahill77626352007-11-29 11:09:44 +08001054 /*
1055 * Lower the "search" bit rate, to give new "search" mode
1056 * approximately the same throughput as "active" if:
1057 *
1058 * 1) "Active" mode has been working modestly well (but not
1059 * great), and expected "search" throughput (under perfect
1060 * conditions) at candidate rate is above the actual
1061 * measured "active" throughput (but less than expected
1062 * "active" throughput under perfect conditions).
1063 * OR
1064 * 2) "Active" mode has been working perfectly or very well
1065 * and expected "search" throughput (under perfect
1066 * conditions) at candidate rate is above expected
1067 * "active" throughput (under perfect conditions).
1068 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001069 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001070 ((active_sr > IWL_RATE_DECREASE_TH) &&
1071 (active_sr <= IWL_RATE_HIGH_TH) &&
1072 (tpt_tbl[rate] <= active_tpt))) ||
1073 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1074 (tpt_tbl[rate] > active_tpt))) {
1075
Ben Cahill77626352007-11-29 11:09:44 +08001076 /* (2nd or later pass)
1077 * If we've already tried to raise the rate, and are
1078 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001079 if (start_hi != IWL_RATE_INVALID) {
1080 new_rate = start_hi;
1081 break;
1082 }
Ben Cahill77626352007-11-29 11:09:44 +08001083
Zhu Yib481de92007-09-25 17:54:57 -07001084 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001085
1086 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001087 if (low != IWL_RATE_INVALID)
1088 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001089
1090 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001091 else
1092 break;
Ben Cahill77626352007-11-29 11:09:44 +08001093
1094 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001095 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001096 /* (2nd or later pass)
1097 * If we've already tried to lower the rate, and are
1098 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001099 if (new_rate != IWL_RATE_INVALID)
1100 break;
Ben Cahill77626352007-11-29 11:09:44 +08001101
1102 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001103 else if (high != IWL_RATE_INVALID) {
1104 start_hi = high;
1105 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001106
1107 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001108 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001109 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001110 break;
1111 }
1112 }
1113 }
1114
1115 return new_rate;
1116}
Zhu Yib481de92007-09-25 17:54:57 -07001117
Ben Cahill77626352007-11-29 11:09:44 +08001118/*
1119 * Set up search table for MIMO
1120 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001121static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001122 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001123 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001124 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001125 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001126{
Zhu Yib481de92007-09-25 17:54:57 -07001127 u16 rate_mask;
1128 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001129 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001130
Johannes Bergae5eb022008-10-14 16:58:37 +02001131 if (!conf->ht.enabled || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001132 return -1;
1133
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001134 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001135 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001136 return -1;
1137
Ben Cahill77626352007-11-29 11:09:44 +08001138 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001139 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001140 return -1;
1141
Guy Coheneecd6e52008-04-23 17:14:58 -07001142 IWL_DEBUG_RATE("LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001143
1144 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001145 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001146 tbl->action = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001147 rate_mask = lq_sta->active_mimo2_rate;
1148
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001149 if (priv->current_ht_config.supported_chan_width
Guy Cohen39e88502008-04-23 17:14:57 -07001150 == IWL_CHANNEL_WIDTH_40MHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001151 tbl->is_fat = 1;
1152 else
1153 tbl->is_fat = 0;
1154
Guy Cohen39e88502008-04-23 17:14:57 -07001155 /* FIXME: - don't toggle SGI here
Zhu Yib481de92007-09-25 17:54:57 -07001156 if (tbl->is_fat) {
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001157 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001158 tbl->is_SGI = 1;
1159 else
1160 tbl->is_SGI = 0;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001161 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001162 tbl->is_SGI = 1;
1163 else
1164 tbl->is_SGI = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001165 */
Zhu Yib481de92007-09-25 17:54:57 -07001166
Guy Coheneecd6e52008-04-23 17:14:58 -07001167 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001168
Guy Cohenf935a6d2008-04-23 17:15:02 -07001169 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001170
Guy Coheneecd6e52008-04-23 17:14:58 -07001171 IWL_DEBUG_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001172
1173 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001174 IWL_DEBUG_RATE("Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001175 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001176 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001177 }
1178 tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001179
Guy Coheneecd6e52008-04-23 17:14:58 -07001180 IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001181 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001182 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001183}
1184
Ben Cahill77626352007-11-29 11:09:44 +08001185/*
1186 * Set up search table for SISO
1187 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001188static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001189 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001190 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001191 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001192 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001193{
Zhu Yib481de92007-09-25 17:54:57 -07001194 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001195 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001196 s32 rate;
1197
Johannes Bergae5eb022008-10-14 16:58:37 +02001198 if (!conf->ht.enabled || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001199 return -1;
1200
Guy Coheneecd6e52008-04-23 17:14:58 -07001201 IWL_DEBUG_RATE("LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001202
Tomas Winklerc33104f2008-01-14 17:46:21 -08001203 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001204 tbl->lq_type = LQ_SISO;
1205 tbl->action = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001206 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001207
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001208 if (priv->current_ht_config.supported_chan_width
1209 == IWL_CHANNEL_WIDTH_40MHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001210 tbl->is_fat = 1;
1211 else
1212 tbl->is_fat = 0;
1213
Guy Cohen39e88502008-04-23 17:14:57 -07001214 /* FIXME: - don't toggle SGI here
Zhu Yib481de92007-09-25 17:54:57 -07001215 if (tbl->is_fat) {
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001216 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001217 tbl->is_SGI = 1;
1218 else
1219 tbl->is_SGI = 0;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001220 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001221 tbl->is_SGI = 1;
1222 else
1223 tbl->is_SGI = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001224 */
Zhu Yib481de92007-09-25 17:54:57 -07001225
1226 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001227 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001228
Guy Coheneecd6e52008-04-23 17:14:58 -07001229 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001230 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001231
Guy Coheneecd6e52008-04-23 17:14:58 -07001232 IWL_DEBUG_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001233 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001234 IWL_DEBUG_RATE("can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001235 rate, rate_mask);
1236 return -1;
1237 }
Guy Cohen39e88502008-04-23 17:14:57 -07001238 tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green);
Guy Coheneecd6e52008-04-23 17:14:58 -07001239 IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001240 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001241 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001242}
1243
Ben Cahill77626352007-11-29 11:09:44 +08001244/*
1245 * Try to switch to new modulation mode from legacy
1246 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001247static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001248 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001249 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001250 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001251 int index)
1252{
Tomas Winklere227cea2008-07-18 13:53:05 +08001253 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1254 struct iwl_scale_tbl_info *search_tbl =
1255 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1256 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1257 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1258 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001259 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001260 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001261 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001262 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001263
1264 for (; ;) {
1265 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001266 case IWL_LEGACY_SWITCH_ANTENNA1:
1267 case IWL_LEGACY_SWITCH_ANTENNA2:
Guy Cohenf935a6d2008-04-23 17:15:02 -07001268 IWL_DEBUG_RATE("LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001269
Tomas Winklerc33104f2008-01-14 17:46:21 -08001270 lq_sta->action_counter++;
Ben Cahill77626352007-11-29 11:09:44 +08001271
Guy Cohen3110bef2008-09-09 10:54:54 +08001272 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1273 tx_chains_num <= 1) ||
1274 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1275 tx_chains_num <= 2))
1276 break;
1277
Ben Cahill77626352007-11-29 11:09:44 +08001278 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001279 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1280 break;
Ben Cahill77626352007-11-29 11:09:44 +08001281
Ben Cahill77626352007-11-29 11:09:44 +08001282 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001283 memcpy(search_tbl, tbl, sz);
1284
Guy Cohenaade00c2008-04-23 17:14:59 -07001285 if (rs_toggle_antenna(valid_tx_ant,
1286 &search_tbl->current_rate, search_tbl)) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001287 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001288 goto out;
1289 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001290 break;
Zhu Yib481de92007-09-25 17:54:57 -07001291 case IWL_LEGACY_SWITCH_SISO:
Guy Coheneecd6e52008-04-23 17:14:58 -07001292 IWL_DEBUG_RATE("LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001293
1294 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001295 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001296 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001297 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001298 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001299 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001300 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001301 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001302 }
Zhu Yib481de92007-09-25 17:54:57 -07001303
1304 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001305 case IWL_LEGACY_SWITCH_MIMO2_AB:
1306 case IWL_LEGACY_SWITCH_MIMO2_AC:
1307 case IWL_LEGACY_SWITCH_MIMO2_BC:
Guy Coheneecd6e52008-04-23 17:14:58 -07001308 IWL_DEBUG_RATE("LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001309
1310 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001311 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001312 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001313
1314 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1315 search_tbl->ant_type = ANT_AB;
1316 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1317 search_tbl->ant_type = ANT_AC;
1318 else
1319 search_tbl->ant_type = ANT_BC;
1320
1321 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1322 break;
1323
Guy Cohenfde0db32008-04-21 15:42:01 -07001324 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001325 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001326 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001327 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001328 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001329 }
Zhu Yib481de92007-09-25 17:54:57 -07001330 break;
1331 }
1332 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001333 if (tbl->action > IWL_LEGACY_SWITCH_MIMO2_BC)
1334 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001335
1336 if (tbl->action == start_action)
1337 break;
1338
1339 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001340 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001341 return 0;
1342
Guy Cohen3110bef2008-09-09 10:54:54 +08001343out:
1344 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001345 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001346 if (tbl->action > IWL_LEGACY_SWITCH_MIMO2_BC)
1347 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001348 return 0;
1349
1350}
1351
Ben Cahill77626352007-11-29 11:09:44 +08001352/*
1353 * Try to switch to new modulation mode from SISO
1354 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001355static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001356 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001357 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001358 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001359{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001360 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001361 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1362 struct iwl_scale_tbl_info *search_tbl =
1363 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1364 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1365 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1366 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001367 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001368 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001369 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001370 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001371
1372 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001373 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001374 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001375 case IWL_SISO_SWITCH_ANTENNA1:
1376 case IWL_SISO_SWITCH_ANTENNA2:
Guy Coheneecd6e52008-04-23 17:14:58 -07001377 IWL_DEBUG_RATE("LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001378
1379 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1380 tx_chains_num <= 1) ||
1381 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1382 tx_chains_num <= 2))
1383 break;
1384
Zhu Yib481de92007-09-25 17:54:57 -07001385 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1386 break;
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001389 if (rs_toggle_antenna(valid_tx_ant,
Guy Cohen3110bef2008-09-09 10:54:54 +08001390 &search_tbl->current_rate, search_tbl))
Guy Cohenaade00c2008-04-23 17:14:59 -07001391 goto out;
Guy Cohena5e8b502008-05-29 16:35:11 +08001392 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001393 case IWL_SISO_SWITCH_MIMO2_AB:
1394 case IWL_SISO_SWITCH_MIMO2_AC:
1395 case IWL_SISO_SWITCH_MIMO2_BC:
Guy Cohena5e8b502008-05-29 16:35:11 +08001396 IWL_DEBUG_RATE("LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001397 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001398 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001399
1400 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1401 search_tbl->ant_type = ANT_AB;
1402 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1403 search_tbl->ant_type = ANT_AC;
1404 else
1405 search_tbl->ant_type = ANT_BC;
1406
1407 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1408 break;
1409
Guy Cohenfde0db32008-04-21 15:42:01 -07001410 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001411 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001412 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001413 goto out;
1414 break;
1415 case IWL_SISO_SWITCH_GI:
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001416 if (!tbl->is_fat &&
1417 !(priv->current_ht_config.sgf &
1418 HT_SHORT_GI_20MHZ))
1419 break;
1420 if (tbl->is_fat &&
1421 !(priv->current_ht_config.sgf &
1422 HT_SHORT_GI_40MHZ))
1423 break;
1424
Guy Coheneecd6e52008-04-23 17:14:58 -07001425 IWL_DEBUG_RATE("LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001426
Zhu Yib481de92007-09-25 17:54:57 -07001427 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001428 if (is_green) {
1429 if (!tbl->is_SGI)
1430 break;
1431 else
1432 IWL_ERROR("SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001433 }
Guy Cohen39e88502008-04-23 17:14:57 -07001434 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001435 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001436 if (tbl->is_SGI) {
1437 s32 tpt = lq_sta->last_tpt / 100;
1438 if (tpt >= search_tbl->expected_tpt[index])
1439 break;
1440 }
1441 search_tbl->current_rate = rate_n_flags_from_tbl(
1442 search_tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001443 goto out;
1444 }
1445 tbl->action++;
1446 if (tbl->action > IWL_SISO_SWITCH_GI)
Guy Cohen3110bef2008-09-09 10:54:54 +08001447 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001448
1449 if (tbl->action == start_action)
1450 break;
1451 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001452 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001453 return 0;
1454
1455 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001456 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001457 tbl->action++;
1458 if (tbl->action > IWL_SISO_SWITCH_GI)
Guy Cohen3110bef2008-09-09 10:54:54 +08001459 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001460 return 0;
1461}
1462
Ben Cahill77626352007-11-29 11:09:44 +08001463/*
1464 * Try to switch to new modulation mode from MIMO
1465 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001466static int rs_move_mimo_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001467 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001468 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001469 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001470{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001471 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001472 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1473 struct iwl_scale_tbl_info *search_tbl =
1474 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001475 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Tomas Winklere227cea2008-07-18 13:53:05 +08001476 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1477 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001478 u8 start_action = tbl->action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001479 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1480 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenaade00c2008-04-23 17:14:59 -07001481 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001482
1483 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001484 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001485 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001486 case IWL_MIMO2_SWITCH_ANTENNA1:
1487 case IWL_MIMO2_SWITCH_ANTENNA2:
1488 IWL_DEBUG_RATE("LQ: MIMO toggle Antennas\n");
1489
1490 if (tx_chains_num <= 2)
1491 break;
1492
1493 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1494 break;
1495
1496 memcpy(search_tbl, tbl, sz);
1497 if (rs_toggle_antenna(valid_tx_ant,
1498 &search_tbl->current_rate, search_tbl))
1499 goto out;
1500 break;
1501 case IWL_MIMO2_SWITCH_SISO_A:
1502 case IWL_MIMO2_SWITCH_SISO_B:
1503 case IWL_MIMO2_SWITCH_SISO_C:
Guy Coheneecd6e52008-04-23 17:14:58 -07001504 IWL_DEBUG_RATE("LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001505
Ben Cahill77626352007-11-29 11:09:44 +08001506 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001507 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001508
Guy Cohen3110bef2008-09-09 10:54:54 +08001509 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001510 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001511 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001512 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001513 else
1514 search_tbl->ant_type = ANT_C;
1515
1516 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1517 break;
Zhu Yib481de92007-09-25 17:54:57 -07001518
Tomas Winklerc33104f2008-01-14 17:46:21 -08001519 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001520 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001521 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001522 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001523
Zhu Yib481de92007-09-25 17:54:57 -07001524 break;
1525
Guy Cohen3110bef2008-09-09 10:54:54 +08001526 case IWL_MIMO2_SWITCH_GI:
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001527 if (!tbl->is_fat &&
1528 !(priv->current_ht_config.sgf &
1529 HT_SHORT_GI_20MHZ))
1530 break;
1531 if (tbl->is_fat &&
1532 !(priv->current_ht_config.sgf &
1533 HT_SHORT_GI_40MHZ))
1534 break;
1535
Guy Coheneecd6e52008-04-23 17:14:58 -07001536 IWL_DEBUG_RATE("LQ: MIMO toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001537
1538 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001539 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001540 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001541 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001542 /*
1543 * If active table already uses the fastest possible
1544 * modulation (dual stream with short guard interval),
1545 * and it's working well, there's no need to look
1546 * for a better type of modulation!
1547 */
Guy Cohen39e88502008-04-23 17:14:57 -07001548 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001549 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001550 if (tpt >= search_tbl->expected_tpt[index])
1551 break;
Zhu Yib481de92007-09-25 17:54:57 -07001552 }
Guy Cohen39e88502008-04-23 17:14:57 -07001553 search_tbl->current_rate = rate_n_flags_from_tbl(
1554 search_tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001555 goto out;
1556
1557 }
1558 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001559 if (tbl->action > IWL_MIMO2_SWITCH_GI)
1560 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001561
1562 if (tbl->action == start_action)
1563 break;
1564 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001565 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001566 return 0;
1567 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001568 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001569 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001570 if (tbl->action > IWL_MIMO2_SWITCH_GI)
1571 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001572 return 0;
1573
1574}
1575
Ben Cahill77626352007-11-29 11:09:44 +08001576/*
1577 * Check whether we should continue using same modulation mode, or
1578 * begin search for a new mode, based on:
1579 * 1) # tx successes or failures while using this mode
1580 * 2) # times calling this function
1581 * 3) elapsed time in this mode (not used, for now)
1582 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001583static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001584{
Tomas Winklere227cea2008-07-18 13:53:05 +08001585 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001586 int i;
1587 int active_tbl;
1588 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001589 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001590
Ester Kummerbf403db2008-05-05 10:22:40 +08001591 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001592 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001593
Tomas Winklerc33104f2008-01-14 17:46:21 -08001594 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001595
Ben Cahill77626352007-11-29 11:09:44 +08001596 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001597 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001598
Ben Cahill77626352007-11-29 11:09:44 +08001599 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001600 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001601 flush_interval_passed =
1602 time_after(jiffies,
Tomas Winklerc33104f2008-01-14 17:46:21 -08001603 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001604 IWL_RATE_SCALE_FLUSH_INTVL));
1605
Ben Cahill77626352007-11-29 11:09:44 +08001606 /*
1607 * Check if we should allow search for new modulation mode.
1608 * If many frames have failed or succeeded, or we've used
1609 * this same modulation for a long time, allow search, and
1610 * reset history stats that keep track of whether we should
1611 * allow a new search. Also (below) reset all bitmaps and
1612 * stats in active history.
1613 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001614 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1615 (lq_sta->total_success > lq_sta->max_success_limit) ||
1616 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001617 && (flush_interval_passed))) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001618 IWL_DEBUG_RATE("LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001619 lq_sta->total_failed,
1620 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001621 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001622
1623 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001624 lq_sta->stay_in_tbl = 0; /* only place reset */
1625 lq_sta->total_failed = 0;
1626 lq_sta->total_success = 0;
1627 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001628
1629 /*
1630 * Else if we've used this modulation mode enough repetitions
1631 * (regardless of elapsed time or success/failure), reset
1632 * history bitmaps and rate-specific stats for all rates in
1633 * active table.
1634 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001635 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001636 lq_sta->table_count++;
1637 if (lq_sta->table_count >=
1638 lq_sta->table_count_limit) {
1639 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001640
Guy Coheneecd6e52008-04-23 17:14:58 -07001641 IWL_DEBUG_RATE("LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001642 for (i = 0; i < IWL_RATE_COUNT; i++)
1643 rs_rate_scale_clear_window(
1644 &(tbl->win[i]));
1645 }
1646 }
1647
Ben Cahill77626352007-11-29 11:09:44 +08001648 /* If transitioning to allow "search", reset all history
1649 * bitmaps and stats in active table (this will become the new
1650 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001651 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001652 for (i = 0; i < IWL_RATE_COUNT; i++)
1653 rs_rate_scale_clear_window(&(tbl->win[i]));
1654 }
1655 }
1656}
1657
Ben Cahill77626352007-11-29 11:09:44 +08001658/*
1659 * Do rate scaling and search for new modulation mode.
1660 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001661static void rs_rate_scale_perform(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001662 struct ieee80211_hdr *hdr,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001663 struct ieee80211_sta *sta,
1664 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001665{
Johannes Berg4b7679a2008-09-18 18:14:18 +02001666 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001667 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07001668 int low = IWL_RATE_INVALID;
1669 int high = IWL_RATE_INVALID;
1670 int index;
1671 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08001672 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001673 int current_tpt = IWL_INVALID_VALUE;
1674 int low_tpt = IWL_INVALID_VALUE;
1675 int high_tpt = IWL_INVALID_VALUE;
1676 u32 fail_count;
1677 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001678 __le16 fc;
1679 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07001680 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08001681 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07001682 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001683 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07001684 u8 is_green = 0;
1685 u8 active_tbl = 0;
1686 u8 done_search = 0;
1687 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08001688 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001689 u8 tid = MAX_TID_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07001690
1691 IWL_DEBUG_RATE("rate scale calculate new rate for skb\n");
1692
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001693 fc = hdr->frame_control;
Zhu Yib481de92007-09-25 17:54:57 -07001694 if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1)) {
1695 /* Send management frames and broadcast/multicast data using
1696 * lowest rate. */
1697 /* TODO: this could probably be improved.. */
1698 return;
1699 }
1700
Johannes Berg4b7679a2008-09-18 18:14:18 +02001701 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001702 return;
1703
Johannes Berg4b7679a2008-09-18 18:14:18 +02001704 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07001705
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001706 tid = rs_tl_add_packet(lq_sta, hdr);
1707
Ben Cahill77626352007-11-29 11:09:44 +08001708 /*
1709 * Select rate-scale / modulation-mode table to work with in
1710 * the rest of this function: "search" if searching for better
1711 * modulation mode, or "active" if doing rate scaling within a mode.
1712 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001713 if (!lq_sta->search_better_tbl)
1714 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001715 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001716 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001717
Tomas Winklerc33104f2008-01-14 17:46:21 -08001718 tbl = &(lq_sta->lq_info[active_tbl]);
1719 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001720
Ben Cahill77626352007-11-29 11:09:44 +08001721 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02001722 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07001723
1724 IWL_DEBUG_RATE("Rate scale index %d for type %d\n", index,
1725 tbl->lq_type);
1726
Ben Cahill77626352007-11-29 11:09:44 +08001727 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07001728 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001729
1730 IWL_DEBUG_RATE("mask 0x%04X \n", rate_mask);
1731
1732 /* mask with station rate restriction */
1733 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01001734 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08001735 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07001736 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08001737 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07001738 else
1739 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08001740 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07001741
1742 } else
1743 rate_scale_index_msk = rate_mask;
1744
1745 if (!rate_scale_index_msk)
1746 rate_scale_index_msk = rate_mask;
1747
Guy Cohen07bc28e2008-04-23 17:15:03 -07001748 if (!((1 << index) & rate_scale_index_msk)) {
1749 IWL_ERROR("Current Rate is not valid\n");
1750 return;
Zhu Yib481de92007-09-25 17:54:57 -07001751 }
1752
Ben Cahill77626352007-11-29 11:09:44 +08001753 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07001754 if (!tbl->expected_tpt) {
1755 IWL_ERROR("tbl->expected_tpt is NULL\n");
1756 return;
1757 }
Zhu Yib481de92007-09-25 17:54:57 -07001758
1759 window = &(tbl->win[index]);
1760
Ben Cahill77626352007-11-29 11:09:44 +08001761 /*
1762 * If there is not enough history to calculate actual average
1763 * throughput, keep analyzing results of more tx frames, without
1764 * changing rate or mode (bypass most of the rest of this function).
1765 * Set up new rate table in uCode only if old rate is not supported
1766 * in current association (use new rate found above).
1767 */
Zhu Yib481de92007-09-25 17:54:57 -07001768 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07001769 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
1770 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
1771 IWL_DEBUG_RATE("LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07001772 "for index %d\n",
1773 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08001774
1775 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07001776 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08001777
1778 /* Should we stay with this modulation mode,
1779 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001780 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08001781
Zhu Yib481de92007-09-25 17:54:57 -07001782 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001783 }
Zhu Yib481de92007-09-25 17:54:57 -07001784
Ben Cahill77626352007-11-29 11:09:44 +08001785 /* Else we have enough samples; calculate estimate of
1786 * actual average throughput */
Guy Cohen3110bef2008-09-09 10:54:54 +08001787
1788 BUG_ON(window->average_tpt != ((window->success_ratio *
1789 tbl->expected_tpt[index] + 64) / 128));
Zhu Yib481de92007-09-25 17:54:57 -07001790
Ben Cahill77626352007-11-29 11:09:44 +08001791 /* If we are searching for better modulation mode, check success. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001792 if (lq_sta->search_better_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001793
Ben Cahill77626352007-11-29 11:09:44 +08001794 /* If good success, continue using the "search" mode;
1795 * no need to send new link quality command, since we're
1796 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07001797 if (window->average_tpt > lq_sta->last_tpt) {
1798
Guy Cohen3110bef2008-09-09 10:54:54 +08001799 IWL_DEBUG_RATE("LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07001800 "suc=%d cur-tpt=%d old-tpt=%d\n",
1801 window->success_ratio,
1802 window->average_tpt,
1803 lq_sta->last_tpt);
1804
1805 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001806 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07001807
Ben Cahill77626352007-11-29 11:09:44 +08001808 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001809 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001810 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08001811
1812 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07001813 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07001814
1815 IWL_DEBUG_RATE("LQ: GOING BACK TO THE OLD TABLE "
1816 "suc=%d cur-tpt=%d old-tpt=%d\n",
1817 window->success_ratio,
1818 window->average_tpt,
1819 lq_sta->last_tpt);
1820
Ben Cahill77626352007-11-29 11:09:44 +08001821 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07001822 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08001823
1824 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001825 active_tbl = lq_sta->active_tbl;
1826 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001827
Ben Cahill77626352007-11-29 11:09:44 +08001828 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326a2008-06-12 09:47:11 +08001829 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08001830 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08001831
1832 /* Need to set up a new rate table in uCode */
1833 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001834 }
Ben Cahill77626352007-11-29 11:09:44 +08001835
1836 /* Either way, we've made a decision; modulation mode
1837 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001838 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001839 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07001840 goto lq_update;
1841 }
1842
Ben Cahill77626352007-11-29 11:09:44 +08001843 /* (Else) not in search of better modulation mode, try for better
1844 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08001845 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07001846 tbl->lq_type);
1847 low = high_low & 0xff;
1848 high = (high_low >> 8) & 0xff;
1849
Guy Cohena5e8b502008-05-29 16:35:11 +08001850 sr = window->success_ratio;
1851
Ben Cahill77626352007-11-29 11:09:44 +08001852 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07001853 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001854 if (low != IWL_RATE_INVALID)
1855 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001856 if (high != IWL_RATE_INVALID)
1857 high_tpt = tbl->win[high].average_tpt;
1858
Guy Cohena5e8b502008-05-29 16:35:11 +08001859 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001860
Ben Cahill77626352007-11-29 11:09:44 +08001861 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08001862 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001863 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
1864 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08001865
1866 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07001867 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08001868 (high_tpt == IWL_INVALID_VALUE)) {
1869
1870 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
1871 scale_action = 1;
1872 else if (low != IWL_RATE_INVALID)
1873 scale_action = -1;
1874 }
Ben Cahill77626352007-11-29 11:09:44 +08001875
1876 /* Both adjacent throughputs are measured, but neither one has better
1877 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07001878 else if ((low_tpt != IWL_INVALID_VALUE) &&
1879 (high_tpt != IWL_INVALID_VALUE) &&
1880 (low_tpt < current_tpt) &&
1881 (high_tpt < current_tpt))
1882 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001883
1884 /* At least one adjacent rate's throughput is measured,
1885 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07001886 else {
Ben Cahill77626352007-11-29 11:09:44 +08001887 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07001888 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08001889 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08001890 if (high_tpt > current_tpt &&
1891 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07001892 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001893 } else {
Zhu Yib481de92007-09-25 17:54:57 -07001894 IWL_DEBUG_RATE
1895 ("decrease rate because of high tpt\n");
1896 scale_action = -1;
1897 }
Ben Cahill77626352007-11-29 11:09:44 +08001898
1899 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07001900 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08001901 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07001902 if (low_tpt > current_tpt) {
1903 IWL_DEBUG_RATE
1904 ("decrease rate because of low tpt\n");
1905 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001906 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07001907 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001908 }
Zhu Yib481de92007-09-25 17:54:57 -07001909 }
1910 }
1911
Ben Cahill77626352007-11-29 11:09:44 +08001912 /* Sanity check; asked for decrease, but success rate or throughput
1913 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08001914 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
1915 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07001916 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07001917 scale_action = 0;
1918
1919 switch (scale_action) {
1920 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08001921 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07001922 if (low != IWL_RATE_INVALID) {
1923 update_lq = 1;
1924 index = low;
1925 }
1926 break;
1927 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08001928 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07001929 if (high != IWL_RATE_INVALID) {
1930 update_lq = 1;
1931 index = high;
1932 }
1933
1934 break;
1935 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08001936 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07001937 default:
1938 break;
1939 }
1940
Guy Coheneecd6e52008-04-23 17:14:58 -07001941 IWL_DEBUG_RATE("choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07001942 "high %d type %d\n",
1943 index, scale_action, low, high, tbl->lq_type);
1944
Guy Cohena5e8b502008-05-29 16:35:11 +08001945lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08001946 /* Replace uCode's rate table for the destination station. */
Zhu Yib481de92007-09-25 17:54:57 -07001947 if (update_lq) {
Guy Cohen39e88502008-04-23 17:14:57 -07001948 rate = rate_n_flags_from_tbl(tbl, index, is_green);
Guy Cohen07bc28e2008-04-23 17:15:03 -07001949 rs_fill_link_cmd(priv, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07001950 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07001951 }
Ben Cahill77626352007-11-29 11:09:44 +08001952
1953 /* Should we stay with this modulation mode, or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001954 rs_stay_in_table(lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07001955
Ben Cahill77626352007-11-29 11:09:44 +08001956 /*
1957 * Search for new modulation mode if we're:
1958 * 1) Not changing rates right now
1959 * 2) Not just finishing up a search
1960 * 3) Allowing a new search
1961 */
Guy Cohen47cfd462008-05-27 11:29:34 +08001962 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08001963 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08001964 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001965
Ben Cahill77626352007-11-29 11:09:44 +08001966 /* Select a new "search" modulation mode to try.
1967 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07001968 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001969 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001970 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001971 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001972 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001973 rs_move_mimo_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001974
Ben Cahill77626352007-11-29 11:09:44 +08001975 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001976 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08001977 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001978 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07001979 for (i = 0; i < IWL_RATE_COUNT; i++)
1980 rs_rate_scale_clear_window(&(tbl->win[i]));
1981
Ben Cahill77626352007-11-29 11:09:44 +08001982 /* Use new "search" start rate */
Tomas Winklere7d326a2008-06-12 09:47:11 +08001983 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07001984
Guy Coheneecd6e52008-04-23 17:14:58 -07001985 IWL_DEBUG_RATE("Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001986 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07001987 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07001988 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07001989 }
Zhu Yib481de92007-09-25 17:54:57 -07001990
Ben Cahill77626352007-11-29 11:09:44 +08001991 /* If the "active" (non-search) mode was legacy,
1992 * and we've tried switching antennas,
1993 * but we haven't been able to try HT modes (not available),
1994 * stay with best antenna legacy modulation for a while
1995 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001996 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Johannes Bergae5eb022008-10-14 16:58:37 +02001997 if (is_legacy(tbl1->lq_type) && !conf->ht.enabled &&
1998 lq_sta->action_counter >= 1) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001999 lq_sta->action_counter = 0;
Guy Coheneecd6e52008-04-23 17:14:58 -07002000 IWL_DEBUG_RATE("LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002001 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002002 }
2003
Ben Cahill77626352007-11-29 11:09:44 +08002004 /* If we're in an HT mode, and all 3 mode switch actions
2005 * have been tried and compared, stay in this best modulation
2006 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002007 if (lq_sta->enable_counter &&
2008 (lq_sta->action_counter >= IWL_ACTION_LIMIT)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002009 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2010 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2011 (tid != MAX_TID_COUNT)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07002012 IWL_DEBUG_RATE("try to aggregate tid %d\n", tid);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002013 rs_tl_turn_on_agg(priv, tid, lq_sta, sta);
Zhu Yib481de92007-09-25 17:54:57 -07002014 }
Tomas Winklerc33104f2008-01-14 17:46:21 -08002015 lq_sta->action_counter = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08002016 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002017 }
Ben Cahill77626352007-11-29 11:09:44 +08002018
2019 /*
2020 * Else, don't search for a new modulation mode.
2021 * Put new timestamp in stay-in-modulation-mode flush timer if:
2022 * 1) Not changing rates right now
2023 * 2) Not just finishing up a search
2024 * 3) flush timer is empty
2025 */
Zhu Yib481de92007-09-25 17:54:57 -07002026 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002027 if ((!update_lq) && (!done_search) && (!lq_sta->flush_timer))
2028 lq_sta->flush_timer = jiffies;
Zhu Yib481de92007-09-25 17:54:57 -07002029 }
2030
2031out:
Guy Cohen39e88502008-04-23 17:14:57 -07002032 tbl->current_rate = rate_n_flags_from_tbl(tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002033 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002034 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002035
Zhu Yib481de92007-09-25 17:54:57 -07002036 return;
2037}
2038
2039
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002040static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002041 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002042 struct ieee80211_sta *sta,
2043 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002044{
Tomas Winklere227cea2008-07-18 13:53:05 +08002045 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002046 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002047 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002048 u32 rate;
Guy Cohenaade00c2008-04-23 17:14:59 -07002049 u8 use_green = rs_use_green(priv, conf);
2050 u8 active_tbl = 0;
2051 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002052
Johannes Berg4b7679a2008-09-18 18:14:18 +02002053 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002054 goto out;
2055
Johannes Bergb7e35002008-09-11 02:22:58 +02002056 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002057
Tomas Winklerc33104f2008-01-14 17:46:21 -08002058 if ((lq_sta->lq.sta_id == 0xff) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002059 (priv->iw_mode == NL80211_IFTYPE_ADHOC))
Zhu Yib481de92007-09-25 17:54:57 -07002060 goto out;
2061
Guy Cohenaade00c2008-04-23 17:14:59 -07002062 valid_tx_ant = priv->hw_params.valid_tx_ant;
2063
Tomas Winklerc33104f2008-01-14 17:46:21 -08002064 if (!lq_sta->search_better_tbl)
2065 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002066 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002067 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002068
Tomas Winklerc33104f2008-01-14 17:46:21 -08002069 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002070
2071 if ((i < 0) || (i >= IWL_RATE_COUNT))
2072 i = 0;
2073
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002074 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002075 tbl->ant_type = first_antenna(valid_tx_ant);
2076 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002077
2078 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002079 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002080
Guy Cohen39e88502008-04-23 17:14:57 -07002081 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002082 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2083 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002084
Guy Cohen39e88502008-04-23 17:14:57 -07002085 rate = rate_n_flags_from_tbl(tbl, rate_idx, use_green);
2086 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002087 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002088 rs_fill_link_cmd(NULL, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002089 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002090 out:
2091 return;
2092}
2093
Johannes Berge6a98542008-10-21 12:40:02 +02002094static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2095 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002096{
2097
2098 int i;
Johannes Berge6a98542008-10-21 12:40:02 +02002099 struct sk_buff *skb = txrc->skb;
2100 struct ieee80211_supported_band *sband = txrc->sband;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002101 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2102 struct ieee80211_conf *conf = &priv->hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002103 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge6a98542008-10-21 12:40:02 +02002104 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002105 __le16 fc;
Tomas Winklere227cea2008-07-18 13:53:05 +08002106 struct iwl_lq_sta *lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002107
Zhu Yi58826352007-09-27 11:27:39 +08002108 IWL_DEBUG_RATE_LIMIT("rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002109
Michael Wu2bc454b2007-12-25 19:33:16 -05002110 /* Send management frames and broadcast/multicast data using lowest
2111 * rate. */
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07002112 fc = hdr->frame_control;
Michael Wu2bc454b2007-12-25 19:33:16 -05002113 if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg4b7679a2008-09-18 18:14:18 +02002114 !sta || !priv_sta) {
Johannes Berge6a98542008-10-21 12:40:02 +02002115 info->control.rates[0].idx = rate_lowest_index(sband, sta);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002116 return;
Zhu Yib481de92007-09-25 17:54:57 -07002117 }
2118
Johannes Berg4b7679a2008-09-18 18:14:18 +02002119 lq_sta = (struct iwl_lq_sta *)priv_sta;
Johannes Bergb7e35002008-09-11 02:22:58 +02002120 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002121
Johannes Berg05c914f2008-09-11 00:01:58 +02002122 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -08002123 !lq_sta->ibss_sta_added) {
Tomas Winkler947b13a2008-04-16 16:34:48 -07002124 u8 sta_id = iwl_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002125
2126 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002127 IWL_DEBUG_RATE("LQ: ADD station %pM\n",
2128 hdr->addr1);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002129 sta_id = iwl_add_station_flags(priv, hdr->addr1,
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002130 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002131 }
2132 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002133 lq_sta->lq.sta_id = sta_id;
2134 lq_sta->lq.rs_table[0].rate_n_flags = 0;
2135 lq_sta->ibss_sta_added = 1;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002136 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002137 }
Zhu Yib481de92007-09-25 17:54:57 -07002138 }
2139
Mattias Nissler1abbe492007-12-20 13:50:07 +01002140 if ((i < 0) || (i > IWL_RATE_COUNT)) {
Johannes Berge6a98542008-10-21 12:40:02 +02002141 info->control.rates[0].idx = rate_lowest_index(sband, sta);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002142 return;
Mattias Nissler1abbe492007-12-20 13:50:07 +01002143 }
Zhu Yib481de92007-09-25 17:54:57 -07002144
Johannes Berg2e92e6f2008-05-15 12:55:27 +02002145 if (sband->band == IEEE80211_BAND_5GHZ)
2146 i -= IWL_FIRST_OFDM_RATE;
Johannes Berge6a98542008-10-21 12:40:02 +02002147 info->control.rates[0].idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002148}
2149
Johannes Berg4b7679a2008-09-18 18:14:18 +02002150static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2151 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002152{
Tomas Winklere227cea2008-07-18 13:53:05 +08002153 struct iwl_lq_sta *lq_sta;
Ester Kummerbf403db2008-05-05 10:22:40 +08002154 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002155 int i, j;
2156
Ester Kummerbf403db2008-05-05 10:22:40 +08002157 priv = (struct iwl_priv *)priv_rate;
Zhu Yib481de92007-09-25 17:54:57 -07002158 IWL_DEBUG_RATE("create station rate scale window\n");
2159
Tomas Winklere227cea2008-07-18 13:53:05 +08002160 lq_sta = kzalloc(sizeof(struct iwl_lq_sta), gfp);
Zhu Yib481de92007-09-25 17:54:57 -07002161
Tomas Winklerc33104f2008-01-14 17:46:21 -08002162 if (lq_sta == NULL)
Zhu Yib481de92007-09-25 17:54:57 -07002163 return NULL;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002164 lq_sta->lq.sta_id = 0xff;
Zhu Yib481de92007-09-25 17:54:57 -07002165
Zhu Yi63fddb92007-09-27 11:27:36 +08002166
Zhu Yib481de92007-09-25 17:54:57 -07002167 for (j = 0; j < LQ_SIZE; j++)
2168 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002169 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002170
Tomas Winklerc33104f2008-01-14 17:46:21 -08002171 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002172}
2173
Johannes Berg4b7679a2008-09-18 18:14:18 +02002174static void rs_rate_init(void *priv_r, struct ieee80211_supported_band *sband,
2175 struct ieee80211_sta *sta, void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002176{
2177 int i, j;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002178 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2179 struct ieee80211_conf *conf = &priv->hw->conf;
Tomas Winklere227cea2008-07-18 13:53:05 +08002180 struct iwl_lq_sta *lq_sta = priv_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002181
Tomas Winklerc33104f2008-01-14 17:46:21 -08002182 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002183 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002184 for (j = 0; j < LQ_SIZE; j++)
2185 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002186 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002187
Guy Cohen3110bef2008-09-09 10:54:54 +08002188 IWL_DEBUG_RATE("LQ: *** rate scale station global init ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07002189 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2190 * the lowest or the highest rate.. Could consider using RSSI from
2191 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2192 * after assoc.. */
2193
Tomas Winklerc33104f2008-01-14 17:46:21 -08002194 lq_sta->ibss_sta_added = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002195 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Johannes Berg4b7679a2008-09-18 18:14:18 +02002196 u8 sta_id = iwl_find_station(priv, sta->addr);
Joe Perches0795af52007-10-03 17:59:30 -07002197
Zhu Yib481de92007-09-25 17:54:57 -07002198 /* for IBSS the call are from tasklet */
Johannes Berge1749612008-10-27 15:59:26 -07002199 IWL_DEBUG_RATE("LQ: ADD station %pM\n", sta->addr);
Zhu Yib481de92007-09-25 17:54:57 -07002200
2201 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002202 IWL_DEBUG_RATE("LQ: ADD station %pM\n", sta->addr);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002203 sta_id = iwl_add_station_flags(priv, sta->addr,
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002204 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002205 }
2206 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002207 lq_sta->lq.sta_id = sta_id;
2208 lq_sta->lq.rs_table[0].rate_n_flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002209 }
2210 /* FIXME: this is w/a remove it later */
2211 priv->assoc_station_added = 1;
2212 }
2213
Ben Cahill77626352007-11-29 11:09:44 +08002214 /* Find highest tx rate supported by hardware and destination station */
Johannes Bergae17e982008-09-11 03:04:36 +02002215 lq_sta->last_txrate_idx = 3;
Johannes Berg8318d782008-01-24 19:38:38 +01002216 for (i = 0; i < sband->n_bitrates; i++)
Johannes Berg4b7679a2008-09-18 18:14:18 +02002217 if (sta->supp_rates[sband->band] & BIT(i))
Johannes Bergae17e982008-09-11 03:04:36 +02002218 lq_sta->last_txrate_idx = i;
Johannes Berg8318d782008-01-24 19:38:38 +01002219
Tomas Winkler05ecc2c2008-09-03 11:26:55 +08002220 /* For MODE_IEEE80211A, skip over cck rates in global rate table */
Johannes Berg4b7679a2008-09-18 18:14:18 +02002221 if (sband->band == IEEE80211_BAND_5GHZ)
Johannes Bergb7e35002008-09-11 02:22:58 +02002222 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002223
Tomas Winklerc33104f2008-01-14 17:46:21 -08002224 lq_sta->is_dup = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002225 lq_sta->is_green = rs_use_green(priv, conf);
Guy Cohen39e88502008-04-23 17:14:57 -07002226 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002227 lq_sta->active_rate_basic = priv->active_rate_basic;
Johannes Berg8318d782008-01-24 19:38:38 +01002228 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002229 /*
2230 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2231 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2232 */
Johannes Bergae5eb022008-10-14 16:58:37 +02002233 lq_sta->active_siso_rate = sta->ht_cap.mcs.rx_mask[0] << 1;
2234 lq_sta->active_siso_rate |= sta->ht_cap.mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002235 lq_sta->active_siso_rate &= ~((u16)0x2);
2236 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002237
Ben Cahill77626352007-11-29 11:09:44 +08002238 /* Same here */
Johannes Bergae5eb022008-10-14 16:58:37 +02002239 lq_sta->active_mimo2_rate = sta->ht_cap.mcs.rx_mask[1] << 1;
2240 lq_sta->active_mimo2_rate |= sta->ht_cap.mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002241 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2242 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2243
Johannes Bergae5eb022008-10-14 16:58:37 +02002244 lq_sta->active_mimo3_rate = sta->ht_cap.mcs.rx_mask[2] << 1;
2245 lq_sta->active_mimo3_rate |= sta->ht_cap.mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002246 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2247 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2248
Guy Cohen07bc28e2008-04-23 17:15:03 -07002249 IWL_DEBUG_RATE("SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002250 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002251 lq_sta->active_mimo2_rate,
2252 lq_sta->active_mimo3_rate);
2253
Tomas Winklera96a27f2008-10-23 23:48:56 -07002254 /* These values will be overridden later */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002255 lq_sta->lq.general_params.single_stream_ant_msk = ANT_A;
2256 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2257
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002258 /* as default allow aggregation for all tids */
2259 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002260 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002261
Johannes Berg4b7679a2008-09-18 18:14:18 +02002262 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002263}
2264
Guy Cohenfde0db32008-04-21 15:42:01 -07002265static void rs_fill_link_cmd(const struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002266 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002267{
Tomas Winklere227cea2008-07-18 13:53:05 +08002268 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002269 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002270 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002271 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002272 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002273 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002274 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002275 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002276
Ben Cahill77626352007-11-29 11:09:44 +08002277 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002278 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002279
Guy Cohen39e88502008-04-23 17:14:57 -07002280 /* Interpret new_rate (rate_n_flags) */
Guy Cohenaade00c2008-04-23 17:14:59 -07002281 memset(&tbl_type, 0, sizeof(tbl_type));
Guy Cohen39e88502008-04-23 17:14:57 -07002282 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002283 &tbl_type, &rate_idx);
2284
Ben Cahill77626352007-11-29 11:09:44 +08002285 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002286 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002287 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002288 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002289 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002290 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002291 }
Zhu Yib481de92007-09-25 17:54:57 -07002292
2293 lq_cmd->general_params.mimo_delimiter =
2294 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002295
2296 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002297 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002298
Guy Cohen07bc28e2008-04-23 17:15:03 -07002299 if (num_of_ant(tbl_type.ant_type) == 1) {
2300 lq_cmd->general_params.single_stream_ant_msk =
2301 tbl_type.ant_type;
2302 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2303 lq_cmd->general_params.dual_stream_ant_msk =
2304 tbl_type.ant_type;
2305 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002306
2307 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002308 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002309
Guy Cohenaade00c2008-04-23 17:14:59 -07002310 if (priv)
2311 valid_tx_ant = priv->hw_params.valid_tx_ant;
2312
Ben Cahill77626352007-11-29 11:09:44 +08002313 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002314 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002315 /* Repeat initial/next rate.
2316 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2317 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002318 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002319 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002320 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2321 ant_toggle_cnt++;
2322 else if (priv &&
2323 rs_toggle_antenna(valid_tx_ant,
2324 &new_rate, &tbl_type))
2325 ant_toggle_cnt = 1;
2326}
Zhu Yi98d7e092007-09-27 11:27:42 +08002327
Ben Cahill77626352007-11-29 11:09:44 +08002328 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002329 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002330
2331 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002332 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002333 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002334 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002335 index++;
2336 }
2337
Guy Cohen39e88502008-04-23 17:14:57 -07002338 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002339 &rate_idx);
2340
Ben Cahill77626352007-11-29 11:09:44 +08002341 /* Indicate to uCode which entries might be MIMO.
2342 * If initial rate was MIMO, this will finally end up
2343 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002344 if (is_mimo(tbl_type.lq_type))
2345 lq_cmd->general_params.mimo_delimiter = index;
2346
Ben Cahill77626352007-11-29 11:09:44 +08002347 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002348 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2349 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002350
Ben Cahill77626352007-11-29 11:09:44 +08002351 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002352 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002353 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2354 ant_toggle_cnt++;
2355 else if (priv &&
2356 rs_toggle_antenna(valid_tx_ant,
2357 &new_rate, &tbl_type))
2358 ant_toggle_cnt = 1;
2359
Zhu Yi1b696de2007-09-27 11:27:41 +08002360 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002361 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002362 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002363 }
Zhu Yib481de92007-09-25 17:54:57 -07002364
Ben Cahill77626352007-11-29 11:09:44 +08002365 /* Don't allow HT rates after next pass.
2366 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002367 use_ht_possible = 0;
2368
Ben Cahill77626352007-11-29 11:09:44 +08002369 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002370 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002371
2372 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002373 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002374
2375 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002376 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002377 }
2378
Tomas Winkler5e1dd8d2008-05-29 16:35:17 +08002379 lq_cmd->agg_params.agg_frame_cnt_limit = 64;
Zhu Yib481de92007-09-25 17:54:57 -07002380 lq_cmd->agg_params.agg_dis_start_th = 3;
2381 lq_cmd->agg_params.agg_time_limit = cpu_to_le16(4000);
Zhu Yib481de92007-09-25 17:54:57 -07002382}
2383
Johannes Berg4b7679a2008-09-18 18:14:18 +02002384static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002385{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002386 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002387}
2388/* rate scale requires free function to be implemented */
2389static void rs_free(void *priv_rate)
2390{
2391 return;
2392}
2393
Johannes Berg4b7679a2008-09-18 18:14:18 +02002394static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2395 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002396{
Tomas Winklere227cea2008-07-18 13:53:05 +08002397 struct iwl_lq_sta *lq_sta = priv_sta;
Rami Rosen45527c22008-10-07 09:50:01 +02002398 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002399
2400 IWL_DEBUG_RATE("enter\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -08002401 kfree(lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002402 IWL_DEBUG_RATE("leave\n");
2403}
2404
2405
Zhu Yi93dc6462007-09-27 11:27:37 +08002406#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002407static int open_file_generic(struct inode *inode, struct file *file)
2408{
2409 file->private_data = inode->i_private;
2410 return 0;
2411}
Tomas Winklere227cea2008-07-18 13:53:05 +08002412static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2413 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002414{
Ester Kummerbf403db2008-05-05 10:22:40 +08002415 struct iwl_priv *priv;
2416
2417 priv = lq_sta->drv;
Guy Cohen39e88502008-04-23 17:14:57 -07002418 if (lq_sta->dbg_fixed_rate) {
2419 if (index < 12) {
2420 *rate_n_flags = lq_sta->dbg_fixed_rate;
2421 } else {
2422 if (lq_sta->band == IEEE80211_BAND_5GHZ)
2423 *rate_n_flags = 0x800D;
2424 else
2425 *rate_n_flags = 0x820A;
2426 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002427 IWL_DEBUG_RATE("Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002428 } else {
2429 IWL_DEBUG_RATE("Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002430 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002431}
2432
2433static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2434 const char __user *user_buf, size_t count, loff_t *ppos)
2435{
Tomas Winklere227cea2008-07-18 13:53:05 +08002436 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002437 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002438 char buf[64];
2439 int buf_size;
2440 u32 parsed_rate;
2441
Ester Kummerbf403db2008-05-05 10:22:40 +08002442 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002443 memset(buf, 0, sizeof(buf));
2444 buf_size = min(count, sizeof(buf) - 1);
2445 if (copy_from_user(buf, user_buf, buf_size))
2446 return -EFAULT;
2447
2448 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002449 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002450 else
Guy Cohen39e88502008-04-23 17:14:57 -07002451 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002452
Guy Cohen39e88502008-04-23 17:14:57 -07002453 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2454 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2455 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2456 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002457
2458 IWL_DEBUG_RATE("sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002459 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002460
Guy Cohen39e88502008-04-23 17:14:57 -07002461 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002462 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002463 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC);
Zhu Yi98d7e092007-09-27 11:27:42 +08002464 }
2465
2466 return count;
2467}
Zhu Yi0209dc12007-09-27 11:27:43 +08002468
Zhu Yi5ae212c2007-09-27 11:27:38 +08002469static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2470 char __user *user_buf, size_t count, loff_t *ppos)
2471{
2472 char buff[1024];
2473 int desc = 0;
2474 int i = 0;
2475
Tomas Winklere227cea2008-07-18 13:53:05 +08002476 struct iwl_lq_sta *lq_sta = file->private_data;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002477
Tomas Winklerc33104f2008-01-14 17:46:21 -08002478 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002479 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002480 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002481 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002482 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002483 lq_sta->dbg_fixed_rate);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002484 desc += sprintf(buff+desc, "general:"
2485 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002486 lq_sta->lq.general_params.flags,
2487 lq_sta->lq.general_params.mimo_delimiter,
2488 lq_sta->lq.general_params.single_stream_ant_msk,
2489 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002490
2491 desc += sprintf(buff+desc, "agg:"
2492 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002493 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2494 lq_sta->lq.agg_params.agg_dis_start_th,
2495 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002496
2497 desc += sprintf(buff+desc,
2498 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002499 lq_sta->lq.general_params.start_rate_index[0],
2500 lq_sta->lq.general_params.start_rate_index[1],
2501 lq_sta->lq.general_params.start_rate_index[2],
2502 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002503
2504
2505 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2506 desc += sprintf(buff+desc, " rate[%d] 0x%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002507 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
Zhu Yi5ae212c2007-09-27 11:27:38 +08002508
2509 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2510}
2511
2512static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002513 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002514 .read = rs_sta_dbgfs_scale_table_read,
2515 .open = open_file_generic,
2516};
Zhu Yi0209dc12007-09-27 11:27:43 +08002517static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2518 char __user *user_buf, size_t count, loff_t *ppos)
2519{
2520 char buff[1024];
2521 int desc = 0;
2522 int i, j;
2523
Tomas Winklere227cea2008-07-18 13:53:05 +08002524 struct iwl_lq_sta *lq_sta = file->private_data;
Zhu Yi0209dc12007-09-27 11:27:43 +08002525 for (i = 0; i < LQ_SIZE; i++) {
2526 desc += sprintf(buff+desc, "%s type=%d SGI=%d FAT=%d DUP=%d\n"
2527 "rate=0x%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002528 lq_sta->active_tbl == i?"*":"x",
2529 lq_sta->lq_info[i].lq_type,
2530 lq_sta->lq_info[i].is_SGI,
2531 lq_sta->lq_info[i].is_fat,
2532 lq_sta->lq_info[i].is_dup,
Guy Cohen39e88502008-04-23 17:14:57 -07002533 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08002534 for (j = 0; j < IWL_RATE_COUNT; j++) {
2535 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002536 "counter=%d success=%d %%=%d\n",
2537 lq_sta->lq_info[i].win[j].counter,
2538 lq_sta->lq_info[i].win[j].success_counter,
2539 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08002540 }
2541 }
2542 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2543}
2544
2545static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2546 .read = rs_sta_dbgfs_stats_table_read,
2547 .open = open_file_generic,
2548};
Zhu Yi5ae212c2007-09-27 11:27:38 +08002549
Zhu Yi93dc6462007-09-27 11:27:37 +08002550static void rs_add_debugfs(void *priv, void *priv_sta,
2551 struct dentry *dir)
2552{
Tomas Winklere227cea2008-07-18 13:53:05 +08002553 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002554 lq_sta->rs_sta_dbgfs_scale_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08002555 debugfs_create_file("rate_scale_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002556 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2557 lq_sta->rs_sta_dbgfs_stats_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08002558 debugfs_create_file("rate_stats_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002559 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002560 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
2561 debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
2562 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002563
Zhu Yi93dc6462007-09-27 11:27:37 +08002564}
2565
2566static void rs_remove_debugfs(void *priv, void *priv_sta)
2567{
Tomas Winklere227cea2008-07-18 13:53:05 +08002568 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002569 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2570 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002571 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08002572}
2573#endif
2574
Zhu Yib481de92007-09-25 17:54:57 -07002575static struct rate_control_ops rs_ops = {
2576 .module = NULL,
2577 .name = RS_NAME,
2578 .tx_status = rs_tx_status,
2579 .get_rate = rs_get_rate,
2580 .rate_init = rs_rate_init,
Zhu Yib481de92007-09-25 17:54:57 -07002581 .alloc = rs_alloc,
2582 .free = rs_free,
2583 .alloc_sta = rs_alloc_sta,
2584 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08002585#ifdef CONFIG_MAC80211_DEBUGFS
2586 .add_sta_debugfs = rs_add_debugfs,
2587 .remove_sta_debugfs = rs_remove_debugfs,
2588#endif
Zhu Yib481de92007-09-25 17:54:57 -07002589};
2590
Tomas Winklere227cea2008-07-18 13:53:05 +08002591int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07002592{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07002593 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07002594}
2595
Tomas Winklere227cea2008-07-18 13:53:05 +08002596void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07002597{
2598 ieee80211_rate_control_unregister(&rs_ops);
2599}
2600