blob: d5749f5b3bf1112b75e8f8b2d59d0fab6d356685 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
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
Shahar Levi00d20102010-11-08 11:20:10 +000025#ifndef __CMD_H__
26#define __CMD_H__
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027
Shahar Levi00d20102010-11-08 11:20:10 +000028#include "wl12xx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030029
30struct acx_header;
31
Juuso Oikarinenfa867e72009-11-02 20:22:13 +020032int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
33 size_t res_len);
Luciano Coelho98b5dd52009-11-23 23:22:17 +020034int wl1271_cmd_general_parms(struct wl1271 *wl);
Shahar Levi49d750ca2011-03-06 16:32:09 +020035int wl128x_cmd_general_parms(struct wl1271 *wl);
Luciano Coelho98b5dd52009-11-23 23:22:17 +020036int wl1271_cmd_radio_parms(struct wl1271 *wl);
Shahar Levi49d750ca2011-03-06 16:32:09 +020037int wl128x_cmd_radio_parms(struct wl1271 *wl);
Juuso Oikarinen644a4862010-10-05 13:11:56 +020038int wl1271_cmd_ext_radio_parms(struct wl1271 *wl);
Eliad Peller784f6942011-10-05 11:55:39 +020039int wl12xx_cmd_role_enable(struct wl1271 *wl, u8 *addr, u8 role_type,
40 u8 *role_id);
Eliad Pellerc690ec82011-08-14 13:17:07 +030041int wl12xx_cmd_role_disable(struct wl1271 *wl, u8 *role_id);
42int wl12xx_cmd_role_start_dev(struct wl1271 *wl);
43int wl12xx_cmd_role_stop_dev(struct wl1271 *wl);
Eliad Peller87fbcb02011-10-05 11:55:41 +020044int wl12xx_cmd_role_start_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Eliad Pellerc690ec82011-08-14 13:17:07 +030045int wl12xx_cmd_role_stop_sta(struct wl1271 *wl);
Eliad Peller87fbcb02011-10-05 11:55:41 +020046int wl12xx_cmd_role_start_ap(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Eliad Pellerc690ec82011-08-14 13:17:07 +030047int wl12xx_cmd_role_stop_ap(struct wl1271 *wl);
Eliad Peller87fbcb02011-10-05 11:55:41 +020048int wl12xx_cmd_role_start_ibss(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030049int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer);
50int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len);
51int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len);
Luciano Coelho94210892009-12-11 15:40:55 +020052int wl1271_cmd_data_path(struct wl1271 *wl, bool enable);
Eliad Pellerc8bde242011-02-02 09:59:35 +020053int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode);
Juuso Oikarinen65cddbf2010-08-24 06:28:03 +030054int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer,
55 size_t len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030056int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id,
Juuso Oikarinen606c1482010-04-01 11:38:21 +030057 void *buf, size_t buf_len, int index, u32 rates);
Eliad Pellerd2d66c52011-10-05 11:55:43 +020058int wl12xx_cmd_build_null_data(struct wl1271 *wl, struct wl12xx_vif *wlvif);
Eliad Peller87fbcb02011-10-05 11:55:41 +020059int wl1271_cmd_build_ps_poll(struct wl1271 *wl, struct wl12xx_vif *wlvif,
60 u16 aid);
Kalle Valo818e3062010-03-18 12:26:35 +020061int wl1271_cmd_build_probe_req(struct wl1271 *wl,
62 const u8 *ssid, size_t ssid_len,
63 const u8 *ie, size_t ie_len, u8 band);
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +020064struct sk_buff *wl1271_cmd_build_ap_probe_req(struct wl1271 *wl,
65 struct sk_buff *skb);
Eliad Pellerd2d66c52011-10-05 11:55:43 +020066int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, struct wl12xx_vif *wlvif,
67 __be32 ip_addr);
Eliad Peller784f6942011-10-05 11:55:39 +020068int wl1271_build_qos_null_data(struct wl1271 *wl, struct ieee80211_vif *vif);
Eliad Pellerd2d66c52011-10-05 11:55:43 +020069int wl12xx_cmd_build_klv_null_data(struct wl1271 *wl,
70 struct wl12xx_vif *wlvif);
Eliad Pellerc690ec82011-08-14 13:17:07 +030071int wl12xx_cmd_set_default_wep_key(struct wl1271 *wl, u8 id, u8 hlid);
Arik Nemtsov98bdaab2010-10-16 18:08:58 +020072int wl1271_cmd_set_sta_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
73 u8 key_size, const u8 *key, const u8 *addr,
74 u32 tx_seq_32, u16 tx_seq_16);
75int wl1271_cmd_set_ap_key(struct wl1271 *wl, 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);
Eliad Pellerb67476e2011-08-14 13:17:23 +030078int wl12xx_cmd_set_peer_state(struct wl1271 *wl, u8 hlid);
Eliad Peller251c1772011-08-14 13:17:17 +030079int wl12xx_roc(struct wl1271 *wl, u8 role_id);
80int wl12xx_croc(struct wl1271 *wl, u8 role_id);
Eliad Pellerc690ec82011-08-14 13:17:07 +030081int wl12xx_cmd_add_peer(struct wl1271 *wl, struct ieee80211_sta *sta, u8 hlid);
82int wl12xx_cmd_remove_peer(struct wl1271 *wl, u8 hlid);
Ido Yariv95dac04f2011-06-06 14:57:06 +030083int wl12xx_cmd_config_fwlog(struct wl1271 *wl);
84int wl12xx_cmd_start_fwlog(struct wl1271 *wl);
85int wl12xx_cmd_stop_fwlog(struct wl1271 *wl);
Shahar Levi6d158ff2011-09-08 13:01:33 +030086int wl12xx_cmd_channel_switch(struct wl1271 *wl,
87 struct ieee80211_channel_switch *ch_switch);
88int wl12xx_cmd_stop_channel_switch(struct wl1271 *wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030089
90enum wl1271_commands {
91 CMD_INTERROGATE = 1, /*use this to read information elements*/
92 CMD_CONFIGURE = 2, /*use this to write information elements*/
93 CMD_ENABLE_RX = 3,
94 CMD_ENABLE_TX = 4,
95 CMD_DISABLE_RX = 5,
96 CMD_DISABLE_TX = 6,
97 CMD_SCAN = 8,
98 CMD_STOP_SCAN = 9,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030099 CMD_SET_KEYS = 12,
100 CMD_READ_MEMORY = 13,
101 CMD_WRITE_MEMORY = 14,
102 CMD_SET_TEMPLATE = 19,
103 CMD_TEST = 23,
104 CMD_NOISE_HIST = 28,
Eliad Pellerc690ec82011-08-14 13:17:07 +0300105 CMD_QUIET_ELEMENT_SET_STATE = 29,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300106 CMD_SET_BCN_MODE = 33,
107 CMD_MEASUREMENT = 34,
108 CMD_STOP_MEASUREMENT = 35,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300109 CMD_SET_PS_MODE = 37,
110 CMD_CHANNEL_SWITCH = 38,
111 CMD_STOP_CHANNEL_SWICTH = 39,
112 CMD_AP_DISCOVERY = 40,
113 CMD_STOP_AP_DISCOVERY = 41,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300114 CMD_HEALTH_CHECK = 45,
115 CMD_DEBUG = 46,
116 CMD_TRIGGER_SCAN_TO = 47,
117 CMD_CONNECTION_SCAN_CFG = 48,
118 CMD_CONNECTION_SCAN_SSID_CFG = 49,
119 CMD_START_PERIODIC_SCAN = 50,
120 CMD_STOP_PERIODIC_SCAN = 51,
Eliad Pellerc690ec82011-08-14 13:17:07 +0300121 CMD_SET_PEER_STATE = 52,
122 CMD_REMAIN_ON_CHANNEL = 53,
123 CMD_CANCEL_REMAIN_ON_CHANNEL = 54,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300124
Eliad Pellerc690ec82011-08-14 13:17:07 +0300125 CMD_CONFIG_FWLOGGER = 55,
126 CMD_START_FWLOGGER = 56,
127 CMD_STOP_FWLOGGER = 57,
128
129 /* AP commands */
130 CMD_ADD_PEER = 62,
131 CMD_REMOVE_PEER = 63,
132
133 /* Role API */
134 CMD_ROLE_ENABLE = 70,
135 CMD_ROLE_DISABLE = 71,
136 CMD_ROLE_START = 72,
137 CMD_ROLE_STOP = 73,
138
139 /* WIFI Direct */
140 CMD_WFD_START_DISCOVERY = 80,
141 CMD_WFD_STOP_DISCOVERY = 81,
142 CMD_WFD_ATTRIBUTE_CONFIG = 82,
143
144 CMD_NOP = 100,
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200145
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300146 NUM_COMMANDS,
147 MAX_COMMAND_ID = 0xFFFF,
148};
149
150#define MAX_CMD_PARAMS 572
151
Juuso Oikarinenbfb24c92010-03-26 12:53:31 +0200152enum {
153 CMD_TEMPL_KLV_IDX_NULL_DATA = 0,
154 CMD_TEMPL_KLV_IDX_MAX = 4
155};
156
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300157enum cmd_templ {
158 CMD_TEMPL_NULL_DATA = 0,
159 CMD_TEMPL_BEACON,
160 CMD_TEMPL_CFG_PROBE_REQ_2_4,
161 CMD_TEMPL_CFG_PROBE_REQ_5,
162 CMD_TEMPL_PROBE_RESPONSE,
163 CMD_TEMPL_QOS_NULL_DATA,
164 CMD_TEMPL_PS_POLL,
165 CMD_TEMPL_KLV,
166 CMD_TEMPL_DISCONNECT,
167 CMD_TEMPL_PROBE_REQ_2_4, /* for firmware internal use only */
168 CMD_TEMPL_PROBE_REQ_5, /* for firmware internal use only */
169 CMD_TEMPL_BAR, /* for firmware internal use only */
170 CMD_TEMPL_CTS, /*
171 * For CTS-to-self (FastCTS) mechanism
172 * for BT/WLAN coexistence (SoftGemini). */
Eliad Pellerc690ec82011-08-14 13:17:07 +0300173 CMD_TEMPL_AP_BEACON,
Arik Nemtsove0fe3712010-10-16 18:19:53 +0200174 CMD_TEMPL_AP_PROBE_RESPONSE,
Eliad Pellerc690ec82011-08-14 13:17:07 +0300175 CMD_TEMPL_ARP_RSP,
Arik Nemtsove0fe3712010-10-16 18:19:53 +0200176 CMD_TEMPL_DEAUTH_AP,
Eliad Pellerc690ec82011-08-14 13:17:07 +0300177 CMD_TEMPL_TEMPORARY,
178 CMD_TEMPL_LINK_MEASUREMENT_REPORT,
Arik Nemtsove0fe3712010-10-16 18:19:53 +0200179
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300180 CMD_TEMPL_MAX = 0xff
181};
182
183/* unit ms */
184#define WL1271_COMMAND_TIMEOUT 2000
Eliad Peller154037d2011-08-14 13:17:12 +0300185#define WL1271_CMD_TEMPL_DFLT_SIZE 252
186#define WL1271_CMD_TEMPL_MAX_SIZE 548
Teemu Paasikivi0cbb1032010-05-07 11:39:01 +0300187#define WL1271_EVENT_TIMEOUT 750
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300188
189struct wl1271_cmd_header {
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300190 __le16 id;
191 __le16 status;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300192 /* payload */
193 u8 data[0];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000194} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300195
196#define WL1271_CMD_MAX_PARAMS 572
197
198struct wl1271_command {
199 struct wl1271_cmd_header header;
200 u8 parameters[WL1271_CMD_MAX_PARAMS];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000201} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300202
203enum {
204 CMD_MAILBOX_IDLE = 0,
205 CMD_STATUS_SUCCESS = 1,
206 CMD_STATUS_UNKNOWN_CMD = 2,
207 CMD_STATUS_UNKNOWN_IE = 3,
208 CMD_STATUS_REJECT_MEAS_SG_ACTIVE = 11,
209 CMD_STATUS_RX_BUSY = 13,
210 CMD_STATUS_INVALID_PARAM = 14,
211 CMD_STATUS_TEMPLATE_TOO_LARGE = 15,
212 CMD_STATUS_OUT_OF_MEMORY = 16,
213 CMD_STATUS_STA_TABLE_FULL = 17,
214 CMD_STATUS_RADIO_ERROR = 18,
215 CMD_STATUS_WRONG_NESTING = 19,
216 CMD_STATUS_TIMEOUT = 21, /* Driver internal use.*/
217 CMD_STATUS_FW_RESET = 22, /* Driver internal use.*/
Eliad Pellerc690ec82011-08-14 13:17:07 +0300218 CMD_STATUS_TEMPLATE_OOM = 23,
Arik Nemtsov0f9c8252011-08-17 10:45:49 +0300219 CMD_STATUS_NO_RX_BA_SESSION = 24,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300220 MAX_COMMAND_STATUS = 0xff
221};
222
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300223#define CMDMBOX_HEADER_LEN 4
224#define CMDMBOX_INFO_ELEM_HEADER_LEN 4
225
226enum {
227 BSS_TYPE_IBSS = 0,
228 BSS_TYPE_STA_BSS = 2,
229 BSS_TYPE_AP_BSS = 3,
230 MAX_BSS_TYPE = 0xFF
231};
232
233#define WL1271_JOIN_CMD_CTRL_TX_FLUSH 0x80 /* Firmware flushes all Tx */
234#define WL1271_JOIN_CMD_TX_SESSION_OFFSET 1
Teemu Paasikivia4102642009-10-13 12:47:51 +0300235#define WL1271_JOIN_CMD_BSS_TYPE_5GHZ 0x10
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300236
Eliad Pellerc690ec82011-08-14 13:17:07 +0300237struct wl12xx_cmd_role_enable {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300238 struct wl1271_cmd_header header;
239
Eliad Pellerc690ec82011-08-14 13:17:07 +0300240 u8 role_id;
241 u8 role_type;
242 u8 mac_address[ETH_ALEN];
243} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300244
Eliad Pellerc690ec82011-08-14 13:17:07 +0300245struct wl12xx_cmd_role_disable {
246 struct wl1271_cmd_header header;
247
248 u8 role_id;
249 u8 padding[3];
250} __packed;
251
252enum wl12xx_band {
253 WL12XX_BAND_2_4GHZ = 0,
254 WL12XX_BAND_5GHZ = 1,
255 WL12XX_BAND_JAPAN_4_9_GHZ = 2,
256 WL12XX_BAND_DEFAULT = WL12XX_BAND_2_4GHZ,
257 WL12XX_BAND_INVALID = 0x7E,
258 WL12XX_BAND_MAX_RADIO = 0x7F,
259};
260
261struct wl12xx_cmd_role_start {
262 struct wl1271_cmd_header header;
263
264 u8 role_id;
265 u8 band;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300266 u8 channel;
Eliad Pellerc690ec82011-08-14 13:17:07 +0300267 u8 padding;
268
269 union {
270 struct {
271 u8 hlid;
272 u8 session;
273 u8 padding_1[54];
274 } __packed device;
275 /* sta & p2p_cli use the same struct */
276 struct {
277 u8 bssid[ETH_ALEN];
278 u8 hlid; /* data hlid */
279 u8 session;
280 __le32 remote_rates; /* remote supported rates */
281
282 /*
283 * The target uses this field to determine the rate at
284 * which to transmit control frame responses (such as
285 * ACK or CTS frames).
286 */
287 __le32 basic_rate_set;
288 __le32 local_rates; /* local supported rates */
289
290 u8 ssid_type;
291 u8 ssid_len;
292 u8 ssid[IEEE80211_MAX_SSID_LEN];
293
294 __le16 beacon_interval; /* in TBTTs */
295 } __packed sta;
296 struct {
297 u8 bssid[ETH_ALEN];
298 u8 hlid; /* data hlid */
299 u8 dtim_interval;
300 __le32 remote_rates; /* remote supported rates */
301
302 __le32 basic_rate_set;
303 __le32 local_rates; /* local supported rates */
304
305 u8 ssid_type;
306 u8 ssid_len;
307 u8 ssid[IEEE80211_MAX_SSID_LEN];
308
309 __le16 beacon_interval; /* in TBTTs */
310
311 u8 padding_1[4];
312 } __packed ibss;
313 /* ap & p2p_go use the same struct */
314 struct {
315 __le16 aging_period; /* in secs */
316 u8 beacon_expiry; /* in ms */
317 u8 bss_index;
318 /* The host link id for the AP's global queue */
319 u8 global_hlid;
320 /* The host link id for the AP's broadcast queue */
321 u8 broadcast_hlid;
322
323 __le16 beacon_interval; /* in TBTTs */
324
325 __le32 basic_rate_set;
326 __le32 local_rates; /* local supported rates */
327
328 u8 dtim_interval;
329
330 u8 ssid_type;
331 u8 ssid_len;
332 u8 ssid[IEEE80211_MAX_SSID_LEN];
333
334 u8 padding_1[5];
335 } __packed ap;
336 };
337} __packed;
338
339struct wl12xx_cmd_role_stop {
340 struct wl1271_cmd_header header;
341
342 u8 role_id;
343 u8 disc_type; /* only STA and P2P_CLI */
344 __le16 reason; /* only STA and P2P_CLI */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000345} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300346
347struct cmd_enabledisable_path {
348 struct wl1271_cmd_header header;
349
350 u8 channel;
351 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000352} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300353
Juuso Oikarinen606c1482010-04-01 11:38:21 +0300354#define WL1271_RATE_AUTOMATIC 0
355
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300356struct wl1271_cmd_template_set {
357 struct wl1271_cmd_header header;
358
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300359 __le16 len;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300360 u8 template_type;
361 u8 index; /* relevant only for KLV_TEMPLATE type */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300362 __le32 enabled_rates;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300363 u8 short_retry_limit;
364 u8 long_retry_limit;
365 u8 aflags;
366 u8 reserved;
367 u8 template_data[WL1271_CMD_TEMPL_MAX_SIZE];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000368} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300369
370#define TIM_ELE_ID 5
371#define PARTIAL_VBM_MAX 251
372
373struct wl1271_tim {
374 u8 identity;
375 u8 length;
376 u8 dtim_count;
377 u8 dtim_period;
378 u8 bitmap_ctrl;
379 u8 pvb_field[PARTIAL_VBM_MAX]; /* Partial Virtual Bitmap */
Eric Dumazetba2d3582010-06-02 18:10:09 +0000380} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300381
382enum wl1271_cmd_ps_mode {
383 STATION_ACTIVE_MODE,
384 STATION_POWER_SAVE_MODE
385};
386
387struct wl1271_cmd_ps_params {
388 struct wl1271_cmd_header header;
389
Eliad Pellerc690ec82011-08-14 13:17:07 +0300390 u8 role_id;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300391 u8 ps_mode; /* STATION_* */
Eliad Pellerc690ec82011-08-14 13:17:07 +0300392 u8 padding[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000393} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300394
395/* HW encryption keys */
396#define NUM_ACCESS_CATEGORIES_COPY 4
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300397
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300398enum wl1271_cmd_key_action {
399 KEY_ADD_OR_REPLACE = 1,
400 KEY_REMOVE = 2,
401 KEY_SET_ID = 3,
402 MAX_KEY_ACTION = 0xffff,
403};
404
Eliad Pellerc690ec82011-08-14 13:17:07 +0300405enum wl1271_cmd_lid_key_type {
406 UNICAST_LID_TYPE = 0,
407 BROADCAST_LID_TYPE = 1,
408 WEP_DEFAULT_LID_TYPE = 2
409};
410
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300411enum wl1271_cmd_key_type {
412 KEY_NONE = 0,
413 KEY_WEP = 1,
414 KEY_TKIP = 2,
415 KEY_AES = 3,
Juuso Oikarinen7a557242010-09-27 12:42:07 +0200416 KEY_GEM = 4,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300417};
418
Eliad Pellerc690ec82011-08-14 13:17:07 +0300419struct wl1271_cmd_set_keys {
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200420 struct wl1271_cmd_header header;
421
422 /*
423 * Indicates whether the HLID is a unicast key set
424 * or broadcast key set. A special value 0xFF is
425 * used to indicate that the HLID is on WEP-default
426 * (multi-hlids). of type wl1271_cmd_lid_key_type.
427 */
428 u8 hlid;
429
430 /*
431 * In WEP-default network (hlid == 0xFF) used to
432 * indicate which network STA/IBSS/AP role should be
433 * changed
434 */
435 u8 lid_key_type;
436
437 /*
438 * Key ID - For TKIP and AES key types, this field
439 * indicates the value that should be inserted into
440 * the KeyID field of frames transmitted using this
441 * key entry. For broadcast keys the index use as a
442 * marker for TX/RX key.
443 * For WEP default network (HLID=0xFF), this field
444 * indicates the ID of the key to add or remove.
445 */
446 u8 key_id;
447 u8 reserved_1;
448
449 /* key_action_e */
450 __le16 key_action;
451
452 /* key size in bytes */
453 u8 key_size;
454
455 /* key_type_e */
456 u8 key_type;
457
458 /* This field holds the security key data to add to the STA table */
459 u8 key[MAX_KEY_SIZE];
460 __le16 ac_seq_num16[NUM_ACCESS_CATEGORIES_COPY];
461 __le32 ac_seq_num32[NUM_ACCESS_CATEGORIES_COPY];
462} __packed;
463
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300464struct wl1271_cmd_test_header {
465 u8 id;
466 u8 padding[3];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000467} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300468
469enum wl1271_channel_tune_bands {
470 WL1271_CHANNEL_TUNE_BAND_2_4,
471 WL1271_CHANNEL_TUNE_BAND_5,
472 WL1271_CHANNEL_TUNE_BAND_4_9
473};
474
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200475#define WL1271_PD_REFERENCE_POINT_BAND_B_G 0
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300476
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200477#define TEST_CMD_INI_FILE_RADIO_PARAM 0x19
478#define TEST_CMD_INI_FILE_GENERAL_PARAM 0x1E
479#define TEST_CMD_INI_FILE_RF_EXTENDED_PARAM 0x26
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200480
481struct wl1271_general_parms_cmd {
482 struct wl1271_cmd_header header;
483
484 struct wl1271_cmd_test_header test;
485
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300486 struct wl1271_ini_general_params general_params;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200487
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300488 u8 sr_debug_table[WL1271_INI_MAX_SMART_REFLEX_PARAM];
489 u8 sr_sen_n_p;
490 u8 sr_sen_n_p_gain;
491 u8 sr_sen_nrn;
492 u8 sr_sen_prn;
493 u8 padding[3];
David S. Miller14599f12010-06-11 11:34:06 -0700494} __packed;
Juuso Oikarinen152ee6e2010-02-18 13:25:42 +0200495
Shahar Levi49d750ca2011-03-06 16:32:09 +0200496struct wl128x_general_parms_cmd {
497 struct wl1271_cmd_header header;
498
499 struct wl1271_cmd_test_header test;
500
501 struct wl128x_ini_general_params general_params;
502
503 u8 sr_debug_table[WL1271_INI_MAX_SMART_REFLEX_PARAM];
504 u8 sr_sen_n_p;
505 u8 sr_sen_n_p_gain;
506 u8 sr_sen_nrn;
507 u8 sr_sen_prn;
508 u8 padding[3];
509} __packed;
510
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200511struct wl1271_radio_parms_cmd {
512 struct wl1271_cmd_header header;
513
514 struct wl1271_cmd_test_header test;
515
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300516 /* Static radio parameters */
517 struct wl1271_ini_band_params_2 static_params_2;
518 struct wl1271_ini_band_params_5 static_params_5;
Luciano Coelho98b5dd52009-11-23 23:22:17 +0200519
Juuso Oikarineneb70eb72010-05-14 10:46:22 +0300520 /* Dynamic radio parameters */
521 struct wl1271_ini_fem_params_2 dyn_params_2;
522 u8 padding2;
523 struct wl1271_ini_fem_params_5 dyn_params_5;
524 u8 padding3[2];
Eric Dumazetba2d3582010-06-02 18:10:09 +0000525} __packed;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300526
Shahar Levi49d750ca2011-03-06 16:32:09 +0200527struct wl128x_radio_parms_cmd {
528 struct wl1271_cmd_header header;
529
530 struct wl1271_cmd_test_header test;
531
532 /* Static radio parameters */
533 struct wl128x_ini_band_params_2 static_params_2;
534 struct wl128x_ini_band_params_5 static_params_5;
535
536 u8 fem_vendor_and_options;
537
538 /* Dynamic radio parameters */
539 struct wl128x_ini_fem_params_2 dyn_params_2;
540 u8 padding2;
541 struct wl128x_ini_fem_params_5 dyn_params_5;
542} __packed;
543
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200544struct wl1271_ext_radio_parms_cmd {
545 struct wl1271_cmd_header header;
546
547 struct wl1271_cmd_test_header test;
548
549 u8 tx_per_channel_power_compensation_2[CONF_TX_PWR_COMPENSATION_LEN_2];
550 u8 tx_per_channel_power_compensation_5[CONF_TX_PWR_COMPENSATION_LEN_5];
551 u8 padding[3];
552} __packed;
553
Luciano Coelho25a7dc62009-10-12 15:08:42 +0300554/*
555 * There are three types of disconnections:
556 *
557 * DISCONNECT_IMMEDIATE: the fw doesn't send any frames
558 * DISCONNECT_DEAUTH: the fw generates a DEAUTH request with the reason
559 * we have passed
560 * DISCONNECT_DISASSOC: the fw generates a DESASSOC request with the reason
561 * we have passed
562 */
563enum wl1271_disconnect_type {
564 DISCONNECT_IMMEDIATE,
565 DISCONNECT_DEAUTH,
566 DISCONNECT_DISASSOC
567};
568
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +0300569#define WL1271_CMD_STA_STATE_CONNECTED 1
570
Eliad Pellerc690ec82011-08-14 13:17:07 +0300571struct wl12xx_cmd_set_peer_state {
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +0300572 struct wl1271_cmd_header header;
573
Eliad Pellerc690ec82011-08-14 13:17:07 +0300574 u8 hlid;
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +0300575 u8 state;
Eliad Pellerc690ec82011-08-14 13:17:07 +0300576 u8 padding[2];
Luciano Coelho5082b822010-10-05 14:58:49 +0300577} __packed;
Juuso Oikarinenbe86cbe2010-05-27 12:53:01 +0300578
Eliad Pellera7cba382011-08-14 13:17:16 +0300579struct wl12xx_cmd_roc {
580 struct wl1271_cmd_header header;
581
582 u8 role_id;
583 u8 channel;
584 u8 band;
585 u8 padding;
586};
587
588struct wl12xx_cmd_croc {
589 struct wl1271_cmd_header header;
590
591 u8 role_id;
592 u8 padding[3];
593};
594
Eliad Pellerc690ec82011-08-14 13:17:07 +0300595enum wl12xx_ssid_type {
596 WL12XX_SSID_TYPE_PUBLIC = 0,
597 WL12XX_SSID_TYPE_HIDDEN = 1,
598 WL12XX_SSID_TYPE_ANY = 2,
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200599};
600
Eliad Peller1ec23f72011-08-25 14:26:54 +0300601enum wl1271_psd_type {
602 WL1271_PSD_LEGACY = 0,
603 WL1271_PSD_UPSD_TRIGGER = 1,
604 WL1271_PSD_LEGACY_PSPOLL = 2,
605 WL1271_PSD_SAPSD = 3
606};
607
Eliad Pellerc690ec82011-08-14 13:17:07 +0300608struct wl12xx_cmd_add_peer {
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200609 struct wl1271_cmd_header header;
610
611 u8 addr[ETH_ALEN];
612 u8 hlid;
613 u8 aid;
614 u8 psd_type[NUM_ACCESS_CATEGORIES_COPY];
615 __le32 supported_rates;
616 u8 bss_index;
617 u8 sp_len;
618 u8 wmm;
619 u8 padding1;
620} __packed;
621
Eliad Pellerc690ec82011-08-14 13:17:07 +0300622struct wl12xx_cmd_remove_peer {
Arik Nemtsov98bdaab2010-10-16 18:08:58 +0200623 struct wl1271_cmd_header header;
624
625 u8 hlid;
626 u8 reason_opcode;
627 u8 send_deauth_flag;
628 u8 padding1;
629} __packed;
630
Ido Yariv95dac04f2011-06-06 14:57:06 +0300631/*
632 * Continuous mode - packets are transferred to the host periodically
633 * via the data path.
634 * On demand - Log messages are stored in a cyclic buffer in the
635 * firmware, and only transferred to the host when explicitly requested
636 */
637enum wl12xx_fwlogger_log_mode {
638 WL12XX_FWLOG_CONTINUOUS,
639 WL12XX_FWLOG_ON_DEMAND
640};
641
642/* Include/exclude timestamps from the log messages */
643enum wl12xx_fwlogger_timestamp {
644 WL12XX_FWLOG_TIMESTAMP_DISABLED,
645 WL12XX_FWLOG_TIMESTAMP_ENABLED
646};
647
648/*
649 * Logs can be routed to the debug pinouts (where available), to the host bus
650 * (SDIO/SPI), or dropped
651 */
652enum wl12xx_fwlogger_output {
653 WL12XX_FWLOG_OUTPUT_NONE,
654 WL12XX_FWLOG_OUTPUT_DBG_PINS,
655 WL12XX_FWLOG_OUTPUT_HOST,
656};
657
658struct wl12xx_cmd_config_fwlog {
659 struct wl1271_cmd_header header;
660
661 /* See enum wl12xx_fwlogger_log_mode */
662 u8 logger_mode;
663
664 /* Minimum log level threshold */
665 u8 log_severity;
666
667 /* Include/exclude timestamps from the log messages */
668 u8 timestamp;
669
670 /* See enum wl1271_fwlogger_output */
671 u8 output;
672
673 /* Regulates the frequency of log messages */
674 u8 threshold;
675
676 u8 padding[3];
677} __packed;
678
679struct wl12xx_cmd_start_fwlog {
680 struct wl1271_cmd_header header;
681} __packed;
682
683struct wl12xx_cmd_stop_fwlog {
684 struct wl1271_cmd_header header;
685} __packed;
686
Shahar Levi6d158ff2011-09-08 13:01:33 +0300687struct wl12xx_cmd_channel_switch {
688 struct wl1271_cmd_header header;
689
690 /* The new serving channel */
691 u8 channel;
692 /* Relative time of the serving channel switch in TBTT units */
693 u8 switch_time;
694 /* 1: Suspend TX till switch time; 0: Do not suspend TX */
695 u8 tx_suspend;
696 /* 1: Flush TX at switch time; 0: Do not flush */
697 u8 flush;
698} __packed;
699
700struct wl12xx_cmd_stop_channel_switch {
701 struct wl1271_cmd_header header;
702} __packed;
703
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300704#endif /* __WL1271_CMD_H__ */