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