Lines Matching +full:event +full:- +full:deep

1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright 2011-2020 NXP
32 cmd_node->priv = priv; in mwifiex_init_cmd_node()
33 cmd_node->cmd_no = cmd_no; in mwifiex_init_cmd_node()
36 cmd_node->wait_q_enabled = true; in mwifiex_init_cmd_node()
37 cmd_node->cmd_wait_q_woken = false; in mwifiex_init_cmd_node()
38 cmd_node->condition = &cmd_node->cmd_wait_q_woken; in mwifiex_init_cmd_node()
40 cmd_node->data_buf = data_buf; in mwifiex_init_cmd_node()
41 cmd_node->cmd_skb = cmd_node->skb; in mwifiex_init_cmd_node()
53 spin_lock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
54 if (list_empty(&adapter->cmd_free_q)) { in mwifiex_get_cmd_node()
57 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
60 cmd_node = list_first_entry(&adapter->cmd_free_q, in mwifiex_get_cmd_node()
62 list_del(&cmd_node->list); in mwifiex_get_cmd_node()
63 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
83 cmd_node->cmd_no = 0; in mwifiex_clean_cmd_node()
84 cmd_node->cmd_flag = 0; in mwifiex_clean_cmd_node()
85 cmd_node->data_buf = NULL; in mwifiex_clean_cmd_node()
86 cmd_node->wait_q_enabled = false; in mwifiex_clean_cmd_node()
88 if (cmd_node->cmd_skb) in mwifiex_clean_cmd_node()
89 skb_trim(cmd_node->cmd_skb, 0); in mwifiex_clean_cmd_node()
91 if (cmd_node->resp_skb) { in mwifiex_clean_cmd_node()
92 adapter->if_ops.cmdrsp_complete(adapter, cmd_node->resp_skb); in mwifiex_clean_cmd_node()
93 cmd_node->resp_skb = NULL; in mwifiex_clean_cmd_node()
101 * cleaning the command node and re-inserting it into the free queue.
110 if (cmd_node->wait_q_enabled) in mwifiex_insert_cmd_to_free_q()
116 spin_lock_bh(&adapter->cmd_free_q_lock); in mwifiex_insert_cmd_to_free_q()
117 list_add_tail(&cmd_node->list, &adapter->cmd_free_q); in mwifiex_insert_cmd_to_free_q()
118 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_insert_cmd_to_free_q()
125 struct host_cmd_ds_command *host_cmd = (void *)cmd_node->cmd_skb->data; in mwifiex_recycle_cmd_node()
129 atomic_dec(&adapter->cmd_pending); in mwifiex_recycle_cmd_node()
132 le16_to_cpu(host_cmd->command), in mwifiex_recycle_cmd_node()
133 atomic_read(&adapter->cmd_pending)); in mwifiex_recycle_cmd_node()
148 memcpy(cmd, pcmd_ptr->cmd, pcmd_ptr->len); in mwifiex_cmd_host_cmd()
149 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_host_cmd()
150 "cmd: host cmd size = %d\n", pcmd_ptr->len); in mwifiex_cmd_host_cmd()
166 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_dnld_cmd_to_fw()
173 return -1; in mwifiex_dnld_cmd_to_fw()
175 host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data); in mwifiex_dnld_cmd_to_fw()
178 if (host_cmd->size == 0) { in mwifiex_dnld_cmd_to_fw()
182 if (cmd_node->wait_q_enabled) in mwifiex_dnld_cmd_to_fw()
183 adapter->cmd_wait_q.status = -1; in mwifiex_dnld_cmd_to_fw()
185 return -1; in mwifiex_dnld_cmd_to_fw()
188 cmd_code = le16_to_cpu(host_cmd->command); in mwifiex_dnld_cmd_to_fw()
189 cmd_node->cmd_no = cmd_code; in mwifiex_dnld_cmd_to_fw()
190 cmd_size = le16_to_cpu(host_cmd->size); in mwifiex_dnld_cmd_to_fw()
192 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET && in mwifiex_dnld_cmd_to_fw()
199 queue_work(adapter->workqueue, &adapter->main_work); in mwifiex_dnld_cmd_to_fw()
200 return -1; in mwifiex_dnld_cmd_to_fw()
204 adapter->seq_num++; in mwifiex_dnld_cmd_to_fw()
205 host_cmd->seq_num = cpu_to_le16(HostCmd_SET_SEQ_NO_BSS_INFO in mwifiex_dnld_cmd_to_fw()
206 (adapter->seq_num, in mwifiex_dnld_cmd_to_fw()
207 cmd_node->priv->bss_num, in mwifiex_dnld_cmd_to_fw()
208 cmd_node->priv->bss_type)); in mwifiex_dnld_cmd_to_fw()
210 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
211 adapter->curr_cmd = cmd_node; in mwifiex_dnld_cmd_to_fw()
212 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
215 if (cmd_node->cmd_skb->len > cmd_size) in mwifiex_dnld_cmd_to_fw()
220 skb_trim(cmd_node->cmd_skb, cmd_size); in mwifiex_dnld_cmd_to_fw()
221 else if (cmd_node->cmd_skb->len < cmd_size) in mwifiex_dnld_cmd_to_fw()
227 skb_put(cmd_node->cmd_skb, cmd_size - cmd_node->cmd_skb->len); in mwifiex_dnld_cmd_to_fw()
233 cmd_size, le16_to_cpu(host_cmd->seq_num)); in mwifiex_dnld_cmd_to_fw()
236 if (adapter->iface_type == MWIFIEX_USB) { in mwifiex_dnld_cmd_to_fw()
237 skb_push(cmd_node->cmd_skb, MWIFIEX_TYPE_LEN); in mwifiex_dnld_cmd_to_fw()
239 cmd_node->cmd_skb->data); in mwifiex_dnld_cmd_to_fw()
240 adapter->cmd_sent = true; in mwifiex_dnld_cmd_to_fw()
241 ret = adapter->if_ops.host_to_card(adapter, in mwifiex_dnld_cmd_to_fw()
243 cmd_node->cmd_skb, NULL); in mwifiex_dnld_cmd_to_fw()
244 skb_pull(cmd_node->cmd_skb, MWIFIEX_TYPE_LEN); in mwifiex_dnld_cmd_to_fw()
245 if (ret == -EBUSY) in mwifiex_dnld_cmd_to_fw()
246 cmd_node->cmd_skb = NULL; in mwifiex_dnld_cmd_to_fw()
248 skb_push(cmd_node->cmd_skb, adapter->intf_hdr_len); in mwifiex_dnld_cmd_to_fw()
249 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD, in mwifiex_dnld_cmd_to_fw()
250 cmd_node->cmd_skb, NULL); in mwifiex_dnld_cmd_to_fw()
251 skb_pull(cmd_node->cmd_skb, adapter->intf_hdr_len); in mwifiex_dnld_cmd_to_fw()
254 if (ret == -1) { in mwifiex_dnld_cmd_to_fw()
257 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_dnld_cmd_to_fw()
258 adapter->cmd_sent = false; in mwifiex_dnld_cmd_to_fw()
259 if (cmd_node->wait_q_enabled) in mwifiex_dnld_cmd_to_fw()
260 adapter->cmd_wait_q.status = -1; in mwifiex_dnld_cmd_to_fw()
261 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_dnld_cmd_to_fw()
263 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
264 adapter->curr_cmd = NULL; in mwifiex_dnld_cmd_to_fw()
265 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
267 adapter->dbg.num_cmd_host_to_card_failure++; in mwifiex_dnld_cmd_to_fw()
268 return -1; in mwifiex_dnld_cmd_to_fw()
272 adapter->dbg.last_cmd_index = in mwifiex_dnld_cmd_to_fw()
273 (adapter->dbg.last_cmd_index + 1) % DBG_CMD_NUM; in mwifiex_dnld_cmd_to_fw()
274 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index] = cmd_code; in mwifiex_dnld_cmd_to_fw()
275 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index] = in mwifiex_dnld_cmd_to_fw()
282 mod_timer(&adapter->cmd_timer, in mwifiex_dnld_cmd_to_fw()
306 adapter->sleep_cfm->data; in mwifiex_dnld_sleep_confirm_cmd()
311 adapter->seq_num++; in mwifiex_dnld_sleep_confirm_cmd()
312 sleep_cfm_buf->seq_num = in mwifiex_dnld_sleep_confirm_cmd()
314 (adapter->seq_num, priv->bss_num, in mwifiex_dnld_sleep_confirm_cmd()
315 priv->bss_type)); in mwifiex_dnld_sleep_confirm_cmd()
319 le16_to_cpu(sleep_cfm_buf->command), in mwifiex_dnld_sleep_confirm_cmd()
320 le16_to_cpu(sleep_cfm_buf->action), in mwifiex_dnld_sleep_confirm_cmd()
321 le16_to_cpu(sleep_cfm_buf->size), in mwifiex_dnld_sleep_confirm_cmd()
322 le16_to_cpu(sleep_cfm_buf->seq_num)); in mwifiex_dnld_sleep_confirm_cmd()
324 le16_to_cpu(sleep_cfm_buf->size)); in mwifiex_dnld_sleep_confirm_cmd()
326 if (adapter->iface_type == MWIFIEX_USB) { in mwifiex_dnld_sleep_confirm_cmd()
333 return -ENOMEM; in mwifiex_dnld_sleep_confirm_cmd()
338 put_unaligned_le32(MWIFIEX_USB_TYPE_CMD, sleep_cfm_tmp->data); in mwifiex_dnld_sleep_confirm_cmd()
339 memcpy(sleep_cfm_tmp->data + MWIFIEX_TYPE_LEN, in mwifiex_dnld_sleep_confirm_cmd()
340 adapter->sleep_cfm->data, in mwifiex_dnld_sleep_confirm_cmd()
342 ret = adapter->if_ops.host_to_card(adapter, in mwifiex_dnld_sleep_confirm_cmd()
345 if (ret != -EBUSY) in mwifiex_dnld_sleep_confirm_cmd()
348 skb_push(adapter->sleep_cfm, adapter->intf_hdr_len); in mwifiex_dnld_sleep_confirm_cmd()
349 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD, in mwifiex_dnld_sleep_confirm_cmd()
350 adapter->sleep_cfm, NULL); in mwifiex_dnld_sleep_confirm_cmd()
351 skb_pull(adapter->sleep_cfm, adapter->intf_hdr_len); in mwifiex_dnld_sleep_confirm_cmd()
354 if (ret == -1) { in mwifiex_dnld_sleep_confirm_cmd()
356 adapter->dbg.num_cmd_sleep_cfm_host_to_card_failure++; in mwifiex_dnld_sleep_confirm_cmd()
357 return -1; in mwifiex_dnld_sleep_confirm_cmd()
360 if (!le16_to_cpu(sleep_cfm_buf->resp_ctrl)) in mwifiex_dnld_sleep_confirm_cmd()
362 adapter->ps_state = PS_STATE_SLEEP; in mwifiex_dnld_sleep_confirm_cmd()
364 adapter->ps_state = PS_STATE_SLEEP_CFM; in mwifiex_dnld_sleep_confirm_cmd()
366 if (!le16_to_cpu(sleep_cfm_buf->resp_ctrl) && in mwifiex_dnld_sleep_confirm_cmd()
367 (test_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags) && in mwifiex_dnld_sleep_confirm_cmd()
368 !adapter->sleep_period.period)) { in mwifiex_dnld_sleep_confirm_cmd()
369 adapter->pm_wakeup_card_req = true; in mwifiex_dnld_sleep_confirm_cmd()
398 return -ENOMEM; in mwifiex_alloc_cmd_buffer()
400 adapter->cmd_pool = cmd_array; in mwifiex_alloc_cmd_buffer()
408 return -ENOMEM; in mwifiex_alloc_cmd_buffer()
430 if (!adapter->cmd_pool) { in mwifiex_free_cmd_buffer()
436 cmd_array = adapter->cmd_pool; in mwifiex_free_cmd_buffer()
448 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_free_cmd_buffer()
449 adapter->if_ops.cmdrsp_complete(adapter, in mwifiex_free_cmd_buffer()
455 if (adapter->cmd_pool) { in mwifiex_free_cmd_buffer()
458 kfree(adapter->cmd_pool); in mwifiex_free_cmd_buffer()
459 adapter->cmd_pool = NULL; in mwifiex_free_cmd_buffer()
466 * Event body of events received from firmware are not used (though they are
467 * saved), only the event ID is used. Some events are re-invoked by
468 * the driver, with a new event body.
478 struct sk_buff *skb = adapter->event_skb; in mwifiex_process_event()
482 if ((adapter->event_cause & EVENT_ID_MASK) == EVENT_RADAR_DETECTED) { in mwifiex_process_event()
483 for (i = 0; i < adapter->priv_num; i++) { in mwifiex_process_event()
484 priv = adapter->priv[i]; in mwifiex_process_event()
486 adapter->event_cause |= in mwifiex_process_event()
487 ((priv->bss_num & 0xff) << 16) | in mwifiex_process_event()
488 ((priv->bss_type & 0xff) << 24); in mwifiex_process_event()
494 eventcause = adapter->event_cause; in mwifiex_process_event()
496 /* Save the last event to debug log */ in mwifiex_process_event()
497 adapter->dbg.last_event_index = in mwifiex_process_event()
498 (adapter->dbg.last_event_index + 1) % DBG_CMD_NUM; in mwifiex_process_event()
499 adapter->dbg.last_event[adapter->dbg.last_event_index] = in mwifiex_process_event()
508 /* Clear BSS_NO_BITS from event */ in mwifiex_process_event()
510 adapter->event_cause = eventcause; in mwifiex_process_event()
515 rx_info->bss_num = priv->bss_num; in mwifiex_process_event()
516 rx_info->bss_type = priv->bss_type; in mwifiex_process_event()
517 mwifiex_dbg_dump(adapter, EVT_D, "Event Buf:", in mwifiex_process_event()
518 skb->data, skb->len); in mwifiex_process_event()
521 mwifiex_dbg(adapter, EVENT, "EVENT: cause: %#x\n", eventcause); in mwifiex_process_event()
523 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP) in mwifiex_process_event()
528 adapter->event_cause = 0; in mwifiex_process_event()
529 adapter->event_skb = NULL; in mwifiex_process_event()
530 adapter->if_ops.event_complete(adapter, skb); in mwifiex_process_event()
538 * Preparation includes -
539 * - Sanity tests to make sure the card is still present or the FW
541 * - Getting a new command node from the command free queue
542 * - Initializing the command node for default parameters
543 * - Fill up the non-default parameters and buffer pointers
544 * - Add the command to pending queue
550 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_send_cmd()
556 return -1; in mwifiex_send_cmd()
559 if (test_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags)) { in mwifiex_send_cmd()
562 return -1; in mwifiex_send_cmd()
565 if (test_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags) && in mwifiex_send_cmd()
569 return -1; in mwifiex_send_cmd()
572 if (test_bit(MWIFIEX_SURPRISE_REMOVED, &adapter->work_flags)) { in mwifiex_send_cmd()
575 return -1; in mwifiex_send_cmd()
578 if (test_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags)) { in mwifiex_send_cmd()
581 return -1; in mwifiex_send_cmd()
584 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET) { in mwifiex_send_cmd()
588 return -1; in mwifiex_send_cmd()
594 if (adapter->mfg_mode && cmd_no) { in mwifiex_send_cmd()
595 dev_dbg(adapter->dev, "Ignoring commands in manufacturing mode\n"); in mwifiex_send_cmd()
596 return -1; in mwifiex_send_cmd()
599 if (priv->adapter->hs_activated_manually && in mwifiex_send_cmd()
602 priv->adapter->hs_activated_manually = false; in mwifiex_send_cmd()
611 return -1; in mwifiex_send_cmd()
617 if (!cmd_node->cmd_skb) { in mwifiex_send_cmd()
620 return -1; in mwifiex_send_cmd()
623 skb_put_zero(cmd_node->cmd_skb, sizeof(struct host_cmd_ds_command)); in mwifiex_send_cmd()
625 cmd_ptr = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data); in mwifiex_send_cmd()
626 cmd_ptr->command = cpu_to_le16(cmd_no); in mwifiex_send_cmd()
627 cmd_ptr->result = 0; in mwifiex_send_cmd()
650 cmd_node->cmd_flag |= CMD_F_HOSTCMD; in mwifiex_send_cmd()
659 return -1; in mwifiex_send_cmd()
668 queue_work(adapter->workqueue, &adapter->main_work); in mwifiex_send_cmd()
669 if (cmd_node->wait_q_enabled) in mwifiex_send_cmd()
691 host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data); in mwifiex_insert_cmd_to_pending_q()
697 command = le16_to_cpu(host_cmd->command); in mwifiex_insert_cmd_to_pending_q()
702 &host_cmd->params.psmode_enh; in mwifiex_insert_cmd_to_pending_q()
703 if ((le16_to_cpu(pm->action) == DIS_PS) || in mwifiex_insert_cmd_to_pending_q()
704 (le16_to_cpu(pm->action) == DIS_AUTO_PS)) { in mwifiex_insert_cmd_to_pending_q()
705 if (adapter->ps_state != PS_STATE_AWAKE) in mwifiex_insert_cmd_to_pending_q()
713 &host_cmd->params.opt_hs_cfg; in mwifiex_insert_cmd_to_pending_q()
715 if (le16_to_cpu(hs_cfg->action) == HS_ACTIVATE) in mwifiex_insert_cmd_to_pending_q()
719 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_insert_cmd_to_pending_q()
721 list_add_tail(&cmd_node->list, &adapter->cmd_pending_q); in mwifiex_insert_cmd_to_pending_q()
723 list_add(&cmd_node->list, &adapter->cmd_pending_q); in mwifiex_insert_cmd_to_pending_q()
724 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_insert_cmd_to_pending_q()
726 atomic_inc(&adapter->cmd_pending); in mwifiex_insert_cmd_to_pending_q()
729 command, atomic_read(&adapter->cmd_pending)); in mwifiex_insert_cmd_to_pending_q()
740 * host sleep configuration command will de-activate the host sleep. For PS
751 if (adapter->curr_cmd) { in mwifiex_exec_next_cmd()
754 return -1; in mwifiex_exec_next_cmd()
757 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
759 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
760 if (list_empty(&adapter->cmd_pending_q)) { in mwifiex_exec_next_cmd()
761 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
762 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
765 cmd_node = list_first_entry(&adapter->cmd_pending_q, in mwifiex_exec_next_cmd()
768 host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data); in mwifiex_exec_next_cmd()
769 priv = cmd_node->priv; in mwifiex_exec_next_cmd()
771 if (adapter->ps_state != PS_STATE_AWAKE) { in mwifiex_exec_next_cmd()
775 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
776 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
780 list_del(&cmd_node->list); in mwifiex_exec_next_cmd()
781 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
783 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
787 * mode should de-configure host sleep. We should skip the in mwifiex_exec_next_cmd()
790 if (priv && (host_cmd->command != in mwifiex_exec_next_cmd()
792 if (adapter->hs_activated) { in mwifiex_exec_next_cmd()
794 &adapter->work_flags); in mwifiex_exec_next_cmd()
818 if (!adapter->curr_cmd || !adapter->curr_cmd->resp_skb) { in mwifiex_process_cmdresp()
819 resp = (struct host_cmd_ds_command *) adapter->upld_buf; in mwifiex_process_cmdresp()
822 le16_to_cpu(resp->command)); in mwifiex_process_cmdresp()
823 return -1; in mwifiex_process_cmdresp()
826 resp = (struct host_cmd_ds_command *)adapter->curr_cmd->resp_skb->data; in mwifiex_process_cmdresp()
827 orig_cmdresp_no = le16_to_cpu(resp->command); in mwifiex_process_cmdresp()
830 if (adapter->curr_cmd->cmd_no != cmdresp_no) { in mwifiex_process_cmdresp()
833 adapter->curr_cmd->cmd_no, cmdresp_no); in mwifiex_process_cmdresp()
834 return -1; in mwifiex_process_cmdresp()
837 del_timer_sync(&adapter->cmd_timer); in mwifiex_process_cmdresp()
838 clear_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags); in mwifiex_process_cmdresp()
840 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) { in mwifiex_process_cmdresp()
843 uint16_t size = le16_to_cpu(resp->size); in mwifiex_process_cmdresp()
847 if (adapter->curr_cmd->data_buf) { in mwifiex_process_cmdresp()
848 hostcmd = adapter->curr_cmd->data_buf; in mwifiex_process_cmdresp()
849 hostcmd->len = size; in mwifiex_process_cmdresp()
850 memcpy(hostcmd->cmd, resp, size); in mwifiex_process_cmdresp()
856 HostCmd_GET_BSS_NO(le16_to_cpu(resp->seq_num)), in mwifiex_process_cmdresp()
857 HostCmd_GET_BSS_TYPE(le16_to_cpu(resp->seq_num))); in mwifiex_process_cmdresp()
861 resp->command = cpu_to_le16(orig_cmdresp_no & HostCmd_CMD_ID_MASK); in mwifiex_process_cmdresp()
863 cmdresp_no = le16_to_cpu(resp->command); in mwifiex_process_cmdresp()
864 cmdresp_result = le16_to_cpu(resp->result); in mwifiex_process_cmdresp()
867 adapter->dbg.last_cmd_resp_index = in mwifiex_process_cmdresp()
868 (adapter->dbg.last_cmd_resp_index + 1) % DBG_CMD_NUM; in mwifiex_process_cmdresp()
869 adapter->dbg.last_cmd_resp_id[adapter->dbg.last_cmd_resp_index] = in mwifiex_process_cmdresp()
875 le16_to_cpu(resp->size), le16_to_cpu(resp->seq_num)); in mwifiex_process_cmdresp()
877 le16_to_cpu(resp->size)); in mwifiex_process_cmdresp()
881 if (adapter->curr_cmd->wait_q_enabled) in mwifiex_process_cmdresp()
882 adapter->cmd_wait_q.status = -1; in mwifiex_process_cmdresp()
884 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_process_cmdresp()
885 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
886 adapter->curr_cmd = NULL; in mwifiex_process_cmdresp()
887 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
888 return -1; in mwifiex_process_cmdresp()
891 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) { in mwifiex_process_cmdresp()
892 adapter->curr_cmd->cmd_flag &= ~CMD_F_HOSTCMD; in mwifiex_process_cmdresp()
902 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) { in mwifiex_process_cmdresp()
908 return -1; in mwifiex_process_cmdresp()
909 } else if (adapter->last_init_cmd == cmdresp_no) in mwifiex_process_cmdresp()
910 adapter->hw_status = MWIFIEX_HW_STATUS_INIT_DONE; in mwifiex_process_cmdresp()
913 if (adapter->curr_cmd) { in mwifiex_process_cmdresp()
914 if (adapter->curr_cmd->wait_q_enabled) in mwifiex_process_cmdresp()
915 adapter->cmd_wait_q.status = ret; in mwifiex_process_cmdresp()
917 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_process_cmdresp()
919 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
920 adapter->curr_cmd = NULL; in mwifiex_process_cmdresp()
921 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
930 * It will re-send the same command again.
938 set_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags); in mwifiex_cmd_timeout_func()
939 if (!adapter->curr_cmd) { in mwifiex_cmd_timeout_func()
944 cmd_node = adapter->curr_cmd; in mwifiex_cmd_timeout_func()
946 adapter->dbg.timeout_cmd_id = in mwifiex_cmd_timeout_func()
947 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index]; in mwifiex_cmd_timeout_func()
948 adapter->dbg.timeout_cmd_act = in mwifiex_cmd_timeout_func()
949 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index]; in mwifiex_cmd_timeout_func()
952 adapter->dbg.timeout_cmd_id, in mwifiex_cmd_timeout_func()
953 adapter->dbg.timeout_cmd_act); in mwifiex_cmd_timeout_func()
957 adapter->dbg.num_tx_host_to_card_failure); in mwifiex_cmd_timeout_func()
960 adapter->dbg.num_cmd_host_to_card_failure); in mwifiex_cmd_timeout_func()
965 &adapter->work_flags)); in mwifiex_cmd_timeout_func()
968 adapter->dbg.num_tx_timeout); in mwifiex_cmd_timeout_func()
972 adapter->dbg.last_cmd_index); in mwifiex_cmd_timeout_func()
975 (int)sizeof(adapter->dbg.last_cmd_id), in mwifiex_cmd_timeout_func()
976 adapter->dbg.last_cmd_id); in mwifiex_cmd_timeout_func()
979 (int)sizeof(adapter->dbg.last_cmd_act), in mwifiex_cmd_timeout_func()
980 adapter->dbg.last_cmd_act); in mwifiex_cmd_timeout_func()
984 adapter->dbg.last_cmd_resp_index); in mwifiex_cmd_timeout_func()
987 (int)sizeof(adapter->dbg.last_cmd_resp_id), in mwifiex_cmd_timeout_func()
988 adapter->dbg.last_cmd_resp_id); in mwifiex_cmd_timeout_func()
992 adapter->dbg.last_event_index); in mwifiex_cmd_timeout_func()
995 (int)sizeof(adapter->dbg.last_event), in mwifiex_cmd_timeout_func()
996 adapter->dbg.last_event); in mwifiex_cmd_timeout_func()
1000 adapter->data_sent, adapter->cmd_sent); in mwifiex_cmd_timeout_func()
1004 adapter->ps_mode, adapter->ps_state); in mwifiex_cmd_timeout_func()
1006 if (cmd_node->wait_q_enabled) { in mwifiex_cmd_timeout_func()
1007 adapter->cmd_wait_q.status = -ETIMEDOUT; in mwifiex_cmd_timeout_func()
1011 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) { in mwifiex_cmd_timeout_func()
1016 if (adapter->if_ops.device_dump) in mwifiex_cmd_timeout_func()
1017 adapter->if_ops.device_dump(adapter); in mwifiex_cmd_timeout_func()
1019 if (adapter->if_ops.card_reset) in mwifiex_cmd_timeout_func()
1020 adapter->if_ops.card_reset(adapter); in mwifiex_cmd_timeout_func()
1029 spin_lock_bh(&adapter->scan_pending_q_lock); in mwifiex_cancel_pending_scan_cmd()
1031 &adapter->scan_pending_q, list) { in mwifiex_cancel_pending_scan_cmd()
1032 list_del(&cmd_node->list); in mwifiex_cancel_pending_scan_cmd()
1033 cmd_node->wait_q_enabled = false; in mwifiex_cancel_pending_scan_cmd()
1036 spin_unlock_bh(&adapter->scan_pending_q_lock); in mwifiex_cancel_pending_scan_cmd()
1051 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_all_pending_cmd()
1053 if ((adapter->curr_cmd) && (adapter->curr_cmd->wait_q_enabled)) { in mwifiex_cancel_all_pending_cmd()
1054 adapter->cmd_wait_q.status = -1; in mwifiex_cancel_all_pending_cmd()
1055 mwifiex_complete_cmd(adapter, adapter->curr_cmd); in mwifiex_cancel_all_pending_cmd()
1056 adapter->curr_cmd->wait_q_enabled = false; in mwifiex_cancel_all_pending_cmd()
1060 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_cancel_all_pending_cmd()
1062 &adapter->cmd_pending_q, list) { in mwifiex_cancel_all_pending_cmd()
1063 list_del(&cmd_node->list); in mwifiex_cancel_all_pending_cmd()
1065 if (cmd_node->wait_q_enabled) in mwifiex_cancel_all_pending_cmd()
1066 adapter->cmd_wait_q.status = -1; in mwifiex_cancel_all_pending_cmd()
1069 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_cancel_all_pending_cmd()
1070 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_all_pending_cmd()
1090 if ((adapter->curr_cmd) && in mwifiex_cancel_pending_ioctl()
1091 (adapter->curr_cmd->wait_q_enabled)) { in mwifiex_cancel_pending_ioctl()
1092 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_pending_ioctl()
1093 cmd_node = adapter->curr_cmd; in mwifiex_cancel_pending_ioctl()
1102 adapter->curr_cmd = NULL; in mwifiex_cancel_pending_ioctl()
1103 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_pending_ioctl()
1116 * data response or event response is awaiting handling, or if we
1123 if (!adapter->cmd_sent && !atomic_read(&adapter->tx_hw_pending) && in mwifiex_check_ps_cond()
1124 !adapter->curr_cmd && !IS_CARD_RX_RCVD(adapter)) in mwifiex_check_ps_cond()
1129 (adapter->cmd_sent) ? "D" : "", in mwifiex_check_ps_cond()
1130 atomic_read(&adapter->tx_hw_pending) ? "T" : "", in mwifiex_check_ps_cond()
1131 (adapter->curr_cmd) ? "C" : "", in mwifiex_check_ps_cond()
1136 * This function sends a Host Sleep activated event to applications.
1138 * This event is generated by the driver, with a blank event body.
1145 &priv->adapter->work_flags)) { in mwifiex_hs_activated_event()
1146 priv->adapter->hs_activated = true; in mwifiex_hs_activated_event()
1147 mwifiex_update_rxreor_flags(priv->adapter, in mwifiex_hs_activated_event()
1149 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1150 "event: hs_activated\n"); in mwifiex_hs_activated_event()
1151 priv->adapter->hs_activate_wait_q_woken = true; in mwifiex_hs_activated_event()
1153 &priv->adapter->hs_activate_wait_q); in mwifiex_hs_activated_event()
1155 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1156 "event: HS not configured\n"); in mwifiex_hs_activated_event()
1159 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1160 "event: hs_deactivated\n"); in mwifiex_hs_activated_event()
1161 priv->adapter->hs_activated = false; in mwifiex_hs_activated_event()
1172 * In case host sleep status change, the function generates an event to
1178 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_802_11_hs_cfg()
1180 &resp->params.opt_hs_cfg; in mwifiex_ret_802_11_hs_cfg()
1181 uint32_t conditions = le32_to_cpu(phs_cfg->params.hs_config.conditions); in mwifiex_ret_802_11_hs_cfg()
1183 if (phs_cfg->action == cpu_to_le16(HS_ACTIVATE) && in mwifiex_ret_802_11_hs_cfg()
1184 adapter->iface_type != MWIFIEX_USB) { in mwifiex_ret_802_11_hs_cfg()
1191 resp->result, conditions, in mwifiex_ret_802_11_hs_cfg()
1192 phs_cfg->params.hs_config.gpio, in mwifiex_ret_802_11_hs_cfg()
1193 phs_cfg->params.hs_config.gap); in mwifiex_ret_802_11_hs_cfg()
1196 set_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_ret_802_11_hs_cfg()
1197 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_ret_802_11_hs_cfg()
1200 clear_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_ret_802_11_hs_cfg()
1201 if (adapter->hs_activated) in mwifiex_ret_802_11_hs_cfg()
1210 * cancel event on receiving the power up interrupt.
1220 adapter->if_ops.wakeup(adapter); in mwifiex_process_hs_config()
1222 if (adapter->hs_activated_manually) { in mwifiex_process_hs_config()
1225 adapter->hs_activated_manually = false; in mwifiex_process_hs_config()
1228 adapter->hs_activated = false; in mwifiex_process_hs_config()
1229 clear_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_process_hs_config()
1230 clear_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags); in mwifiex_process_hs_config()
1249 uint16_t result = le16_to_cpu(cmd->result); in mwifiex_process_sleep_confirm_resp()
1250 uint16_t command = le16_to_cpu(cmd->command); in mwifiex_process_sleep_confirm_resp()
1251 uint16_t seq_num = le16_to_cpu(cmd->seq_num); in mwifiex_process_sleep_confirm_resp()
1261 command, result, le16_to_cpu(cmd->size), seq_num); in mwifiex_process_sleep_confirm_resp()
1285 adapter->pm_wakeup_card_req = false; in mwifiex_process_sleep_confirm_resp()
1286 adapter->ps_state = PS_STATE_AWAKE; in mwifiex_process_sleep_confirm_resp()
1289 adapter->pm_wakeup_card_req = true; in mwifiex_process_sleep_confirm_resp()
1290 if (test_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags)) in mwifiex_process_sleep_confirm_resp()
1294 adapter->ps_state = PS_STATE_SLEEP; in mwifiex_process_sleep_confirm_resp()
1295 cmd->command = cpu_to_le16(command); in mwifiex_process_sleep_confirm_resp()
1296 cmd->seq_num = cpu_to_le16(seq_num); in mwifiex_process_sleep_confirm_resp()
1304 * power save with auto PS or STA PS or auto deep sleep.
1306 * Preparation includes -
1307 * - Setting command ID, action and proper size
1308 * - Setting Power Save bitmap, PS parameters TLV, PS mode TLV,
1309 * auto deep sleep TLV (as required)
1310 * - Ensuring correct endian-ness
1318 &cmd->params.psmode_enh; in mwifiex_cmd_enh_power_mode()
1322 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_PS_MODE_ENH); in mwifiex_cmd_enh_power_mode()
1324 psmode_enh->action = cpu_to_le16(DIS_AUTO_PS); in mwifiex_cmd_enh_power_mode()
1325 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap); in mwifiex_cmd_enh_power_mode()
1326 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode()
1327 sizeof(psmode_enh->params.ps_bitmap)); in mwifiex_cmd_enh_power_mode()
1329 psmode_enh->action = cpu_to_le16(GET_PS); in mwifiex_cmd_enh_power_mode()
1330 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap); in mwifiex_cmd_enh_power_mode()
1331 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode()
1332 sizeof(psmode_enh->params.ps_bitmap)); in mwifiex_cmd_enh_power_mode()
1334 psmode_enh->action = cpu_to_le16(EN_AUTO_PS); in mwifiex_cmd_enh_power_mode()
1335 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap); in mwifiex_cmd_enh_power_mode()
1336 cmd_size = S_DS_GEN + sizeof(psmode_enh->action) + in mwifiex_cmd_enh_power_mode()
1337 sizeof(psmode_enh->params.ps_bitmap); in mwifiex_cmd_enh_power_mode()
1340 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_cmd_enh_power_mode()
1343 struct mwifiex_ps_param *ps_mode = &ps_tlv->param; in mwifiex_cmd_enh_power_mode()
1344 ps_tlv->header.type = cpu_to_le16(TLV_TYPE_PS_PARAM); in mwifiex_cmd_enh_power_mode()
1345 ps_tlv->header.len = cpu_to_le16(sizeof(*ps_tlv) - in mwifiex_cmd_enh_power_mode()
1349 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_enh_power_mode()
1351 ps_mode->null_pkt_interval = in mwifiex_cmd_enh_power_mode()
1352 cpu_to_le16(adapter->null_pkt_interval); in mwifiex_cmd_enh_power_mode()
1353 ps_mode->multiple_dtims = in mwifiex_cmd_enh_power_mode()
1354 cpu_to_le16(adapter->multiple_dtim); in mwifiex_cmd_enh_power_mode()
1355 ps_mode->bcn_miss_timeout = in mwifiex_cmd_enh_power_mode()
1356 cpu_to_le16(adapter->bcn_miss_time_out); in mwifiex_cmd_enh_power_mode()
1357 ps_mode->local_listen_interval = in mwifiex_cmd_enh_power_mode()
1358 cpu_to_le16(adapter->local_listen_interval); in mwifiex_cmd_enh_power_mode()
1359 ps_mode->adhoc_wake_period = in mwifiex_cmd_enh_power_mode()
1360 cpu_to_le16(adapter->adhoc_awake_period); in mwifiex_cmd_enh_power_mode()
1361 ps_mode->delay_to_ps = in mwifiex_cmd_enh_power_mode()
1362 cpu_to_le16(adapter->delay_to_ps); in mwifiex_cmd_enh_power_mode()
1363 ps_mode->mode = cpu_to_le16(adapter->enhanced_ps_mode); in mwifiex_cmd_enh_power_mode()
1371 auto_ds_tlv->header.type = in mwifiex_cmd_enh_power_mode()
1373 auto_ds_tlv->header.len = in mwifiex_cmd_enh_power_mode()
1374 cpu_to_le16(sizeof(*auto_ds_tlv) - in mwifiex_cmd_enh_power_mode()
1379 idletime = auto_ds->idle_time; in mwifiex_cmd_enh_power_mode()
1380 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_enh_power_mode()
1381 "cmd: PS Command: Enter Auto Deep Sleep\n"); in mwifiex_cmd_enh_power_mode()
1382 auto_ds_tlv->deep_sleep_timeout = cpu_to_le16(idletime); in mwifiex_cmd_enh_power_mode()
1384 cmd->size = cpu_to_le16(cmd_size); in mwifiex_cmd_enh_power_mode()
1400 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_enh_power_mode()
1402 &resp->params.psmode_enh; in mwifiex_ret_enh_power_mode()
1403 uint16_t action = le16_to_cpu(ps_mode->action); in mwifiex_ret_enh_power_mode()
1404 uint16_t ps_bitmap = le16_to_cpu(ps_mode->params.ps_bitmap); in mwifiex_ret_enh_power_mode()
1406 le16_to_cpu(ps_mode->params.ps_bitmap); in mwifiex_ret_enh_power_mode()
1410 __func__, resp->result, action); in mwifiex_ret_enh_power_mode()
1414 "cmd: Enabled auto deep sleep\n"); in mwifiex_ret_enh_power_mode()
1415 priv->adapter->is_deep_sleep = true; in mwifiex_ret_enh_power_mode()
1420 if (adapter->sleep_period.period) in mwifiex_ret_enh_power_mode()
1426 priv->adapter->is_deep_sleep = false; in mwifiex_ret_enh_power_mode()
1428 "cmd: Disabled auto deep sleep\n"); in mwifiex_ret_enh_power_mode()
1433 if (adapter->sleep_period.period) { in mwifiex_ret_enh_power_mode()
1434 adapter->delay_null_pkt = false; in mwifiex_ret_enh_power_mode()
1435 adapter->tx_lock_flag = false; in mwifiex_ret_enh_power_mode()
1436 adapter->pps_uapsd_mode = false; in mwifiex_ret_enh_power_mode()
1441 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_PSP; in mwifiex_ret_enh_power_mode()
1443 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM; in mwifiex_ret_enh_power_mode()
1451 pm_cfg->param.ps_mode = 1; in mwifiex_ret_enh_power_mode()
1453 pm_cfg->param.ps_mode = 0; in mwifiex_ret_enh_power_mode()
1462 * Preparation includes -
1463 * - Setting command ID, action and proper size
1464 * - Setting permanent address parameter
1465 * - Ensuring correct endian-ness
1470 struct host_cmd_ds_get_hw_spec *hw_spec = &cmd->params.hw_spec; in mwifiex_cmd_get_hw_spec()
1472 cmd->command = cpu_to_le16(HostCmd_CMD_GET_HW_SPEC); in mwifiex_cmd_get_hw_spec()
1473 cmd->size = in mwifiex_cmd_get_hw_spec()
1475 memcpy(hw_spec->permanent_addr, priv->curr_addr, ETH_ALEN); in mwifiex_cmd_get_hw_spec()
1485 * and saving/updating the following parameters in driver -
1486 * - Firmware capability information
1487 * - Firmware band settings
1488 * - Ad-hoc start band and channel
1489 * - Ad-hoc 11n activation status
1490 * - Firmware release number
1491 * - Number of antennas
1492 * - Hardware address
1493 * - Hardware interface version
1494 * - Firmware version
1495 * - Region code
1496 * - 11n capabilities
1497 * - MCS support fields
1498 * - MP end port
1503 struct host_cmd_ds_get_hw_spec *hw_spec = &resp->params.hw_spec; in mwifiex_ret_get_hw_spec()
1504 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_get_hw_spec()
1511 adapter->fw_cap_info = le32_to_cpu(hw_spec->fw_cap_info); in mwifiex_ret_get_hw_spec()
1514 adapter->fw_bands = (u8) GET_FW_DEFAULT_BANDS(adapter); in mwifiex_ret_get_hw_spec()
1516 adapter->fw_bands = BAND_B; in mwifiex_ret_get_hw_spec()
1518 adapter->config_bands = adapter->fw_bands; in mwifiex_ret_get_hw_spec()
1520 if (adapter->fw_bands & BAND_A) { in mwifiex_ret_get_hw_spec()
1521 if (adapter->fw_bands & BAND_GN) { in mwifiex_ret_get_hw_spec()
1522 adapter->config_bands |= BAND_AN; in mwifiex_ret_get_hw_spec()
1523 adapter->fw_bands |= BAND_AN; in mwifiex_ret_get_hw_spec()
1525 if (adapter->fw_bands & BAND_AN) { in mwifiex_ret_get_hw_spec()
1526 adapter->adhoc_start_band = BAND_A | BAND_AN; in mwifiex_ret_get_hw_spec()
1527 adapter->adhoc_11n_enabled = true; in mwifiex_ret_get_hw_spec()
1529 adapter->adhoc_start_band = BAND_A; in mwifiex_ret_get_hw_spec()
1531 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL_A; in mwifiex_ret_get_hw_spec()
1532 } else if (adapter->fw_bands & BAND_GN) { in mwifiex_ret_get_hw_spec()
1533 adapter->adhoc_start_band = BAND_G | BAND_B | BAND_GN; in mwifiex_ret_get_hw_spec()
1534 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL; in mwifiex_ret_get_hw_spec()
1535 adapter->adhoc_11n_enabled = true; in mwifiex_ret_get_hw_spec()
1536 } else if (adapter->fw_bands & BAND_G) { in mwifiex_ret_get_hw_spec()
1537 adapter->adhoc_start_band = BAND_G | BAND_B; in mwifiex_ret_get_hw_spec()
1538 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL; in mwifiex_ret_get_hw_spec()
1539 } else if (adapter->fw_bands & BAND_B) { in mwifiex_ret_get_hw_spec()
1540 adapter->adhoc_start_band = BAND_B; in mwifiex_ret_get_hw_spec()
1541 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL; in mwifiex_ret_get_hw_spec()
1544 adapter->fw_release_number = le32_to_cpu(hw_spec->fw_release_number); in mwifiex_ret_get_hw_spec()
1545 adapter->fw_api_ver = (adapter->fw_release_number >> 16) & 0xff; in mwifiex_ret_get_hw_spec()
1546 adapter->number_of_antenna = in mwifiex_ret_get_hw_spec()
1547 le16_to_cpu(hw_spec->number_of_antenna) & 0xf; in mwifiex_ret_get_hw_spec()
1549 if (le32_to_cpu(hw_spec->dot_11ac_dev_cap)) { in mwifiex_ret_get_hw_spec()
1550 adapter->is_hw_11ac_capable = true; in mwifiex_ret_get_hw_spec()
1553 adapter->hw_dot_11ac_dev_cap = in mwifiex_ret_get_hw_spec()
1554 le32_to_cpu(hw_spec->dot_11ac_dev_cap); in mwifiex_ret_get_hw_spec()
1555 adapter->usr_dot_11ac_dev_cap_bg = adapter->hw_dot_11ac_dev_cap in mwifiex_ret_get_hw_spec()
1557 adapter->usr_dot_11ac_dev_cap_a = adapter->hw_dot_11ac_dev_cap in mwifiex_ret_get_hw_spec()
1561 adapter->hw_dot_11ac_mcs_support = in mwifiex_ret_get_hw_spec()
1562 le32_to_cpu(hw_spec->dot_11ac_mcs_support); in mwifiex_ret_get_hw_spec()
1563 adapter->usr_dot_11ac_mcs_support = in mwifiex_ret_get_hw_spec()
1564 adapter->hw_dot_11ac_mcs_support; in mwifiex_ret_get_hw_spec()
1566 adapter->is_hw_11ac_capable = false; in mwifiex_ret_get_hw_spec()
1569 resp_size = le16_to_cpu(resp->size) - S_DS_GEN; in mwifiex_ret_get_hw_spec()
1572 left_len = resp_size - sizeof(struct host_cmd_ds_get_hw_spec); in mwifiex_ret_get_hw_spec()
1574 tlv = (void *)&hw_spec->tlvs + parsed_len; in mwifiex_ret_get_hw_spec()
1575 switch (le16_to_cpu(tlv->type)) { in mwifiex_ret_get_hw_spec()
1578 api_id = le16_to_cpu(api_rev->api_id); in mwifiex_ret_get_hw_spec()
1581 adapter->key_api_major_ver = in mwifiex_ret_get_hw_spec()
1582 api_rev->major_ver; in mwifiex_ret_get_hw_spec()
1583 adapter->key_api_minor_ver = in mwifiex_ret_get_hw_spec()
1584 api_rev->minor_ver; in mwifiex_ret_get_hw_spec()
1587 adapter->key_api_major_ver, in mwifiex_ret_get_hw_spec()
1588 adapter->key_api_minor_ver); in mwifiex_ret_get_hw_spec()
1591 adapter->fw_api_ver = in mwifiex_ret_get_hw_spec()
1592 api_rev->major_ver; in mwifiex_ret_get_hw_spec()
1595 adapter->fw_api_ver, in mwifiex_ret_get_hw_spec()
1596 api_rev->minor_ver); in mwifiex_ret_get_hw_spec()
1601 api_rev->major_ver, in mwifiex_ret_get_hw_spec()
1602 api_rev->minor_ver); in mwifiex_ret_get_hw_spec()
1607 api_rev->major_ver, in mwifiex_ret_get_hw_spec()
1608 api_rev->minor_ver); in mwifiex_ret_get_hw_spec()
1619 adapter->max_p2p_conn = max_conn->max_p2p_conn; in mwifiex_ret_get_hw_spec()
1620 adapter->max_sta_conn = max_conn->max_sta_conn; in mwifiex_ret_get_hw_spec()
1623 adapter->max_p2p_conn); in mwifiex_ret_get_hw_spec()
1626 adapter->max_sta_conn); in mwifiex_ret_get_hw_spec()
1631 le16_to_cpu(tlv->type)); in mwifiex_ret_get_hw_spec()
1634 parsed_len += le16_to_cpu(tlv->len) + in mwifiex_ret_get_hw_spec()
1636 left_len -= le16_to_cpu(tlv->len) + in mwifiex_ret_get_hw_spec()
1642 "info: GET_HW_SPEC: fw_release_number- %#x\n", in mwifiex_ret_get_hw_spec()
1643 adapter->fw_release_number); in mwifiex_ret_get_hw_spec()
1646 hw_spec->permanent_addr); in mwifiex_ret_get_hw_spec()
1649 le16_to_cpu(hw_spec->hw_if_version), in mwifiex_ret_get_hw_spec()
1650 le16_to_cpu(hw_spec->version)); in mwifiex_ret_get_hw_spec()
1652 ether_addr_copy(priv->adapter->perm_addr, hw_spec->permanent_addr); in mwifiex_ret_get_hw_spec()
1653 adapter->region_code = le16_to_cpu(hw_spec->region_code); in mwifiex_ret_get_hw_spec()
1657 if (adapter->region_code == region_code_index[i]) in mwifiex_ret_get_hw_spec()
1662 adapter->region_code = 0x00; in mwifiex_ret_get_hw_spec()
1667 adapter->hw_dot_11n_dev_cap = le32_to_cpu(hw_spec->dot_11n_dev_cap); in mwifiex_ret_get_hw_spec()
1668 adapter->hw_dev_mcs_support = hw_spec->dev_mcs_support; in mwifiex_ret_get_hw_spec()
1669 adapter->user_dev_mcs_support = adapter->hw_dev_mcs_support; in mwifiex_ret_get_hw_spec()
1671 if (adapter->if_ops.update_mp_end_port) in mwifiex_ret_get_hw_spec()
1672 adapter->if_ops.update_mp_end_port(adapter, in mwifiex_ret_get_hw_spec()
1673 le16_to_cpu(hw_spec->mp_end_port)); in mwifiex_ret_get_hw_spec()
1675 if (adapter->fw_api_ver == MWIFIEX_FW_V15) in mwifiex_ret_get_hw_spec()
1676 adapter->scan_chan_gap_enabled = true; in mwifiex_ret_get_hw_spec()
1688 wakeup_reason->wakeup_reason = in mwifiex_ret_wakeup_reason()
1689 resp->params.hs_wakeup_reason.wakeup_reason; in mwifiex_ret_wakeup_reason()