blob: c14ebd7ff77dfb1c1eb8c5872f0e864cd13f7fe2 [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
Sara Sharon45c458b2016-11-09 15:43:26 +020010 * Copyright(c) 2016 - 2017 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 Grumbachd01c5362015-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
Sara Sharon45c458b2016-11-09 15:43:26 +020037 * Copyright(c) 2016 - 2017 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#ifndef __fw_api_sta_h__
68#define __fw_api_sta_h__
69
70/**
71 * enum iwl_sta_flags - flags for the ADD_STA host command
72 * @STA_FLG_REDUCED_TX_PWR_CTRL:
73 * @STA_FLG_REDUCED_TX_PWR_DATA:
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +030074 * @STA_FLG_DISABLE_TX: set if TX should be disabled
Johannes Berg8ca151b2013-01-24 14:25:36 +010075 * @STA_FLG_PS: set if STA is in Power Save
76 * @STA_FLG_INVALID: set if STA is invalid
77 * @STA_FLG_DLP_EN: Direct Link Protocol is enabled
78 * @STA_FLG_SET_ALL_KEYS: the current key applies to all key IDs
79 * @STA_FLG_DRAIN_FLOW: drain flow
80 * @STA_FLG_PAN: STA is for PAN interface
81 * @STA_FLG_CLASS_AUTH:
82 * @STA_FLG_CLASS_ASSOC:
83 * @STA_FLG_CLASS_MIMO_PROT:
84 * @STA_FLG_MAX_AGG_SIZE_MSK: maximal size for A-MPDU
85 * @STA_FLG_AGG_MPDU_DENS_MSK: maximal MPDU density for Tx aggregation
86 * @STA_FLG_FAT_EN_MSK: support for channel width (for Tx). This flag is
87 * initialised by driver and can be updated by fw upon reception of
88 * action frames that can change the channel width. When cleared the fw
89 * will send all the frames in 20MHz even when FAT channel is requested.
90 * @STA_FLG_MIMO_EN_MSK: support for MIMO. This flag is initialised by the
91 * driver and can be updated by fw upon reception of action frames.
92 * @STA_FLG_MFP_EN: Management Frame Protection
93 */
94enum iwl_sta_flags {
95 STA_FLG_REDUCED_TX_PWR_CTRL = BIT(3),
96 STA_FLG_REDUCED_TX_PWR_DATA = BIT(6),
97
Andrei Otcheretianski09b0ce12014-05-25 17:07:38 +030098 STA_FLG_DISABLE_TX = BIT(4),
Johannes Berg8ca151b2013-01-24 14:25:36 +010099
100 STA_FLG_PS = BIT(8),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100101 STA_FLG_DRAIN_FLOW = BIT(12),
102 STA_FLG_PAN = BIT(13),
103 STA_FLG_CLASS_AUTH = BIT(14),
104 STA_FLG_CLASS_ASSOC = BIT(15),
105 STA_FLG_RTS_MIMO_PROT = BIT(17),
106
107 STA_FLG_MAX_AGG_SIZE_SHIFT = 19,
108 STA_FLG_MAX_AGG_SIZE_8K = (0 << STA_FLG_MAX_AGG_SIZE_SHIFT),
109 STA_FLG_MAX_AGG_SIZE_16K = (1 << STA_FLG_MAX_AGG_SIZE_SHIFT),
110 STA_FLG_MAX_AGG_SIZE_32K = (2 << STA_FLG_MAX_AGG_SIZE_SHIFT),
111 STA_FLG_MAX_AGG_SIZE_64K = (3 << STA_FLG_MAX_AGG_SIZE_SHIFT),
112 STA_FLG_MAX_AGG_SIZE_128K = (4 << STA_FLG_MAX_AGG_SIZE_SHIFT),
113 STA_FLG_MAX_AGG_SIZE_256K = (5 << STA_FLG_MAX_AGG_SIZE_SHIFT),
114 STA_FLG_MAX_AGG_SIZE_512K = (6 << STA_FLG_MAX_AGG_SIZE_SHIFT),
115 STA_FLG_MAX_AGG_SIZE_1024K = (7 << STA_FLG_MAX_AGG_SIZE_SHIFT),
116 STA_FLG_MAX_AGG_SIZE_MSK = (7 << STA_FLG_MAX_AGG_SIZE_SHIFT),
117
118 STA_FLG_AGG_MPDU_DENS_SHIFT = 23,
119 STA_FLG_AGG_MPDU_DENS_2US = (4 << STA_FLG_AGG_MPDU_DENS_SHIFT),
120 STA_FLG_AGG_MPDU_DENS_4US = (5 << STA_FLG_AGG_MPDU_DENS_SHIFT),
121 STA_FLG_AGG_MPDU_DENS_8US = (6 << STA_FLG_AGG_MPDU_DENS_SHIFT),
122 STA_FLG_AGG_MPDU_DENS_16US = (7 << STA_FLG_AGG_MPDU_DENS_SHIFT),
123 STA_FLG_AGG_MPDU_DENS_MSK = (7 << STA_FLG_AGG_MPDU_DENS_SHIFT),
124
125 STA_FLG_FAT_EN_20MHZ = (0 << 26),
126 STA_FLG_FAT_EN_40MHZ = (1 << 26),
127 STA_FLG_FAT_EN_80MHZ = (2 << 26),
128 STA_FLG_FAT_EN_160MHZ = (3 << 26),
129 STA_FLG_FAT_EN_MSK = (3 << 26),
130
131 STA_FLG_MIMO_EN_SISO = (0 << 28),
132 STA_FLG_MIMO_EN_MIMO2 = (1 << 28),
133 STA_FLG_MIMO_EN_MIMO3 = (2 << 28),
134 STA_FLG_MIMO_EN_MSK = (3 << 28),
135};
136
137/**
138 * enum iwl_sta_key_flag - key flags for the ADD_STA host command
Max Stepanove36e5432013-08-27 19:56:13 +0300139 * @STA_KEY_FLG_NO_ENC: no encryption
140 * @STA_KEY_FLG_WEP: WEP encryption algorithm
141 * @STA_KEY_FLG_CCM: CCMP encryption algorithm
142 * @STA_KEY_FLG_TKIP: TKIP encryption algorithm
143 * @STA_KEY_FLG_EXT: extended cipher algorithm (depends on the FW support)
Ayala Beker2a53d162016-04-07 16:21:57 +0300144 * @STA_KEY_FLG_GCMP: GCMP encryption algorithm
Max Stepanove36e5432013-08-27 19:56:13 +0300145 * @STA_KEY_FLG_CMAC: CMAC encryption algorithm
146 * @STA_KEY_FLG_ENC_UNKNOWN: unknown encryption algorithm
147 * @STA_KEY_FLG_EN_MSK: mask for encryption algorithmi value
Johannes Berg8ca151b2013-01-24 14:25:36 +0100148 * @STA_KEY_FLG_WEP_KEY_MAP: wep is either a group key (0 - legacy WEP) or from
149 * station info array (1 - n 1X mode)
150 * @STA_KEY_FLG_KEYID_MSK: the index of the key
151 * @STA_KEY_NOT_VALID: key is invalid
152 * @STA_KEY_FLG_WEP_13BYTES: set for 13 bytes WEP key
Ayala Beker2a53d162016-04-07 16:21:57 +0300153 * @STA_KEY_FLG_KEY_32BYTES for non-wep key set for 32 bytes key
Johannes Berg8ca151b2013-01-24 14:25:36 +0100154 * @STA_KEY_MULTICAST: set for multical key
155 * @STA_KEY_MFP: key is used for Management Frame Protection
156 */
157enum iwl_sta_key_flag {
158 STA_KEY_FLG_NO_ENC = (0 << 0),
159 STA_KEY_FLG_WEP = (1 << 0),
160 STA_KEY_FLG_CCM = (2 << 0),
161 STA_KEY_FLG_TKIP = (3 << 0),
Max Stepanove36e5432013-08-27 19:56:13 +0300162 STA_KEY_FLG_EXT = (4 << 0),
Ayala Beker2a53d162016-04-07 16:21:57 +0300163 STA_KEY_FLG_GCMP = (5 << 0),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100164 STA_KEY_FLG_CMAC = (6 << 0),
165 STA_KEY_FLG_ENC_UNKNOWN = (7 << 0),
166 STA_KEY_FLG_EN_MSK = (7 << 0),
167
168 STA_KEY_FLG_WEP_KEY_MAP = BIT(3),
169 STA_KEY_FLG_KEYID_POS = 8,
170 STA_KEY_FLG_KEYID_MSK = (3 << STA_KEY_FLG_KEYID_POS),
171 STA_KEY_NOT_VALID = BIT(11),
172 STA_KEY_FLG_WEP_13BYTES = BIT(12),
Ayala Beker2a53d162016-04-07 16:21:57 +0300173 STA_KEY_FLG_KEY_32BYTES = BIT(12),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100174 STA_KEY_MULTICAST = BIT(14),
175 STA_KEY_MFP = BIT(15),
176};
177
178/**
179 * enum iwl_sta_modify_flag - indicate to the fw what flag are being changed
Liad Kaufman2b1ba3e2015-09-21 14:14:23 +0200180 * @STA_MODIFY_QUEUE_REMOVAL: this command removes a queue
Johannes Berg8ca151b2013-01-24 14:25:36 +0100181 * @STA_MODIFY_TID_DISABLE_TX: this command modifies %tid_disable_tx
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200182 * @STA_MODIFY_UAPSD_ACS: this command modifies %uapsd_acs
Johannes Berg8ca151b2013-01-24 14:25:36 +0100183 * @STA_MODIFY_ADD_BA_TID: this command modifies %add_immediate_ba_tid
184 * @STA_MODIFY_REMOVE_BA_TID: this command modifies %remove_immediate_ba_tid
185 * @STA_MODIFY_SLEEPING_STA_TX_COUNT: this command modifies %sleep_tx_count
186 * @STA_MODIFY_PROT_TH:
187 * @STA_MODIFY_QUEUES: modify the queues used by this station
188 */
189enum iwl_sta_modify_flag {
Liad Kaufman2b1ba3e2015-09-21 14:14:23 +0200190 STA_MODIFY_QUEUE_REMOVAL = BIT(0),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100191 STA_MODIFY_TID_DISABLE_TX = BIT(1),
Johannes Berg65e25482016-04-13 14:24:22 +0200192 STA_MODIFY_UAPSD_ACS = BIT(2),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100193 STA_MODIFY_ADD_BA_TID = BIT(3),
194 STA_MODIFY_REMOVE_BA_TID = BIT(4),
195 STA_MODIFY_SLEEPING_STA_TX_COUNT = BIT(5),
196 STA_MODIFY_PROT_TH = BIT(6),
197 STA_MODIFY_QUEUES = BIT(7),
198};
199
Johannes Bergd69f0a22017-03-14 10:58:16 +0100200/**
201 * enum iwl_sta_mode - station command mode
202 * @STA_MODE_ADD: add new station
203 * @STA_MODE_MODIFY: modify the station
204 */
205enum iwl_sta_mode {
206 STA_MODE_ADD = 0,
207 STA_MODE_MODIFY = 1,
208};
Johannes Berg8ca151b2013-01-24 14:25:36 +0100209
210/**
211 * enum iwl_sta_sleep_flag - type of sleep of the station
212 * @STA_SLEEP_STATE_AWAKE:
213 * @STA_SLEEP_STATE_PS_POLL:
214 * @STA_SLEEP_STATE_UAPSD:
Johannes Berg3e56ead2013-02-15 22:23:18 +0100215 * @STA_SLEEP_STATE_MOREDATA: set more-data bit on
216 * (last) released frame
Johannes Berg8ca151b2013-01-24 14:25:36 +0100217 */
218enum iwl_sta_sleep_flag {
Johannes Berg3e56ead2013-02-15 22:23:18 +0100219 STA_SLEEP_STATE_AWAKE = 0,
220 STA_SLEEP_STATE_PS_POLL = BIT(0),
221 STA_SLEEP_STATE_UAPSD = BIT(1),
222 STA_SLEEP_STATE_MOREDATA = BIT(2),
Johannes Berg8ca151b2013-01-24 14:25:36 +0100223};
224
Johannes Berg8ca151b2013-01-24 14:25:36 +0100225#define STA_KEY_MAX_NUM (16)
226#define STA_KEY_IDX_INVALID (0xff)
227#define STA_KEY_MAX_DATA_KEY_NUM (4)
228#define IWL_MAX_GLOBAL_KEYS (4)
229#define STA_KEY_LEN_WEP40 (5)
230#define STA_KEY_LEN_WEP104 (13)
231
232/**
233 * struct iwl_mvm_keyinfo - key information
Johannes Berg31a658b2017-03-09 15:56:57 +0100234 * @key_flags: type &enum iwl_sta_key_flag
Johannes Berg8ca151b2013-01-24 14:25:36 +0100235 * @tkip_rx_tsc_byte2: TSC[2] for key mix ph1 detection
236 * @tkip_rx_ttak: 10-byte unicast TKIP TTAK for Rx
237 * @key_offset: key offset in the fw's key table
238 * @key: 16-byte unicast decryption key
239 * @tx_secur_seq_cnt: initial RSC / PN needed for replay check
240 * @hw_tkip_mic_rx_key: byte: MIC Rx Key - used for TKIP only
241 * @hw_tkip_mic_tx_key: byte: MIC Tx Key - used for TKIP only
242 */
243struct iwl_mvm_keyinfo {
244 __le16 key_flags;
245 u8 tkip_rx_tsc_byte2;
246 u8 reserved1;
247 __le16 tkip_rx_ttak[5];
248 u8 key_offset;
249 u8 reserved2;
250 u8 key[16];
251 __le64 tx_secur_seq_cnt;
252 __le64 hw_tkip_mic_rx_key;
253 __le64 hw_tkip_mic_tx_key;
254} __packed;
255
Sara Sharon10b2b202016-03-20 16:23:41 +0200256#define IWL_ADD_STA_STATUS_MASK 0xFF
257#define IWL_ADD_STA_BAID_VALID_MASK 0x8000
258#define IWL_ADD_STA_BAID_MASK 0x7F00
259#define IWL_ADD_STA_BAID_SHIFT 8
Sara Sharon837c4da2016-01-07 16:50:45 +0200260
Johannes Berg8ca151b2013-01-24 14:25:36 +0100261/**
Sara Sharon854c5702016-01-26 13:17:47 +0200262 * struct iwl_mvm_add_sta_cmd_v7 - Add/modify a station in the fw's sta table.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100263 * ( REPLY_ADD_STA = 0x18 )
Johannes Berg67625862017-03-14 11:01:27 +0100264 * @add_modify: see &enum iwl_sta_mode
Emmanuel Grumbachf9dc0002014-03-30 09:53:27 +0300265 * @awake_acs:
266 * @tid_disable_tx: is tid BIT(tid) enabled for Tx. Clear BIT(x) to enable
267 * AMPDU for tid x. Set %STA_MODIFY_TID_DISABLE_TX to change this field.
Johannes Berg67625862017-03-14 11:01:27 +0100268 * @mac_id_n_color: the Mac context this station belongs to,
269 * see &enum iwl_mvm_id_and_color
Johannes Berg31a658b2017-03-09 15:56:57 +0100270 * @addr: station's MAC address
Johannes Berg8ca151b2013-01-24 14:25:36 +0100271 * @sta_id: index of station in uCode's station table
272 * @modify_mask: STA_MODIFY_*, selects which parameters to modify vs. leave
273 * alone. 1 - modify, 0 - don't change.
Johannes Berg31a658b2017-03-09 15:56:57 +0100274 * @station_flags: look at &enum iwl_sta_flags
275 * @station_flags_msk: what of %station_flags have changed,
276 * also &enum iwl_sta_flags
Johannes Berg8ca151b2013-01-24 14:25:36 +0100277 * @add_immediate_ba_tid: tid for which to add block-ack support (Rx)
278 * Set %STA_MODIFY_ADD_BA_TID to use this field, and also set
279 * add_immediate_ba_ssn.
280 * @remove_immediate_ba_tid: tid for which to remove block-ack support (Rx)
281 * Set %STA_MODIFY_REMOVE_BA_TID to use this field
282 * @add_immediate_ba_ssn: ssn for the Rx block-ack session. Used together with
283 * add_immediate_ba_tid.
284 * @sleep_tx_count: number of packets to transmit to station even though it is
285 * asleep. Used to synchronise PS-poll and u-APSD responses while ucode
286 * keeps track of STA sleep state.
Johannes Berg31a658b2017-03-09 15:56:57 +0100287 * @sleep_state_flags: Look at &enum iwl_sta_sleep_flag.
Johannes Berg8ca151b2013-01-24 14:25:36 +0100288 * @assoc_id: assoc_id to be sent in VHT PLCP (9-bit), for grp use 0, for AP
289 * mac-addr.
290 * @beamform_flags: beam forming controls
291 * @tfd_queue_msk: tfd queues used by this station
292 *
293 * The device contains an internal table of per-station information, with info
294 * on security keys, aggregation parameters, and Tx rates for initial Tx
295 * attempt and any retries (set by REPLY_TX_LINK_QUALITY_CMD).
296 *
297 * ADD_STA sets up the table entry for one station, either creating a new
298 * entry, or modifying a pre-existing one.
299 */
Sara Sharon854c5702016-01-26 13:17:47 +0200300struct iwl_mvm_add_sta_cmd_v7 {
Max Stepanov5a258aa2013-04-07 09:11:21 +0300301 u8 add_modify;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100302 u8 awake_acs;
Max Stepanov5a258aa2013-04-07 09:11:21 +0300303 __le16 tid_disable_tx;
304 __le32 mac_id_n_color;
305 u8 addr[ETH_ALEN]; /* _STA_ID_MODIFY_INFO_API_S_VER_1 */
306 __le16 reserved2;
307 u8 sta_id;
308 u8 modify_mask;
309 __le16 reserved3;
310 __le32 station_flags;
311 __le32 station_flags_msk;
312 u8 add_immediate_ba_tid;
313 u8 remove_immediate_ba_tid;
314 __le16 add_immediate_ba_ssn;
315 __le16 sleep_tx_count;
316 __le16 sleep_state_flags;
317 __le16 assoc_id;
318 __le16 beamform_flags;
319 __le32 tfd_queue_msk;
Johannes Berg3e56ead2013-02-15 22:23:18 +0100320} __packed; /* ADD_STA_CMD_API_S_VER_7 */
Max Stepanov5a258aa2013-04-07 09:11:21 +0300321
322/**
Sara Sharonced19f22017-02-06 19:09:32 +0200323 * enum iwl_sta_type - FW station types
324 * ( REPLY_ADD_STA = 0x18 )
325 * @IWL_STA_LINK: Link station - normal RX and TX traffic.
326 * @IWL_STA_GENERAL_PURPOSE: General purpose. In AP mode used for beacons
327 * and probe responses.
328 * @IWL_STA_MULTICAST: multicast traffic,
329 * @IWL_STA_TDLS_LINK: TDLS link station
330 * @IWL_STA_AUX_ACTIVITY: auxilary station (scan, ROC and so on).
331 */
332enum iwl_sta_type {
333 IWL_STA_LINK,
334 IWL_STA_GENERAL_PURPOSE,
335 IWL_STA_MULTICAST,
336 IWL_STA_TDLS_LINK,
337 IWL_STA_AUX_ACTIVITY,
338};
339
340/**
Sara Sharon854c5702016-01-26 13:17:47 +0200341 * struct iwl_mvm_add_sta_cmd - Add/modify a station in the fw's sta table.
342 * ( REPLY_ADD_STA = 0x18 )
Johannes Berg67625862017-03-14 11:01:27 +0100343 * @add_modify: see &enum iwl_sta_mode
Sara Sharon854c5702016-01-26 13:17:47 +0200344 * @awake_acs:
345 * @tid_disable_tx: is tid BIT(tid) enabled for Tx. Clear BIT(x) to enable
346 * AMPDU for tid x. Set %STA_MODIFY_TID_DISABLE_TX to change this field.
Johannes Berg67625862017-03-14 11:01:27 +0100347 * @mac_id_n_color: the Mac context this station belongs to,
348 * see &enum iwl_mvm_id_and_color
Johannes Berg31a658b2017-03-09 15:56:57 +0100349 * @addr: station's MAC address
Sara Sharon854c5702016-01-26 13:17:47 +0200350 * @sta_id: index of station in uCode's station table
351 * @modify_mask: STA_MODIFY_*, selects which parameters to modify vs. leave
352 * alone. 1 - modify, 0 - don't change.
Johannes Berg31a658b2017-03-09 15:56:57 +0100353 * @station_flags: look at &enum iwl_sta_flags
354 * @station_flags_msk: what of %station_flags have changed,
355 * also &enum iwl_sta_flags
Sara Sharon854c5702016-01-26 13:17:47 +0200356 * @add_immediate_ba_tid: tid for which to add block-ack support (Rx)
357 * Set %STA_MODIFY_ADD_BA_TID to use this field, and also set
358 * add_immediate_ba_ssn.
359 * @remove_immediate_ba_tid: tid for which to remove block-ack support (Rx)
360 * Set %STA_MODIFY_REMOVE_BA_TID to use this field
361 * @add_immediate_ba_ssn: ssn for the Rx block-ack session. Used together with
362 * add_immediate_ba_tid.
363 * @sleep_tx_count: number of packets to transmit to station even though it is
364 * asleep. Used to synchronise PS-poll and u-APSD responses while ucode
365 * keeps track of STA sleep state.
Sara Sharonced19f22017-02-06 19:09:32 +0200366 * @station_type: type of this station. See &enum iwl_sta_type.
Johannes Berg31a658b2017-03-09 15:56:57 +0100367 * @sleep_state_flags: Look at &enum iwl_sta_sleep_flag.
Sara Sharon854c5702016-01-26 13:17:47 +0200368 * @assoc_id: assoc_id to be sent in VHT PLCP (9-bit), for grp use 0, for AP
369 * mac-addr.
370 * @beamform_flags: beam forming controls
Sara Sharonbb497012016-09-29 14:52:40 +0300371 * @tfd_queue_msk: tfd queues used by this station.
372 * Obselete for new TX API (9 and above).
Sara Sharon854c5702016-01-26 13:17:47 +0200373 * @rx_ba_window: aggregation window size
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200374 * @sp_length: the size of the SP as it appears in the WME IE
375 * @uapsd_acs: 4 LS bits are trigger enabled ACs, 4 MS bits are the deliver
376 * enabled ACs.
Sara Sharon854c5702016-01-26 13:17:47 +0200377 *
378 * The device contains an internal table of per-station information, with info
379 * on security keys, aggregation parameters, and Tx rates for initial Tx
380 * attempt and any retries (set by REPLY_TX_LINK_QUALITY_CMD).
381 *
382 * ADD_STA sets up the table entry for one station, either creating a new
383 * entry, or modifying a pre-existing one.
384 */
385struct iwl_mvm_add_sta_cmd {
386 u8 add_modify;
387 u8 awake_acs;
388 __le16 tid_disable_tx;
389 __le32 mac_id_n_color;
390 u8 addr[ETH_ALEN]; /* _STA_ID_MODIFY_INFO_API_S_VER_1 */
391 __le16 reserved2;
392 u8 sta_id;
393 u8 modify_mask;
394 __le16 reserved3;
395 __le32 station_flags;
396 __le32 station_flags_msk;
397 u8 add_immediate_ba_tid;
398 u8 remove_immediate_ba_tid;
399 __le16 add_immediate_ba_ssn;
400 __le16 sleep_tx_count;
Sara Sharonced19f22017-02-06 19:09:32 +0200401 u8 sleep_state_flags;
402 u8 station_type;
Sara Sharon854c5702016-01-26 13:17:47 +0200403 __le16 assoc_id;
404 __le16 beamform_flags;
405 __le32 tfd_queue_msk;
406 __le16 rx_ba_window;
Emmanuel Grumbachc80eb572017-01-12 15:43:57 +0200407 u8 sp_length;
408 u8 uapsd_acs;
Sara Sharonced19f22017-02-06 19:09:32 +0200409} __packed; /* ADD_STA_CMD_API_S_VER_10 */
Sara Sharon854c5702016-01-26 13:17:47 +0200410
411/**
Sara Sharon45c458b2016-11-09 15:43:26 +0200412 * struct iwl_mvm_add_sta_key_common - add/modify sta key common part
Max Stepanov5a258aa2013-04-07 09:11:21 +0300413 * ( REPLY_ADD_STA_KEY = 0x17 )
414 * @sta_id: index of station in uCode's station table
415 * @key_offset: key offset in key storage
Johannes Berg31a658b2017-03-09 15:56:57 +0100416 * @key_flags: type &enum iwl_sta_key_flag
Max Stepanov5a258aa2013-04-07 09:11:21 +0300417 * @key: key material data
Max Stepanov5a258aa2013-04-07 09:11:21 +0300418 * @rx_secur_seq_cnt: RX security sequence counter for the key
Max Stepanov5a258aa2013-04-07 09:11:21 +0300419 */
Sara Sharon45c458b2016-11-09 15:43:26 +0200420struct iwl_mvm_add_sta_key_common {
Max Stepanov5a258aa2013-04-07 09:11:21 +0300421 u8 sta_id;
422 u8 key_offset;
423 __le16 key_flags;
Ayala Beker2a53d162016-04-07 16:21:57 +0300424 u8 key[32];
Max Stepanov5a258aa2013-04-07 09:11:21 +0300425 u8 rx_secur_seq_cnt[16];
Sara Sharon45c458b2016-11-09 15:43:26 +0200426} __packed;
427
428/**
429 * struct iwl_mvm_add_sta_key_cmd_v1 - add/modify sta key
430 * @common: see &struct iwl_mvm_add_sta_key_common
431 * @tkip_rx_tsc_byte2: TSC[2] for key mix ph1 detection
432 * @tkip_rx_ttak: 10-byte unicast TKIP TTAK for Rx
433 */
434struct iwl_mvm_add_sta_key_cmd_v1 {
435 struct iwl_mvm_add_sta_key_common common;
Max Stepanov5a258aa2013-04-07 09:11:21 +0300436 u8 tkip_rx_tsc_byte2;
437 u8 reserved;
438 __le16 tkip_rx_ttak[5];
439} __packed; /* ADD_MODIFY_STA_KEY_API_S_VER_1 */
440
441/**
Sara Sharon45c458b2016-11-09 15:43:26 +0200442 * struct iwl_mvm_add_sta_key_cmd - add/modify sta key
443 * @common: see &struct iwl_mvm_add_sta_key_common
444 * @rx_mic_key: TKIP RX unicast or multicast key
445 * @tx_mic_key: TKIP TX key
446 * @transmit_seq_cnt: TSC, transmit packet number
447 */
448struct iwl_mvm_add_sta_key_cmd {
449 struct iwl_mvm_add_sta_key_common common;
450 __le64 rx_mic_key;
451 __le64 tx_mic_key;
452 __le64 transmit_seq_cnt;
453} __packed; /* ADD_MODIFY_STA_KEY_API_S_VER_2 */
454
455/**
Johannes Berg8ca151b2013-01-24 14:25:36 +0100456 * enum iwl_mvm_add_sta_rsp_status - status in the response to ADD_STA command
457 * @ADD_STA_SUCCESS: operation was executed successfully
458 * @ADD_STA_STATIONS_OVERLOAD: no room left in the fw's station table
459 * @ADD_STA_IMMEDIATE_BA_FAILURE: can't add Rx block ack session
460 * @ADD_STA_MODIFY_NON_EXISTING_STA: driver requested to modify a station that
461 * doesn't exist.
462 */
463enum iwl_mvm_add_sta_rsp_status {
464 ADD_STA_SUCCESS = 0x1,
465 ADD_STA_STATIONS_OVERLOAD = 0x2,
466 ADD_STA_IMMEDIATE_BA_FAILURE = 0x4,
467 ADD_STA_MODIFY_NON_EXISTING_STA = 0x8,
468};
469
470/**
471 * struct iwl_mvm_rm_sta_cmd - Add / modify a station in the fw's station table
472 * ( REMOVE_STA = 0x19 )
473 * @sta_id: the station id of the station to be removed
474 */
475struct iwl_mvm_rm_sta_cmd {
476 u8 sta_id;
477 u8 reserved[3];
478} __packed; /* REMOVE_STA_CMD_API_S_VER_2 */
479
480/**
Ayala Beker8e160ab2016-04-11 11:37:38 +0300481 * struct iwl_mvm_mgmt_mcast_key_cmd_v1
482 * ( MGMT_MCAST_KEY = 0x1f )
Johannes Berg67625862017-03-14 11:01:27 +0100483 * @ctrl_flags: &enum iwl_sta_key_flag
Ayala Beker8e160ab2016-04-11 11:37:38 +0300484 * @igtk:
485 * @k1: unused
486 * @k2: unused
487 * @sta_id: station ID that support IGTK
488 * @key_id:
489 * @receive_seq_cnt: initial RSC/PN needed for replay check
490 */
491struct iwl_mvm_mgmt_mcast_key_cmd_v1 {
492 __le32 ctrl_flags;
493 u8 igtk[16];
494 u8 k1[16];
495 u8 k2[16];
496 __le32 key_id;
497 __le32 sta_id;
498 __le64 receive_seq_cnt;
499} __packed; /* SEC_MGMT_MULTICAST_KEY_CMD_API_S_VER_1 */
500
501/**
Johannes Berg8ca151b2013-01-24 14:25:36 +0100502 * struct iwl_mvm_mgmt_mcast_key_cmd
503 * ( MGMT_MCAST_KEY = 0x1f )
Johannes Berg67625862017-03-14 11:01:27 +0100504 * @ctrl_flags: &enum iwl_sta_key_flag
Ayala Beker8e160ab2016-04-11 11:37:38 +0300505 * @igtk: IGTK master key
Johannes Berg8ca151b2013-01-24 14:25:36 +0100506 * @sta_id: station ID that support IGTK
507 * @key_id:
508 * @receive_seq_cnt: initial RSC/PN needed for replay check
509 */
510struct iwl_mvm_mgmt_mcast_key_cmd {
511 __le32 ctrl_flags;
Ayala Beker8e160ab2016-04-11 11:37:38 +0300512 u8 igtk[32];
Johannes Berg8ca151b2013-01-24 14:25:36 +0100513 __le32 key_id;
514 __le32 sta_id;
515 __le64 receive_seq_cnt;
Ayala Beker8e160ab2016-04-11 11:37:38 +0300516} __packed; /* SEC_MGMT_MULTICAST_KEY_CMD_API_S_VER_2 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100517
518struct iwl_mvm_wep_key {
519 u8 key_index;
520 u8 key_offset;
521 __le16 reserved1;
522 u8 key_size;
523 u8 reserved2[3];
524 u8 key[16];
525} __packed;
526
527struct iwl_mvm_wep_key_cmd {
528 __le32 mac_id_n_color;
529 u8 num_keys;
530 u8 decryption_type;
531 u8 flags;
532 u8 reserved;
533 struct iwl_mvm_wep_key wep_key[0];
534} __packed; /* SEC_CURR_WEP_KEY_CMD_API_S_VER_2 */
535
Johannes Berg3e56ead2013-02-15 22:23:18 +0100536/**
537 * struct iwl_mvm_eosp_notification - EOSP notification from firmware
538 * @remain_frame_count: # of frames remaining, non-zero if SP was cut
539 * short by GO absence
540 * @sta_id: station ID
541 */
542struct iwl_mvm_eosp_notification {
543 __le32 remain_frame_count;
544 __le32 sta_id;
545} __packed; /* UAPSD_EOSP_NTFY_API_S_VER_1 */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100546
547#endif /* __fw_api_sta_h__ */