/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */1/*2* Copyright (C) 2012-2014, 2018-2025 Intel Corporation3* Copyright (C) 2013-2014 Intel Mobile Communications GmbH4* Copyright (C) 2015-2016 Intel Deutschland GmbH5*/6#ifndef __sta_h__7#define __sta_h__89#include <linux/spinlock.h>10#include <net/mac80211.h>11#include <linux/wait.h>1213#include "iwl-trans.h" /* for IWL_MAX_TID_COUNT */14#include "fw-api.h" /* IWL_STATION_COUNT_MAX */15#include "rs.h"1617struct iwl_mvm;18struct iwl_mvm_vif;1920/**21* DOC: DQA - Dynamic Queue Allocation -introduction22*23* Dynamic Queue Allocation (AKA "DQA") is a feature implemented in iwlwifi24* driver to allow dynamic allocation of queues on-demand, rather than allocate25* them statically ahead of time. Ideally, we would like to allocate one queue26* per RA/TID, thus allowing an AP - for example - to send BE traffic to STA227* even if it also needs to send traffic to a sleeping STA1, without being28* blocked by the sleeping station.29*30* Although the queues in DQA mode are dynamically allocated, there are still31* some queues that are statically allocated:32* TXQ #0 - command queue33* TXQ #1 - aux frames34* TXQ #2 - P2P device frames35* TXQ #3 - P2P GO/SoftAP GCAST/BCAST frames36* TXQ #4 - BSS DATA frames queue37* TXQ #5-8 - Non-QoS and MGMT frames queue pool38* TXQ #9 - P2P GO/SoftAP probe responses39* TXQ #10-31 - DATA frames queue pool40* The queues are dynamically taken from either the MGMT frames queue pool or41* the DATA frames one. See the %iwl_mvm_dqa_txq for more information on every42* queue.43*44* When a frame for a previously unseen RA/TID comes in, it needs to be deferred45* until a queue is allocated for it, and only then can be TXed. Therefore, it46* is placed into %iwl_mvm_tid_data.deferred_tx_frames, and a worker called47* %mvm->add_stream_wk later allocates the queues and TXes the deferred frames.48*49* For convenience, MGMT is considered as if it has TID=8, and go to the MGMT50* queues in the pool. If there is no longer a free MGMT queue to allocate, a51* queue will be allocated from the DATA pool instead. Since QoS NDPs can create52* a problem for aggregations, they too will use a MGMT queue.53*54* When adding a STA, a DATA queue is reserved for it so that it can TX from55* it. If no such free queue exists for reserving, the STA addition will fail.56*57* If the DATA queue pool gets exhausted, no new STA will be accepted, and if a58* new RA/TID comes in for an existing STA, one of the STA's queues will become59* shared and will serve more than the single TID (but always for the same RA!).60*61* When a RA/TID needs to become aggregated, no new queue is required to be62* allocated, only mark the queue as aggregated via the ADD_STA command. Note,63* however, that a shared queue cannot be aggregated, and only after the other64* TIDs become inactive and are removed - only then can the queue be65* reconfigured and become aggregated.66*67* When removing a station, its queues are returned to the pool for reuse. Here68* we also need to make sure that we are synced with the worker thread that TXes69* the deferred frames so we don't get into a situation where the queues are70* removed and then the worker puts deferred frames onto the released queues or71* tries to allocate new queues for a STA we don't need anymore.72*/7374/**75* DOC: station table - introduction76*77* The station table is a list of data structure that reprensent the stations.78* In STA/P2P client mode, the driver will hold one station for the AP/ GO.79* In GO/AP mode, the driver will have as many stations as associated clients.80* All these stations are reflected in the fw's station table. The driver81* keeps the fw's station table up to date with the ADD_STA command. Stations82* can be removed by the REMOVE_STA command.83*84* All the data related to a station is held in the structure %iwl_mvm_sta85* which is embed in the mac80211's %ieee80211_sta (in the drv_priv) area.86* This data includes the index of the station in the fw, per tid information87* (sequence numbers, Block-ack state machine, etc...). The stations are88* created and deleted by the %sta_state callback from %ieee80211_ops.89*90* The driver holds a map: %fw_id_to_mac_id that allows to fetch a91* %ieee80211_sta (and the %iwl_mvm_sta embedded into it) based on a fw92* station index. That way, the driver is able to get the tid related data in93* O(1) in time sensitive paths (Tx / Tx response / BA notification). These94* paths are triggered by the fw, and the driver needs to get a pointer to the95* %ieee80211 structure. This map helps to get that pointer quickly.96*/9798/**99* DOC: station table - locking100*101* As stated before, the station is created / deleted by mac80211's %sta_state102* callback from %ieee80211_ops which can sleep. The next paragraph explains103* the locking of a single stations, the next ones relates to the station104* table.105*106* The station holds the sequence number per tid. So this data needs to be107* accessed in the Tx path (which is softIRQ). It also holds the Block-Ack108* information (the state machine / and the logic that checks if the queues109* were drained), so it also needs to be accessible from the Tx response flow.110* In short, the station needs to be access from sleepable context as well as111* from tasklets, so the station itself needs a spinlock.112*113* The writers of %fw_id_to_mac_id map are serialized by the global mutex of114* the mvm op_mode. This is possible since %sta_state can sleep.115* The pointers in this map are RCU protected, hence we won't replace the116* station while we have Tx / Tx response / BA notification running.117*118* If a station is deleted while it still has packets in its A-MPDU queues,119* then the reclaim flow will notice that there is no station in the map for120* sta_id and it will dump the responses.121*/122123/**124* DOC: station table - internal stations125*126* The FW needs a few internal stations that are not reflected in127* mac80211, such as broadcast station in AP / GO mode, or AUX sta for128* scanning and P2P device (during the GO negotiation).129* For these kind of stations we have %iwl_mvm_int_sta struct which holds the130* data relevant for them from both %iwl_mvm_sta and %ieee80211_sta.131* Usually the data for these stations is static, so no locking is required,132* and no TID data as this is also not needed.133* One thing to note, is that these stations have an ID in the fw, but not134* in mac80211. In order to "reserve" them a sta_id in %fw_id_to_mac_id135* we fill ERR_PTR(-EINVAL) in this mapping and all other dereferencing of136* pointers from this mapping need to check that the value is not error137* or NULL.138*139* Currently there is only one auxiliary station for scanning, initialized140* on init.141*/142143/**144* DOC: station table - AP Station in STA mode145*146* %iwl_mvm_vif includes the index of the AP station in the fw's STA table:147* %ap_sta_id. To get the point to the corresponding %ieee80211_sta,148* &fw_id_to_mac_id can be used. Due to the way the fw works, we must not remove149* the AP station from the fw before setting the MAC context as unassociated.150* Hence, %fw_id_to_mac_id[%ap_sta_id] will be NULLed when the AP station is151* removed by mac80211, but the station won't be removed in the fw until the152* VIF is set as unassociated. Then, %ap_sta_id will be invalidated.153*/154155/**156* DOC: station table - Drain vs. Flush157*158* Flush means that all the frames in the SCD queue are dumped regardless the159* station to which they were sent. We do that when we disassociate and before160* we remove the STA of the AP. The flush can be done synchronously against the161* fw.162* Drain means that the fw will drop all the frames sent to a specific station.163* This is useful when a client (if we are IBSS / GO or AP) disassociates.164*/165166/**167* DOC: station table - fw restart168*169* When the fw asserts, or we have any other issue that requires to reset the170* driver, we require mac80211 to reconfigure the driver. Since the private171* data of the stations is embed in mac80211's %ieee80211_sta, that data will172* not be zeroed and needs to be reinitialized manually.173* %IWL_MVM_STATUS_IN_HW_RESTART is set during restart and that will hint us174* that we must not allocate a new sta_id but reuse the previous one. This175* means that the stations being re-added after the reset will have the same176* place in the fw as before the reset. We do need to zero the %fw_id_to_mac_id177* map, since the stations aren't in the fw any more. Internal stations that178* are not added by mac80211 will be re-added in the init flow that is called179* after the restart: mac80211 call's %iwl_mvm_mac_start which calls to180* %iwl_mvm_up.181*/182183/**184* DOC: AP mode - PS185*186* When a station is asleep, the fw will set it as "asleep". All frames on187* shared queues (i.e. non-aggregation queues) to that station will be dropped188* by the fw (%TX_STATUS_FAIL_DEST_PS failure code).189*190* AMPDUs are in a separate queue that is stopped by the fw. We just need to191* let mac80211 know when there are frames in these queues so that it can192* properly handle trigger frames.193*194* When a trigger frame is received, mac80211 tells the driver to send frames195* from the AMPDU queues or sends frames to non-aggregation queues itself,196* depending on which ACs are delivery-enabled and what TID has frames to197* transmit. Note that mac80211 has all the knowledge since all the non-agg198* frames are buffered / filtered, and the driver tells mac80211 about agg199* frames). The driver needs to tell the fw to let frames out even if the200* station is asleep. This is done by %iwl_mvm_sta_modify_sleep_tx_count.201*202* When we receive a frame from that station with PM bit unset, the driver203* needs to let the fw know that this station isn't asleep any more. This is204* done by %iwl_mvm_sta_modify_ps_wake in response to mac80211 signaling the205* station's wakeup.206*207* For a GO, the Service Period might be cut short due to an absence period208* of the GO. In this (and all other cases) the firmware notifies us with the209* EOSP_NOTIFICATION, and we notify mac80211 of that. Further frames that we210* already sent to the device will be rejected again.211*212* See also "AP support for powersaving clients" in mac80211.h.213*/214215/**216* enum iwl_mvm_agg_state - aggregation session state217*218* The state machine of the BA agreement establishment / tear down.219* These states relate to a specific RA / TID.220*221* @IWL_AGG_OFF: aggregation is not used222* @IWL_AGG_QUEUED: aggregation start work has been queued223* @IWL_AGG_STARTING: aggregation are starting (between start and oper)224* @IWL_AGG_ON: aggregation session is up225* @IWL_EMPTYING_HW_QUEUE_ADDBA: establishing a BA session - waiting for the226* HW queue to be empty from packets for this RA /TID.227*/228enum iwl_mvm_agg_state {229IWL_AGG_OFF = 0,230IWL_AGG_QUEUED,231IWL_AGG_STARTING,232IWL_AGG_ON,233IWL_EMPTYING_HW_QUEUE_ADDBA,234};235236/**237* struct iwl_mvm_tid_data - holds the states for each RA / TID238* @seq_number: the next WiFi sequence number to use239* @next_reclaimed: the WiFi sequence number of the next packet to be acked.240* This is basically (last acked packet++).241* @rate_n_flags: Rate at which Tx was attempted. Holds the data between the242* Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).243* @lq_color: the color of the LQ command as it appears in tx response.244* @amsdu_in_ampdu_allowed: true if A-MSDU in A-MPDU is allowed.245* @state: state of the BA agreement establishment / tear down.246* @txq_id: Tx queue used by the BA session / DQA247* @ssn: the first packet to be sent in AGG HW queue in Tx AGG start flow, or248* the first packet to be sent in legacy HW queue in Tx AGG stop flow.249* Basically when next_reclaimed reaches ssn, we can tell mac80211 that250* we are ready to finish the Tx AGG stop / start flow.251* @tx_time: medium time consumed by this A-MPDU252* @tpt_meas_start: time of the throughput measurements start, is reset every HZ253* @tx_count_last: number of frames transmitted during the last second254* @tx_count: counts the number of frames transmitted since the last reset of255* tpt_meas_start256*/257struct iwl_mvm_tid_data {258u16 seq_number;259u16 next_reclaimed;260/* The rest is Tx AGG related */261__le32 rate_n_flags;262u8 lq_color;263bool amsdu_in_ampdu_allowed;264enum iwl_mvm_agg_state state;265u16 txq_id;266u16 ssn;267u16 tx_time;268unsigned long tpt_meas_start;269u32 tx_count_last;270u32 tx_count;271};272273struct iwl_mvm_key_pn {274struct rcu_head rcu_head;275struct {276u8 pn[IWL_MAX_TID_COUNT][IEEE80211_CCMP_PN_LEN];277} ____cacheline_aligned_in_smp q[];278};279280/**281* enum iwl_mvm_rxq_notif_type - Internal message identifier282*283* @IWL_MVM_RXQ_EMPTY: empty sync notification284* @IWL_MVM_RXQ_NOTIF_DEL_BA: notify RSS queues of delBA285*/286enum iwl_mvm_rxq_notif_type {287IWL_MVM_RXQ_EMPTY,288IWL_MVM_RXQ_NOTIF_DEL_BA,289};290291/**292* struct iwl_mvm_internal_rxq_notif - Internal representation of the data sent293* in &iwl_rxq_sync_cmd. Should be DWORD aligned.294* FW is agnostic to the payload, so there are no endianity requirements.295*296* @type: value from &iwl_mvm_rxq_notif_type297* @sync: ctrl path is waiting for all notifications to be received298* @cookie: internal cookie to identify old notifications299* @data: payload300*/301struct iwl_mvm_internal_rxq_notif {302u16 type;303u16 sync;304u32 cookie;305u8 data[];306} __packed;307308struct iwl_mvm_delba_data {309u32 baid;310} __packed;311312/**313* struct iwl_mvm_rxq_dup_data - per station per rx queue data314* @last_seq: last sequence per tid for duplicate packet detection315* @last_sub_frame: last subframe packet316*/317struct iwl_mvm_rxq_dup_data {318__le16 last_seq[IWL_MAX_TID_COUNT + 1];319u8 last_sub_frame[IWL_MAX_TID_COUNT + 1];320} ____cacheline_aligned_in_smp;321322/**323* struct iwl_mvm_link_sta - link specific parameters of a station324* @rcu_head: used for freeing the data325* @sta_id: the index of the station in the fw326* @lq_sta: holds rate scaling data, either for the case when RS is done in327* the driver - %rs_drv or in the FW - %rs_fw.328* @orig_amsdu_len: used to save the original amsdu_len when it is changed via329* debugfs. If it's set to 0, it means that it is it's not set via330* debugfs.331* @avg_energy: energy as reported by FW statistics notification332*/333struct iwl_mvm_link_sta {334struct rcu_head rcu_head;335u32 sta_id;336union {337struct iwl_lq_sta_rs_fw rs_fw;338struct iwl_lq_sta rs_drv;339} lq_sta;340341u16 orig_amsdu_len;342343u8 avg_energy;344};345346struct iwl_mvm_mpdu_counter {347u32 tx;348u32 rx;349};350351/**352* struct iwl_mvm_tpt_counter - per-queue MPDU counter353*354* @lock: Needed to protect the counters when modified from statistics.355* @per_link: per-link counters.356* @window_start: timestamp of the counting-window start357*/358struct iwl_mvm_tpt_counter {359spinlock_t lock;360struct iwl_mvm_mpdu_counter per_link[IWL_FW_MAX_LINK_ID];361unsigned long window_start;362} ____cacheline_aligned_in_smp;363364/**365* struct iwl_mvm_sta - representation of a station in the driver366* @vif: the interface the station belongs to367* @tfd_queue_msk: the tfd queues used by the station368* @mac_id_n_color: the MAC context this station is linked to369* @tid_disable_agg: bitmap: if bit(tid) is set, the fw won't send ampdus for370* tid.371* @sta_type: station type372* @authorized: indicates station is authorized373* @sta_state: station state according to enum %ieee80211_sta_state374* @bt_reduced_txpower: is reduced tx power enabled for this station375* @next_status_eosp: the next reclaimed packet is a PS-Poll response and376* we need to signal the EOSP377* @lock: lock to protect the whole struct. Since %tid_data is access from Tx378* and from Tx response flow, it needs a spinlock.379* @tid_data: per tid data + mgmt. Look at %iwl_mvm_tid_data.380* @tid_to_baid: a simple map of TID to baid381* @vif: a vif pointer382* @reserved_queue: the queue reserved for this STA for DQA purposes383* Every STA has is given one reserved queue to allow it to operate. If no384* such queue can be guaranteed, the STA addition will fail.385* @tx_protection: reference counter for controlling the Tx protection.386* @tt_tx_protection: is thermal throttling enable Tx protection?387* @disable_tx: is tx to this STA disabled?388* @amsdu_enabled: bitmap of TX AMSDU allowed TIDs.389* In case TLC offload is not active it is either 0xFFFF or 0.390* @max_amsdu_len: max AMSDU length391* @sleeping: indicates the station is sleeping (when not offloaded to FW)392* @agg_tids: bitmap of tids whose status is operational aggregated (IWL_AGG_ON)393* @sleeping: sta sleep transitions in power management394* @sleep_tx_count: the number of frames that we told the firmware to let out395* even when that station is asleep. This is useful in case the queue396* gets empty before all the frames were sent, which can happen when397* we are sending frames from an AMPDU queue and there was a hole in398* the BA window. To be used for UAPSD only.399* @ptk_pn: per-queue PTK PN data structures400* @dup_data: per queue duplicate packet detection data401* @tx_ant: the index of the antenna to use for data tx to this station. Only402* used during connection establishment (e.g. for the 4 way handshake403* exchange).404* @pairwise_cipher: used to feed iwlmei upon authorization405* @deflink: the default link station, for non-MLO STA, all link specific data406* is accessed via deflink (or link[0]). For MLO, it will hold data of the407* first added link STA.408* @link: per link sta entries. For non-MLO only link[0] holds data. For MLO,409* link[0] points to deflink and link[link_id] is allocated when new link410* sta is added.411* @mpdu_counters: RX/TX MPDUs counters for each queue.412*413* When mac80211 creates a station it reserves some space (hw->sta_data_size)414* in the structure for use by driver. This structure is placed in that415* space.416*417*/418struct iwl_mvm_sta {419u32 tfd_queue_msk;420u32 mac_id_n_color;421u16 tid_disable_agg;422u8 sta_type;423enum ieee80211_sta_state sta_state;424bool bt_reduced_txpower;425bool next_status_eosp;426bool authorized;427spinlock_t lock;428struct iwl_mvm_tid_data tid_data[IWL_MAX_TID_COUNT + 1];429u8 tid_to_baid[IWL_MAX_TID_COUNT];430struct ieee80211_vif *vif;431struct iwl_mvm_key_pn __rcu *ptk_pn[4];432struct iwl_mvm_rxq_dup_data *dup_data;433434u8 reserved_queue;435436/* Temporary, until the new TLC will control the Tx protection */437s8 tx_protection;438bool tt_tx_protection;439440bool disable_tx;441u16 amsdu_enabled;442u16 max_amsdu_len;443bool sleeping;444u8 agg_tids;445u8 sleep_tx_count;446u8 tx_ant;447u32 pairwise_cipher;448449struct iwl_mvm_link_sta deflink;450struct iwl_mvm_link_sta __rcu *link[IEEE80211_MLD_MAX_NUM_LINKS];451452struct iwl_mvm_tpt_counter *mpdu_counters;453};454455u16 iwl_mvm_tid_queued(struct iwl_mvm *mvm, struct iwl_mvm_tid_data *tid_data);456457static inline struct iwl_mvm_sta *458iwl_mvm_sta_from_mac80211(struct ieee80211_sta *sta)459{460return (void *)sta->drv_priv;461}462463/**464* struct iwl_mvm_int_sta - representation of an internal station (auxiliary or465* broadcast)466* @sta_id: the index of the station in the fw (will be replaced by id_n_color)467* @type: station type468* @tfd_queue_msk: the tfd queues used by the station469*/470struct iwl_mvm_int_sta {471u32 sta_id;472u8 type;473u32 tfd_queue_msk;474};475476/**477* iwl_mvm_sta_send_to_fw - Send the STA info to the FW.478*479* @mvm: the iwl_mvm* to use480* @sta: the STA481* @update: this is true if the FW is being updated about a STA it already knows482* about. Otherwise (if this is a new STA), this should be false.483* @flags: if update==true, this marks what is being changed via ORs of values484* from enum iwl_sta_modify_flag. Otherwise, this is ignored.485* Return: negative error code or 0 on success486*/487int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta,488bool update, unsigned int flags);489int iwl_mvm_find_free_sta_id(struct iwl_mvm *mvm, enum nl80211_iftype iftype);490int iwl_mvm_sta_init(struct iwl_mvm *mvm, struct ieee80211_vif *vif,491struct ieee80211_sta *sta, int sta_id, u8 sta_type);492int iwl_mvm_add_sta(struct iwl_mvm *mvm,493struct ieee80211_vif *vif,494struct ieee80211_sta *sta);495496static inline int iwl_mvm_update_sta(struct iwl_mvm *mvm,497struct ieee80211_vif *vif,498struct ieee80211_sta *sta)499{500return iwl_mvm_sta_send_to_fw(mvm, sta, true, 0);501}502503void iwl_mvm_realloc_queues_after_restart(struct iwl_mvm *mvm,504struct ieee80211_sta *sta);505int iwl_mvm_wait_sta_queues_empty(struct iwl_mvm *mvm,506struct iwl_mvm_sta *mvm_sta);507void iwl_mvm_sta_del(struct iwl_mvm *mvm, struct ieee80211_vif *vif,508struct ieee80211_sta *sta,509struct ieee80211_link_sta *link_sta);510int iwl_mvm_rm_sta(struct iwl_mvm *mvm,511struct ieee80211_vif *vif,512struct ieee80211_sta *sta);513int iwl_mvm_rm_sta_id(struct iwl_mvm *mvm,514struct ieee80211_vif *vif,515u8 sta_id);516int iwl_mvm_set_sta_key(struct iwl_mvm *mvm,517struct ieee80211_vif *vif,518struct ieee80211_sta *sta,519struct ieee80211_key_conf *keyconf,520u8 key_offset);521int iwl_mvm_remove_sta_key(struct iwl_mvm *mvm,522struct ieee80211_vif *vif,523struct ieee80211_sta *sta,524struct ieee80211_key_conf *keyconf);525526void iwl_mvm_update_tkip_key(struct iwl_mvm *mvm,527struct ieee80211_vif *vif,528struct ieee80211_key_conf *keyconf,529struct ieee80211_sta *sta, u32 iv32,530u16 *phase1key);531532void iwl_mvm_rx_eosp_notif(struct iwl_mvm *mvm,533struct iwl_rx_cmd_buffer *rxb);534535void iwl_mvm_count_mpdu(struct iwl_mvm_sta *mvm_sta, u8 fw_sta_id, u32 count,536bool tx, int queue);537538/* AMPDU */539int iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,540int tid, u16 ssn, bool start, u16 buf_size, u16 timeout);541int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,542struct ieee80211_sta *sta, u16 tid, u16 *ssn);543int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,544struct ieee80211_sta *sta, u16 tid, u16 buf_size,545bool amsdu);546int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,547struct ieee80211_sta *sta, u16 tid);548int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif,549struct ieee80211_sta *sta, u16 tid);550551int iwl_mvm_sta_tx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,552int tid, u8 queue, bool start);553554int iwl_mvm_add_aux_sta(struct iwl_mvm *mvm, u32 lmac_id);555int iwl_mvm_rm_aux_sta(struct iwl_mvm *mvm);556557int iwl_mvm_alloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);558void iwl_mvm_free_bcast_sta_queues(struct iwl_mvm *mvm,559struct ieee80211_vif *vif);560int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);561int iwl_mvm_add_p2p_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);562int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);563int iwl_mvm_rm_p2p_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);564int iwl_mvm_add_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);565int iwl_mvm_rm_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);566int iwl_mvm_allocate_int_sta(struct iwl_mvm *mvm,567struct iwl_mvm_int_sta *sta,568u32 qmask, enum nl80211_iftype iftype,569u8 type);570void iwl_mvm_dealloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);571void iwl_mvm_dealloc_int_sta(struct iwl_mvm *mvm, struct iwl_mvm_int_sta *sta);572int iwl_mvm_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);573int iwl_mvm_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);574void iwl_mvm_dealloc_snif_sta(struct iwl_mvm *mvm);575576void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm *mvm,577struct ieee80211_sta *sta);578void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm *mvm,579struct ieee80211_sta *sta,580enum ieee80211_frame_release_type reason,581u16 cnt, u16 tids, bool more_data,582bool single_sta_queue);583int iwl_mvm_drain_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,584bool drain);585void iwl_mvm_sta_modify_disable_tx(struct iwl_mvm *mvm,586struct iwl_mvm_sta *mvmsta, bool disable);587void iwl_mvm_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,588struct ieee80211_sta *sta,589bool disable);590void iwl_mvm_modify_all_sta_disable_tx(struct iwl_mvm *mvm,591struct iwl_mvm_vif *mvmvif,592bool disable);593594void iwl_mvm_csa_client_absent(struct iwl_mvm *mvm, struct ieee80211_vif *vif);595int iwl_mvm_sta_ensure_queue(struct iwl_mvm *mvm, struct ieee80211_txq *txq);596void iwl_mvm_add_new_dqa_stream_wk(struct work_struct *wk);597void iwl_mvm_cancel_channel_switch(struct iwl_mvm *mvm,598struct ieee80211_vif *vif,599u32 id);600/* Queues */601int iwl_mvm_tvqm_enable_txq(struct iwl_mvm *mvm,602struct ieee80211_sta *sta,603u8 sta_id, u8 tid, unsigned int timeout);604605/* Sta state */606/**607* struct iwl_mvm_sta_state_ops - callbacks for the sta_state() ops608*609* Since the only difference between both MLD and610* non-MLD versions of sta_state() is these function calls,611* each version will send its specific function calls to612* %iwl_mvm_mac_sta_state_common().613*614* @add_sta: pointer to the function that adds a new sta615* @update_sta: pointer to the function that updates a sta616* @rm_sta: pointer to the functions that removes a sta617* @mac_ctxt_changed: pointer to the function that handles a change in mac ctxt618*/619struct iwl_mvm_sta_state_ops {620int (*add_sta)(struct iwl_mvm *mvm, struct ieee80211_vif *vif,621struct ieee80211_sta *sta);622int (*update_sta)(struct iwl_mvm *mvm, struct ieee80211_vif *vif,623struct ieee80211_sta *sta);624int (*rm_sta)(struct iwl_mvm *mvm, struct ieee80211_vif *vif,625struct ieee80211_sta *sta);626int (*mac_ctxt_changed)(struct iwl_mvm *mvm, struct ieee80211_vif *vif,627bool force_assoc_off);628};629630int iwl_mvm_mac_sta_state_common(struct ieee80211_hw *hw,631struct ieee80211_vif *vif,632struct ieee80211_sta *sta,633enum ieee80211_sta_state old_state,634enum ieee80211_sta_state new_state,635const struct iwl_mvm_sta_state_ops *callbacks);636637/* New MLD STA related APIs */638/* STA */639int iwl_mvm_mld_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,640struct ieee80211_bss_conf *link_conf);641int iwl_mvm_mld_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,642struct ieee80211_bss_conf *link_conf);643int iwl_mvm_mld_add_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,644struct ieee80211_bss_conf *link_conf);645int iwl_mvm_mld_add_aux_sta(struct iwl_mvm *mvm, u32 lmac_id);646int iwl_mvm_mld_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,647struct ieee80211_bss_conf *link_conf);648int iwl_mvm_mld_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);649int iwl_mvm_mld_rm_mcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,650struct ieee80211_bss_conf *link_conf);651int iwl_mvm_mld_rm_aux_sta(struct iwl_mvm *mvm);652int iwl_mvm_mld_add_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,653struct ieee80211_sta *sta);654int iwl_mvm_mld_update_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,655struct ieee80211_sta *sta);656int iwl_mvm_mld_rm_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif,657struct ieee80211_sta *sta);658void iwl_mvm_mld_free_sta_link(struct iwl_mvm *mvm,659struct iwl_mvm_sta *mvm_sta,660struct iwl_mvm_link_sta *mvm_sta_link,661unsigned int link_id);662int iwl_mvm_mld_rm_sta_id(struct iwl_mvm *mvm, u8 sta_id);663int iwl_mvm_mld_update_sta_links(struct iwl_mvm *mvm,664struct ieee80211_vif *vif,665struct ieee80211_sta *sta,666u16 old_links, u16 new_links);667u32 iwl_mvm_sta_fw_id_mask(struct iwl_mvm *mvm, struct ieee80211_sta *sta,668int filter_link_id);669int iwl_mvm_mld_add_int_sta_with_queue(struct iwl_mvm *mvm,670struct iwl_mvm_int_sta *sta,671const u8 *addr, int link_id,672u16 *queue, u8 tid,673unsigned int *_wdg_timeout);674675/* Queues */676void iwl_mvm_mld_modify_all_sta_disable_tx(struct iwl_mvm *mvm,677struct iwl_mvm_vif *mvmvif,678bool disable);679void iwl_mvm_mld_sta_modify_disable_tx(struct iwl_mvm *mvm,680struct iwl_mvm_sta *mvm_sta,681bool disable);682void iwl_mvm_mld_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,683struct ieee80211_sta *sta,684bool disable);685#endif /* __sta_h__ */686687688