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