• Home
  • Raw
  • Download

Lines Matching refs:adapter

29 static void mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter);
61 mwifiex_get_cmd_node(struct mwifiex_adapter *adapter) in mwifiex_get_cmd_node() argument
65 spin_lock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
66 if (list_empty(&adapter->cmd_free_q)) { in mwifiex_get_cmd_node()
67 mwifiex_dbg(adapter, ERROR, in mwifiex_get_cmd_node()
69 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
72 cmd_node = list_first_entry(&adapter->cmd_free_q, in mwifiex_get_cmd_node()
75 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_get_cmd_node()
92 mwifiex_clean_cmd_node(struct mwifiex_adapter *adapter, in mwifiex_clean_cmd_node() argument
104 adapter->if_ops.cmdrsp_complete(adapter, cmd_node->resp_skb); in mwifiex_clean_cmd_node()
116 mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter, in mwifiex_insert_cmd_to_free_q() argument
123 mwifiex_complete_cmd(adapter, cmd_node); in mwifiex_insert_cmd_to_free_q()
125 mwifiex_clean_cmd_node(adapter, cmd_node); in mwifiex_insert_cmd_to_free_q()
128 spin_lock_bh(&adapter->cmd_free_q_lock); in mwifiex_insert_cmd_to_free_q()
129 list_add_tail(&cmd_node->list, &adapter->cmd_free_q); in mwifiex_insert_cmd_to_free_q()
130 spin_unlock_bh(&adapter->cmd_free_q_lock); in mwifiex_insert_cmd_to_free_q()
134 void mwifiex_recycle_cmd_node(struct mwifiex_adapter *adapter, in mwifiex_recycle_cmd_node() argument
139 mwifiex_insert_cmd_to_free_q(adapter, cmd_node); in mwifiex_recycle_cmd_node()
141 atomic_dec(&adapter->cmd_pending); in mwifiex_recycle_cmd_node()
142 mwifiex_dbg(adapter, CMD, in mwifiex_recycle_cmd_node()
145 atomic_read(&adapter->cmd_pending)); in mwifiex_recycle_cmd_node()
161 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_host_cmd()
178 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_dnld_cmd_to_fw() local
184 if (!adapter || !cmd_node) in mwifiex_dnld_cmd_to_fw()
191 mwifiex_dbg(adapter, ERROR, in mwifiex_dnld_cmd_to_fw()
195 adapter->cmd_wait_q.status = -1; in mwifiex_dnld_cmd_to_fw()
196 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_dnld_cmd_to_fw()
204 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET && in mwifiex_dnld_cmd_to_fw()
207 mwifiex_dbg(adapter, ERROR, in mwifiex_dnld_cmd_to_fw()
210 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_dnld_cmd_to_fw()
211 queue_work(adapter->workqueue, &adapter->main_work); in mwifiex_dnld_cmd_to_fw()
216 adapter->seq_num++; in mwifiex_dnld_cmd_to_fw()
218 (adapter->seq_num, in mwifiex_dnld_cmd_to_fw()
222 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
223 adapter->curr_cmd = cmd_node; in mwifiex_dnld_cmd_to_fw()
224 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
241 mwifiex_dbg(adapter, CMD, in mwifiex_dnld_cmd_to_fw()
246 mwifiex_dbg_dump(adapter, CMD_D, "cmd buffer:", host_cmd, cmd_size); in mwifiex_dnld_cmd_to_fw()
248 if (adapter->iface_type == MWIFIEX_USB) { in mwifiex_dnld_cmd_to_fw()
252 adapter->cmd_sent = true; in mwifiex_dnld_cmd_to_fw()
253 ret = adapter->if_ops.host_to_card(adapter, in mwifiex_dnld_cmd_to_fw()
260 skb_push(cmd_node->cmd_skb, adapter->intf_hdr_len); in mwifiex_dnld_cmd_to_fw()
261 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD, in mwifiex_dnld_cmd_to_fw()
263 skb_pull(cmd_node->cmd_skb, adapter->intf_hdr_len); in mwifiex_dnld_cmd_to_fw()
267 mwifiex_dbg(adapter, ERROR, in mwifiex_dnld_cmd_to_fw()
269 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_dnld_cmd_to_fw()
270 adapter->cmd_sent = false; in mwifiex_dnld_cmd_to_fw()
272 adapter->cmd_wait_q.status = -1; in mwifiex_dnld_cmd_to_fw()
273 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_dnld_cmd_to_fw()
275 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
276 adapter->curr_cmd = NULL; in mwifiex_dnld_cmd_to_fw()
277 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_dnld_cmd_to_fw()
279 adapter->dbg.num_cmd_host_to_card_failure++; in mwifiex_dnld_cmd_to_fw()
284 adapter->dbg.last_cmd_index = in mwifiex_dnld_cmd_to_fw()
285 (adapter->dbg.last_cmd_index + 1) % DBG_CMD_NUM; in mwifiex_dnld_cmd_to_fw()
286 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index] = cmd_code; in mwifiex_dnld_cmd_to_fw()
287 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index] = in mwifiex_dnld_cmd_to_fw()
294 mod_timer(&adapter->cmd_timer, in mwifiex_dnld_cmd_to_fw()
312 static int mwifiex_dnld_sleep_confirm_cmd(struct mwifiex_adapter *adapter) in mwifiex_dnld_sleep_confirm_cmd() argument
318 adapter->sleep_cfm->data; in mwifiex_dnld_sleep_confirm_cmd()
321 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_dnld_sleep_confirm_cmd()
323 adapter->seq_num++; in mwifiex_dnld_sleep_confirm_cmd()
326 (adapter->seq_num, priv->bss_num, in mwifiex_dnld_sleep_confirm_cmd()
329 mwifiex_dbg(adapter, CMD, in mwifiex_dnld_sleep_confirm_cmd()
335 mwifiex_dbg_dump(adapter, CMD_D, "SLEEP_CFM buffer: ", sleep_cfm_buf, in mwifiex_dnld_sleep_confirm_cmd()
338 if (adapter->iface_type == MWIFIEX_USB) { in mwifiex_dnld_sleep_confirm_cmd()
343 mwifiex_dbg(adapter, ERROR, in mwifiex_dnld_sleep_confirm_cmd()
352 adapter->sleep_cfm->data, in mwifiex_dnld_sleep_confirm_cmd()
354 ret = adapter->if_ops.host_to_card(adapter, in mwifiex_dnld_sleep_confirm_cmd()
360 skb_push(adapter->sleep_cfm, adapter->intf_hdr_len); in mwifiex_dnld_sleep_confirm_cmd()
361 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD, in mwifiex_dnld_sleep_confirm_cmd()
362 adapter->sleep_cfm, NULL); in mwifiex_dnld_sleep_confirm_cmd()
363 skb_pull(adapter->sleep_cfm, adapter->intf_hdr_len); in mwifiex_dnld_sleep_confirm_cmd()
367 mwifiex_dbg(adapter, ERROR, "SLEEP_CFM: failed\n"); in mwifiex_dnld_sleep_confirm_cmd()
368 adapter->dbg.num_cmd_sleep_cfm_host_to_card_failure++; in mwifiex_dnld_sleep_confirm_cmd()
374 adapter->ps_state = PS_STATE_SLEEP; in mwifiex_dnld_sleep_confirm_cmd()
376 adapter->ps_state = PS_STATE_SLEEP_CFM; in mwifiex_dnld_sleep_confirm_cmd()
379 (test_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags) && in mwifiex_dnld_sleep_confirm_cmd()
380 !adapter->sleep_period.period)) { in mwifiex_dnld_sleep_confirm_cmd()
381 adapter->pm_wakeup_card_req = true; in mwifiex_dnld_sleep_confirm_cmd()
383 (adapter, MWIFIEX_BSS_ROLE_ANY), true); in mwifiex_dnld_sleep_confirm_cmd()
401 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter) in mwifiex_alloc_cmd_buffer() argument
412 adapter->cmd_pool = cmd_array; in mwifiex_alloc_cmd_buffer()
418 mwifiex_dbg(adapter, ERROR, in mwifiex_alloc_cmd_buffer()
425 mwifiex_insert_cmd_to_free_q(adapter, &cmd_array[i]); in mwifiex_alloc_cmd_buffer()
436 void mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter) in mwifiex_free_cmd_buffer() argument
442 if (!adapter->cmd_pool) { in mwifiex_free_cmd_buffer()
443 mwifiex_dbg(adapter, FATAL, in mwifiex_free_cmd_buffer()
448 cmd_array = adapter->cmd_pool; in mwifiex_free_cmd_buffer()
453 mwifiex_dbg(adapter, CMD, in mwifiex_free_cmd_buffer()
460 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_free_cmd_buffer()
461 adapter->if_ops.cmdrsp_complete(adapter, in mwifiex_free_cmd_buffer()
467 if (adapter->cmd_pool) { in mwifiex_free_cmd_buffer()
468 mwifiex_dbg(adapter, CMD, in mwifiex_free_cmd_buffer()
470 kfree(adapter->cmd_pool); in mwifiex_free_cmd_buffer()
471 adapter->cmd_pool = NULL; in mwifiex_free_cmd_buffer()
485 int mwifiex_process_event(struct mwifiex_adapter *adapter) in mwifiex_process_event() argument
489 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_event()
490 struct sk_buff *skb = adapter->event_skb; in mwifiex_process_event()
494 if ((adapter->event_cause & EVENT_ID_MASK) == EVENT_RADAR_DETECTED) { in mwifiex_process_event()
495 for (i = 0; i < adapter->priv_num; i++) { in mwifiex_process_event()
496 priv = adapter->priv[i]; in mwifiex_process_event()
498 adapter->event_cause |= in mwifiex_process_event()
506 eventcause = adapter->event_cause; in mwifiex_process_event()
509 adapter->dbg.last_event_index = in mwifiex_process_event()
510 (adapter->dbg.last_event_index + 1) % DBG_CMD_NUM; in mwifiex_process_event()
511 adapter->dbg.last_event[adapter->dbg.last_event_index] = in mwifiex_process_event()
515 priv = mwifiex_get_priv_by_id(adapter, EVENT_GET_BSS_NUM(eventcause), in mwifiex_process_event()
518 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_event()
522 adapter->event_cause = eventcause; in mwifiex_process_event()
529 mwifiex_dbg_dump(adapter, EVT_D, "Event Buf:", in mwifiex_process_event()
533 mwifiex_dbg(adapter, EVENT, "EVENT: cause: %#x\n", eventcause); in mwifiex_process_event()
540 adapter->event_cause = 0; in mwifiex_process_event()
541 adapter->event_skb = NULL; in mwifiex_process_event()
542 adapter->if_ops.event_complete(adapter, skb); in mwifiex_process_event()
562 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_send_cmd() local
566 if (!adapter) { in mwifiex_send_cmd()
571 if (test_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags)) { in mwifiex_send_cmd()
572 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
577 if (test_bit(MWIFIEX_IS_HS_ENABLING, &adapter->work_flags) && in mwifiex_send_cmd()
579 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
584 if (test_bit(MWIFIEX_SURPRISE_REMOVED, &adapter->work_flags)) { in mwifiex_send_cmd()
585 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
590 if (test_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags)) { in mwifiex_send_cmd()
591 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
596 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET) { in mwifiex_send_cmd()
598 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
606 if (adapter->mfg_mode && cmd_no) { in mwifiex_send_cmd()
607 dev_dbg(adapter->dev, "Ignoring commands in manufacturing mode\n"); in mwifiex_send_cmd()
613 cmd_node = mwifiex_get_cmd_node(adapter); in mwifiex_send_cmd()
616 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
625 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
662 mwifiex_dbg(adapter, ERROR, in mwifiex_send_cmd()
665 mwifiex_insert_cmd_to_free_q(adapter, cmd_node); in mwifiex_send_cmd()
674 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node); in mwifiex_send_cmd()
675 queue_work(adapter->workqueue, &adapter->main_work); in mwifiex_send_cmd()
677 ret = mwifiex_wait_queue_complete(adapter, cmd_node); in mwifiex_send_cmd()
691 mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter, in mwifiex_insert_cmd_to_pending_q() argument
700 mwifiex_dbg(adapter, ERROR, "QUEUE_CMD: host_cmd is NULL\n"); in mwifiex_insert_cmd_to_pending_q()
712 if (adapter->ps_state != PS_STATE_AWAKE) in mwifiex_insert_cmd_to_pending_q()
717 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_insert_cmd_to_pending_q()
719 list_add_tail(&cmd_node->list, &adapter->cmd_pending_q); in mwifiex_insert_cmd_to_pending_q()
721 list_add(&cmd_node->list, &adapter->cmd_pending_q); in mwifiex_insert_cmd_to_pending_q()
722 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_insert_cmd_to_pending_q()
724 atomic_inc(&adapter->cmd_pending); in mwifiex_insert_cmd_to_pending_q()
725 mwifiex_dbg(adapter, CMD, in mwifiex_insert_cmd_to_pending_q()
727 command, atomic_read(&adapter->cmd_pending)); in mwifiex_insert_cmd_to_pending_q()
741 int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter) in mwifiex_exec_next_cmd() argument
749 if (adapter->curr_cmd) { in mwifiex_exec_next_cmd()
750 mwifiex_dbg(adapter, FATAL, in mwifiex_exec_next_cmd()
755 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
757 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
758 if (list_empty(&adapter->cmd_pending_q)) { in mwifiex_exec_next_cmd()
759 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
760 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
763 cmd_node = list_first_entry(&adapter->cmd_pending_q, in mwifiex_exec_next_cmd()
769 if (adapter->ps_state != PS_STATE_AWAKE) { in mwifiex_exec_next_cmd()
770 mwifiex_dbg(adapter, ERROR, in mwifiex_exec_next_cmd()
773 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
774 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
779 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_exec_next_cmd()
781 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_exec_next_cmd()
783 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_exec_next_cmd()
790 if (adapter->hs_activated) { in mwifiex_exec_next_cmd()
792 &adapter->work_flags); in mwifiex_exec_next_cmd()
806 int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter) in mwifiex_process_cmdresp() argument
810 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_cmdresp()
816 if (!adapter->curr_cmd || !adapter->curr_cmd->resp_skb) { in mwifiex_process_cmdresp()
817 resp = (struct host_cmd_ds_command *) adapter->upld_buf; in mwifiex_process_cmdresp()
818 mwifiex_dbg(adapter, ERROR, in mwifiex_process_cmdresp()
824 resp = (struct host_cmd_ds_command *)adapter->curr_cmd->resp_skb->data; in mwifiex_process_cmdresp()
828 if (adapter->curr_cmd->cmd_no != cmdresp_no) { in mwifiex_process_cmdresp()
829 mwifiex_dbg(adapter, ERROR, in mwifiex_process_cmdresp()
831 adapter->curr_cmd->cmd_no, cmdresp_no); in mwifiex_process_cmdresp()
835 del_timer_sync(&adapter->cmd_timer); in mwifiex_process_cmdresp()
836 clear_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags); in mwifiex_process_cmdresp()
838 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) { in mwifiex_process_cmdresp()
842 mwifiex_dbg(adapter, INFO, in mwifiex_process_cmdresp()
845 if (adapter->curr_cmd->data_buf) { in mwifiex_process_cmdresp()
846 hostcmd = adapter->curr_cmd->data_buf; in mwifiex_process_cmdresp()
853 priv = mwifiex_get_priv_by_id(adapter, in mwifiex_process_cmdresp()
857 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_cmdresp()
865 adapter->dbg.last_cmd_resp_index = in mwifiex_process_cmdresp()
866 (adapter->dbg.last_cmd_resp_index + 1) % DBG_CMD_NUM; in mwifiex_process_cmdresp()
867 adapter->dbg.last_cmd_resp_id[adapter->dbg.last_cmd_resp_index] = in mwifiex_process_cmdresp()
870 mwifiex_dbg(adapter, CMD, in mwifiex_process_cmdresp()
874 mwifiex_dbg_dump(adapter, CMD_D, "CMD_RESP buffer:", resp, in mwifiex_process_cmdresp()
878 mwifiex_dbg(adapter, ERROR, "CMD_RESP: invalid cmd resp\n"); in mwifiex_process_cmdresp()
879 if (adapter->curr_cmd->wait_q_enabled) in mwifiex_process_cmdresp()
880 adapter->cmd_wait_q.status = -1; in mwifiex_process_cmdresp()
882 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_process_cmdresp()
883 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
884 adapter->curr_cmd = NULL; in mwifiex_process_cmdresp()
885 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
889 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) { in mwifiex_process_cmdresp()
890 adapter->curr_cmd->cmd_flag &= ~CMD_F_HOSTCMD; in mwifiex_process_cmdresp()
900 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) { in mwifiex_process_cmdresp()
902 mwifiex_dbg(adapter, ERROR, in mwifiex_process_cmdresp()
905 mwifiex_init_fw_complete(adapter); in mwifiex_process_cmdresp()
907 } else if (adapter->last_init_cmd == cmdresp_no) in mwifiex_process_cmdresp()
908 adapter->hw_status = MWIFIEX_HW_STATUS_INIT_DONE; in mwifiex_process_cmdresp()
911 if (adapter->curr_cmd) { in mwifiex_process_cmdresp()
912 if (adapter->curr_cmd->wait_q_enabled) in mwifiex_process_cmdresp()
913 adapter->cmd_wait_q.status = ret; in mwifiex_process_cmdresp()
915 mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); in mwifiex_process_cmdresp()
917 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
918 adapter->curr_cmd = NULL; in mwifiex_process_cmdresp()
919 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_process_cmdresp()
933 struct mwifiex_adapter *adapter = from_timer(adapter, t, cmd_timer); in mwifiex_cmd_timeout_func() local
936 set_bit(MWIFIEX_IS_CMD_TIMEDOUT, &adapter->work_flags); in mwifiex_cmd_timeout_func()
937 if (!adapter->curr_cmd) { in mwifiex_cmd_timeout_func()
938 mwifiex_dbg(adapter, ERROR, in mwifiex_cmd_timeout_func()
942 cmd_node = adapter->curr_cmd; in mwifiex_cmd_timeout_func()
944 adapter->dbg.timeout_cmd_id = in mwifiex_cmd_timeout_func()
945 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index]; in mwifiex_cmd_timeout_func()
946 adapter->dbg.timeout_cmd_act = in mwifiex_cmd_timeout_func()
947 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index]; in mwifiex_cmd_timeout_func()
948 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
950 adapter->dbg.timeout_cmd_id, in mwifiex_cmd_timeout_func()
951 adapter->dbg.timeout_cmd_act); in mwifiex_cmd_timeout_func()
953 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
955 adapter->dbg.num_tx_host_to_card_failure); in mwifiex_cmd_timeout_func()
956 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
958 adapter->dbg.num_cmd_host_to_card_failure); in mwifiex_cmd_timeout_func()
960 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
963 &adapter->work_flags)); in mwifiex_cmd_timeout_func()
964 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
966 adapter->dbg.num_tx_timeout); in mwifiex_cmd_timeout_func()
968 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
970 adapter->dbg.last_cmd_index); in mwifiex_cmd_timeout_func()
971 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
973 (int)sizeof(adapter->dbg.last_cmd_id), in mwifiex_cmd_timeout_func()
974 adapter->dbg.last_cmd_id); in mwifiex_cmd_timeout_func()
975 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
977 (int)sizeof(adapter->dbg.last_cmd_act), in mwifiex_cmd_timeout_func()
978 adapter->dbg.last_cmd_act); in mwifiex_cmd_timeout_func()
980 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
982 adapter->dbg.last_cmd_resp_index); in mwifiex_cmd_timeout_func()
983 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
985 (int)sizeof(adapter->dbg.last_cmd_resp_id), in mwifiex_cmd_timeout_func()
986 adapter->dbg.last_cmd_resp_id); in mwifiex_cmd_timeout_func()
988 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
990 adapter->dbg.last_event_index); in mwifiex_cmd_timeout_func()
991 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
993 (int)sizeof(adapter->dbg.last_event), in mwifiex_cmd_timeout_func()
994 adapter->dbg.last_event); in mwifiex_cmd_timeout_func()
996 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
998 adapter->data_sent, adapter->cmd_sent); in mwifiex_cmd_timeout_func()
1000 mwifiex_dbg(adapter, MSG, in mwifiex_cmd_timeout_func()
1002 adapter->ps_mode, adapter->ps_state); in mwifiex_cmd_timeout_func()
1005 adapter->cmd_wait_q.status = -ETIMEDOUT; in mwifiex_cmd_timeout_func()
1006 mwifiex_cancel_pending_ioctl(adapter); in mwifiex_cmd_timeout_func()
1009 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) { in mwifiex_cmd_timeout_func()
1010 mwifiex_init_fw_complete(adapter); in mwifiex_cmd_timeout_func()
1014 if (adapter->if_ops.device_dump) in mwifiex_cmd_timeout_func()
1015 adapter->if_ops.device_dump(adapter); in mwifiex_cmd_timeout_func()
1017 if (adapter->if_ops.card_reset) in mwifiex_cmd_timeout_func()
1018 adapter->if_ops.card_reset(adapter); in mwifiex_cmd_timeout_func()
1022 mwifiex_cancel_pending_scan_cmd(struct mwifiex_adapter *adapter) in mwifiex_cancel_pending_scan_cmd() argument
1027 spin_lock_bh(&adapter->scan_pending_q_lock); in mwifiex_cancel_pending_scan_cmd()
1029 &adapter->scan_pending_q, list) { in mwifiex_cancel_pending_scan_cmd()
1032 mwifiex_insert_cmd_to_free_q(adapter, cmd_node); in mwifiex_cancel_pending_scan_cmd()
1034 spin_unlock_bh(&adapter->scan_pending_q_lock); in mwifiex_cancel_pending_scan_cmd()
1045 mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter) in mwifiex_cancel_all_pending_cmd() argument
1049 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_all_pending_cmd()
1051 if ((adapter->curr_cmd) && (adapter->curr_cmd->wait_q_enabled)) { in mwifiex_cancel_all_pending_cmd()
1052 adapter->cmd_wait_q.status = -1; in mwifiex_cancel_all_pending_cmd()
1053 mwifiex_complete_cmd(adapter, adapter->curr_cmd); in mwifiex_cancel_all_pending_cmd()
1054 adapter->curr_cmd->wait_q_enabled = false; in mwifiex_cancel_all_pending_cmd()
1058 spin_lock_bh(&adapter->cmd_pending_q_lock); in mwifiex_cancel_all_pending_cmd()
1060 &adapter->cmd_pending_q, list) { in mwifiex_cancel_all_pending_cmd()
1064 adapter->cmd_wait_q.status = -1; in mwifiex_cancel_all_pending_cmd()
1065 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_cancel_all_pending_cmd()
1067 spin_unlock_bh(&adapter->cmd_pending_q_lock); in mwifiex_cancel_all_pending_cmd()
1068 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_all_pending_cmd()
1070 mwifiex_cancel_scan(adapter); in mwifiex_cancel_all_pending_cmd()
1084 mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter) in mwifiex_cancel_pending_ioctl() argument
1088 if ((adapter->curr_cmd) && in mwifiex_cancel_pending_ioctl()
1089 (adapter->curr_cmd->wait_q_enabled)) { in mwifiex_cancel_pending_ioctl()
1090 spin_lock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_pending_ioctl()
1091 cmd_node = adapter->curr_cmd; in mwifiex_cancel_pending_ioctl()
1100 adapter->curr_cmd = NULL; in mwifiex_cancel_pending_ioctl()
1101 spin_unlock_bh(&adapter->mwifiex_cmd_lock); in mwifiex_cancel_pending_ioctl()
1103 mwifiex_recycle_cmd_node(adapter, cmd_node); in mwifiex_cancel_pending_ioctl()
1106 mwifiex_cancel_scan(adapter); in mwifiex_cancel_pending_ioctl()
1119 mwifiex_check_ps_cond(struct mwifiex_adapter *adapter) in mwifiex_check_ps_cond() argument
1121 if (!adapter->cmd_sent && !atomic_read(&adapter->tx_hw_pending) && in mwifiex_check_ps_cond()
1122 !adapter->curr_cmd && !IS_CARD_RX_RCVD(adapter)) in mwifiex_check_ps_cond()
1123 mwifiex_dnld_sleep_confirm_cmd(adapter); in mwifiex_check_ps_cond()
1125 mwifiex_dbg(adapter, CMD, in mwifiex_check_ps_cond()
1127 (adapter->cmd_sent) ? "D" : "", in mwifiex_check_ps_cond()
1128 atomic_read(&adapter->tx_hw_pending) ? "T" : "", in mwifiex_check_ps_cond()
1129 (adapter->curr_cmd) ? "C" : "", in mwifiex_check_ps_cond()
1130 (IS_CARD_RX_RCVD(adapter)) ? "R" : ""); in mwifiex_check_ps_cond()
1143 &priv->adapter->work_flags)) { in mwifiex_hs_activated_event()
1144 priv->adapter->hs_activated = true; in mwifiex_hs_activated_event()
1145 mwifiex_update_rxreor_flags(priv->adapter, in mwifiex_hs_activated_event()
1147 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1149 priv->adapter->hs_activate_wait_q_woken = true; in mwifiex_hs_activated_event()
1151 &priv->adapter->hs_activate_wait_q); in mwifiex_hs_activated_event()
1153 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1157 mwifiex_dbg(priv->adapter, EVENT, in mwifiex_hs_activated_event()
1159 priv->adapter->hs_activated = false; in mwifiex_hs_activated_event()
1176 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_802_11_hs_cfg() local
1182 adapter->iface_type != MWIFIEX_USB) { in mwifiex_ret_802_11_hs_cfg()
1186 mwifiex_dbg(adapter, CMD, in mwifiex_ret_802_11_hs_cfg()
1194 set_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_ret_802_11_hs_cfg()
1195 if (adapter->iface_type == MWIFIEX_USB) in mwifiex_ret_802_11_hs_cfg()
1198 clear_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_ret_802_11_hs_cfg()
1199 if (adapter->hs_activated) in mwifiex_ret_802_11_hs_cfg()
1211 mwifiex_process_hs_config(struct mwifiex_adapter *adapter) in mwifiex_process_hs_config() argument
1213 mwifiex_dbg(adapter, INFO, in mwifiex_process_hs_config()
1218 adapter->if_ops.wakeup(adapter); in mwifiex_process_hs_config()
1219 adapter->hs_activated = false; in mwifiex_process_hs_config()
1220 clear_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags); in mwifiex_process_hs_config()
1221 clear_bit(MWIFIEX_IS_SUSPENDED, &adapter->work_flags); in mwifiex_process_hs_config()
1222 mwifiex_hs_activated_event(mwifiex_get_priv(adapter, in mwifiex_process_hs_config()
1234 mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *adapter, in mwifiex_process_sleep_confirm_resp() argument
1239 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_sleep_confirm_resp()
1245 mwifiex_dbg(adapter, ERROR, in mwifiex_process_sleep_confirm_resp()
1250 mwifiex_dbg(adapter, CMD, in mwifiex_process_sleep_confirm_resp()
1255 priv = mwifiex_get_priv_by_id(adapter, HostCmd_GET_BSS_NO(seq_num), in mwifiex_process_sleep_confirm_resp()
1258 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY); in mwifiex_process_sleep_confirm_resp()
1266 mwifiex_dbg(adapter, ERROR, in mwifiex_process_sleep_confirm_resp()
1273 mwifiex_dbg(adapter, ERROR, in mwifiex_process_sleep_confirm_resp()
1276 adapter->pm_wakeup_card_req = false; in mwifiex_process_sleep_confirm_resp()
1277 adapter->ps_state = PS_STATE_AWAKE; in mwifiex_process_sleep_confirm_resp()
1280 adapter->pm_wakeup_card_req = true; in mwifiex_process_sleep_confirm_resp()
1281 if (test_bit(MWIFIEX_IS_HS_CONFIGURED, &adapter->work_flags)) in mwifiex_process_sleep_confirm_resp()
1283 (adapter, MWIFIEX_BSS_ROLE_ANY), in mwifiex_process_sleep_confirm_resp()
1285 adapter->ps_state = PS_STATE_SLEEP; in mwifiex_process_sleep_confirm_resp()
1331 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_cmd_enh_power_mode() local
1340 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_enh_power_mode()
1343 cpu_to_le16(adapter->null_pkt_interval); in mwifiex_cmd_enh_power_mode()
1345 cpu_to_le16(adapter->multiple_dtim); in mwifiex_cmd_enh_power_mode()
1347 cpu_to_le16(adapter->bcn_miss_time_out); in mwifiex_cmd_enh_power_mode()
1349 cpu_to_le16(adapter->local_listen_interval); in mwifiex_cmd_enh_power_mode()
1351 cpu_to_le16(adapter->adhoc_awake_period); in mwifiex_cmd_enh_power_mode()
1353 cpu_to_le16(adapter->delay_to_ps); in mwifiex_cmd_enh_power_mode()
1354 ps_mode->mode = cpu_to_le16(adapter->enhanced_ps_mode); in mwifiex_cmd_enh_power_mode()
1371 mwifiex_dbg(priv->adapter, CMD, in mwifiex_cmd_enh_power_mode()
1391 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_enh_power_mode() local
1399 mwifiex_dbg(adapter, INFO, in mwifiex_ret_enh_power_mode()
1404 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1406 priv->adapter->is_deep_sleep = true; in mwifiex_ret_enh_power_mode()
1409 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1411 if (adapter->sleep_period.period) in mwifiex_ret_enh_power_mode()
1412 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1417 priv->adapter->is_deep_sleep = false; in mwifiex_ret_enh_power_mode()
1418 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1422 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1424 if (adapter->sleep_period.period) { in mwifiex_ret_enh_power_mode()
1425 adapter->delay_null_pkt = false; in mwifiex_ret_enh_power_mode()
1426 adapter->tx_lock_flag = false; in mwifiex_ret_enh_power_mode()
1427 adapter->pps_uapsd_mode = false; in mwifiex_ret_enh_power_mode()
1432 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_PSP; in mwifiex_ret_enh_power_mode()
1434 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM; in mwifiex_ret_enh_power_mode()
1436 mwifiex_dbg(adapter, CMD, in mwifiex_ret_enh_power_mode()
1495 struct mwifiex_adapter *adapter = priv->adapter; in mwifiex_ret_get_hw_spec() local
1502 adapter->fw_cap_info = le32_to_cpu(hw_spec->fw_cap_info); in mwifiex_ret_get_hw_spec()
1504 if (IS_SUPPORT_MULTI_BANDS(adapter)) in mwifiex_ret_get_hw_spec()
1505 adapter->fw_bands = (u8) GET_FW_DEFAULT_BANDS(adapter); in mwifiex_ret_get_hw_spec()
1507 adapter->fw_bands = BAND_B; in mwifiex_ret_get_hw_spec()
1509 adapter->config_bands = adapter->fw_bands; in mwifiex_ret_get_hw_spec()
1511 if (adapter->fw_bands & BAND_A) { in mwifiex_ret_get_hw_spec()
1512 if (adapter->fw_bands & BAND_GN) { in mwifiex_ret_get_hw_spec()
1513 adapter->config_bands |= BAND_AN; in mwifiex_ret_get_hw_spec()
1514 adapter->fw_bands |= BAND_AN; in mwifiex_ret_get_hw_spec()
1516 if (adapter->fw_bands & BAND_AN) { in mwifiex_ret_get_hw_spec()
1517 adapter->adhoc_start_band = BAND_A | BAND_AN; in mwifiex_ret_get_hw_spec()
1518 adapter->adhoc_11n_enabled = true; in mwifiex_ret_get_hw_spec()
1520 adapter->adhoc_start_band = BAND_A; in mwifiex_ret_get_hw_spec()
1523 } else if (adapter->fw_bands & BAND_GN) { in mwifiex_ret_get_hw_spec()
1524 adapter->adhoc_start_band = BAND_G | BAND_B | BAND_GN; in mwifiex_ret_get_hw_spec()
1526 adapter->adhoc_11n_enabled = true; in mwifiex_ret_get_hw_spec()
1527 } else if (adapter->fw_bands & BAND_G) { in mwifiex_ret_get_hw_spec()
1528 adapter->adhoc_start_band = BAND_G | BAND_B; in mwifiex_ret_get_hw_spec()
1530 } else if (adapter->fw_bands & BAND_B) { in mwifiex_ret_get_hw_spec()
1531 adapter->adhoc_start_band = BAND_B; in mwifiex_ret_get_hw_spec()
1535 adapter->fw_release_number = le32_to_cpu(hw_spec->fw_release_number); in mwifiex_ret_get_hw_spec()
1536 adapter->fw_api_ver = (adapter->fw_release_number >> 16) & 0xff; in mwifiex_ret_get_hw_spec()
1537 adapter->number_of_antenna = in mwifiex_ret_get_hw_spec()
1541 adapter->is_hw_11ac_capable = true; in mwifiex_ret_get_hw_spec()
1544 adapter->hw_dot_11ac_dev_cap = in mwifiex_ret_get_hw_spec()
1546 adapter->usr_dot_11ac_dev_cap_bg = adapter->hw_dot_11ac_dev_cap in mwifiex_ret_get_hw_spec()
1548 adapter->usr_dot_11ac_dev_cap_a = adapter->hw_dot_11ac_dev_cap in mwifiex_ret_get_hw_spec()
1552 adapter->hw_dot_11ac_mcs_support = in mwifiex_ret_get_hw_spec()
1554 adapter->usr_dot_11ac_mcs_support = in mwifiex_ret_get_hw_spec()
1555 adapter->hw_dot_11ac_mcs_support; in mwifiex_ret_get_hw_spec()
1557 adapter->is_hw_11ac_capable = false; in mwifiex_ret_get_hw_spec()
1572 adapter->key_api_major_ver = in mwifiex_ret_get_hw_spec()
1574 adapter->key_api_minor_ver = in mwifiex_ret_get_hw_spec()
1576 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1578 adapter->key_api_major_ver, in mwifiex_ret_get_hw_spec()
1579 adapter->key_api_minor_ver); in mwifiex_ret_get_hw_spec()
1582 adapter->fw_api_ver = in mwifiex_ret_get_hw_spec()
1584 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1586 adapter->fw_api_ver, in mwifiex_ret_get_hw_spec()
1590 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1596 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1602 mwifiex_dbg(adapter, FATAL, in mwifiex_ret_get_hw_spec()
1610 adapter->max_p2p_conn = max_conn->max_p2p_conn; in mwifiex_ret_get_hw_spec()
1611 adapter->max_sta_conn = max_conn->max_sta_conn; in mwifiex_ret_get_hw_spec()
1612 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1614 adapter->max_p2p_conn); in mwifiex_ret_get_hw_spec()
1615 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1617 adapter->max_sta_conn); in mwifiex_ret_get_hw_spec()
1620 mwifiex_dbg(adapter, FATAL, in mwifiex_ret_get_hw_spec()
1632 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1634 adapter->fw_release_number); in mwifiex_ret_get_hw_spec()
1635 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1638 mwifiex_dbg(adapter, INFO, in mwifiex_ret_get_hw_spec()
1643 ether_addr_copy(priv->adapter->perm_addr, hw_spec->permanent_addr); in mwifiex_ret_get_hw_spec()
1644 adapter->region_code = le16_to_cpu(hw_spec->region_code); in mwifiex_ret_get_hw_spec()
1648 if (adapter->region_code == region_code_index[i]) in mwifiex_ret_get_hw_spec()
1653 adapter->region_code = 0x00; in mwifiex_ret_get_hw_spec()
1654 mwifiex_dbg(adapter, WARN, in mwifiex_ret_get_hw_spec()
1658 adapter->hw_dot_11n_dev_cap = le32_to_cpu(hw_spec->dot_11n_dev_cap); in mwifiex_ret_get_hw_spec()
1659 adapter->hw_dev_mcs_support = hw_spec->dev_mcs_support; in mwifiex_ret_get_hw_spec()
1660 adapter->user_dev_mcs_support = adapter->hw_dev_mcs_support; in mwifiex_ret_get_hw_spec()
1662 if (adapter->if_ops.update_mp_end_port) in mwifiex_ret_get_hw_spec()
1663 adapter->if_ops.update_mp_end_port(adapter, in mwifiex_ret_get_hw_spec()
1666 if (adapter->fw_api_ver == MWIFIEX_FW_V15) in mwifiex_ret_get_hw_spec()
1667 adapter->scan_chan_gap_enabled = true; in mwifiex_ret_get_hw_spec()