Lines Matching refs:adapter

17 static void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter);
49 mwifiex_get_cmd_node(struct mwifiex_adapter *adapter) in mwifiex_get_cmd_node() argument
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()
55 mwifiex_dbg(adapter, ERROR, 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()
63 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
80 mwifiex_clean_cmd_node(struct mwifiex_adapter *adapter, in mwifiex_clean_cmd_node() argument
92 adapter->if_ops.cmdrsp_complete(adapter, cmd_node->resp_skb); in mwifiex_clean_cmd_node()
104 mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter, in mwifiex_insert_cmd_to_free_q() argument
111 mwifiex_complete_cmd(adapter, cmd_node); in mwifiex_insert_cmd_to_free_q()
113 mwifiex_clean_cmd_node(adapter, cmd_node); 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()
122 void mwifiex_recycle_cmd_node(struct mwifiex_adapter *adapter, in mwifiex_recycle_cmd_node() argument
127 mwifiex_insert_cmd_to_free_q(adapter, cmd_node); in mwifiex_recycle_cmd_node()
129 atomic_dec(&adapter->cmd_pending); in mwifiex_recycle_cmd_node()
130 mwifiex_dbg(adapter, CMD, in mwifiex_recycle_cmd_node()
133 atomic_read(&adapter->cmd_pending)); in mwifiex_recycle_cmd_node()
149 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_host_cmd()
166 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_dnld_cmd_to_fw() local
172 if (!adapter || !cmd_node) in mwifiex_dnld_cmd_to_fw()
179 mwifiex_dbg(adapter, ERROR, in mwifiex_dnld_cmd_to_fw()
183 adapter->cmd_wait_q.status = -1; in mwifiex_dnld_cmd_to_fw()
184 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_dnld_cmd_to_fw()
192 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET && in mwifiex_dnld_cmd_to_fw()
195 mwifiex_dbg(adapter, ERROR, in mwifiex_dnld_cmd_to_fw()
198 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_dnld_cmd_to_fw()
199 queue_work(adapter->workqueue, &adapter->main_work); in mwifiex_dnld_cmd_to_fw()
204 adapter->seq_num++; in mwifiex_dnld_cmd_to_fw()
206 (adapter->seq_num, 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()
229 mwifiex_dbg(adapter, CMD, in mwifiex_dnld_cmd_to_fw()
234 mwifiex_dbg_dump(adapter, CMD_D, "cmd buffer:", host_cmd, cmd_size); in mwifiex_dnld_cmd_to_fw()
236 if (adapter->iface_type == MWIFIEX_USB) { 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()
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()
251 skb_pull(cmd_node->cmd_skb, adapter->intf_hdr_len); in mwifiex_dnld_cmd_to_fw()
255 mwifiex_dbg(adapter, ERROR, 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()
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()
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()
300 static int mwifiex_dnld_sleep_confirm_cmd(struct mwifiex_adapter *adapter) in mwifiex_dnld_sleep_confirm_cmd() argument
306 adapter->sleep_cfm->data; in mwifiex_dnld_sleep_confirm_cmd()
309 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_dnld_sleep_confirm_cmd()
311 adapter->seq_num++; in mwifiex_dnld_sleep_confirm_cmd()
314 (adapter->seq_num, priv->bss_num, in mwifiex_dnld_sleep_confirm_cmd()
317 mwifiex_dbg(adapter, CMD, in mwifiex_dnld_sleep_confirm_cmd()
323 mwifiex_dbg_dump(adapter, CMD_D, "SLEEP_CFM buffer: ", sleep_cfm_buf, in mwifiex_dnld_sleep_confirm_cmd()
326 if (adapter->iface_type == MWIFIEX_USB) { in mwifiex_dnld_sleep_confirm_cmd()
331 mwifiex_dbg(adapter, ERROR, 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()
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()
355 mwifiex_dbg(adapter, ERROR, "SLEEP_CFM: failed\n"); in mwifiex_dnld_sleep_confirm_cmd()
356 adapter->dbg.num_cmd_sleep_cfm_host_to_card_failure++; 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()
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()
371 (adapter, MWIFIEX_BSS_ROLE_ANY), true); in mwifiex_dnld_sleep_confirm_cmd()
389 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter) in mwifiex_alloc_cmd_buffer() argument
400 adapter->cmd_pool = cmd_array; in mwifiex_alloc_cmd_buffer()
406 mwifiex_dbg(adapter, ERROR, in mwifiex_alloc_cmd_buffer()
413 mwifiex_insert_cmd_to_free_q(adapter, &cmd_array[i]); in mwifiex_alloc_cmd_buffer()
424 void mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter) in mwifiex_free_cmd_buffer() argument
430 if (!adapter->cmd_pool) { in mwifiex_free_cmd_buffer()
431 mwifiex_dbg(adapter, FATAL, in mwifiex_free_cmd_buffer()
436 cmd_array = adapter->cmd_pool; in mwifiex_free_cmd_buffer()
441 mwifiex_dbg(adapter, CMD, 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()
456 mwifiex_dbg(adapter, CMD, 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()
473 int mwifiex_process_event(struct mwifiex_adapter *adapter) in mwifiex_process_event() argument
477 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_event()
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()
494 eventcause = adapter->event_cause; 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()
503 priv = mwifiex_get_priv_by_id(adapter, EVENT_GET_BSS_NUM(eventcause), in mwifiex_process_event()
506 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_event()
510 adapter->event_cause = eventcause; in mwifiex_process_event()
517 mwifiex_dbg_dump(adapter, EVT_D, "Event Buf:", in mwifiex_process_event()
521 mwifiex_dbg(adapter, EVENT, "EVENT: cause: %#x\n", eventcause); 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()
550 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_send_cmd() local
554 if (!adapter) { in mwifiex_send_cmd()
559 if (test_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags)) { in mwifiex_send_cmd()
560 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
565 if (test_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags) && in mwifiex_send_cmd()
567 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
572 if (test_bit(MWIFIEX_SURPRISE_REMOVED, &adapter->work_flags)) { in mwifiex_send_cmd()
573 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
578 if (test_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags)) { in mwifiex_send_cmd()
579 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
584 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET) { in mwifiex_send_cmd()
586 mwifiex_dbg(adapter, ERROR, 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()
599 if (priv->adapter->hs_activated_manually && in mwifiex_send_cmd()
602 priv->adapter->hs_activated_manually = false; in mwifiex_send_cmd()
606 cmd_node = mwifiex_get_cmd_node(adapter); in mwifiex_send_cmd()
609 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
618 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
657 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
660 mwifiex_insert_cmd_to_free_q(adapter, cmd_node); in mwifiex_send_cmd()
669 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node); in mwifiex_send_cmd()
670 queue_work(adapter->workqueue, &adapter->main_work); in mwifiex_send_cmd()
672 ret = mwifiex_wait_queue_complete(adapter, cmd_node); in mwifiex_send_cmd()
686 mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter, in mwifiex_insert_cmd_to_pending_q() argument
695 mwifiex_dbg(adapter, ERROR, "QUEUE_CMD: host_cmd is NULL\n"); in mwifiex_insert_cmd_to_pending_q()
707 if (adapter->ps_state != PS_STATE_AWAKE) in mwifiex_insert_cmd_to_pending_q()
721 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_insert_cmd_to_pending_q()
723 list_add_tail(&cmd_node->list, &adapter->cmd_pending_q); in mwifiex_insert_cmd_to_pending_q()
725 list_add(&cmd_node->list, &adapter->cmd_pending_q); in mwifiex_insert_cmd_to_pending_q()
726 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_insert_cmd_to_pending_q()
728 atomic_inc(&adapter->cmd_pending); in mwifiex_insert_cmd_to_pending_q()
729 mwifiex_dbg(adapter, CMD, in mwifiex_insert_cmd_to_pending_q()
731 command, atomic_read(&adapter->cmd_pending)); in mwifiex_insert_cmd_to_pending_q()
745 int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter) in mwifiex_exec_next_cmd() argument
753 if (adapter->curr_cmd) { in mwifiex_exec_next_cmd()
754 mwifiex_dbg(adapter, FATAL, in mwifiex_exec_next_cmd()
759 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
761 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
762 if (list_empty(&adapter->cmd_pending_q)) { in mwifiex_exec_next_cmd()
763 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
764 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
767 cmd_node = list_first_entry(&adapter->cmd_pending_q, in mwifiex_exec_next_cmd()
773 if (adapter->ps_state != PS_STATE_AWAKE) { in mwifiex_exec_next_cmd()
774 mwifiex_dbg(adapter, ERROR, in mwifiex_exec_next_cmd()
777 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
778 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
783 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
785 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
787 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_exec_next_cmd()
794 if (adapter->hs_activated) { in mwifiex_exec_next_cmd()
796 &adapter->work_flags); in mwifiex_exec_next_cmd()
810 int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter) in mwifiex_process_cmdresp() argument
814 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_cmdresp()
820 if (!adapter->curr_cmd || !adapter->curr_cmd->resp_skb) { in mwifiex_process_cmdresp()
821 resp = (struct host_cmd_ds_command *) adapter->upld_buf; in mwifiex_process_cmdresp()
822 mwifiex_dbg(adapter, ERROR, in mwifiex_process_cmdresp()
828 resp = (struct host_cmd_ds_command *)adapter->curr_cmd->resp_skb->data; in mwifiex_process_cmdresp()
832 if (adapter->curr_cmd->cmd_no != cmdresp_no) { in mwifiex_process_cmdresp()
833 mwifiex_dbg(adapter, ERROR, in mwifiex_process_cmdresp()
835 adapter->curr_cmd->cmd_no, cmdresp_no); in mwifiex_process_cmdresp()
839 del_timer_sync(&adapter->cmd_timer); in mwifiex_process_cmdresp()
840 clear_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags); in mwifiex_process_cmdresp()
842 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) { in mwifiex_process_cmdresp()
846 mwifiex_dbg(adapter, INFO, in mwifiex_process_cmdresp()
849 if (adapter->curr_cmd->data_buf) { in mwifiex_process_cmdresp()
850 hostcmd = adapter->curr_cmd->data_buf; in mwifiex_process_cmdresp()
857 priv = mwifiex_get_priv_by_id(adapter, in mwifiex_process_cmdresp()
861 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_cmdresp()
869 adapter->dbg.last_cmd_resp_index = in mwifiex_process_cmdresp()
870 (adapter->dbg.last_cmd_resp_index + 1) % DBG_CMD_NUM; in mwifiex_process_cmdresp()
871 adapter->dbg.last_cmd_resp_id[adapter->dbg.last_cmd_resp_index] = in mwifiex_process_cmdresp()
874 mwifiex_dbg(adapter, CMD, in mwifiex_process_cmdresp()
878 mwifiex_dbg_dump(adapter, CMD_D, "CMD_RESP buffer:", resp, in mwifiex_process_cmdresp()
882 mwifiex_dbg(adapter, ERROR, "CMD_RESP: invalid cmd resp\n"); in mwifiex_process_cmdresp()
883 if (adapter->curr_cmd->wait_q_enabled) in mwifiex_process_cmdresp()
884 adapter->cmd_wait_q.status = -1; in mwifiex_process_cmdresp()
886 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_process_cmdresp()
887 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
888 adapter->curr_cmd = NULL; in mwifiex_process_cmdresp()
889 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
893 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) { in mwifiex_process_cmdresp()
894 adapter->curr_cmd->cmd_flag &= ~CMD_F_HOSTCMD; in mwifiex_process_cmdresp()
904 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) { in mwifiex_process_cmdresp()
906 mwifiex_dbg(adapter, ERROR, in mwifiex_process_cmdresp()
909 mwifiex_init_fw_complete(adapter); in mwifiex_process_cmdresp()
911 } else if (adapter->last_init_cmd == cmdresp_no) in mwifiex_process_cmdresp()
912 adapter->hw_status = MWIFIEX_HW_STATUS_INIT_DONE; in mwifiex_process_cmdresp()
915 if (adapter->curr_cmd) { in mwifiex_process_cmdresp()
916 if (adapter->curr_cmd->wait_q_enabled) in mwifiex_process_cmdresp()
917 adapter->cmd_wait_q.status = ret; in mwifiex_process_cmdresp()
919 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_process_cmdresp()
921 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
922 adapter->curr_cmd = NULL; in mwifiex_process_cmdresp()
923 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
929 void mwifiex_process_assoc_resp(struct mwifiex_adapter *adapter) in mwifiex_process_assoc_resp() argument
935 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA); in mwifiex_process_assoc_resp()
955 struct mwifiex_adapter *adapter = from_timer(adapter, t, cmd_timer); in mwifiex_cmd_timeout_func() local
958 set_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags); in mwifiex_cmd_timeout_func()
959 if (!adapter->curr_cmd) { in mwifiex_cmd_timeout_func()
960 mwifiex_dbg(adapter, ERROR, in mwifiex_cmd_timeout_func()
964 cmd_node = adapter->curr_cmd; in mwifiex_cmd_timeout_func()
966 adapter->dbg.timeout_cmd_id = in mwifiex_cmd_timeout_func()
967 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index]; in mwifiex_cmd_timeout_func()
968 adapter->dbg.timeout_cmd_act = in mwifiex_cmd_timeout_func()
969 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index]; in mwifiex_cmd_timeout_func()
970 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
972 adapter->dbg.timeout_cmd_id, in mwifiex_cmd_timeout_func()
973 adapter->dbg.timeout_cmd_act); in mwifiex_cmd_timeout_func()
975 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
977 adapter->dbg.num_tx_host_to_card_failure); in mwifiex_cmd_timeout_func()
978 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
980 adapter->dbg.num_cmd_host_to_card_failure); in mwifiex_cmd_timeout_func()
982 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
985 &adapter->work_flags)); in mwifiex_cmd_timeout_func()
986 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
988 adapter->dbg.num_tx_timeout); in mwifiex_cmd_timeout_func()
990 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
992 adapter->dbg.last_cmd_index); in mwifiex_cmd_timeout_func()
993 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
995 (int)sizeof(adapter->dbg.last_cmd_id), in mwifiex_cmd_timeout_func()
996 adapter->dbg.last_cmd_id); in mwifiex_cmd_timeout_func()
997 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
999 (int)sizeof(adapter->dbg.last_cmd_act), in mwifiex_cmd_timeout_func()
1000 adapter->dbg.last_cmd_act); in mwifiex_cmd_timeout_func()
1002 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1004 adapter->dbg.last_cmd_resp_index); in mwifiex_cmd_timeout_func()
1005 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1007 (int)sizeof(adapter->dbg.last_cmd_resp_id), in mwifiex_cmd_timeout_func()
1008 adapter->dbg.last_cmd_resp_id); in mwifiex_cmd_timeout_func()
1010 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1012 adapter->dbg.last_event_index); in mwifiex_cmd_timeout_func()
1013 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1015 (int)sizeof(adapter->dbg.last_event), in mwifiex_cmd_timeout_func()
1016 adapter->dbg.last_event); in mwifiex_cmd_timeout_func()
1018 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1020 adapter->data_sent, adapter->cmd_sent); in mwifiex_cmd_timeout_func()
1022 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1024 adapter->ps_mode, adapter->ps_state); in mwifiex_cmd_timeout_func()
1027 adapter->cmd_wait_q.status = -ETIMEDOUT; in mwifiex_cmd_timeout_func()
1028 mwifiex_cancel_pending_ioctl(adapter); in mwifiex_cmd_timeout_func()
1031 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) { in mwifiex_cmd_timeout_func()
1032 mwifiex_init_fw_complete(adapter); in mwifiex_cmd_timeout_func()
1036 if (adapter->if_ops.device_dump) in mwifiex_cmd_timeout_func()
1037 adapter->if_ops.device_dump(adapter); in mwifiex_cmd_timeout_func()
1039 if (adapter->if_ops.card_reset) in mwifiex_cmd_timeout_func()
1040 adapter->if_ops.card_reset(adapter); in mwifiex_cmd_timeout_func()
1044 mwifiex_cancel_pending_scan_cmd(struct mwifiex_adapter *adapter) in mwifiex_cancel_pending_scan_cmd() argument
1049 spin_lock_bh(&adapter->scan_pending_q_lock); in mwifiex_cancel_pending_scan_cmd()
1051 &adapter->scan_pending_q, list) { in mwifiex_cancel_pending_scan_cmd()
1054 mwifiex_insert_cmd_to_free_q(adapter, cmd_node); in mwifiex_cancel_pending_scan_cmd()
1056 spin_unlock_bh(&adapter->scan_pending_q_lock); in mwifiex_cancel_pending_scan_cmd()
1067 mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter) in mwifiex_cancel_all_pending_cmd() argument
1071 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_all_pending_cmd()
1073 if ((adapter->curr_cmd) && (adapter->curr_cmd->wait_q_enabled)) { in mwifiex_cancel_all_pending_cmd()
1074 adapter->cmd_wait_q.status = -1; in mwifiex_cancel_all_pending_cmd()
1075 mwifiex_complete_cmd(adapter, adapter->curr_cmd); in mwifiex_cancel_all_pending_cmd()
1076 adapter->curr_cmd->wait_q_enabled = false; in mwifiex_cancel_all_pending_cmd()
1080 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_cancel_all_pending_cmd()
1082 &adapter->cmd_pending_q, list) { in mwifiex_cancel_all_pending_cmd()
1086 adapter->cmd_wait_q.status = -1; in mwifiex_cancel_all_pending_cmd()
1087 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_cancel_all_pending_cmd()
1089 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_cancel_all_pending_cmd()
1090 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_all_pending_cmd()
1092 mwifiex_cancel_scan(adapter); in mwifiex_cancel_all_pending_cmd()
1106 mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter) in mwifiex_cancel_pending_ioctl() argument
1110 if ((adapter->curr_cmd) && in mwifiex_cancel_pending_ioctl()
1111 (adapter->curr_cmd->wait_q_enabled)) { in mwifiex_cancel_pending_ioctl()
1112 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_pending_ioctl()
1113 cmd_node = adapter->curr_cmd; in mwifiex_cancel_pending_ioctl()
1122 adapter->curr_cmd = NULL; in mwifiex_cancel_pending_ioctl()
1123 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_pending_ioctl()
1125 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_cancel_pending_ioctl()
1128 mwifiex_cancel_scan(adapter); in mwifiex_cancel_pending_ioctl()
1141 mwifiex_check_ps_cond(struct mwifiex_adapter *adapter) in mwifiex_check_ps_cond() argument
1143 if (!adapter->cmd_sent && !atomic_read(&adapter->tx_hw_pending) && in mwifiex_check_ps_cond()
1144 !adapter->curr_cmd && !IS_CARD_RX_RCVD(adapter)) in mwifiex_check_ps_cond()
1145 mwifiex_dnld_sleep_confirm_cmd(adapter); in mwifiex_check_ps_cond()
1147 mwifiex_dbg(adapter, CMD, in mwifiex_check_ps_cond()
1149 (adapter->cmd_sent) ? "D" : "", in mwifiex_check_ps_cond()
1150 atomic_read(&adapter->tx_hw_pending) ? "T" : "", in mwifiex_check_ps_cond()
1151 (adapter->curr_cmd) ? "C" : "", in mwifiex_check_ps_cond()
1152 (IS_CARD_RX_RCVD(adapter)) ? "R" : ""); in mwifiex_check_ps_cond()
1165 &priv->adapter->work_flags)) { in mwifiex_hs_activated_event()
1166 priv->adapter->hs_activated = true; in mwifiex_hs_activated_event()
1167 mwifiex_update_rxreor_flags(priv->adapter, in mwifiex_hs_activated_event()
1169 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1171 priv->adapter->hs_activate_wait_q_woken = true; in mwifiex_hs_activated_event()
1173 &priv->adapter->hs_activate_wait_q); in mwifiex_hs_activated_event()
1175 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1179 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1181 priv->adapter->hs_activated = false; in mwifiex_hs_activated_event()
1198 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_802_11_hs_cfg() local
1204 adapter->iface_type != MWIFIEX_USB) { in mwifiex_ret_802_11_hs_cfg()
1208 mwifiex_dbg(adapter, CMD, in mwifiex_ret_802_11_hs_cfg()
1216 set_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_ret_802_11_hs_cfg()
1217 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_ret_802_11_hs_cfg()
1220 clear_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_ret_802_11_hs_cfg()
1221 if (adapter->hs_activated) in mwifiex_ret_802_11_hs_cfg()
1233 mwifiex_process_hs_config(struct mwifiex_adapter *adapter) in mwifiex_process_hs_config() argument
1235 mwifiex_dbg(adapter, INFO, in mwifiex_process_hs_config()
1240 adapter->if_ops.wakeup(adapter); in mwifiex_process_hs_config()
1242 if (adapter->hs_activated_manually) { in mwifiex_process_hs_config()
1243 mwifiex_cancel_hs(mwifiex_get_priv (adapter, MWIFIEX_BSS_ROLE_ANY), in mwifiex_process_hs_config()
1245 adapter->hs_activated_manually = false; in mwifiex_process_hs_config()
1248 adapter->hs_activated = false; in mwifiex_process_hs_config()
1249 clear_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_process_hs_config()
1250 clear_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags); in mwifiex_process_hs_config()
1251 mwifiex_hs_activated_event(mwifiex_get_priv(adapter, in mwifiex_process_hs_config()
1263 mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *adapter, in mwifiex_process_sleep_confirm_resp() argument
1272 mwifiex_dbg(adapter, ERROR, in mwifiex_process_sleep_confirm_resp()
1277 mwifiex_dbg(adapter, CMD, in mwifiex_process_sleep_confirm_resp()
1287 mwifiex_dbg(adapter, ERROR, in mwifiex_process_sleep_confirm_resp()
1294 mwifiex_dbg(adapter, ERROR, in mwifiex_process_sleep_confirm_resp()
1297 adapter->pm_wakeup_card_req = false; in mwifiex_process_sleep_confirm_resp()
1298 adapter->ps_state = PS_STATE_AWAKE; in mwifiex_process_sleep_confirm_resp()
1301 adapter->pm_wakeup_card_req = true; in mwifiex_process_sleep_confirm_resp()
1302 if (test_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags)) in mwifiex_process_sleep_confirm_resp()
1304 (adapter, MWIFIEX_BSS_ROLE_ANY), in mwifiex_process_sleep_confirm_resp()
1306 adapter->ps_state = PS_STATE_SLEEP; in mwifiex_process_sleep_confirm_resp()
1352 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_cmd_enh_power_mode() local
1361 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_enh_power_mode()
1364 cpu_to_le16(adapter->null_pkt_interval); in mwifiex_cmd_enh_power_mode()
1366 cpu_to_le16(adapter->multiple_dtim); in mwifiex_cmd_enh_power_mode()
1368 cpu_to_le16(adapter->bcn_miss_time_out); in mwifiex_cmd_enh_power_mode()
1370 cpu_to_le16(adapter->local_listen_interval); in mwifiex_cmd_enh_power_mode()
1372 cpu_to_le16(adapter->adhoc_awake_period); in mwifiex_cmd_enh_power_mode()
1374 cpu_to_le16(adapter->delay_to_ps); in mwifiex_cmd_enh_power_mode()
1375 ps_mode->mode = cpu_to_le16(adapter->enhanced_ps_mode); in mwifiex_cmd_enh_power_mode()
1392 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_enh_power_mode()
1412 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_enh_power_mode() local
1420 mwifiex_dbg(adapter, INFO, in mwifiex_ret_enh_power_mode()
1425 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1427 priv->adapter->is_deep_sleep = true; in mwifiex_ret_enh_power_mode()
1430 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1432 if (adapter->sleep_period.period) in mwifiex_ret_enh_power_mode()
1433 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1438 priv->adapter->is_deep_sleep = false; in mwifiex_ret_enh_power_mode()
1439 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1443 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1445 if (adapter->sleep_period.period) { in mwifiex_ret_enh_power_mode()
1446 adapter->delay_null_pkt = false; in mwifiex_ret_enh_power_mode()
1447 adapter->tx_lock_flag = false; in mwifiex_ret_enh_power_mode()
1448 adapter->pps_uapsd_mode = false; in mwifiex_ret_enh_power_mode()
1453 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_PSP; in mwifiex_ret_enh_power_mode()
1455 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM; in mwifiex_ret_enh_power_mode()
1457 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1516 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_get_hw_spec() local
1523 adapter->fw_cap_info = le32_to_cpu(hw_spec->fw_cap_info); in mwifiex_ret_get_hw_spec()
1525 if (IS_SUPPORT_MULTI_BANDS(adapter)) in mwifiex_ret_get_hw_spec()
1526 adapter->fw_bands = (u8) GET_FW_DEFAULT_BANDS(adapter); in mwifiex_ret_get_hw_spec()
1528 adapter->fw_bands = BAND_B; in mwifiex_ret_get_hw_spec()
1530 adapter->config_bands = adapter->fw_bands; in mwifiex_ret_get_hw_spec()
1532 if (adapter->fw_bands & BAND_A) { in mwifiex_ret_get_hw_spec()
1533 if (adapter->fw_bands & BAND_GN) { in mwifiex_ret_get_hw_spec()
1534 adapter->config_bands |= BAND_AN; in mwifiex_ret_get_hw_spec()
1535 adapter->fw_bands |= BAND_AN; in mwifiex_ret_get_hw_spec()
1537 if (adapter->fw_bands & BAND_AN) { in mwifiex_ret_get_hw_spec()
1538 adapter->adhoc_start_band = BAND_A | BAND_AN; in mwifiex_ret_get_hw_spec()
1539 adapter->adhoc_11n_enabled = true; in mwifiex_ret_get_hw_spec()
1541 adapter->adhoc_start_band = BAND_A; in mwifiex_ret_get_hw_spec()
1544 } else if (adapter->fw_bands & BAND_GN) { in mwifiex_ret_get_hw_spec()
1545 adapter->adhoc_start_band = BAND_G | BAND_B | BAND_GN; in mwifiex_ret_get_hw_spec()
1547 adapter->adhoc_11n_enabled = true; in mwifiex_ret_get_hw_spec()
1548 } else if (adapter->fw_bands & BAND_G) { in mwifiex_ret_get_hw_spec()
1549 adapter->adhoc_start_band = BAND_G | BAND_B; in mwifiex_ret_get_hw_spec()
1551 } else if (adapter->fw_bands & BAND_B) { in mwifiex_ret_get_hw_spec()
1552 adapter->adhoc_start_band = BAND_B; in mwifiex_ret_get_hw_spec()
1556 adapter->fw_release_number = le32_to_cpu(hw_spec->fw_release_number); in mwifiex_ret_get_hw_spec()
1557 adapter->fw_api_ver = (adapter->fw_release_number >> 16) & 0xff; in mwifiex_ret_get_hw_spec()
1558 adapter->number_of_antenna = in mwifiex_ret_get_hw_spec()
1562 adapter->is_hw_11ac_capable = true; in mwifiex_ret_get_hw_spec()
1565 adapter->hw_dot_11ac_dev_cap = in mwifiex_ret_get_hw_spec()
1567 adapter->usr_dot_11ac_dev_cap_bg = adapter->hw_dot_11ac_dev_cap in mwifiex_ret_get_hw_spec()
1569 adapter->usr_dot_11ac_dev_cap_a = adapter->hw_dot_11ac_dev_cap in mwifiex_ret_get_hw_spec()
1573 adapter->hw_dot_11ac_mcs_support = in mwifiex_ret_get_hw_spec()
1575 adapter->usr_dot_11ac_mcs_support = in mwifiex_ret_get_hw_spec()
1576 adapter->hw_dot_11ac_mcs_support; in mwifiex_ret_get_hw_spec()
1578 adapter->is_hw_11ac_capable = false; in mwifiex_ret_get_hw_spec()
1593 adapter->key_api_major_ver = in mwifiex_ret_get_hw_spec()
1595 adapter->key_api_minor_ver = in mwifiex_ret_get_hw_spec()
1597 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1599 adapter->key_api_major_ver, in mwifiex_ret_get_hw_spec()
1600 adapter->key_api_minor_ver); in mwifiex_ret_get_hw_spec()
1603 adapter->fw_api_ver = in mwifiex_ret_get_hw_spec()
1605 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1607 adapter->fw_api_ver, in mwifiex_ret_get_hw_spec()
1611 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1617 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1623 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1628 mwifiex_dbg(adapter, FATAL, in mwifiex_ret_get_hw_spec()
1636 adapter->max_p2p_conn = max_conn->max_p2p_conn; in mwifiex_ret_get_hw_spec()
1637 adapter->max_sta_conn = max_conn->max_sta_conn; in mwifiex_ret_get_hw_spec()
1638 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1640 adapter->max_p2p_conn); in mwifiex_ret_get_hw_spec()
1641 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1643 adapter->max_sta_conn); in mwifiex_ret_get_hw_spec()
1646 mwifiex_dbg(adapter, FATAL, in mwifiex_ret_get_hw_spec()
1658 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1660 adapter->fw_release_number); in mwifiex_ret_get_hw_spec()
1661 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1664 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1669 ether_addr_copy(priv->adapter->perm_addr, hw_spec->permanent_addr); in mwifiex_ret_get_hw_spec()
1670 adapter->region_code = le16_to_cpu(hw_spec->region_code); in mwifiex_ret_get_hw_spec()
1674 if (adapter->region_code == region_code_index[i]) in mwifiex_ret_get_hw_spec()
1679 adapter->region_code = 0x00; in mwifiex_ret_get_hw_spec()
1680 mwifiex_dbg(adapter, WARN, in mwifiex_ret_get_hw_spec()
1684 adapter->hw_dot_11n_dev_cap = le32_to_cpu(hw_spec->dot_11n_dev_cap); in mwifiex_ret_get_hw_spec()
1685 adapter->hw_dev_mcs_support = hw_spec->dev_mcs_support; in mwifiex_ret_get_hw_spec()
1686 adapter->user_dev_mcs_support = adapter->hw_dev_mcs_support; in mwifiex_ret_get_hw_spec()
1688 if (adapter->if_ops.update_mp_end_port) in mwifiex_ret_get_hw_spec()
1689 adapter->if_ops.update_mp_end_port(adapter, in mwifiex_ret_get_hw_spec()
1692 if (adapter->fw_api_ver == MWIFIEX_FW_V15) in mwifiex_ret_get_hw_spec()
1693 adapter->scan_chan_gap_enabled = true; in mwifiex_ret_get_hw_spec()
1695 if (adapter->key_api_major_ver != KEY_API_VER_MAJOR_V2) in mwifiex_ret_get_hw_spec()
1696 adapter->host_mlme_enabled = false; in mwifiex_ret_get_hw_spec()
1698 mwifiex_dbg(adapter, MSG, "host_mlme: %s, key_api: %d\n", in mwifiex_ret_get_hw_spec()
1699 adapter->host_mlme_enabled ? "enable" : "disable", in mwifiex_ret_get_hw_spec()
1700 adapter->key_api_major_ver); in mwifiex_ret_get_hw_spec()