Merge branch 'for-4.2/sg' of git://git.kernel.dk/linux-block
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / mwifiex / sta_cmdresp.c
1 /*
2  * Marvell Wireless LAN device driver: station command response handling
3  *
4  * Copyright (C) 2011-2014, Marvell International Ltd.
5  *
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"
27 #include "11ac.h"
28
29
30 /*
31  * This function handles the command response error case.
32  *
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.
36  *
37  * For Power Save command failure, we do not retry enter PS
38  * command in case of Ad-hoc mode.
39  *
40  * For all other response errors, the current command buffer is freed
41  * and returned to the free command queue.
42  */
43 static void
44 mwifiex_process_cmdresp_error(struct mwifiex_private *priv,
45                               struct host_cmd_ds_command *resp)
46 {
47         struct cmd_ctrl_node *cmd_node = NULL, *tmp_node;
48         struct mwifiex_adapter *adapter = priv->adapter;
49         struct host_cmd_ds_802_11_ps_mode_enh *pm;
50         unsigned long flags;
51
52         mwifiex_dbg(adapter, ERROR,
53                     "CMD_RESP: cmd %#x error, result=%#x\n",
54                     resp->command, resp->result);
55
56         if (adapter->curr_cmd->wait_q_enabled)
57                 adapter->cmd_wait_q.status = -1;
58
59         switch (le16_to_cpu(resp->command)) {
60         case HostCmd_CMD_802_11_PS_MODE_ENH:
61                 pm = &resp->params.psmode_enh;
62                 mwifiex_dbg(adapter, ERROR,
63                             "PS_MODE_ENH cmd failed: result=0x%x action=0x%X\n",
64                             resp->result, le16_to_cpu(pm->action));
65                 /* We do not re-try enter-ps command in ad-hoc mode. */
66                 if (le16_to_cpu(pm->action) == EN_AUTO_PS &&
67                     (le16_to_cpu(pm->params.ps_bitmap) & BITMAP_STA_PS) &&
68                     priv->bss_mode == NL80211_IFTYPE_ADHOC)
69                         adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM;
70
71                 break;
72         case HostCmd_CMD_802_11_SCAN:
73         case HostCmd_CMD_802_11_SCAN_EXT:
74                 /* Cancel all pending scan command */
75                 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
76                 list_for_each_entry_safe(cmd_node, tmp_node,
77                                          &adapter->scan_pending_q, list) {
78                         list_del(&cmd_node->list);
79                         spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
80                                                flags);
81                         mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
82                         spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
83                 }
84                 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
85
86                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
87                 adapter->scan_processing = false;
88                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
89                 break;
90
91         case HostCmd_CMD_MAC_CONTROL:
92                 break;
93
94         case HostCmd_CMD_SDIO_SP_RX_AGGR_CFG:
95                 mwifiex_dbg(adapter, MSG,
96                             "SDIO RX single-port aggregation Not support\n");
97                 break;
98
99         default:
100                 break;
101         }
102         /* Handling errors here */
103         mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd);
104
105         spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
106         adapter->curr_cmd = NULL;
107         spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
108 }
109
110 /*
111  * This function handles the command response of get RSSI info.
112  *
113  * Handling includes changing the header fields into CPU format
114  * and saving the following parameters in driver -
115  *      - Last data and beacon RSSI value
116  *      - Average data and beacon RSSI value
117  *      - Last data and beacon NF value
118  *      - Average data and beacon NF value
119  *
120  * The parameters are send to the application as well, along with
121  * calculated SNR values.
122  */
123 static int mwifiex_ret_802_11_rssi_info(struct mwifiex_private *priv,
124                                         struct host_cmd_ds_command *resp)
125 {
126         struct host_cmd_ds_802_11_rssi_info_rsp *rssi_info_rsp =
127                                                 &resp->params.rssi_info_rsp;
128         struct mwifiex_ds_misc_subsc_evt *subsc_evt =
129                                                 &priv->async_subsc_evt_storage;
130
131         priv->data_rssi_last = le16_to_cpu(rssi_info_rsp->data_rssi_last);
132         priv->data_nf_last = le16_to_cpu(rssi_info_rsp->data_nf_last);
133
134         priv->data_rssi_avg = le16_to_cpu(rssi_info_rsp->data_rssi_avg);
135         priv->data_nf_avg = le16_to_cpu(rssi_info_rsp->data_nf_avg);
136
137         priv->bcn_rssi_last = le16_to_cpu(rssi_info_rsp->bcn_rssi_last);
138         priv->bcn_nf_last = le16_to_cpu(rssi_info_rsp->bcn_nf_last);
139
140         priv->bcn_rssi_avg = le16_to_cpu(rssi_info_rsp->bcn_rssi_avg);
141         priv->bcn_nf_avg = le16_to_cpu(rssi_info_rsp->bcn_nf_avg);
142
143         if (priv->subsc_evt_rssi_state == EVENT_HANDLED)
144                 return 0;
145
146         memset(subsc_evt, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt));
147
148         /* Resubscribe low and high rssi events with new thresholds */
149         subsc_evt->events = BITMASK_BCN_RSSI_LOW | BITMASK_BCN_RSSI_HIGH;
150         subsc_evt->action = HostCmd_ACT_BITWISE_SET;
151         if (priv->subsc_evt_rssi_state == RSSI_LOW_RECVD) {
152                 subsc_evt->bcn_l_rssi_cfg.abs_value = abs(priv->bcn_rssi_avg -
153                                 priv->cqm_rssi_hyst);
154                 subsc_evt->bcn_h_rssi_cfg.abs_value = abs(priv->cqm_rssi_thold);
155         } else if (priv->subsc_evt_rssi_state == RSSI_HIGH_RECVD) {
156                 subsc_evt->bcn_l_rssi_cfg.abs_value = abs(priv->cqm_rssi_thold);
157                 subsc_evt->bcn_h_rssi_cfg.abs_value = abs(priv->bcn_rssi_avg +
158                                 priv->cqm_rssi_hyst);
159         }
160         subsc_evt->bcn_l_rssi_cfg.evt_freq = 1;
161         subsc_evt->bcn_h_rssi_cfg.evt_freq = 1;
162
163         priv->subsc_evt_rssi_state = EVENT_HANDLED;
164
165         mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SUBSCRIBE_EVENT,
166                          0, 0, subsc_evt, false);
167
168         return 0;
169 }
170
171 /*
172  * This function handles the command response of set/get SNMP
173  * MIB parameters.
174  *
175  * Handling includes changing the header fields into CPU format
176  * and saving the parameter in driver.
177  *
178  * The following parameters are supported -
179  *      - Fragmentation threshold
180  *      - RTS threshold
181  *      - Short retry limit
182  */
183 static int mwifiex_ret_802_11_snmp_mib(struct mwifiex_private *priv,
184                                        struct host_cmd_ds_command *resp,
185                                        u32 *data_buf)
186 {
187         struct host_cmd_ds_802_11_snmp_mib *smib = &resp->params.smib;
188         u16 oid = le16_to_cpu(smib->oid);
189         u16 query_type = le16_to_cpu(smib->query_type);
190         u32 ul_temp;
191
192         mwifiex_dbg(priv->adapter, INFO,
193                     "info: SNMP_RESP: oid value = %#x,\t"
194                     "query_type = %#x, buf size = %#x\n",
195                     oid, query_type, le16_to_cpu(smib->buf_size));
196         if (query_type == HostCmd_ACT_GEN_GET) {
197                 ul_temp = le16_to_cpu(*((__le16 *) (smib->value)));
198                 if (data_buf)
199                         *data_buf = ul_temp;
200                 switch (oid) {
201                 case FRAG_THRESH_I:
202                         mwifiex_dbg(priv->adapter, INFO,
203                                     "info: SNMP_RESP: FragThsd =%u\n",
204                                     ul_temp);
205                         break;
206                 case RTS_THRESH_I:
207                         mwifiex_dbg(priv->adapter, INFO,
208                                     "info: SNMP_RESP: RTSThsd =%u\n",
209                                     ul_temp);
210                         break;
211                 case SHORT_RETRY_LIM_I:
212                         mwifiex_dbg(priv->adapter, INFO,
213                                     "info: SNMP_RESP: TxRetryCount=%u\n",
214                                     ul_temp);
215                         break;
216                 case DTIM_PERIOD_I:
217                         mwifiex_dbg(priv->adapter, INFO,
218                                     "info: SNMP_RESP: DTIM period=%u\n",
219                                     ul_temp);
220                 default:
221                         break;
222                 }
223         }
224
225         return 0;
226 }
227
228 /*
229  * This function handles the command response of get log request
230  *
231  * Handling includes changing the header fields into CPU format
232  * and sending the received parameters to application.
233  */
234 static int mwifiex_ret_get_log(struct mwifiex_private *priv,
235                                struct host_cmd_ds_command *resp,
236                                struct mwifiex_ds_get_stats *stats)
237 {
238         struct host_cmd_ds_802_11_get_log *get_log =
239                 &resp->params.get_log;
240
241         if (stats) {
242                 stats->mcast_tx_frame = le32_to_cpu(get_log->mcast_tx_frame);
243                 stats->failed = le32_to_cpu(get_log->failed);
244                 stats->retry = le32_to_cpu(get_log->retry);
245                 stats->multi_retry = le32_to_cpu(get_log->multi_retry);
246                 stats->frame_dup = le32_to_cpu(get_log->frame_dup);
247                 stats->rts_success = le32_to_cpu(get_log->rts_success);
248                 stats->rts_failure = le32_to_cpu(get_log->rts_failure);
249                 stats->ack_failure = le32_to_cpu(get_log->ack_failure);
250                 stats->rx_frag = le32_to_cpu(get_log->rx_frag);
251                 stats->mcast_rx_frame = le32_to_cpu(get_log->mcast_rx_frame);
252                 stats->fcs_error = le32_to_cpu(get_log->fcs_error);
253                 stats->tx_frame = le32_to_cpu(get_log->tx_frame);
254                 stats->wep_icv_error[0] =
255                         le32_to_cpu(get_log->wep_icv_err_cnt[0]);
256                 stats->wep_icv_error[1] =
257                         le32_to_cpu(get_log->wep_icv_err_cnt[1]);
258                 stats->wep_icv_error[2] =
259                         le32_to_cpu(get_log->wep_icv_err_cnt[2]);
260                 stats->wep_icv_error[3] =
261                         le32_to_cpu(get_log->wep_icv_err_cnt[3]);
262                 stats->bcn_rcv_cnt = le32_to_cpu(get_log->bcn_rcv_cnt);
263                 stats->bcn_miss_cnt = le32_to_cpu(get_log->bcn_miss_cnt);
264         }
265
266         return 0;
267 }
268
269 /*
270  * This function handles the command response of set/get Tx rate
271  * configurations.
272  *
273  * Handling includes changing the header fields into CPU format
274  * and saving the following parameters in driver -
275  *      - DSSS rate bitmap
276  *      - OFDM rate bitmap
277  *      - HT MCS rate bitmaps
278  *
279  * Based on the new rate bitmaps, the function re-evaluates if
280  * auto data rate has been activated. If not, it sends another
281  * query to the firmware to get the current Tx data rate.
282  */
283 static int mwifiex_ret_tx_rate_cfg(struct mwifiex_private *priv,
284                                    struct host_cmd_ds_command *resp)
285 {
286         struct host_cmd_ds_tx_rate_cfg *rate_cfg = &resp->params.tx_rate_cfg;
287         struct mwifiex_rate_scope *rate_scope;
288         struct mwifiex_ie_types_header *head;
289         u16 tlv, tlv_buf_len, tlv_buf_left;
290         u8 *tlv_buf;
291         u32 i;
292
293         tlv_buf = ((u8 *)rate_cfg) + sizeof(struct host_cmd_ds_tx_rate_cfg);
294         tlv_buf_left = le16_to_cpu(resp->size) - S_DS_GEN - sizeof(*rate_cfg);
295
296         while (tlv_buf_left >= sizeof(*head)) {
297                 head = (struct mwifiex_ie_types_header *)tlv_buf;
298                 tlv = le16_to_cpu(head->type);
299                 tlv_buf_len = le16_to_cpu(head->len);
300
301                 if (tlv_buf_left < (sizeof(*head) + tlv_buf_len))
302                         break;
303
304                 switch (tlv) {
305                 case TLV_TYPE_RATE_SCOPE:
306                         rate_scope = (struct mwifiex_rate_scope *) tlv_buf;
307                         priv->bitmap_rates[0] =
308                                 le16_to_cpu(rate_scope->hr_dsss_rate_bitmap);
309                         priv->bitmap_rates[1] =
310                                 le16_to_cpu(rate_scope->ofdm_rate_bitmap);
311                         for (i = 0;
312                              i <
313                              sizeof(rate_scope->ht_mcs_rate_bitmap) /
314                              sizeof(u16); i++)
315                                 priv->bitmap_rates[2 + i] =
316                                         le16_to_cpu(rate_scope->
317                                                     ht_mcs_rate_bitmap[i]);
318
319                         if (priv->adapter->fw_api_ver == MWIFIEX_FW_V15) {
320                                 for (i = 0; i < ARRAY_SIZE(rate_scope->
321                                                            vht_mcs_rate_bitmap);
322                                      i++)
323                                         priv->bitmap_rates[10 + i] =
324                                             le16_to_cpu(rate_scope->
325                                                         vht_mcs_rate_bitmap[i]);
326                         }
327                         break;
328                         /* Add RATE_DROP tlv here */
329                 }
330
331                 tlv_buf += (sizeof(*head) + tlv_buf_len);
332                 tlv_buf_left -= (sizeof(*head) + tlv_buf_len);
333         }
334
335         priv->is_data_rate_auto = mwifiex_is_rate_auto(priv);
336
337         if (priv->is_data_rate_auto)
338                 priv->data_rate = 0;
339         else
340                 return mwifiex_send_cmd(priv, HostCmd_CMD_802_11_TX_RATE_QUERY,
341                                         HostCmd_ACT_GEN_GET, 0, NULL, false);
342
343         return 0;
344 }
345
346 /*
347  * This function handles the command response of get Tx power level.
348  *
349  * Handling includes saving the maximum and minimum Tx power levels
350  * in driver, as well as sending the values to user.
351  */
352 static int mwifiex_get_power_level(struct mwifiex_private *priv, void *data_buf)
353 {
354         int length, max_power = -1, min_power = -1;
355         struct mwifiex_types_power_group *pg_tlv_hdr;
356         struct mwifiex_power_group *pg;
357
358         if (!data_buf)
359                 return -1;
360
361         pg_tlv_hdr = (struct mwifiex_types_power_group *)((u8 *)data_buf);
362         pg = (struct mwifiex_power_group *)
363                 ((u8 *) pg_tlv_hdr + sizeof(struct mwifiex_types_power_group));
364         length = le16_to_cpu(pg_tlv_hdr->length);
365
366         /* At least one structure required to update power */
367         if (length < sizeof(struct mwifiex_power_group))
368                 return 0;
369
370         max_power = pg->power_max;
371         min_power = pg->power_min;
372         length -= sizeof(struct mwifiex_power_group);
373
374         while (length >= sizeof(struct mwifiex_power_group)) {
375                 pg++;
376                 if (max_power < pg->power_max)
377                         max_power = pg->power_max;
378
379                 if (min_power > pg->power_min)
380                         min_power = pg->power_min;
381
382                 length -= sizeof(struct mwifiex_power_group);
383         }
384         priv->min_tx_power_level = (u8) min_power;
385         priv->max_tx_power_level = (u8) max_power;
386
387         return 0;
388 }
389
390 /*
391  * This function handles the command response of set/get Tx power
392  * configurations.
393  *
394  * Handling includes changing the header fields into CPU format
395  * and saving the current Tx power level in driver.
396  */
397 static int mwifiex_ret_tx_power_cfg(struct mwifiex_private *priv,
398                                     struct host_cmd_ds_command *resp)
399 {
400         struct mwifiex_adapter *adapter = priv->adapter;
401         struct host_cmd_ds_txpwr_cfg *txp_cfg = &resp->params.txp_cfg;
402         struct mwifiex_types_power_group *pg_tlv_hdr;
403         struct mwifiex_power_group *pg;
404         u16 action = le16_to_cpu(txp_cfg->action);
405         u16 tlv_buf_left;
406
407         pg_tlv_hdr = (struct mwifiex_types_power_group *)
408                 ((u8 *)txp_cfg +
409                  sizeof(struct host_cmd_ds_txpwr_cfg));
410
411         pg = (struct mwifiex_power_group *)
412                 ((u8 *)pg_tlv_hdr +
413                  sizeof(struct mwifiex_types_power_group));
414
415         tlv_buf_left = le16_to_cpu(resp->size) - S_DS_GEN - sizeof(*txp_cfg);
416         if (tlv_buf_left <
417                         le16_to_cpu(pg_tlv_hdr->length) + sizeof(*pg_tlv_hdr))
418                 return 0;
419
420         switch (action) {
421         case HostCmd_ACT_GEN_GET:
422                 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING)
423                         mwifiex_get_power_level(priv, pg_tlv_hdr);
424
425                 priv->tx_power_level = (u16) pg->power_min;
426                 break;
427
428         case HostCmd_ACT_GEN_SET:
429                 if (!le32_to_cpu(txp_cfg->mode))
430                         break;
431
432                 if (pg->power_max == pg->power_min)
433                         priv->tx_power_level = (u16) pg->power_min;
434                 break;
435         default:
436                 mwifiex_dbg(adapter, ERROR,
437                             "CMD_RESP: unknown cmd action %d\n",
438                             action);
439                 return 0;
440         }
441         mwifiex_dbg(adapter, INFO,
442                     "info: Current TxPower Level = %d, Max Power=%d, Min Power=%d\n",
443                     priv->tx_power_level, priv->max_tx_power_level,
444                     priv->min_tx_power_level);
445
446         return 0;
447 }
448
449 /*
450  * This function handles the command response of get RF Tx power.
451  */
452 static int mwifiex_ret_rf_tx_power(struct mwifiex_private *priv,
453                                    struct host_cmd_ds_command *resp)
454 {
455         struct host_cmd_ds_rf_tx_pwr *txp = &resp->params.txp;
456         u16 action = le16_to_cpu(txp->action);
457
458         priv->tx_power_level = le16_to_cpu(txp->cur_level);
459
460         if (action == HostCmd_ACT_GEN_GET) {
461                 priv->max_tx_power_level = txp->max_power;
462                 priv->min_tx_power_level = txp->min_power;
463         }
464
465         mwifiex_dbg(priv->adapter, INFO,
466                     "Current TxPower Level=%d, Max Power=%d, Min Power=%d\n",
467                     priv->tx_power_level, priv->max_tx_power_level,
468                     priv->min_tx_power_level);
469
470         return 0;
471 }
472
473 /*
474  * This function handles the command response of set rf antenna
475  */
476 static int mwifiex_ret_rf_antenna(struct mwifiex_private *priv,
477                                   struct host_cmd_ds_command *resp)
478 {
479         struct host_cmd_ds_rf_ant_mimo *ant_mimo = &resp->params.ant_mimo;
480         struct host_cmd_ds_rf_ant_siso *ant_siso = &resp->params.ant_siso;
481         struct mwifiex_adapter *adapter = priv->adapter;
482
483         if (adapter->hw_dev_mcs_support == HT_STREAM_2X2)
484                 mwifiex_dbg(adapter, INFO,
485                             "RF_ANT_RESP: Tx action = 0x%x, Tx Mode = 0x%04x\t"
486                             "Rx action = 0x%x, Rx Mode = 0x%04x\n",
487                             le16_to_cpu(ant_mimo->action_tx),
488                             le16_to_cpu(ant_mimo->tx_ant_mode),
489                             le16_to_cpu(ant_mimo->action_rx),
490                             le16_to_cpu(ant_mimo->rx_ant_mode));
491         else
492                 mwifiex_dbg(adapter, INFO,
493                             "RF_ANT_RESP: action = 0x%x, Mode = 0x%04x\n",
494                             le16_to_cpu(ant_siso->action),
495                             le16_to_cpu(ant_siso->ant_mode));
496
497         return 0;
498 }
499
500 /*
501  * This function handles the command response of set/get MAC address.
502  *
503  * Handling includes saving the MAC address in driver.
504  */
505 static int mwifiex_ret_802_11_mac_address(struct mwifiex_private *priv,
506                                           struct host_cmd_ds_command *resp)
507 {
508         struct host_cmd_ds_802_11_mac_address *cmd_mac_addr =
509                                                         &resp->params.mac_addr;
510
511         memcpy(priv->curr_addr, cmd_mac_addr->mac_addr, ETH_ALEN);
512
513         mwifiex_dbg(priv->adapter, INFO,
514                     "info: set mac address: %pM\n", priv->curr_addr);
515
516         return 0;
517 }
518
519 /*
520  * This function handles the command response of set/get MAC multicast
521  * address.
522  */
523 static int mwifiex_ret_mac_multicast_adr(struct mwifiex_private *priv,
524                                          struct host_cmd_ds_command *resp)
525 {
526         return 0;
527 }
528
529 /*
530  * This function handles the command response of get Tx rate query.
531  *
532  * Handling includes changing the header fields into CPU format
533  * and saving the Tx rate and HT information parameters in driver.
534  *
535  * Both rate configuration and current data rate can be retrieved
536  * with this request.
537  */
538 static int mwifiex_ret_802_11_tx_rate_query(struct mwifiex_private *priv,
539                                             struct host_cmd_ds_command *resp)
540 {
541         priv->tx_rate = resp->params.tx_rate.tx_rate;
542         priv->tx_htinfo = resp->params.tx_rate.ht_info;
543         if (!priv->is_data_rate_auto)
544                 priv->data_rate =
545                         mwifiex_index_to_data_rate(priv, priv->tx_rate,
546                                                    priv->tx_htinfo);
547
548         return 0;
549 }
550
551 /*
552  * This function handles the command response of a deauthenticate
553  * command.
554  *
555  * If the deauthenticated MAC matches the current BSS MAC, the connection
556  * state is reset.
557  */
558 static int mwifiex_ret_802_11_deauthenticate(struct mwifiex_private *priv,
559                                              struct host_cmd_ds_command *resp)
560 {
561         struct mwifiex_adapter *adapter = priv->adapter;
562
563         adapter->dbg.num_cmd_deauth++;
564         if (!memcmp(resp->params.deauth.mac_addr,
565                     &priv->curr_bss_params.bss_descriptor.mac_address,
566                     sizeof(resp->params.deauth.mac_addr)))
567                 mwifiex_reset_connect_state(priv, WLAN_REASON_DEAUTH_LEAVING);
568
569         return 0;
570 }
571
572 /*
573  * This function handles the command response of ad-hoc stop.
574  *
575  * The function resets the connection state in driver.
576  */
577 static int mwifiex_ret_802_11_ad_hoc_stop(struct mwifiex_private *priv,
578                                           struct host_cmd_ds_command *resp)
579 {
580         mwifiex_reset_connect_state(priv, WLAN_REASON_DEAUTH_LEAVING);
581         return 0;
582 }
583
584 /*
585  * This function handles the command response of set/get v1 key material.
586  *
587  * Handling includes updating the driver parameters to reflect the
588  * changes.
589  */
590 static int mwifiex_ret_802_11_key_material_v1(struct mwifiex_private *priv,
591                                               struct host_cmd_ds_command *resp)
592 {
593         struct host_cmd_ds_802_11_key_material *key =
594                                                 &resp->params.key_material;
595
596         if (le16_to_cpu(key->action) == HostCmd_ACT_GEN_SET) {
597                 if ((le16_to_cpu(key->key_param_set.key_info) & KEY_MCAST)) {
598                         mwifiex_dbg(priv->adapter, INFO,
599                                     "info: key: GTK is set\n");
600                         priv->wpa_is_gtk_set = true;
601                         priv->scan_block = false;
602                 }
603         }
604
605         memset(priv->aes_key.key_param_set.key, 0,
606                sizeof(key->key_param_set.key));
607         priv->aes_key.key_param_set.key_len = key->key_param_set.key_len;
608         memcpy(priv->aes_key.key_param_set.key, key->key_param_set.key,
609                le16_to_cpu(priv->aes_key.key_param_set.key_len));
610
611         return 0;
612 }
613
614 /*
615  * This function handles the command response of set/get v2 key material.
616  *
617  * Handling includes updating the driver parameters to reflect the
618  * changes.
619  */
620 static int mwifiex_ret_802_11_key_material_v2(struct mwifiex_private *priv,
621                                               struct host_cmd_ds_command *resp)
622 {
623         struct host_cmd_ds_802_11_key_material_v2 *key_v2;
624         __le16 len;
625
626         key_v2 = &resp->params.key_material_v2;
627         if (le16_to_cpu(key_v2->action) == HostCmd_ACT_GEN_SET) {
628                 if ((le16_to_cpu(key_v2->key_param_set.key_info) & KEY_MCAST)) {
629                         mwifiex_dbg(priv->adapter, INFO, "info: key: GTK is set\n");
630                         priv->wpa_is_gtk_set = true;
631                         priv->scan_block = false;
632                 }
633         }
634
635         if (key_v2->key_param_set.key_type != KEY_TYPE_ID_AES)
636                 return 0;
637
638         memset(priv->aes_key_v2.key_param_set.key_params.aes.key, 0,
639                WLAN_KEY_LEN_CCMP);
640         priv->aes_key_v2.key_param_set.key_params.aes.key_len =
641                                 key_v2->key_param_set.key_params.aes.key_len;
642         len = priv->aes_key_v2.key_param_set.key_params.aes.key_len;
643         memcpy(priv->aes_key_v2.key_param_set.key_params.aes.key,
644                key_v2->key_param_set.key_params.aes.key, le16_to_cpu(len));
645
646         return 0;
647 }
648
649 /* Wrapper function for processing response of key material command */
650 static int mwifiex_ret_802_11_key_material(struct mwifiex_private *priv,
651                                            struct host_cmd_ds_command *resp)
652 {
653         if (priv->adapter->key_api_major_ver == KEY_API_VER_MAJOR_V2)
654                 return mwifiex_ret_802_11_key_material_v2(priv, resp);
655         else
656                 return mwifiex_ret_802_11_key_material_v1(priv, resp);
657 }
658
659 /*
660  * This function handles the command response of get 11d domain information.
661  */
662 static int mwifiex_ret_802_11d_domain_info(struct mwifiex_private *priv,
663                                            struct host_cmd_ds_command *resp)
664 {
665         struct host_cmd_ds_802_11d_domain_info_rsp *domain_info =
666                 &resp->params.domain_info_resp;
667         struct mwifiex_ietypes_domain_param_set *domain = &domain_info->domain;
668         u16 action = le16_to_cpu(domain_info->action);
669         u8 no_of_triplet;
670
671         no_of_triplet = (u8) ((le16_to_cpu(domain->header.len)
672                                 - IEEE80211_COUNTRY_STRING_LEN)
673                               / sizeof(struct ieee80211_country_ie_triplet));
674
675         mwifiex_dbg(priv->adapter, INFO,
676                     "info: 11D Domain Info Resp: no_of_triplet=%d\n",
677                     no_of_triplet);
678
679         if (no_of_triplet > MWIFIEX_MAX_TRIPLET_802_11D) {
680                 mwifiex_dbg(priv->adapter, FATAL,
681                             "11D: invalid number of triplets %d returned\n",
682                             no_of_triplet);
683                 return -1;
684         }
685
686         switch (action) {
687         case HostCmd_ACT_GEN_SET:  /* Proc Set Action */
688                 break;
689         case HostCmd_ACT_GEN_GET:
690                 break;
691         default:
692                 mwifiex_dbg(priv->adapter, ERROR,
693                             "11D: invalid action:%d\n", domain_info->action);
694                 return -1;
695         }
696
697         return 0;
698 }
699
700 /*
701  * This function handles the command response of get extended version.
702  *
703  * Handling includes forming the extended version string and sending it
704  * to application.
705  */
706 static int mwifiex_ret_ver_ext(struct mwifiex_private *priv,
707                                struct host_cmd_ds_command *resp,
708                                struct host_cmd_ds_version_ext *version_ext)
709 {
710         struct host_cmd_ds_version_ext *ver_ext = &resp->params.verext;
711
712         if (version_ext) {
713                 version_ext->version_str_sel = ver_ext->version_str_sel;
714                 memcpy(version_ext->version_str, ver_ext->version_str,
715                        sizeof(char) * 128);
716                 memcpy(priv->version_str, ver_ext->version_str, 128);
717         }
718         return 0;
719 }
720
721 /*
722  * This function handles the command response of remain on channel.
723  */
724 static int
725 mwifiex_ret_remain_on_chan(struct mwifiex_private *priv,
726                            struct host_cmd_ds_command *resp,
727                            struct host_cmd_ds_remain_on_chan *roc_cfg)
728 {
729         struct host_cmd_ds_remain_on_chan *resp_cfg = &resp->params.roc_cfg;
730
731         if (roc_cfg)
732                 memcpy(roc_cfg, resp_cfg, sizeof(*roc_cfg));
733
734         return 0;
735 }
736
737 /*
738  * This function handles the command response of P2P mode cfg.
739  */
740 static int
741 mwifiex_ret_p2p_mode_cfg(struct mwifiex_private *priv,
742                          struct host_cmd_ds_command *resp,
743                          void *data_buf)
744 {
745         struct host_cmd_ds_p2p_mode_cfg *mode_cfg = &resp->params.mode_cfg;
746
747         if (data_buf)
748                 *((u16 *)data_buf) = le16_to_cpu(mode_cfg->mode);
749
750         return 0;
751 }
752
753 /* This function handles the command response of mem_access command
754  */
755 static int
756 mwifiex_ret_mem_access(struct mwifiex_private *priv,
757                        struct host_cmd_ds_command *resp, void *pioctl_buf)
758 {
759         struct host_cmd_ds_mem_access *mem = (void *)&resp->params.mem;
760
761         priv->mem_rw.addr = le32_to_cpu(mem->addr);
762         priv->mem_rw.value = le32_to_cpu(mem->value);
763
764         return 0;
765 }
766 /*
767  * This function handles the command response of register access.
768  *
769  * The register value and offset are returned to the user. For EEPROM
770  * access, the byte count is also returned.
771  */
772 static int mwifiex_ret_reg_access(u16 type, struct host_cmd_ds_command *resp,
773                                   void *data_buf)
774 {
775         struct mwifiex_ds_reg_rw *reg_rw;
776         struct mwifiex_ds_read_eeprom *eeprom;
777         union reg {
778                 struct host_cmd_ds_mac_reg_access *mac;
779                 struct host_cmd_ds_bbp_reg_access *bbp;
780                 struct host_cmd_ds_rf_reg_access *rf;
781                 struct host_cmd_ds_pmic_reg_access *pmic;
782                 struct host_cmd_ds_802_11_eeprom_access *eeprom;
783         } r;
784
785         if (!data_buf)
786                 return 0;
787
788         reg_rw = data_buf;
789         eeprom = data_buf;
790         switch (type) {
791         case HostCmd_CMD_MAC_REG_ACCESS:
792                 r.mac = &resp->params.mac_reg;
793                 reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.mac->offset));
794                 reg_rw->value = r.mac->value;
795                 break;
796         case HostCmd_CMD_BBP_REG_ACCESS:
797                 r.bbp = &resp->params.bbp_reg;
798                 reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.bbp->offset));
799                 reg_rw->value = cpu_to_le32((u32) r.bbp->value);
800                 break;
801
802         case HostCmd_CMD_RF_REG_ACCESS:
803                 r.rf = &resp->params.rf_reg;
804                 reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.rf->offset));
805                 reg_rw->value = cpu_to_le32((u32) r.bbp->value);
806                 break;
807         case HostCmd_CMD_PMIC_REG_ACCESS:
808                 r.pmic = &resp->params.pmic_reg;
809                 reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.pmic->offset));
810                 reg_rw->value = cpu_to_le32((u32) r.pmic->value);
811                 break;
812         case HostCmd_CMD_CAU_REG_ACCESS:
813                 r.rf = &resp->params.rf_reg;
814                 reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.rf->offset));
815                 reg_rw->value = cpu_to_le32((u32) r.rf->value);
816                 break;
817         case HostCmd_CMD_802_11_EEPROM_ACCESS:
818                 r.eeprom = &resp->params.eeprom;
819                 pr_debug("info: EEPROM read len=%x\n", r.eeprom->byte_count);
820                 if (le16_to_cpu(eeprom->byte_count) <
821                     le16_to_cpu(r.eeprom->byte_count)) {
822                         eeprom->byte_count = cpu_to_le16(0);
823                         pr_debug("info: EEPROM read length is too big\n");
824                         return -1;
825                 }
826                 eeprom->offset = r.eeprom->offset;
827                 eeprom->byte_count = r.eeprom->byte_count;
828                 if (le16_to_cpu(eeprom->byte_count) > 0)
829                         memcpy(&eeprom->value, &r.eeprom->value,
830                                le16_to_cpu(r.eeprom->byte_count));
831
832                 break;
833         default:
834                 return -1;
835         }
836         return 0;
837 }
838
839 /*
840  * This function handles the command response of get IBSS coalescing status.
841  *
842  * If the received BSSID is different than the current one, the current BSSID,
843  * beacon interval, ATIM window and ERP information are updated, along with
844  * changing the ad-hoc state accordingly.
845  */
846 static int mwifiex_ret_ibss_coalescing_status(struct mwifiex_private *priv,
847                                               struct host_cmd_ds_command *resp)
848 {
849         struct host_cmd_ds_802_11_ibss_status *ibss_coal_resp =
850                                         &(resp->params.ibss_coalescing);
851
852         if (le16_to_cpu(ibss_coal_resp->action) == HostCmd_ACT_GEN_SET)
853                 return 0;
854
855         mwifiex_dbg(priv->adapter, INFO,
856                     "info: new BSSID %pM\n", ibss_coal_resp->bssid);
857
858         /* If rsp has NULL BSSID, Just return..... No Action */
859         if (is_zero_ether_addr(ibss_coal_resp->bssid)) {
860                 mwifiex_dbg(priv->adapter, FATAL, "new BSSID is NULL\n");
861                 return 0;
862         }
863
864         /* If BSSID is diff, modify current BSS parameters */
865         if (!ether_addr_equal(priv->curr_bss_params.bss_descriptor.mac_address, ibss_coal_resp->bssid)) {
866                 /* BSSID */
867                 memcpy(priv->curr_bss_params.bss_descriptor.mac_address,
868                        ibss_coal_resp->bssid, ETH_ALEN);
869
870                 /* Beacon Interval */
871                 priv->curr_bss_params.bss_descriptor.beacon_period
872                         = le16_to_cpu(ibss_coal_resp->beacon_interval);
873
874                 /* ERP Information */
875                 priv->curr_bss_params.bss_descriptor.erp_flags =
876                         (u8) le16_to_cpu(ibss_coal_resp->use_g_rate_protect);
877
878                 priv->adhoc_state = ADHOC_COALESCED;
879         }
880
881         return 0;
882 }
883 static int mwifiex_ret_tdls_oper(struct mwifiex_private *priv,
884                                  struct host_cmd_ds_command *resp)
885 {
886         struct host_cmd_ds_tdls_oper *cmd_tdls_oper = &resp->params.tdls_oper;
887         u16 reason = le16_to_cpu(cmd_tdls_oper->reason);
888         u16 action = le16_to_cpu(cmd_tdls_oper->tdls_action);
889         struct mwifiex_sta_node *node =
890                            mwifiex_get_sta_entry(priv, cmd_tdls_oper->peer_mac);
891
892         switch (action) {
893         case ACT_TDLS_DELETE:
894                 if (reason) {
895                         if (!node || reason == TDLS_ERR_LINK_NONEXISTENT)
896                                 mwifiex_dbg(priv->adapter, ERROR,
897                                             "TDLS link delete for %pM failed: reason %d\n",
898                                             cmd_tdls_oper->peer_mac, reason);
899                         else
900                                 mwifiex_dbg(priv->adapter, ERROR,
901                                             "TDLS link delete for %pM failed: reason %d\n",
902                                             cmd_tdls_oper->peer_mac, reason);
903                 } else {
904                         mwifiex_dbg(priv->adapter, MSG,
905                                     "TDLS link delete for %pM successful\n",
906                                     cmd_tdls_oper->peer_mac);
907                 }
908                 break;
909         case ACT_TDLS_CREATE:
910                 if (reason) {
911                         mwifiex_dbg(priv->adapter, ERROR,
912                                     "TDLS link creation for %pM failed: reason %d",
913                                     cmd_tdls_oper->peer_mac, reason);
914                         if (node && reason != TDLS_ERR_LINK_EXISTS)
915                                 node->tdls_status = TDLS_SETUP_FAILURE;
916                 } else {
917                         mwifiex_dbg(priv->adapter, MSG,
918                                     "TDLS link creation for %pM successful",
919                                     cmd_tdls_oper->peer_mac);
920                 }
921                 break;
922         case ACT_TDLS_CONFIG:
923                 if (reason) {
924                         mwifiex_dbg(priv->adapter, ERROR,
925                                     "TDLS link config for %pM failed, reason %d\n",
926                                     cmd_tdls_oper->peer_mac, reason);
927                         if (node)
928                                 node->tdls_status = TDLS_SETUP_FAILURE;
929                 } else {
930                         mwifiex_dbg(priv->adapter, MSG,
931                                     "TDLS link config for %pM successful\n",
932                                     cmd_tdls_oper->peer_mac);
933                 }
934                 break;
935         default:
936                 mwifiex_dbg(priv->adapter, ERROR,
937                             "Unknown TDLS command action response %d", action);
938                 return -1;
939         }
940
941         return 0;
942 }
943 /*
944  * This function handles the command response for subscribe event command.
945  */
946 static int mwifiex_ret_subsc_evt(struct mwifiex_private *priv,
947                                  struct host_cmd_ds_command *resp)
948 {
949         struct host_cmd_ds_802_11_subsc_evt *cmd_sub_event =
950                 &resp->params.subsc_evt;
951
952         /* For every subscribe event command (Get/Set/Clear), FW reports the
953          * current set of subscribed events*/
954         mwifiex_dbg(priv->adapter, EVENT,
955                     "Bitmap of currently subscribed events: %16x\n",
956                     le16_to_cpu(cmd_sub_event->events));
957
958         return 0;
959 }
960
961 static int mwifiex_ret_uap_sta_list(struct mwifiex_private *priv,
962                                     struct host_cmd_ds_command *resp)
963 {
964         struct host_cmd_ds_sta_list *sta_list =
965                 &resp->params.sta_list;
966         struct mwifiex_ie_types_sta_info *sta_info = (void *)&sta_list->tlv;
967         int i;
968         struct mwifiex_sta_node *sta_node;
969
970         for (i = 0; i < sta_list->sta_count; i++) {
971                 sta_node = mwifiex_get_sta_entry(priv, sta_info->mac);
972                 if (unlikely(!sta_node))
973                         continue;
974
975                 sta_node->stats.rssi = sta_info->rssi;
976                 sta_info++;
977         }
978
979         return 0;
980 }
981
982 /* This function handles the command response of set_cfg_data */
983 static int mwifiex_ret_cfg_data(struct mwifiex_private *priv,
984                                 struct host_cmd_ds_command *resp)
985 {
986         if (resp->result != HostCmd_RESULT_OK) {
987                 mwifiex_dbg(priv->adapter, ERROR, "Cal data cmd resp failed\n");
988                 return -1;
989         }
990
991         return 0;
992 }
993
994 /** This Function handles the command response of sdio rx aggr */
995 static int mwifiex_ret_sdio_rx_aggr_cfg(struct mwifiex_private *priv,
996                                         struct host_cmd_ds_command *resp)
997 {
998         struct mwifiex_adapter *adapter = priv->adapter;
999         struct host_cmd_sdio_sp_rx_aggr_cfg *cfg =
1000                                 &resp->params.sdio_rx_aggr_cfg;
1001
1002         adapter->sdio_rx_aggr_enable = cfg->enable;
1003         adapter->sdio_rx_block_size = le16_to_cpu(cfg->block_size);
1004
1005         return 0;
1006 }
1007
1008 /*
1009  * This function handles the command responses.
1010  *
1011  * This is a generic function, which calls command specific
1012  * response handlers based on the command ID.
1013  */
1014 int mwifiex_process_sta_cmdresp(struct mwifiex_private *priv, u16 cmdresp_no,
1015                                 struct host_cmd_ds_command *resp)
1016 {
1017         int ret = 0;
1018         struct mwifiex_adapter *adapter = priv->adapter;
1019         void *data_buf = adapter->curr_cmd->data_buf;
1020
1021         /* If the command is not successful, cleanup and return failure */
1022         if (resp->result != HostCmd_RESULT_OK) {
1023                 mwifiex_process_cmdresp_error(priv, resp);
1024                 return -1;
1025         }
1026         /* Command successful, handle response */
1027         switch (cmdresp_no) {
1028         case HostCmd_CMD_GET_HW_SPEC:
1029                 ret = mwifiex_ret_get_hw_spec(priv, resp);
1030                 break;
1031         case HostCmd_CMD_CFG_DATA:
1032                 ret = mwifiex_ret_cfg_data(priv, resp);
1033                 break;
1034         case HostCmd_CMD_MAC_CONTROL:
1035                 break;
1036         case HostCmd_CMD_802_11_MAC_ADDRESS:
1037                 ret = mwifiex_ret_802_11_mac_address(priv, resp);
1038                 break;
1039         case HostCmd_CMD_MAC_MULTICAST_ADR:
1040                 ret = mwifiex_ret_mac_multicast_adr(priv, resp);
1041                 break;
1042         case HostCmd_CMD_TX_RATE_CFG:
1043                 ret = mwifiex_ret_tx_rate_cfg(priv, resp);
1044                 break;
1045         case HostCmd_CMD_802_11_SCAN:
1046                 ret = mwifiex_ret_802_11_scan(priv, resp);
1047                 adapter->curr_cmd->wait_q_enabled = false;
1048                 break;
1049         case HostCmd_CMD_802_11_SCAN_EXT:
1050                 ret = mwifiex_ret_802_11_scan_ext(priv, resp);
1051                 adapter->curr_cmd->wait_q_enabled = false;
1052                 break;
1053         case HostCmd_CMD_802_11_BG_SCAN_QUERY:
1054                 ret = mwifiex_ret_802_11_scan(priv, resp);
1055                 mwifiex_dbg(adapter, CMD,
1056                             "info: CMD_RESP: BG_SCAN result is ready!\n");
1057                 break;
1058         case HostCmd_CMD_TXPWR_CFG:
1059                 ret = mwifiex_ret_tx_power_cfg(priv, resp);
1060                 break;
1061         case HostCmd_CMD_RF_TX_PWR:
1062                 ret = mwifiex_ret_rf_tx_power(priv, resp);
1063                 break;
1064         case HostCmd_CMD_RF_ANTENNA:
1065                 ret = mwifiex_ret_rf_antenna(priv, resp);
1066                 break;
1067         case HostCmd_CMD_802_11_PS_MODE_ENH:
1068                 ret = mwifiex_ret_enh_power_mode(priv, resp, data_buf);
1069                 break;
1070         case HostCmd_CMD_802_11_HS_CFG_ENH:
1071                 ret = mwifiex_ret_802_11_hs_cfg(priv, resp);
1072                 break;
1073         case HostCmd_CMD_802_11_ASSOCIATE:
1074                 ret = mwifiex_ret_802_11_associate(priv, resp);
1075                 break;
1076         case HostCmd_CMD_802_11_DEAUTHENTICATE:
1077                 ret = mwifiex_ret_802_11_deauthenticate(priv, resp);
1078                 break;
1079         case HostCmd_CMD_802_11_AD_HOC_START:
1080         case HostCmd_CMD_802_11_AD_HOC_JOIN:
1081                 ret = mwifiex_ret_802_11_ad_hoc(priv, resp);
1082                 break;
1083         case HostCmd_CMD_802_11_AD_HOC_STOP:
1084                 ret = mwifiex_ret_802_11_ad_hoc_stop(priv, resp);
1085                 break;
1086         case HostCmd_CMD_802_11_GET_LOG:
1087                 ret = mwifiex_ret_get_log(priv, resp, data_buf);
1088                 break;
1089         case HostCmd_CMD_RSSI_INFO:
1090                 ret = mwifiex_ret_802_11_rssi_info(priv, resp);
1091                 break;
1092         case HostCmd_CMD_802_11_SNMP_MIB:
1093                 ret = mwifiex_ret_802_11_snmp_mib(priv, resp, data_buf);
1094                 break;
1095         case HostCmd_CMD_802_11_TX_RATE_QUERY:
1096                 ret = mwifiex_ret_802_11_tx_rate_query(priv, resp);
1097                 break;
1098         case HostCmd_CMD_VERSION_EXT:
1099                 ret = mwifiex_ret_ver_ext(priv, resp, data_buf);
1100                 break;
1101         case HostCmd_CMD_REMAIN_ON_CHAN:
1102                 ret = mwifiex_ret_remain_on_chan(priv, resp, data_buf);
1103                 break;
1104         case HostCmd_CMD_11AC_CFG:
1105                 break;
1106         case HostCmd_CMD_P2P_MODE_CFG:
1107                 ret = mwifiex_ret_p2p_mode_cfg(priv, resp, data_buf);
1108                 break;
1109         case HostCmd_CMD_MGMT_FRAME_REG:
1110         case HostCmd_CMD_FUNC_INIT:
1111         case HostCmd_CMD_FUNC_SHUTDOWN:
1112                 break;
1113         case HostCmd_CMD_802_11_KEY_MATERIAL:
1114                 ret = mwifiex_ret_802_11_key_material(priv, resp);
1115                 break;
1116         case HostCmd_CMD_802_11D_DOMAIN_INFO:
1117                 ret = mwifiex_ret_802_11d_domain_info(priv, resp);
1118                 break;
1119         case HostCmd_CMD_11N_ADDBA_REQ:
1120                 ret = mwifiex_ret_11n_addba_req(priv, resp);
1121                 break;
1122         case HostCmd_CMD_11N_DELBA:
1123                 ret = mwifiex_ret_11n_delba(priv, resp);
1124                 break;
1125         case HostCmd_CMD_11N_ADDBA_RSP:
1126                 ret = mwifiex_ret_11n_addba_resp(priv, resp);
1127                 break;
1128         case HostCmd_CMD_RECONFIGURE_TX_BUFF:
1129                 adapter->tx_buf_size = (u16) le16_to_cpu(resp->params.
1130                                                              tx_buf.buff_size);
1131                 adapter->tx_buf_size = (adapter->tx_buf_size
1132                                         / MWIFIEX_SDIO_BLOCK_SIZE)
1133                                        * MWIFIEX_SDIO_BLOCK_SIZE;
1134                 adapter->curr_tx_buf_size = adapter->tx_buf_size;
1135                 mwifiex_dbg(adapter, CMD, "cmd: curr_tx_buf_size=%d\n",
1136                             adapter->curr_tx_buf_size);
1137
1138                 if (adapter->if_ops.update_mp_end_port)
1139                         adapter->if_ops.update_mp_end_port(adapter,
1140                                 le16_to_cpu(resp->params.tx_buf.mp_end_port));
1141                 break;
1142         case HostCmd_CMD_AMSDU_AGGR_CTRL:
1143                 break;
1144         case HostCmd_CMD_WMM_GET_STATUS:
1145                 ret = mwifiex_ret_wmm_get_status(priv, resp);
1146                 break;
1147         case HostCmd_CMD_802_11_IBSS_COALESCING_STATUS:
1148                 ret = mwifiex_ret_ibss_coalescing_status(priv, resp);
1149                 break;
1150         case HostCmd_CMD_MEM_ACCESS:
1151                 ret = mwifiex_ret_mem_access(priv, resp, data_buf);
1152                 break;
1153         case HostCmd_CMD_MAC_REG_ACCESS:
1154         case HostCmd_CMD_BBP_REG_ACCESS:
1155         case HostCmd_CMD_RF_REG_ACCESS:
1156         case HostCmd_CMD_PMIC_REG_ACCESS:
1157         case HostCmd_CMD_CAU_REG_ACCESS:
1158         case HostCmd_CMD_802_11_EEPROM_ACCESS:
1159                 ret = mwifiex_ret_reg_access(cmdresp_no, resp, data_buf);
1160                 break;
1161         case HostCmd_CMD_SET_BSS_MODE:
1162                 break;
1163         case HostCmd_CMD_11N_CFG:
1164                 break;
1165         case HostCmd_CMD_PCIE_DESC_DETAILS:
1166                 break;
1167         case HostCmd_CMD_802_11_SUBSCRIBE_EVENT:
1168                 ret = mwifiex_ret_subsc_evt(priv, resp);
1169                 break;
1170         case HostCmd_CMD_UAP_SYS_CONFIG:
1171                 break;
1172         case HOST_CMD_APCMD_STA_LIST:
1173                 ret = mwifiex_ret_uap_sta_list(priv, resp);
1174                 break;
1175         case HostCmd_CMD_UAP_BSS_START:
1176                 adapter->tx_lock_flag = false;
1177                 adapter->pps_uapsd_mode = false;
1178                 adapter->delay_null_pkt = false;
1179                 priv->bss_started = 1;
1180                 break;
1181         case HostCmd_CMD_UAP_BSS_STOP:
1182                 priv->bss_started = 0;
1183                 break;
1184         case HostCmd_CMD_UAP_STA_DEAUTH:
1185                 break;
1186         case HOST_CMD_APCMD_SYS_RESET:
1187                 break;
1188         case HostCmd_CMD_MEF_CFG:
1189                 break;
1190         case HostCmd_CMD_COALESCE_CFG:
1191                 break;
1192         case HostCmd_CMD_TDLS_OPER:
1193                 ret = mwifiex_ret_tdls_oper(priv, resp);
1194                 break;
1195         case HostCmd_CMD_CHAN_REPORT_REQUEST:
1196                 break;
1197         case HostCmd_CMD_SDIO_SP_RX_AGGR_CFG:
1198                 ret = mwifiex_ret_sdio_rx_aggr_cfg(priv, resp);
1199                 break;
1200         default:
1201                 mwifiex_dbg(adapter, ERROR,
1202                             "CMD_RESP: unknown cmd response %#x\n",
1203                             resp->command);
1204                 break;
1205         }
1206
1207         return ret;
1208 }