blob: f3f17929ca0bb1546721f0a1a22e8b7fe2a6dc8d [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 Winklere7d326a2008-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. */
Johannes Berg4b7679a2008-09-18 18:14:18 +0200947 rs_rate_scale_perform(priv, hdr, sta, lq_sta);
Tomas Winklerf4d60822008-03-05 11:31:00 -0800948out:
Zhu Yib481de92007-09-25 17:54:57 -0700949 return;
950}
951
Ben Cahill77626352007-11-29 11:09:44 +0800952/*
953 * Begin a period of staying with a selected modulation mode.
954 * Set "stay_in_tbl" flag to prevent any mode switches.
955 * Set frame tx success limits according to legacy vs. high-throughput,
956 * and reset overall (spanning all rates) tx success history statistics.
957 * These control how long we stay using same modulation mode before
958 * searching for a new mode.
959 */
Ester Kummerbf403db2008-05-05 10:22:40 +0800960static void rs_set_stay_in_table(struct iwl_priv *priv, u8 is_legacy,
Tomas Winklere227cea2008-07-18 13:53:05 +0800961 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -0700962{
Guy Coheneecd6e52008-04-23 17:14:58 -0700963 IWL_DEBUG_RATE("we are staying in the same table\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -0800964 lq_sta->stay_in_tbl = 1; /* only place this gets set */
Zhu Yib481de92007-09-25 17:54:57 -0700965 if (is_legacy) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800966 lq_sta->table_count_limit = IWL_LEGACY_TABLE_COUNT;
967 lq_sta->max_failure_limit = IWL_LEGACY_FAILURE_LIMIT;
968 lq_sta->max_success_limit = IWL_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700969 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800970 lq_sta->table_count_limit = IWL_NONE_LEGACY_TABLE_COUNT;
971 lq_sta->max_failure_limit = IWL_NONE_LEGACY_FAILURE_LIMIT;
972 lq_sta->max_success_limit = IWL_NONE_LEGACY_SUCCESS_LIMIT;
Zhu Yib481de92007-09-25 17:54:57 -0700973 }
Tomas Winklerc33104f2008-01-14 17:46:21 -0800974 lq_sta->table_count = 0;
975 lq_sta->total_failed = 0;
976 lq_sta->total_success = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700977}
978
Ben Cahill77626352007-11-29 11:09:44 +0800979/*
980 * Find correct throughput table for given mode of modulation
981 */
Tomas Winklere227cea2008-07-18 13:53:05 +0800982static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta,
983 struct iwl_scale_tbl_info *tbl)
Zhu Yib481de92007-09-25 17:54:57 -0700984{
985 if (is_legacy(tbl->lq_type)) {
986 if (!is_a_band(tbl->lq_type))
987 tbl->expected_tpt = expected_tpt_G;
988 else
989 tbl->expected_tpt = expected_tpt_A;
990 } else if (is_siso(tbl->lq_type)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -0800991 if (tbl->is_fat && !lq_sta->is_dup)
Zhu Yib481de92007-09-25 17:54:57 -0700992 if (tbl->is_SGI)
993 tbl->expected_tpt = expected_tpt_siso40MHzSGI;
994 else
995 tbl->expected_tpt = expected_tpt_siso40MHz;
996 else if (tbl->is_SGI)
997 tbl->expected_tpt = expected_tpt_siso20MHzSGI;
998 else
999 tbl->expected_tpt = expected_tpt_siso20MHz;
1000
Guy Cohenfde0db32008-04-21 15:42:01 -07001001 } else if (is_mimo(tbl->lq_type)) { /* FIXME:need to separate mimo2/3 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001002 if (tbl->is_fat && !lq_sta->is_dup)
Zhu Yib481de92007-09-25 17:54:57 -07001003 if (tbl->is_SGI)
1004 tbl->expected_tpt = expected_tpt_mimo40MHzSGI;
1005 else
1006 tbl->expected_tpt = expected_tpt_mimo40MHz;
1007 else if (tbl->is_SGI)
1008 tbl->expected_tpt = expected_tpt_mimo20MHzSGI;
1009 else
1010 tbl->expected_tpt = expected_tpt_mimo20MHz;
1011 } else
1012 tbl->expected_tpt = expected_tpt_G;
1013}
1014
Ben Cahill77626352007-11-29 11:09:44 +08001015/*
1016 * Find starting rate for new "search" high-throughput mode of modulation.
1017 * Goal is to find lowest expected rate (under perfect conditions) that is
1018 * above the current measured throughput of "active" mode, to give new mode
1019 * a fair chance to prove itself without too many challenges.
1020 *
1021 * This gets called when transitioning to more aggressive modulation
1022 * (i.e. legacy to SISO or MIMO, or SISO to MIMO), as well as less aggressive
1023 * (i.e. MIMO to SISO). When moving to MIMO, bit rate will typically need
1024 * to decrease to match "active" throughput. When moving from MIMO to SISO,
1025 * bit rate will typically need to increase, but not if performance was bad.
1026 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001027static s32 rs_get_best_rate(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001028 struct iwl_lq_sta *lq_sta,
1029 struct iwl_scale_tbl_info *tbl, /* "search" */
Guy Cohenf935a6d2008-04-23 17:15:02 -07001030 u16 rate_mask, s8 index)
Zhu Yib481de92007-09-25 17:54:57 -07001031{
Ben Cahill77626352007-11-29 11:09:44 +08001032 /* "active" values */
Tomas Winklere227cea2008-07-18 13:53:05 +08001033 struct iwl_scale_tbl_info *active_tbl =
Tomas Winklerc33104f2008-01-14 17:46:21 -08001034 &(lq_sta->lq_info[lq_sta->active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001035 s32 active_sr = active_tbl->win[index].success_ratio;
Zhu Yib481de92007-09-25 17:54:57 -07001036 s32 active_tpt = active_tbl->expected_tpt[index];
Ben Cahill77626352007-11-29 11:09:44 +08001037
1038 /* expected "search" throughput */
1039 s32 *tpt_tbl = tbl->expected_tpt;
1040
1041 s32 new_rate, high, low, start_hi;
Zhu Yib481de92007-09-25 17:54:57 -07001042 u16 high_low;
Guy Cohenf935a6d2008-04-23 17:15:02 -07001043 s8 rate = index;
Zhu Yib481de92007-09-25 17:54:57 -07001044
1045 new_rate = high = low = start_hi = IWL_RATE_INVALID;
1046
1047 for (; ;) {
Ester Kummerbf403db2008-05-05 10:22:40 +08001048 high_low = rs_get_adjacent_rate(priv, rate, rate_mask,
1049 tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001050
1051 low = high_low & 0xff;
1052 high = (high_low >> 8) & 0xff;
1053
Ben Cahill77626352007-11-29 11:09:44 +08001054 /*
1055 * Lower the "search" bit rate, to give new "search" mode
1056 * approximately the same throughput as "active" if:
1057 *
1058 * 1) "Active" mode has been working modestly well (but not
1059 * great), and expected "search" throughput (under perfect
1060 * conditions) at candidate rate is above the actual
1061 * measured "active" throughput (but less than expected
1062 * "active" throughput under perfect conditions).
1063 * OR
1064 * 2) "Active" mode has been working perfectly or very well
1065 * and expected "search" throughput (under perfect
1066 * conditions) at candidate rate is above expected
1067 * "active" throughput (under perfect conditions).
1068 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001069 if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
Zhu Yib481de92007-09-25 17:54:57 -07001070 ((active_sr > IWL_RATE_DECREASE_TH) &&
1071 (active_sr <= IWL_RATE_HIGH_TH) &&
1072 (tpt_tbl[rate] <= active_tpt))) ||
1073 ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
1074 (tpt_tbl[rate] > active_tpt))) {
1075
Ben Cahill77626352007-11-29 11:09:44 +08001076 /* (2nd or later pass)
1077 * If we've already tried to raise the rate, and are
1078 * now trying to lower it, use the higher rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001079 if (start_hi != IWL_RATE_INVALID) {
1080 new_rate = start_hi;
1081 break;
1082 }
Ben Cahill77626352007-11-29 11:09:44 +08001083
Zhu Yib481de92007-09-25 17:54:57 -07001084 new_rate = rate;
Ben Cahill77626352007-11-29 11:09:44 +08001085
1086 /* Loop again with lower rate */
Zhu Yib481de92007-09-25 17:54:57 -07001087 if (low != IWL_RATE_INVALID)
1088 rate = low;
Ben Cahill77626352007-11-29 11:09:44 +08001089
1090 /* Lower rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001091 else
1092 break;
Ben Cahill77626352007-11-29 11:09:44 +08001093
1094 /* Else try to raise the "search" rate to match "active" */
Zhu Yib481de92007-09-25 17:54:57 -07001095 } else {
Ben Cahill77626352007-11-29 11:09:44 +08001096 /* (2nd or later pass)
1097 * If we've already tried to lower the rate, and are
1098 * now trying to raise it, use the lower rate. */
Zhu Yib481de92007-09-25 17:54:57 -07001099 if (new_rate != IWL_RATE_INVALID)
1100 break;
Ben Cahill77626352007-11-29 11:09:44 +08001101
1102 /* Loop again with higher rate */
Zhu Yib481de92007-09-25 17:54:57 -07001103 else if (high != IWL_RATE_INVALID) {
1104 start_hi = high;
1105 rate = high;
Ben Cahill77626352007-11-29 11:09:44 +08001106
1107 /* Higher rate not available, use the original */
Zhu Yib481de92007-09-25 17:54:57 -07001108 } else {
Guy Cohen90d77952008-09-09 10:54:53 +08001109 new_rate = rate;
Zhu Yib481de92007-09-25 17:54:57 -07001110 break;
1111 }
1112 }
1113 }
1114
1115 return new_rate;
1116}
Zhu Yib481de92007-09-25 17:54:57 -07001117
Ben Cahill77626352007-11-29 11:09:44 +08001118/*
1119 * Set up search table for MIMO
1120 */
Guy Cohenfde0db32008-04-21 15:42:01 -07001121static int rs_switch_to_mimo2(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001122 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001123 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001124 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001125 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001126{
Zhu Yib481de92007-09-25 17:54:57 -07001127 u16 rate_mask;
1128 s32 rate;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001129 s8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001130
Johannes Bergae5eb022008-10-14 16:58:37 +02001131 if (!conf->ht.enabled || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001132 return -1;
1133
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001134 if (((sta->ht_cap.cap & IEEE80211_HT_CAP_SM_PS) >> 2)
Tomas Winkler00c5ae22008-09-03 11:26:42 +08001135 == WLAN_HT_CAP_SM_PS_STATIC)
Zhu Yib481de92007-09-25 17:54:57 -07001136 return -1;
1137
Ben Cahill77626352007-11-29 11:09:44 +08001138 /* Need both Tx chains/antennas to support MIMO */
Guy Cohenaade00c2008-04-23 17:14:59 -07001139 if (priv->hw_params.tx_chains_num < 2)
Zhu Yib481de92007-09-25 17:54:57 -07001140 return -1;
1141
Guy Coheneecd6e52008-04-23 17:14:58 -07001142 IWL_DEBUG_RATE("LQ: try to switch to MIMO2\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001143
1144 tbl->lq_type = LQ_MIMO2;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001145 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001146 tbl->action = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001147 rate_mask = lq_sta->active_mimo2_rate;
1148
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001149 if (priv->current_ht_config.supported_chan_width
Guy Cohen39e88502008-04-23 17:14:57 -07001150 == IWL_CHANNEL_WIDTH_40MHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001151 tbl->is_fat = 1;
1152 else
1153 tbl->is_fat = 0;
1154
Guy Cohen39e88502008-04-23 17:14:57 -07001155 /* FIXME: - don't toggle SGI here
Zhu Yib481de92007-09-25 17:54:57 -07001156 if (tbl->is_fat) {
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001157 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001158 tbl->is_SGI = 1;
1159 else
1160 tbl->is_SGI = 0;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001161 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001162 tbl->is_SGI = 1;
1163 else
1164 tbl->is_SGI = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001165 */
Zhu Yib481de92007-09-25 17:54:57 -07001166
Guy Coheneecd6e52008-04-23 17:14:58 -07001167 rs_set_expected_tpt_table(lq_sta, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07001168
Guy Cohenf935a6d2008-04-23 17:15:02 -07001169 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001170
Guy Coheneecd6e52008-04-23 17:14:58 -07001171 IWL_DEBUG_RATE("LQ: MIMO2 best rate %d mask %X\n", rate, rate_mask);
Guy Cohen39e88502008-04-23 17:14:57 -07001172
1173 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001174 IWL_DEBUG_RATE("Can't switch with index %d rate mask %x\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001175 rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001176 return -1;
Guy Cohen39e88502008-04-23 17:14:57 -07001177 }
1178 tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001179
Guy Coheneecd6e52008-04-23 17:14:58 -07001180 IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001181 tbl->current_rate, is_green);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001182 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001183}
1184
Ben Cahill77626352007-11-29 11:09:44 +08001185/*
1186 * Set up search table for SISO
1187 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001188static int rs_switch_to_siso(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001189 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001190 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001191 struct ieee80211_sta *sta,
Tomas Winklere227cea2008-07-18 13:53:05 +08001192 struct iwl_scale_tbl_info *tbl, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001193{
Zhu Yib481de92007-09-25 17:54:57 -07001194 u16 rate_mask;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001195 u8 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001196 s32 rate;
1197
Johannes Bergae5eb022008-10-14 16:58:37 +02001198 if (!conf->ht.enabled || !sta->ht_cap.ht_supported)
Zhu Yib481de92007-09-25 17:54:57 -07001199 return -1;
1200
Guy Coheneecd6e52008-04-23 17:14:58 -07001201 IWL_DEBUG_RATE("LQ: try to switch to SISO\n");
Guy Cohen39e88502008-04-23 17:14:57 -07001202
Tomas Winklerc33104f2008-01-14 17:46:21 -08001203 tbl->is_dup = lq_sta->is_dup;
Zhu Yib481de92007-09-25 17:54:57 -07001204 tbl->lq_type = LQ_SISO;
1205 tbl->action = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001206 rate_mask = lq_sta->active_siso_rate;
Zhu Yib481de92007-09-25 17:54:57 -07001207
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001208 if (priv->current_ht_config.supported_chan_width
1209 == IWL_CHANNEL_WIDTH_40MHZ)
Zhu Yib481de92007-09-25 17:54:57 -07001210 tbl->is_fat = 1;
1211 else
1212 tbl->is_fat = 0;
1213
Guy Cohen39e88502008-04-23 17:14:57 -07001214 /* FIXME: - don't toggle SGI here
Zhu Yib481de92007-09-25 17:54:57 -07001215 if (tbl->is_fat) {
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001216 if (priv->current_ht_config.sgf & HT_SHORT_GI_40MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001217 tbl->is_SGI = 1;
1218 else
1219 tbl->is_SGI = 0;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001220 } else if (priv->current_ht_config.sgf & HT_SHORT_GI_20MHZ_ONLY)
Zhu Yib481de92007-09-25 17:54:57 -07001221 tbl->is_SGI = 1;
1222 else
1223 tbl->is_SGI = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001224 */
Zhu Yib481de92007-09-25 17:54:57 -07001225
1226 if (is_green)
Guy Cohen39e88502008-04-23 17:14:57 -07001227 tbl->is_SGI = 0; /*11n spec: no SGI in SISO+Greenfield*/
Zhu Yib481de92007-09-25 17:54:57 -07001228
Guy Coheneecd6e52008-04-23 17:14:58 -07001229 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohenf935a6d2008-04-23 17:15:02 -07001230 rate = rs_get_best_rate(priv, lq_sta, tbl, rate_mask, index);
Zhu Yib481de92007-09-25 17:54:57 -07001231
Guy Coheneecd6e52008-04-23 17:14:58 -07001232 IWL_DEBUG_RATE("LQ: get best rate %d mask %X\n", rate, rate_mask);
Zhu Yib481de92007-09-25 17:54:57 -07001233 if ((rate == IWL_RATE_INVALID) || !((1 << rate) & rate_mask)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001234 IWL_DEBUG_RATE("can not switch with index %d rate mask %x\n",
Zhu Yib481de92007-09-25 17:54:57 -07001235 rate, rate_mask);
1236 return -1;
1237 }
Guy Cohen39e88502008-04-23 17:14:57 -07001238 tbl->current_rate = rate_n_flags_from_tbl(tbl, rate, is_green);
Guy Coheneecd6e52008-04-23 17:14:58 -07001239 IWL_DEBUG_RATE("LQ: Switch to new mcs %X index is green %X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001240 tbl->current_rate, is_green);
Mohamed Abbas403ab562007-11-06 22:06:25 -08001241 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001242}
1243
Ben Cahill77626352007-11-29 11:09:44 +08001244/*
1245 * Try to switch to new modulation mode from legacy
1246 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001247static int rs_move_legacy_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001248 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001249 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001250 struct ieee80211_sta *sta,
Zhu Yib481de92007-09-25 17:54:57 -07001251 int index)
1252{
Tomas Winklere227cea2008-07-18 13:53:05 +08001253 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1254 struct iwl_scale_tbl_info *search_tbl =
1255 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1256 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1257 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1258 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001259 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001260 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001261 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001262 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001263
1264 for (; ;) {
1265 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001266 case IWL_LEGACY_SWITCH_ANTENNA1:
1267 case IWL_LEGACY_SWITCH_ANTENNA2:
Guy Cohenf935a6d2008-04-23 17:15:02 -07001268 IWL_DEBUG_RATE("LQ: Legacy toggle Antenna\n");
Zhu Yib481de92007-09-25 17:54:57 -07001269
Tomas Winklerc33104f2008-01-14 17:46:21 -08001270 lq_sta->action_counter++;
Ben Cahill77626352007-11-29 11:09:44 +08001271
Guy Cohen3110bef2008-09-09 10:54:54 +08001272 if ((tbl->action == IWL_LEGACY_SWITCH_ANTENNA1 &&
1273 tx_chains_num <= 1) ||
1274 (tbl->action == IWL_LEGACY_SWITCH_ANTENNA2 &&
1275 tx_chains_num <= 2))
1276 break;
1277
Ben Cahill77626352007-11-29 11:09:44 +08001278 /* Don't change antenna if success has been great */
Zhu Yib481de92007-09-25 17:54:57 -07001279 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1280 break;
Ben Cahill77626352007-11-29 11:09:44 +08001281
Ben Cahill77626352007-11-29 11:09:44 +08001282 /* Set up search table to try other antenna */
Zhu Yib481de92007-09-25 17:54:57 -07001283 memcpy(search_tbl, tbl, sz);
1284
Guy Cohenaade00c2008-04-23 17:14:59 -07001285 if (rs_toggle_antenna(valid_tx_ant,
1286 &search_tbl->current_rate, search_tbl)) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001287 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohenaade00c2008-04-23 17:14:59 -07001288 goto out;
1289 }
Guy Cohena5e8b502008-05-29 16:35:11 +08001290 break;
Zhu Yib481de92007-09-25 17:54:57 -07001291 case IWL_LEGACY_SWITCH_SISO:
Guy Coheneecd6e52008-04-23 17:14:58 -07001292 IWL_DEBUG_RATE("LQ: Legacy switch to SISO\n");
Ben Cahill77626352007-11-29 11:09:44 +08001293
1294 /* Set up search table to try SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001295 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001296 search_tbl->is_SGI = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001297 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001298 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001299 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001300 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001301 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001302 }
Zhu Yib481de92007-09-25 17:54:57 -07001303
1304 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001305 case IWL_LEGACY_SWITCH_MIMO2_AB:
1306 case IWL_LEGACY_SWITCH_MIMO2_AC:
1307 case IWL_LEGACY_SWITCH_MIMO2_BC:
Guy Coheneecd6e52008-04-23 17:14:58 -07001308 IWL_DEBUG_RATE("LQ: Legacy switch to MIMO2\n");
Ben Cahill77626352007-11-29 11:09:44 +08001309
1310 /* Set up search table to try MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001311 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001312 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001313
1314 if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AB)
1315 search_tbl->ant_type = ANT_AB;
1316 else if (tbl->action == IWL_LEGACY_SWITCH_MIMO2_AC)
1317 search_tbl->ant_type = ANT_AC;
1318 else
1319 search_tbl->ant_type = ANT_BC;
1320
1321 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1322 break;
1323
Guy Cohenfde0db32008-04-21 15:42:01 -07001324 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001325 search_tbl, index);
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001326 if (!ret) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001327 lq_sta->action_counter = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001328 goto out;
Tomas Winklerdc2453ae2007-10-25 17:15:25 +08001329 }
Zhu Yib481de92007-09-25 17:54:57 -07001330 break;
1331 }
1332 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001333 if (tbl->action > IWL_LEGACY_SWITCH_MIMO2_BC)
1334 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001335
1336 if (tbl->action == start_action)
1337 break;
1338
1339 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001340 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001341 return 0;
1342
Guy Cohen3110bef2008-09-09 10:54:54 +08001343out:
1344 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001345 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001346 if (tbl->action > IWL_LEGACY_SWITCH_MIMO2_BC)
1347 tbl->action = IWL_LEGACY_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001348 return 0;
1349
1350}
1351
Ben Cahill77626352007-11-29 11:09:44 +08001352/*
1353 * Try to switch to new modulation mode from SISO
1354 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001355static int rs_move_siso_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001356 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001357 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001358 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001359{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001360 u8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001361 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1362 struct iwl_scale_tbl_info *search_tbl =
1363 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
1364 struct iwl_rate_scale_data *window = &(tbl->win[index]);
1365 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1366 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001367 u8 start_action = tbl->action;
Guy Cohenfde0db32008-04-21 15:42:01 -07001368 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
Guy Cohen3110bef2008-09-09 10:54:54 +08001369 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenfde0db32008-04-21 15:42:01 -07001370 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001371
1372 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001373 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001374 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001375 case IWL_SISO_SWITCH_ANTENNA1:
1376 case IWL_SISO_SWITCH_ANTENNA2:
Guy Coheneecd6e52008-04-23 17:14:58 -07001377 IWL_DEBUG_RATE("LQ: SISO toggle Antenna\n");
Guy Cohen3110bef2008-09-09 10:54:54 +08001378
1379 if ((tbl->action == IWL_SISO_SWITCH_ANTENNA1 &&
1380 tx_chains_num <= 1) ||
1381 (tbl->action == IWL_SISO_SWITCH_ANTENNA2 &&
1382 tx_chains_num <= 2))
1383 break;
1384
Zhu Yib481de92007-09-25 17:54:57 -07001385 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1386 break;
Zhu Yib481de92007-09-25 17:54:57 -07001387
1388 memcpy(search_tbl, tbl, sz);
Guy Cohenaade00c2008-04-23 17:14:59 -07001389 if (rs_toggle_antenna(valid_tx_ant,
Guy Cohen3110bef2008-09-09 10:54:54 +08001390 &search_tbl->current_rate, search_tbl))
Guy Cohenaade00c2008-04-23 17:14:59 -07001391 goto out;
Guy Cohena5e8b502008-05-29 16:35:11 +08001392 break;
Guy Cohen3110bef2008-09-09 10:54:54 +08001393 case IWL_SISO_SWITCH_MIMO2_AB:
1394 case IWL_SISO_SWITCH_MIMO2_AC:
1395 case IWL_SISO_SWITCH_MIMO2_BC:
Guy Cohena5e8b502008-05-29 16:35:11 +08001396 IWL_DEBUG_RATE("LQ: SISO switch to MIMO2\n");
Zhu Yib481de92007-09-25 17:54:57 -07001397 memcpy(search_tbl, tbl, sz);
Zhu Yib481de92007-09-25 17:54:57 -07001398 search_tbl->is_SGI = 0;
Guy Cohen3110bef2008-09-09 10:54:54 +08001399
1400 if (tbl->action == IWL_SISO_SWITCH_MIMO2_AB)
1401 search_tbl->ant_type = ANT_AB;
1402 else if (tbl->action == IWL_SISO_SWITCH_MIMO2_AC)
1403 search_tbl->ant_type = ANT_AC;
1404 else
1405 search_tbl->ant_type = ANT_BC;
1406
1407 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1408 break;
1409
Guy Cohenfde0db32008-04-21 15:42:01 -07001410 ret = rs_switch_to_mimo2(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001411 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001412 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001413 goto out;
1414 break;
1415 case IWL_SISO_SWITCH_GI:
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001416 if (!tbl->is_fat &&
1417 !(priv->current_ht_config.sgf &
1418 HT_SHORT_GI_20MHZ))
1419 break;
1420 if (tbl->is_fat &&
1421 !(priv->current_ht_config.sgf &
1422 HT_SHORT_GI_40MHZ))
1423 break;
1424
Guy Coheneecd6e52008-04-23 17:14:58 -07001425 IWL_DEBUG_RATE("LQ: SISO toggle SGI/NGI\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001426
Zhu Yib481de92007-09-25 17:54:57 -07001427 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001428 if (is_green) {
1429 if (!tbl->is_SGI)
1430 break;
1431 else
1432 IWL_ERROR("SGI was set in GF+SISO\n");
Zhu Yib481de92007-09-25 17:54:57 -07001433 }
Guy Cohen39e88502008-04-23 17:14:57 -07001434 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001435 rs_set_expected_tpt_table(lq_sta, search_tbl);
Guy Cohen39e88502008-04-23 17:14:57 -07001436 if (tbl->is_SGI) {
1437 s32 tpt = lq_sta->last_tpt / 100;
1438 if (tpt >= search_tbl->expected_tpt[index])
1439 break;
1440 }
1441 search_tbl->current_rate = rate_n_flags_from_tbl(
1442 search_tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001443 goto out;
1444 }
1445 tbl->action++;
1446 if (tbl->action > IWL_SISO_SWITCH_GI)
Guy Cohen3110bef2008-09-09 10:54:54 +08001447 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001448
1449 if (tbl->action == start_action)
1450 break;
1451 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001452 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001453 return 0;
1454
1455 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001456 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001457 tbl->action++;
1458 if (tbl->action > IWL_SISO_SWITCH_GI)
Guy Cohen3110bef2008-09-09 10:54:54 +08001459 tbl->action = IWL_SISO_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001460 return 0;
1461}
1462
Ben Cahill77626352007-11-29 11:09:44 +08001463/*
1464 * Try to switch to new modulation mode from MIMO
1465 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001466static int rs_move_mimo_to_other(struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08001467 struct iwl_lq_sta *lq_sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001468 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001469 struct ieee80211_sta *sta, int index)
Zhu Yib481de92007-09-25 17:54:57 -07001470{
Tomas Winklerc33104f2008-01-14 17:46:21 -08001471 s8 is_green = lq_sta->is_green;
Tomas Winklere227cea2008-07-18 13:53:05 +08001472 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]);
1473 struct iwl_scale_tbl_info *search_tbl =
1474 &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Guy Cohen3110bef2008-09-09 10:54:54 +08001475 struct iwl_rate_scale_data *window = &(tbl->win[index]);
Tomas Winklere227cea2008-07-18 13:53:05 +08001476 u32 sz = (sizeof(struct iwl_scale_tbl_info) -
1477 (sizeof(struct iwl_rate_scale_data) * IWL_RATE_COUNT));
Zhu Yib481de92007-09-25 17:54:57 -07001478 u8 start_action = tbl->action;
Guy Cohen3110bef2008-09-09 10:54:54 +08001479 u8 valid_tx_ant = priv->hw_params.valid_tx_ant;
1480 u8 tx_chains_num = priv->hw_params.tx_chains_num;
Guy Cohenaade00c2008-04-23 17:14:59 -07001481 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001482
1483 for (;;) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001484 lq_sta->action_counter++;
Zhu Yib481de92007-09-25 17:54:57 -07001485 switch (tbl->action) {
Guy Cohen3110bef2008-09-09 10:54:54 +08001486 case IWL_MIMO2_SWITCH_ANTENNA1:
1487 case IWL_MIMO2_SWITCH_ANTENNA2:
1488 IWL_DEBUG_RATE("LQ: MIMO toggle Antennas\n");
1489
1490 if (tx_chains_num <= 2)
1491 break;
1492
1493 if (window->success_ratio >= IWL_RS_GOOD_RATIO)
1494 break;
1495
1496 memcpy(search_tbl, tbl, sz);
1497 if (rs_toggle_antenna(valid_tx_ant,
1498 &search_tbl->current_rate, search_tbl))
1499 goto out;
1500 break;
1501 case IWL_MIMO2_SWITCH_SISO_A:
1502 case IWL_MIMO2_SWITCH_SISO_B:
1503 case IWL_MIMO2_SWITCH_SISO_C:
Guy Coheneecd6e52008-04-23 17:14:58 -07001504 IWL_DEBUG_RATE("LQ: MIMO2 switch to SISO\n");
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001505
Ben Cahill77626352007-11-29 11:09:44 +08001506 /* Set up new search table for SISO */
Zhu Yib481de92007-09-25 17:54:57 -07001507 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001508
Guy Cohen3110bef2008-09-09 10:54:54 +08001509 if (tbl->action == IWL_MIMO2_SWITCH_SISO_A)
Guy Cohenfde0db32008-04-21 15:42:01 -07001510 search_tbl->ant_type = ANT_A;
Guy Cohen3110bef2008-09-09 10:54:54 +08001511 else if (tbl->action == IWL_MIMO2_SWITCH_SISO_B)
Guy Cohenfde0db32008-04-21 15:42:01 -07001512 search_tbl->ant_type = ANT_B;
Guy Cohen3110bef2008-09-09 10:54:54 +08001513 else
1514 search_tbl->ant_type = ANT_C;
1515
1516 if (!rs_is_valid_ant(valid_tx_ant, search_tbl->ant_type))
1517 break;
Zhu Yib481de92007-09-25 17:54:57 -07001518
Tomas Winklerc33104f2008-01-14 17:46:21 -08001519 ret = rs_switch_to_siso(priv, lq_sta, conf, sta,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001520 search_tbl, index);
Guy Cohen3110bef2008-09-09 10:54:54 +08001521 if (!ret)
Zhu Yib481de92007-09-25 17:54:57 -07001522 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001523
Zhu Yib481de92007-09-25 17:54:57 -07001524 break;
1525
Guy Cohen3110bef2008-09-09 10:54:54 +08001526 case IWL_MIMO2_SWITCH_GI:
Emmanuel Grumbacha9841012008-05-15 13:54:08 +08001527 if (!tbl->is_fat &&
1528 !(priv->current_ht_config.sgf &
1529 HT_SHORT_GI_20MHZ))
1530 break;
1531 if (tbl->is_fat &&
1532 !(priv->current_ht_config.sgf &
1533 HT_SHORT_GI_40MHZ))
1534 break;
1535
Guy Coheneecd6e52008-04-23 17:14:58 -07001536 IWL_DEBUG_RATE("LQ: MIMO toggle SGI/NGI\n");
Ben Cahill77626352007-11-29 11:09:44 +08001537
1538 /* Set up new search table for MIMO */
Zhu Yib481de92007-09-25 17:54:57 -07001539 memcpy(search_tbl, tbl, sz);
Guy Cohen39e88502008-04-23 17:14:57 -07001540 search_tbl->is_SGI = !tbl->is_SGI;
Guy Coheneecd6e52008-04-23 17:14:58 -07001541 rs_set_expected_tpt_table(lq_sta, search_tbl);
Ben Cahill77626352007-11-29 11:09:44 +08001542 /*
1543 * If active table already uses the fastest possible
1544 * modulation (dual stream with short guard interval),
1545 * and it's working well, there's no need to look
1546 * for a better type of modulation!
1547 */
Guy Cohen39e88502008-04-23 17:14:57 -07001548 if (tbl->is_SGI) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001549 s32 tpt = lq_sta->last_tpt / 100;
Guy Cohen39e88502008-04-23 17:14:57 -07001550 if (tpt >= search_tbl->expected_tpt[index])
1551 break;
Zhu Yib481de92007-09-25 17:54:57 -07001552 }
Guy Cohen39e88502008-04-23 17:14:57 -07001553 search_tbl->current_rate = rate_n_flags_from_tbl(
1554 search_tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07001555 goto out;
1556
1557 }
1558 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001559 if (tbl->action > IWL_MIMO2_SWITCH_GI)
1560 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001561
1562 if (tbl->action == start_action)
1563 break;
1564 }
Guy Cohen3110bef2008-09-09 10:54:54 +08001565 search_tbl->lq_type = LQ_NONE;
Zhu Yib481de92007-09-25 17:54:57 -07001566 return 0;
1567 out:
Guy Cohen3110bef2008-09-09 10:54:54 +08001568 lq_sta->search_better_tbl = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001569 tbl->action++;
Guy Cohen3110bef2008-09-09 10:54:54 +08001570 if (tbl->action > IWL_MIMO2_SWITCH_GI)
1571 tbl->action = IWL_MIMO2_SWITCH_ANTENNA1;
Zhu Yib481de92007-09-25 17:54:57 -07001572 return 0;
1573
1574}
1575
Ben Cahill77626352007-11-29 11:09:44 +08001576/*
1577 * Check whether we should continue using same modulation mode, or
1578 * begin search for a new mode, based on:
1579 * 1) # tx successes or failures while using this mode
1580 * 2) # times calling this function
1581 * 3) elapsed time in this mode (not used, for now)
1582 */
Tomas Winklere227cea2008-07-18 13:53:05 +08001583static void rs_stay_in_table(struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001584{
Tomas Winklere227cea2008-07-18 13:53:05 +08001585 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001586 int i;
1587 int active_tbl;
1588 int flush_interval_passed = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08001589 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07001590
Ester Kummerbf403db2008-05-05 10:22:40 +08001591 priv = lq_sta->drv;
Tomas Winklerc33104f2008-01-14 17:46:21 -08001592 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001593
Tomas Winklerc33104f2008-01-14 17:46:21 -08001594 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001595
Ben Cahill77626352007-11-29 11:09:44 +08001596 /* If we've been disallowing search, see if we should now allow it */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001597 if (lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001598
Ben Cahill77626352007-11-29 11:09:44 +08001599 /* Elapsed time using current modulation mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001600 if (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001601 flush_interval_passed =
1602 time_after(jiffies,
Tomas Winklerc33104f2008-01-14 17:46:21 -08001603 (unsigned long)(lq_sta->flush_timer +
Zhu Yib481de92007-09-25 17:54:57 -07001604 IWL_RATE_SCALE_FLUSH_INTVL));
1605
Ben Cahill77626352007-11-29 11:09:44 +08001606 /*
1607 * Check if we should allow search for new modulation mode.
1608 * If many frames have failed or succeeded, or we've used
1609 * this same modulation for a long time, allow search, and
1610 * reset history stats that keep track of whether we should
1611 * allow a new search. Also (below) reset all bitmaps and
1612 * stats in active history.
1613 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001614 if ((lq_sta->total_failed > lq_sta->max_failure_limit) ||
1615 (lq_sta->total_success > lq_sta->max_success_limit) ||
1616 ((!lq_sta->search_better_tbl) && (lq_sta->flush_timer)
Zhu Yib481de92007-09-25 17:54:57 -07001617 && (flush_interval_passed))) {
Guy Coheneecd6e52008-04-23 17:14:58 -07001618 IWL_DEBUG_RATE("LQ: stay is expired %d %d %d\n:",
Tomas Winklerc33104f2008-01-14 17:46:21 -08001619 lq_sta->total_failed,
1620 lq_sta->total_success,
Zhu Yib481de92007-09-25 17:54:57 -07001621 flush_interval_passed);
Ben Cahill77626352007-11-29 11:09:44 +08001622
1623 /* Allow search for new mode */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001624 lq_sta->stay_in_tbl = 0; /* only place reset */
1625 lq_sta->total_failed = 0;
1626 lq_sta->total_success = 0;
1627 lq_sta->flush_timer = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001628
1629 /*
1630 * Else if we've used this modulation mode enough repetitions
1631 * (regardless of elapsed time or success/failure), reset
1632 * history bitmaps and rate-specific stats for all rates in
1633 * active table.
1634 */
Mohamed Abbas403ab562007-11-06 22:06:25 -08001635 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001636 lq_sta->table_count++;
1637 if (lq_sta->table_count >=
1638 lq_sta->table_count_limit) {
1639 lq_sta->table_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001640
Guy Coheneecd6e52008-04-23 17:14:58 -07001641 IWL_DEBUG_RATE("LQ: stay in table clear win\n");
Zhu Yib481de92007-09-25 17:54:57 -07001642 for (i = 0; i < IWL_RATE_COUNT; i++)
1643 rs_rate_scale_clear_window(
1644 &(tbl->win[i]));
1645 }
1646 }
1647
Ben Cahill77626352007-11-29 11:09:44 +08001648 /* If transitioning to allow "search", reset all history
1649 * bitmaps and stats in active table (this will become the new
1650 * "search" table). */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001651 if (!lq_sta->stay_in_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001652 for (i = 0; i < IWL_RATE_COUNT; i++)
1653 rs_rate_scale_clear_window(&(tbl->win[i]));
1654 }
1655 }
1656}
1657
Ben Cahill77626352007-11-29 11:09:44 +08001658/*
1659 * Do rate scaling and search for new modulation mode.
1660 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001661static void rs_rate_scale_perform(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07001662 struct ieee80211_hdr *hdr,
Johannes Berg4b7679a2008-09-18 18:14:18 +02001663 struct ieee80211_sta *sta,
1664 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001665{
Johannes Berg4b7679a2008-09-18 18:14:18 +02001666 struct ieee80211_hw *hw = priv->hw;
Ron Rindjunsky270243a2007-11-26 16:14:41 +02001667 struct ieee80211_conf *conf = &hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07001668 int low = IWL_RATE_INVALID;
1669 int high = IWL_RATE_INVALID;
1670 int index;
1671 int i;
Tomas Winklere227cea2008-07-18 13:53:05 +08001672 struct iwl_rate_scale_data *window = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07001673 int current_tpt = IWL_INVALID_VALUE;
1674 int low_tpt = IWL_INVALID_VALUE;
1675 int high_tpt = IWL_INVALID_VALUE;
1676 u32 fail_count;
1677 s8 scale_action = 0;
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001678 u16 rate_mask;
Zhu Yib481de92007-09-25 17:54:57 -07001679 u8 update_lq = 0;
Tomas Winklere227cea2008-07-18 13:53:05 +08001680 struct iwl_scale_tbl_info *tbl, *tbl1;
Zhu Yib481de92007-09-25 17:54:57 -07001681 u16 rate_scale_index_msk = 0;
Guy Cohen39e88502008-04-23 17:14:57 -07001682 u32 rate;
Zhu Yib481de92007-09-25 17:54:57 -07001683 u8 is_green = 0;
1684 u8 active_tbl = 0;
1685 u8 done_search = 0;
1686 u16 high_low;
Guy Cohena5e8b502008-05-29 16:35:11 +08001687 s32 sr;
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02001688 u8 tid = MAX_TID_COUNT;
Zhu Yib481de92007-09-25 17:54:57 -07001689
1690 IWL_DEBUG_RATE("rate scale calculate new rate for skb\n");
1691
Tomas Winkler417f1142008-11-12 13:14:06 -08001692 /* Send management frames and broadcast/multicast data using
1693 * lowest rate. */
1694 /* TODO: this could probably be improved.. */
1695 if (!ieee80211_is_data(hdr->frame_control) ||
1696 is_multicast_ether_addr(hdr->addr1))
Zhu Yib481de92007-09-25 17:54:57 -07001697 return;
Zhu Yib481de92007-09-25 17:54:57 -07001698
Johannes Berg4b7679a2008-09-18 18:14:18 +02001699 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07001700 return;
1701
Johannes Berg4b7679a2008-09-18 18:14:18 +02001702 lq_sta->supp_rates = sta->supp_rates[lq_sta->band];
Zhu Yib481de92007-09-25 17:54:57 -07001703
Ron Rindjunskyfaa29712008-06-12 09:46:58 +08001704 tid = rs_tl_add_packet(lq_sta, hdr);
1705
Ben Cahill77626352007-11-29 11:09:44 +08001706 /*
1707 * Select rate-scale / modulation-mode table to work with in
1708 * the rest of this function: "search" if searching for better
1709 * modulation mode, or "active" if doing rate scaling within a mode.
1710 */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001711 if (!lq_sta->search_better_tbl)
1712 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001713 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001714 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001715
Tomas Winklerc33104f2008-01-14 17:46:21 -08001716 tbl = &(lq_sta->lq_info[active_tbl]);
1717 is_green = lq_sta->is_green;
Zhu Yib481de92007-09-25 17:54:57 -07001718
Ben Cahill77626352007-11-29 11:09:44 +08001719 /* current tx rate */
Johannes Bergb7e35002008-09-11 02:22:58 +02001720 index = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07001721
1722 IWL_DEBUG_RATE("Rate scale index %d for type %d\n", index,
1723 tbl->lq_type);
1724
Ben Cahill77626352007-11-29 11:09:44 +08001725 /* rates available for this association, and for modulation mode */
Guy Coheneecd6e52008-04-23 17:14:58 -07001726 rate_mask = rs_get_supported_rates(lq_sta, hdr, tbl->lq_type);
Zhu Yib481de92007-09-25 17:54:57 -07001727
1728 IWL_DEBUG_RATE("mask 0x%04X \n", rate_mask);
1729
1730 /* mask with station rate restriction */
1731 if (is_legacy(tbl->lq_type)) {
Johannes Berg8318d782008-01-24 19:38:38 +01001732 if (lq_sta->band == IEEE80211_BAND_5GHZ)
Ben Cahill77626352007-11-29 11:09:44 +08001733 /* supp_rates has no CCK bits in A mode */
Zhu Yib481de92007-09-25 17:54:57 -07001734 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08001735 (lq_sta->supp_rates << IWL_FIRST_OFDM_RATE));
Zhu Yib481de92007-09-25 17:54:57 -07001736 else
1737 rate_scale_index_msk = (u16) (rate_mask &
Tomas Winklerc33104f2008-01-14 17:46:21 -08001738 lq_sta->supp_rates);
Zhu Yib481de92007-09-25 17:54:57 -07001739
1740 } else
1741 rate_scale_index_msk = rate_mask;
1742
1743 if (!rate_scale_index_msk)
1744 rate_scale_index_msk = rate_mask;
1745
Guy Cohen07bc28e2008-04-23 17:15:03 -07001746 if (!((1 << index) & rate_scale_index_msk)) {
1747 IWL_ERROR("Current Rate is not valid\n");
1748 return;
Zhu Yib481de92007-09-25 17:54:57 -07001749 }
1750
Ben Cahill77626352007-11-29 11:09:44 +08001751 /* Get expected throughput table and history window for current rate */
Guy Cohen07bc28e2008-04-23 17:15:03 -07001752 if (!tbl->expected_tpt) {
1753 IWL_ERROR("tbl->expected_tpt is NULL\n");
1754 return;
1755 }
Zhu Yib481de92007-09-25 17:54:57 -07001756
1757 window = &(tbl->win[index]);
1758
Ben Cahill77626352007-11-29 11:09:44 +08001759 /*
1760 * If there is not enough history to calculate actual average
1761 * throughput, keep analyzing results of more tx frames, without
1762 * changing rate or mode (bypass most of the rest of this function).
1763 * Set up new rate table in uCode only if old rate is not supported
1764 * in current association (use new rate found above).
1765 */
Zhu Yib481de92007-09-25 17:54:57 -07001766 fail_count = window->counter - window->success_counter;
Guy Cohen07bc28e2008-04-23 17:15:03 -07001767 if ((fail_count < IWL_RATE_MIN_FAILURE_TH) &&
1768 (window->success_counter < IWL_RATE_MIN_SUCCESS_TH)) {
1769 IWL_DEBUG_RATE("LQ: still below TH. succ=%d total=%d "
Zhu Yib481de92007-09-25 17:54:57 -07001770 "for index %d\n",
1771 window->success_counter, window->counter, index);
Ben Cahill77626352007-11-29 11:09:44 +08001772
1773 /* Can't calculate this yet; not enough history */
Zhu Yib481de92007-09-25 17:54:57 -07001774 window->average_tpt = IWL_INVALID_VALUE;
Ben Cahill77626352007-11-29 11:09:44 +08001775
1776 /* Should we stay with this modulation mode,
1777 * or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001778 rs_stay_in_table(lq_sta);
Ben Cahill77626352007-11-29 11:09:44 +08001779
Zhu Yib481de92007-09-25 17:54:57 -07001780 goto out;
Guy Cohen3110bef2008-09-09 10:54:54 +08001781 }
Zhu Yib481de92007-09-25 17:54:57 -07001782
Ben Cahill77626352007-11-29 11:09:44 +08001783 /* Else we have enough samples; calculate estimate of
1784 * actual average throughput */
Guy Cohen3110bef2008-09-09 10:54:54 +08001785
1786 BUG_ON(window->average_tpt != ((window->success_ratio *
1787 tbl->expected_tpt[index] + 64) / 128));
Zhu Yib481de92007-09-25 17:54:57 -07001788
Ben Cahill77626352007-11-29 11:09:44 +08001789 /* If we are searching for better modulation mode, check success. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001790 if (lq_sta->search_better_tbl) {
Zhu Yib481de92007-09-25 17:54:57 -07001791
Ben Cahill77626352007-11-29 11:09:44 +08001792 /* If good success, continue using the "search" mode;
1793 * no need to send new link quality command, since we're
1794 * continuing to use the setup that we've been trying. */
Guy Cohen07bc28e2008-04-23 17:15:03 -07001795 if (window->average_tpt > lq_sta->last_tpt) {
1796
Guy Cohen3110bef2008-09-09 10:54:54 +08001797 IWL_DEBUG_RATE("LQ: SWITCHING TO NEW TABLE "
Guy Cohen07bc28e2008-04-23 17:15:03 -07001798 "suc=%d cur-tpt=%d old-tpt=%d\n",
1799 window->success_ratio,
1800 window->average_tpt,
1801 lq_sta->last_tpt);
1802
1803 if (!is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001804 lq_sta->enable_counter = 1;
Guy Cohen07bc28e2008-04-23 17:15:03 -07001805
Ben Cahill77626352007-11-29 11:09:44 +08001806 /* Swap tables; "search" becomes "active" */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001807 lq_sta->active_tbl = active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07001808 current_tpt = window->average_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08001809
1810 /* Else poor success; go back to mode in "active" table */
Zhu Yib481de92007-09-25 17:54:57 -07001811 } else {
Guy Cohen07bc28e2008-04-23 17:15:03 -07001812
1813 IWL_DEBUG_RATE("LQ: GOING BACK TO THE OLD TABLE "
1814 "suc=%d cur-tpt=%d old-tpt=%d\n",
1815 window->success_ratio,
1816 window->average_tpt,
1817 lq_sta->last_tpt);
1818
Ben Cahill77626352007-11-29 11:09:44 +08001819 /* Nullify "search" table */
Zhu Yib481de92007-09-25 17:54:57 -07001820 tbl->lq_type = LQ_NONE;
Ben Cahill77626352007-11-29 11:09:44 +08001821
1822 /* Revert to "active" table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001823 active_tbl = lq_sta->active_tbl;
1824 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07001825
Ben Cahill77626352007-11-29 11:09:44 +08001826 /* Revert to "active" rate and throughput info */
Tomas Winklere7d326a2008-06-12 09:47:11 +08001827 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Tomas Winklerc33104f2008-01-14 17:46:21 -08001828 current_tpt = lq_sta->last_tpt;
Ben Cahill77626352007-11-29 11:09:44 +08001829
1830 /* Need to set up a new rate table in uCode */
1831 update_lq = 1;
Zhu Yib481de92007-09-25 17:54:57 -07001832 }
Ben Cahill77626352007-11-29 11:09:44 +08001833
1834 /* Either way, we've made a decision; modulation mode
1835 * search is done, allow rate adjustment next time. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001836 lq_sta->search_better_tbl = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001837 done_search = 1; /* Don't switch modes below! */
Zhu Yib481de92007-09-25 17:54:57 -07001838 goto lq_update;
1839 }
1840
Ben Cahill77626352007-11-29 11:09:44 +08001841 /* (Else) not in search of better modulation mode, try for better
1842 * starting rate, while staying in this mode. */
Ester Kummerbf403db2008-05-05 10:22:40 +08001843 high_low = rs_get_adjacent_rate(priv, index, rate_scale_index_msk,
Zhu Yib481de92007-09-25 17:54:57 -07001844 tbl->lq_type);
1845 low = high_low & 0xff;
1846 high = (high_low >> 8) & 0xff;
1847
Guy Cohena5e8b502008-05-29 16:35:11 +08001848 sr = window->success_ratio;
1849
Ben Cahill77626352007-11-29 11:09:44 +08001850 /* Collect measured throughputs for current and adjacent rates */
Zhu Yib481de92007-09-25 17:54:57 -07001851 current_tpt = window->average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001852 if (low != IWL_RATE_INVALID)
1853 low_tpt = tbl->win[low].average_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001854 if (high != IWL_RATE_INVALID)
1855 high_tpt = tbl->win[high].average_tpt;
1856
Guy Cohena5e8b502008-05-29 16:35:11 +08001857 scale_action = 0;
Zhu Yib481de92007-09-25 17:54:57 -07001858
Ben Cahill77626352007-11-29 11:09:44 +08001859 /* Too many failures, decrease rate */
Guy Cohena5e8b502008-05-29 16:35:11 +08001860 if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
Zhu Yib481de92007-09-25 17:54:57 -07001861 IWL_DEBUG_RATE("decrease rate because of low success_ratio\n");
1862 scale_action = -1;
Ben Cahill77626352007-11-29 11:09:44 +08001863
1864 /* No throughput measured yet for adjacent rates; try increase. */
Zhu Yib481de92007-09-25 17:54:57 -07001865 } else if ((low_tpt == IWL_INVALID_VALUE) &&
Guy Cohena5e8b502008-05-29 16:35:11 +08001866 (high_tpt == IWL_INVALID_VALUE)) {
1867
1868 if (high != IWL_RATE_INVALID && sr >= IWL_RATE_INCREASE_TH)
1869 scale_action = 1;
1870 else if (low != IWL_RATE_INVALID)
1871 scale_action = -1;
1872 }
Ben Cahill77626352007-11-29 11:09:44 +08001873
1874 /* Both adjacent throughputs are measured, but neither one has better
1875 * throughput; we're using the best rate, don't change it! */
Zhu Yib481de92007-09-25 17:54:57 -07001876 else if ((low_tpt != IWL_INVALID_VALUE) &&
1877 (high_tpt != IWL_INVALID_VALUE) &&
1878 (low_tpt < current_tpt) &&
1879 (high_tpt < current_tpt))
1880 scale_action = 0;
Ben Cahill77626352007-11-29 11:09:44 +08001881
1882 /* At least one adjacent rate's throughput is measured,
1883 * and may have better performance. */
Zhu Yib481de92007-09-25 17:54:57 -07001884 else {
Ben Cahill77626352007-11-29 11:09:44 +08001885 /* Higher adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07001886 if (high_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08001887 /* Higher rate has better throughput */
Guy Cohena5e8b502008-05-29 16:35:11 +08001888 if (high_tpt > current_tpt &&
1889 sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07001890 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001891 } else {
Zhu Yib481de92007-09-25 17:54:57 -07001892 IWL_DEBUG_RATE
1893 ("decrease rate because of high tpt\n");
1894 scale_action = -1;
1895 }
Ben Cahill77626352007-11-29 11:09:44 +08001896
1897 /* Lower adjacent rate's throughput is measured */
Zhu Yib481de92007-09-25 17:54:57 -07001898 } else if (low_tpt != IWL_INVALID_VALUE) {
Ben Cahill77626352007-11-29 11:09:44 +08001899 /* Lower rate has better throughput */
Zhu Yib481de92007-09-25 17:54:57 -07001900 if (low_tpt > current_tpt) {
1901 IWL_DEBUG_RATE
1902 ("decrease rate because of low tpt\n");
1903 scale_action = -1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001904 } else if (sr >= IWL_RATE_INCREASE_TH) {
Zhu Yib481de92007-09-25 17:54:57 -07001905 scale_action = 1;
Guy Cohena5e8b502008-05-29 16:35:11 +08001906 }
Zhu Yib481de92007-09-25 17:54:57 -07001907 }
1908 }
1909
Ben Cahill77626352007-11-29 11:09:44 +08001910 /* Sanity check; asked for decrease, but success rate or throughput
1911 * has been good at old rate. Don't change it. */
Guy Cohena5e8b502008-05-29 16:35:11 +08001912 if ((scale_action == -1) && (low != IWL_RATE_INVALID) &&
1913 ((sr > IWL_RATE_HIGH_TH) ||
Zhu Yib481de92007-09-25 17:54:57 -07001914 (current_tpt > (100 * tbl->expected_tpt[low]))))
Zhu Yib481de92007-09-25 17:54:57 -07001915 scale_action = 0;
1916
1917 switch (scale_action) {
1918 case -1:
Ben Cahill77626352007-11-29 11:09:44 +08001919 /* Decrease starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07001920 if (low != IWL_RATE_INVALID) {
1921 update_lq = 1;
1922 index = low;
1923 }
1924 break;
1925 case 1:
Ben Cahill77626352007-11-29 11:09:44 +08001926 /* Increase starting rate, update uCode's rate table */
Zhu Yib481de92007-09-25 17:54:57 -07001927 if (high != IWL_RATE_INVALID) {
1928 update_lq = 1;
1929 index = high;
1930 }
1931
1932 break;
1933 case 0:
Ben Cahill77626352007-11-29 11:09:44 +08001934 /* No change */
Zhu Yib481de92007-09-25 17:54:57 -07001935 default:
1936 break;
1937 }
1938
Guy Coheneecd6e52008-04-23 17:14:58 -07001939 IWL_DEBUG_RATE("choose rate scale index %d action %d low %d "
Zhu Yib481de92007-09-25 17:54:57 -07001940 "high %d type %d\n",
1941 index, scale_action, low, high, tbl->lq_type);
1942
Guy Cohena5e8b502008-05-29 16:35:11 +08001943lq_update:
Ben Cahill77626352007-11-29 11:09:44 +08001944 /* Replace uCode's rate table for the destination station. */
Zhu Yib481de92007-09-25 17:54:57 -07001945 if (update_lq) {
Guy Cohen39e88502008-04-23 17:14:57 -07001946 rate = rate_n_flags_from_tbl(tbl, index, is_green);
Guy Cohen07bc28e2008-04-23 17:15:03 -07001947 rs_fill_link_cmd(priv, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07001948 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07001949 }
Ben Cahill77626352007-11-29 11:09:44 +08001950
1951 /* Should we stay with this modulation mode, or search for a new one? */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001952 rs_stay_in_table(lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07001953
Ben Cahill77626352007-11-29 11:09:44 +08001954 /*
1955 * Search for new modulation mode if we're:
1956 * 1) Not changing rates right now
1957 * 2) Not just finishing up a search
1958 * 3) Allowing a new search
1959 */
Guy Cohen47cfd462008-05-27 11:29:34 +08001960 if (!update_lq && !done_search && !lq_sta->stay_in_tbl && window->counter) {
Ben Cahill77626352007-11-29 11:09:44 +08001961 /* Save current throughput to compare with "search" throughput*/
Tomas Winklerc33104f2008-01-14 17:46:21 -08001962 lq_sta->last_tpt = current_tpt;
Zhu Yib481de92007-09-25 17:54:57 -07001963
Ben Cahill77626352007-11-29 11:09:44 +08001964 /* Select a new "search" modulation mode to try.
1965 * If one is found, set up the new "search" table. */
Zhu Yib481de92007-09-25 17:54:57 -07001966 if (is_legacy(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001967 rs_move_legacy_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001968 else if (is_siso(tbl->lq_type))
Tomas Winklerc33104f2008-01-14 17:46:21 -08001969 rs_move_siso_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001970 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08001971 rs_move_mimo_to_other(priv, lq_sta, conf, sta, index);
Zhu Yib481de92007-09-25 17:54:57 -07001972
Ben Cahill77626352007-11-29 11:09:44 +08001973 /* If new "search" mode was selected, set up in uCode table */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001974 if (lq_sta->search_better_tbl) {
Ben Cahill77626352007-11-29 11:09:44 +08001975 /* Access the "search" table, clear its history. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001976 tbl = &(lq_sta->lq_info[(1 - lq_sta->active_tbl)]);
Zhu Yib481de92007-09-25 17:54:57 -07001977 for (i = 0; i < IWL_RATE_COUNT; i++)
1978 rs_rate_scale_clear_window(&(tbl->win[i]));
1979
Ben Cahill77626352007-11-29 11:09:44 +08001980 /* Use new "search" start rate */
Tomas Winklere7d326a2008-06-12 09:47:11 +08001981 index = iwl_hwrate_to_plcp_idx(tbl->current_rate);
Zhu Yib481de92007-09-25 17:54:57 -07001982
Guy Coheneecd6e52008-04-23 17:14:58 -07001983 IWL_DEBUG_RATE("Switch current mcs: %X index: %d\n",
Guy Cohen39e88502008-04-23 17:14:57 -07001984 tbl->current_rate, index);
Guy Cohen07bc28e2008-04-23 17:15:03 -07001985 rs_fill_link_cmd(priv, lq_sta, tbl->current_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07001986 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07001987 }
Zhu Yib481de92007-09-25 17:54:57 -07001988
Ben Cahill77626352007-11-29 11:09:44 +08001989 /* If the "active" (non-search) mode was legacy,
1990 * and we've tried switching antennas,
1991 * but we haven't been able to try HT modes (not available),
1992 * stay with best antenna legacy modulation for a while
1993 * before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08001994 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]);
Johannes Bergae5eb022008-10-14 16:58:37 +02001995 if (is_legacy(tbl1->lq_type) && !conf->ht.enabled &&
1996 lq_sta->action_counter >= 1) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08001997 lq_sta->action_counter = 0;
Guy Coheneecd6e52008-04-23 17:14:58 -07001998 IWL_DEBUG_RATE("LQ: STAY in legacy table\n");
Ester Kummerbf403db2008-05-05 10:22:40 +08001999 rs_set_stay_in_table(priv, 1, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002000 }
2001
Ben Cahill77626352007-11-29 11:09:44 +08002002 /* If we're in an HT mode, and all 3 mode switch actions
2003 * have been tried and compared, stay in this best modulation
2004 * mode for a while before next round of mode comparisons. */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002005 if (lq_sta->enable_counter &&
2006 (lq_sta->action_counter >= IWL_ACTION_LIMIT)) {
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002007 if ((lq_sta->last_tpt > IWL_AGG_TPT_THREHOLD) &&
2008 (lq_sta->tx_agg_tid_en & (1 << tid)) &&
2009 (tid != MAX_TID_COUNT)) {
Guy Coheneecd6e52008-04-23 17:14:58 -07002010 IWL_DEBUG_RATE("try to aggregate tid %d\n", tid);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002011 rs_tl_turn_on_agg(priv, tid, lq_sta, sta);
Zhu Yib481de92007-09-25 17:54:57 -07002012 }
Tomas Winklerc33104f2008-01-14 17:46:21 -08002013 lq_sta->action_counter = 0;
Ester Kummerbf403db2008-05-05 10:22:40 +08002014 rs_set_stay_in_table(priv, 0, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002015 }
Ben Cahill77626352007-11-29 11:09:44 +08002016
2017 /*
2018 * Else, don't search for a new modulation mode.
2019 * Put new timestamp in stay-in-modulation-mode flush timer if:
2020 * 1) Not changing rates right now
2021 * 2) Not just finishing up a search
2022 * 3) flush timer is empty
2023 */
Zhu Yib481de92007-09-25 17:54:57 -07002024 } else {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002025 if ((!update_lq) && (!done_search) && (!lq_sta->flush_timer))
2026 lq_sta->flush_timer = jiffies;
Zhu Yib481de92007-09-25 17:54:57 -07002027 }
2028
2029out:
Guy Cohen39e88502008-04-23 17:14:57 -07002030 tbl->current_rate = rate_n_flags_from_tbl(tbl, index, is_green);
Zhu Yib481de92007-09-25 17:54:57 -07002031 i = index;
Johannes Bergb7e35002008-09-11 02:22:58 +02002032 lq_sta->last_txrate_idx = i;
Zhu Yib481de92007-09-25 17:54:57 -07002033
Zhu Yib481de92007-09-25 17:54:57 -07002034 return;
2035}
2036
2037
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002038static void rs_initialize_lq(struct iwl_priv *priv,
Ron Rindjunsky270243a2007-11-26 16:14:41 +02002039 struct ieee80211_conf *conf,
Johannes Berg4b7679a2008-09-18 18:14:18 +02002040 struct ieee80211_sta *sta,
2041 struct iwl_lq_sta *lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002042{
Tomas Winklere227cea2008-07-18 13:53:05 +08002043 struct iwl_scale_tbl_info *tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002044 int rate_idx;
Guy Cohenaade00c2008-04-23 17:14:59 -07002045 int i;
Guy Cohen39e88502008-04-23 17:14:57 -07002046 u32 rate;
Guy Cohenaade00c2008-04-23 17:14:59 -07002047 u8 use_green = rs_use_green(priv, conf);
2048 u8 active_tbl = 0;
2049 u8 valid_tx_ant;
Zhu Yib481de92007-09-25 17:54:57 -07002050
Johannes Berg4b7679a2008-09-18 18:14:18 +02002051 if (!sta || !lq_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002052 goto out;
2053
Johannes Bergb7e35002008-09-11 02:22:58 +02002054 i = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002055
Tomas Winklerc33104f2008-01-14 17:46:21 -08002056 if ((lq_sta->lq.sta_id == 0xff) &&
Johannes Berg05c914f2008-09-11 00:01:58 +02002057 (priv->iw_mode == NL80211_IFTYPE_ADHOC))
Zhu Yib481de92007-09-25 17:54:57 -07002058 goto out;
2059
Guy Cohenaade00c2008-04-23 17:14:59 -07002060 valid_tx_ant = priv->hw_params.valid_tx_ant;
2061
Tomas Winklerc33104f2008-01-14 17:46:21 -08002062 if (!lq_sta->search_better_tbl)
2063 active_tbl = lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002064 else
Tomas Winklerc33104f2008-01-14 17:46:21 -08002065 active_tbl = 1 - lq_sta->active_tbl;
Zhu Yib481de92007-09-25 17:54:57 -07002066
Tomas Winklerc33104f2008-01-14 17:46:21 -08002067 tbl = &(lq_sta->lq_info[active_tbl]);
Zhu Yib481de92007-09-25 17:54:57 -07002068
2069 if ((i < 0) || (i >= IWL_RATE_COUNT))
2070 i = 0;
2071
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002072 rate = iwl_rates[i].plcp;
Winkler, Tomaseb48dca2008-10-29 14:05:48 -07002073 tbl->ant_type = first_antenna(valid_tx_ant);
2074 rate |= tbl->ant_type << RATE_MCS_ANT_POS;
Zhu Yib481de92007-09-25 17:54:57 -07002075
2076 if (i >= IWL_FIRST_CCK_RATE && i <= IWL_LAST_CCK_RATE)
Guy Cohen39e88502008-04-23 17:14:57 -07002077 rate |= RATE_MCS_CCK_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07002078
Guy Cohen39e88502008-04-23 17:14:57 -07002079 rs_get_tbl_info_from_mcs(rate, priv->band, tbl, &rate_idx);
Guy Cohenaade00c2008-04-23 17:14:59 -07002080 if (!rs_is_valid_ant(valid_tx_ant, tbl->ant_type))
2081 rs_toggle_antenna(valid_tx_ant, &rate, tbl);
Zhu Yib481de92007-09-25 17:54:57 -07002082
Guy Cohen39e88502008-04-23 17:14:57 -07002083 rate = rate_n_flags_from_tbl(tbl, rate_idx, use_green);
2084 tbl->current_rate = rate;
Guy Coheneecd6e52008-04-23 17:14:58 -07002085 rs_set_expected_tpt_table(lq_sta, tbl);
Guy Cohen07bc28e2008-04-23 17:15:03 -07002086 rs_fill_link_cmd(NULL, lq_sta, rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002087 iwl_send_lq_cmd(priv, &lq_sta->lq, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002088 out:
2089 return;
2090}
2091
Johannes Berge6a98542008-10-21 12:40:02 +02002092static void rs_get_rate(void *priv_r, struct ieee80211_sta *sta, void *priv_sta,
2093 struct ieee80211_tx_rate_control *txrc)
Zhu Yib481de92007-09-25 17:54:57 -07002094{
2095
Johannes Berge6a98542008-10-21 12:40:02 +02002096 struct sk_buff *skb = txrc->skb;
2097 struct ieee80211_supported_band *sband = txrc->sband;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002098 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2099 struct ieee80211_conf *conf = &priv->hw->conf;
Zhu Yib481de92007-09-25 17:54:57 -07002100 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berge6a98542008-10-21 12:40:02 +02002101 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Tomas Winkler417f1142008-11-12 13:14:06 -08002102 struct iwl_lq_sta *lq_sta = priv_sta;
2103 int rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002104
Zhu Yi58826352007-09-27 11:27:39 +08002105 IWL_DEBUG_RATE_LIMIT("rate scale calculate new rate for skb\n");
Zhu Yib481de92007-09-25 17:54:57 -07002106
Michael Wu2bc454b2007-12-25 19:33:16 -05002107 /* Send management frames and broadcast/multicast data using lowest
2108 * rate. */
Tomas Winkler417f1142008-11-12 13:14:06 -08002109 if (!ieee80211_is_data(hdr->frame_control) ||
2110 is_multicast_ether_addr(hdr->addr1) || !sta || !lq_sta) {
Johannes Berge6a98542008-10-21 12:40:02 +02002111 info->control.rates[0].idx = rate_lowest_index(sband, sta);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002112 return;
Zhu Yib481de92007-09-25 17:54:57 -07002113 }
2114
Tomas Winkler417f1142008-11-12 13:14:06 -08002115 rate_idx = lq_sta->last_txrate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002116
Johannes Berg05c914f2008-09-11 00:01:58 +02002117 if ((priv->iw_mode == NL80211_IFTYPE_ADHOC) &&
Tomas Winklerc33104f2008-01-14 17:46:21 -08002118 !lq_sta->ibss_sta_added) {
Tomas Winkler947b13a2008-04-16 16:34:48 -07002119 u8 sta_id = iwl_find_station(priv, hdr->addr1);
Zhu Yib481de92007-09-25 17:54:57 -07002120
2121 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002122 IWL_DEBUG_RATE("LQ: ADD station %pM\n",
2123 hdr->addr1);
Tomas Winkler4f40e4d2008-05-15 13:54:04 +08002124 sta_id = iwl_add_station_flags(priv, hdr->addr1,
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002125 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002126 }
2127 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002128 lq_sta->lq.sta_id = sta_id;
2129 lq_sta->lq.rs_table[0].rate_n_flags = 0;
2130 lq_sta->ibss_sta_added = 1;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002131 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002132 }
Zhu Yib481de92007-09-25 17:54:57 -07002133 }
2134
Tomas Winkler417f1142008-11-12 13:14:06 -08002135 if (rate_idx < 0 || rate_idx > IWL_RATE_COUNT)
2136 rate_idx = rate_lowest_index(sband, sta);
2137 else if (sband->band == IEEE80211_BAND_5GHZ)
2138 rate_idx -= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002139
Tomas Winkler417f1142008-11-12 13:14:06 -08002140 info->control.rates[0].idx = rate_idx;
Zhu Yib481de92007-09-25 17:54:57 -07002141}
2142
Johannes Berg4b7679a2008-09-18 18:14:18 +02002143static void *rs_alloc_sta(void *priv_rate, struct ieee80211_sta *sta,
2144 gfp_t gfp)
Zhu Yib481de92007-09-25 17:54:57 -07002145{
Tomas Winklere227cea2008-07-18 13:53:05 +08002146 struct iwl_lq_sta *lq_sta;
Ester Kummerbf403db2008-05-05 10:22:40 +08002147 struct iwl_priv *priv;
Zhu Yib481de92007-09-25 17:54:57 -07002148 int i, j;
2149
Ester Kummerbf403db2008-05-05 10:22:40 +08002150 priv = (struct iwl_priv *)priv_rate;
Zhu Yib481de92007-09-25 17:54:57 -07002151 IWL_DEBUG_RATE("create station rate scale window\n");
2152
Tomas Winklere227cea2008-07-18 13:53:05 +08002153 lq_sta = kzalloc(sizeof(struct iwl_lq_sta), gfp);
Zhu Yib481de92007-09-25 17:54:57 -07002154
Tomas Winklerc33104f2008-01-14 17:46:21 -08002155 if (lq_sta == NULL)
Zhu Yib481de92007-09-25 17:54:57 -07002156 return NULL;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002157 lq_sta->lq.sta_id = 0xff;
Zhu Yib481de92007-09-25 17:54:57 -07002158
Zhu Yi63fddb92007-09-27 11:27:36 +08002159
Zhu Yib481de92007-09-25 17:54:57 -07002160 for (j = 0; j < LQ_SIZE; j++)
2161 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002162 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002163
Tomas Winklerc33104f2008-01-14 17:46:21 -08002164 return lq_sta;
Zhu Yib481de92007-09-25 17:54:57 -07002165}
2166
Johannes Berg4b7679a2008-09-18 18:14:18 +02002167static void rs_rate_init(void *priv_r, struct ieee80211_supported_band *sband,
2168 struct ieee80211_sta *sta, void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002169{
2170 int i, j;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002171 struct iwl_priv *priv = (struct iwl_priv *)priv_r;
2172 struct ieee80211_conf *conf = &priv->hw->conf;
Tomas Winklere227cea2008-07-18 13:53:05 +08002173 struct iwl_lq_sta *lq_sta = priv_sta;
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002174 u16 mask_bit = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002175
Tomas Winklerc33104f2008-01-14 17:46:21 -08002176 lq_sta->flush_timer = 0;
Johannes Berg4b7679a2008-09-18 18:14:18 +02002177 lq_sta->supp_rates = sta->supp_rates[sband->band];
Zhu Yib481de92007-09-25 17:54:57 -07002178 for (j = 0; j < LQ_SIZE; j++)
2179 for (i = 0; i < IWL_RATE_COUNT; i++)
Tomas Winkler3ac7f142008-07-21 02:40:14 +03002180 rs_rate_scale_clear_window(&lq_sta->lq_info[j].win[i]);
Zhu Yib481de92007-09-25 17:54:57 -07002181
Guy Cohen3110bef2008-09-09 10:54:54 +08002182 IWL_DEBUG_RATE("LQ: *** rate scale station global init ***\n");
Zhu Yib481de92007-09-25 17:54:57 -07002183 /* TODO: what is a good starting rate for STA? About middle? Maybe not
2184 * the lowest or the highest rate.. Could consider using RSSI from
2185 * previous packets? Need to have IEEE 802.1X auth succeed immediately
2186 * after assoc.. */
2187
Tomas Winklerc33104f2008-01-14 17:46:21 -08002188 lq_sta->ibss_sta_added = 0;
Johannes Berg05c914f2008-09-11 00:01:58 +02002189 if (priv->iw_mode == NL80211_IFTYPE_AP) {
Johannes Berg4b7679a2008-09-18 18:14:18 +02002190 u8 sta_id = iwl_find_station(priv, sta->addr);
Joe Perches0795af52007-10-03 17:59:30 -07002191
Zhu Yib481de92007-09-25 17:54:57 -07002192 /* for IBSS the call are from tasklet */
Johannes Berge1749612008-10-27 15:59:26 -07002193 IWL_DEBUG_RATE("LQ: ADD station %pM\n", sta->addr);
Zhu Yib481de92007-09-25 17:54:57 -07002194
2195 if (sta_id == IWL_INVALID_STATION) {
Johannes Berge1749612008-10-27 15:59:26 -07002196 IWL_DEBUG_RATE("LQ: ADD station %pM\n", sta->addr);
Johannes Berg4b7679a2008-09-18 18:14:18 +02002197 sta_id = iwl_add_station_flags(priv, sta->addr,
Ron Rindjunsky67d62032007-11-26 16:14:40 +02002198 0, CMD_ASYNC, NULL);
Zhu Yib481de92007-09-25 17:54:57 -07002199 }
2200 if ((sta_id != IWL_INVALID_STATION)) {
Tomas Winklerc33104f2008-01-14 17:46:21 -08002201 lq_sta->lq.sta_id = sta_id;
2202 lq_sta->lq.rs_table[0].rate_n_flags = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002203 }
2204 /* FIXME: this is w/a remove it later */
2205 priv->assoc_station_added = 1;
2206 }
2207
Tomas Winklerc33104f2008-01-14 17:46:21 -08002208 lq_sta->is_dup = 0;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002209 lq_sta->is_green = rs_use_green(priv, conf);
Guy Cohen39e88502008-04-23 17:14:57 -07002210 lq_sta->active_legacy_rate = priv->active_rate & ~(0x1000);
Tomas Winklerc33104f2008-01-14 17:46:21 -08002211 lq_sta->active_rate_basic = priv->active_rate_basic;
Johannes Berg8318d782008-01-24 19:38:38 +01002212 lq_sta->band = priv->band;
Ben Cahill77626352007-11-29 11:09:44 +08002213 /*
2214 * active_siso_rate mask includes 9 MBits (bit 5), and CCK (bits 0-3),
2215 * supp_rates[] does not; shift to convert format, force 9 MBits off.
2216 */
Johannes Bergae5eb022008-10-14 16:58:37 +02002217 lq_sta->active_siso_rate = sta->ht_cap.mcs.rx_mask[0] << 1;
2218 lq_sta->active_siso_rate |= sta->ht_cap.mcs.rx_mask[0] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002219 lq_sta->active_siso_rate &= ~((u16)0x2);
2220 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE;
Zhu Yib481de92007-09-25 17:54:57 -07002221
Ben Cahill77626352007-11-29 11:09:44 +08002222 /* Same here */
Johannes Bergae5eb022008-10-14 16:58:37 +02002223 lq_sta->active_mimo2_rate = sta->ht_cap.mcs.rx_mask[1] << 1;
2224 lq_sta->active_mimo2_rate |= sta->ht_cap.mcs.rx_mask[1] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002225 lq_sta->active_mimo2_rate &= ~((u16)0x2);
2226 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE;
2227
Johannes Bergae5eb022008-10-14 16:58:37 +02002228 lq_sta->active_mimo3_rate = sta->ht_cap.mcs.rx_mask[2] << 1;
2229 lq_sta->active_mimo3_rate |= sta->ht_cap.mcs.rx_mask[2] & 0x1;
Guy Cohenfde0db32008-04-21 15:42:01 -07002230 lq_sta->active_mimo3_rate &= ~((u16)0x2);
2231 lq_sta->active_mimo3_rate <<= IWL_FIRST_OFDM_RATE;
2232
Guy Cohen07bc28e2008-04-23 17:15:03 -07002233 IWL_DEBUG_RATE("SISO-RATE=%X MIMO2-RATE=%X MIMO3-RATE=%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002234 lq_sta->active_siso_rate,
Guy Cohenfde0db32008-04-21 15:42:01 -07002235 lq_sta->active_mimo2_rate,
2236 lq_sta->active_mimo3_rate);
2237
Tomas Winklera96a27f2008-10-23 23:48:56 -07002238 /* These values will be overridden later */
Guy Cohen07bc28e2008-04-23 17:15:03 -07002239 lq_sta->lq.general_params.single_stream_ant_msk = ANT_A;
2240 lq_sta->lq.general_params.dual_stream_ant_msk = ANT_AB;
2241
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002242 /* as default allow aggregation for all tids */
2243 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002244 lq_sta->drv = priv;
Zhu Yib481de92007-09-25 17:54:57 -07002245
Mohamed Abbasd5e49032008-12-12 08:22:15 -08002246 /* Find highest tx rate supported by hardware and destination station */
2247 mask_bit = sta->supp_rates[sband->band] & lq_sta->active_legacy_rate;
2248 lq_sta->last_txrate_idx = 3;
2249 for (i = 0; i < sband->n_bitrates; i++)
2250 if (mask_bit & BIT(i))
2251 lq_sta->last_txrate_idx = i;
2252
2253 /* For MODE_IEEE80211A, skip over cck rates in global rate table */
2254 if (sband->band == IEEE80211_BAND_5GHZ)
2255 lq_sta->last_txrate_idx += IWL_FIRST_OFDM_RATE;
2256
Johannes Berg4b7679a2008-09-18 18:14:18 +02002257 rs_initialize_lq(priv, conf, sta, lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002258}
2259
Guy Cohenfde0db32008-04-21 15:42:01 -07002260static void rs_fill_link_cmd(const struct iwl_priv *priv,
Tomas Winklere227cea2008-07-18 13:53:05 +08002261 struct iwl_lq_sta *lq_sta, u32 new_rate)
Zhu Yib481de92007-09-25 17:54:57 -07002262{
Tomas Winklere227cea2008-07-18 13:53:05 +08002263 struct iwl_scale_tbl_info tbl_type;
Zhu Yib481de92007-09-25 17:54:57 -07002264 int index = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002265 int rate_idx;
Zhu Yi1b696de2007-09-27 11:27:41 +08002266 int repeat_rate = 0;
Guy Cohenaade00c2008-04-23 17:14:59 -07002267 u8 ant_toggle_cnt = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002268 u8 use_ht_possible = 1;
Guy Cohenaade00c2008-04-23 17:14:59 -07002269 u8 valid_tx_ant = 0;
Guy Cohen07bc28e2008-04-23 17:15:03 -07002270 struct iwl_link_quality_cmd *lq_cmd = &lq_sta->lq;
Zhu Yib481de92007-09-25 17:54:57 -07002271
Ben Cahill77626352007-11-29 11:09:44 +08002272 /* Override starting rate (index 0) if needed for debug purposes */
Guy Cohen39e88502008-04-23 17:14:57 -07002273 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Zhu Yi98d7e092007-09-27 11:27:42 +08002274
Guy Cohen39e88502008-04-23 17:14:57 -07002275 /* Interpret new_rate (rate_n_flags) */
Guy Cohenaade00c2008-04-23 17:14:59 -07002276 memset(&tbl_type, 0, sizeof(tbl_type));
Guy Cohen39e88502008-04-23 17:14:57 -07002277 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band,
Zhu Yib481de92007-09-25 17:54:57 -07002278 &tbl_type, &rate_idx);
2279
Ben Cahill77626352007-11-29 11:09:44 +08002280 /* How many times should we repeat the initial rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002281 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002282 ant_toggle_cnt = 1;
Zhu Yi1b696de2007-09-27 11:27:41 +08002283 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002284 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002285 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002286 }
Zhu Yib481de92007-09-25 17:54:57 -07002287
2288 lq_cmd->general_params.mimo_delimiter =
2289 is_mimo(tbl_type.lq_type) ? 1 : 0;
Ben Cahill77626352007-11-29 11:09:44 +08002290
2291 /* Fill 1st table entry (index 0) */
Guy Cohen39e88502008-04-23 17:14:57 -07002292 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002293
Guy Cohen07bc28e2008-04-23 17:15:03 -07002294 if (num_of_ant(tbl_type.ant_type) == 1) {
2295 lq_cmd->general_params.single_stream_ant_msk =
2296 tbl_type.ant_type;
2297 } else if (num_of_ant(tbl_type.ant_type) == 2) {
2298 lq_cmd->general_params.dual_stream_ant_msk =
2299 tbl_type.ant_type;
2300 } /* otherwise we don't modify the existing value */
Zhu Yib481de92007-09-25 17:54:57 -07002301
2302 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002303 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002304
Guy Cohenaade00c2008-04-23 17:14:59 -07002305 if (priv)
2306 valid_tx_ant = priv->hw_params.valid_tx_ant;
2307
Ben Cahill77626352007-11-29 11:09:44 +08002308 /* Fill rest of rate table */
Zhu Yib481de92007-09-25 17:54:57 -07002309 while (index < LINK_QUAL_MAX_RETRY_NUM) {
Ben Cahill77626352007-11-29 11:09:44 +08002310 /* Repeat initial/next rate.
2311 * For legacy IWL_NUMBER_TRY == 1, this loop will not execute.
2312 * For HT IWL_HT_NUMBER_TRY == 3, this executes twice. */
Zhu Yi1b696de2007-09-27 11:27:41 +08002313 while (repeat_rate > 0 && (index < LINK_QUAL_MAX_RETRY_NUM)) {
Zhu Yib481de92007-09-25 17:54:57 -07002314 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002315 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2316 ant_toggle_cnt++;
2317 else if (priv &&
2318 rs_toggle_antenna(valid_tx_ant,
2319 &new_rate, &tbl_type))
2320 ant_toggle_cnt = 1;
2321}
Zhu Yi98d7e092007-09-27 11:27:42 +08002322
Ben Cahill77626352007-11-29 11:09:44 +08002323 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002324 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002325
2326 /* Fill next table entry */
Zhu Yib481de92007-09-25 17:54:57 -07002327 lq_cmd->rs_table[index].rate_n_flags =
Guy Cohen39e88502008-04-23 17:14:57 -07002328 cpu_to_le32(new_rate);
Zhu Yi1b696de2007-09-27 11:27:41 +08002329 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002330 index++;
2331 }
2332
Guy Cohen39e88502008-04-23 17:14:57 -07002333 rs_get_tbl_info_from_mcs(new_rate, lq_sta->band, &tbl_type,
Zhu Yib481de92007-09-25 17:54:57 -07002334 &rate_idx);
2335
Ben Cahill77626352007-11-29 11:09:44 +08002336 /* Indicate to uCode which entries might be MIMO.
2337 * If initial rate was MIMO, this will finally end up
2338 * as (IWL_HT_NUMBER_TRY * 2), after 2nd pass, otherwise 0. */
Zhu Yib481de92007-09-25 17:54:57 -07002339 if (is_mimo(tbl_type.lq_type))
2340 lq_cmd->general_params.mimo_delimiter = index;
2341
Ben Cahill77626352007-11-29 11:09:44 +08002342 /* Get next rate */
Guy Cohen39e88502008-04-23 17:14:57 -07002343 new_rate = rs_get_lower_rate(lq_sta, &tbl_type, rate_idx,
2344 use_ht_possible);
Zhu Yib481de92007-09-25 17:54:57 -07002345
Ben Cahill77626352007-11-29 11:09:44 +08002346 /* How many times should we repeat the next rate? */
Zhu Yib481de92007-09-25 17:54:57 -07002347 if (is_legacy(tbl_type.lq_type)) {
Guy Cohenaade00c2008-04-23 17:14:59 -07002348 if (ant_toggle_cnt < NUM_TRY_BEFORE_ANT_TOGGLE)
2349 ant_toggle_cnt++;
2350 else if (priv &&
2351 rs_toggle_antenna(valid_tx_ant,
2352 &new_rate, &tbl_type))
2353 ant_toggle_cnt = 1;
2354
Zhu Yi1b696de2007-09-27 11:27:41 +08002355 repeat_rate = IWL_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002356 } else {
Zhu Yi1b696de2007-09-27 11:27:41 +08002357 repeat_rate = IWL_HT_NUMBER_TRY;
Guy Cohenaade00c2008-04-23 17:14:59 -07002358 }
Zhu Yib481de92007-09-25 17:54:57 -07002359
Ben Cahill77626352007-11-29 11:09:44 +08002360 /* Don't allow HT rates after next pass.
2361 * rs_get_lower_rate() will change type to LQ_A or LQ_G. */
Zhu Yib481de92007-09-25 17:54:57 -07002362 use_ht_possible = 0;
2363
Ben Cahill77626352007-11-29 11:09:44 +08002364 /* Override next rate if needed for debug purposes */
Tomas Winklerc33104f2008-01-14 17:46:21 -08002365 rs_dbgfs_set_mcs(lq_sta, &new_rate, index);
Ben Cahill77626352007-11-29 11:09:44 +08002366
2367 /* Fill next table entry */
Guy Cohen39e88502008-04-23 17:14:57 -07002368 lq_cmd->rs_table[index].rate_n_flags = cpu_to_le32(new_rate);
Zhu Yib481de92007-09-25 17:54:57 -07002369
2370 index++;
Zhu Yi1b696de2007-09-27 11:27:41 +08002371 repeat_rate--;
Zhu Yib481de92007-09-25 17:54:57 -07002372 }
2373
Tomas Winkler5e1dd8d2008-05-29 16:35:17 +08002374 lq_cmd->agg_params.agg_frame_cnt_limit = 64;
Zhu Yib481de92007-09-25 17:54:57 -07002375 lq_cmd->agg_params.agg_dis_start_th = 3;
2376 lq_cmd->agg_params.agg_time_limit = cpu_to_le16(4000);
Zhu Yib481de92007-09-25 17:54:57 -07002377}
2378
Johannes Berg4b7679a2008-09-18 18:14:18 +02002379static void *rs_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
Zhu Yib481de92007-09-25 17:54:57 -07002380{
Johannes Berg4b7679a2008-09-18 18:14:18 +02002381 return hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07002382}
2383/* rate scale requires free function to be implemented */
2384static void rs_free(void *priv_rate)
2385{
2386 return;
2387}
2388
Johannes Berg4b7679a2008-09-18 18:14:18 +02002389static void rs_free_sta(void *priv_r, struct ieee80211_sta *sta,
2390 void *priv_sta)
Zhu Yib481de92007-09-25 17:54:57 -07002391{
Tomas Winklere227cea2008-07-18 13:53:05 +08002392 struct iwl_lq_sta *lq_sta = priv_sta;
Rami Rosen45527c22008-10-07 09:50:01 +02002393 struct iwl_priv *priv __maybe_unused = priv_r;
Zhu Yib481de92007-09-25 17:54:57 -07002394
2395 IWL_DEBUG_RATE("enter\n");
Tomas Winklerc33104f2008-01-14 17:46:21 -08002396 kfree(lq_sta);
Zhu Yib481de92007-09-25 17:54:57 -07002397 IWL_DEBUG_RATE("leave\n");
2398}
2399
2400
Zhu Yi93dc6462007-09-27 11:27:37 +08002401#ifdef CONFIG_MAC80211_DEBUGFS
Zhu Yi5ae212c2007-09-27 11:27:38 +08002402static int open_file_generic(struct inode *inode, struct file *file)
2403{
2404 file->private_data = inode->i_private;
2405 return 0;
2406}
Tomas Winklere227cea2008-07-18 13:53:05 +08002407static void rs_dbgfs_set_mcs(struct iwl_lq_sta *lq_sta,
2408 u32 *rate_n_flags, int index)
Zhu Yi98d7e092007-09-27 11:27:42 +08002409{
Ester Kummerbf403db2008-05-05 10:22:40 +08002410 struct iwl_priv *priv;
2411
2412 priv = lq_sta->drv;
Guy Cohen39e88502008-04-23 17:14:57 -07002413 if (lq_sta->dbg_fixed_rate) {
2414 if (index < 12) {
2415 *rate_n_flags = lq_sta->dbg_fixed_rate;
2416 } else {
2417 if (lq_sta->band == IEEE80211_BAND_5GHZ)
2418 *rate_n_flags = 0x800D;
2419 else
2420 *rate_n_flags = 0x820A;
2421 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002422 IWL_DEBUG_RATE("Fixed rate ON\n");
Guy Cohen39e88502008-04-23 17:14:57 -07002423 } else {
2424 IWL_DEBUG_RATE("Fixed rate OFF\n");
Zhu Yi98d7e092007-09-27 11:27:42 +08002425 }
Zhu Yi98d7e092007-09-27 11:27:42 +08002426}
2427
2428static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file,
2429 const char __user *user_buf, size_t count, loff_t *ppos)
2430{
Tomas Winklere227cea2008-07-18 13:53:05 +08002431 struct iwl_lq_sta *lq_sta = file->private_data;
Ester Kummerbf403db2008-05-05 10:22:40 +08002432 struct iwl_priv *priv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002433 char buf[64];
2434 int buf_size;
2435 u32 parsed_rate;
2436
Ester Kummerbf403db2008-05-05 10:22:40 +08002437 priv = lq_sta->drv;
Zhu Yi98d7e092007-09-27 11:27:42 +08002438 memset(buf, 0, sizeof(buf));
2439 buf_size = min(count, sizeof(buf) - 1);
2440 if (copy_from_user(buf, user_buf, buf_size))
2441 return -EFAULT;
2442
2443 if (sscanf(buf, "%x", &parsed_rate) == 1)
Guy Cohen39e88502008-04-23 17:14:57 -07002444 lq_sta->dbg_fixed_rate = parsed_rate;
Zhu Yi98d7e092007-09-27 11:27:42 +08002445 else
Guy Cohen39e88502008-04-23 17:14:57 -07002446 lq_sta->dbg_fixed_rate = 0;
Zhu Yi98d7e092007-09-27 11:27:42 +08002447
Guy Cohen39e88502008-04-23 17:14:57 -07002448 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */
2449 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2450 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
2451 lq_sta->active_mimo3_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */
Zhu Yi98d7e092007-09-27 11:27:42 +08002452
2453 IWL_DEBUG_RATE("sta_id %d rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002454 lq_sta->lq.sta_id, lq_sta->dbg_fixed_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002455
Guy Cohen39e88502008-04-23 17:14:57 -07002456 if (lq_sta->dbg_fixed_rate) {
Guy Cohen07bc28e2008-04-23 17:15:03 -07002457 rs_fill_link_cmd(NULL, lq_sta, lq_sta->dbg_fixed_rate);
Tomas Winkler66c73db2008-04-15 16:01:40 -07002458 iwl_send_lq_cmd(lq_sta->drv, &lq_sta->lq, CMD_ASYNC);
Zhu Yi98d7e092007-09-27 11:27:42 +08002459 }
2460
2461 return count;
2462}
Zhu Yi0209dc12007-09-27 11:27:43 +08002463
Zhu Yi5ae212c2007-09-27 11:27:38 +08002464static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file,
2465 char __user *user_buf, size_t count, loff_t *ppos)
2466{
2467 char buff[1024];
2468 int desc = 0;
2469 int i = 0;
2470
Tomas Winklere227cea2008-07-18 13:53:05 +08002471 struct iwl_lq_sta *lq_sta = file->private_data;
Zhu Yi5ae212c2007-09-27 11:27:38 +08002472
Tomas Winklerc33104f2008-01-14 17:46:21 -08002473 desc += sprintf(buff+desc, "sta_id %d\n", lq_sta->lq.sta_id);
Zhu Yi98d7e092007-09-27 11:27:42 +08002474 desc += sprintf(buff+desc, "failed=%d success=%d rate=0%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002475 lq_sta->total_failed, lq_sta->total_success,
Guy Cohen39e88502008-04-23 17:14:57 -07002476 lq_sta->active_legacy_rate);
Zhu Yi98d7e092007-09-27 11:27:42 +08002477 desc += sprintf(buff+desc, "fixed rate 0x%X\n",
Guy Cohen39e88502008-04-23 17:14:57 -07002478 lq_sta->dbg_fixed_rate);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002479 desc += sprintf(buff+desc, "general:"
2480 "flags=0x%X mimo-d=%d s-ant0x%x d-ant=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002481 lq_sta->lq.general_params.flags,
2482 lq_sta->lq.general_params.mimo_delimiter,
2483 lq_sta->lq.general_params.single_stream_ant_msk,
2484 lq_sta->lq.general_params.dual_stream_ant_msk);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002485
2486 desc += sprintf(buff+desc, "agg:"
2487 "time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002488 le16_to_cpu(lq_sta->lq.agg_params.agg_time_limit),
2489 lq_sta->lq.agg_params.agg_dis_start_th,
2490 lq_sta->lq.agg_params.agg_frame_cnt_limit);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002491
2492 desc += sprintf(buff+desc,
2493 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002494 lq_sta->lq.general_params.start_rate_index[0],
2495 lq_sta->lq.general_params.start_rate_index[1],
2496 lq_sta->lq.general_params.start_rate_index[2],
2497 lq_sta->lq.general_params.start_rate_index[3]);
Zhu Yi5ae212c2007-09-27 11:27:38 +08002498
2499
2500 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++)
2501 desc += sprintf(buff+desc, " rate[%d] 0x%X\n",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002502 i, le32_to_cpu(lq_sta->lq.rs_table[i].rate_n_flags));
Zhu Yi5ae212c2007-09-27 11:27:38 +08002503
2504 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2505}
2506
2507static const struct file_operations rs_sta_dbgfs_scale_table_ops = {
Zhu Yi98d7e092007-09-27 11:27:42 +08002508 .write = rs_sta_dbgfs_scale_table_write,
Zhu Yi5ae212c2007-09-27 11:27:38 +08002509 .read = rs_sta_dbgfs_scale_table_read,
2510 .open = open_file_generic,
2511};
Zhu Yi0209dc12007-09-27 11:27:43 +08002512static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file,
2513 char __user *user_buf, size_t count, loff_t *ppos)
2514{
2515 char buff[1024];
2516 int desc = 0;
2517 int i, j;
2518
Tomas Winklere227cea2008-07-18 13:53:05 +08002519 struct iwl_lq_sta *lq_sta = file->private_data;
Zhu Yi0209dc12007-09-27 11:27:43 +08002520 for (i = 0; i < LQ_SIZE; i++) {
2521 desc += sprintf(buff+desc, "%s type=%d SGI=%d FAT=%d DUP=%d\n"
2522 "rate=0x%X\n",
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08002523 lq_sta->active_tbl == i ? "*" : "x",
Tomas Winklerc33104f2008-01-14 17:46:21 -08002524 lq_sta->lq_info[i].lq_type,
2525 lq_sta->lq_info[i].is_SGI,
2526 lq_sta->lq_info[i].is_fat,
2527 lq_sta->lq_info[i].is_dup,
Guy Cohen39e88502008-04-23 17:14:57 -07002528 lq_sta->lq_info[i].current_rate);
Zhu Yi0209dc12007-09-27 11:27:43 +08002529 for (j = 0; j < IWL_RATE_COUNT; j++) {
2530 desc += sprintf(buff+desc,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002531 "counter=%d success=%d %%=%d\n",
2532 lq_sta->lq_info[i].win[j].counter,
2533 lq_sta->lq_info[i].win[j].success_counter,
2534 lq_sta->lq_info[i].win[j].success_ratio);
Zhu Yi0209dc12007-09-27 11:27:43 +08002535 }
2536 }
2537 return simple_read_from_buffer(user_buf, count, ppos, buff, desc);
2538}
2539
2540static const struct file_operations rs_sta_dbgfs_stats_table_ops = {
2541 .read = rs_sta_dbgfs_stats_table_read,
2542 .open = open_file_generic,
2543};
Zhu Yi5ae212c2007-09-27 11:27:38 +08002544
Zhu Yi93dc6462007-09-27 11:27:37 +08002545static void rs_add_debugfs(void *priv, void *priv_sta,
2546 struct dentry *dir)
2547{
Tomas Winklere227cea2008-07-18 13:53:05 +08002548 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002549 lq_sta->rs_sta_dbgfs_scale_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08002550 debugfs_create_file("rate_scale_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002551 lq_sta, &rs_sta_dbgfs_scale_table_ops);
2552 lq_sta->rs_sta_dbgfs_stats_table_file =
Zhu Yi0209dc12007-09-27 11:27:43 +08002553 debugfs_create_file("rate_stats_table", 0600, dir,
Tomas Winklerc33104f2008-01-14 17:46:21 -08002554 lq_sta, &rs_sta_dbgfs_stats_table_ops);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002555 lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file =
2556 debugfs_create_u8("tx_agg_tid_enable", 0600, dir,
2557 &lq_sta->tx_agg_tid_en);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002558
Zhu Yi93dc6462007-09-27 11:27:37 +08002559}
2560
2561static void rs_remove_debugfs(void *priv, void *priv_sta)
2562{
Tomas Winklere227cea2008-07-18 13:53:05 +08002563 struct iwl_lq_sta *lq_sta = priv_sta;
Tomas Winklerc33104f2008-01-14 17:46:21 -08002564 debugfs_remove(lq_sta->rs_sta_dbgfs_scale_table_file);
2565 debugfs_remove(lq_sta->rs_sta_dbgfs_stats_table_file);
Ron Rindjunsky0c11b4d2008-01-28 14:07:26 +02002566 debugfs_remove(lq_sta->rs_sta_dbgfs_tx_agg_tid_en_file);
Zhu Yi93dc6462007-09-27 11:27:37 +08002567}
2568#endif
2569
Zhu Yib481de92007-09-25 17:54:57 -07002570static struct rate_control_ops rs_ops = {
2571 .module = NULL,
2572 .name = RS_NAME,
2573 .tx_status = rs_tx_status,
2574 .get_rate = rs_get_rate,
2575 .rate_init = rs_rate_init,
Zhu Yib481de92007-09-25 17:54:57 -07002576 .alloc = rs_alloc,
2577 .free = rs_free,
2578 .alloc_sta = rs_alloc_sta,
2579 .free_sta = rs_free_sta,
Zhu Yi93dc6462007-09-27 11:27:37 +08002580#ifdef CONFIG_MAC80211_DEBUGFS
2581 .add_sta_debugfs = rs_add_debugfs,
2582 .remove_sta_debugfs = rs_remove_debugfs,
2583#endif
Zhu Yib481de92007-09-25 17:54:57 -07002584};
2585
Tomas Winklere227cea2008-07-18 13:53:05 +08002586int iwlagn_rate_control_register(void)
Zhu Yib481de92007-09-25 17:54:57 -07002587{
Reinette Chatre897e1cf2008-03-28 16:21:09 -07002588 return ieee80211_rate_control_register(&rs_ops);
Zhu Yib481de92007-09-25 17:54:57 -07002589}
2590
Tomas Winklere227cea2008-07-18 13:53:05 +08002591void iwlagn_rate_control_unregister(void)
Zhu Yib481de92007-09-25 17:54:57 -07002592{
2593 ieee80211_rate_control_unregister(&rs_ops);
2594}
2595