blob: 27f50471aed8fd0f4e0349975705b6b06c9e9066 [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:
Winkler, Tomas759ef892008-12-09 11:28:58 -080022 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070023 * 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
Tomas Winklere227cea2008-07-18 13:53:05 +080042#define RS_NAME "iwl-agn-rs"
Zhu Yib481de92007-09-25 17:54:57 -070043
Guy Cohenaade00c2008-04-23 17:14:59 -070044#define NUM_TRY_BEFORE_ANT_TOGGLE 1
Zhu Yib481de92007-09-25 17:54:57 -070045#define IWL_NUMBER_TRY 1
46#define IWL_HT_NUMBER_TRY 3
47
Ben Cahill77626352007-11-29 11:09:44 +080048#define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */
49#define IWL_RATE_MIN_FAILURE_TH 6 /* min failures to calc tpt */
50#define IWL_RATE_MIN_SUCCESS_TH 8 /* min successes to calc tpt */
51
52/* max time to accum history 2 seconds */
53#define IWL_RATE_SCALE_FLUSH_INTVL (2*HZ)
Zhu Yib481de92007-09-25 17:54:57 -070054
55static u8 rs_ht_to_legacy[] = {
56 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
57 IWL_RATE_6M_INDEX, IWL_RATE_6M_INDEX,
58 IWL_RATE_6M_INDEX,
59 IWL_RATE_6M_INDEX, IWL_RATE_9M_INDEX,
60 IWL_RATE_12M_INDEX, IWL_RATE_18M_INDEX,
61 IWL_RATE_24M_INDEX, IWL_RATE_36M_INDEX,
62 IWL_RATE_48M_INDEX, IWL_RATE_54M_INDEX
63};
64
Guy Cohenaade00c2008-04-23 17:14:59 -070065static const u8 ant_toggle_lookup[] = {
66 /*ANT_NONE -> */ ANT_NONE,
67 /*ANT_A -> */ ANT_B,
68 /*ANT_B -> */ ANT_C,
69 /*ANT_AB -> */ ANT_BC,
70 /*ANT_C -> */ ANT_A,
71 /*ANT_AC -> */ ANT_AB,
72 /*ANT_BC -> */ ANT_AC,
73 /*ANT_ABC -> */ ANT_ABC,
74};
75
Ben Cahill77626352007-11-29 11:09:44 +080076/**
Tomas Winklere227cea2008-07-18 13:53:05 +080077 * struct iwl_rate_scale_data -- tx success history for one rate
Ben Cahill77626352007-11-29 11:09:44 +080078 */
Tomas Winklere227cea2008-07-18 13:53:05 +080079struct iwl_rate_scale_data {
Ben Cahill77626352007-11-29 11:09:44 +080080 u64 data; /* bitmap of successful frames */
81 s32 success_counter; /* number of frames successful */
82 s32 success_ratio; /* per-cent * 128 */
83 s32 counter; /* number of frames attempted */
84 s32 average_tpt; /* success ratio * expected throughput */
Zhu Yib481de92007-09-25 17:54:57 -070085 unsigned long stamp;
86};
87
Ben Cahill77626352007-11-29 11:09:44 +080088/**
Tomas Winklere227cea2008-07-18 13:53:05 +080089 * struct iwl_scale_tbl_info -- tx params and success history for all rates
Ben Cahill77626352007-11-29 11:09:44 +080090 *
Tomas Winklere227cea2008-07-18 13:53:05 +080091 * There are two of these in struct iwl_lq_sta,
Ben Cahill77626352007-11-29 11:09:44 +080092 * one for "active", and one for "search".
93 */
Tomas Winklere227cea2008-07-18 13:53:05 +080094struct iwl_scale_tbl_info {
Guy Cohenfde0db32008-04-21 15:42:01 -070095 enum iwl_table_type lq_type;
96 u8 ant_type;
Ben Cahill77626352007-11-29 11:09:44 +080097 u8 is_SGI; /* 1 = short guard interval */
98 u8 is_fat; /* 1 = 40 MHz channel width */
99 u8 is_dup; /* 1 = duplicated data streams */
100 u8 action; /* change modulation; IWL_[LEGACY/SISO/MIMO]_SWITCH_* */
101 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Guy Cohen39e88502008-04-23 17:14:57 -0700102 u32 current_rate; /* rate_n_flags, uCode API format */
Tomas Winklere227cea2008-07-18 13:53:05 +0800103 struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
Zhu Yib481de92007-09-25 17:54:57 -0700104};
105
Tomas Winklere227cea2008-07-18 13:53:05 +0800106struct iwl_traffic_load {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200107 unsigned long time_stamp; /* age of the oldest statistics */
108 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
109 * slice */
110 u32 total; /* total num of packets during the
111 * last TID_MAX_TIME_DIFF */
112 u8 queue_count; /* number of queues that has
113 * been used since the last cleanup */
114 u8 head; /* start of the circular buffer */
115};
116
Ben Cahill77626352007-11-29 11:09:44 +0800117/**
Tomas Winklere227cea2008-07-18 13:53:05 +0800118 * struct iwl_lq_sta -- driver's rate scaling private structure
Ben Cahill77626352007-11-29 11:09:44 +0800119 *
120 * Pointer to this gets passed back and forth between driver and mac80211.
121 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800122struct iwl_lq_sta {
Ben Cahill77626352007-11-29 11:09:44 +0800123 u8 active_tbl; /* index of active table, range 0-1 */
124 u8 enable_counter; /* indicates HT mode */
125 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
126 u8 search_better_tbl; /* 1: currently trying alternate mode */
Zhu Yib481de92007-09-25 17:54:57 -0700127 s32 last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +0800128
129 /* The following determine when to search for a new mode */
Zhu Yib481de92007-09-25 17:54:57 -0700130 u32 table_count_limit;
Ben Cahill77626352007-11-29 11:09:44 +0800131 u32 max_failure_limit; /* # failed frames before new search */
132 u32 max_success_limit; /* # successful frames before new search */
Zhu Yib481de92007-09-25 17:54:57 -0700133 u32 table_count;
Ben Cahill77626352007-11-29 11:09:44 +0800134 u32 total_failed; /* total failed frames, any/all rates */
135 u32 total_success; /* total successful frames, any/all rates */
136 u32 flush_timer; /* time staying in mode before new search */
137
138 u8 action_counter; /* # mode-switch actions tried */
Zhu Yib481de92007-09-25 17:54:57 -0700139 u8 is_green;
140 u8 is_dup;
Johannes Berg8318d782008-01-24 19:38:38 +0100141 enum ieee80211_band band;
Zhu Yib481de92007-09-25 17:54:57 -0700142 u8 ibss_sta_added;
Ben Cahill77626352007-11-29 11:09:44 +0800143
144 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
Zhu Yi02dede02007-09-27 11:27:40 +0800145 u32 supp_rates;
Guy Cohen39e88502008-04-23 17:14:57 -0700146 u16 active_legacy_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700147 u16 active_siso_rate;
Guy Cohenfde0db32008-04-21 15:42:01 -0700148 u16 active_mimo2_rate;
149 u16 active_mimo3_rate;
Zhu Yib481de92007-09-25 17:54:57 -0700150 u16 active_rate_basic;
Ben Cahill77626352007-11-29 11:09:44 +0800151
Tomas Winkler66c73db2008-04-15 16:01:40 -0700152 struct iwl_link_quality_cmd lq;
Tomas Winklere227cea2008-07-18 13:53:05 +0800153 struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
154 struct iwl_traffic_load load[TID_MAX_LOAD_COUNT];
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200155 u8 tx_agg_tid_en;
Zhu Yi5ae212c2007-09-27 11:27:38 +0800156#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi98d7e092007-09-27 11:27:42 +0800157 struct dentry *rs_sta_dbgfs_scale_table_file;
Zhu Yi0209dc12007-09-27 11:27:43 +0800158 struct dentry *rs_sta_dbgfs_stats_table_file;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200159 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
Guy Cohen39e88502008-04-23 17:14:57 -0700160 u32 dbg_fixed_rate;
Zhu Yi5ae212c2007-09-27 11:27:38 +0800161#endif
Zhu Yi62430652008-05-05 10:22:46 +0800162 struct iwl_priv *drv;
Johannes Bergb7e35002008-09-11 02:22:58 +0200163
164 /* used to be in sta_info */
165 int last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -0700166};
167
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700168static void rs_rate_scale_perform(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700169 struct ieee80211_hdr *hdr,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200170 struct ieee80211_sta *sta,
171 struct iwl_lq_sta *lq_sta);
Guy Cohenfde0db32008-04-21 15:42:01 -0700172static void rs_fill_link_cmd(const struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800173 struct iwl_lq_sta *lq_sta, u32 rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700174
175
Zhu Yi98d7e092007-09-27 11:27:42 +0800176#ifdef CONFIG_MAC80211_DEBUGFS
Tomas Winklere227cea2008-07-18 13:53:05 +0800177static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
178 u32 *rate_n_flags, int index);
Zhu Yi98d7e092007-09-27 11:27:42 +0800179#else
Tomas Winklere227cea2008-07-18 13:53:05 +0800180static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
181 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +0800182{}
183#endif
Ben Cahill77626352007-11-29 11:09:44 +0800184
185/*
186 * Expected throughput metrics for following rates:
187 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits
188 * "G" is the only table that supports CCK (the first 4 rates).
189 */
Tomas Winklera96a27f2008-10-23 23:48:56 -0700190/*FIXME:RS:need to separate tables for MIMO2/MIMO3*/
Zhu Yib481de92007-09-25 17:54:57 -0700191static s32 expected_tpt_A[IWL_RATE_COUNT] = {
192 0, 0, 0, 0, 40, 57, 72, 98, 121, 154, 177, 186, 186
193};
194
195static s32 expected_tpt_G[IWL_RATE_COUNT] = {
196 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 186
197};
198
199static s32 expected_tpt_siso20MHz[IWL_RATE_COUNT] = {
200 0, 0, 0, 0, 42, 42, 76, 102, 124, 159, 183, 193, 202
201};
202
203static s32 expected_tpt_siso20MHzSGI[IWL_RATE_COUNT] = {
204 0, 0, 0, 0, 46, 46, 82, 110, 132, 168, 192, 202, 211
205};
206
207static s32 expected_tpt_mimo20MHz[IWL_RATE_COUNT] = {
208 0, 0, 0, 0, 74, 74, 123, 155, 179, 214, 236, 244, 251
209};
210
211static s32 expected_tpt_mimo20MHzSGI[IWL_RATE_COUNT] = {
212 0, 0, 0, 0, 81, 81, 131, 164, 188, 222, 243, 251, 257
213};
214
215static s32 expected_tpt_siso40MHz[IWL_RATE_COUNT] = {
216 0, 0, 0, 0, 77, 77, 127, 160, 184, 220, 242, 250, 257
217};
218
219static s32 expected_tpt_siso40MHzSGI[IWL_RATE_COUNT] = {
220 0, 0, 0, 0, 83, 83, 135, 169, 193, 229, 250, 257, 264
221};
222
223static s32 expected_tpt_mimo40MHz[IWL_RATE_COUNT] = {
224 0, 0, 0, 0, 123, 123, 182, 214, 235, 264, 279, 285, 289
225};
226
227static s32 expected_tpt_mimo40MHzSGI[IWL_RATE_COUNT] = {
228 0, 0, 0, 0, 131, 131, 191, 222, 242, 270, 284, 289, 293
229};
230
Guy Cohen39e88502008-04-23 17:14:57 -0700231static inline u8 rs_extract_rate(u32 rate_n_flags)
Zhu Yib481de92007-09-25 17:54:57 -0700232{
233 return (u8)(rate_n_flags & 0xFF);
234}
235
Tomas Winklere227cea2008-07-18 13:53:05 +0800236static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window)
Zhu Yib481de92007-09-25 17:54:57 -0700237{
238 window->data = 0;
239 window->success_counter = 0;
240 window->success_ratio = IWL_INVALID_VALUE;
241 window->counter = 0;
242 window->average_tpt = IWL_INVALID_VALUE;
243 window->stamp = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700244}
245
Guy Cohenaade00c2008-04-23 17:14:59 -0700246static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type)
247{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300248 return (ant_type & valid_antenna) == ant_type;
Guy Cohenaade00c2008-04-23 17:14:59 -0700249}
250
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200251/*
252 * removes the old data from the statistics. All data that is older than
253 * TID_MAX_TIME_DIFF, will be deleted.
254 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800255static void rs_tl_rm_old_stats(struct iwl_traffic_load *tl, u32 curr_time)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200256{
257 /* The oldest age we want to keep */
258 u32 oldest_time = curr_time - TID_MAX_TIME_DIFF;
259
260 while (tl->queue_count &&
261 (tl->time_stamp < oldest_time)) {
262 tl->total -= tl->packet_count[tl->head];
263 tl->packet_count[tl->head] = 0;
264 tl->time_stamp += TID_QUEUE_CELL_SPACING;
265 tl->queue_count--;
266 tl->head++;
267 if (tl->head >= TID_QUEUE_MAX_SIZE)
268 tl->head = 0;
269 }
270}
271
272/*
273 * increment traffic load value for tid and also remove
274 * any old values if passed the certain time period
275 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800276static u8 rs_tl_add_packet(struct iwl_lq_sta *lq_data,
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800277 struct ieee80211_hdr *hdr)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200278{
279 u32 curr_time = jiffies_to_msecs(jiffies);
280 u32 time_diff;
281 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800282 struct iwl_traffic_load *tl = NULL;
Tomas Winkler54dbb522008-05-15 13:54:06 +0800283 u8 tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200284
Tomas Winkler417f1142008-11-12 13:14:06 -0800285 if (ieee80211_is_data_qos(hdr->frame_control)) {
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -0700286 u8 *qc = ieee80211_get_qos_ctl(hdr);
Tomas Winkler54dbb522008-05-15 13:54:06 +0800287 tid = qc[0] & 0xf;
288 } else
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800289 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200290
291 tl = &lq_data->load[tid];
292
293 curr_time -= curr_time % TID_ROUND_VALUE;
294
295 /* Happens only for the first packet. Initialize the data */
296 if (!(tl->queue_count)) {
297 tl->total = 1;
298 tl->time_stamp = curr_time;
299 tl->queue_count = 1;
300 tl->head = 0;
301 tl->packet_count[0] = 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800302 return MAX_TID_COUNT;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200303 }
304
305 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
306 index = time_diff / TID_QUEUE_CELL_SPACING;
307
308 /* The history is too long: remove data that is older than */
309 /* TID_MAX_TIME_DIFF */
310 if (index >= TID_QUEUE_MAX_SIZE)
311 rs_tl_rm_old_stats(tl, curr_time);
312
313 index = (tl->head + index) % TID_QUEUE_MAX_SIZE;
314 tl->packet_count[index] = tl->packet_count[index] + 1;
315 tl->total = tl->total + 1;
316
317 if ((index + 1) > tl->queue_count)
318 tl->queue_count = index + 1;
Ron Rindjunskyfaa29712008-06-12 09:46:58 +0800319
320 return tid;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200321}
322
323/*
324 get the traffic load value for tid
325*/
Tomas Winklere227cea2008-07-18 13:53:05 +0800326static u32 rs_tl_get_load(struct iwl_lq_sta *lq_data, u8 tid)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200327{
328 u32 curr_time = jiffies_to_msecs(jiffies);
329 u32 time_diff;
330 s32 index;
Tomas Winklere227cea2008-07-18 13:53:05 +0800331 struct iwl_traffic_load *tl = NULL;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200332
333 if (tid >= TID_MAX_LOAD_COUNT)
334 return 0;
335
336 tl = &(lq_data->load[tid]);
337
338 curr_time -= curr_time % TID_ROUND_VALUE;
339
340 if (!(tl->queue_count))
341 return 0;
342
343 time_diff = TIME_WRAP_AROUND(tl->time_stamp, curr_time);
344 index = time_diff / TID_QUEUE_CELL_SPACING;
345
346 /* The history is too long: remove data that is older than */
347 /* TID_MAX_TIME_DIFF */
348 if (index >= TID_QUEUE_MAX_SIZE)
349 rs_tl_rm_old_stats(tl, curr_time);
350
351 return tl->total;
352}
353
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700354static void rs_tl_turn_on_agg_for_tid(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +0800355 struct iwl_lq_sta *lq_data, u8 tid,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200356 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200357{
Johannes Bergff550cb2008-09-11 03:17:05 +0200358 if (rs_tl_get_load(lq_data, tid) > IWL_AGG_LOAD_THRESHOLD) {
Johannes Berge1749612008-10-27 15:59:26 -0700359 IWL_DEBUG_HT("Starting Tx agg: STA: %pM tid: %d\n",
360 sta->addr, tid);
Johannes Berg4b7679a2008-09-18 18:14:18 +0200361 ieee80211_start_tx_ba_session(priv->hw, sta->addr, tid);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200362 }
363}
364
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700365static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid,
Tomas Winklere227cea2008-07-18 13:53:05 +0800366 struct iwl_lq_sta *lq_data,
Johannes Berg4b7679a2008-09-18 18:14:18 +0200367 struct ieee80211_sta *sta)
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +0200368{
369 if ((tid < TID_MAX_LOAD_COUNT))
370 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
371 else if (tid == IWL_AGG_ALL_TID)
372 for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++)
373 rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta);
374}
375
Guy Cohen39e88502008-04-23 17:14:57 -0700376static inline int get_num_of_ant_from_rate(u32 rate_n_flags)
Guy Cohenfde0db32008-04-21 15:42:01 -0700377{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300378 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) +
379 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) +
380 !!(rate_n_flags & RATE_MCS_ANT_C_MSK);
Guy Cohenfde0db32008-04-21 15:42:01 -0700381}
382
Ben Cahill77626352007-11-29 11:09:44 +0800383/**
384 * rs_collect_tx_data - Update the success/failure sliding window
385 *
386 * We keep a sliding window of the last 62 packets transmitted
387 * at this rate. window->data contains the bitmask of successful
388 * packets.
389 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800390static int rs_collect_tx_data(struct iwl_rate_scale_data *windows,
Ron Rindjunsky99556432008-01-28 14:07:25 +0200391 int scale_index, s32 tpt, int retries,
392 int successes)
Zhu Yib481de92007-09-25 17:54:57 -0700393{
Tomas Winklere227cea2008-07-18 13:53:05 +0800394 struct iwl_rate_scale_data *window = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700395 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1));
Zhu Yib481de92007-09-25 17:54:57 -0700396 s32 fail_count;
397
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800398 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT)
399 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700400
Ben Cahill77626352007-11-29 11:09:44 +0800401 /* Select data for current tx bit rate */
Zhu Yib481de92007-09-25 17:54:57 -0700402 window = &(windows[scale_index]);
403
Ben Cahill77626352007-11-29 11:09:44 +0800404 /*
405 * Keep track of only the latest 62 tx frame attempts in this rate's
406 * history window; anything older isn't really relevant any more.
407 * If we have filled up the sliding window, drop the oldest attempt;
408 * if the oldest attempt (highest bit in bitmap) shows "success",
409 * subtract "1" from the success counter (this is the main reason
410 * we keep these bitmaps!).
411 */
Ron Rindjunsky99556432008-01-28 14:07:25 +0200412 while (retries > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700413 if (window->counter >= IWL_RATE_MAX_WINDOW) {
414
415 /* remove earliest */
416 window->counter = IWL_RATE_MAX_WINDOW - 1;
417
Ron Rindjunsky99556432008-01-28 14:07:25 +0200418 if (window->data & mask) {
419 window->data &= ~mask;
Guy Cohen39e88502008-04-23 17:14:57 -0700420 window->success_counter--;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200421 }
Zhu Yib481de92007-09-25 17:54:57 -0700422 }
Zhu Yib481de92007-09-25 17:54:57 -0700423
Ron Rindjunsky99556432008-01-28 14:07:25 +0200424 /* Increment frames-attempted counter */
425 window->counter++;
Ben Cahill77626352007-11-29 11:09:44 +0800426
Ron Rindjunsky99556432008-01-28 14:07:25 +0200427 /* Shift bitmap by one frame (throw away oldest history),
428 * OR in "1", and increment "success" if this
429 * frame was successful. */
Guy Cohen90d77952008-09-09 10:54:53 +0800430 window->data <<= 1;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200431 if (successes > 0) {
Guy Cohen39e88502008-04-23 17:14:57 -0700432 window->success_counter++;
Ron Rindjunsky99556432008-01-28 14:07:25 +0200433 window->data |= 0x1;
434 successes--;
435 }
436
437 retries--;
Zhu Yib481de92007-09-25 17:54:57 -0700438 }
439
Ben Cahill77626352007-11-29 11:09:44 +0800440 /* Calculate current success ratio, avoid divide-by-0! */
Zhu Yib481de92007-09-25 17:54:57 -0700441 if (window->counter > 0)
442 window->success_ratio = 128 * (100 * window->success_counter)
443 / window->counter;
444 else
445 window->success_ratio = IWL_INVALID_VALUE;
446
447 fail_count = window->counter - window->success_counter;
448
Ben Cahill77626352007-11-29 11:09:44 +0800449 /* Calculate average throughput, if we have enough history. */
Zhu Yib481de92007-09-25 17:54:57 -0700450 if ((fail_count >= IWL_RATE_MIN_FAILURE_TH) ||
451 (window->success_counter >= IWL_RATE_MIN_SUCCESS_TH))
452 window->average_tpt = (window->success_ratio * tpt + 64) / 128;
453 else
454 window->average_tpt = IWL_INVALID_VALUE;
455
Ben Cahill77626352007-11-29 11:09:44 +0800456 /* Tag this window as having been updated */
Zhu Yib481de92007-09-25 17:54:57 -0700457 window->stamp = jiffies;
458
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800459 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700460}
461
Ben Cahill77626352007-11-29 11:09:44 +0800462/*
463 * Fill uCode API rate_n_flags field, based on "search" or "active" table.
464 */
Guy Cohen39e88502008-04-23 17:14:57 -0700465/* FIXME:RS:remove this function and put the flags statically in the table */
Tomas Winklere227cea2008-07-18 13:53:05 +0800466static u32 rate_n_flags_from_tbl(struct iwl_scale_tbl_info *tbl,
Guy Cohen39e88502008-04-23 17:14:57 -0700467 int index, u8 use_green)
Zhu Yib481de92007-09-25 17:54:57 -0700468{
Guy Cohen39e88502008-04-23 17:14:57 -0700469 u32 rate_n_flags = 0;
470
Zhu Yib481de92007-09-25 17:54:57 -0700471 if (is_legacy(tbl->lq_type)) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800472 rate_n_flags = iwl_rates[index].plcp;
Zhu Yib481de92007-09-25 17:54:57 -0700473 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -0700474 rate_n_flags |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700475
Guy Cohenfde0db32008-04-21 15:42:01 -0700476 } else if (is_Ht(tbl->lq_type)) {
477 if (index > IWL_LAST_OFDM_RATE) {
478 IWL_ERROR("invalid HT rate index %d\n", index);
Zhu Yib481de92007-09-25 17:54:57 -0700479 index = IWL_LAST_OFDM_RATE;
Guy Cohenfde0db32008-04-21 15:42:01 -0700480 }
Guy Cohen39e88502008-04-23 17:14:57 -0700481 rate_n_flags = RATE_MCS_HT_MSK;
Guy Cohenfde0db32008-04-21 15:42:01 -0700482
483 if (is_siso(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800484 rate_n_flags |= iwl_rates[index].plcp_siso;
Guy Cohenfde0db32008-04-21 15:42:01 -0700485 else if (is_mimo2(tbl->lq_type))
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800486 rate_n_flags |= iwl_rates[index].plcp_mimo2;
Guy Cohenfde0db32008-04-21 15:42:01 -0700487 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800488 rate_n_flags |= iwl_rates[index].plcp_mimo3;
Zhu Yib481de92007-09-25 17:54:57 -0700489 } else {
Guy Cohenfde0db32008-04-21 15:42:01 -0700490 IWL_ERROR("Invalid tbl->lq_type %d\n", tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700491 }
492
Guy Cohen39e88502008-04-23 17:14:57 -0700493 rate_n_flags |= ((tbl->ant_type << RATE_MCS_ANT_POS) &
Guy Cohenfde0db32008-04-21 15:42:01 -0700494 RATE_MCS_ANT_ABC_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700495
Guy Cohen39e88502008-04-23 17:14:57 -0700496 if (is_Ht(tbl->lq_type)) {
497 if (tbl->is_fat) {
498 if (tbl->is_dup)
499 rate_n_flags |= RATE_MCS_DUP_MSK;
500 else
501 rate_n_flags |= RATE_MCS_FAT_MSK;
502 }
503 if (tbl->is_SGI)
504 rate_n_flags |= RATE_MCS_SGI_MSK;
Zhu Yib481de92007-09-25 17:54:57 -0700505
Guy Cohen39e88502008-04-23 17:14:57 -0700506 if (use_green) {
507 rate_n_flags |= RATE_MCS_GF_MSK;
508 if (is_siso(tbl->lq_type) && tbl->is_SGI) {
509 rate_n_flags &= ~RATE_MCS_SGI_MSK;
510 IWL_ERROR("GF was set with SGI:SISO\n");
511 }
512 }
Zhu Yib481de92007-09-25 17:54:57 -0700513 }
Guy Cohen39e88502008-04-23 17:14:57 -0700514 return rate_n_flags;
Zhu Yib481de92007-09-25 17:54:57 -0700515}
516
Ben Cahill77626352007-11-29 11:09:44 +0800517/*
518 * Interpret uCode API's rate_n_flags format,
519 * fill "search" or "active" tx mode table.
520 */
Guy Cohen39e88502008-04-23 17:14:57 -0700521static int rs_get_tbl_info_from_mcs(const u32 rate_n_flags,
Johannes Berg8318d782008-01-24 19:38:38 +0100522 enum ieee80211_band band,
Tomas Winklere227cea2008-07-18 13:53:05 +0800523 struct iwl_scale_tbl_info *tbl,
Zhu Yib481de92007-09-25 17:54:57 -0700524 int *rate_idx)
525{
Guy Cohen39e88502008-04-23 17:14:57 -0700526 u32 ant_msk = (rate_n_flags & RATE_MCS_ANT_ABC_MSK);
527 u8 num_of_ant = get_num_of_ant_from_rate(rate_n_flags);
528 u8 mcs;
Zhu Yib481de92007-09-25 17:54:57 -0700529
Tomas Winklere7d326ac2008-06-12 09:47:11 +0800530 *rate_idx = iwl_hwrate_to_plcp_idx(rate_n_flags);
Zhu Yib481de92007-09-25 17:54:57 -0700531
Guy Cohenfde0db32008-04-21 15:42:01 -0700532 if (*rate_idx == IWL_RATE_INVALID) {
Zhu Yib481de92007-09-25 17:54:57 -0700533 *rate_idx = -1;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800534 return -EINVAL;
Zhu Yib481de92007-09-25 17:54:57 -0700535 }
Ben Cahill77626352007-11-29 11:09:44 +0800536 tbl->is_SGI = 0; /* default legacy setup */
Zhu Yib481de92007-09-25 17:54:57 -0700537 tbl->is_fat = 0;
538 tbl->is_dup = 0;
Guy Cohenfde0db32008-04-21 15:42:01 -0700539 tbl->ant_type = (ant_msk >> RATE_MCS_ANT_POS);
540 tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -0700541
Ben Cahill77626352007-11-29 11:09:44 +0800542 /* legacy rate format */
Guy Cohen39e88502008-04-23 17:14:57 -0700543 if (!(rate_n_flags & RATE_MCS_HT_MSK)) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700544 if (num_of_ant == 1) {
Johannes Berg8318d782008-01-24 19:38:38 +0100545 if (band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700546 tbl->lq_type = LQ_A;
547 else
548 tbl->lq_type = LQ_G;
Zhu Yib481de92007-09-25 17:54:57 -0700549 }
Guy Cohenfde0db32008-04-21 15:42:01 -0700550 /* HT rate format */
Zhu Yib481de92007-09-25 17:54:57 -0700551 } else {
Guy Cohen39e88502008-04-23 17:14:57 -0700552 if (rate_n_flags & RATE_MCS_SGI_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700553 tbl->is_SGI = 1;
554
Guy Cohen39e88502008-04-23 17:14:57 -0700555 if ((rate_n_flags & RATE_MCS_FAT_MSK) ||
556 (rate_n_flags & RATE_MCS_DUP_MSK))
Zhu Yib481de92007-09-25 17:54:57 -0700557 tbl->is_fat = 1;
558
Guy Cohen39e88502008-04-23 17:14:57 -0700559 if (rate_n_flags & RATE_MCS_DUP_MSK)
Zhu Yib481de92007-09-25 17:54:57 -0700560 tbl->is_dup = 1;
Guy Cohenfde0db32008-04-21 15:42:01 -0700561
Guy Cohen39e88502008-04-23 17:14:57 -0700562 mcs = rs_extract_rate(rate_n_flags);
Guy Cohenfde0db32008-04-21 15:42:01 -0700563
Guy Cohen39e88502008-04-23 17:14:57 -0700564 /* SISO */
565 if (mcs <= IWL_RATE_SISO_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700566 if (num_of_ant == 1)
567 tbl->lq_type = LQ_SISO; /*else NONE*/
568 /* MIMO2 */
Guy Cohen39e88502008-04-23 17:14:57 -0700569 } else if (mcs <= IWL_RATE_MIMO2_60M_PLCP) {
Guy Cohenfde0db32008-04-21 15:42:01 -0700570 if (num_of_ant == 2)
571 tbl->lq_type = LQ_MIMO2;
572 /* MIMO3 */
573 } else {
574 if (num_of_ant == 3)
575 tbl->lq_type = LQ_MIMO3;
576 }
Zhu Yib481de92007-09-25 17:54:57 -0700577 }
578 return 0;
579}
Guy Cohenaade00c2008-04-23 17:14:59 -0700580
581/* switch to another antenna/antennas and return 1 */
582/* if no other valid antenna found, return 0 */
583static int rs_toggle_antenna(u32 valid_ant, u32 *rate_n_flags,
Tomas Winklere227cea2008-07-18 13:53:05 +0800584 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700585{
Guy Cohenaade00c2008-04-23 17:14:59 -0700586 u8 new_ant_type;
587
588 if (!tbl->ant_type || tbl->ant_type > ANT_ABC)
589 return 0;
590
591 if (!rs_is_valid_ant(valid_ant, tbl->ant_type))
592 return 0;
593
594 new_ant_type = ant_toggle_lookup[tbl->ant_type];
595
596 while ((new_ant_type != tbl->ant_type) &&
597 !rs_is_valid_ant(valid_ant, new_ant_type))
598 new_ant_type = ant_toggle_lookup[new_ant_type];
599
600 if (new_ant_type == tbl->ant_type)
601 return 0;
602
603 tbl->ant_type = new_ant_type;
604 *rate_n_flags &= ~RATE_MCS_ANT_ABC_MSK;
605 *rate_n_flags |= new_ant_type << RATE_MCS_ANT_POS;
606 return 1;
Zhu Yib481de92007-09-25 17:54:57 -0700607}
608
Guy Cohen39e88502008-04-23 17:14:57 -0700609/* FIXME:RS: in 4965 we don't use greenfield at all */
Guy Cohenf935a6d2008-04-23 17:15:02 -0700610/* FIXME:RS: don't use greenfield for now in TX */
Guy Cohenf935a6d2008-04-23 17:15:02 -0700611#if 0
612static inline u8 rs_use_green(struct iwl_priv *priv, struct ieee80211_conf *conf)
Zhu Yib481de92007-09-25 17:54:57 -0700613{
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300614 return (conf->flags & IEEE80211_CONF_SUPPORT_HT_MODE) &&
Ron Rindjunsky270243a2007-11-26 16:14:41 +0200615 priv->current_ht_config.is_green_field &&
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300616 !priv->current_ht_config.non_GF_STA_present;
Zhu Yib481de92007-09-25 17:54:57 -0700617}
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +0300618#endif
Guy Cohenf935a6d2008-04-23 17:15:02 -0700619static inline u8 rs_use_green(struct iwl_priv *priv, struct ieee80211_conf *conf)
620{
621 return 0;
622}
Zhu Yib481de92007-09-25 17:54:57 -0700623
624/**
625 * rs_get_supported_rates - get the available rates
626 *
627 * if management frame or broadcast frame only return
628 * basic available rates.
629 *
630 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800631static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta,
632 struct ieee80211_hdr *hdr,
633 enum iwl_table_type rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700634{
Zhu Yib481de92007-09-25 17:54:57 -0700635 if (hdr && is_multicast_ether_addr(hdr->addr1) &&
Guy Coheneecd6e52008-04-23 17:14:58 -0700636 lq_sta->active_rate_basic)
637 return lq_sta->active_rate_basic;
638
639 if (is_legacy(rate_type)) {
640 return lq_sta->active_legacy_rate;
641 } else {
642 if (is_siso(rate_type))
643 return lq_sta->active_siso_rate;
644 else if (is_mimo2(rate_type))
645 return lq_sta->active_mimo2_rate;
646 else
647 return lq_sta->active_mimo3_rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800648 }
Zhu Yib481de92007-09-25 17:54:57 -0700649}
650
Ester Kummerbf403db2008-05-05 10:22:40 +0800651static u16 rs_get_adjacent_rate(struct iwl_priv *priv, u8 index, u16 rate_mask,
652 int rate_type)
Zhu Yib481de92007-09-25 17:54:57 -0700653{
654 u8 high = IWL_RATE_INVALID;
655 u8 low = IWL_RATE_INVALID;
656
Ian Schram01ebd062007-10-25 17:15:22 +0800657 /* 802.11A or ht walks to the next literal adjacent rate in
Zhu Yib481de92007-09-25 17:54:57 -0700658 * the rate table */
659 if (is_a_band(rate_type) || !is_legacy(rate_type)) {
660 int i;
661 u32 mask;
662
663 /* Find the previous rate that is in the rate mask */
664 i = index - 1;
665 for (mask = (1 << i); i >= 0; i--, mask >>= 1) {
666 if (rate_mask & mask) {
667 low = i;
668 break;
669 }
670 }
671
672 /* Find the next rate that is in the rate mask */
673 i = index + 1;
674 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) {
675 if (rate_mask & mask) {
676 high = i;
677 break;
678 }
679 }
680
681 return (high << 8) | low;
682 }
683
684 low = index;
685 while (low != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800686 low = iwl_rates[low].prev_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700687 if (low == IWL_RATE_INVALID)
688 break;
689 if (rate_mask & (1 << low))
690 break;
691 IWL_DEBUG_RATE("Skipping masked lower rate: %d\n", low);
692 }
693
694 high = index;
695 while (high != IWL_RATE_INVALID) {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800696 high = iwl_rates[high].next_rs;
Zhu Yib481de92007-09-25 17:54:57 -0700697 if (high == IWL_RATE_INVALID)
698 break;
699 if (rate_mask & (1 << high))
700 break;
701 IWL_DEBUG_RATE("Skipping masked higher rate: %d\n", high);
702 }
703
704 return (high << 8) | low;
705}
706
Tomas Winklere227cea2008-07-18 13:53:05 +0800707static u32 rs_get_lower_rate(struct iwl_lq_sta *lq_sta,
708 struct iwl_scale_tbl_info *tbl,
709 u8 scale_index, u8 ht_possible)
Zhu Yib481de92007-09-25 17:54:57 -0700710{
Zhu Yib481de92007-09-25 17:54:57 -0700711 s32 low;
712 u16 rate_mask;
713 u16 high_low;
714 u8 switch_to_legacy = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -0800715 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -0700716
717 /* check if we need to switch from HT to legacy rates.
718 * assumption is that mandatory rates (1Mbps or 6Mbps)
719 * are always supported (spec demand) */
720 if (!is_legacy(tbl->lq_type) && (!ht_possible || !scale_index)) {
721 switch_to_legacy = 1;
722 scale_index = rs_ht_to_legacy[scale_index];
Johannes Berg8318d782008-01-24 19:38:38 +0100723 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700724 tbl->lq_type = LQ_A;
725 else
726 tbl->lq_type = LQ_G;
727
Guy Cohen69fdb302008-04-23 17:15:01 -0700728 if (num_of_ant(tbl->ant_type) > 1)
Guy Cohenfde0db32008-04-21 15:42:01 -0700729 tbl->ant_type = ANT_A;/*FIXME:RS*/
Zhu Yib481de92007-09-25 17:54:57 -0700730
731 tbl->is_fat = 0;
732 tbl->is_SGI = 0;
733 }
734
Guy Coheneecd6e52008-04-23 17:14:58 -0700735 rate_mask = rs_get_supported_rates(lq_sta, NULL, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700736
Ben Cahill77626352007-11-29 11:09:44 +0800737 /* Mask with station rate restriction */
Zhu Yib481de92007-09-25 17:54:57 -0700738 if (is_legacy(tbl->lq_type)) {
Ben Cahill77626352007-11-29 11:09:44 +0800739 /* supp_rates has no CCK bits in A mode */
Johannes Berg8318d782008-01-24 19:38:38 +0100740 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Zhu Yib481de92007-09-25 17:54:57 -0700741 rate_mask = (u16)(rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -0800742 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -0700743 else
Tomas Winklerc33104f2008-01-14 17:46:21 -0800744 rate_mask = (u16)(rate_mask & lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -0700745 }
746
Ben Cahill77626352007-11-29 11:09:44 +0800747 /* If we switched from HT to legacy, check current rate */
Tomas Winklerdc2453ae2007-10-25 17:15:25 +0800748 if (switch_to_legacy && (rate_mask & (1 << scale_index))) {
Guy Cohen39e88502008-04-23 17:14:57 -0700749 low = scale_index;
750 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700751 }
752
Ester Kummerbf403db2008-05-05 10:22:40 +0800753 high_low = rs_get_adjacent_rate(lq_sta->drv, scale_index, rate_mask,
754 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -0700755 low = high_low & 0xff;
756
Guy Cohen39e88502008-04-23 17:14:57 -0700757 if (low == IWL_RATE_INVALID)
758 low = scale_index;
759
760out:
761 return rate_n_flags_from_tbl(tbl, low, is_green);
Zhu Yib481de92007-09-25 17:54:57 -0700762}
763
Ben Cahill77626352007-11-29 11:09:44 +0800764/*
765 * mac80211 sends us Tx status
766 */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200767static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband,
768 struct ieee80211_sta *sta, void *priv_sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200769 struct sk_buff *skb)
Zhu Yib481de92007-09-25 17:54:57 -0700770{
771 int status;
772 u8 retries;
773 int rs_index, index = 0;
Tomas Winkler417f1142008-11-12 13:14:06 -0800774 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winkler66c73db2008-04-15 16:01:40 -0700775 struct iwl_link_quality_cmd *table;
Zhu Yib481de92007-09-25 17:54:57 -0700776 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200777 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
778 struct ieee80211_hw *hw = priv->hw;
Johannes Berge039fa42008-05-15 12:55:29 +0200779 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winklere227cea2008-07-18 13:53:05 +0800780 struct iwl_rate_scale_data *window = NULL;
781 struct iwl_rate_scale_data *search_win = NULL;
Guy Cohen39e88502008-04-23 17:14:57 -0700782 u32 tx_rate;
Tomas Winklere227cea2008-07-18 13:53:05 +0800783 struct iwl_scale_tbl_info tbl_type;
784 struct iwl_scale_tbl_info *curr_tbl, *search_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700785 u8 active_index = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700786 s32 tpt = 0;
787
Zhu Yi58826352007-09-27 11:27:39 +0800788 IWL_DEBUG_RATE_LIMIT("get frame ack response, update rate scale window\n");
Zhu Yib481de92007-09-25 17:54:57 -0700789
Tomas Winkler417f1142008-11-12 13:14:06 -0800790 if (!ieee80211_is_data(hdr->frame_control) ||
791 is_multicast_ether_addr(hdr->addr1))
Zhu Yib481de92007-09-25 17:54:57 -0700792 return;
793
Ron Rindjunsky99556432008-01-28 14:07:25 +0200794 /* This packet was aggregated but doesn't carry rate scale info */
Johannes Berge039fa42008-05-15 12:55:29 +0200795 if ((info->flags & IEEE80211_TX_CTL_AMPDU) &&
796 !(info->flags & IEEE80211_TX_STAT_AMPDU))
Ron Rindjunsky99556432008-01-28 14:07:25 +0200797 return;
798
Johannes Berge6a98542008-10-21 12:40:02 +0200799 retries = info->status.rates[0].count - 1;
Zhu Yib481de92007-09-25 17:54:57 -0700800
801 if (retries > 15)
802 retries = 15;
803
Johannes Berg05c914f2008-09-11 00:01:58 +0200804 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -0800805 !lq_sta->ibss_sta_added)
Tomas Winklerf4d60822008-03-05 11:31:00 -0800806 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700807
Tomas Winklerc33104f2008-01-14 17:46:21 -0800808 table = &lq_sta->lq;
809 active_index = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -0700810
Tomas Winklerc33104f2008-01-14 17:46:21 -0800811 curr_tbl = &(lq_sta->lq_info[active_index]);
812 search_tbl = &(lq_sta->lq_info[(1 - active_index)]);
Tomas Winklere227cea2008-07-18 13:53:05 +0800813 window = (struct iwl_rate_scale_data *)&(curr_tbl->win[0]);
814 search_win = (struct iwl_rate_scale_data *)&(search_tbl->win[0]);
Zhu Yib481de92007-09-25 17:54:57 -0700815
Ben Cahill77626352007-11-29 11:09:44 +0800816 /*
817 * Ignore this Tx frame response if its initial rate doesn't match
818 * that of latest Link Quality command. There may be stragglers
819 * from a previous Link Quality command, but we're no longer interested
820 * in those; they're either from the "active" mode while we're trying
821 * to check "search" mode, or a prior "search" mode after we've moved
822 * to a new "search" mode (which might become the new "active" mode).
823 */
Guy Cohen39e88502008-04-23 17:14:57 -0700824 tx_rate = le32_to_cpu(table->rs_table[0].rate_n_flags);
825 rs_get_tbl_info_from_mcs(tx_rate, priv->band, &tbl_type, &rs_index);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800826 if (priv->band == IEEE80211_BAND_5GHZ)
827 rs_index -= IWL_FIRST_OFDM_RATE;
828
Johannes Berge6a98542008-10-21 12:40:02 +0200829 if ((info->status.rates[0].idx < 0) ||
830 (tbl_type.is_SGI != !!(info->status.rates[0].flags & IEEE80211_TX_RC_SHORT_GI)) ||
831 (tbl_type.is_fat != !!(info->status.rates[0].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)) ||
832 (tbl_type.is_dup != !!(info->status.rates[0].flags & IEEE80211_TX_RC_DUP_DATA)) ||
833 (tbl_type.ant_type != info->antenna_sel_tx) ||
834 (!!(tx_rate & RATE_MCS_HT_MSK) != !!(info->status.rates[0].flags & IEEE80211_TX_RC_MCS)) ||
835 (!!(tx_rate & RATE_MCS_GF_MSK) != !!(info->status.rates[0].flags & IEEE80211_TX_RC_GREEN_FIELD)) ||
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800836 (hw->wiphy->bands[priv->band]->bitrates[rs_index].bitrate !=
Johannes Berge6a98542008-10-21 12:40:02 +0200837 hw->wiphy->bands[info->band]->bitrates[info->status.rates[0].idx].bitrate)) {
Guy Cohen39e88502008-04-23 17:14:57 -0700838 IWL_DEBUG_RATE("initial rate does not match 0x%x\n", tx_rate);
Mohamed Abbasd5e49032008-12-12 08:22:15 -0800839 /* the last LQ command could failed so the LQ in ucode not
840 * the same in driver sync up
841 */
842 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
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. */
Abbas, Mohamedc338ba32009-01-21 10:58:02 -0800947 if (sta && sta->supp_rates[sband->band])
948 rs_rate_scale_perform(priv, hdr, sta, lq_sta);
Tomas Winklerf4d60822008-03-05 11:31:00 -0800949out:
Zhu Yib481de92007-09-25 17:54:57 -0700950 return;
951}
952
Ben Cahill77626352007-11-29 11:09:44 +0800953/*
954 * Begin a period of staying with a selected modulation mode.
955 * Set "stay_in_tbl" flag to prevent any mode switches.
956 * Set frame tx success limits according to legacy vs. high-throughput,
957 * and reset overall (spanning all rates) tx success history statistics.
958 * These control how long we stay using same modulation mode before
959 * searching for a new mode.
960 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800961static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800962 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700963{
Guy Coheneecd6e52008-04-23 17:14:58 -0700964 IWL_DEBUG_RATE("we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800965 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700966 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800967 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
968 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
969 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700970 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800971 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
972 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
973 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700974 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800975 lq_sta->table_count = 0;
976 lq_sta->total_failed = 0;
977 lq_sta->total_success = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700978}
979
Ben Cahill77626352007-11-29 11:09:44 +0800980/*
981 * Find correct throughput table for given mode of modulation
982 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800983static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
984 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700985{
986 if (is_legacy(tbl->lq_type)) {
987 if (!is_a_band(tbl->lq_type))
988 tbl->expected_tpt = expected_tpt_G;
989 else
990 tbl->expected_tpt = expected_tpt_A;
991 } else if (is_siso(tbl->lq_type)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800992 if (tbl->is_fat && !lq_sta->is_dup)
Zhu Yib481de92007-09-25 17:54:57 -0700993 if (tbl->is_SGI)
994 tbl->expected_tpt = expected_tpt_siso40MHzSGI;
995 else
996 tbl->expected_tpt = expected_tpt_siso40MHz;
997 else if (tbl->is_SGI)
998 tbl->expected_tpt = expected_tpt_siso20MHzSGI;
999 else
1000 tbl->expected_tpt = expected_tpt_siso20MHz;
1001
Guy Cohenfde0db32008-04-21 15:42:01 -07001002 } else if (is_mimo(tbl->lq_type)) { /* FIXME:need to separate mimo2/3 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001003 if (tbl->is_fat && !lq_sta->is_dup)
Zhu Yib481de92007-09-25 17:54:57 -07001004 if (tbl->is_SGI)
1005 tbl->expected_tpt = expected_tpt_mimo40MHzSGI;
1006 else
1007 tbl->expected_tpt = expected_tpt_mimo40MHz;
1008 else if (tbl->is_SGI)
1009 tbl->expected_tpt = expected_tpt_mimo20MHzSGI;
1010 else
1011 tbl->expected_tpt = expected_tpt_mimo20MHz;
1012 } else
1013 tbl->expected_tpt = expected_tpt_G;
1014}
1015
Ben Cahill77626352007-11-29 11:09:44 +08001016/*
1017 * Find starting rate for new "search" high-throughput mode of modulation.
1018 * Goal is to find lowest expected rate (under perfect conditions) that is
1019 * above the current measured throughput of "active" mode, to give new mode
1020 * a fair chance to prove itself without too many challenges.
1021 *
1022 * This gets called when transitioning to more aggressive modulation
1023 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1024 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1025 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1026 * bit rate will typically need to increase, but not if performance was bad.
1027 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001028static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001029 struct iwl_lq_sta *lq_sta,
1030 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001031 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001032{
Ben Cahill77626352007-11-29 11:09:44 +08001033 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001034 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001035 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001036 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001037 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001038
1039 /* expected "search" throughput */
1040 s32 *tpt_tbl = tbl->expected_tpt;
1041
1042 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001043 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001044 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001045
1046 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1047
1048 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001049 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1050 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001051
1052 low = high_low & 0xff;
1053 high = (high_low >> 8) & 0xff;
1054
Ben Cahill77626352007-11-29 11:09:44 +08001055 /*
1056 * Lower the "search" bit rate, to give new "search" mode
1057 * approximately the same throughput as "active" if:
1058 *
1059 * 1) "Active" mode has been working modestly well (but not
1060 * great), and expected "search" throughput (under perfect
1061 * conditions) at candidate rate is above the actual
1062 * measured "active" throughput (but less than expected
1063 * "active" throughput under perfect conditions).
1064 * OR
1065 * 2) "Active" mode has been working perfectly or very well
1066 * and expected "search" throughput (under perfect
1067 * conditions) at candidate rate is above expected
1068 * "active" throughput (under perfect conditions).
1069 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001070 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001071 ((active_sr > IWL_RATE_DECREASE_TH) &&
1072 (active_sr <= IWL_RATE_HIGH_TH) &&
1073 (tpt_tbl[rate] <= active_tpt))) ||
1074 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1075 (tpt_tbl[rate] > active_tpt))) {
1076
Ben Cahill77626352007-11-29 11:09:44 +08001077 /* (2nd or later pass)
1078 * If we've already tried to raise the rate, and are
1079 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001080 if (start_hi != IWL_RATE_INVALID) {
1081 new_rate = start_hi;
1082 break;
1083 }
Ben Cahill77626352007-11-29 11:09:44 +08001084
Zhu Yib481de92007-09-25 17:54:57 -07001085 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001086
1087 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001088 if (low != IWL_RATE_INVALID)
1089 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001090
1091 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001092 else
1093 break;
Ben Cahill77626352007-11-29 11:09:44 +08001094
1095 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001096 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001097 /* (2nd or later pass)
1098 * If we've already tried to lower the rate, and are
1099 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001100 if (new_rate != IWL_RATE_INVALID)
1101 break;
Ben Cahill77626352007-11-29 11:09:44 +08001102
1103 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001104 else if (high != IWL_RATE_INVALID) {
1105 start_hi = high;
1106 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001107
1108 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001109 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001110 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001111 break;
1112 }
1113 }
1114 }
1115
1116 return new_rate;
1117}
Zhu Yib481de92007-09-25 17:54:57 -07001118
Ben Cahill77626352007-11-29 11:09:44 +08001119/*
1120 * Set up search table for MIMO
1121 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001122static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001123 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001124 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001125 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001126 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001127{
Zhu Yib481de92007-09-25 17:54:57 -07001128 u16 rate_mask;
1129 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001130 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001131
Johannes Bergae5eb022008-10-14 16:58:37 +02001132 if (!conf->ht.enabled || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001133 return -1;
1134
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001135 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001136 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001137 return -1;
1138
Ben Cahill77626352007-11-29 11:09:44 +08001139 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001140 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001141 return -1;
1142
Guy Coheneecd6e52008-04-23 17:14:58 -07001143 IWL_DEBUG_RATE("LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001144
1145 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001146 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001147 tbl->action = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001148 rate_mask = lq_sta->active_mimo2_rate;
1149
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001150 if (priv->current_ht_config.supported_chan_width
Guy Cohen39e88502008-04-23 17:14:57 -07001151 == IWL_CHANNEL_WIDTH_40MHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001152 tbl->is_fat = 1;
1153 else
1154 tbl->is_fat = 0;
1155
Guy Cohen39e88502008-04-23 17:14:57 -07001156 /* FIXME: - don't toggle SGI here
Zhu Yib481de92007-09-25 17:54:57 -07001157 if (tbl->is_fat) {
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001158 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001159 tbl->is_SGI = 1;
1160 else
1161 tbl->is_SGI = 0;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001162 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001163 tbl->is_SGI = 1;
1164 else
1165 tbl->is_SGI = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001166 */
Zhu Yib481de92007-09-25 17:54:57 -07001167
Guy Coheneecd6e52008-04-23 17:14:58 -07001168 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001169
Guy Cohenf935a6d2008-04-23 17:15:02 -07001170 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001171
Guy Coheneecd6e52008-04-23 17:14:58 -07001172 IWL_DEBUG_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001173
1174 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001175 IWL_DEBUG_RATE("Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001176 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001177 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001178 }
1179 tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001180
Guy Coheneecd6e52008-04-23 17:14:58 -07001181 IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001182 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001183 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001184}
1185
Ben Cahill77626352007-11-29 11:09:44 +08001186/*
1187 * Set up search table for SISO
1188 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001189static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001190 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001191 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001192 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001193 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001194{
Zhu Yib481de92007-09-25 17:54:57 -07001195 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001196 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001197 s32 rate;
1198
Johannes Bergae5eb022008-10-14 16:58:37 +02001199 if (!conf->ht.enabled || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001200 return -1;
1201
Guy Coheneecd6e52008-04-23 17:14:58 -07001202 IWL_DEBUG_RATE("LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001203
Tomas Winklerc33104f2008-01-14 17:46:21 -08001204 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001205 tbl->lq_type = LQ_SISO;
1206 tbl->action = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001207 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001208
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001209 if (priv->current_ht_config.supported_chan_width
1210 == IWL_CHANNEL_WIDTH_40MHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001211 tbl->is_fat = 1;
1212 else
1213 tbl->is_fat = 0;
1214
Guy Cohen39e88502008-04-23 17:14:57 -07001215 /* FIXME: - don't toggle SGI here
Zhu Yib481de92007-09-25 17:54:57 -07001216 if (tbl->is_fat) {
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001217 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001218 tbl->is_SGI = 1;
1219 else
1220 tbl->is_SGI = 0;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001221 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001222 tbl->is_SGI = 1;
1223 else
1224 tbl->is_SGI = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001225 */
Zhu Yib481de92007-09-25 17:54:57 -07001226
1227 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001228 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001229
Guy Coheneecd6e52008-04-23 17:14:58 -07001230 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001231 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001232
Guy Coheneecd6e52008-04-23 17:14:58 -07001233 IWL_DEBUG_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001234 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001235 IWL_DEBUG_RATE("can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001236 rate, rate_mask);
1237 return -1;
1238 }
Guy Cohen39e88502008-04-23 17:14:57 -07001239 tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green);
Guy Coheneecd6e52008-04-23 17:14:58 -07001240 IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001241 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001242 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001243}
1244
Ben Cahill77626352007-11-29 11:09:44 +08001245/*
1246 * Try to switch to new modulation mode from legacy
1247 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001248static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001249 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001250 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001251 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001252 int index)
1253{
Tomas Winklere227cea2008-07-18 13:53:05 +08001254 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1255 struct iwl_scale_tbl_info *search_tbl =
1256 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1257 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1258 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1259 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001260 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001261 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001262 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001263 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001264
1265 for (; ;) {
1266 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001267 case IWL_LEGACY_SWITCH_ANTENNA1:
1268 case IWL_LEGACY_SWITCH_ANTENNA2:
Guy Cohenf935a6d2008-04-23 17:15:02 -07001269 IWL_DEBUG_RATE("LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001270
Tomas Winklerc33104f2008-01-14 17:46:21 -08001271 lq_sta->action_counter++;
Ben Cahill77626352007-11-29 11:09:44 +08001272
Guy Cohen3110bef2008-09-09 10:54:54 +08001273 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1274 tx_chains_num <= 1) ||
1275 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1276 tx_chains_num <= 2))
1277 break;
1278
Ben Cahill77626352007-11-29 11:09:44 +08001279 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001280 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1281 break;
Ben Cahill77626352007-11-29 11:09:44 +08001282
Ben Cahill77626352007-11-29 11:09:44 +08001283 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001284 memcpy(search_tbl, tbl, sz);
1285
Guy Cohenaade00c2008-04-23 17:14:59 -07001286 if (rs_toggle_antenna(valid_tx_ant,
1287 &search_tbl->current_rate, search_tbl)) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001288 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001289 goto out;
1290 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001291 break;
Zhu Yib481de92007-09-25 17:54:57 -07001292 case IWL_LEGACY_SWITCH_SISO:
Guy Coheneecd6e52008-04-23 17:14:58 -07001293 IWL_DEBUG_RATE("LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001294
1295 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001296 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001297 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001298 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001299 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001300 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001301 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001302 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001303 }
Zhu Yib481de92007-09-25 17:54:57 -07001304
1305 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001306 case IWL_LEGACY_SWITCH_MIMO2_AB:
1307 case IWL_LEGACY_SWITCH_MIMO2_AC:
1308 case IWL_LEGACY_SWITCH_MIMO2_BC:
Guy Coheneecd6e52008-04-23 17:14:58 -07001309 IWL_DEBUG_RATE("LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001310
1311 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001312 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001313 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001314
1315 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1316 search_tbl->ant_type = ANT_AB;
1317 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1318 search_tbl->ant_type = ANT_AC;
1319 else
1320 search_tbl->ant_type = ANT_BC;
1321
1322 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1323 break;
1324
Guy Cohenfde0db32008-04-21 15:42:01 -07001325 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001326 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001327 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001328 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001329 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001330 }
Zhu Yib481de92007-09-25 17:54:57 -07001331 break;
1332 }
1333 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001334 if (tbl->action > IWL_LEGACY_SWITCH_MIMO2_BC)
1335 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001336
1337 if (tbl->action == start_action)
1338 break;
1339
1340 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001341 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001342 return 0;
1343
Guy Cohen3110bef2008-09-09 10:54:54 +08001344out:
1345 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001346 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001347 if (tbl->action > IWL_LEGACY_SWITCH_MIMO2_BC)
1348 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001349 return 0;
1350
1351}
1352
Ben Cahill77626352007-11-29 11:09:44 +08001353/*
1354 * Try to switch to new modulation mode from SISO
1355 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001356static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001357 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001358 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001359 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001360{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001361 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001362 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1363 struct iwl_scale_tbl_info *search_tbl =
1364 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1365 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1366 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1367 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001368 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001369 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001370 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001371 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001372
1373 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001374 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001375 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001376 case IWL_SISO_SWITCH_ANTENNA1:
1377 case IWL_SISO_SWITCH_ANTENNA2:
Guy Coheneecd6e52008-04-23 17:14:58 -07001378 IWL_DEBUG_RATE("LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001379
1380 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1381 tx_chains_num <= 1) ||
1382 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1383 tx_chains_num <= 2))
1384 break;
1385
Zhu Yib481de92007-09-25 17:54:57 -07001386 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1387 break;
Zhu Yib481de92007-09-25 17:54:57 -07001388
1389 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001390 if (rs_toggle_antenna(valid_tx_ant,
Guy Cohen3110bef2008-09-09 10:54:54 +08001391 &search_tbl->current_rate, search_tbl))
Guy Cohenaade00c2008-04-23 17:14:59 -07001392 goto out;
Guy Cohena5e8b502008-05-29 16:35:11 +08001393 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001394 case IWL_SISO_SWITCH_MIMO2_AB:
1395 case IWL_SISO_SWITCH_MIMO2_AC:
1396 case IWL_SISO_SWITCH_MIMO2_BC:
Guy Cohena5e8b502008-05-29 16:35:11 +08001397 IWL_DEBUG_RATE("LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001398 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001399 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001400
1401 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1402 search_tbl->ant_type = ANT_AB;
1403 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1404 search_tbl->ant_type = ANT_AC;
1405 else
1406 search_tbl->ant_type = ANT_BC;
1407
1408 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1409 break;
1410
Guy Cohenfde0db32008-04-21 15:42:01 -07001411 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001412 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001413 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001414 goto out;
1415 break;
1416 case IWL_SISO_SWITCH_GI:
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001417 if (!tbl->is_fat &&
1418 !(priv->current_ht_config.sgf &
1419 HT_SHORT_GI_20MHZ))
1420 break;
1421 if (tbl->is_fat &&
1422 !(priv->current_ht_config.sgf &
1423 HT_SHORT_GI_40MHZ))
1424 break;
1425
Guy Coheneecd6e52008-04-23 17:14:58 -07001426 IWL_DEBUG_RATE("LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001427
Zhu Yib481de92007-09-25 17:54:57 -07001428 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001429 if (is_green) {
1430 if (!tbl->is_SGI)
1431 break;
1432 else
1433 IWL_ERROR("SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001434 }
Guy Cohen39e88502008-04-23 17:14:57 -07001435 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001436 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001437 if (tbl->is_SGI) {
1438 s32 tpt = lq_sta->last_tpt / 100;
1439 if (tpt >= search_tbl->expected_tpt[index])
1440 break;
1441 }
1442 search_tbl->current_rate = rate_n_flags_from_tbl(
1443 search_tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001444 goto out;
1445 }
1446 tbl->action++;
1447 if (tbl->action > IWL_SISO_SWITCH_GI)
Guy Cohen3110bef2008-09-09 10:54:54 +08001448 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001449
1450 if (tbl->action == start_action)
1451 break;
1452 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001453 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001454 return 0;
1455
1456 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001457 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001458 tbl->action++;
1459 if (tbl->action > IWL_SISO_SWITCH_GI)
Guy Cohen3110bef2008-09-09 10:54:54 +08001460 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001461 return 0;
1462}
1463
Ben Cahill77626352007-11-29 11:09:44 +08001464/*
1465 * Try to switch to new modulation mode from MIMO
1466 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001467static int rs_move_mimo_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001468 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001469 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001470 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001471{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001472 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001473 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1474 struct iwl_scale_tbl_info *search_tbl =
1475 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001476 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Tomas Winklere227cea2008-07-18 13:53:05 +08001477 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1478 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001479 u8 start_action = tbl->action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001480 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1481 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenaade00c2008-04-23 17:14:59 -07001482 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001483
1484 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001485 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001486 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001487 case IWL_MIMO2_SWITCH_ANTENNA1:
1488 case IWL_MIMO2_SWITCH_ANTENNA2:
1489 IWL_DEBUG_RATE("LQ: MIMO toggle Antennas\n");
1490
1491 if (tx_chains_num <= 2)
1492 break;
1493
1494 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1495 break;
1496
1497 memcpy(search_tbl, tbl, sz);
1498 if (rs_toggle_antenna(valid_tx_ant,
1499 &search_tbl->current_rate, search_tbl))
1500 goto out;
1501 break;
1502 case IWL_MIMO2_SWITCH_SISO_A:
1503 case IWL_MIMO2_SWITCH_SISO_B:
1504 case IWL_MIMO2_SWITCH_SISO_C:
Guy Coheneecd6e52008-04-23 17:14:58 -07001505 IWL_DEBUG_RATE("LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001506
Ben Cahill77626352007-11-29 11:09:44 +08001507 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001508 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001509
Guy Cohen3110bef2008-09-09 10:54:54 +08001510 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001511 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001512 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001513 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001514 else
1515 search_tbl->ant_type = ANT_C;
1516
1517 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1518 break;
Zhu Yib481de92007-09-25 17:54:57 -07001519
Tomas Winklerc33104f2008-01-14 17:46:21 -08001520 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001521 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001522 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001523 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001524
Zhu Yib481de92007-09-25 17:54:57 -07001525 break;
1526
Guy Cohen3110bef2008-09-09 10:54:54 +08001527 case IWL_MIMO2_SWITCH_GI:
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001528 if (!tbl->is_fat &&
1529 !(priv->current_ht_config.sgf &
1530 HT_SHORT_GI_20MHZ))
1531 break;
1532 if (tbl->is_fat &&
1533 !(priv->current_ht_config.sgf &
1534 HT_SHORT_GI_40MHZ))
1535 break;
1536
Guy Coheneecd6e52008-04-23 17:14:58 -07001537 IWL_DEBUG_RATE("LQ: MIMO toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001538
1539 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001540 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001541 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001542 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001543 /*
1544 * If active table already uses the fastest possible
1545 * modulation (dual stream with short guard interval),
1546 * and it's working well, there's no need to look
1547 * for a better type of modulation!
1548 */
Guy Cohen39e88502008-04-23 17:14:57 -07001549 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001550 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001551 if (tpt >= search_tbl->expected_tpt[index])
1552 break;
Zhu Yib481de92007-09-25 17:54:57 -07001553 }
Guy Cohen39e88502008-04-23 17:14:57 -07001554 search_tbl->current_rate = rate_n_flags_from_tbl(
1555 search_tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001556 goto out;
1557
1558 }
1559 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001560 if (tbl->action > IWL_MIMO2_SWITCH_GI)
1561 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001562
1563 if (tbl->action == start_action)
1564 break;
1565 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001566 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001567 return 0;
1568 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001569 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001570 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001571 if (tbl->action > IWL_MIMO2_SWITCH_GI)
1572 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001573 return 0;
1574
1575}
1576
Ben Cahill77626352007-11-29 11:09:44 +08001577/*
1578 * Check whether we should continue using same modulation mode, or
1579 * begin search for a new mode, based on:
1580 * 1) # tx successes or failures while using this mode
1581 * 2) # times calling this function
1582 * 3) elapsed time in this mode (not used, for now)
1583 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001584static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001585{
Tomas Winklere227cea2008-07-18 13:53:05 +08001586 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001587 int i;
1588 int active_tbl;
1589 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001590 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001591
Ester Kummerbf403db2008-05-05 10:22:40 +08001592 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001593 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001594
Tomas Winklerc33104f2008-01-14 17:46:21 -08001595 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001596
Ben Cahill77626352007-11-29 11:09:44 +08001597 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001598 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001599
Ben Cahill77626352007-11-29 11:09:44 +08001600 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001601 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001602 flush_interval_passed =
1603 time_after(jiffies,
Tomas Winklerc33104f2008-01-14 17:46:21 -08001604 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001605 IWL_RATE_SCALE_FLUSH_INTVL));
1606
Ben Cahill77626352007-11-29 11:09:44 +08001607 /*
1608 * Check if we should allow search for new modulation mode.
1609 * If many frames have failed or succeeded, or we've used
1610 * this same modulation for a long time, allow search, and
1611 * reset history stats that keep track of whether we should
1612 * allow a new search. Also (below) reset all bitmaps and
1613 * stats in active history.
1614 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001615 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1616 (lq_sta->total_success > lq_sta->max_success_limit) ||
1617 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001618 && (flush_interval_passed))) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001619 IWL_DEBUG_RATE("LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001620 lq_sta->total_failed,
1621 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001622 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001623
1624 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001625 lq_sta->stay_in_tbl = 0; /* only place reset */
1626 lq_sta->total_failed = 0;
1627 lq_sta->total_success = 0;
1628 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001629
1630 /*
1631 * Else if we've used this modulation mode enough repetitions
1632 * (regardless of elapsed time or success/failure), reset
1633 * history bitmaps and rate-specific stats for all rates in
1634 * active table.
1635 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001636 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001637 lq_sta->table_count++;
1638 if (lq_sta->table_count >=
1639 lq_sta->table_count_limit) {
1640 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001641
Guy Coheneecd6e52008-04-23 17:14:58 -07001642 IWL_DEBUG_RATE("LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001643 for (i = 0; i < IWL_RATE_COUNT; i++)
1644 rs_rate_scale_clear_window(
1645 &(tbl->win[i]));
1646 }
1647 }
1648
Ben Cahill77626352007-11-29 11:09:44 +08001649 /* If transitioning to allow "search", reset all history
1650 * bitmaps and stats in active table (this will become the new
1651 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001652 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001653 for (i = 0; i < IWL_RATE_COUNT; i++)
1654 rs_rate_scale_clear_window(&(tbl->win[i]));
1655 }
1656 }
1657}
1658
Ben Cahill77626352007-11-29 11:09:44 +08001659/*
1660 * Do rate scaling and search for new modulation mode.
1661 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001662static void rs_rate_scale_perform(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001663 struct ieee80211_hdr *hdr,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001664 struct ieee80211_sta *sta,
1665 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001666{
Johannes Berg4b7679a2008-09-18 18:14:18 +02001667 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001668 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07001669 int low = IWL_RATE_INVALID;
1670 int high = IWL_RATE_INVALID;
1671 int index;
1672 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08001673 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001674 int current_tpt = IWL_INVALID_VALUE;
1675 int low_tpt = IWL_INVALID_VALUE;
1676 int high_tpt = IWL_INVALID_VALUE;
1677 u32 fail_count;
1678 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001679 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
Tomas Winkler417f1142008-11-12 13:14:06 -08001693 /* Send management frames and broadcast/multicast data using
1694 * lowest rate. */
1695 /* TODO: this could probably be improved.. */
1696 if (!ieee80211_is_data(hdr->frame_control) ||
1697 is_multicast_ether_addr(hdr->addr1))
Zhu Yib481de92007-09-25 17:54:57 -07001698 return;
Zhu Yib481de92007-09-25 17:54:57 -07001699
Johannes Berg4b7679a2008-09-18 18:14:18 +02001700 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001701 return;
1702
Johannes Berg4b7679a2008-09-18 18:14:18 +02001703 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07001704
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001705 tid = rs_tl_add_packet(lq_sta, hdr);
1706
Ben Cahill77626352007-11-29 11:09:44 +08001707 /*
1708 * Select rate-scale / modulation-mode table to work with in
1709 * the rest of this function: "search" if searching for better
1710 * modulation mode, or "active" if doing rate scaling within a mode.
1711 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001712 if (!lq_sta->search_better_tbl)
1713 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001714 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001715 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001716
Tomas Winklerc33104f2008-01-14 17:46:21 -08001717 tbl = &(lq_sta->lq_info[active_tbl]);
1718 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001719
Ben Cahill77626352007-11-29 11:09:44 +08001720 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02001721 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07001722
1723 IWL_DEBUG_RATE("Rate scale index %d for type %d\n", index,
1724 tbl->lq_type);
1725
Ben Cahill77626352007-11-29 11:09:44 +08001726 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07001727 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001728
1729 IWL_DEBUG_RATE("mask 0x%04X \n", rate_mask);
1730
1731 /* mask with station rate restriction */
1732 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01001733 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08001734 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07001735 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08001736 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07001737 else
1738 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08001739 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07001740
1741 } else
1742 rate_scale_index_msk = rate_mask;
1743
1744 if (!rate_scale_index_msk)
1745 rate_scale_index_msk = rate_mask;
1746
Guy Cohen07bc28e2008-04-23 17:15:03 -07001747 if (!((1 << index) & rate_scale_index_msk)) {
1748 IWL_ERROR("Current Rate is not valid\n");
1749 return;
Zhu Yib481de92007-09-25 17:54:57 -07001750 }
1751
Ben Cahill77626352007-11-29 11:09:44 +08001752 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07001753 if (!tbl->expected_tpt) {
1754 IWL_ERROR("tbl->expected_tpt is NULL\n");
1755 return;
1756 }
Zhu Yib481de92007-09-25 17:54:57 -07001757
1758 window = &(tbl->win[index]);
1759
Ben Cahill77626352007-11-29 11:09:44 +08001760 /*
1761 * If there is not enough history to calculate actual average
1762 * throughput, keep analyzing results of more tx frames, without
1763 * changing rate or mode (bypass most of the rest of this function).
1764 * Set up new rate table in uCode only if old rate is not supported
1765 * in current association (use new rate found above).
1766 */
Zhu Yib481de92007-09-25 17:54:57 -07001767 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07001768 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
1769 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
1770 IWL_DEBUG_RATE("LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07001771 "for index %d\n",
1772 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08001773
1774 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07001775 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08001776
1777 /* Should we stay with this modulation mode,
1778 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001779 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08001780
Zhu Yib481de92007-09-25 17:54:57 -07001781 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001782 }
Zhu Yib481de92007-09-25 17:54:57 -07001783
Ben Cahill77626352007-11-29 11:09:44 +08001784 /* Else we have enough samples; calculate estimate of
1785 * actual average throughput */
Guy Cohen3110bef2008-09-09 10:54:54 +08001786
1787 BUG_ON(window->average_tpt != ((window->success_ratio *
1788 tbl->expected_tpt[index] + 64) / 128));
Zhu Yib481de92007-09-25 17:54:57 -07001789
Ben Cahill77626352007-11-29 11:09:44 +08001790 /* If we are searching for better modulation mode, check success. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001791 if (lq_sta->search_better_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001792
Ben Cahill77626352007-11-29 11:09:44 +08001793 /* If good success, continue using the "search" mode;
1794 * no need to send new link quality command, since we're
1795 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07001796 if (window->average_tpt > lq_sta->last_tpt) {
1797
Guy Cohen3110bef2008-09-09 10:54:54 +08001798 IWL_DEBUG_RATE("LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07001799 "suc=%d cur-tpt=%d old-tpt=%d\n",
1800 window->success_ratio,
1801 window->average_tpt,
1802 lq_sta->last_tpt);
1803
1804 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001805 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07001806
Ben Cahill77626352007-11-29 11:09:44 +08001807 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001808 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001809 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08001810
1811 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07001812 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07001813
1814 IWL_DEBUG_RATE("LQ: GOING BACK TO THE OLD TABLE "
1815 "suc=%d cur-tpt=%d old-tpt=%d\n",
1816 window->success_ratio,
1817 window->average_tpt,
1818 lq_sta->last_tpt);
1819
Ben Cahill77626352007-11-29 11:09:44 +08001820 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07001821 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08001822
1823 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001824 active_tbl = lq_sta->active_tbl;
1825 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001826
Ben Cahill77626352007-11-29 11:09:44 +08001827 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08001828 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08001829 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08001830
1831 /* Need to set up a new rate table in uCode */
1832 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001833 }
Ben Cahill77626352007-11-29 11:09:44 +08001834
1835 /* Either way, we've made a decision; modulation mode
1836 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001837 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001838 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07001839 goto lq_update;
1840 }
1841
Ben Cahill77626352007-11-29 11:09:44 +08001842 /* (Else) not in search of better modulation mode, try for better
1843 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08001844 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07001845 tbl->lq_type);
1846 low = high_low & 0xff;
1847 high = (high_low >> 8) & 0xff;
1848
Guy Cohena5e8b502008-05-29 16:35:11 +08001849 sr = window->success_ratio;
1850
Ben Cahill77626352007-11-29 11:09:44 +08001851 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07001852 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001853 if (low != IWL_RATE_INVALID)
1854 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001855 if (high != IWL_RATE_INVALID)
1856 high_tpt = tbl->win[high].average_tpt;
1857
Guy Cohena5e8b502008-05-29 16:35:11 +08001858 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001859
Ben Cahill77626352007-11-29 11:09:44 +08001860 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08001861 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001862 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
1863 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08001864
1865 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07001866 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08001867 (high_tpt == IWL_INVALID_VALUE)) {
1868
1869 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
1870 scale_action = 1;
1871 else if (low != IWL_RATE_INVALID)
1872 scale_action = -1;
1873 }
Ben Cahill77626352007-11-29 11:09:44 +08001874
1875 /* Both adjacent throughputs are measured, but neither one has better
1876 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07001877 else if ((low_tpt != IWL_INVALID_VALUE) &&
1878 (high_tpt != IWL_INVALID_VALUE) &&
1879 (low_tpt < current_tpt) &&
1880 (high_tpt < current_tpt))
1881 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001882
1883 /* At least one adjacent rate's throughput is measured,
1884 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07001885 else {
Ben Cahill77626352007-11-29 11:09:44 +08001886 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07001887 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08001888 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08001889 if (high_tpt > current_tpt &&
1890 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07001891 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001892 } else {
Zhu Yib481de92007-09-25 17:54:57 -07001893 IWL_DEBUG_RATE
1894 ("decrease rate because of high tpt\n");
1895 scale_action = -1;
1896 }
Ben Cahill77626352007-11-29 11:09:44 +08001897
1898 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07001899 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08001900 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07001901 if (low_tpt > current_tpt) {
1902 IWL_DEBUG_RATE
1903 ("decrease rate because of low tpt\n");
1904 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001905 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07001906 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001907 }
Zhu Yib481de92007-09-25 17:54:57 -07001908 }
1909 }
1910
Ben Cahill77626352007-11-29 11:09:44 +08001911 /* Sanity check; asked for decrease, but success rate or throughput
1912 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08001913 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
1914 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07001915 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07001916 scale_action = 0;
1917
1918 switch (scale_action) {
1919 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08001920 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07001921 if (low != IWL_RATE_INVALID) {
1922 update_lq = 1;
1923 index = low;
1924 }
1925 break;
1926 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08001927 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07001928 if (high != IWL_RATE_INVALID) {
1929 update_lq = 1;
1930 index = high;
1931 }
1932
1933 break;
1934 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08001935 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07001936 default:
1937 break;
1938 }
1939
Guy Coheneecd6e52008-04-23 17:14:58 -07001940 IWL_DEBUG_RATE("choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07001941 "high %d type %d\n",
1942 index, scale_action, low, high, tbl->lq_type);
1943
Guy Cohena5e8b502008-05-29 16:35:11 +08001944lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08001945 /* Replace uCode's rate table for the destination station. */
Zhu Yib481de92007-09-25 17:54:57 -07001946 if (update_lq) {
Guy Cohen39e88502008-04-23 17:14:57 -07001947 rate = rate_n_flags_from_tbl(tbl, index, is_green);
Guy Cohen07bc28e2008-04-23 17:15:03 -07001948 rs_fill_link_cmd(priv, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07001949 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07001950 }
Ben Cahill77626352007-11-29 11:09:44 +08001951
1952 /* Should we stay with this modulation mode, or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001953 rs_stay_in_table(lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07001954
Ben Cahill77626352007-11-29 11:09:44 +08001955 /*
1956 * Search for new modulation mode if we're:
1957 * 1) Not changing rates right now
1958 * 2) Not just finishing up a search
1959 * 3) Allowing a new search
1960 */
Guy Cohen47cfd462008-05-27 11:29:34 +08001961 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08001962 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08001963 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001964
Ben Cahill77626352007-11-29 11:09:44 +08001965 /* Select a new "search" modulation mode to try.
1966 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07001967 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001968 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001969 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001970 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001971 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001972 rs_move_mimo_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001973
Ben Cahill77626352007-11-29 11:09:44 +08001974 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001975 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08001976 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001977 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07001978 for (i = 0; i < IWL_RATE_COUNT; i++)
1979 rs_rate_scale_clear_window(&(tbl->win[i]));
1980
Ben Cahill77626352007-11-29 11:09:44 +08001981 /* Use new "search" start rate */
Tomas Winklere7d326ac2008-06-12 09:47:11 +08001982 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07001983
Guy Coheneecd6e52008-04-23 17:14:58 -07001984 IWL_DEBUG_RATE("Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001985 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07001986 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07001987 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07001988 }
Zhu Yib481de92007-09-25 17:54:57 -07001989
Ben Cahill77626352007-11-29 11:09:44 +08001990 /* If the "active" (non-search) mode was legacy,
1991 * and we've tried switching antennas,
1992 * but we haven't been able to try HT modes (not available),
1993 * stay with best antenna legacy modulation for a while
1994 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001995 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Johannes Bergae5eb022008-10-14 16:58:37 +02001996 if (is_legacy(tbl1->lq_type) && !conf->ht.enabled &&
1997 lq_sta->action_counter >= 1) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001998 lq_sta->action_counter = 0;
Guy Coheneecd6e52008-04-23 17:14:58 -07001999 IWL_DEBUG_RATE("LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08002000 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002001 }
2002
Ben Cahill77626352007-11-29 11:09:44 +08002003 /* If we're in an HT mode, and all 3 mode switch actions
2004 * have been tried and compared, stay in this best modulation
2005 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002006 if (lq_sta->enable_counter &&
2007 (lq_sta->action_counter >= IWL_ACTION_LIMIT)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002008 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2009 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2010 (tid != MAX_TID_COUNT)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07002011 IWL_DEBUG_RATE("try to aggregate tid %d\n", tid);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002012 rs_tl_turn_on_agg(priv, tid, lq_sta, sta);
Zhu Yib481de92007-09-25 17:54:57 -07002013 }
Tomas Winklerc33104f2008-01-14 17:46:21 -08002014 lq_sta->action_counter = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08002015 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002016 }
Ben Cahill77626352007-11-29 11:09:44 +08002017
2018 /*
2019 * Else, don't search for a new modulation mode.
2020 * Put new timestamp in stay-in-modulation-mode flush timer if:
2021 * 1) Not changing rates right now
2022 * 2) Not just finishing up a search
2023 * 3) flush timer is empty
2024 */
Zhu Yib481de92007-09-25 17:54:57 -07002025 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002026 if ((!update_lq) && (!done_search) && (!lq_sta->flush_timer))
2027 lq_sta->flush_timer = jiffies;
Zhu Yib481de92007-09-25 17:54:57 -07002028 }
2029
2030out:
Guy Cohen39e88502008-04-23 17:14:57 -07002031 tbl->current_rate = rate_n_flags_from_tbl(tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002032 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002033 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002034
Zhu Yib481de92007-09-25 17:54:57 -07002035 return;
2036}
2037
2038
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002039static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002040 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002041 struct ieee80211_sta *sta,
2042 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002043{
Tomas Winklere227cea2008-07-18 13:53:05 +08002044 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002045 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002046 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002047 u32 rate;
Guy Cohenaade00c2008-04-23 17:14:59 -07002048 u8 use_green = rs_use_green(priv, conf);
2049 u8 active_tbl = 0;
2050 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002051
Johannes Berg4b7679a2008-09-18 18:14:18 +02002052 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002053 goto out;
2054
Johannes Bergb7e35002008-09-11 02:22:58 +02002055 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002056
Tomas Winklerc33104f2008-01-14 17:46:21 -08002057 if ((lq_sta->lq.sta_id == 0xff) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002058 (priv->iw_mode == NL80211_IFTYPE_ADHOC))
Zhu Yib481de92007-09-25 17:54:57 -07002059 goto out;
2060
Guy Cohenaade00c2008-04-23 17:14:59 -07002061 valid_tx_ant = priv->hw_params.valid_tx_ant;
2062
Tomas Winklerc33104f2008-01-14 17:46:21 -08002063 if (!lq_sta->search_better_tbl)
2064 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002065 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002066 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002067
Tomas Winklerc33104f2008-01-14 17:46:21 -08002068 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002069
2070 if ((i < 0) || (i >= IWL_RATE_COUNT))
2071 i = 0;
2072
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002073 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002074 tbl->ant_type = first_antenna(valid_tx_ant);
2075 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002076
2077 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002078 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002079
Guy Cohen39e88502008-04-23 17:14:57 -07002080 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002081 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2082 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002083
Guy Cohen39e88502008-04-23 17:14:57 -07002084 rate = rate_n_flags_from_tbl(tbl, rate_idx, use_green);
2085 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002086 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002087 rs_fill_link_cmd(NULL, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002088 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002089 out:
2090 return;
2091}
2092
Johannes Berge6a98542008-10-21 12:40:02 +02002093static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2094 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002095{
2096
Johannes Berge6a98542008-10-21 12:40:02 +02002097 struct sk_buff *skb = txrc->skb;
2098 struct ieee80211_supported_band *sband = txrc->sband;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002099 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2100 struct ieee80211_conf *conf = &priv->hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002101 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge6a98542008-10-21 12:40:02 +02002102 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002103 struct iwl_lq_sta *lq_sta = priv_sta;
2104 int rate_idx;
Abbas, Mohamedc338ba32009-01-21 10:58:02 -08002105 u64 mask_bit = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002106
Zhu Yi58826352007-09-27 11:27:39 +08002107 IWL_DEBUG_RATE_LIMIT("rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002108
Abbas, Mohamedc338ba32009-01-21 10:58:02 -08002109 if (sta)
2110 mask_bit = sta->supp_rates[sband->band];
2111
Michael Wu2bc454b2007-12-25 19:33:16 -05002112 /* Send management frames and broadcast/multicast data using lowest
2113 * rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08002114 if (!ieee80211_is_data(hdr->frame_control) ||
2115 is_multicast_ether_addr(hdr->addr1) || !sta || !lq_sta) {
Abbas, Mohamedc338ba32009-01-21 10:58:02 -08002116 if (!mask_bit)
2117 info->control.rates[0].idx =
2118 rate_lowest_index(sband, NULL);
2119 else
2120 info->control.rates[0].idx =
2121 rate_lowest_index(sband, sta);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002122 return;
Zhu Yib481de92007-09-25 17:54:57 -07002123 }
2124
Tomas Winkler417f1142008-11-12 13:14:06 -08002125 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002126
Johannes Berg05c914f2008-09-11 00:01:58 +02002127 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -08002128 !lq_sta->ibss_sta_added) {
Tomas Winkler947b13a2008-04-16 16:34:48 -07002129 u8 sta_id = iwl_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002130
2131 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002132 IWL_DEBUG_RATE("LQ: ADD station %pM\n",
2133 hdr->addr1);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002134 sta_id = iwl_add_station_flags(priv, hdr->addr1,
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002135 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002136 }
2137 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002138 lq_sta->lq.sta_id = sta_id;
2139 lq_sta->lq.rs_table[0].rate_n_flags = 0;
2140 lq_sta->ibss_sta_added = 1;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002141 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002142 }
Zhu Yib481de92007-09-25 17:54:57 -07002143 }
2144
Tomas Winkler417f1142008-11-12 13:14:06 -08002145 if (rate_idx < 0 || rate_idx > IWL_RATE_COUNT)
2146 rate_idx = rate_lowest_index(sband, sta);
2147 else if (sband->band == IEEE80211_BAND_5GHZ)
2148 rate_idx -= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002149
Tomas Winkler417f1142008-11-12 13:14:06 -08002150 info->control.rates[0].idx = rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002151}
2152
Johannes Berg4b7679a2008-09-18 18:14:18 +02002153static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2154 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002155{
Tomas Winklere227cea2008-07-18 13:53:05 +08002156 struct iwl_lq_sta *lq_sta;
Ester Kummerbf403db2008-05-05 10:22:40 +08002157 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002158 int i, j;
2159
Ester Kummerbf403db2008-05-05 10:22:40 +08002160 priv = (struct iwl_priv *)priv_rate;
Zhu Yib481de92007-09-25 17:54:57 -07002161 IWL_DEBUG_RATE("create station rate scale window\n");
2162
Tomas Winklere227cea2008-07-18 13:53:05 +08002163 lq_sta = kzalloc(sizeof(struct iwl_lq_sta), gfp);
Zhu Yib481de92007-09-25 17:54:57 -07002164
Tomas Winklerc33104f2008-01-14 17:46:21 -08002165 if (lq_sta == NULL)
Zhu Yib481de92007-09-25 17:54:57 -07002166 return NULL;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002167 lq_sta->lq.sta_id = 0xff;
Zhu Yib481de92007-09-25 17:54:57 -07002168
Zhu Yi63fddb92007-09-27 11:27:36 +08002169
Zhu Yib481de92007-09-25 17:54:57 -07002170 for (j = 0; j < LQ_SIZE; j++)
2171 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002172 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002173
Tomas Winklerc33104f2008-01-14 17:46:21 -08002174 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002175}
2176
Johannes Berg4b7679a2008-09-18 18:14:18 +02002177static void rs_rate_init(void *priv_r, struct ieee80211_supported_band *sband,
2178 struct ieee80211_sta *sta, void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002179{
2180 int i, j;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002181 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2182 struct ieee80211_conf *conf = &priv->hw->conf;
Tomas Winklere227cea2008-07-18 13:53:05 +08002183 struct iwl_lq_sta *lq_sta = priv_sta;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002184 u16 mask_bit = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002185
Tomas Winklerc33104f2008-01-14 17:46:21 -08002186 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002187 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002188 for (j = 0; j < LQ_SIZE; j++)
2189 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002190 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002191
Guy Cohen3110bef2008-09-09 10:54:54 +08002192 IWL_DEBUG_RATE("LQ: *** rate scale station global init ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07002193 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2194 * the lowest or the highest rate.. Could consider using RSSI from
2195 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2196 * after assoc.. */
2197
Tomas Winklerc33104f2008-01-14 17:46:21 -08002198 lq_sta->ibss_sta_added = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002199 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Johannes Berg4b7679a2008-09-18 18:14:18 +02002200 u8 sta_id = iwl_find_station(priv, sta->addr);
Joe Perches0795af52007-10-03 17:59:30 -07002201
Zhu Yib481de92007-09-25 17:54:57 -07002202 /* for IBSS the call are from tasklet */
Johannes Berge1749612008-10-27 15:59:26 -07002203 IWL_DEBUG_RATE("LQ: ADD station %pM\n", sta->addr);
Zhu Yib481de92007-09-25 17:54:57 -07002204
2205 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002206 IWL_DEBUG_RATE("LQ: ADD station %pM\n", sta->addr);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002207 sta_id = iwl_add_station_flags(priv, sta->addr,
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002208 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002209 }
2210 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002211 lq_sta->lq.sta_id = sta_id;
2212 lq_sta->lq.rs_table[0].rate_n_flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002213 }
2214 /* FIXME: this is w/a remove it later */
2215 priv->assoc_station_added = 1;
2216 }
2217
Tomas Winklerc33104f2008-01-14 17:46:21 -08002218 lq_sta->is_dup = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002219 lq_sta->is_green = rs_use_green(priv, conf);
Guy Cohen39e88502008-04-23 17:14:57 -07002220 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002221 lq_sta->active_rate_basic = priv->active_rate_basic;
Johannes Berg8318d782008-01-24 19:38:38 +01002222 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002223 /*
2224 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2225 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2226 */
Johannes Bergae5eb022008-10-14 16:58:37 +02002227 lq_sta->active_siso_rate = sta->ht_cap.mcs.rx_mask[0] << 1;
2228 lq_sta->active_siso_rate |= sta->ht_cap.mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002229 lq_sta->active_siso_rate &= ~((u16)0x2);
2230 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002231
Ben Cahill77626352007-11-29 11:09:44 +08002232 /* Same here */
Johannes Bergae5eb022008-10-14 16:58:37 +02002233 lq_sta->active_mimo2_rate = sta->ht_cap.mcs.rx_mask[1] << 1;
2234 lq_sta->active_mimo2_rate |= sta->ht_cap.mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002235 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2236 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2237
Johannes Bergae5eb022008-10-14 16:58:37 +02002238 lq_sta->active_mimo3_rate = sta->ht_cap.mcs.rx_mask[2] << 1;
2239 lq_sta->active_mimo3_rate |= sta->ht_cap.mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002240 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2241 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2242
Guy Cohen07bc28e2008-04-23 17:15:03 -07002243 IWL_DEBUG_RATE("SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002244 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002245 lq_sta->active_mimo2_rate,
2246 lq_sta->active_mimo3_rate);
2247
Tomas Winklera96a27f2008-10-23 23:48:56 -07002248 /* These values will be overridden later */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002249 lq_sta->lq.general_params.single_stream_ant_msk = ANT_A;
2250 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2251
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002252 /* as default allow aggregation for all tids */
2253 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002254 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002255
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002256 /* Find highest tx rate supported by hardware and destination station */
2257 mask_bit = sta->supp_rates[sband->band] & lq_sta->active_legacy_rate;
2258 lq_sta->last_txrate_idx = 3;
2259 for (i = 0; i < sband->n_bitrates; i++)
2260 if (mask_bit & BIT(i))
2261 lq_sta->last_txrate_idx = i;
2262
2263 /* For MODE_IEEE80211A, skip over cck rates in global rate table */
2264 if (sband->band == IEEE80211_BAND_5GHZ)
2265 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
2266
Johannes Berg4b7679a2008-09-18 18:14:18 +02002267 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002268}
2269
Guy Cohenfde0db32008-04-21 15:42:01 -07002270static void rs_fill_link_cmd(const struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002271 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002272{
Tomas Winklere227cea2008-07-18 13:53:05 +08002273 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002274 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002275 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002276 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002277 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002278 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002279 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002280 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002281
Ben Cahill77626352007-11-29 11:09:44 +08002282 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002283 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002284
Guy Cohen39e88502008-04-23 17:14:57 -07002285 /* Interpret new_rate (rate_n_flags) */
Guy Cohenaade00c2008-04-23 17:14:59 -07002286 memset(&tbl_type, 0, sizeof(tbl_type));
Guy Cohen39e88502008-04-23 17:14:57 -07002287 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002288 &tbl_type, &rate_idx);
2289
Ben Cahill77626352007-11-29 11:09:44 +08002290 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002291 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002292 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002293 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002294 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002295 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002296 }
Zhu Yib481de92007-09-25 17:54:57 -07002297
2298 lq_cmd->general_params.mimo_delimiter =
2299 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002300
2301 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002302 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002303
Guy Cohen07bc28e2008-04-23 17:15:03 -07002304 if (num_of_ant(tbl_type.ant_type) == 1) {
2305 lq_cmd->general_params.single_stream_ant_msk =
2306 tbl_type.ant_type;
2307 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2308 lq_cmd->general_params.dual_stream_ant_msk =
2309 tbl_type.ant_type;
2310 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002311
2312 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002313 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002314
Guy Cohenaade00c2008-04-23 17:14:59 -07002315 if (priv)
2316 valid_tx_ant = priv->hw_params.valid_tx_ant;
2317
Ben Cahill77626352007-11-29 11:09:44 +08002318 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002319 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002320 /* Repeat initial/next rate.
2321 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2322 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002323 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002324 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002325 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2326 ant_toggle_cnt++;
2327 else if (priv &&
2328 rs_toggle_antenna(valid_tx_ant,
2329 &new_rate, &tbl_type))
2330 ant_toggle_cnt = 1;
2331}
Zhu Yi98d7e092007-09-27 11:27:42 +08002332
Ben Cahill77626352007-11-29 11:09:44 +08002333 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002334 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002335
2336 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002337 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002338 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002339 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002340 index++;
2341 }
2342
Guy Cohen39e88502008-04-23 17:14:57 -07002343 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002344 &rate_idx);
2345
Ben Cahill77626352007-11-29 11:09:44 +08002346 /* Indicate to uCode which entries might be MIMO.
2347 * If initial rate was MIMO, this will finally end up
2348 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002349 if (is_mimo(tbl_type.lq_type))
2350 lq_cmd->general_params.mimo_delimiter = index;
2351
Ben Cahill77626352007-11-29 11:09:44 +08002352 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002353 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2354 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002355
Ben Cahill77626352007-11-29 11:09:44 +08002356 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002357 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002358 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2359 ant_toggle_cnt++;
2360 else if (priv &&
2361 rs_toggle_antenna(valid_tx_ant,
2362 &new_rate, &tbl_type))
2363 ant_toggle_cnt = 1;
2364
Zhu Yi1b696de2007-09-27 11:27:41 +08002365 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002366 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002367 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002368 }
Zhu Yib481de92007-09-25 17:54:57 -07002369
Ben Cahill77626352007-11-29 11:09:44 +08002370 /* Don't allow HT rates after next pass.
2371 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002372 use_ht_possible = 0;
2373
Ben Cahill77626352007-11-29 11:09:44 +08002374 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002375 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002376
2377 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002378 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002379
2380 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002381 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002382 }
2383
Tomas Winkler5e1dd8d2008-05-29 16:35:17 +08002384 lq_cmd->agg_params.agg_frame_cnt_limit = 64;
Zhu Yib481de92007-09-25 17:54:57 -07002385 lq_cmd->agg_params.agg_dis_start_th = 3;
2386 lq_cmd->agg_params.agg_time_limit = cpu_to_le16(4000);
Zhu Yib481de92007-09-25 17:54:57 -07002387}
2388
Johannes Berg4b7679a2008-09-18 18:14:18 +02002389static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002390{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002391 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002392}
2393/* rate scale requires free function to be implemented */
2394static void rs_free(void *priv_rate)
2395{
2396 return;
2397}
2398
Johannes Berg4b7679a2008-09-18 18:14:18 +02002399static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2400 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002401{
Tomas Winklere227cea2008-07-18 13:53:05 +08002402 struct iwl_lq_sta *lq_sta = priv_sta;
Rami Rosen45527c22008-10-07 09:50:01 +02002403 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002404
2405 IWL_DEBUG_RATE("enter\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -08002406 kfree(lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002407 IWL_DEBUG_RATE("leave\n");
2408}
2409
2410
Zhu Yi93dc6462007-09-27 11:27:37 +08002411#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002412static int open_file_generic(struct inode *inode, struct file *file)
2413{
2414 file->private_data = inode->i_private;
2415 return 0;
2416}
Tomas Winklere227cea2008-07-18 13:53:05 +08002417static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2418 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002419{
Ester Kummerbf403db2008-05-05 10:22:40 +08002420 struct iwl_priv *priv;
2421
2422 priv = lq_sta->drv;
Guy Cohen39e88502008-04-23 17:14:57 -07002423 if (lq_sta->dbg_fixed_rate) {
2424 if (index < 12) {
2425 *rate_n_flags = lq_sta->dbg_fixed_rate;
2426 } else {
2427 if (lq_sta->band == IEEE80211_BAND_5GHZ)
2428 *rate_n_flags = 0x800D;
2429 else
2430 *rate_n_flags = 0x820A;
2431 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002432 IWL_DEBUG_RATE("Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002433 } else {
2434 IWL_DEBUG_RATE("Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002435 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002436}
2437
2438static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2439 const char __user *user_buf, size_t count, loff_t *ppos)
2440{
Tomas Winklere227cea2008-07-18 13:53:05 +08002441 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002442 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002443 char buf[64];
2444 int buf_size;
2445 u32 parsed_rate;
2446
Ester Kummerbf403db2008-05-05 10:22:40 +08002447 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002448 memset(buf, 0, sizeof(buf));
2449 buf_size = min(count, sizeof(buf) - 1);
2450 if (copy_from_user(buf, user_buf, buf_size))
2451 return -EFAULT;
2452
2453 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002454 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002455 else
Guy Cohen39e88502008-04-23 17:14:57 -07002456 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002457
Guy Cohen39e88502008-04-23 17:14:57 -07002458 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2459 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2460 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2461 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002462
2463 IWL_DEBUG_RATE("sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002464 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002465
Guy Cohen39e88502008-04-23 17:14:57 -07002466 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002467 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002468 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC);
Zhu Yi98d7e092007-09-27 11:27:42 +08002469 }
2470
2471 return count;
2472}
Zhu Yi0209dc12007-09-27 11:27:43 +08002473
Zhu Yi5ae212c2007-09-27 11:27:38 +08002474static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2475 char __user *user_buf, size_t count, loff_t *ppos)
2476{
2477 char buff[1024];
2478 int desc = 0;
2479 int i = 0;
2480
Tomas Winklere227cea2008-07-18 13:53:05 +08002481 struct iwl_lq_sta *lq_sta = file->private_data;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002482
Tomas Winklerc33104f2008-01-14 17:46:21 -08002483 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002484 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002485 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002486 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002487 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002488 lq_sta->dbg_fixed_rate);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002489 desc += sprintf(buff+desc, "general:"
2490 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002491 lq_sta->lq.general_params.flags,
2492 lq_sta->lq.general_params.mimo_delimiter,
2493 lq_sta->lq.general_params.single_stream_ant_msk,
2494 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002495
2496 desc += sprintf(buff+desc, "agg:"
2497 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002498 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2499 lq_sta->lq.agg_params.agg_dis_start_th,
2500 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002501
2502 desc += sprintf(buff+desc,
2503 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002504 lq_sta->lq.general_params.start_rate_index[0],
2505 lq_sta->lq.general_params.start_rate_index[1],
2506 lq_sta->lq.general_params.start_rate_index[2],
2507 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002508
2509
2510 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2511 desc += sprintf(buff+desc, " rate[%d] 0x%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002512 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
Zhu Yi5ae212c2007-09-27 11:27:38 +08002513
2514 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2515}
2516
2517static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002518 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002519 .read = rs_sta_dbgfs_scale_table_read,
2520 .open = open_file_generic,
2521};
Zhu Yi0209dc12007-09-27 11:27:43 +08002522static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2523 char __user *user_buf, size_t count, loff_t *ppos)
2524{
2525 char buff[1024];
2526 int desc = 0;
2527 int i, j;
2528
Tomas Winklere227cea2008-07-18 13:53:05 +08002529 struct iwl_lq_sta *lq_sta = file->private_data;
Zhu Yi0209dc12007-09-27 11:27:43 +08002530 for (i = 0; i < LQ_SIZE; i++) {
2531 desc += sprintf(buff+desc, "%s type=%d SGI=%d FAT=%d DUP=%d\n"
2532 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002533 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002534 lq_sta->lq_info[i].lq_type,
2535 lq_sta->lq_info[i].is_SGI,
2536 lq_sta->lq_info[i].is_fat,
2537 lq_sta->lq_info[i].is_dup,
Guy Cohen39e88502008-04-23 17:14:57 -07002538 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08002539 for (j = 0; j < IWL_RATE_COUNT; j++) {
2540 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002541 "counter=%d success=%d %%=%d\n",
2542 lq_sta->lq_info[i].win[j].counter,
2543 lq_sta->lq_info[i].win[j].success_counter,
2544 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08002545 }
2546 }
2547 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2548}
2549
2550static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2551 .read = rs_sta_dbgfs_stats_table_read,
2552 .open = open_file_generic,
2553};
Zhu Yi5ae212c2007-09-27 11:27:38 +08002554
Zhu Yi93dc6462007-09-27 11:27:37 +08002555static void rs_add_debugfs(void *priv, void *priv_sta,
2556 struct dentry *dir)
2557{
Tomas Winklere227cea2008-07-18 13:53:05 +08002558 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002559 lq_sta->rs_sta_dbgfs_scale_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08002560 debugfs_create_file("rate_scale_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002561 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2562 lq_sta->rs_sta_dbgfs_stats_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08002563 debugfs_create_file("rate_stats_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002564 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002565 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
2566 debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
2567 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002568
Zhu Yi93dc6462007-09-27 11:27:37 +08002569}
2570
2571static void rs_remove_debugfs(void *priv, void *priv_sta)
2572{
Tomas Winklere227cea2008-07-18 13:53:05 +08002573 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002574 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2575 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002576 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08002577}
2578#endif
2579
Zhu Yib481de92007-09-25 17:54:57 -07002580static struct rate_control_ops rs_ops = {
2581 .module = NULL,
2582 .name = RS_NAME,
2583 .tx_status = rs_tx_status,
2584 .get_rate = rs_get_rate,
2585 .rate_init = rs_rate_init,
Zhu Yib481de92007-09-25 17:54:57 -07002586 .alloc = rs_alloc,
2587 .free = rs_free,
2588 .alloc_sta = rs_alloc_sta,
2589 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08002590#ifdef CONFIG_MAC80211_DEBUGFS
2591 .add_sta_debugfs = rs_add_debugfs,
2592 .remove_sta_debugfs = rs_remove_debugfs,
2593#endif
Zhu Yib481de92007-09-25 17:54:57 -07002594};
2595
Tomas Winklere227cea2008-07-18 13:53:05 +08002596int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07002597{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07002598 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07002599}
2600
Tomas Winklere227cea2008-07-18 13:53:05 +08002601void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07002602{
2603 ieee80211_rate_control_unregister(&rs_ops);
2604}
2605