Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cmd.h
Go to the documentation of this file.
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 <[email protected]>
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 wl12xx_cmd_role_enable(struct wl1271 *wl, u8 *addr, u8 role_type,
35  u8 *role_id);
36 int wl12xx_cmd_role_disable(struct wl1271 *wl, u8 *role_id);
37 int wl12xx_cmd_role_start_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
38 int wl12xx_cmd_role_stop_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
39 int wl12xx_cmd_role_start_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
40 int wl12xx_cmd_role_stop_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
41 int wl12xx_cmd_role_start_ibss(struct wl1271 *wl, struct wl12xx_vif *wlvif);
42 int wl12xx_start_dev(struct wl1271 *wl, struct wl12xx_vif *wlvif);
43 int wl12xx_stop_dev(struct wl1271 *wl, struct wl12xx_vif *wlvif);
44 int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer);
45 int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len);
46 int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len);
47 int wl1271_cmd_data_path(struct wl1271 *wl, bool enable);
48 int wl1271_cmd_ps_mode(struct wl1271 *wl, struct wl12xx_vif *wlvif,
49  u8 ps_mode, u16 auto_ps_timeout);
50 int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer,
51  size_t len);
52 int wl1271_cmd_template_set(struct wl1271 *wl, u8 role_id,
53  u16 template_id, void *buf, size_t buf_len,
54  int index, u32 rates);
55 int wl12xx_cmd_build_null_data(struct wl1271 *wl, struct wl12xx_vif *wlvif);
56 int wl1271_cmd_build_ps_poll(struct wl1271 *wl, struct wl12xx_vif *wlvif,
57  u16 aid);
58 int wl12xx_cmd_build_probe_req(struct wl1271 *wl, struct wl12xx_vif *wlvif,
59  u8 role_id, u8 band,
60  const u8 *ssid, size_t ssid_len,
61  const u8 *ie, size_t ie_len, bool sched_scan);
63  struct wl12xx_vif *wlvif,
64  struct sk_buff *skb);
65 int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, struct wl12xx_vif *wlvif);
66 int wl1271_build_qos_null_data(struct wl1271 *wl, struct ieee80211_vif *vif);
68  struct wl12xx_vif *wlvif);
69 int wl12xx_cmd_set_default_wep_key(struct wl1271 *wl, u8 id, u8 hlid);
70 int wl1271_cmd_set_sta_key(struct wl1271 *wl, struct wl12xx_vif *wlvif,
71  u16 action, u8 id, u8 key_type,
72  u8 key_size, const u8 *key, const u8 *addr,
73  u32 tx_seq_32, u16 tx_seq_16);
74 int wl1271_cmd_set_ap_key(struct wl1271 *wl, struct wl12xx_vif *wlvif,
75  u16 action, u8 id, u8 key_type,
76  u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32,
77  u16 tx_seq_16);
78 int wl12xx_cmd_set_peer_state(struct wl1271 *wl, u8 hlid);
79 int wl12xx_roc(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 role_id);
80 int wl12xx_croc(struct wl1271 *wl, u8 role_id);
81 int wl12xx_cmd_add_peer(struct wl1271 *wl, struct wl12xx_vif *wlvif,
82  struct ieee80211_sta *sta, u8 hlid);
83 int wl12xx_cmd_remove_peer(struct wl1271 *wl, u8 hlid);
84 int wl12xx_cmd_config_fwlog(struct wl1271 *wl);
85 int wl12xx_cmd_start_fwlog(struct wl1271 *wl);
86 int wl12xx_cmd_stop_fwlog(struct wl1271 *wl);
87 int wl12xx_cmd_channel_switch(struct wl1271 *wl,
88  struct wl12xx_vif *wlvif,
89  struct ieee80211_channel_switch *ch_switch);
91 int wl12xx_allocate_link(struct wl1271 *wl, struct wl12xx_vif *wlvif,
92  u8 *hlid);
93 void wl12xx_free_link(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 *hlid);
94 
96  CMD_INTERROGATE = 1, /* use this to read information elements */
97  CMD_CONFIGURE = 2, /* use this to write information elements */
102  CMD_SCAN = 7,
108  CMD_TEST = 13,
112 
121  CMD_DEBUG = 25,
133 
134  /* Access point commands */
137 
138  /* Role API */
143 
144  /* DFS */
147 
148  /* WIFI Direct */
152  CMD_NOP = 48,
154 
155  MAX_COMMAND_ID = 0xFFFF,
156 };
157 
158 #define MAX_CMD_PARAMS 572
159 
160 enum cmd_templ {
172  CMD_TEMPL_BAR, /* for firmware internal use only */
174  * For CTS-to-self (FastCTS) mechanism
175  * for BT/WLAN coexistence (SoftGemini). */
182 
184 };
185 
186 /* unit ms */
187 #define WL1271_COMMAND_TIMEOUT 2000
188 #define WL1271_CMD_TEMPL_DFLT_SIZE 252
189 #define WL1271_CMD_TEMPL_MAX_SIZE 512
190 #define WL1271_EVENT_TIMEOUT 1500
191 
195  /* payload */
196  u8 data[0];
197 } __packed;
198 
199 #define WL1271_CMD_MAX_PARAMS 572
200 
204 } __packed;
205 
206 enum {
219  CMD_STATUS_TIMEOUT = 21, /* Driver internal use.*/
220  CMD_STATUS_FW_RESET = 22, /* Driver internal use.*/
224 };
225 
226 #define CMDMBOX_HEADER_LEN 4
227 #define CMDMBOX_INFO_ELEM_HEADER_LEN 4
228 
229 enum {
234 };
235 
236 #define WL1271_JOIN_CMD_CTRL_TX_FLUSH 0x80 /* Firmware flushes all Tx */
237 #define WL1271_JOIN_CMD_TX_SESSION_OFFSET 1
238 #define WL1271_JOIN_CMD_BSS_TYPE_5GHZ 0x10
239 
242 
246 } __packed;
247 
250 
253 } __packed;
254 
262 };
263 
269 };
270 
273 
277 
278  /* enum wlcore_channel_type */
280 
281  union {
282  struct {
286  } __packed device;
287  /* sta & p2p_cli use the same struct */
288  struct {
290  u8 hlid; /* data hlid */
291  u8 session;
292  __le32 remote_rates; /* remote supported rates */
293 
294  /*
295  * The target uses this field to determine the rate at
296  * which to transmit control frame responses (such as
297  * ACK or CTS frames).
298  */
300  __le32 local_rates; /* local supported rates */
301 
305 
306  __le16 beacon_interval; /* in TBTTs */
307  } __packed sta;
308  struct {
309  u8 bssid[ETH_ALEN];
310  u8 hlid; /* data hlid */
312  __le32 remote_rates; /* remote supported rates */
313 
315  __le32 local_rates; /* local supported rates */
316 
317  u8 ssid_type;
318  u8 ssid_len;
320 
321  __le16 beacon_interval; /* in TBTTs */
322 
323  u8 padding_1[4];
324  } __packed ibss;
325  /* ap & p2p_go use the same struct */
326  struct {
327  __le16 aging_period; /* in secs */
328  u8 beacon_expiry; /* in ms */
330  /* The host link id for the AP's global queue */
332  /* The host link id for the AP's broadcast queue */
334 
335  __le16 beacon_interval; /* in TBTTs */
336 
338  __le32 local_rates; /* local supported rates */
339 
341 
342  u8 ssid_type;
343  u8 ssid_len;
345 
347 
348  u8 padding_1[4];
349  } __packed ap;
350  };
351 } __packed;
352 
355 
357  u8 disc_type; /* only STA and P2P_CLI */
358  __le16 reason; /* only STA and P2P_CLI */
359 } __packed;
360 
361 struct cmd_enabledisable_path {
363 
364  u8 channel;
365  u8 padding[3];
366 } __packed;
367 
368 #define WL1271_RATE_AUTOMATIC 0
369 
372 
376  u8 index; /* relevant only for KLV_TEMPLATE type */
378 
384 
386 } __packed;
387 
388 #define TIM_ELE_ID 5
389 #define PARTIAL_VBM_MAX 251
390 
391 struct wl1271_tim {
397  u8 pvb_field[PARTIAL_VBM_MAX]; /* Partial Virtual Bitmap */
398 } __packed;
399 
401  STATION_AUTO_PS_MODE, /* Dynamic Power Save */
404 };
405 
408 
410  u8 ps_mode; /* STATION_* */
412 } __packed;
413 
414 /* HW encryption keys */
415 #define NUM_ACCESS_CATEGORIES_COPY 4
416 
421  MAX_KEY_ACTION = 0xffff,
422 };
423 
428 };
429 
431  KEY_NONE = 0,
432  KEY_WEP = 1,
433  KEY_TKIP = 2,
434  KEY_AES = 3,
435  KEY_GEM = 4,
436 };
437 
440 
441  /*
442  * Indicates whether the HLID is a unicast key set
443  * or broadcast key set. A special value 0xFF is
444  * used to indicate that the HLID is on WEP-default
445  * (multi-hlids). of type wl1271_cmd_lid_key_type.
446  */
448 
449  /*
450  * In WEP-default network (hlid == 0xFF) used to
451  * indicate which network STA/IBSS/AP role should be
452  * changed
453  */
455 
456  /*
457  * Key ID - For TKIP and AES key types, this field
458  * indicates the value that should be inserted into
459  * the KeyID field of frames transmitted using this
460  * key entry. For broadcast keys the index use as a
461  * marker for TX/RX key.
462  * For WEP default network (HLID=0xFF), this field
463  * indicates the ID of the key to add or remove.
464  */
467 
468  /* key_action_e */
470 
471  /* key size in bytes */
473 
474  /* key_type_e */
476 
477  /* This field holds the security key data to add to the STA table */
481 } __packed;
482 
486 } __packed;
487 
492 };
493 
494 #define WL1271_PD_REFERENCE_POINT_BAND_B_G 0
495 
496 /*
497  * There are three types of disconnections:
498  *
499  * DISCONNECT_IMMEDIATE: the fw doesn't send any frames
500  * DISCONNECT_DEAUTH: the fw generates a DEAUTH request with the reason
501  * we have passed
502  * DISCONNECT_DISASSOC: the fw generates a DESASSOC request with the reason
503  * we have passed
504  */
509 };
510 
511 #define WL1271_CMD_STA_STATE_CONNECTED 1
512 
515 
519 } __packed;
520 
523 
528 };
529 
532 
535 };
536 
541 };
542 
548 };
549 
552 
562 } __packed;
563 
566 
571 } __packed;
572 
573 /*
574  * Continuous mode - packets are transferred to the host periodically
575  * via the data path.
576  * On demand - Log messages are stored in a cyclic buffer in the
577  * firmware, and only transferred to the host when explicitly requested
578  */
582 };
583 
584 /* Include/exclude timestamps from the log messages */
588 };
589 
590 /*
591  * Logs can be routed to the debug pinouts (where available), to the host bus
592  * (SDIO/SPI), or dropped
593  */
598 };
599 
602 
603  /* See enum wl12xx_fwlogger_log_mode */
605 
606  /* Minimum log level threshold */
608 
609  /* Include/exclude timestamps from the log messages */
611 
612  /* See enum wl1271_fwlogger_output */
614 
615  /* Regulates the frequency of log messages */
617 
619 } __packed;
620 
623 } __packed;
624 
627 } __packed;
628 
631 
633 
634  /* The new serving channel */
636  /* Relative time of the serving channel switch in TBTT units */
638  /* Stop the role TX, should expect it after radar detection */
640  /* The target channel tx status 1-stopped 0-open*/
642 
644 } __packed;
645 
648 } __packed;
649 
650 /* Used to check radio status after calibration */
651 #define MAX_TLV_LENGTH 500
652 #define TEST_CMD_P2G_CAL 2 /* TX BiP */
653 
656 
658 
664 
666 
669 } __packed;
670 
671 #endif /* __WL1271_CMD_H__ */