Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 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 __WL1271_CMD_H__ |
| 26 | #define __WL1271_CMD_H__ |
| 27 | |
| 28 | #include "wl1271.h" |
| 29 | |
| 30 | struct acx_header; |
| 31 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 32 | int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len, |
| 33 | size_t res_len); |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 34 | int wl1271_cmd_general_parms(struct wl1271 *wl); |
| 35 | int wl1271_cmd_radio_parms(struct wl1271 *wl); |
Juuso Oikarinen | 1530549 | 2010-02-22 08:38:32 +0200 | [diff] [blame] | 36 | int wl1271_cmd_join(struct wl1271 *wl, u8 bss_type); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 37 | int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer); |
| 38 | int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len); |
| 39 | int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len); |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 40 | int wl1271_cmd_data_path(struct wl1271 *wl, bool enable); |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 41 | int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode, bool send); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 42 | int wl1271_cmd_read_memory(struct wl1271 *wl, u32 addr, void *answer, |
| 43 | size_t len); |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 44 | int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len, |
Juuso Oikarinen | 4fb26fa | 2010-05-24 11:18:20 +0300 | [diff] [blame] | 45 | struct cfg80211_scan_request *req, u8 active_scan, |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 46 | u8 high_prio, u8 band, u8 probe_requests); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 47 | int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id, |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 48 | void *buf, size_t buf_len, int index, u32 rates); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 49 | int wl1271_cmd_build_null_data(struct wl1271 *wl); |
| 50 | int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid); |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 51 | int wl1271_cmd_build_probe_req(struct wl1271 *wl, |
| 52 | const u8 *ssid, size_t ssid_len, |
| 53 | const u8 *ie, size_t ie_len, u8 band); |
Kalle Valo | 023e082 | 2010-03-18 12:26:36 +0200 | [diff] [blame] | 54 | int wl1271_build_qos_null_data(struct wl1271 *wl); |
Juuso Oikarinen | bfb24c9 | 2010-03-26 12:53:31 +0200 | [diff] [blame] | 55 | int wl1271_cmd_build_klv_null_data(struct wl1271 *wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 56 | int wl1271_cmd_set_default_wep_key(struct wl1271 *wl, u8 id); |
| 57 | int wl1271_cmd_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type, |
Juuso Oikarinen | ac4e4ce | 2009-10-08 21:56:19 +0300 | [diff] [blame] | 58 | u8 key_size, const u8 *key, const u8 *addr, |
| 59 | u32 tx_seq_32, u16 tx_seq_16); |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 60 | int wl1271_cmd_disconnect(struct wl1271 *wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 61 | |
| 62 | enum wl1271_commands { |
| 63 | CMD_INTERROGATE = 1, /*use this to read information elements*/ |
| 64 | CMD_CONFIGURE = 2, /*use this to write information elements*/ |
| 65 | CMD_ENABLE_RX = 3, |
| 66 | CMD_ENABLE_TX = 4, |
| 67 | CMD_DISABLE_RX = 5, |
| 68 | CMD_DISABLE_TX = 6, |
| 69 | CMD_SCAN = 8, |
| 70 | CMD_STOP_SCAN = 9, |
| 71 | CMD_START_JOIN = 11, |
| 72 | CMD_SET_KEYS = 12, |
| 73 | CMD_READ_MEMORY = 13, |
| 74 | CMD_WRITE_MEMORY = 14, |
| 75 | CMD_SET_TEMPLATE = 19, |
| 76 | CMD_TEST = 23, |
| 77 | CMD_NOISE_HIST = 28, |
| 78 | CMD_LNA_CONTROL = 32, |
| 79 | CMD_SET_BCN_MODE = 33, |
| 80 | CMD_MEASUREMENT = 34, |
| 81 | CMD_STOP_MEASUREMENT = 35, |
| 82 | CMD_DISCONNECT = 36, |
| 83 | CMD_SET_PS_MODE = 37, |
| 84 | CMD_CHANNEL_SWITCH = 38, |
| 85 | CMD_STOP_CHANNEL_SWICTH = 39, |
| 86 | CMD_AP_DISCOVERY = 40, |
| 87 | CMD_STOP_AP_DISCOVERY = 41, |
| 88 | CMD_SPS_SCAN = 42, |
| 89 | CMD_STOP_SPS_SCAN = 43, |
| 90 | CMD_HEALTH_CHECK = 45, |
| 91 | CMD_DEBUG = 46, |
| 92 | CMD_TRIGGER_SCAN_TO = 47, |
| 93 | CMD_CONNECTION_SCAN_CFG = 48, |
| 94 | CMD_CONNECTION_SCAN_SSID_CFG = 49, |
| 95 | CMD_START_PERIODIC_SCAN = 50, |
| 96 | CMD_STOP_PERIODIC_SCAN = 51, |
| 97 | CMD_SET_STA_STATE = 52, |
| 98 | |
| 99 | NUM_COMMANDS, |
| 100 | MAX_COMMAND_ID = 0xFFFF, |
| 101 | }; |
| 102 | |
| 103 | #define MAX_CMD_PARAMS 572 |
| 104 | |
Juuso Oikarinen | bfb24c9 | 2010-03-26 12:53:31 +0200 | [diff] [blame] | 105 | enum { |
| 106 | CMD_TEMPL_KLV_IDX_NULL_DATA = 0, |
| 107 | CMD_TEMPL_KLV_IDX_MAX = 4 |
| 108 | }; |
| 109 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 110 | enum cmd_templ { |
| 111 | CMD_TEMPL_NULL_DATA = 0, |
| 112 | CMD_TEMPL_BEACON, |
| 113 | CMD_TEMPL_CFG_PROBE_REQ_2_4, |
| 114 | CMD_TEMPL_CFG_PROBE_REQ_5, |
| 115 | CMD_TEMPL_PROBE_RESPONSE, |
| 116 | CMD_TEMPL_QOS_NULL_DATA, |
| 117 | CMD_TEMPL_PS_POLL, |
| 118 | CMD_TEMPL_KLV, |
| 119 | CMD_TEMPL_DISCONNECT, |
| 120 | CMD_TEMPL_PROBE_REQ_2_4, /* for firmware internal use only */ |
| 121 | CMD_TEMPL_PROBE_REQ_5, /* for firmware internal use only */ |
| 122 | CMD_TEMPL_BAR, /* for firmware internal use only */ |
| 123 | CMD_TEMPL_CTS, /* |
| 124 | * For CTS-to-self (FastCTS) mechanism |
| 125 | * for BT/WLAN coexistence (SoftGemini). */ |
| 126 | CMD_TEMPL_MAX = 0xff |
| 127 | }; |
| 128 | |
| 129 | /* unit ms */ |
| 130 | #define WL1271_COMMAND_TIMEOUT 2000 |
| 131 | #define WL1271_CMD_TEMPL_MAX_SIZE 252 |
Teemu Paasikivi | 0cbb103 | 2010-05-07 11:39:01 +0300 | [diff] [blame] | 132 | #define WL1271_EVENT_TIMEOUT 750 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 133 | |
| 134 | struct wl1271_cmd_header { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 135 | __le16 id; |
| 136 | __le16 status; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 137 | /* payload */ |
| 138 | u8 data[0]; |
| 139 | } __attribute__ ((packed)); |
| 140 | |
| 141 | #define WL1271_CMD_MAX_PARAMS 572 |
| 142 | |
| 143 | struct wl1271_command { |
| 144 | struct wl1271_cmd_header header; |
| 145 | u8 parameters[WL1271_CMD_MAX_PARAMS]; |
| 146 | } __attribute__ ((packed)); |
| 147 | |
| 148 | enum { |
| 149 | CMD_MAILBOX_IDLE = 0, |
| 150 | CMD_STATUS_SUCCESS = 1, |
| 151 | CMD_STATUS_UNKNOWN_CMD = 2, |
| 152 | CMD_STATUS_UNKNOWN_IE = 3, |
| 153 | CMD_STATUS_REJECT_MEAS_SG_ACTIVE = 11, |
| 154 | CMD_STATUS_RX_BUSY = 13, |
| 155 | CMD_STATUS_INVALID_PARAM = 14, |
| 156 | CMD_STATUS_TEMPLATE_TOO_LARGE = 15, |
| 157 | CMD_STATUS_OUT_OF_MEMORY = 16, |
| 158 | CMD_STATUS_STA_TABLE_FULL = 17, |
| 159 | CMD_STATUS_RADIO_ERROR = 18, |
| 160 | CMD_STATUS_WRONG_NESTING = 19, |
| 161 | CMD_STATUS_TIMEOUT = 21, /* Driver internal use.*/ |
| 162 | CMD_STATUS_FW_RESET = 22, /* Driver internal use.*/ |
| 163 | MAX_COMMAND_STATUS = 0xff |
| 164 | }; |
| 165 | |
| 166 | |
| 167 | /* |
| 168 | * CMD_READ_MEMORY |
| 169 | * |
| 170 | * The host issues this command to read the WiLink device memory/registers. |
| 171 | * |
| 172 | * Note: The Base Band address has special handling (16 bits registers and |
| 173 | * addresses). For more information, see the hardware specification. |
| 174 | */ |
| 175 | /* |
| 176 | * CMD_WRITE_MEMORY |
| 177 | * |
| 178 | * The host issues this command to write the WiLink device memory/registers. |
| 179 | * |
| 180 | * The Base Band address has special handling (16 bits registers and |
| 181 | * addresses). For more information, see the hardware specification. |
| 182 | */ |
| 183 | #define MAX_READ_SIZE 256 |
| 184 | |
| 185 | struct cmd_read_write_memory { |
| 186 | struct wl1271_cmd_header header; |
| 187 | |
| 188 | /* The address of the memory to read from or write to.*/ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 189 | __le32 addr; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 190 | |
| 191 | /* The amount of data in bytes to read from or write to the WiLink |
| 192 | * device.*/ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 193 | __le32 size; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 194 | |
| 195 | /* The actual value read from or written to the Wilink. The source |
| 196 | of this field is the Host in WRITE command or the Wilink in READ |
| 197 | command. */ |
| 198 | u8 value[MAX_READ_SIZE]; |
Luciano Coelho | fb46f26 | 2009-10-15 10:33:30 +0300 | [diff] [blame] | 199 | } __attribute__ ((packed)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 200 | |
| 201 | #define CMDMBOX_HEADER_LEN 4 |
| 202 | #define CMDMBOX_INFO_ELEM_HEADER_LEN 4 |
| 203 | |
| 204 | enum { |
| 205 | BSS_TYPE_IBSS = 0, |
| 206 | BSS_TYPE_STA_BSS = 2, |
| 207 | BSS_TYPE_AP_BSS = 3, |
| 208 | MAX_BSS_TYPE = 0xFF |
| 209 | }; |
| 210 | |
| 211 | #define WL1271_JOIN_CMD_CTRL_TX_FLUSH 0x80 /* Firmware flushes all Tx */ |
| 212 | #define WL1271_JOIN_CMD_TX_SESSION_OFFSET 1 |
Teemu Paasikivi | a410264 | 2009-10-13 12:47:51 +0300 | [diff] [blame] | 213 | #define WL1271_JOIN_CMD_BSS_TYPE_5GHZ 0x10 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 214 | |
| 215 | struct wl1271_cmd_join { |
| 216 | struct wl1271_cmd_header header; |
| 217 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 218 | __le32 bssid_lsb; |
| 219 | __le16 bssid_msb; |
| 220 | __le16 beacon_interval; /* in TBTTs */ |
| 221 | __le32 rx_config_options; |
| 222 | __le32 rx_filter_options; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 223 | |
| 224 | /* |
| 225 | * The target uses this field to determine the rate at |
| 226 | * which to transmit control frame responses (such as |
| 227 | * ACK or CTS frames). |
| 228 | */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 229 | __le32 basic_rate_set; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 230 | u8 dtim_interval; |
| 231 | /* |
| 232 | * bits 0-2: This bitwise field specifies the type |
| 233 | * of BSS to start or join (BSS_TYPE_*). |
| 234 | * bit 4: Band - The radio band in which to join |
| 235 | * or start. |
| 236 | * 0 - 2.4GHz band |
| 237 | * 1 - 5GHz band |
| 238 | * bits 3, 5-7: Reserved |
| 239 | */ |
| 240 | u8 bss_type; |
| 241 | u8 channel; |
| 242 | u8 ssid_len; |
| 243 | u8 ssid[IW_ESSID_MAX_SIZE]; |
| 244 | u8 ctrl; /* JOIN_CMD_CTRL_* */ |
| 245 | u8 reserved[3]; |
| 246 | } __attribute__ ((packed)); |
| 247 | |
| 248 | struct cmd_enabledisable_path { |
| 249 | struct wl1271_cmd_header header; |
| 250 | |
| 251 | u8 channel; |
| 252 | u8 padding[3]; |
| 253 | } __attribute__ ((packed)); |
| 254 | |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 255 | #define WL1271_RATE_AUTOMATIC 0 |
| 256 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 257 | struct wl1271_cmd_template_set { |
| 258 | struct wl1271_cmd_header header; |
| 259 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 260 | __le16 len; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 261 | u8 template_type; |
| 262 | u8 index; /* relevant only for KLV_TEMPLATE type */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 263 | __le32 enabled_rates; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 264 | u8 short_retry_limit; |
| 265 | u8 long_retry_limit; |
| 266 | u8 aflags; |
| 267 | u8 reserved; |
| 268 | u8 template_data[WL1271_CMD_TEMPL_MAX_SIZE]; |
| 269 | } __attribute__ ((packed)); |
| 270 | |
| 271 | #define TIM_ELE_ID 5 |
| 272 | #define PARTIAL_VBM_MAX 251 |
| 273 | |
| 274 | struct wl1271_tim { |
| 275 | u8 identity; |
| 276 | u8 length; |
| 277 | u8 dtim_count; |
| 278 | u8 dtim_period; |
| 279 | u8 bitmap_ctrl; |
| 280 | u8 pvb_field[PARTIAL_VBM_MAX]; /* Partial Virtual Bitmap */ |
| 281 | } __attribute__ ((packed)); |
| 282 | |
| 283 | enum wl1271_cmd_ps_mode { |
| 284 | STATION_ACTIVE_MODE, |
| 285 | STATION_POWER_SAVE_MODE |
| 286 | }; |
| 287 | |
| 288 | struct wl1271_cmd_ps_params { |
| 289 | struct wl1271_cmd_header header; |
| 290 | |
| 291 | u8 ps_mode; /* STATION_* */ |
| 292 | u8 send_null_data; /* Do we have to send NULL data packet ? */ |
| 293 | u8 retries; /* Number of retires for the initial NULL data packet */ |
| 294 | |
| 295 | /* |
| 296 | * TUs during which the target stays awake after switching |
| 297 | * to power save mode. |
| 298 | */ |
| 299 | u8 hang_over_period; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 300 | __le32 null_data_rate; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 301 | } __attribute__ ((packed)); |
| 302 | |
| 303 | /* HW encryption keys */ |
| 304 | #define NUM_ACCESS_CATEGORIES_COPY 4 |
| 305 | #define MAX_KEY_SIZE 32 |
| 306 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 307 | enum wl1271_cmd_key_action { |
| 308 | KEY_ADD_OR_REPLACE = 1, |
| 309 | KEY_REMOVE = 2, |
| 310 | KEY_SET_ID = 3, |
| 311 | MAX_KEY_ACTION = 0xffff, |
| 312 | }; |
| 313 | |
| 314 | enum wl1271_cmd_key_type { |
| 315 | KEY_NONE = 0, |
| 316 | KEY_WEP = 1, |
| 317 | KEY_TKIP = 2, |
| 318 | KEY_AES = 3, |
| 319 | KEY_GEM = 4 |
| 320 | }; |
| 321 | |
| 322 | /* FIXME: Add description for key-types */ |
| 323 | |
| 324 | struct wl1271_cmd_set_keys { |
| 325 | struct wl1271_cmd_header header; |
| 326 | |
| 327 | /* Ignored for default WEP key */ |
| 328 | u8 addr[ETH_ALEN]; |
| 329 | |
| 330 | /* key_action_e */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 331 | __le16 key_action; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 332 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 333 | __le16 reserved_1; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 334 | |
| 335 | /* key size in bytes */ |
| 336 | u8 key_size; |
| 337 | |
| 338 | /* key_type_e */ |
| 339 | u8 key_type; |
| 340 | u8 ssid_profile; |
| 341 | |
| 342 | /* |
| 343 | * TKIP, AES: frame's key id field. |
| 344 | * For WEP default key: key id; |
| 345 | */ |
| 346 | u8 id; |
| 347 | u8 reserved_2[6]; |
| 348 | u8 key[MAX_KEY_SIZE]; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 349 | __le16 ac_seq_num16[NUM_ACCESS_CATEGORIES_COPY]; |
| 350 | __le32 ac_seq_num32[NUM_ACCESS_CATEGORIES_COPY]; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 351 | } __attribute__ ((packed)); |
| 352 | |
| 353 | |
| 354 | #define WL1271_SCAN_MAX_CHANNELS 24 |
| 355 | #define WL1271_SCAN_DEFAULT_TAG 1 |
| 356 | #define WL1271_SCAN_CURRENT_TX_PWR 0 |
| 357 | #define WL1271_SCAN_OPT_ACTIVE 0 |
| 358 | #define WL1271_SCAN_OPT_PASSIVE 1 |
| 359 | #define WL1271_SCAN_OPT_PRIORITY_HIGH 4 |
| 360 | #define WL1271_SCAN_CHAN_MIN_DURATION 30000 /* TU */ |
| 361 | #define WL1271_SCAN_CHAN_MAX_DURATION 60000 /* TU */ |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 362 | #define WL1271_SCAN_BAND_2_4_GHZ 0 |
| 363 | #define WL1271_SCAN_BAND_5_GHZ 1 |
| 364 | #define WL1271_SCAN_BAND_DUAL 2 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 365 | |
| 366 | struct basic_scan_params { |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 367 | __le32 rx_config_options; |
| 368 | __le32 rx_filter_options; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 369 | /* Scan option flags (WL1271_SCAN_OPT_*) */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 370 | __le16 scan_options; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 371 | /* Number of scan channels in the list (maximum 30) */ |
| 372 | u8 num_channels; |
| 373 | /* This field indicates the number of probe requests to send |
| 374 | per channel for an active scan */ |
| 375 | u8 num_probe_requests; |
| 376 | /* Rate bit field for sending the probes */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 377 | __le32 tx_rate; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 378 | u8 tid_trigger; |
| 379 | u8 ssid_len; |
| 380 | /* in order to align */ |
| 381 | u8 padding1[2]; |
| 382 | u8 ssid[IW_ESSID_MAX_SIZE]; |
| 383 | /* Band to scan */ |
| 384 | u8 band; |
| 385 | u8 use_ssid_list; |
| 386 | u8 scan_tag; |
| 387 | u8 padding2; |
| 388 | } __attribute__ ((packed)); |
| 389 | |
| 390 | struct basic_scan_channel_params { |
| 391 | /* Duration in TU to wait for frames on a channel for active scan */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 392 | __le32 min_duration; |
| 393 | __le32 max_duration; |
| 394 | __le32 bssid_lsb; |
| 395 | __le16 bssid_msb; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 396 | u8 early_termination; |
| 397 | u8 tx_power_att; |
| 398 | u8 channel; |
| 399 | /* FW internal use only! */ |
| 400 | u8 dfs_candidate; |
| 401 | u8 activity_detected; |
| 402 | u8 pad; |
| 403 | } __attribute__ ((packed)); |
| 404 | |
| 405 | struct wl1271_cmd_scan { |
| 406 | struct wl1271_cmd_header header; |
| 407 | |
| 408 | struct basic_scan_params params; |
| 409 | struct basic_scan_channel_params channels[WL1271_SCAN_MAX_CHANNELS]; |
| 410 | } __attribute__ ((packed)); |
| 411 | |
| 412 | struct wl1271_cmd_trigger_scan_to { |
| 413 | struct wl1271_cmd_header header; |
| 414 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 415 | __le32 timeout; |
Luciano Coelho | fb46f26 | 2009-10-15 10:33:30 +0300 | [diff] [blame] | 416 | } __attribute__ ((packed)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 417 | |
| 418 | struct wl1271_cmd_test_header { |
| 419 | u8 id; |
| 420 | u8 padding[3]; |
Luciano Coelho | fb46f26 | 2009-10-15 10:33:30 +0300 | [diff] [blame] | 421 | } __attribute__ ((packed)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 422 | |
| 423 | enum wl1271_channel_tune_bands { |
| 424 | WL1271_CHANNEL_TUNE_BAND_2_4, |
| 425 | WL1271_CHANNEL_TUNE_BAND_5, |
| 426 | WL1271_CHANNEL_TUNE_BAND_4_9 |
| 427 | }; |
| 428 | |
| 429 | #define WL1271_PD_REFERENCE_POINT_BAND_B_G 0 |
| 430 | |
| 431 | #define TEST_CMD_P2G_CAL 0x02 |
| 432 | #define TEST_CMD_CHANNEL_TUNE 0x0d |
| 433 | #define TEST_CMD_UPDATE_PD_REFERENCE_POINT 0x1d |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 434 | #define TEST_CMD_INI_FILE_RADIO_PARAM 0x19 |
| 435 | #define TEST_CMD_INI_FILE_GENERAL_PARAM 0x1E |
| 436 | |
| 437 | struct wl1271_general_parms_cmd { |
| 438 | struct wl1271_cmd_header header; |
| 439 | |
| 440 | struct wl1271_cmd_test_header test; |
| 441 | |
Juuso Oikarinen | eb70eb7 | 2010-05-14 10:46:22 +0300 | [diff] [blame] | 442 | struct wl1271_ini_general_params general_params; |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 443 | |
Juuso Oikarinen | eb70eb7 | 2010-05-14 10:46:22 +0300 | [diff] [blame] | 444 | u8 sr_debug_table[WL1271_INI_MAX_SMART_REFLEX_PARAM]; |
| 445 | u8 sr_sen_n_p; |
| 446 | u8 sr_sen_n_p_gain; |
| 447 | u8 sr_sen_nrn; |
| 448 | u8 sr_sen_prn; |
| 449 | u8 padding[3]; |
| 450 | } __attribute__ ((packed)); |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 451 | |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 452 | struct wl1271_radio_parms_cmd { |
| 453 | struct wl1271_cmd_header header; |
| 454 | |
| 455 | struct wl1271_cmd_test_header test; |
| 456 | |
Juuso Oikarinen | eb70eb7 | 2010-05-14 10:46:22 +0300 | [diff] [blame] | 457 | /* Static radio parameters */ |
| 458 | struct wl1271_ini_band_params_2 static_params_2; |
| 459 | struct wl1271_ini_band_params_5 static_params_5; |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 460 | |
Juuso Oikarinen | eb70eb7 | 2010-05-14 10:46:22 +0300 | [diff] [blame] | 461 | /* Dynamic radio parameters */ |
| 462 | struct wl1271_ini_fem_params_2 dyn_params_2; |
| 463 | u8 padding2; |
| 464 | struct wl1271_ini_fem_params_5 dyn_params_5; |
| 465 | u8 padding3[2]; |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 466 | } __attribute__ ((packed)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 467 | |
| 468 | struct wl1271_cmd_cal_channel_tune { |
| 469 | struct wl1271_cmd_header header; |
| 470 | |
| 471 | struct wl1271_cmd_test_header test; |
| 472 | |
| 473 | u8 band; |
| 474 | u8 channel; |
| 475 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 476 | __le16 radio_status; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 477 | } __attribute__ ((packed)); |
| 478 | |
| 479 | struct wl1271_cmd_cal_update_ref_point { |
| 480 | struct wl1271_cmd_header header; |
| 481 | |
| 482 | struct wl1271_cmd_test_header test; |
| 483 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 484 | __le32 ref_power; |
| 485 | __le32 ref_detector; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 486 | u8 sub_band; |
| 487 | u8 padding[3]; |
| 488 | } __attribute__ ((packed)); |
| 489 | |
| 490 | #define MAX_TLV_LENGTH 400 |
| 491 | #define MAX_NVS_VERSION_LENGTH 12 |
| 492 | |
| 493 | #define WL1271_CAL_P2G_BAND_B_G BIT(0) |
| 494 | |
| 495 | struct wl1271_cmd_cal_p2g { |
| 496 | struct wl1271_cmd_header header; |
| 497 | |
| 498 | struct wl1271_cmd_test_header test; |
| 499 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 500 | __le16 len; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 501 | u8 buf[MAX_TLV_LENGTH]; |
| 502 | u8 type; |
| 503 | u8 padding; |
| 504 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 505 | __le16 radio_status; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 506 | u8 nvs_version[MAX_NVS_VERSION_LENGTH]; |
| 507 | |
| 508 | u8 sub_band_mask; |
| 509 | u8 padding2; |
| 510 | } __attribute__ ((packed)); |
| 511 | |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 512 | |
| 513 | /* |
| 514 | * There are three types of disconnections: |
| 515 | * |
| 516 | * DISCONNECT_IMMEDIATE: the fw doesn't send any frames |
| 517 | * DISCONNECT_DEAUTH: the fw generates a DEAUTH request with the reason |
| 518 | * we have passed |
| 519 | * DISCONNECT_DISASSOC: the fw generates a DESASSOC request with the reason |
| 520 | * we have passed |
| 521 | */ |
| 522 | enum wl1271_disconnect_type { |
| 523 | DISCONNECT_IMMEDIATE, |
| 524 | DISCONNECT_DEAUTH, |
| 525 | DISCONNECT_DISASSOC |
| 526 | }; |
| 527 | |
| 528 | struct wl1271_cmd_disconnect { |
Luciano Coelho | 1ed9538 | 2010-04-01 11:38:18 +0300 | [diff] [blame] | 529 | struct wl1271_cmd_header header; |
| 530 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 531 | __le32 rx_config_options; |
| 532 | __le32 rx_filter_options; |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 533 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 534 | __le16 reason; |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 535 | u8 type; |
| 536 | |
| 537 | u8 padding; |
| 538 | } __attribute__ ((packed)); |
| 539 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 540 | #endif /* __WL1271_CMD_H__ */ |