blob: b01650ac3598aefcb2d86d94cfc6f99a7bad98e6 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Bergf5e28ea2015-12-06 14:58:08 +020010 * Copyright(c) 2015 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020036 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Bergf5e28ea2015-12-06 14:58:08 +020037 * Copyright(c) 2015 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67
68#ifndef __sta_h__
69#define __sta_h__
70
71#include <linux/spinlock.h>
72#include <net/mac80211.h>
73#include <linux/wait.h>
74
75#include "iwl-trans.h" /* for IWL_MAX_TID_COUNT */
76#include "fw-api.h" /* IWL_MVM_STATION_COUNT */
77#include "rs.h"
78
79struct iwl_mvm;
Andrei Otcheretianski003e52362014-05-25 17:24:22 +030080struct iwl_mvm_vif;
Johannes Berg8ca151b2013-01-24 14:25:36 +010081
82/**
83 * DOC: station table - introduction
84 *
85 * The station table is a list of data structure that reprensent the stations.
86 * In STA/P2P client mode, the driver will hold one station for the AP/ GO.
87 * In GO/AP mode, the driver will have as many stations as associated clients.
88 * All these stations are reflected in the fw's station table. The driver
89 * keeps the fw's station table up to date with the ADD_STA command. Stations
90 * can be removed by the REMOVE_STA command.
91 *
92 * All the data related to a station is held in the structure %iwl_mvm_sta
93 * which is embed in the mac80211's %ieee80211_sta (in the drv_priv) area.
94 * This data includes the index of the station in the fw, per tid information
95 * (sequence numbers, Block-ack state machine, etc...). The stations are
96 * created and deleted by the %sta_state callback from %ieee80211_ops.
97 *
98 * The driver holds a map: %fw_id_to_mac_id that allows to fetch a
99 * %ieee80211_sta (and the %iwl_mvm_sta embedded into it) based on a fw
100 * station index. That way, the driver is able to get the tid related data in
101 * O(1) in time sensitive paths (Tx / Tx response / BA notification). These
102 * paths are triggered by the fw, and the driver needs to get a pointer to the
103 * %ieee80211 structure. This map helps to get that pointer quickly.
104 */
105
106/**
107 * DOC: station table - locking
108 *
109 * As stated before, the station is created / deleted by mac80211's %sta_state
110 * callback from %ieee80211_ops which can sleep. The next paragraph explains
111 * the locking of a single stations, the next ones relates to the station
112 * table.
113 *
114 * The station holds the sequence number per tid. So this data needs to be
115 * accessed in the Tx path (which is softIRQ). It also holds the Block-Ack
116 * information (the state machine / and the logic that checks if the queues
117 * were drained), so it also needs to be accessible from the Tx response flow.
118 * In short, the station needs to be access from sleepable context as well as
119 * from tasklets, so the station itself needs a spinlock.
120 *
121 * The writers of %fw_id_to_mac_id map are serialized by the global mutex of
122 * the mvm op_mode. This is possible since %sta_state can sleep.
123 * The pointers in this map are RCU protected, hence we won't replace the
124 * station while we have Tx / Tx response / BA notification running.
125 *
126 * If a station is deleted while it still has packets in its A-MPDU queues,
127 * then the reclaim flow will notice that there is no station in the map for
128 * sta_id and it will dump the responses.
129 */
130
131/**
132 * DOC: station table - internal stations
133 *
134 * The FW needs a few internal stations that are not reflected in
135 * mac80211, such as broadcast station in AP / GO mode, or AUX sta for
136 * scanning and P2P device (during the GO negotiation).
137 * For these kind of stations we have %iwl_mvm_int_sta struct which holds the
138 * data relevant for them from both %iwl_mvm_sta and %ieee80211_sta.
139 * Usually the data for these stations is static, so no locking is required,
140 * and no TID data as this is also not needed.
141 * One thing to note, is that these stations have an ID in the fw, but not
142 * in mac80211. In order to "reserve" them a sta_id in %fw_id_to_mac_id
143 * we fill ERR_PTR(EINVAL) in this mapping and all other dereferencing of
144 * pointers from this mapping need to check that the value is not error
145 * or NULL.
146 *
147 * Currently there is only one auxiliary station for scanning, initialized
148 * on init.
149 */
150
151/**
152 * DOC: station table - AP Station in STA mode
153 *
154 * %iwl_mvm_vif includes the index of the AP station in the fw's STA table:
Sara Sharon0d365ae2015-03-31 12:24:05 +0300155 * %ap_sta_id. To get the point to the corresponding %ieee80211_sta,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100156 * &fw_id_to_mac_id can be used. Due to the way the fw works, we must not remove
157 * the AP station from the fw before setting the MAC context as unassociated.
158 * Hence, %fw_id_to_mac_id[%ap_sta_id] will be NULLed when the AP station is
159 * removed by mac80211, but the station won't be removed in the fw until the
160 * VIF is set as unassociated. Then, %ap_sta_id will be invalidated.
161 */
162
163/**
164 * DOC: station table - Drain vs. Flush
165 *
166 * Flush means that all the frames in the SCD queue are dumped regardless the
167 * station to which they were sent. We do that when we disassociate and before
168 * we remove the STA of the AP. The flush can be done synchronously against the
169 * fw.
170 * Drain means that the fw will drop all the frames sent to a specific station.
171 * This is useful when a client (if we are IBSS / GO or AP) disassociates. In
172 * that case, we need to drain all the frames for that client from the AC queues
173 * that are shared with the other clients. Only then, we can remove the STA in
174 * the fw. In order to do so, we track the non-AMPDU packets for each station.
175 * If mac80211 removes a STA and if it still has non-AMPDU packets pending in
176 * the queues, we mark this station as %EBUSY in %fw_id_to_mac_id, and drop all
177 * the frames for this STA (%iwl_mvm_rm_sta). When the last frame is dropped
178 * (we know about it with its Tx response), we remove the station in fw and set
179 * it as %NULL in %fw_id_to_mac_id: this is the purpose of
180 * %iwl_mvm_sta_drained_wk.
181 */
182
183/**
184 * DOC: station table - fw restart
185 *
186 * When the fw asserts, or we have any other issue that requires to reset the
187 * driver, we require mac80211 to reconfigure the driver. Since the private
188 * data of the stations is embed in mac80211's %ieee80211_sta, that data will
189 * not be zeroed and needs to be reinitialized manually.
190 * %IWL_MVM_STATUS_IN_HW_RESTART is set during restart and that will hint us
191 * that we must not allocate a new sta_id but reuse the previous one. This
192 * means that the stations being re-added after the reset will have the same
193 * place in the fw as before the reset. We do need to zero the %fw_id_to_mac_id
194 * map, since the stations aren't in the fw any more. Internal stations that
195 * are not added by mac80211 will be re-added in the init flow that is called
196 * after the restart: mac80211 call's %iwl_mvm_mac_start which calls to
197 * %iwl_mvm_up.
198 */
199
200/**
201 * DOC: AP mode - PS
202 *
Johannes Berg3e56ead2013-02-15 22:23:18 +0100203 * When a station is asleep, the fw will set it as "asleep". All frames on
204 * shared queues (i.e. non-aggregation queues) to that station will be dropped
205 * by the fw (%TX_STATUS_FAIL_DEST_PS failure code).
Johannes Berg8ca151b2013-01-24 14:25:36 +0100206 *
Johannes Berg3e56ead2013-02-15 22:23:18 +0100207 * AMPDUs are in a separate queue that is stopped by the fw. We just need to
208 * let mac80211 know when there are frames in these queues so that it can
209 * properly handle trigger frames.
210 *
211 * When a trigger frame is received, mac80211 tells the driver to send frames
212 * from the AMPDU queues or sends frames to non-aggregation queues itself,
213 * depending on which ACs are delivery-enabled and what TID has frames to
Sara Sharon0d365ae2015-03-31 12:24:05 +0300214 * transmit. Note that mac80211 has all the knowledge since all the non-agg
Johannes Berg3e56ead2013-02-15 22:23:18 +0100215 * frames are buffered / filtered, and the driver tells mac80211 about agg
216 * frames). The driver needs to tell the fw to let frames out even if the
217 * station is asleep. This is done by %iwl_mvm_sta_modify_sleep_tx_count.
218 *
219 * When we receive a frame from that station with PM bit unset, the driver
220 * needs to let the fw know that this station isn't asleep any more. This is
Sara Sharon0d365ae2015-03-31 12:24:05 +0300221 * done by %iwl_mvm_sta_modify_ps_wake in response to mac80211 signaling the
Johannes Berg3e56ead2013-02-15 22:23:18 +0100222 * station's wakeup.
223 *
224 * For a GO, the Service Period might be cut short due to an absence period
225 * of the GO. In this (and all other cases) the firmware notifies us with the
226 * EOSP_NOTIFICATION, and we notify mac80211 of that. Further frames that we
227 * already sent to the device will be rejected again.
228 *
229 * See also "AP support for powersaving clients" in mac80211.h.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100230 */
231
232/**
233 * enum iwl_mvm_agg_state
234 *
235 * The state machine of the BA agreement establishment / tear down.
236 * These states relate to a specific RA / TID.
237 *
238 * @IWL_AGG_OFF: aggregation is not used
239 * @IWL_AGG_STARTING: aggregation are starting (between start and oper)
240 * @IWL_AGG_ON: aggregation session is up
241 * @IWL_EMPTYING_HW_QUEUE_ADDBA: establishing a BA session - waiting for the
242 * HW queue to be empty from packets for this RA /TID.
243 * @IWL_EMPTYING_HW_QUEUE_DELBA: tearing down a BA session - waiting for the
244 * HW queue to be empty from packets for this RA /TID.
245 */
246enum iwl_mvm_agg_state {
247 IWL_AGG_OFF = 0,
248 IWL_AGG_STARTING,
249 IWL_AGG_ON,
250 IWL_EMPTYING_HW_QUEUE_ADDBA,
251 IWL_EMPTYING_HW_QUEUE_DELBA,
252};
253
254/**
255 * struct iwl_mvm_tid_data - holds the states for each RA / TID
256 * @seq_number: the next WiFi sequence number to use
257 * @next_reclaimed: the WiFi sequence number of the next packet to be acked.
258 * This is basically (last acked packet++).
259 * @rate_n_flags: Rate at which Tx was attempted. Holds the data between the
260 * Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).
Eliad Peller3a84b692014-03-12 15:05:06 +0200261 * @reduced_tpc: Reduced tx power. Holds the data between the
262 * Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200263 * @amsdu_in_ampdu_allowed: true if A-MSDU in A-MPDU is allowed.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100264 * @state: state of the BA agreement establishment / tear down.
265 * @txq_id: Tx queue used by the BA session
266 * @ssn: the first packet to be sent in AGG HW queue in Tx AGG start flow, or
267 * the first packet to be sent in legacy HW queue in Tx AGG stop flow.
268 * Basically when next_reclaimed reaches ssn, we can tell mac80211 that
269 * we are ready to finish the Tx AGG stop / start flow.
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +0300270 * @tx_time: medium time consumed by this A-MPDU
Johannes Berg8ca151b2013-01-24 14:25:36 +0100271 */
272struct iwl_mvm_tid_data {
273 u16 seq_number;
274 u16 next_reclaimed;
275 /* The rest is Tx AGG related */
276 u32 rate_n_flags;
Eliad Peller3a84b692014-03-12 15:05:06 +0200277 u8 reduced_tpc;
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200278 bool amsdu_in_ampdu_allowed;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100279 enum iwl_mvm_agg_state state;
280 u16 txq_id;
281 u16 ssn;
Emmanuel Grumbach9b5452f2014-10-07 10:38:53 +0300282 u16 tx_time;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100283};
284
Johannes Berg3e56ead2013-02-15 22:23:18 +0100285static inline u16 iwl_mvm_tid_queued(struct iwl_mvm_tid_data *tid_data)
286{
287 return ieee80211_sn_sub(IEEE80211_SEQ_TO_SN(tid_data->seq_number),
288 tid_data->next_reclaimed);
289}
290
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200291struct iwl_mvm_key_pn {
292 struct rcu_head rcu_head;
293 struct {
294 u8 pn[IWL_MAX_TID_COUNT][IEEE80211_CCMP_PN_LEN];
295 } ____cacheline_aligned_in_smp q[];
296};
297
Johannes Berg8ca151b2013-01-24 14:25:36 +0100298/**
299 * struct iwl_mvm_sta - representation of a station in the driver
300 * @sta_id: the index of the station in the fw (will be replaced by id_n_color)
301 * @tfd_queue_msk: the tfd queues used by the station
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300302 * @hw_queue: per-AC mapping of the TFD queues used by station
Johannes Berg8ca151b2013-01-24 14:25:36 +0100303 * @mac_id_n_color: the MAC context this station is linked to
304 * @tid_disable_agg: bitmap: if bit(tid) is set, the fw won't send ampdus for
305 * tid.
306 * @max_agg_bufsize: the maximal size of the AGG buffer for this station
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200307 * @bt_reduced_txpower: is reduced tx power enabled for this station
Johannes Berg3e56ead2013-02-15 22:23:18 +0100308 * @next_status_eosp: the next reclaimed packet is a PS-Poll response and
309 * we need to signal the EOSP
Johannes Berg8ca151b2013-01-24 14:25:36 +0100310 * @lock: lock to protect the whole struct. Since %tid_data is access from Tx
311 * and from Tx response flow, it needs a spinlock.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100312 * @tid_data: per tid data. Look at %iwl_mvm_tid_data.
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300313 * @tx_protection: reference counter for controlling the Tx protection.
314 * @tt_tx_protection: is thermal throttling enable Tx protection?
Andrei Otcheretianski003e52362014-05-25 17:24:22 +0300315 * @disable_tx: is tx to this STA disabled?
Eyal Shapiraefed6642014-09-14 15:58:53 +0300316 * @agg_tids: bitmap of tids whose status is operational aggregated (IWL_AGG_ON)
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +0200317 * @sleep_tx_count: the number of frames that we told the firmware to let out
318 * even when that station is asleep. This is useful in case the queue
319 * gets empty before all the frames were sent, which can happen when
320 * we are sending frames from an AMPDU queue and there was a hole in
321 * the BA window. To be used for UAPSD only.
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200322 * @ptk_pn: per-queue PTK PN data structures
Johannes Berg8ca151b2013-01-24 14:25:36 +0100323 *
324 * When mac80211 creates a station it reserves some space (hw->sta_data_size)
325 * in the structure for use by driver. This structure is placed in that
326 * space.
327 *
328 */
329struct iwl_mvm_sta {
330 u32 sta_id;
331 u32 tfd_queue_msk;
Arik Nemtsova0f6bf22014-09-21 19:10:04 +0300332 u8 hw_queue[IEEE80211_NUM_ACS];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100333 u32 mac_id_n_color;
334 u16 tid_disable_agg;
335 u8 max_agg_bufsize;
Emmanuel Grumbach2b76ef12013-01-24 10:35:13 +0200336 bool bt_reduced_txpower;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100337 bool next_status_eosp;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100338 spinlock_t lock;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100339 struct iwl_mvm_tid_data tid_data[IWL_MAX_TID_COUNT];
340 struct iwl_lq_sta lq_sta;
341 struct ieee80211_vif *vif;
342
Johannes Bergf5e28ea2015-12-06 14:58:08 +0200343 struct iwl_mvm_key_pn __rcu *ptk_pn[4];
344
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300345 /* Temporary, until the new TLC will control the Tx protection */
346 s8 tx_protection;
347 bool tt_tx_protection;
Andrei Otcheretianski003e52362014-05-25 17:24:22 +0300348
349 bool disable_tx;
Eyal Shapiraefed6642014-09-14 15:58:53 +0300350 u8 agg_tids;
Emmanuel Grumbach36be0eb2015-11-05 10:32:31 +0200351 u8 sleep_tx_count;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352};
353
Johannes Berg5b577a92013-11-14 18:20:04 +0100354static inline struct iwl_mvm_sta *
355iwl_mvm_sta_from_mac80211(struct ieee80211_sta *sta)
356{
357 return (void *)sta->drv_priv;
358}
359
Johannes Berg8ca151b2013-01-24 14:25:36 +0100360/**
361 * struct iwl_mvm_int_sta - representation of an internal station (auxiliary or
362 * broadcast)
363 * @sta_id: the index of the station in the fw (will be replaced by id_n_color)
364 * @tfd_queue_msk: the tfd queues used by the station
365 */
366struct iwl_mvm_int_sta {
367 u32 sta_id;
368 u32 tfd_queue_msk;
369};
370
Johannes Berg7a453972013-02-12 13:10:44 +0100371int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
372 bool update);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100373int iwl_mvm_add_sta(struct iwl_mvm *mvm,
374 struct ieee80211_vif *vif,
375 struct ieee80211_sta *sta);
Johannes Berg7a453972013-02-12 13:10:44 +0100376int iwl_mvm_update_sta(struct iwl_mvm *mvm,
377 struct ieee80211_vif *vif,
378 struct ieee80211_sta *sta);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100379int iwl_mvm_rm_sta(struct iwl_mvm *mvm,
380 struct ieee80211_vif *vif,
381 struct ieee80211_sta *sta);
382int iwl_mvm_rm_sta_id(struct iwl_mvm *mvm,
383 struct ieee80211_vif *vif,
384 u8 sta_id);
385int iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
386 struct ieee80211_vif *vif,
387 struct ieee80211_sta *sta,
Luca Coelhod6ee54a2015-11-10 22:13:43 +0200388 struct ieee80211_key_conf *keyconf,
389 u8 key_offset);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100390int iwl_mvm_remove_sta_key(struct iwl_mvm *mvm,
391 struct ieee80211_vif *vif,
392 struct ieee80211_sta *sta,
393 struct ieee80211_key_conf *keyconf);
394
395void iwl_mvm_update_tkip_key(struct iwl_mvm *mvm,
396 struct ieee80211_vif *vif,
397 struct ieee80211_key_conf *keyconf,
398 struct ieee80211_sta *sta, u32 iv32,
399 u16 *phase1key);
400
Johannes Berg04168412015-06-23 21:22:09 +0200401void iwl_mvm_rx_eosp_notif(struct iwl_mvm *mvm,
402 struct iwl_rx_cmd_buffer *rxb);
Johannes Berg3e56ead2013-02-15 22:23:18 +0100403
Johannes Berg8ca151b2013-01-24 14:25:36 +0100404/* AMPDU */
405int iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
Sara Sharon854c5702016-01-26 13:17:47 +0200406 int tid, u16 ssn, bool start, u8 buf_size);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100407int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
408 struct ieee80211_sta *sta, u16 tid, u16 *ssn);
409int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
Emmanuel Grumbachbb81bb62015-10-26 16:00:29 +0200410 struct ieee80211_sta *sta, u16 tid, u8 buf_size,
411 bool amsdu);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100412int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
413 struct ieee80211_sta *sta, u16 tid);
Emmanuel Grumbache3d9e7c2013-02-19 16:13:53 +0200414int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
415 struct ieee80211_sta *sta, u16 tid);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100416
417int iwl_mvm_add_aux_sta(struct iwl_mvm *mvm);
Johannes Berg712b24a2014-08-04 14:14:14 +0200418void iwl_mvm_del_aux_sta(struct iwl_mvm *mvm);
Johannes Berg013290a2014-08-04 13:38:48 +0200419
420int iwl_mvm_alloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
421int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
422int iwl_mvm_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
423int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
424int iwl_mvm_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200425int iwl_mvm_allocate_int_sta(struct iwl_mvm *mvm,
426 struct iwl_mvm_int_sta *sta,
427 u32 qmask, enum nl80211_iftype iftype);
Johannes Berg013290a2014-08-04 13:38:48 +0200428void iwl_mvm_dealloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
Chaya Rachel Ivgi0e39eb02015-12-03 15:51:46 +0200429int iwl_mvm_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
430int iwl_mvm_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
431void iwl_mvm_dealloc_snif_sta(struct iwl_mvm *mvm);
Johannes Berg013290a2014-08-04 13:38:48 +0200432
Johannes Berg8ca151b2013-01-24 14:25:36 +0100433void iwl_mvm_sta_drained_wk(struct work_struct *wk);
Johannes Berg9cc40712013-02-15 22:47:48 +0100434void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm *mvm,
435 struct ieee80211_sta *sta);
436void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm *mvm,
437 struct ieee80211_sta *sta,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100438 enum ieee80211_frame_release_type reason,
Johannes Berg3e56ead2013-02-15 22:23:18 +0100439 u16 cnt, u16 tids, bool more_data,
440 bool agg);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100441int iwl_mvm_drain_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
442 bool drain);
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +0300443void iwl_mvm_sta_modify_disable_tx(struct iwl_mvm *mvm,
444 struct iwl_mvm_sta *mvmsta, bool disable);
Andrei Otcheretianski003e52362014-05-25 17:24:22 +0300445void iwl_mvm_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,
446 struct ieee80211_sta *sta,
447 bool disable);
448void iwl_mvm_modify_all_sta_disable_tx(struct iwl_mvm *mvm,
449 struct iwl_mvm_vif *mvmvif,
450 bool disable);
Luciano Coelhodc88b4b2014-11-10 11:10:14 +0200451void iwl_mvm_csa_client_absent(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100452
453#endif /* __sta_h__ */