2 * NXP Wireless LAN device driver: station command response handling
4 * Copyright 2011-2020 NXP
6 * This software file (the "File") is distributed by NXP
7 * 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.
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.
31 * This function handles the command response error case.
33 * For scan response error, the function cancels all the pending
34 * scan commands and generates an event to inform the applications
35 * of the scan completion.
37 * For Power Save command failure, we do not retry enter PS
38 * command in case of Ad-hoc mode.
40 * For all other response errors, the current command buffer is freed
41 * and returned to the free command queue.
44 mwifiex_process_cmdresp_error(struct mwifiex_private
*priv
,
45 struct host_cmd_ds_command
*resp
)
47 struct mwifiex_adapter
*adapter
= priv
->adapter
;
48 struct host_cmd_ds_802_11_ps_mode_enh
*pm
;
50 mwifiex_dbg(adapter
, ERROR
,
51 "CMD_RESP: cmd %#x error, result=%#x\n",
52 resp
->command
, resp
->result
);
54 if (adapter
->curr_cmd
->wait_q_enabled
)
55 adapter
->cmd_wait_q
.status
= -1;
57 switch (le16_to_cpu(resp
->command
)) {
58 case HostCmd_CMD_802_11_PS_MODE_ENH
:
59 pm
= &resp
->params
.psmode_enh
;
60 mwifiex_dbg(adapter
, ERROR
,
61 "PS_MODE_ENH cmd failed: result=0x%x action=0x%X\n",
62 resp
->result
, le16_to_cpu(pm
->action
));
63 /* We do not re-try enter-ps command in ad-hoc mode. */
64 if (le16_to_cpu(pm
->action
) == EN_AUTO_PS
&&
65 (le16_to_cpu(pm
->params
.ps_bitmap
) & BITMAP_STA_PS
) &&
66 priv
->bss_mode
== NL80211_IFTYPE_ADHOC
)
67 adapter
->ps_mode
= MWIFIEX_802_11_POWER_MODE_CAM
;
70 case HostCmd_CMD_802_11_SCAN
:
71 case HostCmd_CMD_802_11_SCAN_EXT
:
72 mwifiex_cancel_scan(adapter
);
75 case HostCmd_CMD_MAC_CONTROL
:
78 case HostCmd_CMD_SDIO_SP_RX_AGGR_CFG
:
79 mwifiex_dbg(adapter
, MSG
,
80 "SDIO RX single-port aggregation Not support\n");
86 /* Handling errors here */
87 mwifiex_recycle_cmd_node(adapter
, adapter
->curr_cmd
);
89 spin_lock_bh(&adapter
->mwifiex_cmd_lock
);
90 adapter
->curr_cmd
= NULL
;
91 spin_unlock_bh(&adapter
->mwifiex_cmd_lock
);
95 * This function handles the command response of get RSSI info.
97 * Handling includes changing the header fields into CPU format
98 * and saving the following parameters in driver -
99 * - Last data and beacon RSSI value
100 * - Average data and beacon RSSI value
101 * - Last data and beacon NF value
102 * - Average data and beacon NF value
104 * The parameters are send to the application as well, along with
105 * calculated SNR values.
107 static int mwifiex_ret_802_11_rssi_info(struct mwifiex_private
*priv
,
108 struct host_cmd_ds_command
*resp
)
110 struct host_cmd_ds_802_11_rssi_info_rsp
*rssi_info_rsp
=
111 &resp
->params
.rssi_info_rsp
;
112 struct mwifiex_ds_misc_subsc_evt
*subsc_evt
=
113 &priv
->async_subsc_evt_storage
;
115 priv
->data_rssi_last
= le16_to_cpu(rssi_info_rsp
->data_rssi_last
);
116 priv
->data_nf_last
= le16_to_cpu(rssi_info_rsp
->data_nf_last
);
118 priv
->data_rssi_avg
= le16_to_cpu(rssi_info_rsp
->data_rssi_avg
);
119 priv
->data_nf_avg
= le16_to_cpu(rssi_info_rsp
->data_nf_avg
);
121 priv
->bcn_rssi_last
= le16_to_cpu(rssi_info_rsp
->bcn_rssi_last
);
122 priv
->bcn_nf_last
= le16_to_cpu(rssi_info_rsp
->bcn_nf_last
);
124 priv
->bcn_rssi_avg
= le16_to_cpu(rssi_info_rsp
->bcn_rssi_avg
);
125 priv
->bcn_nf_avg
= le16_to_cpu(rssi_info_rsp
->bcn_nf_avg
);
127 if (priv
->subsc_evt_rssi_state
== EVENT_HANDLED
)
130 memset(subsc_evt
, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt
));
132 /* Resubscribe low and high rssi events with new thresholds */
133 subsc_evt
->events
= BITMASK_BCN_RSSI_LOW
| BITMASK_BCN_RSSI_HIGH
;
134 subsc_evt
->action
= HostCmd_ACT_BITWISE_SET
;
135 if (priv
->subsc_evt_rssi_state
== RSSI_LOW_RECVD
) {
136 subsc_evt
->bcn_l_rssi_cfg
.abs_value
= abs(priv
->bcn_rssi_avg
-
137 priv
->cqm_rssi_hyst
);
138 subsc_evt
->bcn_h_rssi_cfg
.abs_value
= abs(priv
->cqm_rssi_thold
);
139 } else if (priv
->subsc_evt_rssi_state
== RSSI_HIGH_RECVD
) {
140 subsc_evt
->bcn_l_rssi_cfg
.abs_value
= abs(priv
->cqm_rssi_thold
);
141 subsc_evt
->bcn_h_rssi_cfg
.abs_value
= abs(priv
->bcn_rssi_avg
+
142 priv
->cqm_rssi_hyst
);
144 subsc_evt
->bcn_l_rssi_cfg
.evt_freq
= 1;
145 subsc_evt
->bcn_h_rssi_cfg
.evt_freq
= 1;
147 priv
->subsc_evt_rssi_state
= EVENT_HANDLED
;
149 mwifiex_send_cmd(priv
, HostCmd_CMD_802_11_SUBSCRIBE_EVENT
,
150 0, 0, subsc_evt
, false);
156 * This function handles the command response of set/get SNMP
159 * Handling includes changing the header fields into CPU format
160 * and saving the parameter in driver.
162 * The following parameters are supported -
163 * - Fragmentation threshold
165 * - Short retry limit
167 static int mwifiex_ret_802_11_snmp_mib(struct mwifiex_private
*priv
,
168 struct host_cmd_ds_command
*resp
,
171 struct host_cmd_ds_802_11_snmp_mib
*smib
= &resp
->params
.smib
;
172 u16 oid
= le16_to_cpu(smib
->oid
);
173 u16 query_type
= le16_to_cpu(smib
->query_type
);
176 mwifiex_dbg(priv
->adapter
, INFO
,
177 "info: SNMP_RESP: oid value = %#x,\t"
178 "query_type = %#x, buf size = %#x\n",
179 oid
, query_type
, le16_to_cpu(smib
->buf_size
));
180 if (query_type
== HostCmd_ACT_GEN_GET
) {
181 ul_temp
= get_unaligned_le16(smib
->value
);
186 mwifiex_dbg(priv
->adapter
, INFO
,
187 "info: SNMP_RESP: FragThsd =%u\n",
191 mwifiex_dbg(priv
->adapter
, INFO
,
192 "info: SNMP_RESP: RTSThsd =%u\n",
195 case SHORT_RETRY_LIM_I
:
196 mwifiex_dbg(priv
->adapter
, INFO
,
197 "info: SNMP_RESP: TxRetryCount=%u\n",
201 mwifiex_dbg(priv
->adapter
, INFO
,
202 "info: SNMP_RESP: DTIM period=%u\n",
213 * This function handles the command response of get log request
215 * Handling includes changing the header fields into CPU format
216 * and sending the received parameters to application.
218 static int mwifiex_ret_get_log(struct mwifiex_private
*priv
,
219 struct host_cmd_ds_command
*resp
,
220 struct mwifiex_ds_get_stats
*stats
)
222 struct host_cmd_ds_802_11_get_log
*get_log
=
223 &resp
->params
.get_log
;
226 stats
->mcast_tx_frame
= le32_to_cpu(get_log
->mcast_tx_frame
);
227 stats
->failed
= le32_to_cpu(get_log
->failed
);
228 stats
->retry
= le32_to_cpu(get_log
->retry
);
229 stats
->multi_retry
= le32_to_cpu(get_log
->multi_retry
);
230 stats
->frame_dup
= le32_to_cpu(get_log
->frame_dup
);
231 stats
->rts_success
= le32_to_cpu(get_log
->rts_success
);
232 stats
->rts_failure
= le32_to_cpu(get_log
->rts_failure
);
233 stats
->ack_failure
= le32_to_cpu(get_log
->ack_failure
);
234 stats
->rx_frag
= le32_to_cpu(get_log
->rx_frag
);
235 stats
->mcast_rx_frame
= le32_to_cpu(get_log
->mcast_rx_frame
);
236 stats
->fcs_error
= le32_to_cpu(get_log
->fcs_error
);
237 stats
->tx_frame
= le32_to_cpu(get_log
->tx_frame
);
238 stats
->wep_icv_error
[0] =
239 le32_to_cpu(get_log
->wep_icv_err_cnt
[0]);
240 stats
->wep_icv_error
[1] =
241 le32_to_cpu(get_log
->wep_icv_err_cnt
[1]);
242 stats
->wep_icv_error
[2] =
243 le32_to_cpu(get_log
->wep_icv_err_cnt
[2]);
244 stats
->wep_icv_error
[3] =
245 le32_to_cpu(get_log
->wep_icv_err_cnt
[3]);
246 stats
->bcn_rcv_cnt
= le32_to_cpu(get_log
->bcn_rcv_cnt
);
247 stats
->bcn_miss_cnt
= le32_to_cpu(get_log
->bcn_miss_cnt
);
254 * This function handles the command response of set/get Tx rate
257 * Handling includes changing the header fields into CPU format
258 * and saving the following parameters in driver -
261 * - HT MCS rate bitmaps
263 * Based on the new rate bitmaps, the function re-evaluates if
264 * auto data rate has been activated. If not, it sends another
265 * query to the firmware to get the current Tx data rate.
267 static int mwifiex_ret_tx_rate_cfg(struct mwifiex_private
*priv
,
268 struct host_cmd_ds_command
*resp
)
270 struct host_cmd_ds_tx_rate_cfg
*rate_cfg
= &resp
->params
.tx_rate_cfg
;
271 struct mwifiex_rate_scope
*rate_scope
;
272 struct mwifiex_ie_types_header
*head
;
273 u16 tlv
, tlv_buf_len
, tlv_buf_left
;
277 tlv_buf
= ((u8
*)rate_cfg
) + sizeof(struct host_cmd_ds_tx_rate_cfg
);
278 tlv_buf_left
= le16_to_cpu(resp
->size
) - S_DS_GEN
- sizeof(*rate_cfg
);
280 while (tlv_buf_left
>= sizeof(*head
)) {
281 head
= (struct mwifiex_ie_types_header
*)tlv_buf
;
282 tlv
= le16_to_cpu(head
->type
);
283 tlv_buf_len
= le16_to_cpu(head
->len
);
285 if (tlv_buf_left
< (sizeof(*head
) + tlv_buf_len
))
289 case TLV_TYPE_RATE_SCOPE
:
290 rate_scope
= (struct mwifiex_rate_scope
*) tlv_buf
;
291 priv
->bitmap_rates
[0] =
292 le16_to_cpu(rate_scope
->hr_dsss_rate_bitmap
);
293 priv
->bitmap_rates
[1] =
294 le16_to_cpu(rate_scope
->ofdm_rate_bitmap
);
296 i
< ARRAY_SIZE(rate_scope
->ht_mcs_rate_bitmap
);
298 priv
->bitmap_rates
[2 + i
] =
299 le16_to_cpu(rate_scope
->
300 ht_mcs_rate_bitmap
[i
]);
302 if (priv
->adapter
->fw_api_ver
== MWIFIEX_FW_V15
) {
303 for (i
= 0; i
< ARRAY_SIZE(rate_scope
->
304 vht_mcs_rate_bitmap
);
306 priv
->bitmap_rates
[10 + i
] =
307 le16_to_cpu(rate_scope
->
308 vht_mcs_rate_bitmap
[i
]);
311 /* Add RATE_DROP tlv here */
314 tlv_buf
+= (sizeof(*head
) + tlv_buf_len
);
315 tlv_buf_left
-= (sizeof(*head
) + tlv_buf_len
);
318 priv
->is_data_rate_auto
= mwifiex_is_rate_auto(priv
);
320 if (priv
->is_data_rate_auto
)
323 return mwifiex_send_cmd(priv
, HostCmd_CMD_802_11_TX_RATE_QUERY
,
324 HostCmd_ACT_GEN_GET
, 0, NULL
, false);
330 * This function handles the command response of get Tx power level.
332 * Handling includes saving the maximum and minimum Tx power levels
333 * in driver, as well as sending the values to user.
335 static int mwifiex_get_power_level(struct mwifiex_private
*priv
, void *data_buf
)
337 int length
, max_power
= -1, min_power
= -1;
338 struct mwifiex_types_power_group
*pg_tlv_hdr
;
339 struct mwifiex_power_group
*pg
;
344 pg_tlv_hdr
= (struct mwifiex_types_power_group
*)((u8
*)data_buf
);
345 pg
= (struct mwifiex_power_group
*)
346 ((u8
*) pg_tlv_hdr
+ sizeof(struct mwifiex_types_power_group
));
347 length
= le16_to_cpu(pg_tlv_hdr
->length
);
349 /* At least one structure required to update power */
350 if (length
< sizeof(struct mwifiex_power_group
))
353 max_power
= pg
->power_max
;
354 min_power
= pg
->power_min
;
355 length
-= sizeof(struct mwifiex_power_group
);
357 while (length
>= sizeof(struct mwifiex_power_group
)) {
359 if (max_power
< pg
->power_max
)
360 max_power
= pg
->power_max
;
362 if (min_power
> pg
->power_min
)
363 min_power
= pg
->power_min
;
365 length
-= sizeof(struct mwifiex_power_group
);
367 priv
->min_tx_power_level
= (u8
) min_power
;
368 priv
->max_tx_power_level
= (u8
) max_power
;
374 * This function handles the command response of set/get Tx power
377 * Handling includes changing the header fields into CPU format
378 * and saving the current Tx power level in driver.
380 static int mwifiex_ret_tx_power_cfg(struct mwifiex_private
*priv
,
381 struct host_cmd_ds_command
*resp
)
383 struct mwifiex_adapter
*adapter
= priv
->adapter
;
384 struct host_cmd_ds_txpwr_cfg
*txp_cfg
= &resp
->params
.txp_cfg
;
385 struct mwifiex_types_power_group
*pg_tlv_hdr
;
386 struct mwifiex_power_group
*pg
;
387 u16 action
= le16_to_cpu(txp_cfg
->action
);
390 pg_tlv_hdr
= (struct mwifiex_types_power_group
*)
392 sizeof(struct host_cmd_ds_txpwr_cfg
));
394 pg
= (struct mwifiex_power_group
*)
396 sizeof(struct mwifiex_types_power_group
));
398 tlv_buf_left
= le16_to_cpu(resp
->size
) - S_DS_GEN
- sizeof(*txp_cfg
);
400 le16_to_cpu(pg_tlv_hdr
->length
) + sizeof(*pg_tlv_hdr
))
404 case HostCmd_ACT_GEN_GET
:
405 if (adapter
->hw_status
== MWIFIEX_HW_STATUS_INITIALIZING
)
406 mwifiex_get_power_level(priv
, pg_tlv_hdr
);
408 priv
->tx_power_level
= (u16
) pg
->power_min
;
411 case HostCmd_ACT_GEN_SET
:
412 if (!le32_to_cpu(txp_cfg
->mode
))
415 if (pg
->power_max
== pg
->power_min
)
416 priv
->tx_power_level
= (u16
) pg
->power_min
;
419 mwifiex_dbg(adapter
, ERROR
,
420 "CMD_RESP: unknown cmd action %d\n",
424 mwifiex_dbg(adapter
, INFO
,
425 "info: Current TxPower Level = %d, Max Power=%d, Min Power=%d\n",
426 priv
->tx_power_level
, priv
->max_tx_power_level
,
427 priv
->min_tx_power_level
);
433 * This function handles the command response of get RF Tx power.
435 static int mwifiex_ret_rf_tx_power(struct mwifiex_private
*priv
,
436 struct host_cmd_ds_command
*resp
)
438 struct host_cmd_ds_rf_tx_pwr
*txp
= &resp
->params
.txp
;
439 u16 action
= le16_to_cpu(txp
->action
);
441 priv
->tx_power_level
= le16_to_cpu(txp
->cur_level
);
443 if (action
== HostCmd_ACT_GEN_GET
) {
444 priv
->max_tx_power_level
= txp
->max_power
;
445 priv
->min_tx_power_level
= txp
->min_power
;
448 mwifiex_dbg(priv
->adapter
, INFO
,
449 "Current TxPower Level=%d, Max Power=%d, Min Power=%d\n",
450 priv
->tx_power_level
, priv
->max_tx_power_level
,
451 priv
->min_tx_power_level
);
457 * This function handles the command response of set rf antenna
459 static int mwifiex_ret_rf_antenna(struct mwifiex_private
*priv
,
460 struct host_cmd_ds_command
*resp
)
462 struct host_cmd_ds_rf_ant_mimo
*ant_mimo
= &resp
->params
.ant_mimo
;
463 struct host_cmd_ds_rf_ant_siso
*ant_siso
= &resp
->params
.ant_siso
;
464 struct mwifiex_adapter
*adapter
= priv
->adapter
;
466 if (adapter
->hw_dev_mcs_support
== HT_STREAM_2X2
) {
467 priv
->tx_ant
= le16_to_cpu(ant_mimo
->tx_ant_mode
);
468 priv
->rx_ant
= le16_to_cpu(ant_mimo
->rx_ant_mode
);
469 mwifiex_dbg(adapter
, INFO
,
470 "RF_ANT_RESP: Tx action = 0x%x, Tx Mode = 0x%04x\t"
471 "Rx action = 0x%x, Rx Mode = 0x%04x\n",
472 le16_to_cpu(ant_mimo
->action_tx
),
473 le16_to_cpu(ant_mimo
->tx_ant_mode
),
474 le16_to_cpu(ant_mimo
->action_rx
),
475 le16_to_cpu(ant_mimo
->rx_ant_mode
));
477 priv
->tx_ant
= le16_to_cpu(ant_siso
->ant_mode
);
478 priv
->rx_ant
= le16_to_cpu(ant_siso
->ant_mode
);
479 mwifiex_dbg(adapter
, INFO
,
480 "RF_ANT_RESP: action = 0x%x, Mode = 0x%04x\n",
481 le16_to_cpu(ant_siso
->action
),
482 le16_to_cpu(ant_siso
->ant_mode
));
488 * This function handles the command response of set/get MAC address.
490 * Handling includes saving the MAC address in driver.
492 static int mwifiex_ret_802_11_mac_address(struct mwifiex_private
*priv
,
493 struct host_cmd_ds_command
*resp
)
495 struct host_cmd_ds_802_11_mac_address
*cmd_mac_addr
=
496 &resp
->params
.mac_addr
;
498 memcpy(priv
->curr_addr
, cmd_mac_addr
->mac_addr
, ETH_ALEN
);
500 mwifiex_dbg(priv
->adapter
, INFO
,
501 "info: set mac address: %pM\n", priv
->curr_addr
);
507 * This function handles the command response of set/get MAC multicast
510 static int mwifiex_ret_mac_multicast_adr(struct mwifiex_private
*priv
,
511 struct host_cmd_ds_command
*resp
)
517 * This function handles the command response of get Tx rate query.
519 * Handling includes changing the header fields into CPU format
520 * and saving the Tx rate and HT information parameters in driver.
522 * Both rate configuration and current data rate can be retrieved
525 static int mwifiex_ret_802_11_tx_rate_query(struct mwifiex_private
*priv
,
526 struct host_cmd_ds_command
*resp
)
528 priv
->tx_rate
= resp
->params
.tx_rate
.tx_rate
;
529 priv
->tx_htinfo
= resp
->params
.tx_rate
.ht_info
;
530 if (!priv
->is_data_rate_auto
)
532 mwifiex_index_to_data_rate(priv
, priv
->tx_rate
,
539 * This function handles the command response of a deauthenticate
542 * If the deauthenticated MAC matches the current BSS MAC, the connection
545 static int mwifiex_ret_802_11_deauthenticate(struct mwifiex_private
*priv
,
546 struct host_cmd_ds_command
*resp
)
548 struct mwifiex_adapter
*adapter
= priv
->adapter
;
550 adapter
->dbg
.num_cmd_deauth
++;
551 if (!memcmp(resp
->params
.deauth
.mac_addr
,
552 &priv
->curr_bss_params
.bss_descriptor
.mac_address
,
553 sizeof(resp
->params
.deauth
.mac_addr
)))
554 mwifiex_reset_connect_state(priv
, WLAN_REASON_DEAUTH_LEAVING
,
561 * This function handles the command response of ad-hoc stop.
563 * The function resets the connection state in driver.
565 static int mwifiex_ret_802_11_ad_hoc_stop(struct mwifiex_private
*priv
,
566 struct host_cmd_ds_command
*resp
)
568 mwifiex_reset_connect_state(priv
, WLAN_REASON_DEAUTH_LEAVING
, false);
573 * This function handles the command response of set/get v1 key material.
575 * Handling includes updating the driver parameters to reflect the
578 static int mwifiex_ret_802_11_key_material_v1(struct mwifiex_private
*priv
,
579 struct host_cmd_ds_command
*resp
)
581 struct host_cmd_ds_802_11_key_material
*key
=
582 &resp
->params
.key_material
;
584 if (le16_to_cpu(key
->action
) == HostCmd_ACT_GEN_SET
) {
585 if ((le16_to_cpu(key
->key_param_set
.key_info
) & KEY_MCAST
)) {
586 mwifiex_dbg(priv
->adapter
, INFO
,
587 "info: key: GTK is set\n");
588 priv
->wpa_is_gtk_set
= true;
589 priv
->scan_block
= false;
590 priv
->port_open
= true;
594 memset(priv
->aes_key
.key_param_set
.key
, 0,
595 sizeof(key
->key_param_set
.key
));
596 priv
->aes_key
.key_param_set
.key_len
= key
->key_param_set
.key_len
;
597 memcpy(priv
->aes_key
.key_param_set
.key
, key
->key_param_set
.key
,
598 le16_to_cpu(priv
->aes_key
.key_param_set
.key_len
));
604 * This function handles the command response of set/get v2 key material.
606 * Handling includes updating the driver parameters to reflect the
609 static int mwifiex_ret_802_11_key_material_v2(struct mwifiex_private
*priv
,
610 struct host_cmd_ds_command
*resp
)
612 struct host_cmd_ds_802_11_key_material_v2
*key_v2
;
615 key_v2
= &resp
->params
.key_material_v2
;
616 if (le16_to_cpu(key_v2
->action
) == HostCmd_ACT_GEN_SET
) {
617 if ((le16_to_cpu(key_v2
->key_param_set
.key_info
) & KEY_MCAST
)) {
618 mwifiex_dbg(priv
->adapter
, INFO
, "info: key: GTK is set\n");
619 priv
->wpa_is_gtk_set
= true;
620 priv
->scan_block
= false;
621 priv
->port_open
= true;
625 if (key_v2
->key_param_set
.key_type
!= KEY_TYPE_ID_AES
)
628 memset(priv
->aes_key_v2
.key_param_set
.key_params
.aes
.key
, 0,
630 priv
->aes_key_v2
.key_param_set
.key_params
.aes
.key_len
=
631 key_v2
->key_param_set
.key_params
.aes
.key_len
;
632 len
= priv
->aes_key_v2
.key_param_set
.key_params
.aes
.key_len
;
633 memcpy(priv
->aes_key_v2
.key_param_set
.key_params
.aes
.key
,
634 key_v2
->key_param_set
.key_params
.aes
.key
, le16_to_cpu(len
));
639 /* Wrapper function for processing response of key material command */
640 static int mwifiex_ret_802_11_key_material(struct mwifiex_private
*priv
,
641 struct host_cmd_ds_command
*resp
)
643 if (priv
->adapter
->key_api_major_ver
== KEY_API_VER_MAJOR_V2
)
644 return mwifiex_ret_802_11_key_material_v2(priv
, resp
);
646 return mwifiex_ret_802_11_key_material_v1(priv
, resp
);
650 * This function handles the command response of get 11d domain information.
652 static int mwifiex_ret_802_11d_domain_info(struct mwifiex_private
*priv
,
653 struct host_cmd_ds_command
*resp
)
655 struct host_cmd_ds_802_11d_domain_info_rsp
*domain_info
=
656 &resp
->params
.domain_info_resp
;
657 struct mwifiex_ietypes_domain_param_set
*domain
= &domain_info
->domain
;
658 u16 action
= le16_to_cpu(domain_info
->action
);
661 no_of_triplet
= (u8
) ((le16_to_cpu(domain
->header
.len
)
662 - IEEE80211_COUNTRY_STRING_LEN
)
663 / sizeof(struct ieee80211_country_ie_triplet
));
665 mwifiex_dbg(priv
->adapter
, INFO
,
666 "info: 11D Domain Info Resp: no_of_triplet=%d\n",
669 if (no_of_triplet
> MWIFIEX_MAX_TRIPLET_802_11D
) {
670 mwifiex_dbg(priv
->adapter
, FATAL
,
671 "11D: invalid number of triplets %d returned\n",
677 case HostCmd_ACT_GEN_SET
: /* Proc Set Action */
679 case HostCmd_ACT_GEN_GET
:
682 mwifiex_dbg(priv
->adapter
, ERROR
,
683 "11D: invalid action:%d\n", domain_info
->action
);
691 * This function handles the command response of get extended version.
693 * Handling includes forming the extended version string and sending it
696 static int mwifiex_ret_ver_ext(struct mwifiex_private
*priv
,
697 struct host_cmd_ds_command
*resp
,
698 struct host_cmd_ds_version_ext
*version_ext
)
700 struct host_cmd_ds_version_ext
*ver_ext
= &resp
->params
.verext
;
703 version_ext
->version_str_sel
= ver_ext
->version_str_sel
;
704 memcpy(version_ext
->version_str
, ver_ext
->version_str
,
706 memcpy(priv
->version_str
, ver_ext
->version_str
, 128);
712 * This function handles the command response of remain on channel.
715 mwifiex_ret_remain_on_chan(struct mwifiex_private
*priv
,
716 struct host_cmd_ds_command
*resp
,
717 struct host_cmd_ds_remain_on_chan
*roc_cfg
)
719 struct host_cmd_ds_remain_on_chan
*resp_cfg
= &resp
->params
.roc_cfg
;
722 memcpy(roc_cfg
, resp_cfg
, sizeof(*roc_cfg
));
728 * This function handles the command response of P2P mode cfg.
731 mwifiex_ret_p2p_mode_cfg(struct mwifiex_private
*priv
,
732 struct host_cmd_ds_command
*resp
,
735 struct host_cmd_ds_p2p_mode_cfg
*mode_cfg
= &resp
->params
.mode_cfg
;
738 put_unaligned_le16(le16_to_cpu(mode_cfg
->mode
), data_buf
);
743 /* This function handles the command response of mem_access command
746 mwifiex_ret_mem_access(struct mwifiex_private
*priv
,
747 struct host_cmd_ds_command
*resp
, void *pioctl_buf
)
749 struct host_cmd_ds_mem_access
*mem
= (void *)&resp
->params
.mem
;
751 priv
->mem_rw
.addr
= le32_to_cpu(mem
->addr
);
752 priv
->mem_rw
.value
= le32_to_cpu(mem
->value
);
757 * This function handles the command response of register access.
759 * The register value and offset are returned to the user. For EEPROM
760 * access, the byte count is also returned.
762 static int mwifiex_ret_reg_access(u16 type
, struct host_cmd_ds_command
*resp
,
765 struct mwifiex_ds_reg_rw
*reg_rw
;
766 struct mwifiex_ds_read_eeprom
*eeprom
;
768 struct host_cmd_ds_mac_reg_access
*mac
;
769 struct host_cmd_ds_bbp_reg_access
*bbp
;
770 struct host_cmd_ds_rf_reg_access
*rf
;
771 struct host_cmd_ds_pmic_reg_access
*pmic
;
772 struct host_cmd_ds_802_11_eeprom_access
*eeprom
;
781 case HostCmd_CMD_MAC_REG_ACCESS
:
782 r
.mac
= &resp
->params
.mac_reg
;
783 reg_rw
->offset
= (u32
) le16_to_cpu(r
.mac
->offset
);
784 reg_rw
->value
= le32_to_cpu(r
.mac
->value
);
786 case HostCmd_CMD_BBP_REG_ACCESS
:
787 r
.bbp
= &resp
->params
.bbp_reg
;
788 reg_rw
->offset
= (u32
) le16_to_cpu(r
.bbp
->offset
);
789 reg_rw
->value
= (u32
) r
.bbp
->value
;
792 case HostCmd_CMD_RF_REG_ACCESS
:
793 r
.rf
= &resp
->params
.rf_reg
;
794 reg_rw
->offset
= (u32
) le16_to_cpu(r
.rf
->offset
);
795 reg_rw
->value
= (u32
) r
.bbp
->value
;
797 case HostCmd_CMD_PMIC_REG_ACCESS
:
798 r
.pmic
= &resp
->params
.pmic_reg
;
799 reg_rw
->offset
= (u32
) le16_to_cpu(r
.pmic
->offset
);
800 reg_rw
->value
= (u32
) r
.pmic
->value
;
802 case HostCmd_CMD_CAU_REG_ACCESS
:
803 r
.rf
= &resp
->params
.rf_reg
;
804 reg_rw
->offset
= (u32
) le16_to_cpu(r
.rf
->offset
);
805 reg_rw
->value
= (u32
) r
.rf
->value
;
807 case HostCmd_CMD_802_11_EEPROM_ACCESS
:
808 r
.eeprom
= &resp
->params
.eeprom
;
809 pr_debug("info: EEPROM read len=%x\n",
810 le16_to_cpu(r
.eeprom
->byte_count
));
811 if (eeprom
->byte_count
< le16_to_cpu(r
.eeprom
->byte_count
)) {
812 eeprom
->byte_count
= 0;
813 pr_debug("info: EEPROM read length is too big\n");
816 eeprom
->offset
= le16_to_cpu(r
.eeprom
->offset
);
817 eeprom
->byte_count
= le16_to_cpu(r
.eeprom
->byte_count
);
818 if (eeprom
->byte_count
> 0)
819 memcpy(&eeprom
->value
, &r
.eeprom
->value
,
820 min((u16
)MAX_EEPROM_DATA
, eeprom
->byte_count
));
829 * This function handles the command response of get IBSS coalescing status.
831 * If the received BSSID is different than the current one, the current BSSID,
832 * beacon interval, ATIM window and ERP information are updated, along with
833 * changing the ad-hoc state accordingly.
835 static int mwifiex_ret_ibss_coalescing_status(struct mwifiex_private
*priv
,
836 struct host_cmd_ds_command
*resp
)
838 struct host_cmd_ds_802_11_ibss_status
*ibss_coal_resp
=
839 &(resp
->params
.ibss_coalescing
);
841 if (le16_to_cpu(ibss_coal_resp
->action
) == HostCmd_ACT_GEN_SET
)
844 mwifiex_dbg(priv
->adapter
, INFO
,
845 "info: new BSSID %pM\n", ibss_coal_resp
->bssid
);
847 /* If rsp has NULL BSSID, Just return..... No Action */
848 if (is_zero_ether_addr(ibss_coal_resp
->bssid
)) {
849 mwifiex_dbg(priv
->adapter
, FATAL
, "new BSSID is NULL\n");
853 /* If BSSID is diff, modify current BSS parameters */
854 if (!ether_addr_equal(priv
->curr_bss_params
.bss_descriptor
.mac_address
, ibss_coal_resp
->bssid
)) {
856 memcpy(priv
->curr_bss_params
.bss_descriptor
.mac_address
,
857 ibss_coal_resp
->bssid
, ETH_ALEN
);
859 /* Beacon Interval */
860 priv
->curr_bss_params
.bss_descriptor
.beacon_period
861 = le16_to_cpu(ibss_coal_resp
->beacon_interval
);
863 /* ERP Information */
864 priv
->curr_bss_params
.bss_descriptor
.erp_flags
=
865 (u8
) le16_to_cpu(ibss_coal_resp
->use_g_rate_protect
);
867 priv
->adhoc_state
= ADHOC_COALESCED
;
872 static int mwifiex_ret_tdls_oper(struct mwifiex_private
*priv
,
873 struct host_cmd_ds_command
*resp
)
875 struct host_cmd_ds_tdls_oper
*cmd_tdls_oper
= &resp
->params
.tdls_oper
;
876 u16 reason
= le16_to_cpu(cmd_tdls_oper
->reason
);
877 u16 action
= le16_to_cpu(cmd_tdls_oper
->tdls_action
);
878 struct mwifiex_sta_node
*node
=
879 mwifiex_get_sta_entry(priv
, cmd_tdls_oper
->peer_mac
);
882 case ACT_TDLS_DELETE
:
884 if (!node
|| reason
== TDLS_ERR_LINK_NONEXISTENT
)
885 mwifiex_dbg(priv
->adapter
, MSG
,
886 "TDLS link delete for %pM failed: reason %d\n",
887 cmd_tdls_oper
->peer_mac
, reason
);
889 mwifiex_dbg(priv
->adapter
, ERROR
,
890 "TDLS link delete for %pM failed: reason %d\n",
891 cmd_tdls_oper
->peer_mac
, reason
);
893 mwifiex_dbg(priv
->adapter
, MSG
,
894 "TDLS link delete for %pM successful\n",
895 cmd_tdls_oper
->peer_mac
);
898 case ACT_TDLS_CREATE
:
900 mwifiex_dbg(priv
->adapter
, ERROR
,
901 "TDLS link creation for %pM failed: reason %d",
902 cmd_tdls_oper
->peer_mac
, reason
);
903 if (node
&& reason
!= TDLS_ERR_LINK_EXISTS
)
904 node
->tdls_status
= TDLS_SETUP_FAILURE
;
906 mwifiex_dbg(priv
->adapter
, MSG
,
907 "TDLS link creation for %pM successful",
908 cmd_tdls_oper
->peer_mac
);
911 case ACT_TDLS_CONFIG
:
913 mwifiex_dbg(priv
->adapter
, ERROR
,
914 "TDLS link config for %pM failed, reason %d\n",
915 cmd_tdls_oper
->peer_mac
, reason
);
917 node
->tdls_status
= TDLS_SETUP_FAILURE
;
919 mwifiex_dbg(priv
->adapter
, MSG
,
920 "TDLS link config for %pM successful\n",
921 cmd_tdls_oper
->peer_mac
);
925 mwifiex_dbg(priv
->adapter
, ERROR
,
926 "Unknown TDLS command action response %d", action
);
933 * This function handles the command response for subscribe event command.
935 static int mwifiex_ret_subsc_evt(struct mwifiex_private
*priv
,
936 struct host_cmd_ds_command
*resp
)
938 struct host_cmd_ds_802_11_subsc_evt
*cmd_sub_event
=
939 &resp
->params
.subsc_evt
;
941 /* For every subscribe event command (Get/Set/Clear), FW reports the
942 * current set of subscribed events*/
943 mwifiex_dbg(priv
->adapter
, EVENT
,
944 "Bitmap of currently subscribed events: %16x\n",
945 le16_to_cpu(cmd_sub_event
->events
));
950 static int mwifiex_ret_uap_sta_list(struct mwifiex_private
*priv
,
951 struct host_cmd_ds_command
*resp
)
953 struct host_cmd_ds_sta_list
*sta_list
=
954 &resp
->params
.sta_list
;
955 struct mwifiex_ie_types_sta_info
*sta_info
= (void *)&sta_list
->tlv
;
957 struct mwifiex_sta_node
*sta_node
;
959 for (i
= 0; i
< (le16_to_cpu(sta_list
->sta_count
)); i
++) {
960 sta_node
= mwifiex_get_sta_entry(priv
, sta_info
->mac
);
961 if (unlikely(!sta_node
))
964 sta_node
->stats
.rssi
= sta_info
->rssi
;
971 /* This function handles the command response of set_cfg_data */
972 static int mwifiex_ret_cfg_data(struct mwifiex_private
*priv
,
973 struct host_cmd_ds_command
*resp
)
975 if (resp
->result
!= HostCmd_RESULT_OK
) {
976 mwifiex_dbg(priv
->adapter
, ERROR
, "Cal data cmd resp failed\n");
983 /** This Function handles the command response of sdio rx aggr */
984 static int mwifiex_ret_sdio_rx_aggr_cfg(struct mwifiex_private
*priv
,
985 struct host_cmd_ds_command
*resp
)
987 struct mwifiex_adapter
*adapter
= priv
->adapter
;
988 struct host_cmd_sdio_sp_rx_aggr_cfg
*cfg
=
989 &resp
->params
.sdio_rx_aggr_cfg
;
991 adapter
->sdio_rx_aggr_enable
= cfg
->enable
;
992 adapter
->sdio_rx_block_size
= le16_to_cpu(cfg
->block_size
);
997 static int mwifiex_ret_robust_coex(struct mwifiex_private
*priv
,
998 struct host_cmd_ds_command
*resp
,
1001 struct host_cmd_ds_robust_coex
*coex
= &resp
->params
.coex
;
1002 struct mwifiex_ie_types_robust_coex
*coex_tlv
;
1003 u16 action
= le16_to_cpu(coex
->action
);
1006 coex_tlv
= (struct mwifiex_ie_types_robust_coex
1007 *)((u8
*)coex
+ sizeof(struct host_cmd_ds_robust_coex
));
1008 if (action
== HostCmd_ACT_GEN_GET
) {
1009 mode
= le32_to_cpu(coex_tlv
->mode
);
1010 if (mode
== MWIFIEX_COEX_MODE_TIMESHARE
)
1011 *is_timeshare
= true;
1013 *is_timeshare
= false;
1019 static struct ieee80211_regdomain
*
1020 mwifiex_create_custom_regdomain(struct mwifiex_private
*priv
,
1021 u8
*buf
, u16 buf_len
)
1023 u16 num_chan
= buf_len
/ 2;
1024 struct ieee80211_regdomain
*regd
;
1025 struct ieee80211_reg_rule
*rule
;
1027 int idx
, freq
, prev_freq
= 0;
1028 u32 bw
, prev_bw
= 0;
1029 u8 chflags
, prev_chflags
= 0, valid_rules
= 0;
1031 if (WARN_ON_ONCE(num_chan
> NL80211_MAX_SUPP_REG_RULES
))
1032 return ERR_PTR(-EINVAL
);
1034 regd
= kzalloc(struct_size(regd
, reg_rules
, num_chan
), GFP_KERNEL
);
1036 return ERR_PTR(-ENOMEM
);
1038 for (idx
= 0; idx
< num_chan
; idx
++) {
1040 enum nl80211_band band
;
1048 band
= (chan
<= 14) ? NL80211_BAND_2GHZ
: NL80211_BAND_5GHZ
;
1049 freq
= ieee80211_channel_to_frequency(chan
, band
);
1052 if (chflags
& MWIFIEX_CHANNEL_DISABLED
)
1055 if (band
== NL80211_BAND_5GHZ
) {
1056 if (!(chflags
& MWIFIEX_CHANNEL_NOHT80
))
1057 bw
= MHZ_TO_KHZ(80);
1058 else if (!(chflags
& MWIFIEX_CHANNEL_NOHT40
))
1059 bw
= MHZ_TO_KHZ(40);
1061 bw
= MHZ_TO_KHZ(20);
1063 if (!(chflags
& MWIFIEX_CHANNEL_NOHT40
))
1064 bw
= MHZ_TO_KHZ(40);
1066 bw
= MHZ_TO_KHZ(20);
1069 if (idx
== 0 || prev_chflags
!= chflags
|| prev_bw
!= bw
||
1070 freq
- prev_freq
> 20) {
1075 rule
= ®d
->reg_rules
[valid_rules
- 1];
1077 rule
->freq_range
.end_freq_khz
= MHZ_TO_KHZ(freq
+ 10);
1079 prev_chflags
= chflags
;
1086 rule
->freq_range
.start_freq_khz
= MHZ_TO_KHZ(freq
- 10);
1087 rule
->power_rule
.max_eirp
= DBM_TO_MBM(19);
1089 if (chflags
& MWIFIEX_CHANNEL_PASSIVE
)
1090 rule
->flags
= NL80211_RRF_NO_IR
;
1092 if (chflags
& MWIFIEX_CHANNEL_DFS
)
1093 rule
->flags
= NL80211_RRF_DFS
;
1095 rule
->freq_range
.max_bandwidth_khz
= bw
;
1098 regd
->n_reg_rules
= valid_rules
;
1099 regd
->alpha2
[0] = '9';
1100 regd
->alpha2
[1] = '9';
1105 static int mwifiex_ret_chan_region_cfg(struct mwifiex_private
*priv
,
1106 struct host_cmd_ds_command
*resp
)
1108 struct host_cmd_ds_chan_region_cfg
*reg
= &resp
->params
.reg_cfg
;
1109 u16 action
= le16_to_cpu(reg
->action
);
1110 u16 tlv
, tlv_buf_len
, tlv_buf_left
;
1111 struct mwifiex_ie_types_header
*head
;
1112 struct ieee80211_regdomain
*regd
;
1115 if (action
!= HostCmd_ACT_GEN_GET
)
1118 tlv_buf
= (u8
*)reg
+ sizeof(*reg
);
1119 tlv_buf_left
= le16_to_cpu(resp
->size
) - S_DS_GEN
- sizeof(*reg
);
1121 while (tlv_buf_left
>= sizeof(*head
)) {
1122 head
= (struct mwifiex_ie_types_header
*)tlv_buf
;
1123 tlv
= le16_to_cpu(head
->type
);
1124 tlv_buf_len
= le16_to_cpu(head
->len
);
1126 if (tlv_buf_left
< (sizeof(*head
) + tlv_buf_len
))
1130 case TLV_TYPE_CHAN_ATTR_CFG
:
1131 mwifiex_dbg_dump(priv
->adapter
, CMD_D
, "CHAN:",
1132 (u8
*)head
+ sizeof(*head
),
1134 regd
= mwifiex_create_custom_regdomain(priv
,
1135 (u8
*)head
+ sizeof(*head
), tlv_buf_len
);
1137 priv
->adapter
->regd
= regd
;
1141 tlv_buf
+= (sizeof(*head
) + tlv_buf_len
);
1142 tlv_buf_left
-= (sizeof(*head
) + tlv_buf_len
);
1148 static int mwifiex_ret_pkt_aggr_ctrl(struct mwifiex_private
*priv
,
1149 struct host_cmd_ds_command
*resp
)
1151 struct host_cmd_ds_pkt_aggr_ctrl
*pkt_aggr_ctrl
=
1152 &resp
->params
.pkt_aggr_ctrl
;
1153 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1155 adapter
->bus_aggr
.enable
= le16_to_cpu(pkt_aggr_ctrl
->enable
);
1156 if (adapter
->bus_aggr
.enable
)
1157 adapter
->intf_hdr_len
= INTF_HEADER_LEN
;
1158 adapter
->bus_aggr
.mode
= MWIFIEX_BUS_AGGR_MODE_LEN_V2
;
1159 adapter
->bus_aggr
.tx_aggr_max_size
=
1160 le16_to_cpu(pkt_aggr_ctrl
->tx_aggr_max_size
);
1161 adapter
->bus_aggr
.tx_aggr_max_num
=
1162 le16_to_cpu(pkt_aggr_ctrl
->tx_aggr_max_num
);
1163 adapter
->bus_aggr
.tx_aggr_align
=
1164 le16_to_cpu(pkt_aggr_ctrl
->tx_aggr_align
);
1169 static int mwifiex_ret_get_chan_info(struct mwifiex_private
*priv
,
1170 struct host_cmd_ds_command
*resp
,
1171 struct mwifiex_channel_band
*channel_band
)
1173 struct host_cmd_ds_sta_configure
*sta_cfg_cmd
= &resp
->params
.sta_cfg
;
1174 struct host_cmd_tlv_channel_band
*tlv_band_channel
;
1177 (struct host_cmd_tlv_channel_band
*)sta_cfg_cmd
->tlv_buffer
;
1178 memcpy(&channel_band
->band_config
, &tlv_band_channel
->band_config
,
1179 sizeof(struct mwifiex_band_config
));
1180 channel_band
->channel
= tlv_band_channel
->channel
;
1186 * This function handles the command responses.
1188 * This is a generic function, which calls command specific
1189 * response handlers based on the command ID.
1191 int mwifiex_process_sta_cmdresp(struct mwifiex_private
*priv
, u16 cmdresp_no
,
1192 struct host_cmd_ds_command
*resp
)
1195 struct mwifiex_adapter
*adapter
= priv
->adapter
;
1196 void *data_buf
= adapter
->curr_cmd
->data_buf
;
1198 /* If the command is not successful, cleanup and return failure */
1199 if (resp
->result
!= HostCmd_RESULT_OK
) {
1200 mwifiex_process_cmdresp_error(priv
, resp
);
1203 /* Command successful, handle response */
1204 switch (cmdresp_no
) {
1205 case HostCmd_CMD_GET_HW_SPEC
:
1206 ret
= mwifiex_ret_get_hw_spec(priv
, resp
);
1208 case HostCmd_CMD_CFG_DATA
:
1209 ret
= mwifiex_ret_cfg_data(priv
, resp
);
1211 case HostCmd_CMD_MAC_CONTROL
:
1213 case HostCmd_CMD_802_11_MAC_ADDRESS
:
1214 ret
= mwifiex_ret_802_11_mac_address(priv
, resp
);
1216 case HostCmd_CMD_MAC_MULTICAST_ADR
:
1217 ret
= mwifiex_ret_mac_multicast_adr(priv
, resp
);
1219 case HostCmd_CMD_TX_RATE_CFG
:
1220 ret
= mwifiex_ret_tx_rate_cfg(priv
, resp
);
1222 case HostCmd_CMD_802_11_SCAN
:
1223 ret
= mwifiex_ret_802_11_scan(priv
, resp
);
1224 adapter
->curr_cmd
->wait_q_enabled
= false;
1226 case HostCmd_CMD_802_11_SCAN_EXT
:
1227 ret
= mwifiex_ret_802_11_scan_ext(priv
, resp
);
1228 adapter
->curr_cmd
->wait_q_enabled
= false;
1230 case HostCmd_CMD_802_11_BG_SCAN_QUERY
:
1231 ret
= mwifiex_ret_802_11_scan(priv
, resp
);
1232 cfg80211_sched_scan_results(priv
->wdev
.wiphy
, 0);
1233 mwifiex_dbg(adapter
, CMD
,
1234 "info: CMD_RESP: BG_SCAN result is ready!\n");
1236 case HostCmd_CMD_802_11_BG_SCAN_CONFIG
:
1238 case HostCmd_CMD_TXPWR_CFG
:
1239 ret
= mwifiex_ret_tx_power_cfg(priv
, resp
);
1241 case HostCmd_CMD_RF_TX_PWR
:
1242 ret
= mwifiex_ret_rf_tx_power(priv
, resp
);
1244 case HostCmd_CMD_RF_ANTENNA
:
1245 ret
= mwifiex_ret_rf_antenna(priv
, resp
);
1247 case HostCmd_CMD_802_11_PS_MODE_ENH
:
1248 ret
= mwifiex_ret_enh_power_mode(priv
, resp
, data_buf
);
1250 case HostCmd_CMD_802_11_HS_CFG_ENH
:
1251 ret
= mwifiex_ret_802_11_hs_cfg(priv
, resp
);
1253 case HostCmd_CMD_802_11_ASSOCIATE
:
1254 ret
= mwifiex_ret_802_11_associate(priv
, resp
);
1256 case HostCmd_CMD_802_11_DEAUTHENTICATE
:
1257 ret
= mwifiex_ret_802_11_deauthenticate(priv
, resp
);
1259 case HostCmd_CMD_802_11_AD_HOC_START
:
1260 case HostCmd_CMD_802_11_AD_HOC_JOIN
:
1261 ret
= mwifiex_ret_802_11_ad_hoc(priv
, resp
);
1263 case HostCmd_CMD_802_11_AD_HOC_STOP
:
1264 ret
= mwifiex_ret_802_11_ad_hoc_stop(priv
, resp
);
1266 case HostCmd_CMD_802_11_GET_LOG
:
1267 ret
= mwifiex_ret_get_log(priv
, resp
, data_buf
);
1269 case HostCmd_CMD_RSSI_INFO
:
1270 ret
= mwifiex_ret_802_11_rssi_info(priv
, resp
);
1272 case HostCmd_CMD_802_11_SNMP_MIB
:
1273 ret
= mwifiex_ret_802_11_snmp_mib(priv
, resp
, data_buf
);
1275 case HostCmd_CMD_802_11_TX_RATE_QUERY
:
1276 ret
= mwifiex_ret_802_11_tx_rate_query(priv
, resp
);
1278 case HostCmd_CMD_VERSION_EXT
:
1279 ret
= mwifiex_ret_ver_ext(priv
, resp
, data_buf
);
1281 case HostCmd_CMD_REMAIN_ON_CHAN
:
1282 ret
= mwifiex_ret_remain_on_chan(priv
, resp
, data_buf
);
1284 case HostCmd_CMD_11AC_CFG
:
1286 case HostCmd_CMD_PACKET_AGGR_CTRL
:
1287 ret
= mwifiex_ret_pkt_aggr_ctrl(priv
, resp
);
1289 case HostCmd_CMD_P2P_MODE_CFG
:
1290 ret
= mwifiex_ret_p2p_mode_cfg(priv
, resp
, data_buf
);
1292 case HostCmd_CMD_MGMT_FRAME_REG
:
1293 case HostCmd_CMD_FUNC_INIT
:
1294 case HostCmd_CMD_FUNC_SHUTDOWN
:
1296 case HostCmd_CMD_802_11_KEY_MATERIAL
:
1297 ret
= mwifiex_ret_802_11_key_material(priv
, resp
);
1299 case HostCmd_CMD_802_11D_DOMAIN_INFO
:
1300 ret
= mwifiex_ret_802_11d_domain_info(priv
, resp
);
1302 case HostCmd_CMD_11N_ADDBA_REQ
:
1303 ret
= mwifiex_ret_11n_addba_req(priv
, resp
);
1305 case HostCmd_CMD_11N_DELBA
:
1306 ret
= mwifiex_ret_11n_delba(priv
, resp
);
1308 case HostCmd_CMD_11N_ADDBA_RSP
:
1309 ret
= mwifiex_ret_11n_addba_resp(priv
, resp
);
1311 case HostCmd_CMD_RECONFIGURE_TX_BUFF
:
1312 if (0xffff == (u16
)le16_to_cpu(resp
->params
.tx_buf
.buff_size
)) {
1313 if (adapter
->iface_type
== MWIFIEX_USB
&&
1314 adapter
->usb_mc_setup
) {
1315 if (adapter
->if_ops
.multi_port_resync
)
1317 multi_port_resync(adapter
);
1318 adapter
->usb_mc_setup
= false;
1319 adapter
->tx_lock_flag
= false;
1323 adapter
->tx_buf_size
= (u16
) le16_to_cpu(resp
->params
.
1325 adapter
->tx_buf_size
= (adapter
->tx_buf_size
1326 / MWIFIEX_SDIO_BLOCK_SIZE
)
1327 * MWIFIEX_SDIO_BLOCK_SIZE
;
1328 adapter
->curr_tx_buf_size
= adapter
->tx_buf_size
;
1329 mwifiex_dbg(adapter
, CMD
, "cmd: curr_tx_buf_size=%d\n",
1330 adapter
->curr_tx_buf_size
);
1332 if (adapter
->if_ops
.update_mp_end_port
)
1333 adapter
->if_ops
.update_mp_end_port(adapter
,
1334 le16_to_cpu(resp
->params
.tx_buf
.mp_end_port
));
1336 case HostCmd_CMD_AMSDU_AGGR_CTRL
:
1338 case HostCmd_CMD_WMM_GET_STATUS
:
1339 ret
= mwifiex_ret_wmm_get_status(priv
, resp
);
1341 case HostCmd_CMD_802_11_IBSS_COALESCING_STATUS
:
1342 ret
= mwifiex_ret_ibss_coalescing_status(priv
, resp
);
1344 case HostCmd_CMD_MEM_ACCESS
:
1345 ret
= mwifiex_ret_mem_access(priv
, resp
, data_buf
);
1347 case HostCmd_CMD_MAC_REG_ACCESS
:
1348 case HostCmd_CMD_BBP_REG_ACCESS
:
1349 case HostCmd_CMD_RF_REG_ACCESS
:
1350 case HostCmd_CMD_PMIC_REG_ACCESS
:
1351 case HostCmd_CMD_CAU_REG_ACCESS
:
1352 case HostCmd_CMD_802_11_EEPROM_ACCESS
:
1353 ret
= mwifiex_ret_reg_access(cmdresp_no
, resp
, data_buf
);
1355 case HostCmd_CMD_SET_BSS_MODE
:
1357 case HostCmd_CMD_11N_CFG
:
1359 case HostCmd_CMD_PCIE_DESC_DETAILS
:
1361 case HostCmd_CMD_802_11_SUBSCRIBE_EVENT
:
1362 ret
= mwifiex_ret_subsc_evt(priv
, resp
);
1364 case HostCmd_CMD_UAP_SYS_CONFIG
:
1366 case HOST_CMD_APCMD_STA_LIST
:
1367 ret
= mwifiex_ret_uap_sta_list(priv
, resp
);
1369 case HostCmd_CMD_UAP_BSS_START
:
1370 adapter
->tx_lock_flag
= false;
1371 adapter
->pps_uapsd_mode
= false;
1372 adapter
->delay_null_pkt
= false;
1373 priv
->bss_started
= 1;
1375 case HostCmd_CMD_UAP_BSS_STOP
:
1376 priv
->bss_started
= 0;
1378 case HostCmd_CMD_UAP_STA_DEAUTH
:
1380 case HOST_CMD_APCMD_SYS_RESET
:
1382 case HostCmd_CMD_MEF_CFG
:
1384 case HostCmd_CMD_COALESCE_CFG
:
1386 case HostCmd_CMD_TDLS_OPER
:
1387 ret
= mwifiex_ret_tdls_oper(priv
, resp
);
1388 case HostCmd_CMD_MC_POLICY
:
1390 case HostCmd_CMD_CHAN_REPORT_REQUEST
:
1392 case HostCmd_CMD_SDIO_SP_RX_AGGR_CFG
:
1393 ret
= mwifiex_ret_sdio_rx_aggr_cfg(priv
, resp
);
1395 case HostCmd_CMD_HS_WAKEUP_REASON
:
1396 ret
= mwifiex_ret_wakeup_reason(priv
, resp
, data_buf
);
1398 case HostCmd_CMD_TDLS_CONFIG
:
1400 case HostCmd_CMD_ROBUST_COEX
:
1401 ret
= mwifiex_ret_robust_coex(priv
, resp
, data_buf
);
1403 case HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG
:
1405 case HostCmd_CMD_CHAN_REGION_CFG
:
1406 ret
= mwifiex_ret_chan_region_cfg(priv
, resp
);
1408 case HostCmd_CMD_STA_CONFIGURE
:
1409 ret
= mwifiex_ret_get_chan_info(priv
, resp
, data_buf
);
1412 mwifiex_dbg(adapter
, ERROR
,
1413 "CMD_RESP: unknown cmd response %#x\n",