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