blob: 7897037b0992bc34e7212962c7e98c7d936ca50d [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: station command handling
3 *
Xinming Hu65da33f2014-06-19 21:38:57 -07004 * Copyright (C) 2011-2014, Marvell International Ltd.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07005 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#include "decl.h"
21#include "ioctl.h"
22#include "util.h"
23#include "fw.h"
24#include "main.h"
25#include "wmm.h"
26#include "11n.h"
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -070027#include "11ac.h"
Bing Zhao5e6e3a92011-03-21 18:00:50 -070028
Avinash Patild5b036c2015-06-22 19:06:20 +053029static bool drcs;
30module_param(drcs, bool, 0644);
31MODULE_PARM_DESC(drcs, "multi-channel operation:1, single-channel operation:0");
32
Avinash Patil0b4155d2014-12-23 19:14:12 +053033static bool disable_auto_ds;
34module_param(disable_auto_ds, bool, 0);
35MODULE_PARM_DESC(disable_auto_ds,
36 "deepsleep enabled=0(default), deepsleep disabled=1");
Bing Zhao5e6e3a92011-03-21 18:00:50 -070037/*
38 * This function prepares command to set/get RSSI information.
39 *
40 * Preparation includes -
41 * - Setting command ID, action and proper size
42 * - Setting data/beacon average factors
43 * - Resetting SNR/NF/RSSI values in private structure
44 * - Ensuring correct endian-ness
45 */
46static int
47mwifiex_cmd_802_11_rssi_info(struct mwifiex_private *priv,
48 struct host_cmd_ds_command *cmd, u16 cmd_action)
49{
50 cmd->command = cpu_to_le16(HostCmd_CMD_RSSI_INFO);
51 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_rssi_info) +
52 S_DS_GEN);
53 cmd->params.rssi_info.action = cpu_to_le16(cmd_action);
54 cmd->params.rssi_info.ndata = cpu_to_le16(priv->data_avg_factor);
55 cmd->params.rssi_info.nbcn = cpu_to_le16(priv->bcn_avg_factor);
56
57 /* Reset SNR/NF/RSSI values in private structure */
58 priv->data_rssi_last = 0;
59 priv->data_nf_last = 0;
60 priv->data_rssi_avg = 0;
61 priv->data_nf_avg = 0;
62 priv->bcn_rssi_last = 0;
63 priv->bcn_nf_last = 0;
64 priv->bcn_rssi_avg = 0;
65 priv->bcn_nf_avg = 0;
66
67 return 0;
68}
69
70/*
71 * This function prepares command to set MAC control.
72 *
73 * Preparation includes -
74 * - Setting command ID, action and proper size
75 * - Ensuring correct endian-ness
76 */
77static int mwifiex_cmd_mac_control(struct mwifiex_private *priv,
78 struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -070079 u16 cmd_action, u16 *action)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070080{
81 struct host_cmd_ds_mac_control *mac_ctrl = &cmd->params.mac_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070082
83 if (cmd_action != HostCmd_ACT_GEN_SET) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +053084 mwifiex_dbg(priv->adapter, ERROR,
85 "mac_control: only support set cmd\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -070086 return -1;
87 }
88
89 cmd->command = cpu_to_le16(HostCmd_CMD_MAC_CONTROL);
90 cmd->size =
91 cpu_to_le16(sizeof(struct host_cmd_ds_mac_control) + S_DS_GEN);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -070092 mac_ctrl->action = cpu_to_le16(*action);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070093
94 return 0;
95}
96
97/*
98 * This function prepares command to set/get SNMP MIB.
99 *
100 * Preparation includes -
101 * - Setting command ID, action and proper size
102 * - Setting SNMP MIB OID number and value
103 * (as required)
104 * - Ensuring correct endian-ness
105 *
106 * The following SNMP MIB OIDs are supported -
107 * - FRAG_THRESH_I : Fragmentation threshold
108 * - RTS_THRESH_I : RTS threshold
109 * - SHORT_RETRY_LIM_I : Short retry limit
110 * - DOT11D_I : 11d support
111 */
112static int mwifiex_cmd_802_11_snmp_mib(struct mwifiex_private *priv,
113 struct host_cmd_ds_command *cmd,
114 u16 cmd_action, u32 cmd_oid,
Amitkumar Karwarf3c8d252012-02-02 20:48:57 -0800115 u16 *ul_temp)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700116{
117 struct host_cmd_ds_802_11_snmp_mib *snmp_mib = &cmd->params.smib;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700118
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530119 mwifiex_dbg(priv->adapter, CMD,
120 "cmd: SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700121 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_SNMP_MIB);
122 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_snmp_mib)
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700123 - 1 + S_DS_GEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700124
Amitkumar Karwarf3c8d252012-02-02 20:48:57 -0800125 snmp_mib->oid = cpu_to_le16((u16)cmd_oid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700126 if (cmd_action == HostCmd_ACT_GEN_GET) {
127 snmp_mib->query_type = cpu_to_le16(HostCmd_ACT_GEN_GET);
128 snmp_mib->buf_size = cpu_to_le16(MAX_SNMP_BUF_SIZE);
Amitkumar Karwarf3c8d252012-02-02 20:48:57 -0800129 le16_add_cpu(&cmd->size, MAX_SNMP_BUF_SIZE);
130 } else if (cmd_action == HostCmd_ACT_GEN_SET) {
131 snmp_mib->query_type = cpu_to_le16(HostCmd_ACT_GEN_SET);
132 snmp_mib->buf_size = cpu_to_le16(sizeof(u16));
133 *((__le16 *) (snmp_mib->value)) = cpu_to_le16(*ul_temp);
134 le16_add_cpu(&cmd->size, sizeof(u16));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700135 }
136
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530137 mwifiex_dbg(priv->adapter, CMD,
138 "cmd: SNMP_CMD: Action=0x%x, OID=0x%x,\t"
139 "OIDSize=0x%x, Value=0x%x\n",
140 cmd_action, cmd_oid, le16_to_cpu(snmp_mib->buf_size),
141 le16_to_cpu(*(__le16 *)snmp_mib->value));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700142 return 0;
143}
144
145/*
146 * This function prepares command to get log.
147 *
148 * Preparation includes -
149 * - Setting command ID and proper size
150 * - Ensuring correct endian-ness
151 */
152static int
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700153mwifiex_cmd_802_11_get_log(struct host_cmd_ds_command *cmd)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700154{
155 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_GET_LOG);
156 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_get_log) +
157 S_DS_GEN);
158 return 0;
159}
160
161/*
162 * This function prepares command to set/get Tx data rate configuration.
163 *
164 * Preparation includes -
165 * - Setting command ID, action and proper size
166 * - Setting configuration index, rate scope and rate drop pattern
167 * parameters (as required)
168 * - Ensuring correct endian-ness
169 */
170static int mwifiex_cmd_tx_rate_cfg(struct mwifiex_private *priv,
171 struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700172 u16 cmd_action, u16 *pbitmap_rates)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700173{
174 struct host_cmd_ds_tx_rate_cfg *rate_cfg = &cmd->params.tx_rate_cfg;
175 struct mwifiex_rate_scope *rate_scope;
176 struct mwifiex_rate_drop_pattern *rate_drop;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700177 u32 i;
178
179 cmd->command = cpu_to_le16(HostCmd_CMD_TX_RATE_CFG);
180
181 rate_cfg->action = cpu_to_le16(cmd_action);
182 rate_cfg->cfg_index = 0;
183
184 rate_scope = (struct mwifiex_rate_scope *) ((u8 *) rate_cfg +
185 sizeof(struct host_cmd_ds_tx_rate_cfg));
186 rate_scope->type = cpu_to_le16(TLV_TYPE_RATE_SCOPE);
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700187 rate_scope->length = cpu_to_le16
188 (sizeof(*rate_scope) - sizeof(struct mwifiex_ie_types_header));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700189 if (pbitmap_rates != NULL) {
190 rate_scope->hr_dsss_rate_bitmap = cpu_to_le16(pbitmap_rates[0]);
191 rate_scope->ofdm_rate_bitmap = cpu_to_le16(pbitmap_rates[1]);
192 for (i = 0;
193 i < sizeof(rate_scope->ht_mcs_rate_bitmap) / sizeof(u16);
194 i++)
195 rate_scope->ht_mcs_rate_bitmap[i] =
196 cpu_to_le16(pbitmap_rates[2 + i]);
Amitkumar Karwara0b7315a2014-03-07 19:41:27 -0800197 if (priv->adapter->fw_api_ver == MWIFIEX_FW_V15) {
198 for (i = 0;
199 i < ARRAY_SIZE(rate_scope->vht_mcs_rate_bitmap);
200 i++)
201 rate_scope->vht_mcs_rate_bitmap[i] =
202 cpu_to_le16(pbitmap_rates[10 + i]);
203 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700204 } else {
205 rate_scope->hr_dsss_rate_bitmap =
206 cpu_to_le16(priv->bitmap_rates[0]);
207 rate_scope->ofdm_rate_bitmap =
208 cpu_to_le16(priv->bitmap_rates[1]);
209 for (i = 0;
210 i < sizeof(rate_scope->ht_mcs_rate_bitmap) / sizeof(u16);
211 i++)
212 rate_scope->ht_mcs_rate_bitmap[i] =
213 cpu_to_le16(priv->bitmap_rates[2 + i]);
Amitkumar Karwara0b7315a2014-03-07 19:41:27 -0800214 if (priv->adapter->fw_api_ver == MWIFIEX_FW_V15) {
215 for (i = 0;
216 i < ARRAY_SIZE(rate_scope->vht_mcs_rate_bitmap);
217 i++)
218 rate_scope->vht_mcs_rate_bitmap[i] =
219 cpu_to_le16(priv->bitmap_rates[10 + i]);
220 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700221 }
222
223 rate_drop = (struct mwifiex_rate_drop_pattern *) ((u8 *) rate_scope +
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700224 sizeof(struct mwifiex_rate_scope));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700225 rate_drop->type = cpu_to_le16(TLV_TYPE_RATE_DROP_CONTROL);
226 rate_drop->length = cpu_to_le16(sizeof(rate_drop->rate_drop_mode));
227 rate_drop->rate_drop_mode = 0;
228
229 cmd->size =
230 cpu_to_le16(S_DS_GEN + sizeof(struct host_cmd_ds_tx_rate_cfg) +
231 sizeof(struct mwifiex_rate_scope) +
232 sizeof(struct mwifiex_rate_drop_pattern));
233
234 return 0;
235}
236
237/*
238 * This function prepares command to set/get Tx power configuration.
239 *
240 * Preparation includes -
241 * - Setting command ID, action and proper size
242 * - Setting Tx power mode, power group TLV
243 * (as required)
244 * - Ensuring correct endian-ness
245 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700246static int mwifiex_cmd_tx_power_cfg(struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700247 u16 cmd_action,
248 struct host_cmd_ds_txpwr_cfg *txp)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700249{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700250 struct mwifiex_types_power_group *pg_tlv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700251 struct host_cmd_ds_txpwr_cfg *cmd_txp_cfg = &cmd->params.txp_cfg;
252
253 cmd->command = cpu_to_le16(HostCmd_CMD_TXPWR_CFG);
254 cmd->size =
255 cpu_to_le16(S_DS_GEN + sizeof(struct host_cmd_ds_txpwr_cfg));
256 switch (cmd_action) {
257 case HostCmd_ACT_GEN_SET:
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700258 if (txp->mode) {
259 pg_tlv = (struct mwifiex_types_power_group
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700260 *) ((unsigned long) txp +
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700261 sizeof(struct host_cmd_ds_txpwr_cfg));
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700262 memmove(cmd_txp_cfg, txp,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700263 sizeof(struct host_cmd_ds_txpwr_cfg) +
264 sizeof(struct mwifiex_types_power_group) +
Amitkumar Karwar930fd352013-10-22 15:24:43 -0700265 le16_to_cpu(pg_tlv->length));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700266
267 pg_tlv = (struct mwifiex_types_power_group *) ((u8 *)
268 cmd_txp_cfg +
269 sizeof(struct host_cmd_ds_txpwr_cfg));
270 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) +
271 sizeof(struct mwifiex_types_power_group) +
Amitkumar Karwar930fd352013-10-22 15:24:43 -0700272 le16_to_cpu(pg_tlv->length));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700273 } else {
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700274 memmove(cmd_txp_cfg, txp, sizeof(*txp));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700275 }
276 cmd_txp_cfg->action = cpu_to_le16(cmd_action);
277 break;
278 case HostCmd_ACT_GEN_GET:
279 cmd_txp_cfg->action = cpu_to_le16(cmd_action);
280 break;
281 }
282
283 return 0;
284}
285
286/*
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700287 * This function prepares command to get RF Tx power.
288 */
289static int mwifiex_cmd_rf_tx_power(struct mwifiex_private *priv,
290 struct host_cmd_ds_command *cmd,
291 u16 cmd_action, void *data_buf)
292{
293 struct host_cmd_ds_rf_tx_pwr *txp = &cmd->params.txp;
294
295 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_rf_tx_pwr)
296 + S_DS_GEN);
297 cmd->command = cpu_to_le16(HostCmd_CMD_RF_TX_PWR);
298 txp->action = cpu_to_le16(cmd_action);
299
300 return 0;
301}
302
303/*
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700304 * This function prepares command to set rf antenna.
305 */
306static int mwifiex_cmd_rf_antenna(struct mwifiex_private *priv,
307 struct host_cmd_ds_command *cmd,
308 u16 cmd_action,
309 struct mwifiex_ds_ant_cfg *ant_cfg)
310{
311 struct host_cmd_ds_rf_ant_mimo *ant_mimo = &cmd->params.ant_mimo;
312 struct host_cmd_ds_rf_ant_siso *ant_siso = &cmd->params.ant_siso;
313
314 cmd->command = cpu_to_le16(HostCmd_CMD_RF_ANTENNA);
315
Shengzhen Li3ee71282016-06-06 13:02:38 -0400316 switch (cmd_action) {
317 case HostCmd_ACT_GEN_SET:
318 if (priv->adapter->hw_dev_mcs_support == HT_STREAM_2X2) {
319 cmd->size = cpu_to_le16(sizeof(struct
320 host_cmd_ds_rf_ant_mimo)
321 + S_DS_GEN);
322 ant_mimo->action_tx = cpu_to_le16(HostCmd_ACT_SET_TX);
323 ant_mimo->tx_ant_mode = cpu_to_le16((u16)ant_cfg->
324 tx_ant);
325 ant_mimo->action_rx = cpu_to_le16(HostCmd_ACT_SET_RX);
326 ant_mimo->rx_ant_mode = cpu_to_le16((u16)ant_cfg->
327 rx_ant);
328 } else {
329 cmd->size = cpu_to_le16(sizeof(struct
330 host_cmd_ds_rf_ant_siso) +
331 S_DS_GEN);
332 ant_siso->action = cpu_to_le16(HostCmd_ACT_SET_BOTH);
333 ant_siso->ant_mode = cpu_to_le16((u16)ant_cfg->tx_ant);
334 }
335 break;
336 case HostCmd_ACT_GEN_GET:
337 if (priv->adapter->hw_dev_mcs_support == HT_STREAM_2X2) {
338 cmd->size = cpu_to_le16(sizeof(struct
339 host_cmd_ds_rf_ant_mimo) +
340 S_DS_GEN);
341 ant_mimo->action_tx = cpu_to_le16(HostCmd_ACT_GET_TX);
342 ant_mimo->action_rx = cpu_to_le16(HostCmd_ACT_GET_RX);
343 } else {
344 cmd->size = cpu_to_le16(sizeof(struct
345 host_cmd_ds_rf_ant_siso) +
346 S_DS_GEN);
347 ant_siso->action = cpu_to_le16(HostCmd_ACT_GET_BOTH);
348 }
349 break;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700350 }
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700351 return 0;
352}
353
354/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700355 * This function prepares command to set Host Sleep configuration.
356 *
357 * Preparation includes -
358 * - Setting command ID and proper size
359 * - Setting Host Sleep action, conditions, ARP filters
360 * (as required)
361 * - Ensuring correct endian-ness
362 */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700363static int
364mwifiex_cmd_802_11_hs_cfg(struct mwifiex_private *priv,
365 struct host_cmd_ds_command *cmd,
366 u16 cmd_action,
367 struct mwifiex_hs_config_param *hscfg_param)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700368{
369 struct mwifiex_adapter *adapter = priv->adapter;
370 struct host_cmd_ds_802_11_hs_cfg_enh *hs_cfg = &cmd->params.opt_hs_cfg;
Peter Senna Tschudinc8561972013-09-22 00:27:43 +0200371 bool hs_activate = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700372
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700373 if (!hscfg_param)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700374 /* New Activate command */
375 hs_activate = true;
376 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_HS_CFG_ENH);
377
378 if (!hs_activate &&
Amitkumar Karwarcc0b5a62013-03-04 16:27:57 -0800379 (hscfg_param->conditions != cpu_to_le32(HS_CFG_CANCEL)) &&
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700380 ((adapter->arp_filter_size > 0) &&
381 (adapter->arp_filter_size <= ARP_FILTER_MAX_BUF_SIZE))) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530382 mwifiex_dbg(adapter, CMD,
383 "cmd: Attach %d bytes ArpFilter to HSCfg cmd\n",
384 adapter->arp_filter_size);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700385 memcpy(((u8 *) hs_cfg) +
386 sizeof(struct host_cmd_ds_802_11_hs_cfg_enh),
387 adapter->arp_filter, adapter->arp_filter_size);
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700388 cmd->size = cpu_to_le16
389 (adapter->arp_filter_size +
390 sizeof(struct host_cmd_ds_802_11_hs_cfg_enh)
391 + S_DS_GEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392 } else {
393 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(struct
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700394 host_cmd_ds_802_11_hs_cfg_enh));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700395 }
396 if (hs_activate) {
397 hs_cfg->action = cpu_to_le16(HS_ACTIVATE);
Ujjal Roy4348d082013-12-02 23:17:48 -0800398 hs_cfg->params.hs_activate.resp_ctrl = cpu_to_le16(RESP_NEEDED);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700399 } else {
400 hs_cfg->action = cpu_to_le16(HS_CONFIGURE);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700401 hs_cfg->params.hs_config.conditions = hscfg_param->conditions;
402 hs_cfg->params.hs_config.gpio = hscfg_param->gpio;
403 hs_cfg->params.hs_config.gap = hscfg_param->gap;
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530404 mwifiex_dbg(adapter, CMD,
405 "cmd: HS_CFG_CMD: condition:0x%x gpio:0x%x gap:0x%x\n",
406 hs_cfg->params.hs_config.conditions,
407 hs_cfg->params.hs_config.gpio,
408 hs_cfg->params.hs_config.gap);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700409 }
410
411 return 0;
412}
413
414/*
415 * This function prepares command to set/get MAC address.
416 *
417 * Preparation includes -
418 * - Setting command ID, action and proper size
419 * - Setting MAC address (for SET only)
420 * - Ensuring correct endian-ness
421 */
422static int mwifiex_cmd_802_11_mac_address(struct mwifiex_private *priv,
423 struct host_cmd_ds_command *cmd,
424 u16 cmd_action)
425{
426 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_MAC_ADDRESS);
427 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_mac_address) +
428 S_DS_GEN);
429 cmd->result = 0;
430
431 cmd->params.mac_addr.action = cpu_to_le16(cmd_action);
432
433 if (cmd_action == HostCmd_ACT_GEN_SET)
434 memcpy(cmd->params.mac_addr.mac_addr, priv->curr_addr,
435 ETH_ALEN);
436 return 0;
437}
438
439/*
440 * This function prepares command to set MAC multicast address.
441 *
442 * Preparation includes -
443 * - Setting command ID, action and proper size
444 * - Setting MAC multicast address
445 * - Ensuring correct endian-ness
446 */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700447static int
448mwifiex_cmd_mac_multicast_adr(struct host_cmd_ds_command *cmd,
449 u16 cmd_action,
450 struct mwifiex_multicast_list *mcast_list)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700451{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700452 struct host_cmd_ds_mac_multicast_adr *mcast_addr = &cmd->params.mc_addr;
453
454 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_mac_multicast_adr) +
455 S_DS_GEN);
456 cmd->command = cpu_to_le16(HostCmd_CMD_MAC_MULTICAST_ADR);
457
458 mcast_addr->action = cpu_to_le16(cmd_action);
459 mcast_addr->num_of_adrs =
460 cpu_to_le16((u16) mcast_list->num_multicast_addr);
461 memcpy(mcast_addr->mac_list, mcast_list->mac_list,
462 mcast_list->num_multicast_addr * ETH_ALEN);
463
464 return 0;
465}
466
467/*
468 * This function prepares command to deauthenticate.
469 *
470 * Preparation includes -
471 * - Setting command ID and proper size
472 * - Setting AP MAC address and reason code
473 * - Ensuring correct endian-ness
474 */
475static int mwifiex_cmd_802_11_deauthenticate(struct mwifiex_private *priv,
476 struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700477 u8 *mac)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700478{
479 struct host_cmd_ds_802_11_deauthenticate *deauth = &cmd->params.deauth;
480
481 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_DEAUTHENTICATE);
482 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_deauthenticate)
483 + S_DS_GEN);
484
485 /* Set AP MAC address */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700486 memcpy(deauth->mac_addr, mac, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700487
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530488 mwifiex_dbg(priv->adapter, CMD, "cmd: Deauth: %pM\n", deauth->mac_addr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700489
490 deauth->reason_code = cpu_to_le16(WLAN_REASON_DEAUTH_LEAVING);
491
492 return 0;
493}
494
495/*
496 * This function prepares command to stop Ad-Hoc network.
497 *
498 * Preparation includes -
499 * - Setting command ID and proper size
500 * - Ensuring correct endian-ness
501 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -0700502static int mwifiex_cmd_802_11_ad_hoc_stop(struct host_cmd_ds_command *cmd)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700503{
504 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_AD_HOC_STOP);
505 cmd->size = cpu_to_le16(S_DS_GEN);
506 return 0;
507}
508
509/*
510 * This function sets WEP key(s) to key parameter TLV(s).
511 *
512 * Multi-key parameter TLVs are supported, so we can send multiple
513 * WEP keys in a single buffer.
514 */
515static int
516mwifiex_set_keyparamset_wep(struct mwifiex_private *priv,
517 struct mwifiex_ie_type_key_param_set *key_param_set,
518 u16 *key_param_len)
519{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700520 int cur_key_param_len;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700521 u8 i;
522
523 /* Multi-key_param_set TLV is supported */
524 for (i = 0; i < NUM_WEP_KEYS; i++) {
525 if ((priv->wep_key[i].key_length == WLAN_KEY_LEN_WEP40) ||
526 (priv->wep_key[i].key_length == WLAN_KEY_LEN_WEP104)) {
527 key_param_set->type =
528 cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
529/* Key_param_set WEP fixed length */
530#define KEYPARAMSET_WEP_FIXED_LEN 8
531 key_param_set->length = cpu_to_le16((u16)
532 (priv->wep_key[i].
533 key_length +
534 KEYPARAMSET_WEP_FIXED_LEN));
535 key_param_set->key_type_id =
536 cpu_to_le16(KEY_TYPE_ID_WEP);
537 key_param_set->key_info =
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -0700538 cpu_to_le16(KEY_ENABLED | KEY_UNICAST |
539 KEY_MCAST);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700540 key_param_set->key_len =
541 cpu_to_le16(priv->wep_key[i].key_length);
542 /* Set WEP key index */
543 key_param_set->key[0] = i;
544 /* Set default Tx key flag */
545 if (i ==
546 (priv->
547 wep_key_curr_index & HostCmd_WEP_KEY_INDEX_MASK))
548 key_param_set->key[1] = 1;
549 else
550 key_param_set->key[1] = 0;
551 memmove(&key_param_set->key[2],
552 priv->wep_key[i].key_material,
553 priv->wep_key[i].key_length);
554
555 cur_key_param_len = priv->wep_key[i].key_length +
556 KEYPARAMSET_WEP_FIXED_LEN +
557 sizeof(struct mwifiex_ie_types_header);
558 *key_param_len += (u16) cur_key_param_len;
559 key_param_set =
560 (struct mwifiex_ie_type_key_param_set *)
561 ((u8 *)key_param_set +
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700562 cur_key_param_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700563 } else if (!priv->wep_key[i].key_length) {
564 continue;
565 } else {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530566 mwifiex_dbg(priv->adapter, ERROR,
567 "key%d Length = %d is incorrect\n",
568 (i + 1), priv->wep_key[i].key_length);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700569 return -1;
570 }
571 }
572
573 return 0;
574}
575
Avinash Patile57f1732014-02-07 16:32:35 -0800576/* This function populates key material v2 command
577 * to set network key for AES & CMAC AES.
578 */
579static int mwifiex_set_aes_key_v2(struct mwifiex_private *priv,
580 struct host_cmd_ds_command *cmd,
581 struct mwifiex_ds_encrypt_key *enc_key,
582 struct host_cmd_ds_802_11_key_material_v2 *km)
583{
584 struct mwifiex_adapter *adapter = priv->adapter;
585 u16 size, len = KEY_PARAMS_FIXED_LEN;
586
587 if (enc_key->is_igtk_key) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530588 mwifiex_dbg(adapter, INFO,
589 "%s: Set CMAC AES Key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800590 if (enc_key->is_rx_seq_valid)
591 memcpy(km->key_param_set.key_params.cmac_aes.ipn,
592 enc_key->pn, enc_key->pn_len);
593 km->key_param_set.key_info &= cpu_to_le16(~KEY_MCAST);
594 km->key_param_set.key_info |= cpu_to_le16(KEY_IGTK);
595 km->key_param_set.key_type = KEY_TYPE_ID_AES_CMAC;
596 km->key_param_set.key_params.cmac_aes.key_len =
597 cpu_to_le16(enc_key->key_len);
598 memcpy(km->key_param_set.key_params.cmac_aes.key,
599 enc_key->key_material, enc_key->key_len);
600 len += sizeof(struct mwifiex_cmac_aes_param);
601 } else {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530602 mwifiex_dbg(adapter, INFO,
603 "%s: Set AES Key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800604 if (enc_key->is_rx_seq_valid)
605 memcpy(km->key_param_set.key_params.aes.pn,
606 enc_key->pn, enc_key->pn_len);
607 km->key_param_set.key_type = KEY_TYPE_ID_AES;
608 km->key_param_set.key_params.aes.key_len =
609 cpu_to_le16(enc_key->key_len);
610 memcpy(km->key_param_set.key_params.aes.key,
611 enc_key->key_material, enc_key->key_len);
612 len += sizeof(struct mwifiex_aes_param);
613 }
614
615 km->key_param_set.len = cpu_to_le16(len);
616 size = len + sizeof(struct mwifiex_ie_types_header) +
617 sizeof(km->action) + S_DS_GEN;
618 cmd->size = cpu_to_le16(size);
619
620 return 0;
621}
622
623/* This function prepares command to set/get/reset network key(s).
624 * This function prepares key material command for V2 format.
625 * Preparation includes -
626 * - Setting command ID, action and proper size
627 * - Setting WEP keys, WAPI keys or WPA keys along with required
628 * encryption (TKIP, AES) (as required)
629 * - Ensuring correct endian-ness
630 */
631static int
632mwifiex_cmd_802_11_key_material_v2(struct mwifiex_private *priv,
633 struct host_cmd_ds_command *cmd,
634 u16 cmd_action, u32 cmd_oid,
635 struct mwifiex_ds_encrypt_key *enc_key)
636{
637 struct mwifiex_adapter *adapter = priv->adapter;
638 u8 *mac = enc_key->mac_addr;
639 u16 key_info, len = KEY_PARAMS_FIXED_LEN;
640 struct host_cmd_ds_802_11_key_material_v2 *km =
641 &cmd->params.key_material_v2;
642
643 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_KEY_MATERIAL);
644 km->action = cpu_to_le16(cmd_action);
645
646 if (cmd_action == HostCmd_ACT_GEN_GET) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530647 mwifiex_dbg(adapter, INFO, "%s: Get key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800648 km->key_param_set.key_idx =
649 enc_key->key_index & KEY_INDEX_MASK;
650 km->key_param_set.type = cpu_to_le16(TLV_TYPE_KEY_PARAM_V2);
651 km->key_param_set.len = cpu_to_le16(KEY_PARAMS_FIXED_LEN);
652 memcpy(km->key_param_set.mac_addr, mac, ETH_ALEN);
653
654 if (enc_key->key_index & MWIFIEX_KEY_INDEX_UNICAST)
655 key_info = KEY_UNICAST;
656 else
657 key_info = KEY_MCAST;
658
659 if (enc_key->is_igtk_key)
660 key_info |= KEY_IGTK;
661
662 km->key_param_set.key_info = cpu_to_le16(key_info);
663
664 cmd->size = cpu_to_le16(sizeof(struct mwifiex_ie_types_header) +
665 S_DS_GEN + KEY_PARAMS_FIXED_LEN +
666 sizeof(km->action));
667 return 0;
668 }
669
670 memset(&km->key_param_set, 0,
671 sizeof(struct mwifiex_ie_type_key_param_set_v2));
672
673 if (enc_key->key_disable) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530674 mwifiex_dbg(adapter, INFO, "%s: Remove key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800675 km->action = cpu_to_le16(HostCmd_ACT_GEN_REMOVE);
676 km->key_param_set.type = cpu_to_le16(TLV_TYPE_KEY_PARAM_V2);
677 km->key_param_set.len = cpu_to_le16(KEY_PARAMS_FIXED_LEN);
678 km->key_param_set.key_idx = enc_key->key_index & KEY_INDEX_MASK;
679 key_info = KEY_MCAST | KEY_UNICAST;
680 km->key_param_set.key_info = cpu_to_le16(key_info);
681 memcpy(km->key_param_set.mac_addr, mac, ETH_ALEN);
682 cmd->size = cpu_to_le16(sizeof(struct mwifiex_ie_types_header) +
683 S_DS_GEN + KEY_PARAMS_FIXED_LEN +
684 sizeof(km->action));
685 return 0;
686 }
687
688 km->action = cpu_to_le16(HostCmd_ACT_GEN_SET);
689 km->key_param_set.key_idx = enc_key->key_index & KEY_INDEX_MASK;
690 km->key_param_set.type = cpu_to_le16(TLV_TYPE_KEY_PARAM_V2);
691 key_info = KEY_ENABLED;
692 memcpy(km->key_param_set.mac_addr, mac, ETH_ALEN);
693
694 if (enc_key->key_len <= WLAN_KEY_LEN_WEP104) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530695 mwifiex_dbg(adapter, INFO, "%s: Set WEP Key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800696 len += sizeof(struct mwifiex_wep_param);
697 km->key_param_set.len = cpu_to_le16(len);
698 km->key_param_set.key_type = KEY_TYPE_ID_WEP;
699
700 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
701 key_info |= KEY_MCAST | KEY_UNICAST;
702 } else {
703 if (enc_key->is_current_wep_key) {
704 key_info |= KEY_MCAST | KEY_UNICAST;
705 if (km->key_param_set.key_idx ==
706 (priv->wep_key_curr_index & KEY_INDEX_MASK))
707 key_info |= KEY_DEFAULT;
708 } else {
709 if (mac) {
710 if (is_broadcast_ether_addr(mac))
711 key_info |= KEY_MCAST;
712 else
713 key_info |= KEY_UNICAST |
714 KEY_DEFAULT;
715 } else {
716 key_info |= KEY_MCAST;
717 }
718 }
719 }
720 km->key_param_set.key_info = cpu_to_le16(key_info);
721
722 km->key_param_set.key_params.wep.key_len =
723 cpu_to_le16(enc_key->key_len);
724 memcpy(km->key_param_set.key_params.wep.key,
725 enc_key->key_material, enc_key->key_len);
726
727 cmd->size = cpu_to_le16(sizeof(struct mwifiex_ie_types_header) +
728 len + sizeof(km->action) + S_DS_GEN);
729 return 0;
730 }
731
732 if (is_broadcast_ether_addr(mac))
733 key_info |= KEY_MCAST | KEY_RX_KEY;
734 else
735 key_info |= KEY_UNICAST | KEY_TX_KEY | KEY_RX_KEY;
736
737 if (enc_key->is_wapi_key) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530738 mwifiex_dbg(adapter, INFO, "%s: Set WAPI Key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800739 km->key_param_set.key_type = KEY_TYPE_ID_WAPI;
740 memcpy(km->key_param_set.key_params.wapi.pn, enc_key->pn,
741 PN_LEN);
742 km->key_param_set.key_params.wapi.key_len =
743 cpu_to_le16(enc_key->key_len);
744 memcpy(km->key_param_set.key_params.wapi.key,
745 enc_key->key_material, enc_key->key_len);
746 if (is_broadcast_ether_addr(mac))
747 priv->sec_info.wapi_key_on = true;
748
749 if (!priv->sec_info.wapi_key_on)
750 key_info |= KEY_DEFAULT;
751 km->key_param_set.key_info = cpu_to_le16(key_info);
752
753 len += sizeof(struct mwifiex_wapi_param);
754 km->key_param_set.len = cpu_to_le16(len);
755 cmd->size = cpu_to_le16(sizeof(struct mwifiex_ie_types_header) +
756 len + sizeof(km->action) + S_DS_GEN);
757 return 0;
758 }
759
760 if (priv->bss_mode == NL80211_IFTYPE_ADHOC) {
761 key_info |= KEY_DEFAULT;
762 /* Enable unicast bit for WPA-NONE/ADHOC_AES */
763 if (!priv->sec_info.wpa2_enabled &&
764 !is_broadcast_ether_addr(mac))
765 key_info |= KEY_UNICAST;
766 } else {
767 /* Enable default key for WPA/WPA2 */
768 if (!priv->wpa_is_gtk_set)
769 key_info |= KEY_DEFAULT;
770 }
771
772 km->key_param_set.key_info = cpu_to_le16(key_info);
773
774 if (enc_key->key_len == WLAN_KEY_LEN_CCMP)
775 return mwifiex_set_aes_key_v2(priv, cmd, enc_key, km);
776
777 if (enc_key->key_len == WLAN_KEY_LEN_TKIP) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530778 mwifiex_dbg(adapter, INFO,
779 "%s: Set TKIP Key\n", __func__);
Avinash Patile57f1732014-02-07 16:32:35 -0800780 if (enc_key->is_rx_seq_valid)
781 memcpy(km->key_param_set.key_params.tkip.pn,
782 enc_key->pn, enc_key->pn_len);
783 km->key_param_set.key_type = KEY_TYPE_ID_TKIP;
784 km->key_param_set.key_params.tkip.key_len =
785 cpu_to_le16(enc_key->key_len);
786 memcpy(km->key_param_set.key_params.tkip.key,
787 enc_key->key_material, enc_key->key_len);
788
789 len += sizeof(struct mwifiex_tkip_param);
790 km->key_param_set.len = cpu_to_le16(len);
791 cmd->size = cpu_to_le16(sizeof(struct mwifiex_ie_types_header) +
792 len + sizeof(km->action) + S_DS_GEN);
793 }
794
795 return 0;
796}
797
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700798/*
799 * This function prepares command to set/get/reset network key(s).
Avinash Patile57f1732014-02-07 16:32:35 -0800800 * This function prepares key material command for V1 format.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700801 *
802 * Preparation includes -
803 * - Setting command ID, action and proper size
804 * - Setting WEP keys, WAPI keys or WPA keys along with required
805 * encryption (TKIP, AES) (as required)
806 * - Ensuring correct endian-ness
807 */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700808static int
Avinash Patile57f1732014-02-07 16:32:35 -0800809mwifiex_cmd_802_11_key_material_v1(struct mwifiex_private *priv,
810 struct host_cmd_ds_command *cmd,
811 u16 cmd_action, u32 cmd_oid,
812 struct mwifiex_ds_encrypt_key *enc_key)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700813{
814 struct host_cmd_ds_802_11_key_material *key_material =
815 &cmd->params.key_material;
Avinash Patil75edd2c2012-05-08 18:30:18 -0700816 struct host_cmd_tlv_mac_addr *tlv_mac;
817 u16 key_param_len = 0, cmd_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700818 int ret = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700819
820 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_KEY_MATERIAL);
821 key_material->action = cpu_to_le16(cmd_action);
822
823 if (cmd_action == HostCmd_ACT_GEN_GET) {
824 cmd->size =
825 cpu_to_le16(sizeof(key_material->action) + S_DS_GEN);
826 return ret;
827 }
828
829 if (!enc_key) {
830 memset(&key_material->key_param_set, 0,
831 (NUM_WEP_KEYS *
832 sizeof(struct mwifiex_ie_type_key_param_set)));
833 ret = mwifiex_set_keyparamset_wep(priv,
834 &key_material->key_param_set,
835 &key_param_len);
836 cmd->size = cpu_to_le16(key_param_len +
837 sizeof(key_material->action) + S_DS_GEN);
838 return ret;
839 } else
840 memset(&key_material->key_param_set, 0,
841 sizeof(struct mwifiex_ie_type_key_param_set));
842 if (enc_key->is_wapi_key) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530843 mwifiex_dbg(priv->adapter, INFO, "info: Set WAPI Key\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700844 key_material->key_param_set.key_type_id =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700845 cpu_to_le16(KEY_TYPE_ID_WAPI);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700846 if (cmd_oid == KEY_INFO_ENABLED)
847 key_material->key_param_set.key_info =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700848 cpu_to_le16(KEY_ENABLED);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700849 else
850 key_material->key_param_set.key_info =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700851 cpu_to_le16(!KEY_ENABLED);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700852
853 key_material->key_param_set.key[0] = enc_key->key_index;
854 if (!priv->sec_info.wapi_key_on)
855 key_material->key_param_set.key[1] = 1;
856 else
857 /* set 0 when re-key */
858 key_material->key_param_set.key[1] = 0;
859
Wei Yongjuna71bf902012-08-24 13:25:30 +0800860 if (!is_broadcast_ether_addr(enc_key->mac_addr)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700861 /* WAPI pairwise key: unicast */
862 key_material->key_param_set.key_info |=
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -0700863 cpu_to_le16(KEY_UNICAST);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700864 } else { /* WAPI group key: multicast */
865 key_material->key_param_set.key_info |=
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -0700866 cpu_to_le16(KEY_MCAST);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700867 priv->sec_info.wapi_key_on = true;
868 }
869
870 key_material->key_param_set.type =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700871 cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700872 key_material->key_param_set.key_len =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700873 cpu_to_le16(WAPI_KEY_LEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700874 memcpy(&key_material->key_param_set.key[2],
875 enc_key->key_material, enc_key->key_len);
876 memcpy(&key_material->key_param_set.key[2 + enc_key->key_len],
Ying Luo9d7aba62012-08-03 18:06:12 -0700877 enc_key->pn, PN_LEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700878 key_material->key_param_set.length =
879 cpu_to_le16(WAPI_KEY_LEN + KEYPARAMSET_FIXED_LEN);
880
881 key_param_len = (WAPI_KEY_LEN + KEYPARAMSET_FIXED_LEN) +
882 sizeof(struct mwifiex_ie_types_header);
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700883 cmd->size = cpu_to_le16(sizeof(key_material->action)
884 + S_DS_GEN + key_param_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700885 return ret;
886 }
887 if (enc_key->key_len == WLAN_KEY_LEN_CCMP) {
Ying Luob877f4c2012-08-03 18:06:14 -0700888 if (enc_key->is_igtk_key) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530889 mwifiex_dbg(priv->adapter, CMD, "cmd: CMAC_AES\n");
Ying Luob877f4c2012-08-03 18:06:14 -0700890 key_material->key_param_set.key_type_id =
891 cpu_to_le16(KEY_TYPE_ID_AES_CMAC);
892 if (cmd_oid == KEY_INFO_ENABLED)
893 key_material->key_param_set.key_info =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700894 cpu_to_le16(KEY_ENABLED);
Ying Luob877f4c2012-08-03 18:06:14 -0700895 else
896 key_material->key_param_set.key_info =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700897 cpu_to_le16(!KEY_ENABLED);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700898
Ying Luob877f4c2012-08-03 18:06:14 -0700899 key_material->key_param_set.key_info |=
900 cpu_to_le16(KEY_IGTK);
901 } else {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530902 mwifiex_dbg(priv->adapter, CMD, "cmd: WPA_AES\n");
Ying Luob877f4c2012-08-03 18:06:14 -0700903 key_material->key_param_set.key_type_id =
904 cpu_to_le16(KEY_TYPE_ID_AES);
905 if (cmd_oid == KEY_INFO_ENABLED)
906 key_material->key_param_set.key_info =
907 cpu_to_le16(KEY_ENABLED);
908 else
909 key_material->key_param_set.key_info =
910 cpu_to_le16(!KEY_ENABLED);
911
912 if (enc_key->key_index & MWIFIEX_KEY_INDEX_UNICAST)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700913 /* AES pairwise key: unicast */
Ying Luob877f4c2012-08-03 18:06:14 -0700914 key_material->key_param_set.key_info |=
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700915 cpu_to_le16(KEY_UNICAST);
Ying Luob877f4c2012-08-03 18:06:14 -0700916 else /* AES group key: multicast */
917 key_material->key_param_set.key_info |=
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700918 cpu_to_le16(KEY_MCAST);
Ying Luob877f4c2012-08-03 18:06:14 -0700919 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700920 } else if (enc_key->key_len == WLAN_KEY_LEN_TKIP) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +0530921 mwifiex_dbg(priv->adapter, CMD, "cmd: WPA_TKIP\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700922 key_material->key_param_set.key_type_id =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700923 cpu_to_le16(KEY_TYPE_ID_TKIP);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700924 key_material->key_param_set.key_info =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700925 cpu_to_le16(KEY_ENABLED);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700926
927 if (enc_key->key_index & MWIFIEX_KEY_INDEX_UNICAST)
928 /* TKIP pairwise key: unicast */
929 key_material->key_param_set.key_info |=
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700930 cpu_to_le16(KEY_UNICAST);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700931 else /* TKIP group key: multicast */
932 key_material->key_param_set.key_info |=
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700933 cpu_to_le16(KEY_MCAST);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700934 }
935
936 if (key_material->key_param_set.key_type_id) {
937 key_material->key_param_set.type =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700938 cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700939 key_material->key_param_set.key_len =
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700940 cpu_to_le16((u16) enc_key->key_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700941 memcpy(key_material->key_param_set.key, enc_key->key_material,
942 enc_key->key_len);
943 key_material->key_param_set.length =
944 cpu_to_le16((u16) enc_key->key_len +
945 KEYPARAMSET_FIXED_LEN);
946
Avinash Patil75edd2c2012-05-08 18:30:18 -0700947 key_param_len = (u16)(enc_key->key_len + KEYPARAMSET_FIXED_LEN)
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700948 + sizeof(struct mwifiex_ie_types_header);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700949
Ying Luob877f4c2012-08-03 18:06:14 -0700950 if (le16_to_cpu(key_material->key_param_set.key_type_id) ==
951 KEY_TYPE_ID_AES_CMAC) {
952 struct mwifiex_cmac_param *param =
953 (void *)key_material->key_param_set.key;
954
955 memcpy(param->ipn, enc_key->pn, IGTK_PN_LEN);
956 memcpy(param->key, enc_key->key_material,
Bing Zhao641c8692012-08-08 19:01:52 -0700957 WLAN_KEY_LEN_AES_CMAC);
Ying Luob877f4c2012-08-03 18:06:14 -0700958
959 key_param_len = sizeof(struct mwifiex_cmac_param);
960 key_material->key_param_set.key_len =
961 cpu_to_le16(key_param_len);
962 key_param_len += KEYPARAMSET_FIXED_LEN;
963 key_material->key_param_set.length =
964 cpu_to_le16(key_param_len);
965 key_param_len += sizeof(struct mwifiex_ie_types_header);
966 }
967
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -0700968 cmd->size = cpu_to_le16(sizeof(key_material->action) + S_DS_GEN
969 + key_param_len);
Avinash Patil75edd2c2012-05-08 18:30:18 -0700970
Maithili Hinge8342bda2014-09-30 16:29:38 +0530971 if (GET_BSS_ROLE(priv) == MWIFIEX_BSS_ROLE_UAP) {
Avinash Patil75edd2c2012-05-08 18:30:18 -0700972 tlv_mac = (void *)((u8 *)&key_material->key_param_set +
973 key_param_len);
Amitkumar Karwar6b21a692013-07-22 19:17:57 -0700974 tlv_mac->header.type =
975 cpu_to_le16(TLV_TYPE_STA_MAC_ADDR);
976 tlv_mac->header.len = cpu_to_le16(ETH_ALEN);
Avinash Patil75edd2c2012-05-08 18:30:18 -0700977 memcpy(tlv_mac->mac_addr, enc_key->mac_addr, ETH_ALEN);
978 cmd_size = key_param_len + S_DS_GEN +
979 sizeof(key_material->action) +
980 sizeof(struct host_cmd_tlv_mac_addr);
981 } else {
982 cmd_size = key_param_len + S_DS_GEN +
983 sizeof(key_material->action);
984 }
985 cmd->size = cpu_to_le16(cmd_size);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700986 }
987
988 return ret;
989}
990
Avinash Patile57f1732014-02-07 16:32:35 -0800991/* Wrapper function for setting network key depending upon FW KEY API version */
992static int
993mwifiex_cmd_802_11_key_material(struct mwifiex_private *priv,
994 struct host_cmd_ds_command *cmd,
995 u16 cmd_action, u32 cmd_oid,
996 struct mwifiex_ds_encrypt_key *enc_key)
997{
Amitkumar Karwar4b9fede2014-08-19 08:24:25 -0400998 if (priv->adapter->key_api_major_ver == KEY_API_VER_MAJOR_V2)
Avinash Patile57f1732014-02-07 16:32:35 -0800999 return mwifiex_cmd_802_11_key_material_v2(priv, cmd,
1000 cmd_action, cmd_oid,
1001 enc_key);
1002
1003 else
1004 return mwifiex_cmd_802_11_key_material_v1(priv, cmd,
1005 cmd_action, cmd_oid,
1006 enc_key);
1007}
1008
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001009/*
1010 * This function prepares command to set/get 11d domain information.
1011 *
1012 * Preparation includes -
1013 * - Setting command ID, action and proper size
1014 * - Setting domain information fields (for SET only)
1015 * - Ensuring correct endian-ness
1016 */
1017static int mwifiex_cmd_802_11d_domain_info(struct mwifiex_private *priv,
1018 struct host_cmd_ds_command *cmd,
1019 u16 cmd_action)
1020{
1021 struct mwifiex_adapter *adapter = priv->adapter;
1022 struct host_cmd_ds_802_11d_domain_info *domain_info =
1023 &cmd->params.domain_info;
1024 struct mwifiex_ietypes_domain_param_set *domain =
1025 &domain_info->domain;
1026 u8 no_of_triplet = adapter->domain_reg.no_of_triplet;
1027
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301028 mwifiex_dbg(adapter, INFO,
1029 "info: 11D: no_of_triplet=0x%x\n", no_of_triplet);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001030
1031 cmd->command = cpu_to_le16(HostCmd_CMD_802_11D_DOMAIN_INFO);
1032 domain_info->action = cpu_to_le16(cmd_action);
1033 if (cmd_action == HostCmd_ACT_GEN_GET) {
1034 cmd->size = cpu_to_le16(sizeof(domain_info->action) + S_DS_GEN);
1035 return 0;
1036 }
1037
1038 /* Set domain info fields */
1039 domain->header.type = cpu_to_le16(WLAN_EID_COUNTRY);
1040 memcpy(domain->country_code, adapter->domain_reg.country_code,
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07001041 sizeof(domain->country_code));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001042
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07001043 domain->header.len =
1044 cpu_to_le16((no_of_triplet *
1045 sizeof(struct ieee80211_country_ie_triplet))
1046 + sizeof(domain->country_code));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001047
1048 if (no_of_triplet) {
1049 memcpy(domain->triplet, adapter->domain_reg.triplet,
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07001050 no_of_triplet * sizeof(struct
1051 ieee80211_country_ie_triplet));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001052
1053 cmd->size = cpu_to_le16(sizeof(domain_info->action) +
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07001054 le16_to_cpu(domain->header.len) +
1055 sizeof(struct mwifiex_ie_types_header)
1056 + S_DS_GEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001057 } else {
1058 cmd->size = cpu_to_le16(sizeof(domain_info->action) + S_DS_GEN);
1059 }
1060
1061 return 0;
1062}
1063
1064/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001065 * This function prepares command to set/get IBSS coalescing status.
1066 *
1067 * Preparation includes -
1068 * - Setting command ID, action and proper size
1069 * - Setting status to enable or disable (for SET only)
1070 * - Ensuring correct endian-ness
1071 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001072static int mwifiex_cmd_ibss_coalescing_status(struct host_cmd_ds_command *cmd,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001073 u16 cmd_action, u16 *enable)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001074{
1075 struct host_cmd_ds_802_11_ibss_status *ibss_coal =
1076 &(cmd->params.ibss_coalescing);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001077
1078 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_IBSS_COALESCING_STATUS);
1079 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_ibss_status) +
1080 S_DS_GEN);
1081 cmd->result = 0;
1082 ibss_coal->action = cpu_to_le16(cmd_action);
1083
1084 switch (cmd_action) {
1085 case HostCmd_ACT_GEN_SET:
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001086 if (enable)
1087 ibss_coal->enable = cpu_to_le16(*enable);
Dan Carpentera5e5aa62011-06-24 16:33:35 +03001088 else
1089 ibss_coal->enable = 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001090 break;
1091
1092 /* In other case.. Nothing to do */
1093 case HostCmd_ACT_GEN_GET:
1094 default:
1095 break;
1096 }
1097
1098 return 0;
1099}
1100
Chin-ran Loc2c6c852015-05-12 00:48:17 +05301101/* This function prepares command buffer to get/set memory location value.
1102 */
1103static int
1104mwifiex_cmd_mem_access(struct host_cmd_ds_command *cmd, u16 cmd_action,
1105 void *pdata_buf)
1106{
1107 struct mwifiex_ds_mem_rw *mem_rw = (void *)pdata_buf;
1108 struct host_cmd_ds_mem_access *mem_access = (void *)&cmd->params.mem;
1109
1110 cmd->command = cpu_to_le16(HostCmd_CMD_MEM_ACCESS);
1111 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_mem_access) +
1112 S_DS_GEN);
1113
1114 mem_access->action = cpu_to_le16(cmd_action);
1115 mem_access->addr = cpu_to_le32(mem_rw->addr);
1116 mem_access->value = cpu_to_le32(mem_rw->value);
1117
1118 return 0;
1119}
1120
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001121/*
1122 * This function prepares command to set/get register value.
1123 *
1124 * Preparation includes -
1125 * - Setting command ID, action and proper size
1126 * - Setting register offset (for both GET and SET) and
1127 * register value (for SET only)
1128 * - Ensuring correct endian-ness
1129 *
1130 * The following type of registers can be accessed with this function -
1131 * - MAC register
1132 * - BBP register
1133 * - RF register
1134 * - PMIC register
1135 * - CAU register
1136 * - EEPROM
1137 */
1138static int mwifiex_cmd_reg_access(struct host_cmd_ds_command *cmd,
1139 u16 cmd_action, void *data_buf)
1140{
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001141 struct mwifiex_ds_reg_rw *reg_rw = data_buf;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001142
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001143 switch (le16_to_cpu(cmd->command)) {
1144 case HostCmd_CMD_MAC_REG_ACCESS:
1145 {
1146 struct host_cmd_ds_mac_reg_access *mac_reg;
1147
1148 cmd->size = cpu_to_le16(sizeof(*mac_reg) + S_DS_GEN);
Joe Perches2c208892012-06-04 12:44:17 +00001149 mac_reg = &cmd->params.mac_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001150 mac_reg->action = cpu_to_le16(cmd_action);
Prasun Maiti8cfb8602016-06-27 15:43:22 +05301151 mac_reg->offset = cpu_to_le16((u16) reg_rw->offset);
1152 mac_reg->value = cpu_to_le32(reg_rw->value);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001153 break;
1154 }
1155 case HostCmd_CMD_BBP_REG_ACCESS:
1156 {
1157 struct host_cmd_ds_bbp_reg_access *bbp_reg;
1158
1159 cmd->size = cpu_to_le16(sizeof(*bbp_reg) + S_DS_GEN);
Joe Perches2c208892012-06-04 12:44:17 +00001160 bbp_reg = &cmd->params.bbp_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001161 bbp_reg->action = cpu_to_le16(cmd_action);
Prasun Maiti8cfb8602016-06-27 15:43:22 +05301162 bbp_reg->offset = cpu_to_le16((u16) reg_rw->offset);
1163 bbp_reg->value = (u8) reg_rw->value;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001164 break;
1165 }
1166 case HostCmd_CMD_RF_REG_ACCESS:
1167 {
1168 struct host_cmd_ds_rf_reg_access *rf_reg;
1169
1170 cmd->size = cpu_to_le16(sizeof(*rf_reg) + S_DS_GEN);
Joe Perches2c208892012-06-04 12:44:17 +00001171 rf_reg = &cmd->params.rf_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001172 rf_reg->action = cpu_to_le16(cmd_action);
Prasun Maiti8cfb8602016-06-27 15:43:22 +05301173 rf_reg->offset = cpu_to_le16((u16) reg_rw->offset);
1174 rf_reg->value = (u8) reg_rw->value;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001175 break;
1176 }
1177 case HostCmd_CMD_PMIC_REG_ACCESS:
1178 {
1179 struct host_cmd_ds_pmic_reg_access *pmic_reg;
1180
1181 cmd->size = cpu_to_le16(sizeof(*pmic_reg) + S_DS_GEN);
Joe Perches2c208892012-06-04 12:44:17 +00001182 pmic_reg = &cmd->params.pmic_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001183 pmic_reg->action = cpu_to_le16(cmd_action);
Prasun Maiti8cfb8602016-06-27 15:43:22 +05301184 pmic_reg->offset = cpu_to_le16((u16) reg_rw->offset);
1185 pmic_reg->value = (u8) reg_rw->value;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001186 break;
1187 }
1188 case HostCmd_CMD_CAU_REG_ACCESS:
1189 {
1190 struct host_cmd_ds_rf_reg_access *cau_reg;
1191
1192 cmd->size = cpu_to_le16(sizeof(*cau_reg) + S_DS_GEN);
Joe Perches2c208892012-06-04 12:44:17 +00001193 cau_reg = &cmd->params.rf_reg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001194 cau_reg->action = cpu_to_le16(cmd_action);
Prasun Maiti8cfb8602016-06-27 15:43:22 +05301195 cau_reg->offset = cpu_to_le16((u16) reg_rw->offset);
1196 cau_reg->value = (u8) reg_rw->value;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001197 break;
1198 }
1199 case HostCmd_CMD_802_11_EEPROM_ACCESS:
1200 {
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001201 struct mwifiex_ds_read_eeprom *rd_eeprom = data_buf;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001202 struct host_cmd_ds_802_11_eeprom_access *cmd_eeprom =
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001203 &cmd->params.eeprom;
1204
1205 cmd->size = cpu_to_le16(sizeof(*cmd_eeprom) + S_DS_GEN);
1206 cmd_eeprom->action = cpu_to_le16(cmd_action);
Prasun Maiti8cfb8602016-06-27 15:43:22 +05301207 cmd_eeprom->offset = cpu_to_le16(rd_eeprom->offset);
1208 cmd_eeprom->byte_count = cpu_to_le16(rd_eeprom->byte_count);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001209 cmd_eeprom->value = 0;
1210 break;
1211 }
1212 default:
1213 return -1;
1214 }
1215
1216 return 0;
1217}
1218
1219/*
Amitkumar Karward930fae2011-10-11 17:41:21 -07001220 * This function prepares command to set PCI-Express
1221 * host buffer configuration
1222 *
1223 * Preparation includes -
1224 * - Setting command ID, action and proper size
1225 * - Setting host buffer configuration
1226 * - Ensuring correct endian-ness
1227 */
1228static int
1229mwifiex_cmd_pcie_host_spec(struct mwifiex_private *priv,
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07001230 struct host_cmd_ds_command *cmd, u16 action)
Amitkumar Karward930fae2011-10-11 17:41:21 -07001231{
1232 struct host_cmd_ds_pcie_details *host_spec =
1233 &cmd->params.pcie_host_spec;
1234 struct pcie_service_card *card = priv->adapter->card;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001235
1236 cmd->command = cpu_to_le16(HostCmd_CMD_PCIE_DESC_DETAILS);
1237 cmd->size = cpu_to_le16(sizeof(struct
1238 host_cmd_ds_pcie_details) + S_DS_GEN);
1239 cmd->result = 0;
1240
1241 memset(host_spec, 0, sizeof(struct host_cmd_ds_pcie_details));
1242
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07001243 if (action != HostCmd_ACT_GEN_SET)
1244 return 0;
1245
1246 /* Send the ring base addresses and count to firmware */
1247 host_spec->txbd_addr_lo = (u32)(card->txbd_ring_pbase);
1248 host_spec->txbd_addr_hi = (u32)(((u64)card->txbd_ring_pbase)>>32);
1249 host_spec->txbd_count = MWIFIEX_MAX_TXRX_BD;
1250 host_spec->rxbd_addr_lo = (u32)(card->rxbd_ring_pbase);
1251 host_spec->rxbd_addr_hi = (u32)(((u64)card->rxbd_ring_pbase)>>32);
1252 host_spec->rxbd_count = MWIFIEX_MAX_TXRX_BD;
1253 host_spec->evtbd_addr_lo = (u32)(card->evtbd_ring_pbase);
1254 host_spec->evtbd_addr_hi = (u32)(((u64)card->evtbd_ring_pbase)>>32);
1255 host_spec->evtbd_count = MWIFIEX_MAX_EVT_BD;
Avinash Patilfc331462013-01-03 21:21:30 -08001256 if (card->sleep_cookie_vbase) {
1257 host_spec->sleep_cookie_addr_lo =
1258 (u32)(card->sleep_cookie_pbase);
1259 host_spec->sleep_cookie_addr_hi =
1260 (u32)(((u64)(card->sleep_cookie_pbase)) >> 32);
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301261 mwifiex_dbg(priv->adapter, INFO,
1262 "sleep_cook_lo phy addr: 0x%x\n",
1263 host_spec->sleep_cookie_addr_lo);
Amitkumar Karward930fae2011-10-11 17:41:21 -07001264 }
1265
1266 return 0;
1267}
1268
1269/*
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001270 * This function prepares command for event subscription, configuration
1271 * and query. Events can be subscribed or unsubscribed. Current subscribed
1272 * events can be queried. Also, current subscribed events are reported in
1273 * every FW response.
1274 */
1275static int
1276mwifiex_cmd_802_11_subsc_evt(struct mwifiex_private *priv,
1277 struct host_cmd_ds_command *cmd,
1278 struct mwifiex_ds_misc_subsc_evt *subsc_evt_cfg)
1279{
1280 struct host_cmd_ds_802_11_subsc_evt *subsc_evt = &cmd->params.subsc_evt;
1281 struct mwifiex_ie_types_rssi_threshold *rssi_tlv;
1282 u16 event_bitmap;
1283 u8 *pos;
1284
1285 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_SUBSCRIBE_EVENT);
1286 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_subsc_evt) +
1287 S_DS_GEN);
1288
1289 subsc_evt->action = cpu_to_le16(subsc_evt_cfg->action);
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301290 mwifiex_dbg(priv->adapter, CMD,
1291 "cmd: action: %d\n", subsc_evt_cfg->action);
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001292
1293 /*For query requests, no configuration TLV structures are to be added.*/
1294 if (subsc_evt_cfg->action == HostCmd_ACT_GEN_GET)
1295 return 0;
1296
1297 subsc_evt->events = cpu_to_le16(subsc_evt_cfg->events);
1298
1299 event_bitmap = subsc_evt_cfg->events;
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301300 mwifiex_dbg(priv->adapter, CMD, "cmd: event bitmap : %16x\n",
1301 event_bitmap);
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001302
1303 if (((subsc_evt_cfg->action == HostCmd_ACT_BITWISE_CLR) ||
1304 (subsc_evt_cfg->action == HostCmd_ACT_BITWISE_SET)) &&
1305 (event_bitmap == 0)) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301306 mwifiex_dbg(priv->adapter, ERROR,
1307 "Error: No event specified\t"
1308 "for bitwise action type\n");
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001309 return -EINVAL;
1310 }
1311
1312 /*
1313 * Append TLV structures for each of the specified events for
1314 * subscribing or re-configuring. This is not required for
1315 * bitwise unsubscribing request.
1316 */
1317 if (subsc_evt_cfg->action == HostCmd_ACT_BITWISE_CLR)
1318 return 0;
1319
1320 pos = ((u8 *)subsc_evt) +
1321 sizeof(struct host_cmd_ds_802_11_subsc_evt);
1322
1323 if (event_bitmap & BITMASK_BCN_RSSI_LOW) {
1324 rssi_tlv = (struct mwifiex_ie_types_rssi_threshold *) pos;
1325
1326 rssi_tlv->header.type = cpu_to_le16(TLV_TYPE_RSSI_LOW);
1327 rssi_tlv->header.len =
1328 cpu_to_le16(sizeof(struct mwifiex_ie_types_rssi_threshold) -
1329 sizeof(struct mwifiex_ie_types_header));
1330 rssi_tlv->abs_value = subsc_evt_cfg->bcn_l_rssi_cfg.abs_value;
1331 rssi_tlv->evt_freq = subsc_evt_cfg->bcn_l_rssi_cfg.evt_freq;
1332
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301333 mwifiex_dbg(priv->adapter, EVENT,
1334 "Cfg Beacon Low Rssi event,\t"
1335 "RSSI:-%d dBm, Freq:%d\n",
1336 subsc_evt_cfg->bcn_l_rssi_cfg.abs_value,
1337 subsc_evt_cfg->bcn_l_rssi_cfg.evt_freq);
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001338
1339 pos += sizeof(struct mwifiex_ie_types_rssi_threshold);
1340 le16_add_cpu(&cmd->size,
1341 sizeof(struct mwifiex_ie_types_rssi_threshold));
1342 }
1343
1344 if (event_bitmap & BITMASK_BCN_RSSI_HIGH) {
1345 rssi_tlv = (struct mwifiex_ie_types_rssi_threshold *) pos;
1346
1347 rssi_tlv->header.type = cpu_to_le16(TLV_TYPE_RSSI_HIGH);
1348 rssi_tlv->header.len =
1349 cpu_to_le16(sizeof(struct mwifiex_ie_types_rssi_threshold) -
1350 sizeof(struct mwifiex_ie_types_header));
1351 rssi_tlv->abs_value = subsc_evt_cfg->bcn_h_rssi_cfg.abs_value;
1352 rssi_tlv->evt_freq = subsc_evt_cfg->bcn_h_rssi_cfg.evt_freq;
1353
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301354 mwifiex_dbg(priv->adapter, EVENT,
1355 "Cfg Beacon High Rssi event,\t"
1356 "RSSI:-%d dBm, Freq:%d\n",
1357 subsc_evt_cfg->bcn_h_rssi_cfg.abs_value,
1358 subsc_evt_cfg->bcn_h_rssi_cfg.evt_freq);
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001359
1360 pos += sizeof(struct mwifiex_ie_types_rssi_threshold);
1361 le16_add_cpu(&cmd->size,
1362 sizeof(struct mwifiex_ie_types_rssi_threshold));
1363 }
1364
1365 return 0;
1366}
1367
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001368static int
1369mwifiex_cmd_append_rpn_expression(struct mwifiex_private *priv,
1370 struct mwifiex_mef_entry *mef_entry,
1371 u8 **buffer)
1372{
1373 struct mwifiex_mef_filter *filter = mef_entry->filter;
1374 int i, byte_len;
1375 u8 *stack_ptr = *buffer;
1376
Amitkumar Karwar3f4e8542013-08-05 18:51:57 -07001377 for (i = 0; i < MWIFIEX_MEF_MAX_FILTERS; i++) {
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001378 filter = &mef_entry->filter[i];
1379 if (!filter->filt_type)
1380 break;
1381 *(__le32 *)stack_ptr = cpu_to_le32((u32)filter->repeat);
1382 stack_ptr += 4;
1383 *stack_ptr = TYPE_DNUM;
1384 stack_ptr += 1;
1385
Amitkumar Karwar3f4e8542013-08-05 18:51:57 -07001386 byte_len = filter->byte_seq[MWIFIEX_MEF_MAX_BYTESEQ];
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001387 memcpy(stack_ptr, filter->byte_seq, byte_len);
1388 stack_ptr += byte_len;
1389 *stack_ptr = byte_len;
1390 stack_ptr += 1;
1391 *stack_ptr = TYPE_BYTESEQ;
1392 stack_ptr += 1;
1393
1394 *(__le32 *)stack_ptr = cpu_to_le32((u32)filter->offset);
1395 stack_ptr += 4;
1396 *stack_ptr = TYPE_DNUM;
1397 stack_ptr += 1;
1398
1399 *stack_ptr = filter->filt_type;
1400 stack_ptr += 1;
1401
1402 if (filter->filt_action) {
1403 *stack_ptr = filter->filt_action;
1404 stack_ptr += 1;
1405 }
1406
1407 if (stack_ptr - *buffer > STACK_NBYTES)
1408 return -1;
1409 }
1410
1411 *buffer = stack_ptr;
1412 return 0;
1413}
1414
1415static int
1416mwifiex_cmd_mef_cfg(struct mwifiex_private *priv,
1417 struct host_cmd_ds_command *cmd,
1418 struct mwifiex_ds_mef_cfg *mef)
1419{
1420 struct host_cmd_ds_mef_cfg *mef_cfg = &cmd->params.mef_cfg;
Maithili Hingeb533be12015-03-12 00:38:39 -07001421 struct mwifiex_fw_mef_entry *mef_entry = NULL;
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001422 u8 *pos = (u8 *)mef_cfg;
Maithili Hingeb533be12015-03-12 00:38:39 -07001423 u16 i;
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001424
1425 cmd->command = cpu_to_le16(HostCmd_CMD_MEF_CFG);
1426
1427 mef_cfg->criteria = cpu_to_le32(mef->criteria);
1428 mef_cfg->num_entries = cpu_to_le16(mef->num_entries);
1429 pos += sizeof(*mef_cfg);
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001430
Maithili Hingeb533be12015-03-12 00:38:39 -07001431 for (i = 0; i < mef->num_entries; i++) {
1432 mef_entry = (struct mwifiex_fw_mef_entry *)pos;
1433 mef_entry->mode = mef->mef_entry[i].mode;
1434 mef_entry->action = mef->mef_entry[i].action;
1435 pos += sizeof(*mef_cfg->mef_entry);
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001436
Maithili Hingeb533be12015-03-12 00:38:39 -07001437 if (mwifiex_cmd_append_rpn_expression(priv,
1438 &mef->mef_entry[i], &pos))
1439 return -1;
1440
1441 mef_entry->exprsize =
1442 cpu_to_le16(pos - mef_entry->expr);
1443 }
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001444 cmd->size = cpu_to_le16((u16) (pos - (u8 *)mef_cfg) + S_DS_GEN);
1445
1446 return 0;
1447}
1448
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001449/* This function parse cal data from ASCII to hex */
1450static u32 mwifiex_parse_cal_cfg(u8 *src, size_t len, u8 *dst)
1451{
1452 u8 *s = src, *d = dst;
1453
1454 while (s - src < len) {
1455 if (*s && (isspace(*s) || *s == '\t')) {
1456 s++;
1457 continue;
1458 }
1459 if (isxdigit(*s)) {
1460 *d++ = simple_strtol(s, NULL, 16);
1461 s += 2;
1462 } else {
1463 s++;
1464 }
1465 }
1466
1467 return d - dst;
1468}
1469
Bing Zhao82efa162013-12-13 18:33:02 -08001470int mwifiex_dnld_dt_cfgdata(struct mwifiex_private *priv,
1471 struct device_node *node, const char *prefix)
Bing Zhao699b0272013-12-13 18:33:01 -08001472{
1473#ifdef CONFIG_OF
1474 struct property *prop;
1475 size_t len = strlen(prefix);
1476 int ret;
1477
1478 /* look for all matching property names */
1479 for_each_property_of_node(node, prop) {
1480 if (len > strlen(prop->name) ||
1481 strncmp(prop->name, prefix, len))
1482 continue;
1483
Bing Zhao63791cc2014-01-08 15:45:56 -08001484 /* property header is 6 bytes, data must fit in cmd buffer */
1485 if (prop && prop->value && prop->length > 6 &&
1486 prop->length <= MWIFIEX_SIZE_OF_CMD_BUFFER - S_DS_GEN) {
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08001487 ret = mwifiex_send_cmd(priv, HostCmd_CMD_CFG_DATA,
1488 HostCmd_ACT_GEN_SET, 0,
1489 prop, true);
Bing Zhao699b0272013-12-13 18:33:01 -08001490 if (ret)
1491 return ret;
1492 }
1493 }
1494#endif
1495 return 0;
1496}
1497
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001498/* This function prepares command of set_cfg_data. */
1499static int mwifiex_cmd_cfg_data(struct mwifiex_private *priv,
Bing Zhao699b0272013-12-13 18:33:01 -08001500 struct host_cmd_ds_command *cmd, void *data_buf)
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001501{
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001502 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhao699b0272013-12-13 18:33:01 -08001503 struct property *prop = data_buf;
Bing Zhaod39fbc82013-12-13 18:33:00 -08001504 u32 len;
1505 u8 *data = (u8 *)cmd + S_DS_GEN;
Bing Zhao699b0272013-12-13 18:33:01 -08001506 int ret;
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001507
Bing Zhao699b0272013-12-13 18:33:01 -08001508 if (prop) {
1509 len = prop->length;
1510 ret = of_property_read_u8_array(adapter->dt_node, prop->name,
1511 data, len);
1512 if (ret)
1513 return ret;
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301514 mwifiex_dbg(adapter, INFO,
1515 "download cfg_data from device tree: %s\n",
1516 prop->name);
Bing Zhao699b0272013-12-13 18:33:01 -08001517 } else if (adapter->cal_data->data && adapter->cal_data->size > 0) {
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001518 len = mwifiex_parse_cal_cfg((u8 *)adapter->cal_data->data,
Bing Zhaod39fbc82013-12-13 18:33:00 -08001519 adapter->cal_data->size, data);
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301520 mwifiex_dbg(adapter, INFO,
1521 "download cfg_data from config file\n");
Bing Zhao699b0272013-12-13 18:33:01 -08001522 } else {
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001523 return -1;
Bing Zhao699b0272013-12-13 18:33:01 -08001524 }
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001525
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001526 cmd->command = cpu_to_le16(HostCmd_CMD_CFG_DATA);
Bing Zhaod39fbc82013-12-13 18:33:00 -08001527 cmd->size = cpu_to_le16(S_DS_GEN + len);
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001528
1529 return 0;
1530}
1531
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07001532static int
Avinash Patild5b036c2015-06-22 19:06:20 +05301533mwifiex_cmd_set_mc_policy(struct mwifiex_private *priv,
1534 struct host_cmd_ds_command *cmd,
1535 u16 cmd_action, void *data_buf)
1536{
1537 struct host_cmd_ds_multi_chan_policy *mc_pol = &cmd->params.mc_policy;
1538 const u16 *drcs_info = data_buf;
1539
1540 mc_pol->action = cpu_to_le16(cmd_action);
1541 mc_pol->policy = cpu_to_le16(*drcs_info);
1542 cmd->command = cpu_to_le16(HostCmd_CMD_MC_POLICY);
1543 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_multi_chan_policy) +
1544 S_DS_GEN);
1545 return 0;
1546}
1547
Amitkumar Karwar46dbe242015-10-09 04:26:23 -07001548static int mwifiex_cmd_robust_coex(struct mwifiex_private *priv,
1549 struct host_cmd_ds_command *cmd,
1550 u16 cmd_action, bool *is_timeshare)
1551{
1552 struct host_cmd_ds_robust_coex *coex = &cmd->params.coex;
1553 struct mwifiex_ie_types_robust_coex *coex_tlv;
1554
1555 cmd->command = cpu_to_le16(HostCmd_CMD_ROBUST_COEX);
1556 cmd->size = cpu_to_le16(sizeof(*coex) + sizeof(*coex_tlv) + S_DS_GEN);
1557
1558 coex->action = cpu_to_le16(cmd_action);
1559 coex_tlv = (struct mwifiex_ie_types_robust_coex *)
1560 ((u8 *)coex + sizeof(*coex));
1561 coex_tlv->header.type = cpu_to_le16(TLV_TYPE_ROBUST_COEX);
1562 coex_tlv->header.len = cpu_to_le16(sizeof(coex_tlv->mode));
1563
1564 if (coex->action == HostCmd_ACT_GEN_GET)
1565 return 0;
1566
1567 if (*is_timeshare)
1568 coex_tlv->mode = cpu_to_le32(MWIFIEX_COEX_MODE_TIMESHARE);
1569 else
1570 coex_tlv->mode = cpu_to_le32(MWIFIEX_COEX_MODE_SPATIAL);
1571
1572 return 0;
1573}
1574
Ganapathi Bhatf6b1cbe2016-04-05 01:04:34 -07001575static int mwifiex_cmd_gtk_rekey_offload(struct mwifiex_private *priv,
1576 struct host_cmd_ds_command *cmd,
1577 u16 cmd_action,
1578 struct cfg80211_gtk_rekey_data *data)
1579{
1580 struct host_cmd_ds_gtk_rekey_params *rekey = &cmd->params.rekey;
1581 u64 rekey_ctr;
1582
1583 cmd->command = cpu_to_le16(HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG);
1584 cmd->size = cpu_to_le16(sizeof(*rekey) + S_DS_GEN);
1585
1586 rekey->action = cpu_to_le16(cmd_action);
1587 if (cmd_action == HostCmd_ACT_GEN_SET) {
1588 memcpy(rekey->kek, data->kek, NL80211_KEK_LEN);
1589 memcpy(rekey->kck, data->kck, NL80211_KCK_LEN);
1590 rekey_ctr = be64_to_cpup((__be64 *)data->replay_ctr);
1591 rekey->replay_ctr_low = cpu_to_le32((u32)rekey_ctr);
1592 rekey->replay_ctr_high =
1593 cpu_to_le32((u32)((u64)rekey_ctr >> 32));
1594 }
1595
1596 return 0;
1597}
1598
Avinash Patild5b036c2015-06-22 19:06:20 +05301599static int
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07001600mwifiex_cmd_coalesce_cfg(struct mwifiex_private *priv,
1601 struct host_cmd_ds_command *cmd,
1602 u16 cmd_action, void *data_buf)
1603{
1604 struct host_cmd_ds_coalesce_cfg *coalesce_cfg =
1605 &cmd->params.coalesce_cfg;
1606 struct mwifiex_ds_coalesce_cfg *cfg = data_buf;
1607 struct coalesce_filt_field_param *param;
1608 u16 cnt, idx, length;
1609 struct coalesce_receive_filt_rule *rule;
1610
1611 cmd->command = cpu_to_le16(HostCmd_CMD_COALESCE_CFG);
1612 cmd->size = cpu_to_le16(S_DS_GEN);
1613
1614 coalesce_cfg->action = cpu_to_le16(cmd_action);
1615 coalesce_cfg->num_of_rules = cpu_to_le16(cfg->num_of_rules);
1616 rule = coalesce_cfg->rule;
1617
1618 for (cnt = 0; cnt < cfg->num_of_rules; cnt++) {
1619 rule->header.type = cpu_to_le16(TLV_TYPE_COALESCE_RULE);
1620 rule->max_coalescing_delay =
1621 cpu_to_le16(cfg->rule[cnt].max_coalescing_delay);
1622 rule->pkt_type = cfg->rule[cnt].pkt_type;
1623 rule->num_of_fields = cfg->rule[cnt].num_of_fields;
1624
1625 length = 0;
1626
1627 param = rule->params;
1628 for (idx = 0; idx < cfg->rule[cnt].num_of_fields; idx++) {
1629 param->operation = cfg->rule[cnt].params[idx].operation;
1630 param->operand_len =
1631 cfg->rule[cnt].params[idx].operand_len;
1632 param->offset =
1633 cpu_to_le16(cfg->rule[cnt].params[idx].offset);
1634 memcpy(param->operand_byte_stream,
1635 cfg->rule[cnt].params[idx].operand_byte_stream,
1636 param->operand_len);
1637
1638 length += sizeof(struct coalesce_filt_field_param);
1639
1640 param++;
1641 }
1642
1643 /* Total rule length is sizeof max_coalescing_delay(u16),
1644 * num_of_fields(u8), pkt_type(u8) and total length of the all
1645 * params
1646 */
1647 rule->header.len = cpu_to_le16(length + sizeof(u16) +
1648 sizeof(u8) + sizeof(u8));
1649
1650 /* Add the rule length to the command size*/
1651 le16_add_cpu(&cmd->size, le16_to_cpu(rule->header.len) +
1652 sizeof(struct mwifiex_ie_types_header));
1653
1654 rule = (void *)((u8 *)rule->params + length);
1655 }
1656
1657 /* Add sizeof action, num_of_rules to total command length */
1658 le16_add_cpu(&cmd->size, sizeof(u16) + sizeof(u16));
1659
1660 return 0;
1661}
1662
Avinash Patil429d90d2014-02-07 16:27:34 -08001663static int
Xinming Hu449b8bb2015-06-22 19:06:12 +05301664mwifiex_cmd_tdls_config(struct mwifiex_private *priv,
1665 struct host_cmd_ds_command *cmd,
1666 u16 cmd_action, void *data_buf)
1667{
1668 struct host_cmd_ds_tdls_config *tdls_config = &cmd->params.tdls_config;
1669 struct mwifiex_tdls_init_cs_params *config;
1670 struct mwifiex_tdls_config *init_config;
1671 u16 len;
1672
1673 cmd->command = cpu_to_le16(HostCmd_CMD_TDLS_CONFIG);
1674 cmd->size = cpu_to_le16(S_DS_GEN);
1675 tdls_config->tdls_action = cpu_to_le16(cmd_action);
1676 le16_add_cpu(&cmd->size, sizeof(tdls_config->tdls_action));
1677
1678 switch (cmd_action) {
1679 case ACT_TDLS_CS_ENABLE_CONFIG:
1680 init_config = data_buf;
1681 len = sizeof(*init_config);
1682 memcpy(tdls_config->tdls_data, init_config, len);
1683 break;
1684 case ACT_TDLS_CS_INIT:
1685 config = data_buf;
1686 len = sizeof(*config);
1687 memcpy(tdls_config->tdls_data, config, len);
1688 break;
1689 case ACT_TDLS_CS_STOP:
1690 len = sizeof(struct mwifiex_tdls_stop_cs_params);
1691 memcpy(tdls_config->tdls_data, data_buf, len);
1692 break;
1693 case ACT_TDLS_CS_PARAMS:
1694 len = sizeof(struct mwifiex_tdls_config_cs_params);
1695 memcpy(tdls_config->tdls_data, data_buf, len);
1696 break;
1697 default:
1698 mwifiex_dbg(priv->adapter, ERROR,
1699 "Unknown TDLS configuration\n");
1700 return -ENOTSUPP;
1701 }
1702
1703 le16_add_cpu(&cmd->size, len);
1704 return 0;
1705}
1706
1707static int
Avinash Patil429d90d2014-02-07 16:27:34 -08001708mwifiex_cmd_tdls_oper(struct mwifiex_private *priv,
1709 struct host_cmd_ds_command *cmd,
1710 void *data_buf)
1711{
1712 struct host_cmd_ds_tdls_oper *tdls_oper = &cmd->params.tdls_oper;
1713 struct mwifiex_ds_tdls_oper *oper = data_buf;
1714 struct mwifiex_sta_node *sta_ptr;
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001715 struct host_cmd_tlv_rates *tlv_rates;
1716 struct mwifiex_ie_types_htcap *ht_capab;
1717 struct mwifiex_ie_types_qos_info *wmm_qos_info;
1718 struct mwifiex_ie_types_extcap *extcap;
Avinash Patil5f6d5982014-02-07 16:30:39 -08001719 struct mwifiex_ie_types_vhtcap *vht_capab;
1720 struct mwifiex_ie_types_aid *aid;
Avinash Patild29caf22014-05-06 22:02:43 -07001721 struct mwifiex_ie_types_tdls_idle_timeout *timeout;
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001722 u8 *pos, qos_info;
1723 u16 config_len = 0;
1724 struct station_parameters *params = priv->sta_params;
Avinash Patil429d90d2014-02-07 16:27:34 -08001725
1726 cmd->command = cpu_to_le16(HostCmd_CMD_TDLS_OPER);
1727 cmd->size = cpu_to_le16(S_DS_GEN);
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001728 le16_add_cpu(&cmd->size, sizeof(struct host_cmd_ds_tdls_oper));
Avinash Patil429d90d2014-02-07 16:27:34 -08001729
1730 tdls_oper->reason = 0;
1731 memcpy(tdls_oper->peer_mac, oper->peer_mac, ETH_ALEN);
1732 sta_ptr = mwifiex_get_sta_entry(priv, oper->peer_mac);
1733
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001734 pos = (u8 *)tdls_oper + sizeof(struct host_cmd_ds_tdls_oper);
1735
Avinash Patil429d90d2014-02-07 16:27:34 -08001736 switch (oper->tdls_action) {
1737 case MWIFIEX_TDLS_DISABLE_LINK:
1738 tdls_oper->tdls_action = cpu_to_le16(ACT_TDLS_DELETE);
1739 break;
Avinash Patile48e0de2014-02-07 16:30:33 -08001740 case MWIFIEX_TDLS_CREATE_LINK:
1741 tdls_oper->tdls_action = cpu_to_le16(ACT_TDLS_CREATE);
1742 break;
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001743 case MWIFIEX_TDLS_CONFIG_LINK:
1744 tdls_oper->tdls_action = cpu_to_le16(ACT_TDLS_CONFIG);
1745
1746 if (!params) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301747 mwifiex_dbg(priv->adapter, ERROR,
1748 "TDLS config params not available for %pM\n",
1749 oper->peer_mac);
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001750 return -ENODATA;
1751 }
1752
1753 *(__le16 *)pos = cpu_to_le16(params->capability);
1754 config_len += sizeof(params->capability);
1755
1756 qos_info = params->uapsd_queues | (params->max_sp << 5);
1757 wmm_qos_info = (struct mwifiex_ie_types_qos_info *)(pos +
1758 config_len);
1759 wmm_qos_info->header.type = cpu_to_le16(WLAN_EID_QOS_CAPA);
1760 wmm_qos_info->header.len = cpu_to_le16(sizeof(qos_info));
1761 wmm_qos_info->qos_info = qos_info;
1762 config_len += sizeof(struct mwifiex_ie_types_qos_info);
1763
1764 if (params->ht_capa) {
1765 ht_capab = (struct mwifiex_ie_types_htcap *)(pos +
1766 config_len);
1767 ht_capab->header.type =
1768 cpu_to_le16(WLAN_EID_HT_CAPABILITY);
1769 ht_capab->header.len =
1770 cpu_to_le16(sizeof(struct ieee80211_ht_cap));
1771 memcpy(&ht_capab->ht_cap, params->ht_capa,
1772 sizeof(struct ieee80211_ht_cap));
1773 config_len += sizeof(struct mwifiex_ie_types_htcap);
1774 }
1775
1776 if (params->supported_rates && params->supported_rates_len) {
1777 tlv_rates = (struct host_cmd_tlv_rates *)(pos +
1778 config_len);
1779 tlv_rates->header.type =
1780 cpu_to_le16(WLAN_EID_SUPP_RATES);
1781 tlv_rates->header.len =
1782 cpu_to_le16(params->supported_rates_len);
1783 memcpy(tlv_rates->rates, params->supported_rates,
1784 params->supported_rates_len);
1785 config_len += sizeof(struct host_cmd_tlv_rates) +
1786 params->supported_rates_len;
1787 }
1788
1789 if (params->ext_capab && params->ext_capab_len) {
1790 extcap = (struct mwifiex_ie_types_extcap *)(pos +
1791 config_len);
1792 extcap->header.type =
1793 cpu_to_le16(WLAN_EID_EXT_CAPABILITY);
1794 extcap->header.len = cpu_to_le16(params->ext_capab_len);
1795 memcpy(extcap->ext_capab, params->ext_capab,
1796 params->ext_capab_len);
1797 config_len += sizeof(struct mwifiex_ie_types_extcap) +
1798 params->ext_capab_len;
1799 }
Avinash Patil5f6d5982014-02-07 16:30:39 -08001800 if (params->vht_capa) {
1801 vht_capab = (struct mwifiex_ie_types_vhtcap *)(pos +
1802 config_len);
1803 vht_capab->header.type =
1804 cpu_to_le16(WLAN_EID_VHT_CAPABILITY);
1805 vht_capab->header.len =
1806 cpu_to_le16(sizeof(struct ieee80211_vht_cap));
1807 memcpy(&vht_capab->vht_cap, params->vht_capa,
1808 sizeof(struct ieee80211_vht_cap));
1809 config_len += sizeof(struct mwifiex_ie_types_vhtcap);
1810 }
1811 if (params->aid) {
1812 aid = (struct mwifiex_ie_types_aid *)(pos + config_len);
1813 aid->header.type = cpu_to_le16(WLAN_EID_AID);
1814 aid->header.len = cpu_to_le16(sizeof(params->aid));
1815 aid->aid = cpu_to_le16(params->aid);
1816 config_len += sizeof(struct mwifiex_ie_types_aid);
1817 }
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001818
Avinash Patild29caf22014-05-06 22:02:43 -07001819 timeout = (void *)(pos + config_len);
1820 timeout->header.type = cpu_to_le16(TLV_TYPE_TDLS_IDLE_TIMEOUT);
1821 timeout->header.len = cpu_to_le16(sizeof(timeout->value));
Bing Zhao30fa51c2014-07-11 20:57:13 -07001822 timeout->value = cpu_to_le16(MWIFIEX_TDLS_IDLE_TIMEOUT_IN_SEC);
Avinash Patild29caf22014-05-06 22:02:43 -07001823 config_len += sizeof(struct mwifiex_ie_types_tdls_idle_timeout);
1824
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001825 break;
Avinash Patil429d90d2014-02-07 16:27:34 -08001826 default:
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05301827 mwifiex_dbg(priv->adapter, ERROR, "Unknown TDLS operation\n");
Avinash Patil429d90d2014-02-07 16:27:34 -08001828 return -ENOTSUPP;
1829 }
1830
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001831 le16_add_cpu(&cmd->size, config_len);
Avinash Patil429d90d2014-02-07 16:27:34 -08001832
1833 return 0;
1834}
Zhaoyang Liu92263a82015-03-13 17:37:58 +05301835
1836/* This function prepares command of sdio rx aggr info. */
1837static int mwifiex_cmd_sdio_rx_aggr_cfg(struct host_cmd_ds_command *cmd,
1838 u16 cmd_action, void *data_buf)
1839{
1840 struct host_cmd_sdio_sp_rx_aggr_cfg *cfg =
1841 &cmd->params.sdio_rx_aggr_cfg;
1842
1843 cmd->command = cpu_to_le16(HostCmd_CMD_SDIO_SP_RX_AGGR_CFG);
1844 cmd->size =
1845 cpu_to_le16(sizeof(struct host_cmd_sdio_sp_rx_aggr_cfg) +
1846 S_DS_GEN);
1847 cfg->action = cmd_action;
1848 if (cmd_action == HostCmd_ACT_GEN_SET)
1849 cfg->enable = *(u8 *)data_buf;
1850
1851 return 0;
1852}
1853
chunfan chen8de00f12016-01-13 01:26:55 -08001854/* This function prepares command to get HS wakeup reason.
1855 *
1856 * Preparation includes -
1857 * - Setting command ID, action and proper size
1858 * - Ensuring correct endian-ness
1859 */
1860static int mwifiex_cmd_get_wakeup_reason(struct mwifiex_private *priv,
1861 struct host_cmd_ds_command *cmd)
1862{
1863 cmd->command = cpu_to_le16(HostCmd_CMD_HS_WAKEUP_REASON);
1864 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_wakeup_reason) +
1865 S_DS_GEN);
1866
1867 return 0;
1868}
1869
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001870/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001871 * This function prepares the commands before sending them to the firmware.
1872 *
1873 * This is a generic function which calls specific command preparation
1874 * routines based upon the command number.
1875 */
1876int mwifiex_sta_prepare_cmd(struct mwifiex_private *priv, uint16_t cmd_no,
1877 u16 cmd_action, u32 cmd_oid,
1878 void *data_buf, void *cmd_buf)
1879{
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001880 struct host_cmd_ds_command *cmd_ptr = cmd_buf;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001881 int ret = 0;
1882
1883 /* Prepare command */
1884 switch (cmd_no) {
1885 case HostCmd_CMD_GET_HW_SPEC:
1886 ret = mwifiex_cmd_get_hw_spec(priv, cmd_ptr);
1887 break;
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001888 case HostCmd_CMD_CFG_DATA:
Bing Zhao699b0272013-12-13 18:33:01 -08001889 ret = mwifiex_cmd_cfg_data(priv, cmd_ptr, data_buf);
Amitkumar Karwar388ec382013-05-17 17:50:25 -07001890 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001891 case HostCmd_CMD_MAC_CONTROL:
1892 ret = mwifiex_cmd_mac_control(priv, cmd_ptr, cmd_action,
1893 data_buf);
1894 break;
1895 case HostCmd_CMD_802_11_MAC_ADDRESS:
1896 ret = mwifiex_cmd_802_11_mac_address(priv, cmd_ptr,
1897 cmd_action);
1898 break;
1899 case HostCmd_CMD_MAC_MULTICAST_ADR:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001900 ret = mwifiex_cmd_mac_multicast_adr(cmd_ptr, cmd_action,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001901 data_buf);
1902 break;
1903 case HostCmd_CMD_TX_RATE_CFG:
1904 ret = mwifiex_cmd_tx_rate_cfg(priv, cmd_ptr, cmd_action,
1905 data_buf);
1906 break;
1907 case HostCmd_CMD_TXPWR_CFG:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001908 ret = mwifiex_cmd_tx_power_cfg(cmd_ptr, cmd_action,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001909 data_buf);
1910 break;
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001911 case HostCmd_CMD_RF_TX_PWR:
1912 ret = mwifiex_cmd_rf_tx_power(priv, cmd_ptr, cmd_action,
1913 data_buf);
1914 break;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001915 case HostCmd_CMD_RF_ANTENNA:
1916 ret = mwifiex_cmd_rf_antenna(priv, cmd_ptr, cmd_action,
1917 data_buf);
1918 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001919 case HostCmd_CMD_802_11_PS_MODE_ENH:
1920 ret = mwifiex_cmd_enh_power_mode(priv, cmd_ptr, cmd_action,
1921 (uint16_t)cmd_oid, data_buf);
1922 break;
1923 case HostCmd_CMD_802_11_HS_CFG_ENH:
1924 ret = mwifiex_cmd_802_11_hs_cfg(priv, cmd_ptr, cmd_action,
1925 (struct mwifiex_hs_config_param *) data_buf);
1926 break;
1927 case HostCmd_CMD_802_11_SCAN:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001928 ret = mwifiex_cmd_802_11_scan(cmd_ptr, data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001929 break;
Xinming Hu0c9b7f22016-01-13 01:26:52 -08001930 case HostCmd_CMD_802_11_BG_SCAN_CONFIG:
1931 ret = mwifiex_cmd_802_11_bg_scan_config(priv, cmd_ptr,
1932 data_buf);
1933 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001934 case HostCmd_CMD_802_11_BG_SCAN_QUERY:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001935 ret = mwifiex_cmd_802_11_bg_scan_query(cmd_ptr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001936 break;
1937 case HostCmd_CMD_802_11_ASSOCIATE:
1938 ret = mwifiex_cmd_802_11_associate(priv, cmd_ptr, data_buf);
1939 break;
1940 case HostCmd_CMD_802_11_DEAUTHENTICATE:
1941 ret = mwifiex_cmd_802_11_deauthenticate(priv, cmd_ptr,
1942 data_buf);
1943 break;
1944 case HostCmd_CMD_802_11_AD_HOC_START:
1945 ret = mwifiex_cmd_802_11_ad_hoc_start(priv, cmd_ptr,
1946 data_buf);
1947 break;
1948 case HostCmd_CMD_802_11_GET_LOG:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001949 ret = mwifiex_cmd_802_11_get_log(cmd_ptr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001950 break;
1951 case HostCmd_CMD_802_11_AD_HOC_JOIN:
1952 ret = mwifiex_cmd_802_11_ad_hoc_join(priv, cmd_ptr,
1953 data_buf);
1954 break;
1955 case HostCmd_CMD_802_11_AD_HOC_STOP:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001956 ret = mwifiex_cmd_802_11_ad_hoc_stop(cmd_ptr);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001957 break;
1958 case HostCmd_CMD_RSSI_INFO:
1959 ret = mwifiex_cmd_802_11_rssi_info(priv, cmd_ptr, cmd_action);
1960 break;
1961 case HostCmd_CMD_802_11_SNMP_MIB:
1962 ret = mwifiex_cmd_802_11_snmp_mib(priv, cmd_ptr, cmd_action,
1963 cmd_oid, data_buf);
1964 break;
1965 case HostCmd_CMD_802_11_TX_RATE_QUERY:
1966 cmd_ptr->command =
1967 cpu_to_le16(HostCmd_CMD_802_11_TX_RATE_QUERY);
1968 cmd_ptr->size =
1969 cpu_to_le16(sizeof(struct host_cmd_ds_tx_rate_query) +
1970 S_DS_GEN);
1971 priv->tx_rate = 0;
1972 ret = 0;
1973 break;
1974 case HostCmd_CMD_VERSION_EXT:
1975 cmd_ptr->command = cpu_to_le16(cmd_no);
1976 cmd_ptr->params.verext.version_str_sel =
1977 (u8) (*((u32 *) data_buf));
1978 memcpy(&cmd_ptr->params, data_buf,
1979 sizeof(struct host_cmd_ds_version_ext));
1980 cmd_ptr->size =
1981 cpu_to_le16(sizeof(struct host_cmd_ds_version_ext) +
1982 S_DS_GEN);
1983 ret = 0;
1984 break;
Stone Piao3cec6872012-09-25 20:23:34 -07001985 case HostCmd_CMD_MGMT_FRAME_REG:
1986 cmd_ptr->command = cpu_to_le16(cmd_no);
1987 cmd_ptr->params.reg_mask.action = cpu_to_le16(cmd_action);
1988 cmd_ptr->params.reg_mask.mask = cpu_to_le32(*(u32 *)data_buf);
1989 cmd_ptr->size =
1990 cpu_to_le16(sizeof(struct host_cmd_ds_mgmt_frame_reg) +
1991 S_DS_GEN);
1992 ret = 0;
1993 break;
Stone Piao7feb4c42012-09-25 20:23:36 -07001994 case HostCmd_CMD_REMAIN_ON_CHAN:
1995 cmd_ptr->command = cpu_to_le16(cmd_no);
1996 memcpy(&cmd_ptr->params, data_buf,
1997 sizeof(struct host_cmd_ds_remain_on_chan));
1998 cmd_ptr->size =
1999 cpu_to_le16(sizeof(struct host_cmd_ds_remain_on_chan) +
2000 S_DS_GEN);
2001 break;
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -07002002 case HostCmd_CMD_11AC_CFG:
2003 ret = mwifiex_cmd_11ac_cfg(priv, cmd_ptr, cmd_action, data_buf);
2004 break;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07002005 case HostCmd_CMD_P2P_MODE_CFG:
2006 cmd_ptr->command = cpu_to_le16(cmd_no);
2007 cmd_ptr->params.mode_cfg.action = cpu_to_le16(cmd_action);
2008 cmd_ptr->params.mode_cfg.mode = cpu_to_le16(*(u16 *)data_buf);
2009 cmd_ptr->size =
2010 cpu_to_le16(sizeof(struct host_cmd_ds_p2p_mode_cfg) +
2011 S_DS_GEN);
2012 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002013 case HostCmd_CMD_FUNC_INIT:
2014 if (priv->adapter->hw_status == MWIFIEX_HW_STATUS_RESET)
2015 priv->adapter->hw_status = MWIFIEX_HW_STATUS_READY;
2016 cmd_ptr->command = cpu_to_le16(cmd_no);
2017 cmd_ptr->size = cpu_to_le16(S_DS_GEN);
2018 break;
2019 case HostCmd_CMD_FUNC_SHUTDOWN:
2020 priv->adapter->hw_status = MWIFIEX_HW_STATUS_RESET;
2021 cmd_ptr->command = cpu_to_le16(cmd_no);
2022 cmd_ptr->size = cpu_to_le16(S_DS_GEN);
2023 break;
2024 case HostCmd_CMD_11N_ADDBA_REQ:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07002025 ret = mwifiex_cmd_11n_addba_req(cmd_ptr, data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002026 break;
2027 case HostCmd_CMD_11N_DELBA:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07002028 ret = mwifiex_cmd_11n_delba(cmd_ptr, data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002029 break;
2030 case HostCmd_CMD_11N_ADDBA_RSP:
2031 ret = mwifiex_cmd_11n_addba_rsp_gen(priv, cmd_ptr, data_buf);
2032 break;
2033 case HostCmd_CMD_802_11_KEY_MATERIAL:
2034 ret = mwifiex_cmd_802_11_key_material(priv, cmd_ptr,
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07002035 cmd_action, cmd_oid,
2036 data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002037 break;
2038 case HostCmd_CMD_802_11D_DOMAIN_INFO:
2039 ret = mwifiex_cmd_802_11d_domain_info(priv, cmd_ptr,
Yogesh Ashok Powar9c05fd72012-03-13 19:22:40 -07002040 cmd_action);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002041 break;
2042 case HostCmd_CMD_RECONFIGURE_TX_BUFF:
2043 ret = mwifiex_cmd_recfg_tx_buf(priv, cmd_ptr, cmd_action,
2044 data_buf);
2045 break;
2046 case HostCmd_CMD_AMSDU_AGGR_CTRL:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07002047 ret = mwifiex_cmd_amsdu_aggr_ctrl(cmd_ptr, cmd_action,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002048 data_buf);
2049 break;
2050 case HostCmd_CMD_11N_CFG:
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08002051 ret = mwifiex_cmd_11n_cfg(priv, cmd_ptr, cmd_action, data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002052 break;
2053 case HostCmd_CMD_WMM_GET_STATUS:
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05302054 mwifiex_dbg(priv->adapter, CMD,
2055 "cmd: WMM: WMM_GET_STATUS cmd sent\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002056 cmd_ptr->command = cpu_to_le16(HostCmd_CMD_WMM_GET_STATUS);
2057 cmd_ptr->size =
2058 cpu_to_le16(sizeof(struct host_cmd_ds_wmm_get_status) +
2059 S_DS_GEN);
2060 ret = 0;
2061 break;
2062 case HostCmd_CMD_802_11_IBSS_COALESCING_STATUS:
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07002063 ret = mwifiex_cmd_ibss_coalescing_status(cmd_ptr, cmd_action,
2064 data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002065 break;
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08002066 case HostCmd_CMD_802_11_SCAN_EXT:
2067 ret = mwifiex_cmd_802_11_scan_ext(priv, cmd_ptr, data_buf);
2068 break;
Chin-ran Loc2c6c852015-05-12 00:48:17 +05302069 case HostCmd_CMD_MEM_ACCESS:
2070 ret = mwifiex_cmd_mem_access(cmd_ptr, cmd_action, data_buf);
2071 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002072 case HostCmd_CMD_MAC_REG_ACCESS:
2073 case HostCmd_CMD_BBP_REG_ACCESS:
2074 case HostCmd_CMD_RF_REG_ACCESS:
2075 case HostCmd_CMD_PMIC_REG_ACCESS:
2076 case HostCmd_CMD_CAU_REG_ACCESS:
2077 case HostCmd_CMD_802_11_EEPROM_ACCESS:
2078 ret = mwifiex_cmd_reg_access(cmd_ptr, cmd_action, data_buf);
2079 break;
2080 case HostCmd_CMD_SET_BSS_MODE:
2081 cmd_ptr->command = cpu_to_le16(cmd_no);
Bing Zhaoeecd8252011-03-28 17:55:41 -07002082 if (priv->bss_mode == NL80211_IFTYPE_ADHOC)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002083 cmd_ptr->params.bss_mode.con_type =
2084 CONNECTION_TYPE_ADHOC;
Aniket Nagarnaikae86c582015-07-02 06:07:02 -07002085 else if (priv->bss_mode == NL80211_IFTYPE_STATION ||
2086 priv->bss_mode == NL80211_IFTYPE_P2P_CLIENT)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002087 cmd_ptr->params.bss_mode.con_type =
2088 CONNECTION_TYPE_INFRA;
Aniket Nagarnaikae86c582015-07-02 06:07:02 -07002089 else if (priv->bss_mode == NL80211_IFTYPE_AP ||
2090 priv->bss_mode == NL80211_IFTYPE_P2P_GO)
Stone Piao9197ab92012-09-25 20:23:42 -07002091 cmd_ptr->params.bss_mode.con_type = CONNECTION_TYPE_AP;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002092 cmd_ptr->size = cpu_to_le16(sizeof(struct
2093 host_cmd_ds_set_bss_mode) + S_DS_GEN);
2094 ret = 0;
2095 break;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002096 case HostCmd_CMD_PCIE_DESC_DETAILS:
2097 ret = mwifiex_cmd_pcie_host_spec(priv, cmd_ptr, cmd_action);
2098 break;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07002099 case HostCmd_CMD_802_11_SUBSCRIBE_EVENT:
2100 ret = mwifiex_cmd_802_11_subsc_evt(priv, cmd_ptr, data_buf);
2101 break;
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08002102 case HostCmd_CMD_MEF_CFG:
2103 ret = mwifiex_cmd_mef_cfg(priv, cmd_ptr, data_buf);
2104 break;
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07002105 case HostCmd_CMD_COALESCE_CFG:
2106 ret = mwifiex_cmd_coalesce_cfg(priv, cmd_ptr, cmd_action,
2107 data_buf);
2108 break;
Avinash Patil429d90d2014-02-07 16:27:34 -08002109 case HostCmd_CMD_TDLS_OPER:
2110 ret = mwifiex_cmd_tdls_oper(priv, cmd_ptr, data_buf);
2111 break;
Xinming Hu449b8bb2015-06-22 19:06:12 +05302112 case HostCmd_CMD_TDLS_CONFIG:
2113 ret = mwifiex_cmd_tdls_config(priv, cmd_ptr, cmd_action,
2114 data_buf);
2115 break;
Avinash Patil85afb182015-01-28 15:54:21 +05302116 case HostCmd_CMD_CHAN_REPORT_REQUEST:
2117 ret = mwifiex_cmd_issue_chan_report_request(priv, cmd_ptr,
2118 data_buf);
2119 break;
Zhaoyang Liu92263a82015-03-13 17:37:58 +05302120 case HostCmd_CMD_SDIO_SP_RX_AGGR_CFG:
2121 ret = mwifiex_cmd_sdio_rx_aggr_cfg(cmd_ptr, cmd_action,
2122 data_buf);
2123 break;
chunfan chen8de00f12016-01-13 01:26:55 -08002124 case HostCmd_CMD_HS_WAKEUP_REASON:
2125 ret = mwifiex_cmd_get_wakeup_reason(priv, cmd_ptr);
2126 break;
Avinash Patild5b036c2015-06-22 19:06:20 +05302127 case HostCmd_CMD_MC_POLICY:
2128 ret = mwifiex_cmd_set_mc_policy(priv, cmd_ptr, cmd_action,
2129 data_buf);
2130 break;
Amitkumar Karwar46dbe242015-10-09 04:26:23 -07002131 case HostCmd_CMD_ROBUST_COEX:
2132 ret = mwifiex_cmd_robust_coex(priv, cmd_ptr, cmd_action,
2133 data_buf);
2134 break;
Ganapathi Bhatf6b1cbe2016-04-05 01:04:34 -07002135 case HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG:
2136 ret = mwifiex_cmd_gtk_rekey_offload(priv, cmd_ptr, cmd_action,
2137 data_buf);
2138 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002139 default:
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05302140 mwifiex_dbg(priv->adapter, ERROR,
2141 "PREP_CMD: unknown cmd- %#x\n", cmd_no);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002142 ret = -1;
2143 break;
2144 }
2145 return ret;
2146}
2147
2148/*
2149 * This function issues commands to initialize firmware.
2150 *
2151 * This is called after firmware download to bring the card to
2152 * working state.
Avinash Patil1247cc12015-01-28 15:42:02 +05302153 * Function is also called during reinitialization of virtual
2154 * interfaces.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002155 *
2156 * The following commands are issued sequentially -
Amitkumar Karward930fae2011-10-11 17:41:21 -07002157 * - Set PCI-Express host buffer configuration (PCIE only)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002158 * - Function init (for first interface only)
2159 * - Read MAC address (for first interface only)
2160 * - Reconfigure Tx buffer size (for first interface only)
2161 * - Enable auto deep sleep (for first interface only)
2162 * - Get Tx rate
2163 * - Get Tx power
2164 * - Set IBSS coalescing status
2165 * - Set AMSDU aggregation control
2166 * - Set 11d control
2167 * - Set MAC control (this must be the last command to initialize firmware)
2168 */
Avinash Patil1247cc12015-01-28 15:42:02 +05302169int mwifiex_sta_init_cmd(struct mwifiex_private *priv, u8 first_sta, bool init)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002170{
Amitkumar Karwar388ec382013-05-17 17:50:25 -07002171 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07002172 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002173 u16 enable = true;
2174 struct mwifiex_ds_11n_amsdu_aggr_ctrl amsdu_aggr_ctrl;
2175 struct mwifiex_ds_auto_ds auto_ds;
2176 enum state_11d_t state_11d;
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -07002177 struct mwifiex_ds_11n_tx_cfg tx_cfg;
Zhaoyang Liu92263a82015-03-13 17:37:58 +05302178 u8 sdio_sp_rx_aggr_enable;
Xinming Huce4f6f02016-04-18 05:22:23 -07002179 int data;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002180
2181 if (first_sta) {
Amitkumar Karward930fae2011-10-11 17:41:21 -07002182 if (priv->adapter->iface_type == MWIFIEX_PCIE) {
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002183 ret = mwifiex_send_cmd(priv,
2184 HostCmd_CMD_PCIE_DESC_DETAILS,
2185 HostCmd_ACT_GEN_SET, 0, NULL,
2186 true);
Amitkumar Karward930fae2011-10-11 17:41:21 -07002187 if (ret)
2188 return -1;
2189 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002190
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002191 ret = mwifiex_send_cmd(priv, HostCmd_CMD_FUNC_INIT,
2192 HostCmd_ACT_GEN_SET, 0, NULL, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002193 if (ret)
2194 return -1;
Amitkumar Karwar388ec382013-05-17 17:50:25 -07002195
Bing Zhao699b0272013-12-13 18:33:01 -08002196 /* Download calibration data to firmware.
2197 * The cal-data can be read from device tree and/or
2198 * a configuration file and downloaded to firmware.
2199 */
Xinming Huce4f6f02016-04-18 05:22:23 -07002200 if (priv->adapter->iface_type == MWIFIEX_SDIO &&
2201 adapter->dev->of_node) {
2202 adapter->dt_node = adapter->dev->of_node;
2203 if (of_property_read_u32(adapter->dt_node,
2204 "marvell,wakeup-pin",
2205 &data) == 0) {
2206 pr_debug("Wakeup pin = 0x%x\n", data);
2207 adapter->hs_cfg.gpio = data;
2208 }
2209
Bing Zhao699b0272013-12-13 18:33:01 -08002210 ret = mwifiex_dnld_dt_cfgdata(priv, adapter->dt_node,
2211 "marvell,caldata");
2212 if (ret)
2213 return -1;
2214 }
2215
Amitkumar Karwar388ec382013-05-17 17:50:25 -07002216 if (adapter->cal_data) {
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002217 ret = mwifiex_send_cmd(priv, HostCmd_CMD_CFG_DATA,
2218 HostCmd_ACT_GEN_SET, 0, NULL,
2219 true);
Amitkumar Karwar388ec382013-05-17 17:50:25 -07002220 if (ret)
2221 return -1;
2222 }
2223
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002224 /* Read MAC address from HW */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002225 ret = mwifiex_send_cmd(priv, HostCmd_CMD_GET_HW_SPEC,
2226 HostCmd_ACT_GEN_GET, 0, NULL, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002227 if (ret)
2228 return -1;
2229
Zhaoyang Liu92263a82015-03-13 17:37:58 +05302230 /** Set SDIO Single Port RX Aggr Info */
2231 if (priv->adapter->iface_type == MWIFIEX_SDIO &&
Xinming Hu9a9053c2015-09-18 06:32:06 -07002232 ISSUPP_SDIO_SPA_ENABLED(priv->adapter->fw_cap_info) &&
2233 !priv->adapter->host_disable_sdio_rx_aggr) {
Zhaoyang Liu92263a82015-03-13 17:37:58 +05302234 sdio_sp_rx_aggr_enable = true;
2235 ret = mwifiex_send_cmd(priv,
2236 HostCmd_CMD_SDIO_SP_RX_AGGR_CFG,
2237 HostCmd_ACT_GEN_SET, 0,
2238 &sdio_sp_rx_aggr_enable,
2239 true);
2240 if (ret) {
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05302241 mwifiex_dbg(priv->adapter, ERROR,
2242 "error while enabling SP aggregation..disable it");
Zhaoyang Liu92263a82015-03-13 17:37:58 +05302243 adapter->sdio_rx_aggr_enable = false;
2244 }
2245 }
2246
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002247 /* Reconfigure tx buf size */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002248 ret = mwifiex_send_cmd(priv, HostCmd_CMD_RECONFIGURE_TX_BUFF,
2249 HostCmd_ACT_GEN_SET, 0,
2250 &priv->adapter->tx_buf_size, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002251 if (ret)
2252 return -1;
2253
Avinash Patil03785382012-05-08 18:30:14 -07002254 if (priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
2255 /* Enable IEEE PS by default */
2256 priv->adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_PSP;
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002257 ret = mwifiex_send_cmd(priv,
2258 HostCmd_CMD_802_11_PS_MODE_ENH,
2259 EN_AUTO_PS, BITMAP_STA_PS, NULL,
2260 true);
Avinash Patil03785382012-05-08 18:30:14 -07002261 if (ret)
2262 return -1;
2263 }
Avinash Patild5b036c2015-06-22 19:06:20 +05302264
Avinash Patilde9e9932015-06-22 19:06:21 +05302265 if (drcs) {
2266 adapter->drcs_enabled = true;
2267 if (ISSUPP_DRCS_ENABLED(adapter->fw_cap_info))
2268 ret = mwifiex_send_cmd(priv,
2269 HostCmd_CMD_MC_POLICY,
2270 HostCmd_ACT_GEN_SET, 0,
2271 &adapter->drcs_enabled,
2272 true);
Avinash Patild5b036c2015-06-22 19:06:20 +05302273 if (ret)
2274 return -1;
Avinash Patilde9e9932015-06-22 19:06:21 +05302275 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002276 }
2277
2278 /* get tx rate */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002279 ret = mwifiex_send_cmd(priv, HostCmd_CMD_TX_RATE_CFG,
2280 HostCmd_ACT_GEN_GET, 0, NULL, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002281 if (ret)
2282 return -1;
2283 priv->data_rate = 0;
2284
2285 /* get tx power */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002286 ret = mwifiex_send_cmd(priv, HostCmd_CMD_RF_TX_PWR,
2287 HostCmd_ACT_GEN_GET, 0, NULL, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002288 if (ret)
2289 return -1;
2290
Avinash Patil03785382012-05-08 18:30:14 -07002291 if (priv->bss_type == MWIFIEX_BSS_TYPE_STA) {
2292 /* set ibss coalescing_status */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002293 ret = mwifiex_send_cmd(
2294 priv,
2295 HostCmd_CMD_802_11_IBSS_COALESCING_STATUS,
2296 HostCmd_ACT_GEN_SET, 0, &enable, true);
Avinash Patil03785382012-05-08 18:30:14 -07002297 if (ret)
2298 return -1;
2299 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002300
2301 memset(&amsdu_aggr_ctrl, 0, sizeof(amsdu_aggr_ctrl));
2302 amsdu_aggr_ctrl.enable = true;
2303 /* Send request to firmware */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002304 ret = mwifiex_send_cmd(priv, HostCmd_CMD_AMSDU_AGGR_CTRL,
2305 HostCmd_ACT_GEN_SET, 0,
2306 &amsdu_aggr_ctrl, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002307 if (ret)
2308 return -1;
2309 /* MAC Control must be the last command in init_fw */
2310 /* set MAC Control */
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002311 ret = mwifiex_send_cmd(priv, HostCmd_CMD_MAC_CONTROL,
2312 HostCmd_ACT_GEN_SET, 0,
2313 &priv->curr_pkt_filter, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002314 if (ret)
2315 return -1;
2316
Avinash Patil0b4155d2014-12-23 19:14:12 +05302317 if (!disable_auto_ds &&
2318 first_sta && priv->adapter->iface_type != MWIFIEX_USB &&
Avinash Patil03785382012-05-08 18:30:14 -07002319 priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002320 /* Enable auto deep sleep */
2321 auto_ds.auto_ds = DEEP_SLEEP_ON;
2322 auto_ds.idle_time = DEEP_SLEEP_IDLE_TIME;
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002323 ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_PS_MODE_ENH,
2324 EN_AUTO_PS, BITMAP_AUTO_DS,
2325 &auto_ds, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002326 if (ret)
2327 return -1;
2328 }
2329
Avinash Patil03785382012-05-08 18:30:14 -07002330 if (priv->bss_type != MWIFIEX_BSS_TYPE_UAP) {
2331 /* Send cmd to FW to enable/disable 11D function */
2332 state_11d = ENABLE_11D;
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002333 ret = mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SNMP_MIB,
2334 HostCmd_ACT_GEN_SET, DOT11D_I,
2335 &state_11d, true);
Avinash Patil03785382012-05-08 18:30:14 -07002336 if (ret)
Zhaoyang Liuacebe8c2015-05-12 00:48:20 +05302337 mwifiex_dbg(priv->adapter, ERROR,
2338 "11D: failed to enable 11D\n");
Avinash Patil03785382012-05-08 18:30:14 -07002339 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002340
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -07002341 /* Send cmd to FW to configure 11n specific configuration
2342 * (Short GI, Channel BW, Green field support etc.) for transmit
2343 */
2344 tx_cfg.tx_htcap = MWIFIEX_FW_DEF_HTTXCFG;
Bing Zhaofa0ecbb2014-02-27 19:35:12 -08002345 ret = mwifiex_send_cmd(priv, HostCmd_CMD_11N_CFG,
2346 HostCmd_ACT_GEN_SET, 0, &tx_cfg, true);
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -07002347
Avinash Patil1247cc12015-01-28 15:42:02 +05302348 if (init) {
2349 /* set last_init_cmd before sending the command */
2350 priv->adapter->last_init_cmd = HostCmd_CMD_11N_CFG;
2351 ret = -EINPROGRESS;
2352 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002353
2354 return ret;
2355}