Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
0002 /*
0003  * Copyright (C) 2012-2014, 2018-2021 Intel Corporation
0004  * Copyright (C) 2013-2014 Intel Mobile Communications GmbH
0005  * Copyright (C) 2015-2016 Intel Deutschland GmbH
0006  */
0007 #ifndef __sta_h__
0008 #define __sta_h__
0009 
0010 #include <linux/spinlock.h>
0011 #include <net/mac80211.h>
0012 #include <linux/wait.h>
0013 
0014 #include "iwl-trans.h" /* for IWL_MAX_TID_COUNT */
0015 #include "fw-api.h" /* IWL_MVM_STATION_COUNT_MAX */
0016 #include "rs.h"
0017 
0018 struct iwl_mvm;
0019 struct iwl_mvm_vif;
0020 
0021 /**
0022  * DOC: DQA - Dynamic Queue Allocation -introduction
0023  *
0024  * Dynamic Queue Allocation (AKA "DQA") is a feature implemented in iwlwifi
0025  * driver to allow dynamic allocation of queues on-demand, rather than allocate
0026  * them statically ahead of time. Ideally, we would like to allocate one queue
0027  * per RA/TID, thus allowing an AP - for example - to send BE traffic to STA2
0028  * even if it also needs to send traffic to a sleeping STA1, without being
0029  * blocked by the sleeping station.
0030  *
0031  * Although the queues in DQA mode are dynamically allocated, there are still
0032  * some queues that are statically allocated:
0033  *  TXQ #0 - command queue
0034  *  TXQ #1 - aux frames
0035  *  TXQ #2 - P2P device frames
0036  *  TXQ #3 - P2P GO/SoftAP GCAST/BCAST frames
0037  *  TXQ #4 - BSS DATA frames queue
0038  *  TXQ #5-8 - Non-QoS and MGMT frames queue pool
0039  *  TXQ #9 - P2P GO/SoftAP probe responses
0040  *  TXQ #10-31 - DATA frames queue pool
0041  * The queues are dynamically taken from either the MGMT frames queue pool or
0042  * the DATA frames one. See the %iwl_mvm_dqa_txq for more information on every
0043  * queue.
0044  *
0045  * When a frame for a previously unseen RA/TID comes in, it needs to be deferred
0046  * until a queue is allocated for it, and only then can be TXed. Therefore, it
0047  * is placed into %iwl_mvm_tid_data.deferred_tx_frames, and a worker called
0048  * %mvm->add_stream_wk later allocates the queues and TXes the deferred frames.
0049  *
0050  * For convenience, MGMT is considered as if it has TID=8, and go to the MGMT
0051  * queues in the pool. If there is no longer a free MGMT queue to allocate, a
0052  * queue will be allocated from the DATA pool instead. Since QoS NDPs can create
0053  * a problem for aggregations, they too will use a MGMT queue.
0054  *
0055  * When adding a STA, a DATA queue is reserved for it so that it can TX from
0056  * it. If no such free queue exists for reserving, the STA addition will fail.
0057  *
0058  * If the DATA queue pool gets exhausted, no new STA will be accepted, and if a
0059  * new RA/TID comes in for an existing STA, one of the STA's queues will become
0060  * shared and will serve more than the single TID (but always for the same RA!).
0061  *
0062  * When a RA/TID needs to become aggregated, no new queue is required to be
0063  * allocated, only mark the queue as aggregated via the ADD_STA command. Note,
0064  * however, that a shared queue cannot be aggregated, and only after the other
0065  * TIDs become inactive and are removed - only then can the queue be
0066  * reconfigured and become aggregated.
0067  *
0068  * When removing a station, its queues are returned to the pool for reuse. Here
0069  * we also need to make sure that we are synced with the worker thread that TXes
0070  * the deferred frames so we don't get into a situation where the queues are
0071  * removed and then the worker puts deferred frames onto the released queues or
0072  * tries to allocate new queues for a STA we don't need anymore.
0073  */
0074 
0075 /**
0076  * DOC: station table - introduction
0077  *
0078  * The station table is a list of data structure that reprensent the stations.
0079  * In STA/P2P client mode, the driver will hold one station for the AP/ GO.
0080  * In GO/AP mode, the driver will have as many stations as associated clients.
0081  * All these stations are reflected in the fw's station table. The driver
0082  * keeps the fw's station table up to date with the ADD_STA command. Stations
0083  * can be removed by the REMOVE_STA command.
0084  *
0085  * All the data related to a station is held in the structure %iwl_mvm_sta
0086  * which is embed in the mac80211's %ieee80211_sta (in the drv_priv) area.
0087  * This data includes the index of the station in the fw, per tid information
0088  * (sequence numbers, Block-ack state machine, etc...). The stations are
0089  * created and deleted by the %sta_state callback from %ieee80211_ops.
0090  *
0091  * The driver holds a map: %fw_id_to_mac_id that allows to fetch a
0092  * %ieee80211_sta (and the %iwl_mvm_sta embedded into it) based on a fw
0093  * station index. That way, the driver is able to get the tid related data in
0094  * O(1) in time sensitive paths (Tx / Tx response / BA notification). These
0095  * paths are triggered by the fw, and the driver needs to get a pointer to the
0096  * %ieee80211 structure. This map helps to get that pointer quickly.
0097  */
0098 
0099 /**
0100  * DOC: station table - locking
0101  *
0102  * As stated before, the station is created / deleted by mac80211's %sta_state
0103  * callback from %ieee80211_ops which can sleep. The next paragraph explains
0104  * the locking of a single stations, the next ones relates to the station
0105  * table.
0106  *
0107  * The station holds the sequence number per tid. So this data needs to be
0108  * accessed in the Tx path (which is softIRQ). It also holds the Block-Ack
0109  * information (the state machine / and the logic that checks if the queues
0110  * were drained), so it also needs to be accessible from the Tx response flow.
0111  * In short, the station needs to be access from sleepable context as well as
0112  * from tasklets, so the station itself needs a spinlock.
0113  *
0114  * The writers of %fw_id_to_mac_id map are serialized by the global mutex of
0115  * the mvm op_mode. This is possible since %sta_state can sleep.
0116  * The pointers in this map are RCU protected, hence we won't replace the
0117  * station while we have Tx / Tx response / BA notification running.
0118  *
0119  * If a station is deleted while it still has packets in its A-MPDU queues,
0120  * then the reclaim flow will notice that there is no station in the map for
0121  * sta_id and it will dump the responses.
0122  */
0123 
0124 /**
0125  * DOC: station table - internal stations
0126  *
0127  * The FW needs a few internal stations that are not reflected in
0128  * mac80211, such as broadcast station in AP / GO mode, or AUX sta for
0129  * scanning and P2P device (during the GO negotiation).
0130  * For these kind of stations we have %iwl_mvm_int_sta struct which holds the
0131  * data relevant for them from both %iwl_mvm_sta and %ieee80211_sta.
0132  * Usually the data for these stations is static, so no locking is required,
0133  * and no TID data as this is also not needed.
0134  * One thing to note, is that these stations have an ID in the fw, but not
0135  * in mac80211. In order to "reserve" them a sta_id in %fw_id_to_mac_id
0136  * we fill ERR_PTR(EINVAL) in this mapping and all other dereferencing of
0137  * pointers from this mapping need to check that the value is not error
0138  * or NULL.
0139  *
0140  * Currently there is only one auxiliary station for scanning, initialized
0141  * on init.
0142  */
0143 
0144 /**
0145  * DOC: station table - AP Station in STA mode
0146  *
0147  * %iwl_mvm_vif includes the index of the AP station in the fw's STA table:
0148  * %ap_sta_id. To get the point to the corresponding %ieee80211_sta,
0149  * &fw_id_to_mac_id can be used. Due to the way the fw works, we must not remove
0150  * the AP station from the fw before setting the MAC context as unassociated.
0151  * Hence, %fw_id_to_mac_id[%ap_sta_id] will be NULLed when the AP station is
0152  * removed by mac80211, but the station won't be removed in the fw until the
0153  * VIF is set as unassociated. Then, %ap_sta_id will be invalidated.
0154  */
0155 
0156 /**
0157  * DOC: station table - Drain vs. Flush
0158  *
0159  * Flush means that all the frames in the SCD queue are dumped regardless the
0160  * station to which they were sent. We do that when we disassociate and before
0161  * we remove the STA of the AP. The flush can be done synchronously against the
0162  * fw.
0163  * Drain means that the fw will drop all the frames sent to a specific station.
0164  * This is useful when a client (if we are IBSS / GO or AP) disassociates.
0165  */
0166 
0167 /**
0168  * DOC: station table - fw restart
0169  *
0170  * When the fw asserts, or we have any other issue that requires to reset the
0171  * driver, we require mac80211 to reconfigure the driver. Since the private
0172  * data of the stations is embed in mac80211's %ieee80211_sta, that data will
0173  * not be zeroed and needs to be reinitialized manually.
0174  * %IWL_MVM_STATUS_IN_HW_RESTART is set during restart and that will hint us
0175  * that we must not allocate a new sta_id but reuse the previous one. This
0176  * means that the stations being re-added after the reset will have the same
0177  * place in the fw as before the reset. We do need to zero the %fw_id_to_mac_id
0178  * map, since the stations aren't in the fw any more. Internal stations that
0179  * are not added by mac80211 will be re-added in the init flow that is called
0180  * after the restart: mac80211 call's %iwl_mvm_mac_start which calls to
0181  * %iwl_mvm_up.
0182  */
0183 
0184 /**
0185  * DOC: AP mode - PS
0186  *
0187  * When a station is asleep, the fw will set it as "asleep". All frames on
0188  * shared queues (i.e. non-aggregation queues) to that station will be dropped
0189  * by the fw (%TX_STATUS_FAIL_DEST_PS failure code).
0190  *
0191  * AMPDUs are in a separate queue that is stopped by the fw. We just need to
0192  * let mac80211 know when there are frames in these queues so that it can
0193  * properly handle trigger frames.
0194  *
0195  * When a trigger frame is received, mac80211 tells the driver to send frames
0196  * from the AMPDU queues or sends frames to non-aggregation queues itself,
0197  * depending on which ACs are delivery-enabled and what TID has frames to
0198  * transmit. Note that mac80211 has all the knowledge since all the non-agg
0199  * frames are buffered / filtered, and the driver tells mac80211 about agg
0200  * frames). The driver needs to tell the fw to let frames out even if the
0201  * station is asleep. This is done by %iwl_mvm_sta_modify_sleep_tx_count.
0202  *
0203  * When we receive a frame from that station with PM bit unset, the driver
0204  * needs to let the fw know that this station isn't asleep any more. This is
0205  * done by %iwl_mvm_sta_modify_ps_wake in response to mac80211 signaling the
0206  * station's wakeup.
0207  *
0208  * For a GO, the Service Period might be cut short due to an absence period
0209  * of the GO. In this (and all other cases) the firmware notifies us with the
0210  * EOSP_NOTIFICATION, and we notify mac80211 of that. Further frames that we
0211  * already sent to the device will be rejected again.
0212  *
0213  * See also "AP support for powersaving clients" in mac80211.h.
0214  */
0215 
0216 /**
0217  * enum iwl_mvm_agg_state
0218  *
0219  * The state machine of the BA agreement establishment / tear down.
0220  * These states relate to a specific RA / TID.
0221  *
0222  * @IWL_AGG_OFF: aggregation is not used
0223  * @IWL_AGG_QUEUED: aggregation start work has been queued
0224  * @IWL_AGG_STARTING: aggregation are starting (between start and oper)
0225  * @IWL_AGG_ON: aggregation session is up
0226  * @IWL_EMPTYING_HW_QUEUE_ADDBA: establishing a BA session - waiting for the
0227  *  HW queue to be empty from packets for this RA /TID.
0228  * @IWL_EMPTYING_HW_QUEUE_DELBA: tearing down a BA session - waiting for the
0229  *  HW queue to be empty from packets for this RA /TID.
0230  */
0231 enum iwl_mvm_agg_state {
0232     IWL_AGG_OFF = 0,
0233     IWL_AGG_QUEUED,
0234     IWL_AGG_STARTING,
0235     IWL_AGG_ON,
0236     IWL_EMPTYING_HW_QUEUE_ADDBA,
0237     IWL_EMPTYING_HW_QUEUE_DELBA,
0238 };
0239 
0240 /**
0241  * struct iwl_mvm_tid_data - holds the states for each RA / TID
0242  * @seq_number: the next WiFi sequence number to use
0243  * @next_reclaimed: the WiFi sequence number of the next packet to be acked.
0244  *  This is basically (last acked packet++).
0245  * @rate_n_flags: Rate at which Tx was attempted. Holds the data between the
0246  *  Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).
0247  * @lq_color: the color of the LQ command as it appears in tx response.
0248  * @amsdu_in_ampdu_allowed: true if A-MSDU in A-MPDU is allowed.
0249  * @state: state of the BA agreement establishment / tear down.
0250  * @txq_id: Tx queue used by the BA session / DQA
0251  * @ssn: the first packet to be sent in AGG HW queue in Tx AGG start flow, or
0252  *  the first packet to be sent in legacy HW queue in Tx AGG stop flow.
0253  *  Basically when next_reclaimed reaches ssn, we can tell mac80211 that
0254  *  we are ready to finish the Tx AGG stop / start flow.
0255  * @tx_time: medium time consumed by this A-MPDU
0256  * @tpt_meas_start: time of the throughput measurements start, is reset every HZ
0257  * @tx_count_last: number of frames transmitted during the last second
0258  * @tx_count: counts the number of frames transmitted since the last reset of
0259  *   tpt_meas_start
0260  */
0261 struct iwl_mvm_tid_data {
0262     u16 seq_number;
0263     u16 next_reclaimed;
0264     /* The rest is Tx AGG related */
0265     u32 rate_n_flags;
0266     u8 lq_color;
0267     bool amsdu_in_ampdu_allowed;
0268     enum iwl_mvm_agg_state state;
0269     u16 txq_id;
0270     u16 ssn;
0271     u16 tx_time;
0272     unsigned long tpt_meas_start;
0273     u32 tx_count_last;
0274     u32 tx_count;
0275 };
0276 
0277 struct iwl_mvm_key_pn {
0278     struct rcu_head rcu_head;
0279     struct {
0280         u8 pn[IWL_MAX_TID_COUNT][IEEE80211_CCMP_PN_LEN];
0281     } ____cacheline_aligned_in_smp q[];
0282 };
0283 
0284 /**
0285  * enum iwl_mvm_rxq_notif_type - Internal message identifier
0286  *
0287  * @IWL_MVM_RXQ_EMPTY: empty sync notification
0288  * @IWL_MVM_RXQ_NOTIF_DEL_BA: notify RSS queues of delBA
0289  * @IWL_MVM_RXQ_NSSN_SYNC: notify all the RSS queues with the new NSSN
0290  */
0291 enum iwl_mvm_rxq_notif_type {
0292     IWL_MVM_RXQ_EMPTY,
0293     IWL_MVM_RXQ_NOTIF_DEL_BA,
0294     IWL_MVM_RXQ_NSSN_SYNC,
0295 };
0296 
0297 /**
0298  * struct iwl_mvm_internal_rxq_notif - Internal representation of the data sent
0299  * in &iwl_rxq_sync_cmd. Should be DWORD aligned.
0300  * FW is agnostic to the payload, so there are no endianity requirements.
0301  *
0302  * @type: value from &iwl_mvm_rxq_notif_type
0303  * @sync: ctrl path is waiting for all notifications to be received
0304  * @cookie: internal cookie to identify old notifications
0305  * @data: payload
0306  */
0307 struct iwl_mvm_internal_rxq_notif {
0308     u16 type;
0309     u16 sync;
0310     u32 cookie;
0311     u8 data[];
0312 } __packed;
0313 
0314 struct iwl_mvm_delba_data {
0315     u32 baid;
0316 } __packed;
0317 
0318 struct iwl_mvm_nssn_sync_data {
0319     u32 baid;
0320     u32 nssn;
0321 } __packed;
0322 
0323 /**
0324  * struct iwl_mvm_rxq_dup_data - per station per rx queue data
0325  * @last_seq: last sequence per tid for duplicate packet detection
0326  * @last_sub_frame: last subframe packet
0327  */
0328 struct iwl_mvm_rxq_dup_data {
0329     __le16 last_seq[IWL_MAX_TID_COUNT + 1];
0330     u8 last_sub_frame[IWL_MAX_TID_COUNT + 1];
0331 } ____cacheline_aligned_in_smp;
0332 
0333 /**
0334  * struct iwl_mvm_sta - representation of a station in the driver
0335  * @sta_id: the index of the station in the fw (will be replaced by id_n_color)
0336  * @tfd_queue_msk: the tfd queues used by the station
0337  * @mac_id_n_color: the MAC context this station is linked to
0338  * @tid_disable_agg: bitmap: if bit(tid) is set, the fw won't send ampdus for
0339  *  tid.
0340  * @max_agg_bufsize: the maximal size of the AGG buffer for this station
0341  * @sta_type: station type
0342  * @sta_state: station state according to enum %ieee80211_sta_state
0343  * @bt_reduced_txpower: is reduced tx power enabled for this station
0344  * @next_status_eosp: the next reclaimed packet is a PS-Poll response and
0345  *  we need to signal the EOSP
0346  * @lock: lock to protect the whole struct. Since %tid_data is access from Tx
0347  * and from Tx response flow, it needs a spinlock.
0348  * @tid_data: per tid data + mgmt. Look at %iwl_mvm_tid_data.
0349  * @tid_to_baid: a simple map of TID to baid
0350  * @lq_sta: holds rate scaling data, either for the case when RS is done in
0351  *  the driver - %rs_drv or in the FW - %rs_fw.
0352  * @reserved_queue: the queue reserved for this STA for DQA purposes
0353  *  Every STA has is given one reserved queue to allow it to operate. If no
0354  *  such queue can be guaranteed, the STA addition will fail.
0355  * @tx_protection: reference counter for controlling the Tx protection.
0356  * @tt_tx_protection: is thermal throttling enable Tx protection?
0357  * @disable_tx: is tx to this STA disabled?
0358  * @amsdu_enabled: bitmap of TX AMSDU allowed TIDs.
0359  *  In case TLC offload is not active it is either 0xFFFF or 0.
0360  * @max_amsdu_len: max AMSDU length
0361  * @orig_amsdu_len: used to save the original amsdu_len when it is changed via
0362  *      debugfs.  If it's set to 0, it means that it is it's not set via
0363  *      debugfs.
0364  * @agg_tids: bitmap of tids whose status is operational aggregated (IWL_AGG_ON)
0365  * @sleep_tx_count: the number of frames that we told the firmware to let out
0366  *  even when that station is asleep. This is useful in case the queue
0367  *  gets empty before all the frames were sent, which can happen when
0368  *  we are sending frames from an AMPDU queue and there was a hole in
0369  *  the BA window. To be used for UAPSD only.
0370  * @ptk_pn: per-queue PTK PN data structures
0371  * @dup_data: per queue duplicate packet detection data
0372  * @deferred_traffic_tid_map: indication bitmap of deferred traffic per-TID
0373  * @tx_ant: the index of the antenna to use for data tx to this station. Only
0374  *  used during connection establishment (e.g. for the 4 way handshake
0375  *  exchange).
0376  * @pairwise_cipher: used to feed iwlmei upon authorization
0377  *
0378  * When mac80211 creates a station it reserves some space (hw->sta_data_size)
0379  * in the structure for use by driver. This structure is placed in that
0380  * space.
0381  *
0382  */
0383 struct iwl_mvm_sta {
0384     u32 sta_id;
0385     u32 tfd_queue_msk;
0386     u32 mac_id_n_color;
0387     u16 tid_disable_agg;
0388     u16 max_agg_bufsize;
0389     enum iwl_sta_type sta_type;
0390     enum ieee80211_sta_state sta_state;
0391     bool bt_reduced_txpower;
0392     bool next_status_eosp;
0393     spinlock_t lock;
0394     struct iwl_mvm_tid_data tid_data[IWL_MAX_TID_COUNT + 1];
0395     u8 tid_to_baid[IWL_MAX_TID_COUNT];
0396     union {
0397         struct iwl_lq_sta_rs_fw rs_fw;
0398         struct iwl_lq_sta rs_drv;
0399     } lq_sta;
0400     struct ieee80211_vif *vif;
0401     struct iwl_mvm_key_pn __rcu *ptk_pn[4];
0402     struct iwl_mvm_rxq_dup_data *dup_data;
0403 
0404     u8 reserved_queue;
0405 
0406     /* Temporary, until the new TLC will control the Tx protection */
0407     s8 tx_protection;
0408     bool tt_tx_protection;
0409 
0410     bool disable_tx;
0411     u16 amsdu_enabled;
0412     u16 max_amsdu_len;
0413     u16 orig_amsdu_len;
0414     bool sleeping;
0415     u8 agg_tids;
0416     u8 sleep_tx_count;
0417     u8 avg_energy;
0418     u8 tx_ant;
0419     u32 pairwise_cipher;
0420 };
0421 
0422 u16 iwl_mvm_tid_queued(struct iwl_mvm *mvm, struct iwl_mvm_tid_data *tid_data);
0423 
0424 static inline struct iwl_mvm_sta *
0425 iwl_mvm_sta_from_mac80211(struct ieee80211_sta *sta)
0426 {
0427     return (void *)sta->drv_priv;
0428 }
0429 
0430 /**
0431  * struct iwl_mvm_int_sta - representation of an internal station (auxiliary or
0432  * broadcast)
0433  * @sta_id: the index of the station in the fw (will be replaced by id_n_color)
0434  * @type: station type
0435  * @tfd_queue_msk: the tfd queues used by the station
0436  */
0437 struct iwl_mvm_int_sta {
0438     u32 sta_id;
0439     enum iwl_sta_type type;
0440     u32 tfd_queue_msk;
0441 };
0442 
0443 /**
0444  * Send the STA info to the FW.
0445  *
0446  * @mvm: the iwl_mvm* to use
0447  * @sta: the STA
0448  * @update: this is true if the FW is being updated about a STA it already knows
0449  *  about. Otherwise (if this is a new STA), this should be false.
0450  * @flags: if update==true, this marks what is being changed via ORs of values
0451  *  from enum iwl_sta_modify_flag. Otherwise, this is ignored.
0452  */
0453 int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
0454                bool update, unsigned int flags);
0455 int iwl_mvm_add_sta(struct iwl_mvm *mvm,
0456             struct ieee80211_vif *vif,
0457             struct ieee80211_sta *sta);
0458 
0459 static inline int iwl_mvm_update_sta(struct iwl_mvm *mvm,
0460                      struct ieee80211_vif *vif,
0461                      struct ieee80211_sta *sta)
0462 {
0463     return iwl_mvm_sta_send_to_fw(mvm, sta, true, 0);
0464 }
0465 
0466 int iwl_mvm_wait_sta_queues_empty(struct iwl_mvm *mvm,
0467                   struct iwl_mvm_sta *mvm_sta);
0468 int iwl_mvm_rm_sta(struct iwl_mvm *mvm,
0469            struct ieee80211_vif *vif,
0470            struct ieee80211_sta *sta);
0471 int iwl_mvm_rm_sta_id(struct iwl_mvm *mvm,
0472               struct ieee80211_vif *vif,
0473               u8 sta_id);
0474 int iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
0475             struct ieee80211_vif *vif,
0476             struct ieee80211_sta *sta,
0477             struct ieee80211_key_conf *keyconf,
0478             u8 key_offset);
0479 int iwl_mvm_remove_sta_key(struct iwl_mvm *mvm,
0480                struct ieee80211_vif *vif,
0481                struct ieee80211_sta *sta,
0482                struct ieee80211_key_conf *keyconf);
0483 
0484 void iwl_mvm_update_tkip_key(struct iwl_mvm *mvm,
0485                  struct ieee80211_vif *vif,
0486                  struct ieee80211_key_conf *keyconf,
0487                  struct ieee80211_sta *sta, u32 iv32,
0488                  u16 *phase1key);
0489 
0490 void iwl_mvm_rx_eosp_notif(struct iwl_mvm *mvm,
0491                struct iwl_rx_cmd_buffer *rxb);
0492 
0493 /* AMPDU */
0494 int iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
0495                int tid, u16 ssn, bool start, u16 buf_size, u16 timeout);
0496 int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
0497             struct ieee80211_sta *sta, u16 tid, u16 *ssn);
0498 int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
0499                 struct ieee80211_sta *sta, u16 tid, u16 buf_size,
0500                 bool amsdu);
0501 int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
0502                 struct ieee80211_sta *sta, u16 tid);
0503 int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
0504                 struct ieee80211_sta *sta, u16 tid);
0505 
0506 int iwl_mvm_sta_tx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
0507                int tid, u8 queue, bool start);
0508 
0509 int iwl_mvm_add_aux_sta(struct iwl_mvm *mvm, u32 lmac_id);
0510 int iwl_mvm_rm_aux_sta(struct iwl_mvm *mvm);
0511 
0512 int iwl_mvm_alloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0513 int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0514 int iwl_mvm_add_p2p_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0515 int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0516 int iwl_mvm_rm_p2p_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0517 int iwl_mvm_add_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0518 int iwl_mvm_rm_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0519 int iwl_mvm_allocate_int_sta(struct iwl_mvm *mvm,
0520                  struct iwl_mvm_int_sta *sta,
0521                     u32 qmask, enum nl80211_iftype iftype,
0522                     enum iwl_sta_type type);
0523 void iwl_mvm_dealloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0524 void iwl_mvm_dealloc_int_sta(struct iwl_mvm *mvm, struct iwl_mvm_int_sta *sta);
0525 int iwl_mvm_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0526 int iwl_mvm_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0527 void iwl_mvm_dealloc_snif_sta(struct iwl_mvm *mvm);
0528 
0529 void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm *mvm,
0530                 struct ieee80211_sta *sta);
0531 void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm *mvm,
0532                        struct ieee80211_sta *sta,
0533                        enum ieee80211_frame_release_type reason,
0534                        u16 cnt, u16 tids, bool more_data,
0535                        bool single_sta_queue);
0536 int iwl_mvm_drain_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
0537               bool drain);
0538 void iwl_mvm_sta_modify_disable_tx(struct iwl_mvm *mvm,
0539                    struct iwl_mvm_sta *mvmsta, bool disable);
0540 void iwl_mvm_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,
0541                       struct ieee80211_sta *sta,
0542                       bool disable);
0543 void iwl_mvm_modify_all_sta_disable_tx(struct iwl_mvm *mvm,
0544                        struct iwl_mvm_vif *mvmvif,
0545                        bool disable);
0546 void iwl_mvm_csa_client_absent(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
0547 void iwl_mvm_add_new_dqa_stream_wk(struct work_struct *wk);
0548 int iwl_mvm_add_pasn_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
0549              struct iwl_mvm_int_sta *sta, u8 *addr, u32 cipher,
0550              u8 *key, u32 key_len);
0551 void iwl_mvm_cancel_channel_switch(struct iwl_mvm *mvm,
0552                    struct ieee80211_vif *vif,
0553                    u32 mac_id);
0554 #endif /* __sta_h__ */