sta.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  1. /******************************************************************************
  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. *
  8. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
  10. * Copyright(c) 2015 - 2016 Intel Deutschland GmbH
  11. *
  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
  27. * in the file called COPYING.
  28. *
  29. * Contact Information:
  30. * Intel Linux Wireless <linuxwifi@intel.com>
  31. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  32. *
  33. * BSD LICENSE
  34. *
  35. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  36. * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
  37. * Copyright(c) 2015 - 2016 Intel Deutschland GmbH
  38. * 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. #ifndef __sta_h__
  68. #define __sta_h__
  69. #include <linux/spinlock.h>
  70. #include <net/mac80211.h>
  71. #include <linux/wait.h>
  72. #include "iwl-trans.h" /* for IWL_MAX_TID_COUNT */
  73. #include "fw-api.h" /* IWL_MVM_STATION_COUNT */
  74. #include "rs.h"
  75. struct iwl_mvm;
  76. struct iwl_mvm_vif;
  77. /**
  78. * DOC: DQA - Dynamic Queue Allocation -introduction
  79. *
  80. * Dynamic Queue Allocation (AKA "DQA") is a feature implemented in iwlwifi
  81. * driver to allow dynamic allocation of queues on-demand, rather than allocate
  82. * them statically ahead of time. Ideally, we would like to allocate one queue
  83. * per RA/TID, thus allowing an AP - for example - to send BE traffic to STA2
  84. * even if it also needs to send traffic to a sleeping STA1, without being
  85. * blocked by the sleeping station.
  86. *
  87. * Although the queues in DQA mode are dynamically allocated, there are still
  88. * some queues that are statically allocated:
  89. * TXQ #0 - command queue
  90. * TXQ #1 - aux frames
  91. * TXQ #2 - P2P device frames
  92. * TXQ #3 - P2P GO/SoftAP GCAST/BCAST frames
  93. * TXQ #4 - BSS DATA frames queue
  94. * TXQ #5-8 - Non-QoS and MGMT frames queue pool
  95. * TXQ #9 - P2P GO/SoftAP probe responses
  96. * TXQ #10-31 - DATA frames queue pool
  97. * The queues are dynamically taken from either the MGMT frames queue pool or
  98. * the DATA frames one. See the %iwl_mvm_dqa_txq for more information on every
  99. * queue.
  100. *
  101. * When a frame for a previously unseen RA/TID comes in, it needs to be deferred
  102. * until a queue is allocated for it, and only then can be TXed. Therefore, it
  103. * is placed into %iwl_mvm_tid_data.deferred_tx_frames, and a worker called
  104. * %mvm->add_stream_wk later allocates the queues and TXes the deferred frames.
  105. *
  106. * For convenience, MGMT is considered as if it has TID=8, and go to the MGMT
  107. * queues in the pool. If there is no longer a free MGMT queue to allocate, a
  108. * queue will be allocated from the DATA pool instead. Since QoS NDPs can create
  109. * a problem for aggregations, they too will use a MGMT queue.
  110. *
  111. * When adding a STA, a DATA queue is reserved for it so that it can TX from
  112. * it. If no such free queue exists for reserving, the STA addition will fail.
  113. *
  114. * If the DATA queue pool gets exhausted, no new STA will be accepted, and if a
  115. * new RA/TID comes in for an existing STA, one of the STA's queues will become
  116. * shared and will serve more than the single TID (but always for the same RA!).
  117. *
  118. * When a RA/TID needs to become aggregated, no new queue is required to be
  119. * allocated, only mark the queue as aggregated via the ADD_STA command. Note,
  120. * however, that a shared queue cannot be aggregated, and only after the other
  121. * TIDs become inactive and are removed - only then can the queue be
  122. * reconfigured and become aggregated.
  123. *
  124. * When removing a station, its queues are returned to the pool for reuse. Here
  125. * we also need to make sure that we are synced with the worker thread that TXes
  126. * the deferred frames so we don't get into a situation where the queues are
  127. * removed and then the worker puts deferred frames onto the released queues or
  128. * tries to allocate new queues for a STA we don't need anymore.
  129. */
  130. /**
  131. * DOC: station table - introduction
  132. *
  133. * The station table is a list of data structure that reprensent the stations.
  134. * In STA/P2P client mode, the driver will hold one station for the AP/ GO.
  135. * In GO/AP mode, the driver will have as many stations as associated clients.
  136. * All these stations are reflected in the fw's station table. The driver
  137. * keeps the fw's station table up to date with the ADD_STA command. Stations
  138. * can be removed by the REMOVE_STA command.
  139. *
  140. * All the data related to a station is held in the structure %iwl_mvm_sta
  141. * which is embed in the mac80211's %ieee80211_sta (in the drv_priv) area.
  142. * This data includes the index of the station in the fw, per tid information
  143. * (sequence numbers, Block-ack state machine, etc...). The stations are
  144. * created and deleted by the %sta_state callback from %ieee80211_ops.
  145. *
  146. * The driver holds a map: %fw_id_to_mac_id that allows to fetch a
  147. * %ieee80211_sta (and the %iwl_mvm_sta embedded into it) based on a fw
  148. * station index. That way, the driver is able to get the tid related data in
  149. * O(1) in time sensitive paths (Tx / Tx response / BA notification). These
  150. * paths are triggered by the fw, and the driver needs to get a pointer to the
  151. * %ieee80211 structure. This map helps to get that pointer quickly.
  152. */
  153. /**
  154. * DOC: station table - locking
  155. *
  156. * As stated before, the station is created / deleted by mac80211's %sta_state
  157. * callback from %ieee80211_ops which can sleep. The next paragraph explains
  158. * the locking of a single stations, the next ones relates to the station
  159. * table.
  160. *
  161. * The station holds the sequence number per tid. So this data needs to be
  162. * accessed in the Tx path (which is softIRQ). It also holds the Block-Ack
  163. * information (the state machine / and the logic that checks if the queues
  164. * were drained), so it also needs to be accessible from the Tx response flow.
  165. * In short, the station needs to be access from sleepable context as well as
  166. * from tasklets, so the station itself needs a spinlock.
  167. *
  168. * The writers of %fw_id_to_mac_id map are serialized by the global mutex of
  169. * the mvm op_mode. This is possible since %sta_state can sleep.
  170. * The pointers in this map are RCU protected, hence we won't replace the
  171. * station while we have Tx / Tx response / BA notification running.
  172. *
  173. * If a station is deleted while it still has packets in its A-MPDU queues,
  174. * then the reclaim flow will notice that there is no station in the map for
  175. * sta_id and it will dump the responses.
  176. */
  177. /**
  178. * DOC: station table - internal stations
  179. *
  180. * The FW needs a few internal stations that are not reflected in
  181. * mac80211, such as broadcast station in AP / GO mode, or AUX sta for
  182. * scanning and P2P device (during the GO negotiation).
  183. * For these kind of stations we have %iwl_mvm_int_sta struct which holds the
  184. * data relevant for them from both %iwl_mvm_sta and %ieee80211_sta.
  185. * Usually the data for these stations is static, so no locking is required,
  186. * and no TID data as this is also not needed.
  187. * One thing to note, is that these stations have an ID in the fw, but not
  188. * in mac80211. In order to "reserve" them a sta_id in %fw_id_to_mac_id
  189. * we fill ERR_PTR(EINVAL) in this mapping and all other dereferencing of
  190. * pointers from this mapping need to check that the value is not error
  191. * or NULL.
  192. *
  193. * Currently there is only one auxiliary station for scanning, initialized
  194. * on init.
  195. */
  196. /**
  197. * DOC: station table - AP Station in STA mode
  198. *
  199. * %iwl_mvm_vif includes the index of the AP station in the fw's STA table:
  200. * %ap_sta_id. To get the point to the corresponding %ieee80211_sta,
  201. * &fw_id_to_mac_id can be used. Due to the way the fw works, we must not remove
  202. * the AP station from the fw before setting the MAC context as unassociated.
  203. * Hence, %fw_id_to_mac_id[%ap_sta_id] will be NULLed when the AP station is
  204. * removed by mac80211, but the station won't be removed in the fw until the
  205. * VIF is set as unassociated. Then, %ap_sta_id will be invalidated.
  206. */
  207. /**
  208. * DOC: station table - Drain vs. Flush
  209. *
  210. * Flush means that all the frames in the SCD queue are dumped regardless the
  211. * station to which they were sent. We do that when we disassociate and before
  212. * we remove the STA of the AP. The flush can be done synchronously against the
  213. * fw.
  214. * Drain means that the fw will drop all the frames sent to a specific station.
  215. * This is useful when a client (if we are IBSS / GO or AP) disassociates. In
  216. * that case, we need to drain all the frames for that client from the AC queues
  217. * that are shared with the other clients. Only then, we can remove the STA in
  218. * the fw. In order to do so, we track the non-AMPDU packets for each station.
  219. * If mac80211 removes a STA and if it still has non-AMPDU packets pending in
  220. * the queues, we mark this station as %EBUSY in %fw_id_to_mac_id, and drop all
  221. * the frames for this STA (%iwl_mvm_rm_sta). When the last frame is dropped
  222. * (we know about it with its Tx response), we remove the station in fw and set
  223. * it as %NULL in %fw_id_to_mac_id: this is the purpose of
  224. * %iwl_mvm_sta_drained_wk.
  225. */
  226. /**
  227. * DOC: station table - fw restart
  228. *
  229. * When the fw asserts, or we have any other issue that requires to reset the
  230. * driver, we require mac80211 to reconfigure the driver. Since the private
  231. * data of the stations is embed in mac80211's %ieee80211_sta, that data will
  232. * not be zeroed and needs to be reinitialized manually.
  233. * %IWL_MVM_STATUS_IN_HW_RESTART is set during restart and that will hint us
  234. * that we must not allocate a new sta_id but reuse the previous one. This
  235. * means that the stations being re-added after the reset will have the same
  236. * place in the fw as before the reset. We do need to zero the %fw_id_to_mac_id
  237. * map, since the stations aren't in the fw any more. Internal stations that
  238. * are not added by mac80211 will be re-added in the init flow that is called
  239. * after the restart: mac80211 call's %iwl_mvm_mac_start which calls to
  240. * %iwl_mvm_up.
  241. */
  242. /**
  243. * DOC: AP mode - PS
  244. *
  245. * When a station is asleep, the fw will set it as "asleep". All frames on
  246. * shared queues (i.e. non-aggregation queues) to that station will be dropped
  247. * by the fw (%TX_STATUS_FAIL_DEST_PS failure code).
  248. *
  249. * AMPDUs are in a separate queue that is stopped by the fw. We just need to
  250. * let mac80211 know when there are frames in these queues so that it can
  251. * properly handle trigger frames.
  252. *
  253. * When a trigger frame is received, mac80211 tells the driver to send frames
  254. * from the AMPDU queues or sends frames to non-aggregation queues itself,
  255. * depending on which ACs are delivery-enabled and what TID has frames to
  256. * transmit. Note that mac80211 has all the knowledge since all the non-agg
  257. * frames are buffered / filtered, and the driver tells mac80211 about agg
  258. * frames). The driver needs to tell the fw to let frames out even if the
  259. * station is asleep. This is done by %iwl_mvm_sta_modify_sleep_tx_count.
  260. *
  261. * When we receive a frame from that station with PM bit unset, the driver
  262. * needs to let the fw know that this station isn't asleep any more. This is
  263. * done by %iwl_mvm_sta_modify_ps_wake in response to mac80211 signaling the
  264. * station's wakeup.
  265. *
  266. * For a GO, the Service Period might be cut short due to an absence period
  267. * of the GO. In this (and all other cases) the firmware notifies us with the
  268. * EOSP_NOTIFICATION, and we notify mac80211 of that. Further frames that we
  269. * already sent to the device will be rejected again.
  270. *
  271. * See also "AP support for powersaving clients" in mac80211.h.
  272. */
  273. /**
  274. * enum iwl_mvm_agg_state
  275. *
  276. * The state machine of the BA agreement establishment / tear down.
  277. * These states relate to a specific RA / TID.
  278. *
  279. * @IWL_AGG_OFF: aggregation is not used
  280. * @IWL_AGG_STARTING: aggregation are starting (between start and oper)
  281. * @IWL_AGG_ON: aggregation session is up
  282. * @IWL_EMPTYING_HW_QUEUE_ADDBA: establishing a BA session - waiting for the
  283. * HW queue to be empty from packets for this RA /TID.
  284. * @IWL_EMPTYING_HW_QUEUE_DELBA: tearing down a BA session - waiting for the
  285. * HW queue to be empty from packets for this RA /TID.
  286. */
  287. enum iwl_mvm_agg_state {
  288. IWL_AGG_OFF = 0,
  289. IWL_AGG_STARTING,
  290. IWL_AGG_ON,
  291. IWL_EMPTYING_HW_QUEUE_ADDBA,
  292. IWL_EMPTYING_HW_QUEUE_DELBA,
  293. };
  294. /**
  295. * struct iwl_mvm_tid_data - holds the states for each RA / TID
  296. * @deferred_tx_frames: deferred TX frames for this RA/TID
  297. * @seq_number: the next WiFi sequence number to use
  298. * @next_reclaimed: the WiFi sequence number of the next packet to be acked.
  299. * This is basically (last acked packet++).
  300. * @rate_n_flags: Rate at which Tx was attempted. Holds the data between the
  301. * Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).
  302. * @amsdu_in_ampdu_allowed: true if A-MSDU in A-MPDU is allowed.
  303. * @state: state of the BA agreement establishment / tear down.
  304. * @txq_id: Tx queue used by the BA session / DQA
  305. * @ssn: the first packet to be sent in AGG HW queue in Tx AGG start flow, or
  306. * the first packet to be sent in legacy HW queue in Tx AGG stop flow.
  307. * Basically when next_reclaimed reaches ssn, we can tell mac80211 that
  308. * we are ready to finish the Tx AGG stop / start flow.
  309. * @tx_time: medium time consumed by this A-MPDU
  310. * @is_tid_active: has this TID sent traffic in the last
  311. * %IWL_MVM_DQA_QUEUE_TIMEOUT time period. If %txq_id is invalid, this
  312. * field should be ignored.
  313. */
  314. struct iwl_mvm_tid_data {
  315. struct sk_buff_head deferred_tx_frames;
  316. u16 seq_number;
  317. u16 next_reclaimed;
  318. /* The rest is Tx AGG related */
  319. u32 rate_n_flags;
  320. bool amsdu_in_ampdu_allowed;
  321. enum iwl_mvm_agg_state state;
  322. u16 txq_id;
  323. u16 ssn;
  324. u16 tx_time;
  325. bool is_tid_active;
  326. };
  327. static inline u16 iwl_mvm_tid_queued(struct iwl_mvm_tid_data *tid_data)
  328. {
  329. return ieee80211_sn_sub(IEEE80211_SEQ_TO_SN(tid_data->seq_number),
  330. tid_data->next_reclaimed);
  331. }
  332. struct iwl_mvm_key_pn {
  333. struct rcu_head rcu_head;
  334. struct {
  335. u8 pn[IWL_MAX_TID_COUNT][IEEE80211_CCMP_PN_LEN];
  336. } ____cacheline_aligned_in_smp q[];
  337. };
  338. struct iwl_mvm_delba_data {
  339. u32 baid;
  340. } __packed;
  341. struct iwl_mvm_delba_notif {
  342. struct iwl_mvm_internal_rxq_notif metadata;
  343. struct iwl_mvm_delba_data delba;
  344. } __packed;
  345. /**
  346. * struct iwl_mvm_rxq_dup_data - per station per rx queue data
  347. * @last_seq: last sequence per tid for duplicate packet detection
  348. * @last_sub_frame: last subframe packet
  349. */
  350. struct iwl_mvm_rxq_dup_data {
  351. __le16 last_seq[IWL_MAX_TID_COUNT + 1];
  352. u8 last_sub_frame[IWL_MAX_TID_COUNT + 1];
  353. } ____cacheline_aligned_in_smp;
  354. /**
  355. * struct iwl_mvm_sta - representation of a station in the driver
  356. * @sta_id: the index of the station in the fw (will be replaced by id_n_color)
  357. * @tfd_queue_msk: the tfd queues used by the station
  358. * @hw_queue: per-AC mapping of the TFD queues used by station
  359. * @mac_id_n_color: the MAC context this station is linked to
  360. * @tid_disable_agg: bitmap: if bit(tid) is set, the fw won't send ampdus for
  361. * tid.
  362. * @max_agg_bufsize: the maximal size of the AGG buffer for this station
  363. * @bt_reduced_txpower: is reduced tx power enabled for this station
  364. * @next_status_eosp: the next reclaimed packet is a PS-Poll response and
  365. * we need to signal the EOSP
  366. * @lock: lock to protect the whole struct. Since %tid_data is access from Tx
  367. * and from Tx response flow, it needs a spinlock.
  368. * @tid_data: per tid data + mgmt. Look at %iwl_mvm_tid_data.
  369. * @tid_to_baid: a simple map of TID to baid
  370. * @reserved_queue: the queue reserved for this STA for DQA purposes
  371. * Every STA has is given one reserved queue to allow it to operate. If no
  372. * such queue can be guaranteed, the STA addition will fail.
  373. * @tx_protection: reference counter for controlling the Tx protection.
  374. * @tt_tx_protection: is thermal throttling enable Tx protection?
  375. * @disable_tx: is tx to this STA disabled?
  376. * @tlc_amsdu: true if A-MSDU is allowed
  377. * @agg_tids: bitmap of tids whose status is operational aggregated (IWL_AGG_ON)
  378. * @sleep_tx_count: the number of frames that we told the firmware to let out
  379. * even when that station is asleep. This is useful in case the queue
  380. * gets empty before all the frames were sent, which can happen when
  381. * we are sending frames from an AMPDU queue and there was a hole in
  382. * the BA window. To be used for UAPSD only.
  383. * @ptk_pn: per-queue PTK PN data structures
  384. * @dup_data: per queue duplicate packet detection data
  385. * @deferred_traffic_tid_map: indication bitmap of deferred traffic per-TID
  386. *
  387. * When mac80211 creates a station it reserves some space (hw->sta_data_size)
  388. * in the structure for use by driver. This structure is placed in that
  389. * space.
  390. *
  391. */
  392. struct iwl_mvm_sta {
  393. u32 sta_id;
  394. u32 tfd_queue_msk;
  395. u8 hw_queue[IEEE80211_NUM_ACS];
  396. u32 mac_id_n_color;
  397. u16 tid_disable_agg;
  398. u8 max_agg_bufsize;
  399. bool bt_reduced_txpower;
  400. bool next_status_eosp;
  401. spinlock_t lock;
  402. struct iwl_mvm_tid_data tid_data[IWL_MAX_TID_COUNT + 1];
  403. u8 tid_to_baid[IWL_MAX_TID_COUNT];
  404. struct iwl_lq_sta lq_sta;
  405. struct ieee80211_vif *vif;
  406. struct iwl_mvm_key_pn __rcu *ptk_pn[4];
  407. struct iwl_mvm_rxq_dup_data *dup_data;
  408. u16 deferred_traffic_tid_map;
  409. u8 reserved_queue;
  410. /* Temporary, until the new TLC will control the Tx protection */
  411. s8 tx_protection;
  412. bool tt_tx_protection;
  413. bool disable_tx;
  414. bool tlc_amsdu;
  415. bool sleeping;
  416. u8 agg_tids;
  417. u8 sleep_tx_count;
  418. u8 avg_energy;
  419. };
  420. static inline struct iwl_mvm_sta *
  421. iwl_mvm_sta_from_mac80211(struct ieee80211_sta *sta)
  422. {
  423. return (void *)sta->drv_priv;
  424. }
  425. /**
  426. * struct iwl_mvm_int_sta - representation of an internal station (auxiliary or
  427. * broadcast)
  428. * @sta_id: the index of the station in the fw (will be replaced by id_n_color)
  429. * @tfd_queue_msk: the tfd queues used by the station
  430. */
  431. struct iwl_mvm_int_sta {
  432. u32 sta_id;
  433. u32 tfd_queue_msk;
  434. };
  435. /**
  436. * Send the STA info to the FW.
  437. *
  438. * @mvm: the iwl_mvm* to use
  439. * @sta: the STA
  440. * @update: this is true if the FW is being updated about a STA it already knows
  441. * about. Otherwise (if this is a new STA), this should be false.
  442. * @flags: if update==true, this marks what is being changed via ORs of values
  443. * from enum iwl_sta_modify_flag. Otherwise, this is ignored.
  444. */
  445. int iwl_mvm_sta_send_to_fw(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
  446. bool update, unsigned int flags);
  447. int iwl_mvm_add_sta(struct iwl_mvm *mvm,
  448. struct ieee80211_vif *vif,
  449. struct ieee80211_sta *sta);
  450. static inline int iwl_mvm_update_sta(struct iwl_mvm *mvm,
  451. struct ieee80211_vif *vif,
  452. struct ieee80211_sta *sta)
  453. {
  454. return iwl_mvm_sta_send_to_fw(mvm, sta, true, 0);
  455. }
  456. int iwl_mvm_rm_sta(struct iwl_mvm *mvm,
  457. struct ieee80211_vif *vif,
  458. struct ieee80211_sta *sta);
  459. int iwl_mvm_rm_sta_id(struct iwl_mvm *mvm,
  460. struct ieee80211_vif *vif,
  461. u8 sta_id);
  462. int iwl_mvm_set_sta_key(struct iwl_mvm *mvm,
  463. struct ieee80211_vif *vif,
  464. struct ieee80211_sta *sta,
  465. struct ieee80211_key_conf *keyconf,
  466. u8 key_offset);
  467. int iwl_mvm_remove_sta_key(struct iwl_mvm *mvm,
  468. struct ieee80211_vif *vif,
  469. struct ieee80211_sta *sta,
  470. struct ieee80211_key_conf *keyconf);
  471. void iwl_mvm_update_tkip_key(struct iwl_mvm *mvm,
  472. struct ieee80211_vif *vif,
  473. struct ieee80211_key_conf *keyconf,
  474. struct ieee80211_sta *sta, u32 iv32,
  475. u16 *phase1key);
  476. void iwl_mvm_rx_eosp_notif(struct iwl_mvm *mvm,
  477. struct iwl_rx_cmd_buffer *rxb);
  478. /* AMPDU */
  479. int iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
  480. int tid, u16 ssn, bool start, u8 buf_size, u16 timeout);
  481. int iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  482. struct ieee80211_sta *sta, u16 tid, u16 *ssn);
  483. int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  484. struct ieee80211_sta *sta, u16 tid, u8 buf_size,
  485. bool amsdu);
  486. int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  487. struct ieee80211_sta *sta, u16 tid);
  488. int iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
  489. struct ieee80211_sta *sta, u16 tid);
  490. int iwl_mvm_sta_tx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
  491. int tid, u8 queue, bool start);
  492. int iwl_mvm_add_aux_sta(struct iwl_mvm *mvm);
  493. void iwl_mvm_del_aux_sta(struct iwl_mvm *mvm);
  494. int iwl_mvm_alloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  495. int iwl_mvm_send_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  496. int iwl_mvm_add_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  497. int iwl_mvm_send_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  498. int iwl_mvm_rm_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  499. int iwl_mvm_allocate_int_sta(struct iwl_mvm *mvm,
  500. struct iwl_mvm_int_sta *sta,
  501. u32 qmask, enum nl80211_iftype iftype);
  502. void iwl_mvm_dealloc_bcast_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  503. int iwl_mvm_add_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  504. int iwl_mvm_rm_snif_sta(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  505. void iwl_mvm_dealloc_snif_sta(struct iwl_mvm *mvm);
  506. void iwl_mvm_sta_drained_wk(struct work_struct *wk);
  507. void iwl_mvm_sta_modify_ps_wake(struct iwl_mvm *mvm,
  508. struct ieee80211_sta *sta);
  509. void iwl_mvm_sta_modify_sleep_tx_count(struct iwl_mvm *mvm,
  510. struct ieee80211_sta *sta,
  511. enum ieee80211_frame_release_type reason,
  512. u16 cnt, u16 tids, bool more_data,
  513. bool agg);
  514. int iwl_mvm_drain_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta,
  515. bool drain);
  516. void iwl_mvm_sta_modify_disable_tx(struct iwl_mvm *mvm,
  517. struct iwl_mvm_sta *mvmsta, bool disable);
  518. void iwl_mvm_sta_modify_disable_tx_ap(struct iwl_mvm *mvm,
  519. struct ieee80211_sta *sta,
  520. bool disable);
  521. void iwl_mvm_modify_all_sta_disable_tx(struct iwl_mvm *mvm,
  522. struct iwl_mvm_vif *mvmvif,
  523. bool disable);
  524. void iwl_mvm_csa_client_absent(struct iwl_mvm *mvm, struct ieee80211_vif *vif);
  525. void iwl_mvm_add_new_dqa_stream_wk(struct work_struct *wk);
  526. int iwl_mvm_scd_queue_redirect(struct iwl_mvm *mvm, int queue, int tid,
  527. int ac, int ssn, unsigned int wdg_timeout,
  528. bool force);
  529. #endif /* __sta_h__ */