blob: 32b4d66debea224c0ae88c0ff8b7f1a48b120118 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02003 * Copyright(c) 2003 - 2014 Intel Corporation. All rights reserved.
Eyal Shapirab503ed62015-05-27 22:20:46 +03004 * Copyright(c) 2015 Intel Mobile Communications GmbH
Gregory Greenmanea42d1c2017-03-06 11:15:41 +02005 * Copyright(c) 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +01006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19 *
20 * The full GNU General Public License is included in this distribution in the
21 * file called LICENSE.
22 *
23 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020024 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010025 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *
27 *****************************************************************************/
28
29#ifndef __rs_h__
30#define __rs_h__
31
32#include <net/mac80211.h>
33
34#include "iwl-config.h"
35
36#include "fw-api.h"
37#include "iwl-trans.h"
38
39struct iwl_rs_rate_info {
Eyal Shapirad310e402013-08-11 18:43:47 +030040 u8 plcp; /* uCode API: IWL_RATE_6M_PLCP, etc. */
41 u8 plcp_ht_siso; /* uCode API: IWL_RATE_SISO_6M_PLCP, etc. */
42 u8 plcp_ht_mimo2; /* uCode API: IWL_RATE_MIMO2_6M_PLCP, etc. */
43 u8 plcp_vht_siso;
44 u8 plcp_vht_mimo2;
Johannes Berg8ca151b2013-01-24 14:25:36 +010045 u8 prev_rs; /* previous rate used in rs algo */
46 u8 next_rs; /* next rate used in rs algo */
Johannes Berg8ca151b2013-01-24 14:25:36 +010047};
48
49#define IWL_RATE_60M_PLCP 3
50
51enum {
52 IWL_RATE_INVM_INDEX = IWL_RATE_COUNT,
53 IWL_RATE_INVALID = IWL_RATE_COUNT,
54};
55
56#define LINK_QUAL_MAX_RETRY_NUM 16
57
58enum {
59 IWL_RATE_6M_INDEX_TABLE = 0,
60 IWL_RATE_9M_INDEX_TABLE,
61 IWL_RATE_12M_INDEX_TABLE,
62 IWL_RATE_18M_INDEX_TABLE,
63 IWL_RATE_24M_INDEX_TABLE,
64 IWL_RATE_36M_INDEX_TABLE,
65 IWL_RATE_48M_INDEX_TABLE,
66 IWL_RATE_54M_INDEX_TABLE,
67 IWL_RATE_1M_INDEX_TABLE,
68 IWL_RATE_2M_INDEX_TABLE,
69 IWL_RATE_5M_INDEX_TABLE,
70 IWL_RATE_11M_INDEX_TABLE,
71 IWL_RATE_INVM_INDEX_TABLE = IWL_RATE_INVM_INDEX - 1,
72};
73
74/* #define vs. enum to keep from defaulting to 'large integer' */
75#define IWL_RATE_6M_MASK (1 << IWL_RATE_6M_INDEX)
76#define IWL_RATE_9M_MASK (1 << IWL_RATE_9M_INDEX)
77#define IWL_RATE_12M_MASK (1 << IWL_RATE_12M_INDEX)
78#define IWL_RATE_18M_MASK (1 << IWL_RATE_18M_INDEX)
79#define IWL_RATE_24M_MASK (1 << IWL_RATE_24M_INDEX)
80#define IWL_RATE_36M_MASK (1 << IWL_RATE_36M_INDEX)
81#define IWL_RATE_48M_MASK (1 << IWL_RATE_48M_INDEX)
82#define IWL_RATE_54M_MASK (1 << IWL_RATE_54M_INDEX)
83#define IWL_RATE_60M_MASK (1 << IWL_RATE_60M_INDEX)
84#define IWL_RATE_1M_MASK (1 << IWL_RATE_1M_INDEX)
85#define IWL_RATE_2M_MASK (1 << IWL_RATE_2M_INDEX)
86#define IWL_RATE_5M_MASK (1 << IWL_RATE_5M_INDEX)
87#define IWL_RATE_11M_MASK (1 << IWL_RATE_11M_INDEX)
88
89
Eyal Shapirad310e402013-08-11 18:43:47 +030090/* uCode API values for HT/VHT bit rates */
Johannes Berg8ca151b2013-01-24 14:25:36 +010091enum {
Eyal Shapirad310e402013-08-11 18:43:47 +030092 IWL_RATE_HT_SISO_MCS_0_PLCP = 0,
93 IWL_RATE_HT_SISO_MCS_1_PLCP = 1,
94 IWL_RATE_HT_SISO_MCS_2_PLCP = 2,
95 IWL_RATE_HT_SISO_MCS_3_PLCP = 3,
96 IWL_RATE_HT_SISO_MCS_4_PLCP = 4,
97 IWL_RATE_HT_SISO_MCS_5_PLCP = 5,
98 IWL_RATE_HT_SISO_MCS_6_PLCP = 6,
99 IWL_RATE_HT_SISO_MCS_7_PLCP = 7,
100 IWL_RATE_HT_MIMO2_MCS_0_PLCP = 0x8,
101 IWL_RATE_HT_MIMO2_MCS_1_PLCP = 0x9,
102 IWL_RATE_HT_MIMO2_MCS_2_PLCP = 0xA,
103 IWL_RATE_HT_MIMO2_MCS_3_PLCP = 0xB,
104 IWL_RATE_HT_MIMO2_MCS_4_PLCP = 0xC,
105 IWL_RATE_HT_MIMO2_MCS_5_PLCP = 0xD,
106 IWL_RATE_HT_MIMO2_MCS_6_PLCP = 0xE,
107 IWL_RATE_HT_MIMO2_MCS_7_PLCP = 0xF,
108 IWL_RATE_VHT_SISO_MCS_0_PLCP = 0,
109 IWL_RATE_VHT_SISO_MCS_1_PLCP = 1,
110 IWL_RATE_VHT_SISO_MCS_2_PLCP = 2,
111 IWL_RATE_VHT_SISO_MCS_3_PLCP = 3,
112 IWL_RATE_VHT_SISO_MCS_4_PLCP = 4,
113 IWL_RATE_VHT_SISO_MCS_5_PLCP = 5,
114 IWL_RATE_VHT_SISO_MCS_6_PLCP = 6,
115 IWL_RATE_VHT_SISO_MCS_7_PLCP = 7,
116 IWL_RATE_VHT_SISO_MCS_8_PLCP = 8,
117 IWL_RATE_VHT_SISO_MCS_9_PLCP = 9,
118 IWL_RATE_VHT_MIMO2_MCS_0_PLCP = 0x10,
119 IWL_RATE_VHT_MIMO2_MCS_1_PLCP = 0x11,
120 IWL_RATE_VHT_MIMO2_MCS_2_PLCP = 0x12,
121 IWL_RATE_VHT_MIMO2_MCS_3_PLCP = 0x13,
122 IWL_RATE_VHT_MIMO2_MCS_4_PLCP = 0x14,
123 IWL_RATE_VHT_MIMO2_MCS_5_PLCP = 0x15,
124 IWL_RATE_VHT_MIMO2_MCS_6_PLCP = 0x16,
125 IWL_RATE_VHT_MIMO2_MCS_7_PLCP = 0x17,
126 IWL_RATE_VHT_MIMO2_MCS_8_PLCP = 0x18,
127 IWL_RATE_VHT_MIMO2_MCS_9_PLCP = 0x19,
128 IWL_RATE_HT_SISO_MCS_INV_PLCP,
129 IWL_RATE_HT_MIMO2_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
130 IWL_RATE_VHT_SISO_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
131 IWL_RATE_VHT_MIMO2_MCS_INV_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
132 IWL_RATE_HT_SISO_MCS_8_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
133 IWL_RATE_HT_SISO_MCS_9_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
134 IWL_RATE_HT_MIMO2_MCS_8_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
135 IWL_RATE_HT_MIMO2_MCS_9_PLCP = IWL_RATE_HT_SISO_MCS_INV_PLCP,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136};
137
Johannes Berg8ca151b2013-01-24 14:25:36 +0100138#define IWL_RATES_MASK ((1 << IWL_RATE_COUNT) - 1)
139
140#define IWL_INVALID_VALUE -1
141
Eliad Peller2fd647f2014-03-13 17:21:36 +0200142#define TPC_MAX_REDUCTION 15
143#define TPC_NO_REDUCTION 0
144#define TPC_INVALID 0xff
145
Johannes Berg8ca151b2013-01-24 14:25:36 +0100146#define LINK_QUAL_AGG_FRAME_LIMIT_DEF (63)
147#define LINK_QUAL_AGG_FRAME_LIMIT_MAX (63)
Liad Kaufmana58bb462017-05-28 14:20:04 +0300148#define LINK_QUAL_AGG_FRAME_LIMIT_GEN2_DEF (64)
149#define LINK_QUAL_AGG_FRAME_LIMIT_GEN2_MAX (64)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100150#define LINK_QUAL_AGG_FRAME_LIMIT_MIN (0)
151
152#define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
153
154/* load per tid defines for A-MPDU activation */
155#define IWL_AGG_TPT_THREHOLD 0
Johannes Berg8ca151b2013-01-24 14:25:36 +0100156#define IWL_AGG_ALL_TID 0xff
Johannes Berg8ca151b2013-01-24 14:25:36 +0100157
158enum iwl_table_type {
159 LQ_NONE,
Eyal Shapirad310e402013-08-11 18:43:47 +0300160 LQ_LEGACY_G, /* legacy types */
161 LQ_LEGACY_A,
162 LQ_HT_SISO, /* HT types */
163 LQ_HT_MIMO2,
164 LQ_VHT_SISO, /* VHT types */
165 LQ_VHT_MIMO2,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100166 LQ_MAX,
167};
168
Eyal Shapira5aa33552013-11-23 01:06:36 +0200169struct rs_rate {
170 int index;
171 enum iwl_table_type type;
172 u8 ant;
173 u32 bw;
174 bool sgi;
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300175 bool ldpc;
Eyal Shapirad8bafea2014-10-23 13:58:38 +0300176 bool stbc;
Eyal Shapiraba69d0e2015-01-30 01:38:29 +0200177 bool bfer;
Eyal Shapira5aa33552013-11-23 01:06:36 +0200178};
Eyal Shapirad310e402013-08-11 18:43:47 +0300179
Eyal Shapira5aa33552013-11-23 01:06:36 +0200180
181#define is_type_legacy(type) (((type) == LQ_LEGACY_G) || \
182 ((type) == LQ_LEGACY_A))
183#define is_type_ht_siso(type) ((type) == LQ_HT_SISO)
184#define is_type_ht_mimo2(type) ((type) == LQ_HT_MIMO2)
185#define is_type_vht_siso(type) ((type) == LQ_VHT_SISO)
186#define is_type_vht_mimo2(type) ((type) == LQ_VHT_MIMO2)
187#define is_type_siso(type) (is_type_ht_siso(type) || is_type_vht_siso(type))
188#define is_type_mimo2(type) (is_type_ht_mimo2(type) || is_type_vht_mimo2(type))
189#define is_type_mimo(type) (is_type_mimo2(type))
190#define is_type_ht(type) (is_type_ht_siso(type) || is_type_ht_mimo2(type))
191#define is_type_vht(type) (is_type_vht_siso(type) || is_type_vht_mimo2(type))
192#define is_type_a_band(type) ((type) == LQ_LEGACY_A)
193#define is_type_g_band(type) ((type) == LQ_LEGACY_G)
194
195#define is_legacy(rate) is_type_legacy((rate)->type)
196#define is_ht_siso(rate) is_type_ht_siso((rate)->type)
197#define is_ht_mimo2(rate) is_type_ht_mimo2((rate)->type)
198#define is_vht_siso(rate) is_type_vht_siso((rate)->type)
199#define is_vht_mimo2(rate) is_type_vht_mimo2((rate)->type)
200#define is_siso(rate) is_type_siso((rate)->type)
201#define is_mimo2(rate) is_type_mimo2((rate)->type)
202#define is_mimo(rate) is_type_mimo((rate)->type)
203#define is_ht(rate) is_type_ht((rate)->type)
204#define is_vht(rate) is_type_vht((rate)->type)
205#define is_a_band(rate) is_type_a_band((rate)->type)
206#define is_g_band(rate) is_type_g_band((rate)->type)
207
208#define is_ht20(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_20)
209#define is_ht40(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_40)
210#define is_ht80(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_80)
Gregory Greenman855f4922016-05-25 18:31:39 +0300211#define is_ht160(rate) ((rate)->bw == RATE_MCS_CHAN_WIDTH_160)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100212
213#define IWL_MAX_MCS_DISPLAY_SIZE 12
214
215struct iwl_rate_mcs_info {
216 char mbps[IWL_MAX_MCS_DISPLAY_SIZE];
217 char mcs[IWL_MAX_MCS_DISPLAY_SIZE];
218};
219
220/**
221 * struct iwl_rate_scale_data -- tx success history for one rate
222 */
223struct iwl_rate_scale_data {
224 u64 data; /* bitmap of successful frames */
225 s32 success_counter; /* number of frames successful */
226 s32 success_ratio; /* per-cent * 128 */
227 s32 counter; /* number of frames attempted */
228 s32 average_tpt; /* success ratio * expected throughput */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100229};
230
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200231/* Possible Tx columns
232 * Tx Column = a combo of legacy/siso/mimo x antenna x SGI
233 */
234enum rs_column {
235 RS_COLUMN_LEGACY_ANT_A = 0,
236 RS_COLUMN_LEGACY_ANT_B,
237 RS_COLUMN_SISO_ANT_A,
238 RS_COLUMN_SISO_ANT_B,
239 RS_COLUMN_SISO_ANT_A_SGI,
240 RS_COLUMN_SISO_ANT_B_SGI,
241 RS_COLUMN_MIMO2,
242 RS_COLUMN_MIMO2_SGI,
243
244 RS_COLUMN_LAST = RS_COLUMN_MIMO2_SGI,
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200245 RS_COLUMN_COUNT = RS_COLUMN_LAST + 1,
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200246 RS_COLUMN_INVALID,
247};
248
Eyal Shapira1e9c62f2015-01-28 14:44:06 +0200249enum rs_ss_force_opt {
250 RS_SS_FORCE_NONE = 0,
251 RS_SS_FORCE_STBC,
252 RS_SS_FORCE_BFER,
253 RS_SS_FORCE_SISO,
254};
255
Eyal Shapira757cf23b2014-03-24 02:12:00 +0200256/* Packet stats per rate */
257struct rs_rate_stats {
258 u64 success;
259 u64 total;
260};
261
Johannes Berg8ca151b2013-01-24 14:25:36 +0100262/**
263 * struct iwl_scale_tbl_info -- tx params and success history for all rates
264 *
265 * There are two of these in struct iwl_lq_sta,
266 * one for "active", and one for "search".
267 */
268struct iwl_scale_tbl_info {
Eyal Shapira5aa33552013-11-23 01:06:36 +0200269 struct rs_rate rate;
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200270 enum rs_column column;
Johannes Berga34529e2014-01-20 22:57:21 +0100271 const u16 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100272 struct iwl_rate_scale_data win[IWL_RATE_COUNT]; /* rate histories */
Eliad Peller2fd647f2014-03-13 17:21:36 +0200273 /* per txpower-reduction history */
274 struct iwl_rate_scale_data tpc_win[TPC_MAX_REDUCTION + 1];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100275};
276
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200277enum {
278 RS_STATE_SEARCH_CYCLE_STARTED,
279 RS_STATE_SEARCH_CYCLE_ENDED,
280 RS_STATE_STAY_IN_COLUMN,
281};
282
Johannes Berg8ca151b2013-01-24 14:25:36 +0100283/**
284 * struct iwl_lq_sta -- driver's rate scaling private structure
285 *
286 * Pointer to this gets passed back and forth between driver and mac80211.
287 */
288struct iwl_lq_sta {
289 u8 active_tbl; /* index of active table, range 0-1 */
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200290 u8 rs_state; /* RS_STATE_* */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100291 u8 search_better_tbl; /* 1: currently trying alternate mode */
292 s32 last_tpt;
293
294 /* The following determine when to search for a new mode */
295 u32 table_count_limit;
296 u32 max_failure_limit; /* # failed frames before new search */
297 u32 max_success_limit; /* # successful frames before new search */
298 u32 table_count;
299 u32 total_failed; /* total failed frames, any/all rates */
300 u32 total_success; /* total successful frames, any/all rates */
301 u64 flush_timer; /* time staying in mode before new search */
302
Eyal Shapirab3b06a32013-11-24 21:30:13 +0200303 u32 visited_columns; /* Bitmask marking which Tx columns were
304 * explored during a search cycle
305 */
Eyal Shapira87d5e412014-04-06 18:13:22 +0300306 u64 last_tx;
Eyal Shapirad310e402013-08-11 18:43:47 +0300307 bool is_vht;
Eyal Shapiraa3576ff2014-08-09 10:57:59 +0300308 bool ldpc; /* LDPC Rx is supported by the STA */
Eyal Shapira3d44eeb2015-01-16 22:37:04 +0200309 bool stbc_capable; /* Tx STBC is supported by chip and Rx by STA */
310 bool bfer_capable; /* Remote supports beamformee and we BFer */
311
Johannes Berg57fbcce2016-04-12 15:56:15 +0200312 enum nl80211_band band;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100313
314 /* The following are bitmaps of rates; IWL_RATE_6M_MASK, etc. */
Eyal Shapira198266a2014-03-31 22:37:39 +0300315 unsigned long active_legacy_rate;
316 unsigned long active_siso_rate;
317 unsigned long active_mimo2_rate;
318
319 /* Highest rate per Tx mode */
320 u8 max_legacy_rate_idx;
321 u8 max_siso_rate_idx;
322 u8 max_mimo2_rate_idx;
323
Eyal Shapirab503ed62015-05-27 22:20:46 +0300324 /* Optimal rate based on RSSI and STA caps.
325 * Used only to reflect link speed to userspace.
326 */
327 struct rs_rate optimal_rate;
328 unsigned long optimal_rate_mask;
329 const struct rs_init_rate_info *optimal_rates;
330 int optimal_nentries;
331
Johannes Berg8ca151b2013-01-24 14:25:36 +0100332 u8 missed_rate_counter;
333
334 struct iwl_lq_cmd lq;
335 struct iwl_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100336 u8 tx_agg_tid_en;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100337
Johannes Berg8ca151b2013-01-24 14:25:36 +0100338 /* last tx rate_n_flags */
339 u32 last_rate_n_flags;
340 /* packets destined for this STA are aggregated */
341 u8 is_agg;
Eliad Peller2fd647f2014-03-13 17:21:36 +0200342
343 /* tx power reduce for this sta */
344 int tpc_reduce;
Eliad Pellerae969af2014-06-11 15:51:33 +0300345
346 /* persistent fields - initialized only once - keep last! */
Eyal Shapiraf58220f2014-08-16 01:30:30 +0300347 struct lq_sta_pers {
Eliad Pellerae969af2014-06-11 15:51:33 +0300348#ifdef CONFIG_MAC80211_DEBUGFS
Eliad Pellerae969af2014-06-11 15:51:33 +0300349 u32 dbg_fixed_rate;
350 u8 dbg_fixed_txp_reduction;
Eyal Shapira878985ce2015-02-02 12:14:54 +0200351
352 /* force STBC/BFER/SISO for testing */
353 enum rs_ss_force_opt ss_force;
Eliad Pellerae969af2014-06-11 15:51:33 +0300354#endif
Eyal Shapiraf58220f2014-08-16 01:30:30 +0300355 u8 chains;
356 s8 chain_signal[IEEE80211_MAX_CHAINS];
Eyal Shapirab503ed62015-05-27 22:20:46 +0300357 s8 last_rssi;
Eyal Shapiraf58220f2014-08-16 01:30:30 +0300358 struct rs_rate_stats tx_stats[RS_COLUMN_COUNT][IWL_RATE_COUNT];
Eliad Pellerae969af2014-06-11 15:51:33 +0300359 struct iwl_mvm *drv;
360 } pers;
Emmanuel Grumbach36946ce2013-05-28 23:12:47 +0300361};
362
Gregory Greenmanea42d1c2017-03-06 11:15:41 +0200363/* ieee80211_tx_info's status_driver_data[0] is packed with lq color and txp
364 * Note, it's iwlmvm <-> mac80211 interface.
365 * bits 0-7: reduced tx power
366 * bits 8-10: LQ command's color
367 */
368#define RS_DRV_DATA_TXP_MSK 0xff
369#define RS_DRV_DATA_LQ_COLOR_POS 8
370#define RS_DRV_DATA_LQ_COLOR_MSK (7 << RS_DRV_DATA_LQ_COLOR_POS)
371#define RS_DRV_DATA_LQ_COLOR_GET(_f) (((_f) & RS_DRV_DATA_LQ_COLOR_MSK) >>\
372 RS_DRV_DATA_LQ_COLOR_POS)
373#define RS_DRV_DATA_PACK(_c, _p) ((void *)(uintptr_t)\
374 (((uintptr_t)_p) |\
375 ((_c) << RS_DRV_DATA_LQ_COLOR_POS)))
376
Johannes Berg8ca151b2013-01-24 14:25:36 +0100377/* Initialize station's rate scaling information after adding station */
Joe Perchesb3818392013-09-23 11:37:59 -0700378void iwl_mvm_rs_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Johannes Berg57fbcce2016-04-12 15:56:15 +0200379 enum nl80211_band band, bool init);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100380
Eyal Shapira1ebc8f22014-09-14 15:23:23 +0300381/* Notify RS about Tx status */
382void iwl_mvm_rs_tx_status(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Matti Gottliebff7a68d2016-05-17 10:50:08 +0300383 int tid, struct ieee80211_tx_info *info, bool ndp);
Eyal Shapira1ebc8f22014-09-14 15:23:23 +0300384
Johannes Berg8ca151b2013-01-24 14:25:36 +0100385/**
386 * iwl_rate_control_register - Register the rate control algorithm callbacks
387 *
388 * Since the rate control algorithm is hardware specific, there is no need
389 * or reason to place it as a stand alone module. The driver can call
390 * iwl_rate_control_register in order to register the rate control callbacks
391 * with the mac80211 subsystem. This should be performed prior to calling
392 * ieee80211_register_hw
393 *
394 */
Joe Perchesb3818392013-09-23 11:37:59 -0700395int iwl_mvm_rate_control_register(void);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100396
397/**
398 * iwl_rate_control_unregister - Unregister the rate control callbacks
399 *
400 * This should be called after calling ieee80211_unregister_hw, but before
401 * the driver is unloaded.
402 */
Joe Perchesb3818392013-09-23 11:37:59 -0700403void iwl_mvm_rate_control_unregister(void);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100404
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300405struct iwl_mvm_sta;
406
Johannes Berge126b5d2013-06-28 13:39:18 +0200407int iwl_mvm_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
408 bool enable);
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300409
Johannes Berg8ca151b2013-01-24 14:25:36 +0100410#endif /* __rs__ */