]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/wpa/src/common/ieee802_11_defs.h
THIS BRANCH IS OBSOLETE, PLEASE READ:
[FreeBSD/FreeBSD.git] / contrib / wpa / src / common / ieee802_11_defs.h
1 /*
2  * IEEE 802.11 Frame type definitions
3  * Copyright (c) 2002-2019, Jouni Malinen <j@w1.fi>
4  * Copyright (c) 2007-2008 Intel Corporation
5  *
6  * This software may be distributed under the terms of the BSD license.
7  * See README for more details.
8  */
9
10 #ifndef IEEE802_11_DEFS_H
11 #define IEEE802_11_DEFS_H
12
13 #include <utils/common.h>
14
15 /* IEEE 802.11 defines */
16
17 #define WLAN_FC_PVER            0x0003
18 #define WLAN_FC_TODS            0x0100
19 #define WLAN_FC_FROMDS          0x0200
20 #define WLAN_FC_MOREFRAG        0x0400
21 #define WLAN_FC_RETRY           0x0800
22 #define WLAN_FC_PWRMGT          0x1000
23 #define WLAN_FC_MOREDATA        0x2000
24 #define WLAN_FC_ISWEP           0x4000
25 #define WLAN_FC_ORDER           0x8000
26
27 #define WLAN_FC_GET_TYPE(fc)    (((fc) & 0x000c) >> 2)
28 #define WLAN_FC_GET_STYPE(fc)   (((fc) & 0x00f0) >> 4)
29
30 #define WLAN_INVALID_MGMT_SEQ   0xFFFF
31
32 #define WLAN_GET_SEQ_FRAG(seq) ((seq) & (BIT(3) | BIT(2) | BIT(1) | BIT(0)))
33 #define WLAN_GET_SEQ_SEQ(seq) \
34         (((seq) & (~(BIT(3) | BIT(2) | BIT(1) | BIT(0)))) >> 4)
35
36 #define WLAN_FC_TYPE_MGMT               0
37 #define WLAN_FC_TYPE_CTRL               1
38 #define WLAN_FC_TYPE_DATA               2
39
40 /* management */
41 #define WLAN_FC_STYPE_ASSOC_REQ         0
42 #define WLAN_FC_STYPE_ASSOC_RESP        1
43 #define WLAN_FC_STYPE_REASSOC_REQ       2
44 #define WLAN_FC_STYPE_REASSOC_RESP      3
45 #define WLAN_FC_STYPE_PROBE_REQ         4
46 #define WLAN_FC_STYPE_PROBE_RESP        5
47 #define WLAN_FC_STYPE_BEACON            8
48 #define WLAN_FC_STYPE_ATIM              9
49 #define WLAN_FC_STYPE_DISASSOC          10
50 #define WLAN_FC_STYPE_AUTH              11
51 #define WLAN_FC_STYPE_DEAUTH            12
52 #define WLAN_FC_STYPE_ACTION            13
53
54 /* control */
55 #define WLAN_FC_STYPE_PSPOLL            10
56 #define WLAN_FC_STYPE_RTS               11
57 #define WLAN_FC_STYPE_CTS               12
58 #define WLAN_FC_STYPE_ACK               13
59 #define WLAN_FC_STYPE_CFEND             14
60 #define WLAN_FC_STYPE_CFENDACK          15
61
62 /* data */
63 #define WLAN_FC_STYPE_DATA              0
64 #define WLAN_FC_STYPE_DATA_CFACK        1
65 #define WLAN_FC_STYPE_DATA_CFPOLL       2
66 #define WLAN_FC_STYPE_DATA_CFACKPOLL    3
67 #define WLAN_FC_STYPE_NULLFUNC          4
68 #define WLAN_FC_STYPE_CFACK             5
69 #define WLAN_FC_STYPE_CFPOLL            6
70 #define WLAN_FC_STYPE_CFACKPOLL         7
71 #define WLAN_FC_STYPE_QOS_DATA          8
72 #define WLAN_FC_STYPE_QOS_DATA_CFACK    9
73 #define WLAN_FC_STYPE_QOS_DATA_CFPOLL   10
74 #define WLAN_FC_STYPE_QOS_DATA_CFACKPOLL        11
75 #define WLAN_FC_STYPE_QOS_NULL          12
76 #define WLAN_FC_STYPE_QOS_CFPOLL        14
77 #define WLAN_FC_STYPE_QOS_CFACKPOLL     15
78
79 /* Authentication algorithms */
80 #define WLAN_AUTH_OPEN                  0
81 #define WLAN_AUTH_SHARED_KEY            1
82 #define WLAN_AUTH_FT                    2
83 #define WLAN_AUTH_SAE                   3
84 #define WLAN_AUTH_FILS_SK               4
85 #define WLAN_AUTH_FILS_SK_PFS           5
86 #define WLAN_AUTH_FILS_PK               6
87 #define WLAN_AUTH_LEAP                  128
88
89 #define WLAN_AUTH_CHALLENGE_LEN 128
90
91 #define WLAN_CAPABILITY_ESS BIT(0)
92 #define WLAN_CAPABILITY_IBSS BIT(1)
93 #define WLAN_CAPABILITY_CF_POLLABLE BIT(2)
94 #define WLAN_CAPABILITY_CF_POLL_REQUEST BIT(3)
95 #define WLAN_CAPABILITY_PRIVACY BIT(4)
96 #define WLAN_CAPABILITY_SHORT_PREAMBLE BIT(5)
97 #define WLAN_CAPABILITY_PBCC BIT(6)
98 #define WLAN_CAPABILITY_CHANNEL_AGILITY BIT(7)
99 #define WLAN_CAPABILITY_SPECTRUM_MGMT BIT(8)
100 #define WLAN_CAPABILITY_QOS BIT(9)
101 #define WLAN_CAPABILITY_SHORT_SLOT_TIME BIT(10)
102 #define WLAN_CAPABILITY_APSD BIT(11)
103 #define WLAN_CAPABILITY_RADIO_MEASUREMENT BIT(12)
104 #define WLAN_CAPABILITY_DSSS_OFDM BIT(13)
105 #define WLAN_CAPABILITY_DELAYED_BLOCK_ACK BIT(14)
106 #define WLAN_CAPABILITY_IMM_BLOCK_ACK BIT(15)
107
108 /* Status codes (IEEE Std 802.11-2016, 9.4.1.9, Table 9-46) */
109 #define WLAN_STATUS_SUCCESS 0
110 #define WLAN_STATUS_UNSPECIFIED_FAILURE 1
111 #define WLAN_STATUS_TDLS_WAKEUP_ALTERNATE 2
112 #define WLAN_STATUS_TDLS_WAKEUP_REJECT 3
113 #define WLAN_STATUS_SECURITY_DISABLED 5
114 #define WLAN_STATUS_UNACCEPTABLE_LIFETIME 6
115 #define WLAN_STATUS_NOT_IN_SAME_BSS 7
116 #define WLAN_STATUS_CAPS_UNSUPPORTED 10
117 #define WLAN_STATUS_REASSOC_NO_ASSOC 11
118 #define WLAN_STATUS_ASSOC_DENIED_UNSPEC 12
119 #define WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG 13
120 #define WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION 14
121 #define WLAN_STATUS_CHALLENGE_FAIL 15
122 #define WLAN_STATUS_AUTH_TIMEOUT 16
123 #define WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA 17
124 #define WLAN_STATUS_ASSOC_DENIED_RATES 18
125 #define WLAN_STATUS_ASSOC_DENIED_NOSHORT 19
126 #define WLAN_STATUS_SPEC_MGMT_REQUIRED 22
127 #define WLAN_STATUS_PWR_CAPABILITY_NOT_VALID 23
128 #define WLAN_STATUS_SUPPORTED_CHANNEL_NOT_VALID 24
129 #define WLAN_STATUS_ASSOC_DENIED_NO_SHORT_SLOT_TIME 25
130 #define WLAN_STATUS_ASSOC_DENIED_NO_HT 27
131 #define WLAN_STATUS_R0KH_UNREACHABLE 28
132 #define WLAN_STATUS_ASSOC_DENIED_NO_PCO 29
133 #define WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY 30
134 #define WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION 31
135 #define WLAN_STATUS_UNSPECIFIED_QOS_FAILURE 32
136 #define WLAN_STATUS_DENIED_INSUFFICIENT_BANDWIDTH 33
137 #define WLAN_STATUS_DENIED_POOR_CHANNEL_CONDITIONS 34
138 #define WLAN_STATUS_DENIED_QOS_NOT_SUPPORTED 35
139 #define WLAN_STATUS_REQUEST_DECLINED 37
140 #define WLAN_STATUS_INVALID_PARAMETERS 38
141 #define WLAN_STATUS_REJECTED_WITH_SUGGESTED_CHANGES 39
142 #define WLAN_STATUS_INVALID_IE 40
143 #define WLAN_STATUS_GROUP_CIPHER_NOT_VALID 41
144 #define WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID 42
145 #define WLAN_STATUS_AKMP_NOT_VALID 43
146 #define WLAN_STATUS_UNSUPPORTED_RSN_IE_VERSION 44
147 #define WLAN_STATUS_INVALID_RSN_IE_CAPAB 45
148 #define WLAN_STATUS_CIPHER_REJECTED_PER_POLICY 46
149 #define WLAN_STATUS_TS_NOT_CREATED 47
150 #define WLAN_STATUS_DIRECT_LINK_NOT_ALLOWED 48
151 #define WLAN_STATUS_DEST_STA_NOT_PRESENT 49
152 #define WLAN_STATUS_DEST_STA_NOT_QOS_STA 50
153 #define WLAN_STATUS_ASSOC_DENIED_LISTEN_INT_TOO_LARGE 51
154 #define WLAN_STATUS_INVALID_FT_ACTION_FRAME_COUNT 52
155 #define WLAN_STATUS_INVALID_PMKID 53
156 #define WLAN_STATUS_INVALID_MDIE 54
157 #define WLAN_STATUS_INVALID_FTIE 55
158 #define WLAN_STATUS_REQUESTED_TCLAS_NOT_SUPPORTED 56
159 #define WLAN_STATUS_INSUFFICIENT_TCLAS_PROCESSING_RESOURCES 57
160 #define WLAN_STATUS_TRY_ANOTHER_BSS 58
161 #define WLAN_STATUS_GAS_ADV_PROTO_NOT_SUPPORTED 59
162 #define WLAN_STATUS_NO_OUTSTANDING_GAS_REQ 60
163 #define WLAN_STATUS_GAS_RESP_NOT_RECEIVED 61
164 #define WLAN_STATUS_STA_TIMED_OUT_WAITING_FOR_GAS_RESP 62
165 #define WLAN_STATUS_GAS_RESP_LARGER_THAN_LIMIT 63
166 #define WLAN_STATUS_REQ_REFUSED_HOME 64
167 #define WLAN_STATUS_ADV_SRV_UNREACHABLE 65
168 #define WLAN_STATUS_REQ_REFUSED_SSPN 67
169 #define WLAN_STATUS_REQ_REFUSED_UNAUTH_ACCESS 68
170 #define WLAN_STATUS_INVALID_RSNIE 72
171 #define WLAN_STATUS_U_APSD_COEX_NOT_SUPPORTED 73
172 #define WLAN_STATUS_U_APSD_COEX_MODE_NOT_SUPPORTED 74
173 #define WLAN_STATUS_BAD_INTERVAL_WITH_U_APSD_COEX 75
174 #define WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ 76
175 #define WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED 77
176 #define WLAN_STATUS_CANNOT_FIND_ALT_TBTT 78
177 #define WLAN_STATUS_TRANSMISSION_FAILURE 79
178 #define WLAN_STATUS_REQ_TCLAS_NOT_SUPPORTED 80
179 #define WLAN_STATUS_TCLAS_RESOURCES_EXCHAUSTED 81
180 #define WLAN_STATUS_REJECTED_WITH_SUGGESTED_BSS_TRANSITION 82
181 #define WLAN_STATUS_REJECT_WITH_SCHEDULE 83
182 #define WLAN_STATUS_REJECT_NO_WAKEUP_SPECIFIED 84
183 #define WLAN_STATUS_SUCCESS_POWER_SAVE_MODE 85
184 #define WLAN_STATUS_PENDING_ADMITTING_FST_SESSION 86
185 #define WLAN_STATUS_PERFORMING_FST_NOW 87
186 #define WLAN_STATUS_PENDING_GAP_IN_BA_WINDOW 88
187 #define WLAN_STATUS_REJECT_U_PID_SETTING 89
188 #define WLAN_STATUS_REFUSED_EXTERNAL_REASON 92
189 #define WLAN_STATUS_REFUSED_AP_OUT_OF_MEMORY 93
190 #define WLAN_STATUS_REJECTED_EMERGENCY_SERVICE_NOT_SUPPORTED 94
191 #define WLAN_STATUS_QUERY_RESP_OUTSTANDING 95
192 #define WLAN_STATUS_REJECT_DSE_BAND 96
193 #define WLAN_STATUS_TCLAS_PROCESSING_TERMINATED 97
194 #define WLAN_STATUS_TS_SCHEDULE_CONFLICT 98
195 #define WLAN_STATUS_DENIED_WITH_SUGGESTED_BAND_AND_CHANNEL 99
196 #define WLAN_STATUS_MCCAOP_RESERVATION_CONFLICT 100
197 #define WLAN_STATUS_MAF_LIMIT_EXCEEDED 101
198 #define WLAN_STATUS_MCCA_TRACK_LIMIT_EXCEEDED 102
199 #define WLAN_STATUS_DENIED_DUE_TO_SPECTRUM_MANAGEMENT 103
200 #define WLAN_STATUS_ASSOC_DENIED_NO_VHT 104
201 #define WLAN_STATUS_ENABLEMENT_DENIED 105
202 #define WLAN_STATUS_RESTRICTION_FROM_AUTHORIZED_GDB 106
203 #define WLAN_STATUS_AUTHORIZATION_DEENABLED 107
204 #define WLAN_STATUS_FILS_AUTHENTICATION_FAILURE 112
205 #define WLAN_STATUS_UNKNOWN_AUTHENTICATION_SERVER 113
206 #define WLAN_STATUS_UNKNOWN_PASSWORD_IDENTIFIER 123
207
208 /* Reason codes (IEEE Std 802.11-2016, 9.4.1.7, Table 9-45) */
209 #define WLAN_REASON_UNSPECIFIED 1
210 #define WLAN_REASON_PREV_AUTH_NOT_VALID 2
211 #define WLAN_REASON_DEAUTH_LEAVING 3
212 #define WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY 4
213 #define WLAN_REASON_DISASSOC_AP_BUSY 5
214 #define WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA 6
215 #define WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA 7
216 #define WLAN_REASON_DISASSOC_STA_HAS_LEFT 8
217 #define WLAN_REASON_STA_REQ_ASSOC_WITHOUT_AUTH 9
218 #define WLAN_REASON_PWR_CAPABILITY_NOT_VALID 10
219 #define WLAN_REASON_SUPPORTED_CHANNEL_NOT_VALID 11
220 #define WLAN_REASON_BSS_TRANSITION_DISASSOC 12
221 #define WLAN_REASON_INVALID_IE 13
222 #define WLAN_REASON_MICHAEL_MIC_FAILURE 14
223 #define WLAN_REASON_4WAY_HANDSHAKE_TIMEOUT 15
224 #define WLAN_REASON_GROUP_KEY_UPDATE_TIMEOUT 16
225 #define WLAN_REASON_IE_IN_4WAY_DIFFERS 17
226 #define WLAN_REASON_GROUP_CIPHER_NOT_VALID 18
227 #define WLAN_REASON_PAIRWISE_CIPHER_NOT_VALID 19
228 #define WLAN_REASON_AKMP_NOT_VALID 20
229 #define WLAN_REASON_UNSUPPORTED_RSN_IE_VERSION 21
230 #define WLAN_REASON_INVALID_RSN_IE_CAPAB 22
231 #define WLAN_REASON_IEEE_802_1X_AUTH_FAILED 23
232 #define WLAN_REASON_CIPHER_SUITE_REJECTED 24
233 #define WLAN_REASON_TDLS_TEARDOWN_UNREACHABLE 25
234 #define WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED 26
235 #define WLAN_REASON_SSP_REQUESTED_DISASSOC 27
236 #define WLAN_REASON_NO_SSP_ROAMING_AGREEMENT 28
237 #define WLAN_REASON_BAD_CIPHER_OR_AKM 29
238 #define WLAN_REASON_NOT_AUTHORIZED_THIS_LOCATION 30
239 #define WLAN_REASON_SERVICE_CHANGE_PRECLUDES_TS 31
240 #define WLAN_REASON_UNSPECIFIED_QOS_REASON 32
241 #define WLAN_REASON_NOT_ENOUGH_BANDWIDTH 33
242 #define WLAN_REASON_DISASSOC_LOW_ACK 34
243 #define WLAN_REASON_EXCEEDED_TXOP 35
244 #define WLAN_REASON_STA_LEAVING 36
245 #define WLAN_REASON_END_TS_BA_DLS 37
246 #define WLAN_REASON_UNKNOWN_TS_BA 38
247 #define WLAN_REASON_TIMEOUT 39
248 #define WLAN_REASON_PEERKEY_MISMATCH 45
249 #define WLAN_REASON_AUTHORIZED_ACCESS_LIMIT_REACHED 46
250 #define WLAN_REASON_EXTERNAL_SERVICE_REQUIREMENTS 47
251 #define WLAN_REASON_INVALID_FT_ACTION_FRAME_COUNT 48
252 #define WLAN_REASON_INVALID_PMKID 49
253 #define WLAN_REASON_INVALID_MDE 50
254 #define WLAN_REASON_INVALID_FTE 51
255 #define WLAN_REASON_MESH_PEERING_CANCELLED 52
256 #define WLAN_REASON_MESH_MAX_PEERS 53
257 #define WLAN_REASON_MESH_CONFIG_POLICY_VIOLATION 54
258 #define WLAN_REASON_MESH_CLOSE_RCVD 55
259 #define WLAN_REASON_MESH_MAX_RETRIES 56
260 #define WLAN_REASON_MESH_CONFIRM_TIMEOUT 57
261 #define WLAN_REASON_MESH_INVALID_GTK 58
262 #define WLAN_REASON_MESH_INCONSISTENT_PARAMS 59
263 #define WLAN_REASON_MESH_INVALID_SECURITY_CAP 60
264 #define WLAN_REASON_MESH_PATH_ERROR_NO_PROXY_INFO 61
265 #define WLAN_REASON_MESH_PATH_ERROR_NO_FORWARDING_INFO 62
266 #define WLAN_REASON_MESH_PATH_ERROR_DEST_UNREACHABLE 63
267 #define WLAN_REASON_MAC_ADDRESS_ALREADY_EXISTS_IN_MBSS 64
268 #define WLAN_REASON_MESH_CHANNEL_SWITCH_REGULATORY_REQ 65
269 #define WLAN_REASON_MESH_CHANNEL_SWITCH_UNSPECIFIED 66
270
271
272 /* Information Element IDs (IEEE Std 802.11-2016, 9.4.2.1, Table 9-77) */
273 #define WLAN_EID_SSID 0
274 #define WLAN_EID_SUPP_RATES 1
275 #define WLAN_EID_DS_PARAMS 3
276 #define WLAN_EID_CF_PARAMS 4
277 #define WLAN_EID_TIM 5
278 #define WLAN_EID_IBSS_PARAMS 6
279 #define WLAN_EID_COUNTRY 7
280 #define WLAN_EID_REQUEST 10
281 #define WLAN_EID_BSS_LOAD 11
282 #define WLAN_EID_EDCA_PARAM_SET 12
283 #define WLAN_EID_TSPEC 13
284 #define WLAN_EID_TCLAS 14
285 #define WLAN_EID_SCHEDULE 15
286 #define WLAN_EID_CHALLENGE 16
287 #define WLAN_EID_PWR_CONSTRAINT 32
288 #define WLAN_EID_PWR_CAPABILITY 33
289 #define WLAN_EID_TPC_REQUEST 34
290 #define WLAN_EID_TPC_REPORT 35
291 #define WLAN_EID_SUPPORTED_CHANNELS 36
292 #define WLAN_EID_CHANNEL_SWITCH 37
293 #define WLAN_EID_MEASURE_REQUEST 38
294 #define WLAN_EID_MEASURE_REPORT 39
295 #define WLAN_EID_QUIET 40
296 #define WLAN_EID_IBSS_DFS 41
297 #define WLAN_EID_ERP_INFO 42
298 #define WLAN_EID_TS_DELAY 43
299 #define WLAN_EID_TCLAS_PROCESSING 44
300 #define WLAN_EID_HT_CAP 45
301 #define WLAN_EID_QOS 46
302 #define WLAN_EID_RSN 48
303 #define WLAN_EID_EXT_SUPP_RATES 50
304 #define WLAN_EID_AP_CHANNEL_REPORT 51
305 #define WLAN_EID_NEIGHBOR_REPORT 52
306 #define WLAN_EID_RCPI 53
307 #define WLAN_EID_MOBILITY_DOMAIN 54
308 #define WLAN_EID_FAST_BSS_TRANSITION 55
309 #define WLAN_EID_TIMEOUT_INTERVAL 56
310 #define WLAN_EID_RIC_DATA 57
311 #define WLAN_EID_DSE_REGISTERED_LOCATION 58
312 #define WLAN_EID_SUPPORTED_OPERATING_CLASSES 59
313 #define WLAN_EID_EXT_CHANSWITCH_ANN 60
314 #define WLAN_EID_HT_OPERATION 61
315 #define WLAN_EID_SECONDARY_CHANNEL_OFFSET 62
316 #define WLAN_EID_BSS_AVERAGE_ACCESS_DELAY 63
317 #define WLAN_EID_ANTENNA 64
318 #define WLAN_EID_RSNI 65
319 #define WLAN_EID_MEASUREMENT_PILOT_TRANSMISSION 66
320 #define WLAN_EID_BSS_AVAILABLE_ADM_CAPA 67
321 #define WLAN_EID_BSS_AC_ACCESS_DELAY 68 /* note: also used by WAPI */
322 #define WLAN_EID_TIME_ADVERTISEMENT 69
323 #define WLAN_EID_RRM_ENABLED_CAPABILITIES 70
324 #define WLAN_EID_MULTIPLE_BSSID 71
325 #define WLAN_EID_20_40_BSS_COEXISTENCE 72
326 #define WLAN_EID_20_40_BSS_INTOLERANT 73
327 #define WLAN_EID_OVERLAPPING_BSS_SCAN_PARAMS 74
328 #define WLAN_EID_RIC_DESCRIPTOR 75
329 #define WLAN_EID_MMIE 76
330 #define WLAN_EID_EVENT_REQUEST 78
331 #define WLAN_EID_EVENT_REPORT 79
332 #define WLAN_EID_DIAGNOSTIC_REQUEST 80
333 #define WLAN_EID_DIAGNOSTIC_REPORT 81
334 #define WLAN_EID_LOCATION_PARAMETERS 82
335 #define WLAN_EID_NONTRANSMITTED_BSSID_CAPA 83
336 #define WLAN_EID_SSID_LIST 84
337 #define WLAN_EID_MULTIPLE_BSSID_INDEX 85
338 #define WLAN_EID_FMS_DESCRIPTOR 86
339 #define WLAN_EID_FMS_REQUEST 87
340 #define WLAN_EID_FMS_RESPONSE 88
341 #define WLAN_EID_QOS_TRAFFIC_CAPABILITY 89
342 #define WLAN_EID_BSS_MAX_IDLE_PERIOD 90
343 #define WLAN_EID_TFS_REQ 91
344 #define WLAN_EID_TFS_RESP 92
345 #define WLAN_EID_WNMSLEEP 93
346 #define WLAN_EID_TIM_BROADCAST_REQUEST 94
347 #define WLAN_EID_TIM_BROADCAST_RESPONSE 95
348 #define WLAN_EID_COLLOCATED_INTERFERENCE_REPORT 96
349 #define WLAN_EID_CHANNEL_USAGE 97
350 #define WLAN_EID_TIME_ZONE 98
351 #define WLAN_EID_DMS_REQUEST 99
352 #define WLAN_EID_DMS_RESPONSE 100
353 #define WLAN_EID_LINK_ID 101
354 #define WLAN_EID_WAKEUP_SCHEDULE 102
355 #define WLAN_EID_CHANNEL_SWITCH_TIMING 104
356 #define WLAN_EID_PTI_CONTROL 105
357 #define WLAN_EID_TPU_BUFFER_STATUS 106
358 #define WLAN_EID_INTERWORKING 107
359 #define WLAN_EID_ADV_PROTO 108
360 #define WLAN_EID_EXPEDITED_BANDWIDTH_REQ 109
361 #define WLAN_EID_QOS_MAP_SET 110
362 #define WLAN_EID_ROAMING_CONSORTIUM 111
363 #define WLAN_EID_EMERGENCY_ALERT_ID 112
364 #define WLAN_EID_MESH_CONFIG 113
365 #define WLAN_EID_MESH_ID 114
366 #define WLAN_EID_MESH_LINK_METRIC_REPORT 115
367 #define WLAN_EID_CONGESTION_NOTIFICATION 116
368 #define WLAN_EID_PEER_MGMT 117
369 #define WLAN_EID_MESH_CHANNEL_SWITCH_PARAMETERS 118
370 #define WLAN_EID_MESH_AWAKE_WINDOW 119
371 #define WLAN_EID_BEACON_TIMING 120
372 #define WLAN_EID_MCCAOP_SETUP_REQUEST 121
373 #define WLAN_EID_MCCAOP_SETUP_REPLY 122
374 #define WLAN_EID_MCCAOP_ADVERTISEMENT 123
375 #define WLAN_EID_MCCAOP_TEARDOWN 124
376 #define WLAN_EID_GANN 125
377 #define WLAN_EID_RANN 126
378 #define WLAN_EID_EXT_CAPAB 127
379 #define WLAN_EID_PREQ 130
380 #define WLAN_EID_PREP 131
381 #define WLAN_EID_PERR 132
382 #define WLAN_EID_PXU 137
383 #define WLAN_EID_PXUC 138
384 #define WLAN_EID_AMPE 139
385 #define WLAN_EID_MIC 140
386 #define WLAN_EID_DESTINATION_URI 141
387 #define WLAN_EID_U_APSD_COEX 142
388 #define WLAN_EID_DMG_WAKEUP_SCHEDULE 143
389 #define WLAN_EID_EXTENDED_SCHEDULE 144
390 #define WLAN_EID_STA_AVAILABILITY 145
391 #define WLAN_EID_DMG_TSPEC 146
392 #define WLAN_EID_NEXT_DMG_ATI 147
393 #define WLAN_EID_DMG_CAPABILITIES 148
394 #define WLAN_EID_DMG_OPERATION 151
395 #define WLAN_EID_DMG_BSS_PARAMETER_CHANGE 152
396 #define WLAN_EID_DMG_BEAM_REFINEMENT 153
397 #define WLAN_EID_CHANNEL_MEASUREMENT_FEEDBACK 154
398 #define WLAN_EID_CCKM 156
399 #define WLAN_EID_AWAKE_WINDOW 157
400 #define WLAN_EID_MULTI_BAND 158
401 #define WLAN_EID_ADDBA_EXTENSION 159
402 #define WLAN_EID_NEXTPCP_LIST 160
403 #define WLAN_EID_PCP_HANDOVER 161
404 #define WLAN_EID_DMG_LINK_MARGIN 162
405 #define WLAN_EID_SWITCHING_STREAM 163
406 #define WLAN_EID_SESSION_TRANSITION 164
407 #define WLAN_EID_DYNAMIC_TONE_PAIRING_REPORT 165
408 #define WLAN_EID_CLUSTER_REPORT 166
409 #define WLAN_EID_REPLAY_CAPABILITIES 167
410 #define WLAN_EID_RELAY_TRANSFER_PARAM_SET 168
411 #define WLAN_EID_BEAMLINK_MAINTENANCE 169
412 #define WLAN_EID_MULTIPLE_MAC_SUBLAYERS 170
413 #define WLAN_EID_U_PID 171
414 #define WLAN_EID_DMG_LINK_ADAPTATION_ACK 172
415 #define WLAN_EID_MCCAOP_ADVERTISEMENT_OVERVIEW 174
416 #define WLAN_EID_QUIET_PERIOD_REQUEST 175
417 #define WLAN_EID_QUIET_PERIOD_RESPONSE 177
418 #define WLAN_EID_QMF_POLICY 181
419 #define WLAN_EID_ECAPC_POLICY 182
420 #define WLAN_EID_CLUSTER_TIME_OFFSET 183
421 #define WLAN_EID_INTRA_ACCESS_CATEGORY_PRIORITY 184
422 #define WLAN_EID_SCS_DESCRIPTOR 185
423 #define WLAN_EID_QLOAD_REPORT 186
424 #define WLAN_EID_HCCA_TXOP_UPDATE_COUNT 187
425 #define WLAN_EID_HIGHER_LAYER_STREAM_ID 188
426 #define WLAN_EID_GCR_GROUP_ADDRESS 189
427 #define WLAN_EID_ANTENNA_SECTOR_ID_PATTERN 190
428 #define WLAN_EID_VHT_CAP 191
429 #define WLAN_EID_VHT_OPERATION 192
430 #define WLAN_EID_VHT_EXTENDED_BSS_LOAD 193
431 #define WLAN_EID_VHT_WIDE_BW_CHSWITCH  194
432 #define WLAN_EID_VHT_TRANSMIT_POWER_ENVELOPE 195
433 #define WLAN_EID_VHT_CHANNEL_SWITCH_WRAPPER 196
434 #define WLAN_EID_VHT_AID 197
435 #define WLAN_EID_VHT_QUIET_CHANNEL 198
436 #define WLAN_EID_VHT_OPERATING_MODE_NOTIFICATION 199
437 #define WLAN_EID_UPSIM 200
438 #define WLAN_EID_REDUCED_NEIGHBOR_REPORT 201
439 #define WLAN_EID_TVHT_OPERATION 202
440 #define WLAN_EID_DEVICE_LOCATION 204
441 #define WLAN_EID_WHITE_SPACE_MAP 205
442 #define WLAN_EID_FTM_PARAMETERS 206
443 #define WLAN_EID_VENDOR_SPECIFIC 221
444 #define WLAN_EID_CAG_NUMBER 237
445 #define WLAN_EID_AP_CSN 239
446 #define WLAN_EID_FILS_INDICATION 240
447 #define WLAN_EID_DILS 241
448 #define WLAN_EID_FRAGMENT 242
449 #define WLAN_EID_EXTENSION 255
450
451 /* Element ID Extension (EID 255) values */
452 #define WLAN_EID_EXT_ASSOC_DELAY_INFO 1
453 #define WLAN_EID_EXT_FILS_REQ_PARAMS 2
454 #define WLAN_EID_EXT_FILS_KEY_CONFIRM 3
455 #define WLAN_EID_EXT_FILS_SESSION 4
456 #define WLAN_EID_EXT_FILS_HLP_CONTAINER 5
457 #define WLAN_EID_EXT_FILS_IP_ADDR_ASSIGN 6
458 #define WLAN_EID_EXT_KEY_DELIVERY 7
459 #define WLAN_EID_EXT_FILS_WRAPPED_DATA 8
460 #define WLAN_EID_EXT_FTM_SYNC_INFO 9
461 #define WLAN_EID_EXT_EXTENDED_REQUEST 10
462 #define WLAN_EID_EXT_ESTIMATED_SERVICE_PARAMS 11
463 #define WLAN_EID_EXT_FILS_PUBLIC_KEY 12
464 #define WLAN_EID_EXT_FILS_NONCE 13
465 #define WLAN_EID_EXT_FUTURE_CHANNEL_GUIDANCE 14
466 #define WLAN_EID_EXT_OWE_DH_PARAM 32
467 #define WLAN_EID_EXT_PASSWORD_IDENTIFIER 33
468 #define WLAN_EID_EXT_HE_CAPABILITIES 35
469 #define WLAN_EID_EXT_HE_OPERATION 36
470 #define WLAN_EID_EXT_HE_MU_EDCA_PARAMS 38
471 #define WLAN_EID_EXT_SPATIAL_REUSE 39
472 #define WLAN_EID_EXT_OCV_OCI 54
473
474 /* Extended Capabilities field */
475 #define WLAN_EXT_CAPAB_20_40_COEX 0
476 #define WLAN_EXT_CAPAB_GLK 1
477 #define WLAN_EXT_CAPAB_EXT_CHAN_SWITCH 2
478 #define WLAN_EXT_CAPAB_GLK_GCR 3
479 #define WLAN_EXT_CAPAB_PSMP 4
480 /* 5 - Reserved */
481 #define WLAN_EXT_CAPAB_S_PSMP 6
482 #define WLAN_EXT_CAPAB_EVENT 7
483 #define WLAN_EXT_CAPAB_DIAGNOSTICS 8
484 #define WLAN_EXT_CAPAB_MULTICAST_DIAGNOSTICS 9
485 #define WLAN_EXT_CAPAB_LOCATION_TRACKING 10
486 #define WLAN_EXT_CAPAB_FMS 11
487 #define WLAN_EXT_CAPAB_PROXY_ARP 12
488 #define WLAN_EXT_CAPAB_COLL_INTERF_REP 13
489 #define WLAN_EXT_CAPAB_CIVIC_LOCATION 14
490 #define WLAN_EXT_CAPAB_GEOSPATIAL_LOCATION 15
491 #define WLAN_EXT_CAPAB_TFS 16
492 #define WLAN_EXT_CAPAB_WNM_SLEEP_MODE 17
493 #define WLAN_EXT_CAPAB_TIM_BROADCAST 18
494 #define WLAN_EXT_CAPAB_BSS_TRANSITION 19
495 #define WLAN_EXT_CAPAB_QOS_TRAFFIC 20
496 #define WLAN_EXT_CAPAB_AC_STA_COUNT 21
497 #define WLAN_EXT_CAPAB_MULTIPLE_BSSID 22
498 #define WLAN_EXT_CAPAB_TIMING_MEASUREMENT 23
499 #define WLAN_EXT_CAPAB_CHANNEL_USAGE 24
500 #define WLAN_EXT_CAPAB_SSID_LIST 25
501 #define WLAN_EXT_CAPAB_DMS 26
502 #define WLAN_EXT_CAPAB_UTF_TSF_OFFSET 27
503 #define WLAN_EXT_CAPAB_TPU_BUFFER_STA 28
504 #define WLAN_EXT_CAPAB_TDLS_PEER_PSM 29
505 #define WLAN_EXT_CAPAB_TDLS_CHANNEL_SWITCH 30
506 #define WLAN_EXT_CAPAB_INTERWORKING 31
507 #define WLAN_EXT_CAPAB_QOS_MAP 32
508 #define WLAN_EXT_CAPAB_EBR 33
509 #define WLAN_EXT_CAPAB_SSPN_INTERFACE 34
510 /* 35 - Reserved */
511 #define WLAN_EXT_CAPAB_MSGCF 36
512 #define WLAN_EXT_CAPAB_TDLS 37
513 #define WLAN_EXT_CAPAB_TDLS_PROHIBITED 38
514 #define WLAN_EXT_CAPAB_TDLS_CHANNEL_SWITCH_PROHIBITED 39
515 #define WLAN_EXT_CAPAB_REJECT_UNADMITTED_FRAME 40
516 #define WLAN_EXT_CAPAB_
517 /* 41-43 - Service Interval Granularity */
518 #define WLAN_EXT_CAPAB_IDENTIFIER_LOCATION 44
519 #define WLAN_EXT_CAPAB_U_APSD_COEX 45
520 #define WLAN_EXT_CAPAB_WNM_NOTIFCATION 46
521 #define WLAN_EXT_CAPAB_QAB 47
522 #define WLAN_EXT_CAPAB_UTF_8_SSID 48
523 #define WLAN_EXT_CAPAB_QMF 49
524 #define WLAN_EXT_CAPAB_QMF_RECONFIG 50
525 #define WLAN_EXT_CAPAB_ROBUST_AV_STREAMING 51
526 #define WLAN_EXT_CAPAB_ADVANCED_GCR 52
527 #define WLAN_EXT_CAPAB_MESH_GCR 53
528 #define WLAN_EXT_CAPAB_SCS 54
529 #define WLAN_EXT_CAPAB_QLOAD_REPORT 55
530 #define WLAN_EXT_CAPAB_ALT_EDCA 56
531 #define WLAN_EXT_CAPAB_UNPROT_TXOP_NEG 57
532 #define WLAN_EXT_CAPAB_PROT_TXOP_NEG 58
533 /* 59 - Reserved */
534 #define WLAN_EXT_CAPAB_PROT_QLOAD_REPORT 60
535 #define WLAN_EXT_CAPAB_TDLS_WIDER_BW 61
536 #define WLAN_EXT_CAPAB_OPMODE_NOTIF 62
537 #define WLAN_EXT_CAPAB_
538 /* 63-64 - Max Number of MSDUs In A-MSDU */
539 #define WLAN_EXT_CAPAB_CHANNEL_SCHEDULE_MGMT 65
540 #define WLAN_EXT_CAPAB_GEODB_INBAND_ENABLING_SIGNAL 66
541 #define WLAN_EXT_CAPAB_NETWORK_CHANNEL_CTRL 67
542 #define WLAN_EXT_CAPAB_WHITE_SPACE_MAP 68
543 #define WLAN_EXT_CAPAB_CHANNEL_AVAIL_QUERY 69
544 #define WLAN_EXT_CAPAB_FTM_RESPONDER 70
545 #define WLAN_EXT_CAPAB_FTM_INITIATOR 71
546 #define WLAN_EXT_CAPAB_FILS 72
547 #define WLAN_EXT_CAPAB_EXT_SPECTRUM_MGMT 73
548 #define WLAN_EXT_CAPAB_FUTURE_CHANNEL_GUIDANCE 74
549 #define WLAN_EXT_CAPAB_PAD 75
550 /* 76-79 - Reserved */
551 #define WLAN_EXT_CAPAB_COMPLETE_NON_TX_BSSID_PROFILE 80
552 #define WLAN_EXT_CAPAB_SAE_PW_ID 81
553 #define WLAN_EXT_CAPAB_SAE_PW_ID_EXCLUSIVELY 82
554
555 /* Action frame categories (IEEE Std 802.11-2016, 9.4.1.11, Table 9-76) */
556 #define WLAN_ACTION_SPECTRUM_MGMT 0
557 #define WLAN_ACTION_QOS 1
558 #define WLAN_ACTION_DLS 2
559 #define WLAN_ACTION_BLOCK_ACK 3
560 #define WLAN_ACTION_PUBLIC 4
561 #define WLAN_ACTION_RADIO_MEASUREMENT 5
562 #define WLAN_ACTION_FT 6
563 #define WLAN_ACTION_HT 7
564 #define WLAN_ACTION_SA_QUERY 8
565 #define WLAN_ACTION_PROTECTED_DUAL 9
566 #define WLAN_ACTION_WNM 10
567 #define WLAN_ACTION_UNPROTECTED_WNM 11
568 #define WLAN_ACTION_TDLS 12
569 #define WLAN_ACTION_MESH 13
570 #define WLAN_ACTION_MULTIHOP 14
571 #define WLAN_ACTION_SELF_PROTECTED 15
572 #define WLAN_ACTION_DMG 16
573 #define WLAN_ACTION_WMM 17 /* WMM Specification 1.1 */
574 #define WLAN_ACTION_FST 18
575 #define WLAN_ACTION_ROBUST_AV_STREAMING 19
576 #define WLAN_ACTION_UNPROTECTED_DMG 20
577 #define WLAN_ACTION_VHT 21
578 #define WLAN_ACTION_FILS 26
579 #define WLAN_ACTION_VENDOR_SPECIFIC_PROTECTED 126
580 #define WLAN_ACTION_VENDOR_SPECIFIC 127
581 /* Note: 128-255 used to report errors by setting category | 0x80 */
582
583 /* Public action codes (IEEE Std 802.11-2016, 9.6.8.1, Table 9-307) */
584 #define WLAN_PA_20_40_BSS_COEX 0
585 #define WLAN_PA_DSE_ENABLEMENT 1
586 #define WLAN_PA_DSE_DEENABLEMENT 2
587 #define WLAN_PA_DSE_REG_LOCATION_ANNOUNCE 3
588 #define WLAN_PA_EXT_CHANNEL_SWITCH_ANNOUNCE 4
589 #define WLAN_PA_DSE_MEASUREMENT_REQ 5
590 #define WLAN_PA_DSE_MEASUREMENT_RESP 6
591 #define WLAN_PA_MEASUREMENT_PILOT 7
592 #define WLAN_PA_DSE_POWER_CONSTRAINT 8
593 #define WLAN_PA_VENDOR_SPECIFIC 9
594 #define WLAN_PA_GAS_INITIAL_REQ 10
595 #define WLAN_PA_GAS_INITIAL_RESP 11
596 #define WLAN_PA_GAS_COMEBACK_REQ 12
597 #define WLAN_PA_GAS_COMEBACK_RESP 13
598 #define WLAN_TDLS_DISCOVERY_RESPONSE 14
599 #define WLAN_PA_LOCATION_TRACK_NOTIFICATION 15
600 #define WLAN_PA_QAB_REQUEST_FRAME 16
601 #define WLAN_PA_QAB_RESPONSE_FRAME 17
602 #define WLAN_PA_QMF_POLICY 18
603 #define WLAN_PA_QMF_POLICY_CHANGE 19
604 #define WLAN_PA_QLOAD_REQUEST 20
605 #define WLAN_PA_QLOAD_REPORT 21
606 #define WLAN_PA_HCCA_TXOP_ADVERTISEMENT 22
607 #define WLAN_PA_HCCA_TXOP_RESPONSE 23
608 #define WLAN_PA_PUBLIC_KEY 24
609 #define WLAN_PA_CHANNEL_AVAILABILITY_QUERY 25
610 #define WLAN_PA_CHANNEL_SCHEDULE_MANAGEMENT 26
611 #define WLAN_PA_CONTACT_VERIFICATION_SIGNAL 27
612 #define WLAN_PA_GDD_ENABLEMENT_REQ 28
613 #define WLAN_PA_GDD_ENABLEMENT_RESP 29
614 #define WLAN_PA_NETWORK_CHANNEL_CONTROL 30
615 #define WLAN_PA_WHITE_SPACE_MAP_ANNOUNCEMENT 31
616 #define WLAN_PA_FTM_REQUEST 32
617 #define WLAN_PA_FTM 33
618 #define WLAN_PA_FILS_DISCOVERY 34
619
620 /* Protected Dual of Public Action frames (IEEE Std 802.11-2016, 9.6.11,
621  * Table 9-332) */
622 #define WLAN_PROT_DSE_ENABLEMENT 1
623 #define WLAN_PROT_DSE_DEENABLEMENT 2
624 #define WLAN_PROT_EXT_CSA 4
625 #define WLAN_PROT_MEASUREMENT_REQ 5
626 #define WLAN_PROT_MEASUREMENT_REPORT 6
627 #define WLAN_PROT_DSE_POWER_CONSTRAINT 8
628 #define WLAN_PROT_VENDOR_SPECIFIC 9
629 #define WLAN_PROT_GAS_INITIAL_REQ 10
630 #define WLAN_PROT_GAS_INITIAL_RESP 11
631 #define WLAN_PROT_GAS_COMEBACK_REQ 12
632 #define WLAN_PROT_GAS_COMEBACK_RESP 13
633 #define WLAN_PROT_QAB_REQUEST_FRAME 16
634 #define WLAN_PROT_QAB_RESPONSE_FRAME 17
635 #define WLAN_PROT_QMF_POLICY 18
636 #define WLAN_PROT_QMF_POLICY_CHANGE 19
637 #define WLAN_PROT_QLOAD_REQUEST 20
638 #define WLAN_PROT_QLOAD_REPORT 21
639 #define WLAN_PROT_HCCA_TXOP_ADVERTISEMENT 22
640 #define WLAN_PROT_HCCA_TXOP_RESPONSE 23
641 #define WLAN_PROT_CHANNEL_AVAILABILITY_QUERY 25
642 #define WLAN_PROT_CHANNEL_SCHEDULE_MANAGEMENT 26
643 #define WLAN_PROT_CONTACT_VERIFICATION_SIGNAL 27
644 #define WLAN_PROT_GDD_ENABLEMENT_REQ 28
645 #define WLAN_PROT_GDD_ENABLEMENT_RESP 29
646 #define WLAN_PROT_NETWORK_CHANNEL_CONTROL 30
647 #define WLAN_PROT_WHITE_SPACE_MAP_ANNOUNCEMENT 31
648
649 /* SA Query Action frame (IEEE 802.11w/D8.0, 7.4.9) */
650 #define WLAN_SA_QUERY_REQUEST 0
651 #define WLAN_SA_QUERY_RESPONSE 1
652
653 #define WLAN_SA_QUERY_TR_ID_LEN 2
654
655 /* TDLS action codes */
656 #define WLAN_TDLS_SETUP_REQUEST 0
657 #define WLAN_TDLS_SETUP_RESPONSE 1
658 #define WLAN_TDLS_SETUP_CONFIRM 2
659 #define WLAN_TDLS_TEARDOWN 3
660 #define WLAN_TDLS_PEER_TRAFFIC_INDICATION 4
661 #define WLAN_TDLS_CHANNEL_SWITCH_REQUEST 5
662 #define WLAN_TDLS_CHANNEL_SWITCH_RESPONSE 6
663 #define WLAN_TDLS_PEER_PSM_REQUEST 7
664 #define WLAN_TDLS_PEER_PSM_RESPONSE 8
665 #define WLAN_TDLS_PEER_TRAFFIC_RESPONSE 9
666 #define WLAN_TDLS_DISCOVERY_REQUEST 10
667
668 /* Radio Measurement Action codes */
669 #define WLAN_RRM_RADIO_MEASUREMENT_REQUEST 0
670 #define WLAN_RRM_RADIO_MEASUREMENT_REPORT 1
671 #define WLAN_RRM_LINK_MEASUREMENT_REQUEST 2
672 #define WLAN_RRM_LINK_MEASUREMENT_REPORT 3
673 #define WLAN_RRM_NEIGHBOR_REPORT_REQUEST 4
674 #define WLAN_RRM_NEIGHBOR_REPORT_RESPONSE 5
675
676 /* Radio Measurement capabilities (from RM Enabled Capabilities element)
677  * IEEE Std 802.11-2016, 9.4.2.45, Table 9-157 */
678 /* byte 1 (out of 5) */
679 #define WLAN_RRM_CAPS_LINK_MEASUREMENT BIT(0)
680 #define WLAN_RRM_CAPS_NEIGHBOR_REPORT BIT(1)
681 #define WLAN_RRM_CAPS_BEACON_REPORT_PASSIVE BIT(4)
682 #define WLAN_RRM_CAPS_BEACON_REPORT_ACTIVE BIT(5)
683 #define WLAN_RRM_CAPS_BEACON_REPORT_TABLE BIT(6)
684 /* byte 2 (out of 5) */
685 #define WLAN_RRM_CAPS_LCI_MEASUREMENT BIT(4)
686 /* byte 5 (out of 5) */
687 #define WLAN_RRM_CAPS_FTM_RANGE_REPORT BIT(2)
688
689 /*
690  * IEEE P802.11-REVmc/D5.0, 9.4.2.21.19 (Fine Timing Measurement Range
691  * request) - Minimum AP count
692  */
693 #define WLAN_RRM_RANGE_REQ_MAX_MIN_AP 15
694
695 /* Timeout Interval Type */
696 #define WLAN_TIMEOUT_REASSOC_DEADLINE 1
697 #define WLAN_TIMEOUT_KEY_LIFETIME 2
698 #define WLAN_TIMEOUT_ASSOC_COMEBACK 3
699
700 /* Interworking element (IEEE 802.11u) - Access Network Options */
701 #define INTERWORKING_ANO_ACCESS_NETWORK_MASK 0x0f
702 #define INTERWORKING_ANO_INTERNET 0x10
703 #define INTERWORKING_ANO_ASRA 0x20
704 #define INTERWORKING_ANO_ESR 0x40
705 #define INTERWORKING_ANO_UESA 0x80
706
707 #define INTERWORKING_ANT_PRIVATE 0
708 #define INTERWORKING_ANT_PRIVATE_WITH_GUEST 1
709 #define INTERWORKING_ANT_CHARGEABLE_PUBLIC 2
710 #define INTERWORKING_ANT_FREE_PUBLIC 3
711 #define INTERWORKING_ANT_PERSONAL_DEVICE 4
712 #define INTERWORKING_ANT_EMERGENCY_SERVICES 5
713 #define INTERWORKING_ANT_TEST 6
714 #define INTERWORKING_ANT_WILDCARD 15
715
716 /* Advertisement Protocol ID definitions (IEEE Std 802.11-2016, Table 9-215) */
717 enum adv_proto_id {
718         ACCESS_NETWORK_QUERY_PROTOCOL = 0,
719         MIH_INFO_SERVICE = 1,
720         MIH_CMD_AND_EVENT_DISCOVERY = 2,
721         EMERGENCY_ALERT_SYSTEM = 3,
722         REGISTERED_LOCATION_QUERY_PROTO = 4,
723         ADV_PROTO_VENDOR_SPECIFIC = 221
724 };
725
726 /* Access Network Query Protocol info ID definitions (IEEE Std 802.11-2016,
727  * Table 9-271; P802.11ai) */
728 enum anqp_info_id {
729         ANQP_QUERY_LIST = 256,
730         ANQP_CAPABILITY_LIST = 257,
731         ANQP_VENUE_NAME = 258,
732         ANQP_EMERGENCY_CALL_NUMBER = 259,
733         ANQP_NETWORK_AUTH_TYPE = 260,
734         ANQP_ROAMING_CONSORTIUM = 261,
735         ANQP_IP_ADDR_TYPE_AVAILABILITY = 262,
736         ANQP_NAI_REALM = 263,
737         ANQP_3GPP_CELLULAR_NETWORK = 264,
738         ANQP_AP_GEOSPATIAL_LOCATION = 265,
739         ANQP_AP_CIVIC_LOCATION = 266,
740         ANQP_AP_LOCATION_PUBLIC_URI = 267,
741         ANQP_DOMAIN_NAME = 268,
742         ANQP_EMERGENCY_ALERT_URI = 269,
743         ANQP_TDLS_CAPABILITY = 270,
744         ANQP_EMERGENCY_NAI = 271,
745         ANQP_NEIGHBOR_REPORT = 272,
746         ANQP_QUERY_AP_LIST = 273,
747         ANQP_AP_LIST_RESPONSE = 274,
748         ANQP_FILS_REALM_INFO = 275,
749         ANQP_CAG = 276,
750         ANQP_VENUE_URL = 277,
751         ANQP_ADVICE_OF_CHARGE = 278,
752         ANQP_LOCAL_CONTENT = 279,
753         ANQP_NETWORK_AUTH_TYPE_TIMESTAMP = 280,
754         ANQP_VENDOR_SPECIFIC = 56797
755 };
756
757 /* NAI Realm list - EAP Method subfield - Authentication Parameter ID */
758 enum nai_realm_eap_auth_param {
759         NAI_REALM_EAP_AUTH_EXPANDED_EAP_METHOD = 1,
760         NAI_REALM_EAP_AUTH_NON_EAP_INNER_AUTH = 2,
761         NAI_REALM_EAP_AUTH_INNER_AUTH_EAP_METHOD = 3,
762         NAI_REALM_EAP_AUTH_EXPANDED_INNER_EAP_METHOD = 4,
763         NAI_REALM_EAP_AUTH_CRED_TYPE = 5,
764         NAI_REALM_EAP_AUTH_TUNNELED_CRED_TYPE = 6,
765         NAI_REALM_EAP_AUTH_VENDOR_SPECIFIC = 221
766 };
767
768 enum nai_realm_eap_auth_inner_non_eap {
769         NAI_REALM_INNER_NON_EAP_PAP = 1,
770         NAI_REALM_INNER_NON_EAP_CHAP = 2,
771         NAI_REALM_INNER_NON_EAP_MSCHAP = 3,
772         NAI_REALM_INNER_NON_EAP_MSCHAPV2 = 4
773 };
774
775 enum nai_realm_eap_cred_type {
776         NAI_REALM_CRED_TYPE_SIM = 1,
777         NAI_REALM_CRED_TYPE_USIM = 2,
778         NAI_REALM_CRED_TYPE_NFC_SECURE_ELEMENT = 3,
779         NAI_REALM_CRED_TYPE_HARDWARE_TOKEN = 4,
780         NAI_REALM_CRED_TYPE_SOFTOKEN = 5,
781         NAI_REALM_CRED_TYPE_CERTIFICATE = 6,
782         NAI_REALM_CRED_TYPE_USERNAME_PASSWORD = 7,
783         NAI_REALM_CRED_TYPE_NONE = 8,
784         NAI_REALM_CRED_TYPE_ANONYMOUS = 9,
785         NAI_REALM_CRED_TYPE_VENDOR_SPECIFIC = 10
786 };
787
788 /*
789  * IEEE P802.11-REVmc/D5.0 Table 9-81 - Measurement type definitions for
790  * measurement requests
791  */
792 enum measure_type {
793         MEASURE_TYPE_BASIC = 0,
794         MEASURE_TYPE_CCA = 1,
795         MEASURE_TYPE_RPI_HIST = 2,
796         MEASURE_TYPE_CHANNEL_LOAD = 3,
797         MEASURE_TYPE_NOISE_HIST = 4,
798         MEASURE_TYPE_BEACON = 5,
799         MEASURE_TYPE_FRAME = 6,
800         MEASURE_TYPE_STA_STATISTICS = 7,
801         MEASURE_TYPE_LCI = 8,
802         MEASURE_TYPE_TRANSMIT_STREAM = 9,
803         MEASURE_TYPE_MULTICAST_DIAG = 10,
804         MEASURE_TYPE_LOCATION_CIVIC = 11,
805         MEASURE_TYPE_LOCATION_ID = 12,
806         MEASURE_TYPE_DIRECTIONAL_CHAN_QUALITY = 13,
807         MEASURE_TYPE_DIRECTIONAL_MEASURE = 14,
808         MEASURE_TYPE_DIRECTIONAL_STATS = 15,
809         MEASURE_TYPE_FTM_RANGE = 16,
810         MEASURE_TYPE_MEASURE_PAUSE = 255,
811 };
812
813 /* IEEE Std 802.11-2012 Table 8-71 - Location subject definition */
814 enum location_subject {
815         LOCATION_SUBJECT_LOCAL = 0,
816         LOCATION_SUBJECT_REMOTE = 1,
817         LOCATION_SUBJECT_3RD_PARTY = 2,
818 };
819
820 /*
821  * IEEE P802.11-REVmc/D5.0 Table 9-94 - Optional subelement IDs for LCI request
822  */
823 enum lci_req_subelem {
824         LCI_REQ_SUBELEM_AZIMUTH_REQ = 1,
825         LCI_REQ_SUBELEM_ORIGINATOR_MAC_ADDR = 2,
826         LCI_REQ_SUBELEM_TARGET_MAC_ADDR = 3,
827         LCI_REQ_SUBELEM_MAX_AGE = 4,
828 };
829
830 #define FILS_NONCE_LEN 16
831 #define FILS_SESSION_LEN 8
832 #define FILS_CACHE_ID_LEN 2
833 #define FILS_MAX_KEY_AUTH_LEN 48
834
835 #ifdef _MSC_VER
836 #pragma pack(push, 1)
837 #endif /* _MSC_VER */
838
839 struct ieee80211_hdr {
840         le16 frame_control;
841         le16 duration_id;
842         u8 addr1[6];
843         u8 addr2[6];
844         u8 addr3[6];
845         le16 seq_ctrl;
846         /* followed by 'u8 addr4[6];' if ToDS and FromDS is set in data frame
847          */
848 } STRUCT_PACKED;
849
850 #define IEEE80211_DA_FROMDS addr1
851 #define IEEE80211_BSSID_FROMDS addr2
852 #define IEEE80211_SA_FROMDS addr3
853
854 #define IEEE80211_HDRLEN (sizeof(struct ieee80211_hdr))
855
856 #define IEEE80211_FC(type, stype) host_to_le16((type << 2) | (stype << 4))
857
858 struct ieee80211_mgmt {
859         le16 frame_control;
860         le16 duration;
861         u8 da[6];
862         u8 sa[6];
863         u8 bssid[6];
864         le16 seq_ctrl;
865         union {
866                 struct {
867                         le16 auth_alg;
868                         le16 auth_transaction;
869                         le16 status_code;
870                         /* possibly followed by Challenge text */
871                         u8 variable[];
872                 } STRUCT_PACKED auth;
873                 struct {
874                         le16 reason_code;
875                         u8 variable[];
876                 } STRUCT_PACKED deauth;
877                 struct {
878                         le16 capab_info;
879                         le16 listen_interval;
880                         /* followed by SSID and Supported rates */
881                         u8 variable[];
882                 } STRUCT_PACKED assoc_req;
883                 struct {
884                         le16 capab_info;
885                         le16 status_code;
886                         le16 aid;
887                         /* followed by Supported rates */
888                         u8 variable[];
889                 } STRUCT_PACKED assoc_resp, reassoc_resp;
890                 struct {
891                         le16 capab_info;
892                         le16 listen_interval;
893                         u8 current_ap[6];
894                         /* followed by SSID and Supported rates */
895                         u8 variable[];
896                 } STRUCT_PACKED reassoc_req;
897                 struct {
898                         le16 reason_code;
899                         u8 variable[];
900                 } STRUCT_PACKED disassoc;
901                 struct {
902                         u8 timestamp[8];
903                         le16 beacon_int;
904                         le16 capab_info;
905                         /* followed by some of SSID, Supported rates,
906                          * FH Params, DS Params, CF Params, IBSS Params, TIM */
907                         u8 variable[];
908                 } STRUCT_PACKED beacon;
909                 /* probe_req: only variable items: SSID, Supported rates */
910                 struct {
911                         u8 timestamp[8];
912                         le16 beacon_int;
913                         le16 capab_info;
914                         /* followed by some of SSID, Supported rates,
915                          * FH Params, DS Params, CF Params, IBSS Params */
916                         u8 variable[];
917                 } STRUCT_PACKED probe_resp;
918                 struct {
919                         u8 category;
920                         union {
921                                 struct {
922                                         u8 action_code;
923                                         u8 dialog_token;
924                                         u8 status_code;
925                                         u8 variable[];
926                                 } STRUCT_PACKED wmm_action;
927                                 struct{
928                                         u8 action_code;
929                                         u8 element_id;
930                                         u8 length;
931                                         u8 switch_mode;
932                                         u8 new_chan;
933                                         u8 switch_count;
934                                 } STRUCT_PACKED chan_switch;
935                                 struct {
936                                         u8 action;
937                                         u8 sta_addr[ETH_ALEN];
938                                         u8 target_ap_addr[ETH_ALEN];
939                                         u8 variable[]; /* FT Request */
940                                 } STRUCT_PACKED ft_action_req;
941                                 struct {
942                                         u8 action;
943                                         u8 sta_addr[ETH_ALEN];
944                                         u8 target_ap_addr[ETH_ALEN];
945                                         le16 status_code;
946                                         u8 variable[]; /* FT Request */
947                                 } STRUCT_PACKED ft_action_resp;
948                                 struct {
949                                         u8 action;
950                                         u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
951                                         u8 variable[]; /* OCI element */
952                                 } STRUCT_PACKED sa_query_req;
953                                 struct {
954                                         u8 action; /* */
955                                         u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
956                                         u8 variable[]; /* OCI element */
957                                 } STRUCT_PACKED sa_query_resp;
958                                 struct {
959                                         u8 action;
960                                         u8 dialogtoken;
961                                         u8 variable[];
962                                 } STRUCT_PACKED wnm_sleep_req;
963                                 struct {
964                                         u8 action;
965                                         u8 dialogtoken;
966                                         le16 keydata_len;
967                                         u8 variable[];
968                                 } STRUCT_PACKED wnm_sleep_resp;
969                                 struct {
970                                         u8 action;
971                                         u8 variable[];
972                                 } STRUCT_PACKED public_action;
973                                 struct {
974                                         u8 action; /* 9 */
975                                         u8 oui[3];
976                                         /* Vendor-specific content */
977                                         u8 variable[];
978                                 } STRUCT_PACKED vs_public_action;
979                                 struct {
980                                         u8 action; /* 7 */
981                                         u8 dialog_token;
982                                         u8 req_mode;
983                                         le16 disassoc_timer;
984                                         u8 validity_interval;
985                                         /* BSS Termination Duration (optional),
986                                          * Session Information URL (optional),
987                                          * BSS Transition Candidate List
988                                          * Entries */
989                                         u8 variable[];
990                                 } STRUCT_PACKED bss_tm_req;
991                                 struct {
992                                         u8 action; /* 8 */
993                                         u8 dialog_token;
994                                         u8 status_code;
995                                         u8 bss_termination_delay;
996                                         /* Target BSSID (optional),
997                                          * BSS Transition Candidate List
998                                          * Entries (optional) */
999                                         u8 variable[];
1000                                 } STRUCT_PACKED bss_tm_resp;
1001                                 struct {
1002                                         u8 action; /* 6 */
1003                                         u8 dialog_token;
1004                                         u8 query_reason;
1005                                         /* BSS Transition Candidate List
1006                                          * Entries (optional) */
1007                                         u8 variable[];
1008                                 } STRUCT_PACKED bss_tm_query;
1009                                 struct {
1010                                         u8 action; /* 11 */
1011                                         u8 dialog_token;
1012                                         u8 req_info;
1013                                 } STRUCT_PACKED coloc_intf_req;
1014                                 struct {
1015                                         u8 action; /* 12 */
1016                                         u8 dialog_token;
1017                                         u8 variable[];
1018                                 } STRUCT_PACKED coloc_intf_report;
1019                                 struct {
1020                                         u8 action; /* 15 */
1021                                         u8 variable[];
1022                                 } STRUCT_PACKED slf_prot_action;
1023                                 struct {
1024                                         u8 action;
1025                                         u8 variable[];
1026                                 } STRUCT_PACKED fst_action;
1027                                 struct {
1028                                         u8 action;
1029                                         u8 dialog_token;
1030                                         u8 variable[];
1031                                 } STRUCT_PACKED rrm;
1032                         } u;
1033                 } STRUCT_PACKED action;
1034         } u;
1035 } STRUCT_PACKED;
1036
1037
1038 #define IEEE80211_MAX_MMPDU_SIZE 2304
1039
1040 /* Rx MCS bitmask is in the first 77 bits of supported_mcs_set */
1041 #define IEEE80211_HT_MCS_MASK_LEN 10
1042
1043 /* HT Capabilities element */
1044 struct ieee80211_ht_capabilities {
1045         le16 ht_capabilities_info;
1046         u8 a_mpdu_params; /* Maximum A-MPDU Length Exponent B0..B1
1047                            * Minimum MPDU Start Spacing B2..B4
1048                            * Reserved B5..B7 */
1049         u8 supported_mcs_set[16];
1050         le16 ht_extended_capabilities;
1051         le32 tx_bf_capability_info;
1052         u8 asel_capabilities;
1053 } STRUCT_PACKED;
1054
1055
1056 /* HT Operation element */
1057 struct ieee80211_ht_operation {
1058         u8 primary_chan;
1059         /* Five octets of HT Operation Information */
1060         u8 ht_param; /* B0..B7 */
1061         le16 operation_mode; /* B8..B23 */
1062         le16 param; /* B24..B39 */
1063         u8 basic_mcs_set[16];
1064 } STRUCT_PACKED;
1065
1066
1067 struct ieee80211_obss_scan_parameters {
1068         le16 scan_passive_dwell;
1069         le16 scan_active_dwell;
1070         le16 width_trigger_scan_interval;
1071         le16 scan_passive_total_per_channel;
1072         le16 scan_active_total_per_channel;
1073         le16 channel_transition_delay_factor;
1074         le16 scan_activity_threshold;
1075 } STRUCT_PACKED;
1076
1077
1078 struct ieee80211_vht_capabilities {
1079         le32 vht_capabilities_info;
1080         struct {
1081                 le16 rx_map;
1082                 le16 rx_highest;
1083                 le16 tx_map;
1084                 le16 tx_highest;
1085         } vht_supported_mcs_set;
1086 } STRUCT_PACKED;
1087
1088 struct ieee80211_vht_operation {
1089         u8 vht_op_info_chwidth;
1090         u8 vht_op_info_chan_center_freq_seg0_idx;
1091         u8 vht_op_info_chan_center_freq_seg1_idx;
1092         le16 vht_basic_mcs_set;
1093 } STRUCT_PACKED;
1094
1095 struct ieee80211_ampe_ie {
1096         u8 selected_pairwise_suite[4];
1097         u8 local_nonce[32];
1098         u8 peer_nonce[32];
1099         /* Followed by
1100          * Key Replay Counter[8] (optional)
1101          *      (only in Mesh Group Key Inform/Acknowledge frames)
1102          * GTKdata[variable] (optional)
1103          *      (MGTK[variable] || Key RSC[8] || GTKExpirationTime[4])
1104          * IGTKdata[variable] (optional)
1105          *      (Key ID[2], IPN[6], IGTK[variable] in IGTK KDE format)
1106          */
1107 } STRUCT_PACKED;
1108
1109 #ifdef _MSC_VER
1110 #pragma pack(pop)
1111 #endif /* _MSC_VER */
1112
1113 #define ERP_INFO_NON_ERP_PRESENT BIT(0)
1114 #define ERP_INFO_USE_PROTECTION BIT(1)
1115 #define ERP_INFO_BARKER_PREAMBLE_MODE BIT(2)
1116
1117 #define OVERLAPPING_BSS_TRANS_DELAY_FACTOR 5
1118
1119 /* HT Capabilities Info field within HT Capabilities element */
1120 #define HT_CAP_INFO_LDPC_CODING_CAP             ((u16) BIT(0))
1121 #define HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET      ((u16) BIT(1))
1122 #define HT_CAP_INFO_SMPS_MASK                   ((u16) (BIT(2) | BIT(3)))
1123 #define HT_CAP_INFO_SMPS_STATIC                 ((u16) 0)
1124 #define HT_CAP_INFO_SMPS_DYNAMIC                ((u16) BIT(2))
1125 #define HT_CAP_INFO_SMPS_DISABLED               ((u16) (BIT(2) | BIT(3)))
1126 #define HT_CAP_INFO_GREEN_FIELD                 ((u16) BIT(4))
1127 #define HT_CAP_INFO_SHORT_GI20MHZ               ((u16) BIT(5))
1128 #define HT_CAP_INFO_SHORT_GI40MHZ               ((u16) BIT(6))
1129 #define HT_CAP_INFO_TX_STBC                     ((u16) BIT(7))
1130 #define HT_CAP_INFO_RX_STBC_MASK                ((u16) (BIT(8) | BIT(9)))
1131 #define HT_CAP_INFO_RX_STBC_1                   ((u16) BIT(8))
1132 #define HT_CAP_INFO_RX_STBC_12                  ((u16) BIT(9))
1133 #define HT_CAP_INFO_RX_STBC_123                 ((u16) (BIT(8) | BIT(9)))
1134 #define HT_CAP_INFO_DELAYED_BA                  ((u16) BIT(10))
1135 #define HT_CAP_INFO_MAX_AMSDU_SIZE              ((u16) BIT(11))
1136 #define HT_CAP_INFO_DSSS_CCK40MHZ               ((u16) BIT(12))
1137 /* B13 - Reserved (was PSMP support during P802.11n development) */
1138 #define HT_CAP_INFO_40MHZ_INTOLERANT            ((u16) BIT(14))
1139 #define HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT   ((u16) BIT(15))
1140
1141 /* HT Extended Capabilities field within HT Capabilities element */
1142 #define EXT_HT_CAP_INFO_PCO                     ((u16) BIT(0))
1143 #define EXT_HT_CAP_INFO_PCO_TRANS_TIME_MASK     ((u16) (BIT(1) | BIT(2)))
1144 #define EXT_HT_CAP_INFO_TRANS_TIME_OFFSET       1
1145 /* B3..B7 - Reserved */
1146 #define EXT_HT_CAP_INFO_MCS_FEEDBACK_MASK       ((u16) (BIT(8) | BIT(9)))
1147 #define EXT_HT_CAP_INFO_MCS_FEEDBACK_OFFSET     8
1148 #define EXT_HT_CAP_INFO_HTC_SUPPORT             ((u16) BIT(10))
1149 #define EXT_HT_CAP_INFO_RD_RESPONDER            ((u16) BIT(11))
1150 /* B12..B15 - Reserved */
1151
1152 /* Transmit Beanforming Capabilities within HT Capabilities element */
1153 #define TX_BF_CAP_IMPLICIT_TXBF_RX_CAP ((u32) BIT(0))
1154 #define TX_BF_CAP_RX_STAGGERED_SOUNDING_CAP ((u32) BIT(1))
1155 #define TX_BF_CAP_TX_STAGGERED_SOUNDING_CAP ((u32) BIT(2))
1156 #define TX_BF_CAP_RX_NDP_CAP ((u32) BIT(3))
1157 #define TX_BF_CAP_TX_NDP_CAP ((u32) BIT(4))
1158 #define TX_BF_CAP_IMPLICIT_TX_BF_CAP ((u32) BIT(5))
1159 #define TX_BF_CAP_CALIBRATION_MASK ((u32) (BIT(6) | BIT(7))
1160 #define TX_BF_CAP_CALIB_OFFSET 6
1161 #define TX_BF_CAP_EXPLICIT_CSI_TXBF_CAP ((u32) BIT(8))
1162 #define TX_BF_CAP_EXPLICIT_NONCOMPR_STEERING_CAP ((u32) BIT(9))
1163 #define TX_BF_CAP_EXPLICIT_COMPR_STEERING_CAP ((u32) BIT(10))
1164 #define TX_BF_CAP_EXPLICIT_TX_BF_CSI_FEEDBACK_MASK ((u32) (BIT(10) | BIT(11)))
1165 #define TX_BF_CAP_EXPLICIT_BF_CSI_FEEDBACK_OFFSET 11
1166 #define TX_BF_CAP_EXPLICIT_UNCOMPR_STEERING_MATRIX_FEEDBACK_OFFSET 13
1167 #define TX_BF_CAP_EXPLICIT_COMPRESSED_STEERING_MATRIX_FEEDBACK_OFFSET 15
1168 #define TX_BF_CAP_MINIMAL_GROUPING_OFFSET 17
1169 #define TX_BF_CAP_CSI_NUM_BEAMFORMER_ANT_OFFSET 19
1170 #define TX_BF_CAP_UNCOMPRESSED_STEERING_MATRIX_BEAMFORMER_ANT_OFFSET 21
1171 #define TX_BF_CAP_COMPRESSED_STEERING_MATRIX_BEAMFORMER_ANT_OFFSET 23
1172 #define TX_BF_CAP_SCI_MAX_OF_ROWS_BEANFORMER_SUPPORTED_OFFSET 25
1173 #define TX_BF_CAP_CHANNEL_ESTIMATION_CAP_MASK ((u32) (BIT(27) | BIT(28)))
1174 #define TX_BF_CAP_CHANNEL_ESTIMATION_CAP_OFFSET 27
1175 /* B29..B31 - Reserved */
1176
1177 /* ASEL Capability field within HT Capabilities element */
1178 #define ASEL_CAP_ASEL_CAPABLE ((u8) BIT(0))
1179 #define ASEL_CAP_EXPLICIT_CSI_FEEDBACK_BASED_TX_AS_CAP ((u8) BIT(1))
1180 #define ASEL_CAP_ANT_INDICES_FEEDBACK_BASED_TX_AS_CAP ((u8) BIT(2))
1181 #define ASEL_CAP_EXPLICIT_CSI_FEEDBACK_CAP ((u8) BIT(3))
1182 #define ASEL_CAP_ANT_INDICES_FEEDBACK_CAP ((u8) BIT(4))
1183 #define ASEL_CAP_RX_AS_CAP ((u8) BIT(5))
1184 #define ASEL_CAP_TX_SOUNDING_PPDUS_CAP ((u8) BIT(6))
1185 /* B7 - Reserved */
1186
1187 /* First octet of HT Operation Information within HT Operation element */
1188 #define HT_INFO_HT_PARAM_SECONDARY_CHNL_OFF_MASK        ((u8) BIT(0) | BIT(1))
1189 #define HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE           ((u8) BIT(0))
1190 #define HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW           ((u8) BIT(0) | BIT(1))
1191 #define HT_INFO_HT_PARAM_STA_CHNL_WIDTH                 ((u8) BIT(2))
1192 #define HT_INFO_HT_PARAM_RIFS_MODE                      ((u8) BIT(3))
1193 /* B4..B7 - Reserved */
1194
1195 /* HT Protection (B8..B9 of HT Operation Information) */
1196 #define HT_PROT_NO_PROTECTION           0
1197 #define HT_PROT_NONMEMBER_PROTECTION    1
1198 #define HT_PROT_20MHZ_PROTECTION        2
1199 #define HT_PROT_NON_HT_MIXED            3
1200 /* Bits within ieee80211_ht_operation::operation_mode (BIT(0) maps to B8 in
1201  * HT Operation Information) */
1202 #define HT_OPER_OP_MODE_HT_PROT_MASK ((u16) (BIT(0) | BIT(1))) /* B8..B9 */
1203 #define HT_OPER_OP_MODE_NON_GF_HT_STAS_PRESENT  ((u16) BIT(2)) /* B10 */
1204 /* BIT(3), i.e., B11 in HT Operation Information field - Reserved */
1205 #define HT_OPER_OP_MODE_OBSS_NON_HT_STAS_PRESENT        ((u16) BIT(4)) /* B12 */
1206 /* BIT(5)..BIT(15), i.e., B13..B23 - Reserved */
1207
1208 /* Last two octets of HT Operation Information (BIT(0) = B24) */
1209 /* B24..B29 - Reserved */
1210 #define HT_OPER_PARAM_DUAL_BEACON                       ((u16) BIT(6))
1211 #define HT_OPER_PARAM_DUAL_CTS_PROTECTION               ((u16) BIT(7))
1212 #define HT_OPER_PARAM_STBC_BEACON                       ((u16) BIT(8))
1213 #define HT_OPER_PARAM_LSIG_TXOP_PROT_FULL_SUPP          ((u16) BIT(9))
1214 #define HT_OPER_PARAM_PCO_ACTIVE                        ((u16) BIT(10))
1215 #define HT_OPER_PARAM_PCO_PHASE                         ((u16) BIT(11))
1216 /* B36..B39 - Reserved */
1217
1218 #define BSS_MEMBERSHIP_SELECTOR_VHT_PHY 126
1219 #define BSS_MEMBERSHIP_SELECTOR_HT_PHY 127
1220
1221 /* VHT Defines */
1222 #define VHT_CAP_MAX_MPDU_LENGTH_7991                ((u32) BIT(0))
1223 #define VHT_CAP_MAX_MPDU_LENGTH_11454               ((u32) BIT(1))
1224 #define VHT_CAP_MAX_MPDU_LENGTH_MASK                ((u32) BIT(0) | BIT(1))
1225 #define VHT_CAP_MAX_MPDU_LENGTH_MASK_SHIFT          0
1226 #define VHT_CAP_SUPP_CHAN_WIDTH_160MHZ              ((u32) BIT(2))
1227 #define VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ     ((u32) BIT(3))
1228 #define VHT_CAP_SUPP_CHAN_WIDTH_MASK                ((u32) BIT(2) | BIT(3))
1229 #define VHT_CAP_SUPP_CHAN_WIDTH_MASK_SHIFT          2
1230 #define VHT_CAP_RXLDPC                              ((u32) BIT(4))
1231 #define VHT_CAP_SHORT_GI_80                         ((u32) BIT(5))
1232 #define VHT_CAP_SHORT_GI_160                        ((u32) BIT(6))
1233 #define VHT_CAP_TXSTBC                              ((u32) BIT(7))
1234 #define VHT_CAP_RXSTBC_1                            ((u32) BIT(8))
1235 #define VHT_CAP_RXSTBC_2                            ((u32) BIT(9))
1236 #define VHT_CAP_RXSTBC_3                            ((u32) BIT(8) | BIT(9))
1237 #define VHT_CAP_RXSTBC_4                            ((u32) BIT(10))
1238 #define VHT_CAP_RXSTBC_MASK                         ((u32) BIT(8) | BIT(9) | \
1239                                                            BIT(10))
1240 #define VHT_CAP_RXSTBC_MASK_SHIFT                   8
1241 #define VHT_CAP_SU_BEAMFORMER_CAPABLE               ((u32) BIT(11))
1242 #define VHT_CAP_SU_BEAMFORMEE_CAPABLE               ((u32) BIT(12))
1243 #define VHT_CAP_BEAMFORMEE_STS_MAX                  ((u32) BIT(13) | \
1244                                                            BIT(14) | BIT(15))
1245 #define VHT_CAP_BEAMFORMEE_STS_MAX_SHIFT            13
1246 #define VHT_CAP_BEAMFORMEE_STS_OFFSET               13
1247 #define VHT_CAP_SOUNDING_DIMENSION_MAX              ((u32) BIT(16) | \
1248                                                            BIT(17) | BIT(18))
1249 #define VHT_CAP_SOUNDING_DIMENSION_MAX_SHIFT        16
1250 #define VHT_CAP_SOUNDING_DIMENSION_OFFSET           16
1251 #define VHT_CAP_MU_BEAMFORMER_CAPABLE               ((u32) BIT(19))
1252 #define VHT_CAP_MU_BEAMFORMEE_CAPABLE               ((u32) BIT(20))
1253 #define VHT_CAP_VHT_TXOP_PS                         ((u32) BIT(21))
1254 #define VHT_CAP_HTC_VHT                             ((u32) BIT(22))
1255
1256 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_1        ((u32) BIT(23))
1257 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_2        ((u32) BIT(24))
1258 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_3        ((u32) BIT(23) | BIT(24))
1259 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_4        ((u32) BIT(25))
1260 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_5        ((u32) BIT(23) | BIT(25))
1261 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_6        ((u32) BIT(24) | BIT(25))
1262 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX      ((u32) BIT(23) | \
1263                                                            BIT(24) | BIT(25))
1264 #define VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX_SHIFT 23
1265 #define VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB   ((u32) BIT(27))
1266 #define VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB     ((u32) BIT(26) | BIT(27))
1267 #define VHT_CAP_RX_ANTENNA_PATTERN                  ((u32) BIT(28))
1268 #define VHT_CAP_TX_ANTENNA_PATTERN                  ((u32) BIT(29))
1269
1270 #define VHT_OPMODE_CHANNEL_WIDTH_MASK               ((u8) BIT(0) | BIT(1))
1271 #define VHT_OPMODE_CHANNEL_RxNSS_MASK               ((u8) BIT(4) | BIT(5) | \
1272                                                      BIT(6))
1273 #define VHT_OPMODE_NOTIF_RX_NSS_SHIFT               4
1274
1275 #define VHT_RX_NSS_MAX_STREAMS                      8
1276
1277 /* VHT channel widths */
1278 #define CHANWIDTH_USE_HT        0
1279 #define CHANWIDTH_80MHZ         1
1280 #define CHANWIDTH_160MHZ        2
1281 #define CHANWIDTH_80P80MHZ      3
1282
1283 #define HE_NSS_MAX_STREAMS                          8
1284
1285 #define OUI_MICROSOFT 0x0050f2 /* Microsoft (also used in Wi-Fi specs)
1286                                 * 00:50:F2 */
1287 #define WPA_IE_VENDOR_TYPE 0x0050f201
1288 #define WMM_IE_VENDOR_TYPE 0x0050f202
1289 #define WPS_IE_VENDOR_TYPE 0x0050f204
1290 #define OUI_WFA 0x506f9a
1291 #define P2P_IE_VENDOR_TYPE 0x506f9a09
1292 #define WFD_IE_VENDOR_TYPE 0x506f9a0a
1293 #define WFD_OUI_TYPE 10
1294 #define HS20_IE_VENDOR_TYPE 0x506f9a10
1295 #define OSEN_IE_VENDOR_TYPE 0x506f9a12
1296 #define MBO_IE_VENDOR_TYPE 0x506f9a16
1297 #define MBO_OUI_TYPE 22
1298 #define OWE_IE_VENDOR_TYPE 0x506f9a1c
1299 #define OWE_OUI_TYPE 28
1300 #define MULTI_AP_OUI_TYPE 0x1B
1301
1302 #define MULTI_AP_SUB_ELEM_TYPE 0x06
1303 #define MULTI_AP_TEAR_DOWN BIT(4)
1304 #define MULTI_AP_FRONTHAUL_BSS BIT(5)
1305 #define MULTI_AP_BACKHAUL_BSS BIT(6)
1306 #define MULTI_AP_BACKHAUL_STA BIT(7)
1307
1308 #define WMM_OUI_TYPE 2
1309 #define WMM_OUI_SUBTYPE_INFORMATION_ELEMENT 0
1310 #define WMM_OUI_SUBTYPE_PARAMETER_ELEMENT 1
1311 #define WMM_OUI_SUBTYPE_TSPEC_ELEMENT 2
1312 #define WMM_VERSION 1
1313
1314 #define WMM_ACTION_CODE_ADDTS_REQ 0
1315 #define WMM_ACTION_CODE_ADDTS_RESP 1
1316 #define WMM_ACTION_CODE_DELTS 2
1317
1318 #define WMM_ADDTS_STATUS_ADMISSION_ACCEPTED 0
1319 #define WMM_ADDTS_STATUS_INVALID_PARAMETERS 1
1320 /* 2 - Reserved */
1321 #define WMM_ADDTS_STATUS_REFUSED 3
1322 /* 4-255 - Reserved */
1323
1324 /* WMM TSPEC Direction Field Values */
1325 #define WMM_TSPEC_DIRECTION_UPLINK 0
1326 #define WMM_TSPEC_DIRECTION_DOWNLINK 1
1327 /* 2 - Reserved */
1328 #define WMM_TSPEC_DIRECTION_BI_DIRECTIONAL 3
1329
1330 /*
1331  * WMM Information Element (used in (Re)Association Request frames; may also be
1332  * used in Beacon frames)
1333  */
1334 struct wmm_information_element {
1335         /* Element ID: 221 (0xdd); Length: 7 */
1336         /* required fields for WMM version 1 */
1337         u8 oui[3]; /* 00:50:f2 */
1338         u8 oui_type; /* 2 */
1339         u8 oui_subtype; /* 0 */
1340         u8 version; /* 1 for WMM version 1.0 */
1341         u8 qos_info; /* AP/STA specific QoS info */
1342
1343 } STRUCT_PACKED;
1344
1345 #define WMM_QOSINFO_AP_UAPSD 0x80
1346
1347 #define WMM_QOSINFO_STA_AC_MASK 0x0f
1348 #define WMM_QOSINFO_STA_SP_MASK 0x03
1349 #define WMM_QOSINFO_STA_SP_SHIFT 5
1350
1351 #define WMM_AC_AIFSN_MASK 0x0f
1352 #define WMM_AC_AIFNS_SHIFT 0
1353 #define WMM_AC_ACM 0x10
1354 #define WMM_AC_ACI_MASK 0x60
1355 #define WMM_AC_ACI_SHIFT 5
1356
1357 #define WMM_AC_ECWMIN_MASK 0x0f
1358 #define WMM_AC_ECWMIN_SHIFT 0
1359 #define WMM_AC_ECWMAX_MASK 0xf0
1360 #define WMM_AC_ECWMAX_SHIFT 4
1361
1362 struct wmm_ac_parameter {
1363         u8 aci_aifsn; /* AIFSN, ACM, ACI */
1364         u8 cw; /* ECWmin, ECWmax (CW = 2^ECW - 1) */
1365         le16 txop_limit;
1366 }  STRUCT_PACKED;
1367
1368 /*
1369  * WMM Parameter Element (used in Beacon, Probe Response, and (Re)Association
1370  * Response frmaes)
1371  */
1372 struct wmm_parameter_element {
1373         /* Element ID: 221 (0xdd); Length: 24 */
1374         /* required fields for WMM version 1 */
1375         u8 oui[3]; /* 00:50:f2 */
1376         u8 oui_type; /* 2 */
1377         u8 oui_subtype; /* 1 */
1378         u8 version; /* 1 for WMM version 1.0 */
1379         u8 qos_info; /* AP/STA specific QoS info */
1380         u8 reserved; /* 0 */
1381         struct wmm_ac_parameter ac[4]; /* AC_BE, AC_BK, AC_VI, AC_VO */
1382
1383 } STRUCT_PACKED;
1384
1385 /* WMM TSPEC Element */
1386 struct wmm_tspec_element {
1387         u8 eid; /* 221 = 0xdd */
1388         u8 length; /* 6 + 55 = 61 */
1389         u8 oui[3]; /* 00:50:f2 */
1390         u8 oui_type; /* 2 */
1391         u8 oui_subtype; /* 2 */
1392         u8 version; /* 1 */
1393         /* WMM TSPEC body (55 octets): */
1394         u8 ts_info[3];
1395         le16 nominal_msdu_size;
1396         le16 maximum_msdu_size;
1397         le32 minimum_service_interval;
1398         le32 maximum_service_interval;
1399         le32 inactivity_interval;
1400         le32 suspension_interval;
1401         le32 service_start_time;
1402         le32 minimum_data_rate;
1403         le32 mean_data_rate;
1404         le32 peak_data_rate;
1405         le32 maximum_burst_size;
1406         le32 delay_bound;
1407         le32 minimum_phy_rate;
1408         le16 surplus_bandwidth_allowance;
1409         le16 medium_time;
1410 } STRUCT_PACKED;
1411
1412
1413 /* Access Categories / ACI to AC coding */
1414 enum wmm_ac {
1415         WMM_AC_BE = 0 /* Best Effort */,
1416         WMM_AC_BK = 1 /* Background */,
1417         WMM_AC_VI = 2 /* Video */,
1418         WMM_AC_VO = 3 /* Voice */,
1419         WMM_AC_NUM = 4
1420 };
1421
1422
1423 #define HS20_INDICATION_OUI_TYPE 16
1424 #define HS20_ANQP_OUI_TYPE 17
1425 #define HS20_OSEN_OUI_TYPE 18
1426 #define HS20_ROAMING_CONS_SEL_OUI_TYPE 29
1427 #define HS20_STYPE_QUERY_LIST 1
1428 #define HS20_STYPE_CAPABILITY_LIST 2
1429 #define HS20_STYPE_OPERATOR_FRIENDLY_NAME 3
1430 #define HS20_STYPE_WAN_METRICS 4
1431 #define HS20_STYPE_CONNECTION_CAPABILITY 5
1432 #define HS20_STYPE_NAI_HOME_REALM_QUERY 6
1433 #define HS20_STYPE_OPERATING_CLASS 7
1434 #define HS20_STYPE_OSU_PROVIDERS_LIST 8
1435 #define HS20_STYPE_ICON_REQUEST 10
1436 #define HS20_STYPE_ICON_BINARY_FILE 11
1437 #define HS20_STYPE_OPERATOR_ICON_METADATA 12
1438 #define HS20_STYPE_OSU_PROVIDERS_NAI_LIST 13
1439
1440 #define HS20_DGAF_DISABLED 0x01
1441 #define HS20_PPS_MO_ID_PRESENT 0x02
1442 #define HS20_ANQP_DOMAIN_ID_PRESENT 0x04
1443 #ifndef HS20_VERSION
1444 #define HS20_VERSION 0x20 /* Release 3 */
1445 #endif /* HS20_VERSION */
1446
1447 /* WNM-Notification WFA vendors specific subtypes */
1448 #define HS20_WNM_SUB_REM_NEEDED 0
1449 #define HS20_WNM_DEAUTH_IMMINENT_NOTICE 1
1450 #define WFA_WNM_NOTIF_SUBELEM_NON_PREF_CHAN_REPORT 2
1451 #define WFA_WNM_NOTIF_SUBELEM_CELL_DATA_CAPA 3
1452 #define HS20_WNM_T_C_ACCEPTANCE 4
1453
1454 #define HS20_DEAUTH_REASON_CODE_BSS 0
1455 #define HS20_DEAUTH_REASON_CODE_ESS 1
1456
1457 /* MBO v0.0_r19, 4.2: MBO Attributes */
1458 /* Table 4-5: MBO Attributes */
1459 /* OCE v0.0.10, Table 4-3: OCE Attributes */
1460 enum mbo_attr_id {
1461         MBO_ATTR_ID_AP_CAPA_IND = 1,
1462         MBO_ATTR_ID_NON_PREF_CHAN_REPORT = 2,
1463         MBO_ATTR_ID_CELL_DATA_CAPA = 3,
1464         MBO_ATTR_ID_ASSOC_DISALLOW = 4,
1465         MBO_ATTR_ID_CELL_DATA_PREF = 5,
1466         MBO_ATTR_ID_TRANSITION_REASON = 6,
1467         MBO_ATTR_ID_TRANSITION_REJECT_REASON = 7,
1468         MBO_ATTR_ID_ASSOC_RETRY_DELAY = 8,
1469         OCE_ATTR_ID_CAPA_IND = 101,
1470         OCE_ATTR_ID_RSSI_BASED_ASSOC_REJECT = 102,
1471         OCE_ATTR_ID_REDUCED_WAN_METRICS = 103,
1472         OCE_ATTR_ID_RNR_COMPLETENESS = 104,
1473 };
1474
1475 /* MBO v0.0_r19, 4.2.1: MBO AP Capability Indication Attribute */
1476 /* Table 4-7: MBO AP Capability Indication Field Values */
1477 #define MBO_AP_CAPA_CELL_AWARE BIT(6)
1478
1479 /* MBO v0.0_r19, 4.2.2: Non-preferred Channel Report Attribute */
1480 /* Table 4-10: Reason Code Field Values */
1481 enum mbo_non_pref_chan_reason {
1482         MBO_NON_PREF_CHAN_REASON_UNSPECIFIED = 0,
1483         MBO_NON_PREF_CHAN_REASON_RSSI = 1,
1484         MBO_NON_PREF_CHAN_REASON_EXT_INTERFERENCE = 2,
1485         MBO_NON_PREF_CHAN_REASON_INT_INTERFERENCE = 3,
1486 };
1487
1488 /* MBO v0.0_r19, 4.2.3: Cellular Data Capabilities Attribute */
1489 /* Table 4-13: Cellular Data Connectivity Field */
1490 enum mbo_cellular_capa {
1491         MBO_CELL_CAPA_AVAILABLE = 1,
1492         MBO_CELL_CAPA_NOT_AVAILABLE = 2,
1493         MBO_CELL_CAPA_NOT_SUPPORTED = 3,
1494 };
1495
1496 /* MBO v0.0_r19, 4.2.4: Association Disallowed Attribute */
1497 /* Table 4-15: Reason Code Field Values */
1498 enum mbo_assoc_disallow_reason {
1499         MBO_ASSOC_DISALLOW_REASON_UNSPECIFIED = 1,
1500         MBO_ASSOC_DISALLOW_REASON_MAX_STA = 2,
1501         MBO_ASSOC_DISALLOW_REASON_AIR_INTERFERENCE = 3,
1502         MBO_ASSOC_DISALLOW_REASON_AUTH_SERVER_OVERLOAD = 4,
1503         MBO_ASSOC_DISALLOW_REASON_LOW_RSSI = 5,
1504 };
1505
1506 /* MBO v0.0_r19, 4.2.5: Cellular Data Connection Preference Attribute */
1507 /* Table 4-17: Cellular Preference Field Values */
1508 enum mbo_cell_pref {
1509         MBO_CELL_PREF_EXCLUDED = 0,
1510         MBO_CELL_PREF_NO_USE = 1,
1511         MBO_CELL_PREF_USE = 255
1512 };
1513
1514 /* MBO v0.0_r19, 4.2.6: Transition Reason Code Attribute */
1515 /* Table 4-19: Transition Reason Code Field Values */
1516 enum mbo_transition_reason {
1517         MBO_TRANSITION_REASON_UNSPECIFIED = 0,
1518         MBO_TRANSITION_REASON_FRAME_LOSS = 1,
1519         MBO_TRANSITION_REASON_DELAY = 2,
1520         MBO_TRANSITION_REASON_BANDWIDTH = 3,
1521         MBO_TRANSITION_REASON_LOAD_BALANCE = 4,
1522         MBO_TRANSITION_REASON_RSSI = 5,
1523         MBO_TRANSITION_REASON_RETRANSMISSIONS = 6,
1524         MBO_TRANSITION_REASON_INTERFERENCE = 7,
1525         MBO_TRANSITION_REASON_GRAY_ZONE = 8,
1526         MBO_TRANSITION_REASON_PREMIUM_AP = 9,
1527 };
1528
1529 /* MBO v0.0_r19, 4.2.7: Transition Rejection Reason Code Attribute */
1530 /* Table 4-21: Transition Rejection Reason Code Field Values */
1531 enum mbo_transition_reject_reason {
1532         MBO_TRANSITION_REJECT_REASON_UNSPECIFIED = 0,
1533         MBO_TRANSITION_REJECT_REASON_FRAME_LOSS = 1,
1534         MBO_TRANSITION_REJECT_REASON_DELAY = 2,
1535         MBO_TRANSITION_REJECT_REASON_QOS_CAPACITY = 3,
1536         MBO_TRANSITION_REJECT_REASON_RSSI = 4,
1537         MBO_TRANSITION_REJECT_REASON_INTERFERENCE = 5,
1538         MBO_TRANSITION_REJECT_REASON_SERVICES = 6,
1539 };
1540
1541 /* MBO v0.0_r27, 4.3: MBO ANQP-elements */
1542 #define MBO_ANQP_OUI_TYPE 0x12
1543 #define MBO_ANQP_SUBTYPE_QUERY_LIST 1
1544 #define MBO_ANQP_SUBTYPE_CELL_CONN_PREF 2
1545 #define MAX_MBO_ANQP_SUBTYPE MBO_ANQP_SUBTYPE_CELL_CONN_PREF
1546
1547 /* OCE v0.0.10, 4.2.1: OCE Capability Indication Attribute */
1548 #define OCE_RELEASE 1
1549 #define OCE_RELEASE_MASK (BIT(0) | BIT(1) | BIT(2))
1550 #define OCE_IS_STA_CFON BIT(3)
1551 #define OCE_IS_NON_OCE_AP_PRESENT BIT(4)
1552
1553 /* Wi-Fi Direct (P2P) */
1554
1555 #define P2P_OUI_TYPE 9
1556
1557 enum p2p_attr_id {
1558         P2P_ATTR_STATUS = 0,
1559         P2P_ATTR_MINOR_REASON_CODE = 1,
1560         P2P_ATTR_CAPABILITY = 2,
1561         P2P_ATTR_DEVICE_ID = 3,
1562         P2P_ATTR_GROUP_OWNER_INTENT = 4,
1563         P2P_ATTR_CONFIGURATION_TIMEOUT = 5,
1564         P2P_ATTR_LISTEN_CHANNEL = 6,
1565         P2P_ATTR_GROUP_BSSID = 7,
1566         P2P_ATTR_EXT_LISTEN_TIMING = 8,
1567         P2P_ATTR_INTENDED_INTERFACE_ADDR = 9,
1568         P2P_ATTR_MANAGEABILITY = 10,
1569         P2P_ATTR_CHANNEL_LIST = 11,
1570         P2P_ATTR_NOTICE_OF_ABSENCE = 12,
1571         P2P_ATTR_DEVICE_INFO = 13,
1572         P2P_ATTR_GROUP_INFO = 14,
1573         P2P_ATTR_GROUP_ID = 15,
1574         P2P_ATTR_INTERFACE = 16,
1575         P2P_ATTR_OPERATING_CHANNEL = 17,
1576         P2P_ATTR_INVITATION_FLAGS = 18,
1577         P2P_ATTR_OOB_GO_NEG_CHANNEL = 19,
1578         P2P_ATTR_SERVICE_HASH = 21,
1579         P2P_ATTR_SESSION_INFORMATION_DATA = 22,
1580         P2P_ATTR_CONNECTION_CAPABILITY = 23,
1581         P2P_ATTR_ADVERTISEMENT_ID = 24,
1582         P2P_ATTR_ADVERTISED_SERVICE = 25,
1583         P2P_ATTR_SESSION_ID = 26,
1584         P2P_ATTR_FEATURE_CAPABILITY = 27,
1585         P2P_ATTR_PERSISTENT_GROUP = 28,
1586         P2P_ATTR_VENDOR_SPECIFIC = 221
1587 };
1588
1589 #define P2P_MAX_GO_INTENT 15
1590
1591 /* P2P Capability - Device Capability bitmap */
1592 #define P2P_DEV_CAPAB_SERVICE_DISCOVERY BIT(0)
1593 #define P2P_DEV_CAPAB_CLIENT_DISCOVERABILITY BIT(1)
1594 #define P2P_DEV_CAPAB_CONCURRENT_OPER BIT(2)
1595 #define P2P_DEV_CAPAB_INFRA_MANAGED BIT(3)
1596 #define P2P_DEV_CAPAB_DEVICE_LIMIT BIT(4)
1597 #define P2P_DEV_CAPAB_INVITATION_PROCEDURE BIT(5)
1598
1599 /* P2P Capability - Group Capability bitmap */
1600 #define P2P_GROUP_CAPAB_GROUP_OWNER BIT(0)
1601 #define P2P_GROUP_CAPAB_PERSISTENT_GROUP BIT(1)
1602 #define P2P_GROUP_CAPAB_GROUP_LIMIT BIT(2)
1603 #define P2P_GROUP_CAPAB_INTRA_BSS_DIST BIT(3)
1604 #define P2P_GROUP_CAPAB_CROSS_CONN BIT(4)
1605 #define P2P_GROUP_CAPAB_PERSISTENT_RECONN BIT(5)
1606 #define P2P_GROUP_CAPAB_GROUP_FORMATION BIT(6)
1607 #define P2P_GROUP_CAPAB_IP_ADDR_ALLOCATION BIT(7)
1608
1609 /* P2PS Coordination Protocol Transport Bitmap */
1610 #define P2PS_FEATURE_CAPAB_UDP_TRANSPORT BIT(0)
1611 #define P2PS_FEATURE_CAPAB_MAC_TRANSPORT BIT(1)
1612
1613 struct p2ps_feature_capab {
1614         u8 cpt;
1615         u8 reserved;
1616 } STRUCT_PACKED;
1617
1618 /* Invitation Flags */
1619 #define P2P_INVITATION_FLAGS_TYPE BIT(0)
1620
1621 /* P2P Manageability */
1622 #define P2P_MAN_DEVICE_MANAGEMENT BIT(0)
1623 #define P2P_MAN_CROSS_CONNECTION_PERMITTED BIT(1)
1624 #define P2P_MAN_COEXISTENCE_OPTIONAL BIT(2)
1625
1626 enum p2p_status_code {
1627         P2P_SC_SUCCESS = 0,
1628         P2P_SC_FAIL_INFO_CURRENTLY_UNAVAILABLE = 1,
1629         P2P_SC_FAIL_INCOMPATIBLE_PARAMS = 2,
1630         P2P_SC_FAIL_LIMIT_REACHED = 3,
1631         P2P_SC_FAIL_INVALID_PARAMS = 4,
1632         P2P_SC_FAIL_UNABLE_TO_ACCOMMODATE = 5,
1633         P2P_SC_FAIL_PREV_PROTOCOL_ERROR = 6,
1634         P2P_SC_FAIL_NO_COMMON_CHANNELS = 7,
1635         P2P_SC_FAIL_UNKNOWN_GROUP = 8,
1636         P2P_SC_FAIL_BOTH_GO_INTENT_15 = 9,
1637         P2P_SC_FAIL_INCOMPATIBLE_PROV_METHOD = 10,
1638         P2P_SC_FAIL_REJECTED_BY_USER = 11,
1639         P2P_SC_SUCCESS_DEFERRED = 12,
1640 };
1641
1642 enum p2p_role_indication {
1643         P2P_DEVICE_NOT_IN_GROUP = 0x00,
1644         P2P_CLIENT_IN_A_GROUP = 0x01,
1645         P2P_GO_IN_A_GROUP = 0x02,
1646 };
1647
1648 #define P2P_WILDCARD_SSID "DIRECT-"
1649 #define P2P_WILDCARD_SSID_LEN 7
1650
1651 /* P2P action frames */
1652 enum p2p_act_frame_type {
1653         P2P_NOA = 0,
1654         P2P_PRESENCE_REQ = 1,
1655         P2P_PRESENCE_RESP = 2,
1656         P2P_GO_DISC_REQ = 3
1657 };
1658
1659 /* P2P public action frames */
1660 enum p2p_action_frame_type {
1661         P2P_GO_NEG_REQ = 0,
1662         P2P_GO_NEG_RESP = 1,
1663         P2P_GO_NEG_CONF = 2,
1664         P2P_INVITATION_REQ = 3,
1665         P2P_INVITATION_RESP = 4,
1666         P2P_DEV_DISC_REQ = 5,
1667         P2P_DEV_DISC_RESP = 6,
1668         P2P_PROV_DISC_REQ = 7,
1669         P2P_PROV_DISC_RESP = 8
1670 };
1671
1672 enum p2p_service_protocol_type {
1673         P2P_SERV_ALL_SERVICES = 0,
1674         P2P_SERV_BONJOUR = 1,
1675         P2P_SERV_UPNP = 2,
1676         P2P_SERV_WS_DISCOVERY = 3,
1677         P2P_SERV_WIFI_DISPLAY = 4,
1678         P2P_SERV_P2PS = 11,
1679         P2P_SERV_VENDOR_SPECIFIC = 255
1680 };
1681
1682 enum p2p_sd_status {
1683         P2P_SD_SUCCESS = 0,
1684         P2P_SD_PROTO_NOT_AVAILABLE = 1,
1685         P2P_SD_REQUESTED_INFO_NOT_AVAILABLE = 2,
1686         P2P_SD_BAD_REQUEST = 3
1687 };
1688
1689
1690 enum wifi_display_subelem {
1691         WFD_SUBELEM_DEVICE_INFO = 0,
1692         WFD_SUBELEM_ASSOCIATED_BSSID = 1,
1693         WFD_SUBELEM_AUDIO_FORMATS = 2,
1694         WFD_SUBELEM_VIDEO_FORMATS = 3,
1695         WFD_SUBELEM_3D_VIDEO_FORMATS = 4,
1696         WFD_SUBELEM_CONTENT_PROTECTION = 5,
1697         WFD_SUBELEM_COUPLED_SINK = 6,
1698         WFD_SUBELEM_EXT_CAPAB = 7,
1699         WFD_SUBELEM_LOCAL_IP_ADDRESS = 8,
1700         WFD_SUBELEM_SESSION_INFO = 9,
1701         WFD_SUBELEM_MAC_INFO = 10,
1702         WFD_SUBELEM_R2_DEVICE_INFO = 11,
1703 };
1704
1705 /* 802.11s */
1706 #define MESH_SYNC_METHOD_NEIGHBOR_OFFSET 1
1707 #define MESH_SYNC_METHOD_VENDOR         255
1708 #define MESH_PATH_PROTOCOL_HWMP         1
1709 #define MESH_PATH_PROTOCOL_VENDOR       255
1710 #define MESH_PATH_METRIC_AIRTIME        1
1711 #define MESH_PATH_METRIC_VENDOR         255
1712 /* IEEE 802.11s - Mesh Capability */
1713 #define MESH_CAP_ACCEPT_ADDITIONAL_PEER BIT(0)
1714 #define MESH_CAP_MCCA_SUPPORTED         BIT(1)
1715 #define MESH_CAP_MCCA_ENABLED           BIT(2)
1716 #define MESH_CAP_FORWARDING             BIT(3)
1717 #define MESH_CAP_MBCA_ENABLED           BIT(4)
1718 #define MESH_CAP_TBTT_ADJUSTING         BIT(5)
1719 #define MESH_CAP_MESH_PS_LEVEL          BIT(6)
1720
1721 enum plink_action_field {
1722         PLINK_OPEN = 1,
1723         PLINK_CONFIRM,
1724         PLINK_CLOSE
1725 };
1726
1727 #define OUI_BROADCOM 0x00904c /* Broadcom (Epigram) */
1728 #define VENDOR_VHT_TYPE         0x04
1729 #define VENDOR_VHT_SUBTYPE      0x08
1730 #define VENDOR_VHT_SUBTYPE2     0x00
1731
1732 #define VENDOR_HT_CAPAB_OUI_TYPE 0x33 /* 00-90-4c:0x33 */
1733
1734
1735 /* IEEE 802.11v - WNM Action field values */
1736 enum wnm_action {
1737         WNM_EVENT_REQ = 0,
1738         WNM_EVENT_REPORT = 1,
1739         WNM_DIAGNOSTIC_REQ = 2,
1740         WNM_DIAGNOSTIC_REPORT = 3,
1741         WNM_LOCATION_CFG_REQ = 4,
1742         WNM_LOCATION_CFG_RESP = 5,
1743         WNM_BSS_TRANS_MGMT_QUERY = 6,
1744         WNM_BSS_TRANS_MGMT_REQ = 7,
1745         WNM_BSS_TRANS_MGMT_RESP = 8,
1746         WNM_FMS_REQ = 9,
1747         WNM_FMS_RESP = 10,
1748         WNM_COLLOCATED_INTERFERENCE_REQ = 11,
1749         WNM_COLLOCATED_INTERFERENCE_REPORT = 12,
1750         WNM_TFS_REQ = 13,
1751         WNM_TFS_RESP = 14,
1752         WNM_TFS_NOTIFY = 15,
1753         WNM_SLEEP_MODE_REQ = 16,
1754         WNM_SLEEP_MODE_RESP = 17,
1755         WNM_TIM_BROADCAST_REQ = 18,
1756         WNM_TIM_BROADCAST_RESP = 19,
1757         WNM_QOS_TRAFFIC_CAPAB_UPDATE = 20,
1758         WNM_CHANNEL_USAGE_REQ = 21,
1759         WNM_CHANNEL_USAGE_RESP = 22,
1760         WNM_DMS_REQ = 23,
1761         WNM_DMS_RESP = 24,
1762         WNM_TIMING_MEASUREMENT_REQ = 25,
1763         WNM_NOTIFICATION_REQ = 26,
1764         WNM_NOTIFICATION_RESP = 27
1765 };
1766
1767 /* IEEE 802.11v - BSS Transition Management Request - Request Mode */
1768 #define WNM_BSS_TM_REQ_PREF_CAND_LIST_INCLUDED BIT(0)
1769 #define WNM_BSS_TM_REQ_ABRIDGED BIT(1)
1770 #define WNM_BSS_TM_REQ_DISASSOC_IMMINENT BIT(2)
1771 #define WNM_BSS_TM_REQ_BSS_TERMINATION_INCLUDED BIT(3)
1772 #define WNM_BSS_TM_REQ_ESS_DISASSOC_IMMINENT BIT(4)
1773
1774 /* IEEE Std 802.11-2012 - Table 8-253 */
1775 enum bss_trans_mgmt_status_code {
1776         WNM_BSS_TM_ACCEPT = 0,
1777         WNM_BSS_TM_REJECT_UNSPECIFIED = 1,
1778         WNM_BSS_TM_REJECT_INSUFFICIENT_BEACON = 2,
1779         WNM_BSS_TM_REJECT_INSUFFICIENT_CAPABITY = 3,
1780         WNM_BSS_TM_REJECT_UNDESIRED = 4,
1781         WNM_BSS_TM_REJECT_DELAY_REQUEST = 5,
1782         WNM_BSS_TM_REJECT_STA_CANDIDATE_LIST_PROVIDED = 6,
1783         WNM_BSS_TM_REJECT_NO_SUITABLE_CANDIDATES = 7,
1784         WNM_BSS_TM_REJECT_LEAVING_ESS = 8
1785 };
1786
1787 /*
1788  * IEEE P802.11-REVmc/D5.0 Table 9-150 - Optional subelement IDs for
1789  * neighbor report
1790  */
1791 #define WNM_NEIGHBOR_TSF                         1
1792 #define WNM_NEIGHBOR_CONDENSED_COUNTRY_STRING    2
1793 #define WNM_NEIGHBOR_BSS_TRANSITION_CANDIDATE    3
1794 #define WNM_NEIGHBOR_BSS_TERMINATION_DURATION    4
1795 #define WNM_NEIGHBOR_BEARING                     5
1796 #define WNM_NEIGHBOR_WIDE_BW_CHAN                6
1797 #define WNM_NEIGHBOR_MEASUREMENT_REPORT         39
1798 #define WNM_NEIGHBOR_HT_CAPAB                   45
1799 #define WNM_NEIGHBOR_HT_OPER                    61
1800 #define WNM_NEIGHBOR_SEC_CHAN_OFFSET            62
1801 #define WNM_NEIGHBOR_MEASUREMENT_PILOT          66
1802 #define WNM_NEIGHBOR_RRM_ENABLED_CAPABILITIES   70
1803 #define WNM_NEIGHBOR_MULTIPLE_BSSID             71
1804 #define WNM_NEIGHBOR_VHT_CAPAB                 191
1805 #define WNM_NEIGHBOR_VHT_OPER                  192
1806
1807 /* QoS action */
1808 enum qos_action {
1809         QOS_ADDTS_REQ = 0,
1810         QOS_ADDTS_RESP = 1,
1811         QOS_DELTS = 2,
1812         QOS_SCHEDULE = 3,
1813         QOS_QOS_MAP_CONFIG = 4,
1814 };
1815
1816 /* IEEE Std 802.11-2012, 8.4.2.62 20/40 BSS Coexistence element */
1817 #define WLAN_20_40_BSS_COEX_INFO_REQ            BIT(0)
1818 #define WLAN_20_40_BSS_COEX_40MHZ_INTOL         BIT(1)
1819 #define WLAN_20_40_BSS_COEX_20MHZ_WIDTH_REQ     BIT(2)
1820 #define WLAN_20_40_BSS_COEX_OBSS_EXEMPT_REQ     BIT(3)
1821 #define WLAN_20_40_BSS_COEX_OBSS_EXEMPT_GRNT    BIT(4)
1822
1823 struct ieee80211_2040_bss_coex_ie {
1824         u8 element_id;
1825         u8 length;
1826         u8 coex_param;
1827 } STRUCT_PACKED;
1828
1829 struct ieee80211_2040_intol_chan_report {
1830         u8 element_id;
1831         u8 length;
1832         u8 op_class;
1833         u8 variable[0]; /* Channel List */
1834 } STRUCT_PACKED;
1835
1836 /* IEEE 802.11v - WNM-Sleep Mode element */
1837 struct wnm_sleep_element {
1838         u8 eid;     /* WLAN_EID_WNMSLEEP */
1839         u8 len;
1840         u8 action_type; /* WNM_SLEEP_ENTER/WNM_SLEEP_MODE_EXIT */
1841         u8 status;
1842         le16 intval;
1843 } STRUCT_PACKED;
1844
1845 #define WNM_SLEEP_MODE_ENTER 0
1846 #define WNM_SLEEP_MODE_EXIT 1
1847
1848 enum wnm_sleep_mode_response_status {
1849         WNM_STATUS_SLEEP_ACCEPT = 0,
1850         WNM_STATUS_SLEEP_EXIT_ACCEPT_GTK_UPDATE = 1,
1851         WNM_STATUS_DENIED_ACTION = 2,
1852         WNM_STATUS_DENIED_TMP = 3,
1853         WNM_STATUS_DENIED_KEY = 4,
1854         WNM_STATUS_DENIED_OTHER_WNM_SERVICE = 5
1855 };
1856
1857 /* WNM-Sleep Mode subelement IDs */
1858 enum wnm_sleep_mode_subelement_id {
1859         WNM_SLEEP_SUBELEM_GTK = 0,
1860         WNM_SLEEP_SUBELEM_IGTK = 1
1861 };
1862
1863 /* Channel Switch modes (802.11h) */
1864 #define CHAN_SWITCH_MODE_ALLOW_TX       0
1865 #define CHAN_SWITCH_MODE_BLOCK_TX       1
1866
1867 struct tpc_report {
1868         u8 eid;
1869         u8 len;
1870         u8 tx_power;
1871         u8 link_margin;
1872 } STRUCT_PACKED;
1873
1874 #define RRM_CAPABILITIES_IE_LEN 5
1875
1876 /* IEEE Std 802.11-2012, 8.5.7.4 - Link Measurement Request frame format */
1877 struct rrm_link_measurement_request {
1878         u8 dialog_token;
1879         s8 tx_power;
1880         s8 max_tp;
1881         u8 variable[0];
1882 } STRUCT_PACKED;
1883
1884 /* IEEE Std 802.11-2012, 8.5.7.5 - Link Measurement Report frame format */
1885 struct rrm_link_measurement_report {
1886         u8 dialog_token;
1887         struct tpc_report tpc;
1888         u8 rx_ant_id;
1889         u8 tx_ant_id;
1890         u8 rcpi;
1891         u8 rsni;
1892         u8 variable[0];
1893 } STRUCT_PACKED;
1894
1895 /* IEEE Std 802.11-2016, 9.4.2.21 - Measurement Request element */
1896 struct rrm_measurement_request_element {
1897         u8 eid; /* Element ID */
1898         u8 len; /* Length */
1899         u8 token; /* Measurement Token */
1900         u8 mode; /* Measurement Request Mode */
1901         u8 type; /* Measurement Type */
1902         u8 variable[0]; /* Measurement Request */
1903 } STRUCT_PACKED;
1904
1905 /* IEEE Std 802.11-2016, Figure 9-148 - Measurement Request Mode field */
1906 #define MEASUREMENT_REQUEST_MODE_PARALLEL BIT(0)
1907 #define MEASUREMENT_REQUEST_MODE_ENABLE BIT(1)
1908 #define MEASUREMENT_REQUEST_MODE_REQUEST BIT(2)
1909 #define MEASUREMENT_REQUEST_MODE_REPORT BIT(3)
1910 #define MEASUREMENT_REQUEST_MODE_DURATION_MANDATORY BIT(4)
1911
1912 /* IEEE Std 802.11-2016, 9.4.2.21.7 - Beacon request */
1913 struct rrm_measurement_beacon_request {
1914         u8 oper_class; /* Operating Class */
1915         u8 channel; /* Channel Number */
1916         le16 rand_interval; /* Randomization Interval (in TUs) */
1917         le16 duration; /* Measurement Duration (in TUs) */
1918         u8 mode; /* Measurement Mode */
1919         u8 bssid[ETH_ALEN]; /* BSSID */
1920         u8 variable[0]; /* Optional Subelements */
1921 } STRUCT_PACKED;
1922
1923 /*
1924  * IEEE Std 802.11-2016, Table 9-87 - Measurement Mode definitions for Beacon
1925  * request
1926  */
1927 enum beacon_report_mode {
1928         BEACON_REPORT_MODE_PASSIVE = 0,
1929         BEACON_REPORT_MODE_ACTIVE = 1,
1930         BEACON_REPORT_MODE_TABLE = 2,
1931 };
1932
1933 /* IEEE Std 802.11-2016, Table 9-88 - Beacon Request subelement IDs */
1934 /* IEEE P802.11-REVmd/D2.0, Table 9-106 - Optional subelement IDs for
1935  * Beacon request */
1936 #define WLAN_BEACON_REQUEST_SUBELEM_SSID        0
1937 #define WLAN_BEACON_REQUEST_SUBELEM_INFO        1 /* Beacon Reporting */
1938 #define WLAN_BEACON_REQUEST_SUBELEM_DETAIL      2 /* Reporting Detail */
1939 #define WLAN_BEACON_REQUEST_SUBELEM_REQUEST     10
1940 #define WLAN_BEACON_REQUEST_SUBELEM_AP_CHANNEL  51 /* AP Channel Report */
1941 #define WLAN_BEACON_REQUEST_SUBELEM_LAST_INDICATION     164
1942 #define WLAN_BEACON_REQUEST_SUBELEM_VENDOR      221
1943
1944 /*
1945  * IEEE Std 802.11-2016, Table 9-90 - Reporting Detail values
1946  */
1947 enum beacon_report_detail {
1948         /* No fixed-length fields or elements */
1949         BEACON_REPORT_DETAIL_NONE = 0,
1950         /* All fixed-length fields and any requested elements in the Request
1951          * element if present */
1952         BEACON_REPORT_DETAIL_REQUESTED_ONLY = 1,
1953         /* All fixed-length fields and elements (default, used when Reporting
1954          * Detail subelement is not included in a Beacon request) */
1955         BEACON_REPORT_DETAIL_ALL_FIELDS_AND_ELEMENTS = 2,
1956 };
1957
1958 /* IEEE Std 802.11-2016, 9.4.2.22 - Measurement Report element */
1959 struct rrm_measurement_report_element {
1960         u8 eid; /* Element ID */
1961         u8 len; /* Length */
1962         u8 token; /* Measurement Token */
1963         u8 mode; /* Measurement Report Mode */
1964         u8 type; /* Measurement Type */
1965         u8 variable[0]; /* Measurement Report */
1966 } STRUCT_PACKED;
1967
1968 /* IEEE Std 802.11-2016, Figure 9-192 - Measurement Report Mode field */
1969 #define MEASUREMENT_REPORT_MODE_ACCEPT 0
1970 #define MEASUREMENT_REPORT_MODE_REJECT_LATE BIT(0)
1971 #define MEASUREMENT_REPORT_MODE_REJECT_INCAPABLE BIT(1)
1972 #define MEASUREMENT_REPORT_MODE_REJECT_REFUSED BIT(2)
1973
1974 /* IEEE Std 802.11-2016, 9.4.2.22.7 - Beacon report */
1975 struct rrm_measurement_beacon_report {
1976         u8 op_class; /* Operating Class */
1977         u8 channel; /* Channel Number */
1978         le64 start_time; /* Actual Measurement Start Time
1979                           * (in TSF of the BSS requesting the measurement) */
1980         le16 duration; /* in TUs */
1981         u8 report_info; /* Reported Frame Information */
1982         u8 rcpi; /* RCPI */
1983         u8 rsni; /* RSNI */
1984         u8 bssid[ETH_ALEN]; /* BSSID */
1985         u8 antenna_id; /* Antenna ID */
1986         le32 parent_tsf; /* Parent TSF */
1987         u8 variable[0]; /* Optional Subelements */
1988 } STRUCT_PACKED;
1989
1990 /* IEEE Std 802.11-2016, Table 9-112 - Beacon report Subelement IDs */
1991 /* IEEE P802.11-REVmd/D2.0, Table 9-130 - Optional subelement IDs for
1992  * Beacon report */
1993 #define WLAN_BEACON_REPORT_SUBELEM_FRAME_BODY   1
1994 #define WLAN_BEACON_REPORT_SUBELEM_FRAME_BODY_FRAGMENT_ID       2
1995 #define WLAN_BEACON_REPORT_SUBELEM_LAST_INDICATION      164
1996 #define WLAN_BEACON_REPORT_SUBELEM_VENDOR       221
1997
1998 /* IEEE P802.11-REVmd/D2.0, Table 9-232 - Data field format of the
1999  * Reported Frame Body Fragment ID subelement */
2000 #define REPORTED_FRAME_BODY_SUBELEM_LEN         4
2001 #define REPORTED_FRAME_BODY_MORE_FRAGMENTS      BIT(7)
2002
2003 /* IEEE P802.11-REVmd/D2.0, 9.4.2.21.7 - Beacon report  */
2004 #define BEACON_REPORT_LAST_INDICATION_SUBELEM_LEN       3
2005
2006 /* IEEE Std 802.11ad-2012 - Multi-band element */
2007 struct multi_band_ie {
2008         u8 eid; /* WLAN_EID_MULTI_BAND */
2009         u8 len;
2010         u8 mb_ctrl;
2011         u8 band_id;
2012         u8 op_class;
2013         u8 chan;
2014         u8 bssid[ETH_ALEN];
2015         le16 beacon_int;
2016         u8 tsf_offs[8];
2017         u8 mb_connection_capability;
2018         u8 fst_session_tmout;
2019         /* Optional:
2020          *   STA MAC Address
2021          *   Pairwise Cipher Suite Count
2022          *   Pairwise Cipher Suite List
2023          */
2024         u8 variable[0];
2025 } STRUCT_PACKED;
2026
2027 enum mb_ctrl_sta_role {
2028         MB_STA_ROLE_AP = 0,
2029         MB_STA_ROLE_TDLS_STA = 1,
2030         MB_STA_ROLE_IBSS_STA = 2,
2031         MB_STA_ROLE_PCP = 3,
2032         MB_STA_ROLE_NON_PCP_NON_AP = 4
2033 };
2034
2035 #define MB_CTRL_ROLE_MASK (BIT(0) | BIT(1) | BIT(2))
2036 #define MB_CTRL_ROLE(ctrl) ((u8) ((ctrl) & MB_CTRL_ROLE_MASK))
2037 #define MB_CTRL_STA_MAC_PRESENT ((u8) (BIT(3)))
2038 #define MB_CTRL_PAIRWISE_CIPHER_SUITE_PRESENT ((u8) (BIT(4)))
2039
2040 enum mb_band_id {
2041         MB_BAND_ID_WIFI_2_4GHZ = 2, /* 2.4 GHz */
2042         MB_BAND_ID_WIFI_5GHZ = 4, /* 4.9 and 5 GHz */
2043         MB_BAND_ID_WIFI_60GHZ = 5, /* 60 GHz */
2044 };
2045
2046 #define MB_CONNECTION_CAPABILITY_AP ((u8) (BIT(0)))
2047 #define MB_CONNECTION_CAPABILITY_PCP ((u8) (BIT(1)))
2048 #define MB_CONNECTION_CAPABILITY_DLS ((u8) (BIT(2)))
2049 #define MB_CONNECTION_CAPABILITY_TDLS ((u8) (BIT(3)))
2050 #define MB_CONNECTION_CAPABILITY_IBSS ((u8) (BIT(4)))
2051
2052 /* IEEE Std 802.11ad-2014 - FST Action field */
2053 enum fst_action {
2054         FST_ACTION_SETUP_REQUEST = 0,
2055         FST_ACTION_SETUP_RESPONSE = 1,
2056         FST_ACTION_TEAR_DOWN = 2,
2057         FST_ACTION_ACK_REQUEST = 3,
2058         FST_ACTION_ACK_RESPONSE = 4,
2059         FST_ACTION_ON_CHANNEL_TUNNEL = 5,
2060 };
2061
2062 /* IEEE Std 802.11ac-2013, Annex C - dot11PHYType */
2063 enum phy_type {
2064         PHY_TYPE_UNSPECIFIED = 0,
2065         PHY_TYPE_FHSS = 1,
2066         PHY_TYPE_DSSS = 2,
2067         PHY_TYPE_IRBASEBAND = 3,
2068         PHY_TYPE_OFDM = 4,
2069         PHY_TYPE_HRDSSS = 5,
2070         PHY_TYPE_ERP = 6,
2071         PHY_TYPE_HT = 7,
2072         PHY_TYPE_DMG = 8,
2073         PHY_TYPE_VHT = 9,
2074 };
2075
2076 /* IEEE P802.11-REVmc/D5.0, 9.4.2.37 - Neighbor Report element */
2077 /* BSSID Information Field */
2078 #define NEI_REP_BSSID_INFO_AP_NOT_REACH BIT(0)
2079 #define NEI_REP_BSSID_INFO_AP_UNKNOWN_REACH BIT(1)
2080 #define NEI_REP_BSSID_INFO_AP_REACHABLE (BIT(0) | BIT(1))
2081 #define NEI_REP_BSSID_INFO_SECURITY BIT(2)
2082 #define NEI_REP_BSSID_INFO_KEY_SCOPE BIT(3)
2083 #define NEI_REP_BSSID_INFO_SPECTRUM_MGMT BIT(4)
2084 #define NEI_REP_BSSID_INFO_QOS BIT(5)
2085 #define NEI_REP_BSSID_INFO_APSD BIT(6)
2086 #define NEI_REP_BSSID_INFO_RM BIT(7)
2087 #define NEI_REP_BSSID_INFO_DELAYED_BA BIT(8)
2088 #define NEI_REP_BSSID_INFO_IMM_BA BIT(9)
2089 #define NEI_REP_BSSID_INFO_MOBILITY_DOMAIN BIT(10)
2090 #define NEI_REP_BSSID_INFO_HT BIT(11)
2091 #define NEI_REP_BSSID_INFO_VHT BIT(12)
2092 #define NEI_REP_BSSID_INFO_FTM BIT(13)
2093
2094 /*
2095  * IEEE P802.11-REVmc/D5.0 Table 9-152 - HT/VHT Operation Information
2096  * subfields.
2097  * Note: These definitions are not the same as other CHANWIDTH_*.
2098  */
2099 enum nr_chan_width {
2100         NR_CHAN_WIDTH_20 = 0,
2101         NR_CHAN_WIDTH_40 = 1,
2102         NR_CHAN_WIDTH_80 = 2,
2103         NR_CHAN_WIDTH_160 = 3,
2104         NR_CHAN_WIDTH_80P80 = 4,
2105 };
2106
2107 struct ieee80211_he_capabilities {
2108         u8 he_mac_capab_info[6];
2109         u8 he_phy_capab_info[11];
2110         /* Followed by 4, 8, or 12 octets of Supported HE-MCS And NSS Set field
2111         * and optional variable length PPE Thresholds field. */
2112         u8 optional[];
2113 } STRUCT_PACKED;
2114
2115 struct ieee80211_he_operation {
2116         le32 he_oper_params; /* HE Operation Parameters[3] and
2117                               * BSS Color Information[1] */
2118         le16 he_mcs_nss_set;
2119         u8 vht_op_info_chwidth;
2120         u8 vht_op_info_chan_center_freq_seg0_idx;
2121         u8 vht_op_info_chan_center_freq_seg1_idx;
2122         /* Followed by conditional MaxBSSID Indicator subfield (u8) */
2123 } STRUCT_PACKED;
2124
2125 /*
2126  * IEEE P802.11ax/D4.0, 9.4.2.246 Spatial Reuse Parameter Set element
2127  */
2128 struct ieee80211_spatial_reuse {
2129         u8 sr_ctrl; /* SR Control */
2130         /* Up to 19 octets of parameters:
2131          * Non-SRG OBSS PD Max Offset[0 or 1]
2132          * SRG OBSS PD Min Offset[0 or 1]
2133          * SRG OBSS PD Max Offset[0 or 1]
2134          * SRG BSS Color Bitmap[0 or 8]
2135          * SRG Partial BSSID Bitmap[0 or 8]
2136          */
2137         u8 params[19];
2138 } STRUCT_PACKED;
2139
2140 /* HE Capabilities Information defines */
2141
2142 #define HE_PHYCAP_CHANNEL_WIDTH_SET_IDX         0
2143 #define HE_PHYCAP_CHANNEL_WIDTH_MASK            ((u8) (BIT(1) | BIT(2) | \
2144                                                       BIT(3) | BIT(4)))
2145 #define HE_PHYCAP_CHANNEL_WIDTH_SET_40MHZ_IN_2G         ((u8) BIT(1))
2146 #define HE_PHYCAP_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G   ((u8) BIT(2))
2147 #define HE_PHYCAP_CHANNEL_WIDTH_SET_160MHZ_IN_5G        ((u8) BIT(3))
2148 #define HE_PHYCAP_CHANNEL_WIDTH_SET_80PLUS80MHZ_IN_5G   ((u8) BIT(4))
2149
2150 #define HE_PHYCAP_SU_BEAMFORMER_CAPAB_IDX       3
2151 #define HE_PHYCAP_SU_BEAMFORMER_CAPAB           ((u8) BIT(7))
2152 #define HE_PHYCAP_SU_BEAMFORMEE_CAPAB_IDX       4
2153 #define HE_PHYCAP_SU_BEAMFORMEE_CAPAB           ((u8) BIT(0))
2154 #define HE_PHYCAP_MU_BEAMFORMER_CAPAB_IDX       4
2155 #define HE_PHYCAP_MU_BEAMFORMER_CAPAB           ((u8) BIT(1))
2156
2157 #define HE_PHYCAP_PPE_THRESHOLD_PRESENT_IDX     6
2158 #define HE_PHYCAP_PPE_THRESHOLD_PRESENT         ((u8) BIT(7))
2159
2160 /* HE PPE Threshold define */
2161 #define HE_PPE_THRES_RU_INDEX_BITMASK_MASK      0xf
2162 #define HE_PPE_THRES_RU_INDEX_BITMASK_SHIFT     3
2163 #define HE_PPE_THRES_NSS_MASK                   0x7
2164
2165 /* HE Operation defines */
2166 /* HE Operation Parameters and BSS Color Information fields */
2167 #define HE_OPERATION_DFLT_PE_DURATION_MASK      ((u32) (BIT(0) | BIT(1) | \
2168                                                         BIT(2)))
2169 #define HE_OPERATION_DFLT_PE_DURATION_OFFSET    0
2170 #define HE_OPERATION_TWT_REQUIRED               ((u32) BIT(3))
2171 #define HE_OPERATION_RTS_THRESHOLD_MASK ((u32) (BIT(4) | BIT(5) | \
2172                                                 BIT(6) | BIT(7) | \
2173                                                 BIT(8) | BIT(9) | \
2174                                                 BIT(10) | BIT(11) | \
2175                                                 BIT(12) | BIT(13)))
2176 #define HE_OPERATION_RTS_THRESHOLD_OFFSET       4
2177 #define HE_OPERATION_BSS_COLOR_MASK             ((u32) (BIT(24) | BIT(25) | \
2178                                                         BIT(26) | BIT(27) | \
2179                                                         BIT(28) | BIT(29)))
2180 #define HE_OPERATION_PARTIAL_BSS_COLOR          ((u32) BIT(30))
2181 #define HE_OPERATION_BSS_COLOR_DISABLED         ((u32) BIT(31))
2182 #define HE_OPERATION_BSS_COLOR_OFFSET           24
2183
2184 /* Spatial Reuse defines */
2185 #define SPATIAL_REUSE_SRP_DISALLOWED            BIT(0)
2186 #define SPATIAL_REUSE_NON_SRG_OBSS_PD_SR_DISALLOWED     BIT(1)
2187 #define SPATIAL_REUSE_NON_SRG_OFFSET_PRESENT    BIT(2)
2188 #define SPATIAL_REUSE_SRG_INFORMATION_PRESENT   BIT(3)
2189 #define SPATIAL_REUSE_HESIGA_SR_VAL15_ALLOWED   BIT(4)
2190
2191 struct ieee80211_he_mu_edca_parameter_set {
2192         u8 he_qos_info;
2193         u8 he_mu_ac_be_param[3];
2194         u8 he_mu_ac_bk_param[3];
2195         u8 he_mu_ac_vi_param[3];
2196         u8 he_mu_ac_vo_param[3];
2197 } STRUCT_PACKED;
2198
2199 /* HE MU AC parameter record field format */
2200 /* ACI/AIFSN */
2201 #define HE_MU_AC_PARAM_ACI_IDX 0
2202 #define HE_MU_AC_PARAM_AIFSN ((u8) (BIT(0) | BIT(1) | BIT(2) | BIT(3)))
2203 #define HE_MU_AC_PARAM_ACM ((u8) BIT(4))
2204 #define HE_MU_AC_PARAM_ACI ((u8) (BIT(5) | BIT(6)))
2205 /* B7: Reserved */
2206
2207 /* ECWmin/ECWmax */
2208 #define HE_MU_AC_PARAM_ECW_IDX 1
2209 #define HE_MU_AC_PARAM_ECWMIN ((u8) (BIT(0) | BIT(1) | BIT(2) | BIT(3)))
2210 #define HE_MU_AC_PARAM_ECWMAX ((u8) (BIT(4) | BIT(5) | BIT(6) | BIT(7)))
2211
2212 /* MU EDCA Timer */
2213 #define HE_MU_AC_PARAM_TIMER_IDX 2
2214
2215 /* HE QoS Info field */
2216 #define HE_QOS_INFO_EDCA_PARAM_SET_COUNT ((u8) (BIT(0) | BIT(1) | \
2217                                                 BIT(2) | BIT(3)))
2218 #define HE_QOS_INFO_Q_ACK ((u8) (BIT(4)))
2219 #define HE_QOS_INFO_QUEUE_REQUEST ((u8) (BIT(5)))
2220 #define HE_QOS_INFO_TXOP_REQUEST ((u8) (BIT(6)))
2221 /* B7: Reserved if sent by an AP; More Data Ack if sent by a non-AP STA */
2222 #define HE_QOS_INFO_MORE_DATA_ACK ((u8) (BIT(7)))
2223
2224 /* DPP Public Action frame identifiers - OUI_WFA */
2225 #define DPP_OUI_TYPE 0x1A
2226
2227 #endif /* IEEE802_11_DEFS_H */