xref: /openbmc/linux/drivers/net/wireless/ti/wlcore/cmd.h (revision f35e839a)
1 /*
2  * This file is part of wl1271
3  *
4  * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
5  * Copyright (C) 2009 Nokia Corporation
6  *
7  * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * version 2 as published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24 
25 #ifndef __CMD_H__
26 #define __CMD_H__
27 
28 #include "wlcore.h"
29 
30 struct acx_header;
31 
32 int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
33 		    size_t res_len);
34 int wlcore_cmd_send_failsafe(struct wl1271 *wl, u16 id, void *buf, size_t len,
35 			     size_t res_len, unsigned long valid_rets);
36 int wl12xx_cmd_role_enable(struct wl1271 *wl, u8 *addr, u8 role_type,
37 			   u8 *role_id);
38 int wl12xx_cmd_role_disable(struct wl1271 *wl, u8 *role_id);
39 int wl12xx_cmd_role_start_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
40 int wl12xx_cmd_role_stop_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
41 int wl12xx_cmd_role_start_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
42 int wl12xx_cmd_role_stop_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
43 int wl12xx_cmd_role_start_ibss(struct wl1271 *wl, struct wl12xx_vif *wlvif);
44 int wl12xx_start_dev(struct wl1271 *wl, struct wl12xx_vif *wlvif,
45 		     enum ieee80211_band band, int channel);
46 int wl12xx_stop_dev(struct wl1271 *wl, struct wl12xx_vif *wlvif);
47 int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer);
48 int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len);
49 int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len);
50 int wlcore_cmd_configure_failsafe(struct wl1271 *wl, u16 id, void *buf,
51 				  size_t len, unsigned long valid_rets);
52 int wl1271_cmd_data_path(struct wl1271 *wl, bool enable);
53 int wl1271_cmd_ps_mode(struct wl1271 *wl, struct wl12xx_vif *wlvif,
54 		       u8 ps_mode, u16 auto_ps_timeout);
55 int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer,
56 			   size_t len);
57 int wl1271_cmd_template_set(struct wl1271 *wl, u8 role_id,
58 			    u16 template_id, void *buf, size_t buf_len,
59 			    int index, u32 rates);
60 int wl12xx_cmd_build_null_data(struct wl1271 *wl, struct wl12xx_vif *wlvif);
61 int wl1271_cmd_build_ps_poll(struct wl1271 *wl, struct wl12xx_vif *wlvif,
62 			     u16 aid);
63 int wl12xx_cmd_build_probe_req(struct wl1271 *wl, struct wl12xx_vif *wlvif,
64 			       u8 role_id, u8 band,
65 			       const u8 *ssid, size_t ssid_len,
66 			       const u8 *ie, size_t ie_len, bool sched_scan);
67 struct sk_buff *wl1271_cmd_build_ap_probe_req(struct wl1271 *wl,
68 					      struct wl12xx_vif *wlvif,
69 					      struct sk_buff *skb);
70 int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, struct wl12xx_vif *wlvif);
71 int wl1271_build_qos_null_data(struct wl1271 *wl, struct ieee80211_vif *vif);
72 int wl12xx_cmd_build_klv_null_data(struct wl1271 *wl,
73 				   struct wl12xx_vif *wlvif);
74 int wl12xx_cmd_set_default_wep_key(struct wl1271 *wl, u8 id, u8 hlid);
75 int wl1271_cmd_set_sta_key(struct wl1271 *wl, struct wl12xx_vif *wlvif,
76 			   u16 action, u8 id, u8 key_type,
77 			   u8 key_size, const u8 *key, const u8 *addr,
78 			   u32 tx_seq_32, u16 tx_seq_16);
79 int wl1271_cmd_set_ap_key(struct wl1271 *wl, struct wl12xx_vif *wlvif,
80 			  u16 action, u8 id, u8 key_type,
81 			  u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32,
82 			  u16 tx_seq_16);
83 int wl12xx_cmd_set_peer_state(struct wl1271 *wl, struct wl12xx_vif *wlvif,
84 			      u8 hlid);
85 int wl12xx_roc(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 role_id,
86 	       enum ieee80211_band band, u8 channel);
87 int wl12xx_croc(struct wl1271 *wl, u8 role_id);
88 int wl12xx_cmd_add_peer(struct wl1271 *wl, struct wl12xx_vif *wlvif,
89 			struct ieee80211_sta *sta, u8 hlid);
90 int wl12xx_cmd_remove_peer(struct wl1271 *wl, u8 hlid);
91 void wlcore_set_pending_regdomain_ch(struct wl1271 *wl, u16 channel,
92 				     enum ieee80211_band band);
93 int wlcore_cmd_regdomain_config_locked(struct wl1271 *wl);
94 int wl12xx_cmd_config_fwlog(struct wl1271 *wl);
95 int wl12xx_cmd_start_fwlog(struct wl1271 *wl);
96 int wl12xx_cmd_stop_fwlog(struct wl1271 *wl);
97 int wl12xx_cmd_channel_switch(struct wl1271 *wl,
98 			      struct wl12xx_vif *wlvif,
99 			      struct ieee80211_channel_switch *ch_switch);
100 int wl12xx_cmd_stop_channel_switch(struct wl1271 *wl,
101 				   struct wl12xx_vif *wlvif);
102 int wl12xx_allocate_link(struct wl1271 *wl, struct wl12xx_vif *wlvif,
103 			 u8 *hlid);
104 void wl12xx_free_link(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 *hlid);
105 int wlcore_cmd_wait_for_event_or_timeout(struct wl1271 *wl,
106 					 u32 mask, bool *timeout);
107 
108 enum wl1271_commands {
109 	CMD_INTERROGATE	= 1, /* use this to read information elements */
110 	CMD_CONFIGURE	= 2, /* use this to write information elements */
111 	CMD_ENABLE_RX	= 3,
112 	CMD_ENABLE_TX	= 4,
113 	CMD_DISABLE_RX	= 5,
114 	CMD_DISABLE_TX	= 6,
115 	CMD_SCAN	= 7,
116 	CMD_STOP_SCAN	= 8,
117 	CMD_SET_KEYS	= 9,
118 	CMD_READ_MEMORY	= 10,
119 	CMD_WRITE_MEMORY	= 11,
120 	CMD_SET_TEMPLATE	= 12,
121 	CMD_TEST		= 13,
122 	CMD_NOISE_HIST		= 14,
123 	CMD_QUIET_ELEMENT_SET_STATE = 15,
124 	CMD_SET_BCN_MODE	= 16,
125 
126 	CMD_MEASUREMENT		= 17,
127 	CMD_STOP_MEASUREMENT	= 18,
128 	CMD_SET_PS_MODE		= 19,
129 	CMD_CHANNEL_SWITCH	= 20,
130 	CMD_STOP_CHANNEL_SWICTH = 21,
131 	CMD_AP_DISCOVERY	= 22,
132 	CMD_STOP_AP_DISCOVERY	= 23,
133 	CMD_HEALTH_CHECK	= 24,
134 	CMD_DEBUG		= 25,
135 	CMD_TRIGGER_SCAN_TO	= 26,
136 	CMD_CONNECTION_SCAN_CFG	= 27,
137 	CMD_CONNECTION_SCAN_SSID_CFG	= 28,
138 	CMD_START_PERIODIC_SCAN	= 29,
139 	CMD_STOP_PERIODIC_SCAN	= 30,
140 	CMD_SET_PEER_STATE	= 31,
141 	CMD_REMAIN_ON_CHANNEL	= 32,
142 	CMD_CANCEL_REMAIN_ON_CHANNEL	= 33,
143 	CMD_CONFIG_FWLOGGER		= 34,
144 	CMD_START_FWLOGGER			= 35,
145 	CMD_STOP_FWLOGGER			= 36,
146 
147 	/* Access point commands */
148 	CMD_ADD_PEER		= 37,
149 	CMD_REMOVE_PEER		= 38,
150 
151 	/* Role API */
152 	CMD_ROLE_ENABLE		= 39,
153 	CMD_ROLE_DISABLE	= 40,
154 	CMD_ROLE_START		= 41,
155 	CMD_ROLE_STOP		= 42,
156 
157 	/* DFS */
158 	CMD_START_RADAR_DETECTION	= 43,
159 	CMD_STOP_RADAR_DETECTION	= 44,
160 
161 	/* WIFI Direct */
162 	CMD_WFD_START_DISCOVERY	= 45,
163 	CMD_WFD_STOP_DISCOVERY	= 46,
164 	CMD_WFD_ATTRIBUTE_CONFIG	= 47,
165 	CMD_GENERIC_CFG			= 48,
166 	CMD_NOP				= 49,
167 
168 	/* start of 18xx specific commands */
169 	CMD_DFS_CHANNEL_CONFIG		= 60,
170 
171 	MAX_COMMAND_ID = 0xFFFF,
172 };
173 
174 #define MAX_CMD_PARAMS 572
175 
176 enum cmd_templ {
177 	CMD_TEMPL_NULL_DATA = 0,
178 	CMD_TEMPL_BEACON,
179 	CMD_TEMPL_CFG_PROBE_REQ_2_4,
180 	CMD_TEMPL_CFG_PROBE_REQ_5,
181 	CMD_TEMPL_PROBE_RESPONSE,
182 	CMD_TEMPL_QOS_NULL_DATA,
183 	CMD_TEMPL_PS_POLL,
184 	CMD_TEMPL_KLV,
185 	CMD_TEMPL_DISCONNECT,
186 	CMD_TEMPL_APP_PROBE_REQ_2_4_LEGACY,
187 	CMD_TEMPL_APP_PROBE_REQ_5_LEGACY,
188 	CMD_TEMPL_BAR,           /* for firmware internal use only */
189 	CMD_TEMPL_CTS,           /*
190 				  * For CTS-to-self (FastCTS) mechanism
191 				  * for BT/WLAN coexistence (SoftGemini). */
192 	CMD_TEMPL_AP_BEACON,
193 	CMD_TEMPL_AP_PROBE_RESPONSE,
194 	CMD_TEMPL_ARP_RSP,
195 	CMD_TEMPL_DEAUTH_AP,
196 	CMD_TEMPL_TEMPORARY,
197 	CMD_TEMPL_LINK_MEASUREMENT_REPORT,
198 	CMD_TEMPL_PROBE_REQ_2_4_PERIODIC,
199 	CMD_TEMPL_PROBE_REQ_5_PERIODIC,
200 
201 	CMD_TEMPL_MAX = 0xff
202 };
203 
204 /* unit ms */
205 #define WL1271_COMMAND_TIMEOUT     2000
206 #define WL1271_CMD_TEMPL_DFLT_SIZE 252
207 #define WL1271_CMD_TEMPL_MAX_SIZE  512
208 #define WL1271_EVENT_TIMEOUT       1500
209 
210 struct wl1271_cmd_header {
211 	__le16 id;
212 	__le16 status;
213 	/* payload */
214 	u8 data[0];
215 } __packed;
216 
217 #define WL1271_CMD_MAX_PARAMS 572
218 
219 struct wl1271_command {
220 	struct wl1271_cmd_header header;
221 	u8  parameters[WL1271_CMD_MAX_PARAMS];
222 } __packed;
223 
224 enum {
225 	CMD_MAILBOX_IDLE		=  0,
226 	CMD_STATUS_SUCCESS		=  1,
227 	CMD_STATUS_UNKNOWN_CMD		=  2,
228 	CMD_STATUS_UNKNOWN_IE		=  3,
229 	CMD_STATUS_REJECT_MEAS_SG_ACTIVE	= 11,
230 	CMD_STATUS_RX_BUSY		= 13,
231 	CMD_STATUS_INVALID_PARAM		= 14,
232 	CMD_STATUS_TEMPLATE_TOO_LARGE		= 15,
233 	CMD_STATUS_OUT_OF_MEMORY		= 16,
234 	CMD_STATUS_STA_TABLE_FULL		= 17,
235 	CMD_STATUS_RADIO_ERROR		= 18,
236 	CMD_STATUS_WRONG_NESTING		= 19,
237 	CMD_STATUS_TIMEOUT		= 21, /* Driver internal use.*/
238 	CMD_STATUS_FW_RESET		= 22, /* Driver internal use.*/
239 	CMD_STATUS_TEMPLATE_OOM		= 23,
240 	CMD_STATUS_NO_RX_BA_SESSION	= 24,
241 
242 	MAX_COMMAND_STATUS
243 };
244 
245 #define CMDMBOX_HEADER_LEN 4
246 #define CMDMBOX_INFO_ELEM_HEADER_LEN 4
247 
248 enum {
249 	BSS_TYPE_IBSS = 0,
250 	BSS_TYPE_STA_BSS = 2,
251 	BSS_TYPE_AP_BSS = 3,
252 	MAX_BSS_TYPE = 0xFF
253 };
254 
255 #define WL1271_JOIN_CMD_CTRL_TX_FLUSH     0x80 /* Firmware flushes all Tx */
256 #define WL1271_JOIN_CMD_TX_SESSION_OFFSET 1
257 #define WL1271_JOIN_CMD_BSS_TYPE_5GHZ 0x10
258 
259 struct wl12xx_cmd_role_enable {
260 	struct wl1271_cmd_header header;
261 
262 	u8 role_id;
263 	u8 role_type;
264 	u8 mac_address[ETH_ALEN];
265 } __packed;
266 
267 struct wl12xx_cmd_role_disable {
268 	struct wl1271_cmd_header header;
269 
270 	u8 role_id;
271 	u8 padding[3];
272 } __packed;
273 
274 enum wlcore_band {
275 	WLCORE_BAND_2_4GHZ		= 0,
276 	WLCORE_BAND_5GHZ		= 1,
277 	WLCORE_BAND_JAPAN_4_9_GHZ	= 2,
278 	WLCORE_BAND_DEFAULT		= WLCORE_BAND_2_4GHZ,
279 	WLCORE_BAND_INVALID		= 0x7E,
280 	WLCORE_BAND_MAX_RADIO		= 0x7F,
281 };
282 
283 enum wlcore_channel_type {
284 	WLCORE_CHAN_NO_HT,
285 	WLCORE_CHAN_HT20,
286 	WLCORE_CHAN_HT40MINUS,
287 	WLCORE_CHAN_HT40PLUS
288 };
289 
290 struct wl12xx_cmd_role_start {
291 	struct wl1271_cmd_header header;
292 
293 	u8 role_id;
294 	u8 band;
295 	u8 channel;
296 
297 	/* enum wlcore_channel_type */
298 	u8 channel_type;
299 
300 	union {
301 		struct {
302 			u8 hlid;
303 			u8 session;
304 			u8 padding_1[54];
305 		} __packed device;
306 		/* sta & p2p_cli use the same struct */
307 		struct {
308 			u8 bssid[ETH_ALEN];
309 			u8 hlid; /* data hlid */
310 			u8 session;
311 			__le32 remote_rates; /* remote supported rates */
312 
313 			/*
314 			 * The target uses this field to determine the rate at
315 			 * which to transmit control frame responses (such as
316 			 * ACK or CTS frames).
317 			 */
318 			__le32 basic_rate_set;
319 			__le32 local_rates; /* local supported rates */
320 
321 			u8 ssid_type;
322 			u8 ssid_len;
323 			u8 ssid[IEEE80211_MAX_SSID_LEN];
324 
325 			__le16 beacon_interval; /* in TBTTs */
326 		} __packed sta;
327 		struct {
328 			u8 bssid[ETH_ALEN];
329 			u8 hlid; /* data hlid */
330 			u8 dtim_interval;
331 			__le32 remote_rates; /* remote supported rates */
332 
333 			__le32 basic_rate_set;
334 			__le32 local_rates; /* local supported rates */
335 
336 			u8 ssid_type;
337 			u8 ssid_len;
338 			u8 ssid[IEEE80211_MAX_SSID_LEN];
339 
340 			__le16 beacon_interval; /* in TBTTs */
341 
342 			u8 padding_1[4];
343 		} __packed ibss;
344 		/* ap & p2p_go use the same struct */
345 		struct {
346 			__le16 aging_period; /* in secs */
347 			u8 beacon_expiry; /* in ms */
348 			u8 bss_index;
349 			/* The host link id for the AP's global queue */
350 			u8 global_hlid;
351 			/* The host link id for the AP's broadcast queue */
352 			u8 broadcast_hlid;
353 
354 			__le16 beacon_interval; /* in TBTTs */
355 
356 			__le32 basic_rate_set;
357 			__le32 local_rates; /* local supported rates */
358 
359 			u8 dtim_interval;
360 
361 			u8 ssid_type;
362 			u8 ssid_len;
363 			u8 ssid[IEEE80211_MAX_SSID_LEN];
364 
365 			u8 reset_tsf;
366 
367 			/*
368 			 * ap supports wmm (note that there is additional
369 			 * per-sta wmm configuration)
370 			 */
371 			u8 wmm;
372 
373 			u8 bcast_session_id;
374 			u8 global_session_id;
375 			u8 padding_1[1];
376 		} __packed ap;
377 	};
378 } __packed;
379 
380 struct wl12xx_cmd_role_stop {
381 	struct wl1271_cmd_header header;
382 
383 	u8 role_id;
384 	u8 disc_type; /* only STA and P2P_CLI */
385 	__le16 reason; /* only STA and P2P_CLI */
386 } __packed;
387 
388 struct cmd_enabledisable_path {
389 	struct wl1271_cmd_header header;
390 
391 	u8 channel;
392 	u8 padding[3];
393 } __packed;
394 
395 #define WL1271_RATE_AUTOMATIC  0
396 
397 struct wl1271_cmd_template_set {
398 	struct wl1271_cmd_header header;
399 
400 	u8 role_id;
401 	u8 template_type;
402 	__le16 len;
403 	u8 index;  /* relevant only for KLV_TEMPLATE type */
404 	u8 padding[3];
405 
406 	__le32 enabled_rates;
407 	u8 short_retry_limit;
408 	u8 long_retry_limit;
409 	u8 aflags;
410 	u8 reserved;
411 
412 	u8 template_data[WL1271_CMD_TEMPL_MAX_SIZE];
413 } __packed;
414 
415 #define TIM_ELE_ID    5
416 #define PARTIAL_VBM_MAX    251
417 
418 struct wl1271_tim {
419 	u8 identity;
420 	u8 length;
421 	u8 dtim_count;
422 	u8 dtim_period;
423 	u8 bitmap_ctrl;
424 	u8 pvb_field[PARTIAL_VBM_MAX]; /* Partial Virtual Bitmap */
425 } __packed;
426 
427 enum wl1271_cmd_ps_mode {
428 	STATION_AUTO_PS_MODE,   /* Dynamic Power Save */
429 	STATION_ACTIVE_MODE,
430 	STATION_POWER_SAVE_MODE
431 };
432 
433 struct wl1271_cmd_ps_params {
434 	struct wl1271_cmd_header header;
435 
436 	u8 role_id;
437 	u8 ps_mode; /* STATION_* */
438 	u16 auto_ps_timeout;
439 } __packed;
440 
441 /* HW encryption keys */
442 #define NUM_ACCESS_CATEGORIES_COPY 4
443 
444 enum wl1271_cmd_key_action {
445 	KEY_ADD_OR_REPLACE = 1,
446 	KEY_REMOVE         = 2,
447 	KEY_SET_ID         = 3,
448 	MAX_KEY_ACTION     = 0xffff,
449 };
450 
451 enum wl1271_cmd_lid_key_type {
452 	UNICAST_LID_TYPE     = 0,
453 	BROADCAST_LID_TYPE   = 1,
454 	WEP_DEFAULT_LID_TYPE = 2
455 };
456 
457 enum wl1271_cmd_key_type {
458 	KEY_NONE = 0,
459 	KEY_WEP  = 1,
460 	KEY_TKIP = 2,
461 	KEY_AES  = 3,
462 	KEY_GEM  = 4,
463 };
464 
465 struct wl1271_cmd_set_keys {
466 	struct wl1271_cmd_header header;
467 
468 	/*
469 	 * Indicates whether the HLID is a unicast key set
470 	 * or broadcast key set. A special value 0xFF is
471 	 * used to indicate that the HLID is on WEP-default
472 	 * (multi-hlids). of type wl1271_cmd_lid_key_type.
473 	 */
474 	u8 hlid;
475 
476 	/*
477 	 * In WEP-default network (hlid == 0xFF) used to
478 	 * indicate which network STA/IBSS/AP role should be
479 	 * changed
480 	 */
481 	u8 lid_key_type;
482 
483 	/*
484 	 * Key ID - For TKIP and AES key types, this field
485 	 * indicates the value that should be inserted into
486 	 * the KeyID field of frames transmitted using this
487 	 * key entry. For broadcast keys the index use as a
488 	 * marker for TX/RX key.
489 	 * For WEP default network (HLID=0xFF), this field
490 	 * indicates the ID of the key to add or remove.
491 	 */
492 	u8 key_id;
493 	u8 reserved_1;
494 
495 	/* key_action_e */
496 	__le16 key_action;
497 
498 	/* key size in bytes */
499 	u8 key_size;
500 
501 	/* key_type_e */
502 	u8 key_type;
503 
504 	/* This field holds the security key data to add to the STA table */
505 	u8 key[MAX_KEY_SIZE];
506 	__le16 ac_seq_num16[NUM_ACCESS_CATEGORIES_COPY];
507 	__le32 ac_seq_num32[NUM_ACCESS_CATEGORIES_COPY];
508 } __packed;
509 
510 struct wl1271_cmd_test_header {
511 	u8 id;
512 	u8 padding[3];
513 } __packed;
514 
515 enum wl1271_channel_tune_bands {
516 	WL1271_CHANNEL_TUNE_BAND_2_4,
517 	WL1271_CHANNEL_TUNE_BAND_5,
518 	WL1271_CHANNEL_TUNE_BAND_4_9
519 };
520 
521 #define WL1271_PD_REFERENCE_POINT_BAND_B_G  0
522 
523 /*
524  * There are three types of disconnections:
525  *
526  * DISCONNECT_IMMEDIATE: the fw doesn't send any frames
527  * DISCONNECT_DEAUTH:    the fw generates a DEAUTH request with the reason
528  *                       we have passed
529  * DISCONNECT_DISASSOC:  the fw generates a DESASSOC request with the reason
530  *                       we have passed
531  */
532 enum wl1271_disconnect_type {
533 	DISCONNECT_IMMEDIATE,
534 	DISCONNECT_DEAUTH,
535 	DISCONNECT_DISASSOC
536 };
537 
538 #define WL1271_CMD_STA_STATE_CONNECTED  1
539 
540 struct wl12xx_cmd_set_peer_state {
541 	struct wl1271_cmd_header header;
542 
543 	u8 hlid;
544 	u8 state;
545 
546 	/*
547 	 * wmm is relevant for sta role only.
548 	 * ap role configures the per-sta wmm params in
549 	 * the add_peer command.
550 	 */
551 	u8 wmm;
552 	u8 padding[1];
553 } __packed;
554 
555 struct wl12xx_cmd_roc {
556 	struct wl1271_cmd_header header;
557 
558 	u8 role_id;
559 	u8 channel;
560 	u8 band;
561 	u8 padding;
562 };
563 
564 struct wl12xx_cmd_croc {
565 	struct wl1271_cmd_header header;
566 
567 	u8 role_id;
568 	u8 padding[3];
569 };
570 
571 enum wl12xx_ssid_type {
572 	WL12XX_SSID_TYPE_PUBLIC = 0,
573 	WL12XX_SSID_TYPE_HIDDEN = 1,
574 	WL12XX_SSID_TYPE_ANY = 2,
575 };
576 
577 enum wl1271_psd_type {
578 	WL1271_PSD_LEGACY = 0,
579 	WL1271_PSD_UPSD_TRIGGER = 1,
580 	WL1271_PSD_LEGACY_PSPOLL = 2,
581 	WL1271_PSD_SAPSD = 3
582 };
583 
584 struct wl12xx_cmd_add_peer {
585 	struct wl1271_cmd_header header;
586 
587 	u8 addr[ETH_ALEN];
588 	u8 hlid;
589 	u8 aid;
590 	u8 psd_type[NUM_ACCESS_CATEGORIES_COPY];
591 	__le32 supported_rates;
592 	u8 bss_index;
593 	u8 sp_len;
594 	u8 wmm;
595 	u8 session_id;
596 } __packed;
597 
598 struct wl12xx_cmd_remove_peer {
599 	struct wl1271_cmd_header header;
600 
601 	u8 hlid;
602 	u8 reason_opcode;
603 	u8 send_deauth_flag;
604 	u8 padding1;
605 } __packed;
606 
607 /*
608  * Continuous mode - packets are transferred to the host periodically
609  * via the data path.
610  * On demand - Log messages are stored in a cyclic buffer in the
611  * firmware, and only transferred to the host when explicitly requested
612  */
613 enum wl12xx_fwlogger_log_mode {
614 	WL12XX_FWLOG_CONTINUOUS,
615 	WL12XX_FWLOG_ON_DEMAND
616 };
617 
618 /* Include/exclude timestamps from the log messages */
619 enum wl12xx_fwlogger_timestamp {
620 	WL12XX_FWLOG_TIMESTAMP_DISABLED,
621 	WL12XX_FWLOG_TIMESTAMP_ENABLED
622 };
623 
624 /*
625  * Logs can be routed to the debug pinouts (where available), to the host bus
626  * (SDIO/SPI), or dropped
627  */
628 enum wl12xx_fwlogger_output {
629 	WL12XX_FWLOG_OUTPUT_NONE,
630 	WL12XX_FWLOG_OUTPUT_DBG_PINS,
631 	WL12XX_FWLOG_OUTPUT_HOST,
632 };
633 
634 struct wl12xx_cmd_regdomain_dfs_config {
635 	struct wl1271_cmd_header header;
636 
637 	__le32 ch_bit_map1;
638 	__le32 ch_bit_map2;
639 } __packed;
640 
641 struct wl12xx_cmd_config_fwlog {
642 	struct wl1271_cmd_header header;
643 
644 	/* See enum wl12xx_fwlogger_log_mode */
645 	u8 logger_mode;
646 
647 	/* Minimum log level threshold */
648 	u8 log_severity;
649 
650 	/* Include/exclude timestamps from the log messages */
651 	u8 timestamp;
652 
653 	/* See enum wl1271_fwlogger_output */
654 	u8 output;
655 
656 	/* Regulates the frequency of log messages */
657 	u8 threshold;
658 
659 	u8 padding[3];
660 } __packed;
661 
662 struct wl12xx_cmd_start_fwlog {
663 	struct wl1271_cmd_header header;
664 } __packed;
665 
666 struct wl12xx_cmd_stop_fwlog {
667 	struct wl1271_cmd_header header;
668 } __packed;
669 
670 struct wl12xx_cmd_stop_channel_switch {
671 	struct wl1271_cmd_header header;
672 
673 	u8 role_id;
674 	u8 padding[3];
675 } __packed;
676 
677 /* Used to check radio status after calibration */
678 #define MAX_TLV_LENGTH		500
679 #define TEST_CMD_P2G_CAL	2	/* TX BiP */
680 
681 struct wl1271_cmd_cal_p2g {
682 	struct wl1271_cmd_header header;
683 
684 	struct wl1271_cmd_test_header test;
685 
686 	__le32 ver;
687 	__le16 len;
688 	u8 buf[MAX_TLV_LENGTH];
689 	u8 type;
690 	u8 padding;
691 
692 	__le16 radio_status;
693 
694 	u8 sub_band_mask;
695 	u8 padding2;
696 } __packed;
697 
698 #endif /* __WL1271_CMD_H__ */
699