c82eb7ff2fa26bb381626ec8059a3b550a450fe0
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / mwifiex / cmdevt.c
1 /*
2  * Marvell Wireless LAN device driver: commands and events
3  *
4  * Copyright (C) 2011, Marvell International Ltd.
5  *
6  * This software file (the "File") is distributed by Marvell International
7  * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8  * (the "License").  You may use, redistribute and/or modify this File in
9  * accordance with the terms and conditions of the License, a copy of which
10  * is available by writing to the Free Software Foundation, Inc.,
11  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12  * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13  *
14  * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16  * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
17  * this warranty disclaimer.
18  */
19
20 #include "decl.h"
21 #include "ioctl.h"
22 #include "util.h"
23 #include "fw.h"
24 #include "main.h"
25 #include "wmm.h"
26 #include "11n.h"
27
28 /*
29  * This function initializes a command node.
30  *
31  * The actual allocation of the node is not done by this function. It only
32  * initiates a node by filling it with default parameters. Similarly,
33  * allocation of the different buffers used (IOCTL buffer, data buffer) are
34  * not done by this function either.
35  */
36 static void
37 mwifiex_init_cmd_node(struct mwifiex_private *priv,
38                       struct cmd_ctrl_node *cmd_node,
39                       u32 cmd_oid, void *data_buf)
40 {
41         cmd_node->priv = priv;
42         cmd_node->cmd_oid = cmd_oid;
43         if (priv->adapter->cmd_wait_q_required) {
44                 cmd_node->wait_q_enabled = priv->adapter->cmd_wait_q_required;
45                 priv->adapter->cmd_wait_q_required = false;
46                 cmd_node->cmd_wait_q_woken = false;
47                 cmd_node->condition = &cmd_node->cmd_wait_q_woken;
48         }
49         cmd_node->data_buf = data_buf;
50         cmd_node->cmd_skb = cmd_node->skb;
51 }
52
53 /*
54  * This function returns a command node from the free queue depending upon
55  * availability.
56  */
57 static struct cmd_ctrl_node *
58 mwifiex_get_cmd_node(struct mwifiex_adapter *adapter)
59 {
60         struct cmd_ctrl_node *cmd_node;
61         unsigned long flags;
62
63         spin_lock_irqsave(&adapter->cmd_free_q_lock, flags);
64         if (list_empty(&adapter->cmd_free_q)) {
65                 dev_err(adapter->dev, "GET_CMD_NODE: cmd node not available\n");
66                 spin_unlock_irqrestore(&adapter->cmd_free_q_lock, flags);
67                 return NULL;
68         }
69         cmd_node = list_first_entry(&adapter->cmd_free_q,
70                         struct cmd_ctrl_node, list);
71         list_del(&cmd_node->list);
72         spin_unlock_irqrestore(&adapter->cmd_free_q_lock, flags);
73
74         return cmd_node;
75 }
76
77 /*
78  * This function cleans up a command node.
79  *
80  * The function resets the fields including the buffer pointers.
81  * This function does not try to free the buffers. They must be
82  * freed before calling this function.
83  *
84  * This function will however call the receive completion callback
85  * in case a response buffer is still available before resetting
86  * the pointer.
87  */
88 static void
89 mwifiex_clean_cmd_node(struct mwifiex_adapter *adapter,
90                        struct cmd_ctrl_node *cmd_node)
91 {
92         cmd_node->cmd_oid = 0;
93         cmd_node->cmd_flag = 0;
94         cmd_node->data_buf = NULL;
95         cmd_node->wait_q_enabled = false;
96
97         if (cmd_node->cmd_skb)
98                 skb_trim(cmd_node->cmd_skb, 0);
99
100         if (cmd_node->resp_skb) {
101                 adapter->if_ops.cmdrsp_complete(adapter, cmd_node->resp_skb);
102                 cmd_node->resp_skb = NULL;
103         }
104 }
105
106 /*
107  * This function sends a host command to the firmware.
108  *
109  * The function copies the host command into the driver command
110  * buffer, which will be transferred to the firmware later by the
111  * main thread.
112  */
113 static int mwifiex_cmd_host_cmd(struct mwifiex_private *priv,
114                                 struct host_cmd_ds_command *cmd,
115                                 struct mwifiex_ds_misc_cmd *pcmd_ptr)
116 {
117         /* Copy the HOST command to command buffer */
118         memcpy(cmd, pcmd_ptr->cmd, pcmd_ptr->len);
119         dev_dbg(priv->adapter->dev, "cmd: host cmd size = %d\n", pcmd_ptr->len);
120         return 0;
121 }
122
123 /*
124  * This function downloads a command to the firmware.
125  *
126  * The function performs sanity tests, sets the command sequence
127  * number and size, converts the header fields to CPU format before
128  * sending. Afterwards, it logs the command ID and action for debugging
129  * and sets up the command timeout timer.
130  */
131 static int mwifiex_dnld_cmd_to_fw(struct mwifiex_private *priv,
132                                   struct cmd_ctrl_node *cmd_node)
133 {
134
135         struct mwifiex_adapter *adapter = priv->adapter;
136         int ret;
137         struct host_cmd_ds_command *host_cmd;
138         uint16_t cmd_code;
139         uint16_t cmd_size;
140         struct timeval tstamp;
141         unsigned long flags;
142
143         if (!adapter || !cmd_node)
144                 return -1;
145
146         host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
147
148         /* Sanity test */
149         if (host_cmd == NULL || host_cmd->size == 0) {
150                 dev_err(adapter->dev, "DNLD_CMD: host_cmd is null"
151                         " or cmd size is 0, not sending\n");
152                 if (cmd_node->wait_q_enabled)
153                         adapter->cmd_wait_q.status = -1;
154                 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
155                 return -1;
156         }
157
158         /* Set command sequence number */
159         adapter->seq_num++;
160         host_cmd->seq_num = cpu_to_le16(HostCmd_SET_SEQ_NO_BSS_INFO
161                             (adapter->seq_num, cmd_node->priv->bss_num,
162                              cmd_node->priv->bss_type));
163
164         spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
165         adapter->curr_cmd = cmd_node;
166         spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
167
168         cmd_code = le16_to_cpu(host_cmd->command);
169         cmd_size = le16_to_cpu(host_cmd->size);
170
171         skb_trim(cmd_node->cmd_skb, cmd_size);
172
173         do_gettimeofday(&tstamp);
174         dev_dbg(adapter->dev, "cmd: DNLD_CMD: (%lu.%lu): %#x, act %#x, len %d,"
175                 " seqno %#x\n",
176                 tstamp.tv_sec, tstamp.tv_usec, cmd_code,
177                le16_to_cpu(*(__le16 *) ((u8 *) host_cmd + S_DS_GEN)), cmd_size,
178                le16_to_cpu(host_cmd->seq_num));
179
180         skb_push(cmd_node->cmd_skb, INTF_HEADER_LEN);
181
182         ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD,
183                                            cmd_node->cmd_skb, NULL);
184
185         skb_pull(cmd_node->cmd_skb, INTF_HEADER_LEN);
186
187         if (ret == -1) {
188                 dev_err(adapter->dev, "DNLD_CMD: host to card failed\n");
189                 if (cmd_node->wait_q_enabled)
190                         adapter->cmd_wait_q.status = -1;
191                 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
192
193                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
194                 adapter->curr_cmd = NULL;
195                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
196
197                 adapter->dbg.num_cmd_host_to_card_failure++;
198                 return -1;
199         }
200
201         /* Save the last command id and action to debug log */
202         adapter->dbg.last_cmd_index =
203                 (adapter->dbg.last_cmd_index + 1) % DBG_CMD_NUM;
204         adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index] = cmd_code;
205         adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index] =
206                 le16_to_cpu(*(__le16 *) ((u8 *) host_cmd + S_DS_GEN));
207
208         /* Clear BSS_NO_BITS from HostCmd */
209         cmd_code &= HostCmd_CMD_ID_MASK;
210
211         /* Setup the timer after transmit command */
212         mod_timer(&adapter->cmd_timer,
213                 jiffies + (MWIFIEX_TIMER_10S * HZ) / 1000);
214
215         return 0;
216 }
217
218 /*
219  * This function downloads a sleep confirm command to the firmware.
220  *
221  * The function performs sanity tests, sets the command sequence
222  * number and size, converts the header fields to CPU format before
223  * sending.
224  *
225  * No responses are needed for sleep confirm command.
226  */
227 static int mwifiex_dnld_sleep_confirm_cmd(struct mwifiex_adapter *adapter)
228 {
229         int ret;
230         struct mwifiex_private *priv;
231         struct mwifiex_opt_sleep_confirm *sleep_cfm_buf =
232                                 (struct mwifiex_opt_sleep_confirm *)
233                                 adapter->sleep_cfm->data;
234         priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
235
236         sleep_cfm_buf->seq_num =
237                 cpu_to_le16((HostCmd_SET_SEQ_NO_BSS_INFO
238                                         (adapter->seq_num, priv->bss_num,
239                                          priv->bss_type)));
240         adapter->seq_num++;
241
242         skb_push(adapter->sleep_cfm, INTF_HEADER_LEN);
243         ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD,
244                                            adapter->sleep_cfm, NULL);
245         skb_pull(adapter->sleep_cfm, INTF_HEADER_LEN);
246
247         if (ret == -1) {
248                 dev_err(adapter->dev, "SLEEP_CFM: failed\n");
249                 adapter->dbg.num_cmd_sleep_cfm_host_to_card_failure++;
250                 return -1;
251         }
252         if (GET_BSS_ROLE(mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY))
253                         == MWIFIEX_BSS_ROLE_STA) {
254                 if (!sleep_cfm_buf->resp_ctrl)
255                         /* Response is not needed for sleep
256                            confirm command */
257                         adapter->ps_state = PS_STATE_SLEEP;
258                 else
259                         adapter->ps_state = PS_STATE_SLEEP_CFM;
260
261                 if (!sleep_cfm_buf->resp_ctrl
262                                 && (adapter->is_hs_configured
263                                         && !adapter->sleep_period.period)) {
264                         adapter->pm_wakeup_card_req = true;
265                         mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
266                                                 MWIFIEX_BSS_ROLE_STA), true);
267                 }
268         }
269
270         return ret;
271 }
272
273 /*
274  * This function allocates the command buffers and links them to
275  * the command free queue.
276  *
277  * The driver uses a pre allocated number of command buffers, which
278  * are created at driver initializations and freed at driver cleanup.
279  * Every command needs to obtain a command buffer from this pool before
280  * it can be issued. The command free queue lists the command buffers
281  * currently free to use, while the command pending queue lists the
282  * command buffers already in use and awaiting handling. Command buffers
283  * are returned to the free queue after use.
284  */
285 int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter)
286 {
287         struct cmd_ctrl_node *cmd_array;
288         u32 buf_size;
289         u32 i;
290
291         /* Allocate and initialize struct cmd_ctrl_node */
292         buf_size = sizeof(struct cmd_ctrl_node) * MWIFIEX_NUM_OF_CMD_BUFFER;
293         cmd_array = kzalloc(buf_size, GFP_KERNEL);
294         if (!cmd_array) {
295                 dev_err(adapter->dev, "%s: failed to alloc cmd_array\n",
296                                 __func__);
297                 return -ENOMEM;
298         }
299
300         adapter->cmd_pool = cmd_array;
301         memset(adapter->cmd_pool, 0, buf_size);
302
303         /* Allocate and initialize command buffers */
304         for (i = 0; i < MWIFIEX_NUM_OF_CMD_BUFFER; i++) {
305                 cmd_array[i].skb = dev_alloc_skb(MWIFIEX_SIZE_OF_CMD_BUFFER);
306                 if (!cmd_array[i].skb) {
307                         dev_err(adapter->dev, "ALLOC_CMD_BUF: out of memory\n");
308                         return -1;
309                 }
310         }
311
312         for (i = 0; i < MWIFIEX_NUM_OF_CMD_BUFFER; i++)
313                 mwifiex_insert_cmd_to_free_q(adapter, &cmd_array[i]);
314
315         return 0;
316 }
317
318 /*
319  * This function frees the command buffers.
320  *
321  * The function calls the completion callback for all the command
322  * buffers that still have response buffers associated with them.
323  */
324 int mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter)
325 {
326         struct cmd_ctrl_node *cmd_array;
327         u32 i;
328
329         /* Need to check if cmd pool is allocated or not */
330         if (!adapter->cmd_pool) {
331                 dev_dbg(adapter->dev, "info: FREE_CMD_BUF: cmd_pool is null\n");
332                 return 0;
333         }
334
335         cmd_array = adapter->cmd_pool;
336
337         /* Release shared memory buffers */
338         for (i = 0; i < MWIFIEX_NUM_OF_CMD_BUFFER; i++) {
339                 if (cmd_array[i].skb) {
340                         dev_dbg(adapter->dev, "cmd: free cmd buffer %d\n", i);
341                         dev_kfree_skb_any(cmd_array[i].skb);
342                 }
343                 if (!cmd_array[i].resp_skb)
344                         continue;
345                 dev_kfree_skb_any(cmd_array[i].resp_skb);
346         }
347         /* Release struct cmd_ctrl_node */
348         if (adapter->cmd_pool) {
349                 dev_dbg(adapter->dev, "cmd: free cmd pool\n");
350                 kfree(adapter->cmd_pool);
351                 adapter->cmd_pool = NULL;
352         }
353
354         return 0;
355 }
356
357 /*
358  * This function handles events generated by firmware.
359  *
360  * Event body of events received from firmware are not used (though they are
361  * saved), only the event ID is used. Some events are re-invoked by
362  * the driver, with a new event body.
363  *
364  * After processing, the function calls the completion callback
365  * for cleanup.
366  */
367 int mwifiex_process_event(struct mwifiex_adapter *adapter)
368 {
369         int ret;
370         struct mwifiex_private *priv =
371                 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
372         struct sk_buff *skb = adapter->event_skb;
373         u32 eventcause = adapter->event_cause;
374         struct timeval tstamp;
375         struct mwifiex_rxinfo *rx_info;
376
377         /* Save the last event to debug log */
378         adapter->dbg.last_event_index =
379                 (adapter->dbg.last_event_index + 1) % DBG_CMD_NUM;
380         adapter->dbg.last_event[adapter->dbg.last_event_index] =
381                 (u16) eventcause;
382
383         /* Get BSS number and corresponding priv */
384         priv = mwifiex_get_priv_by_id(adapter, EVENT_GET_BSS_NUM(eventcause),
385                                       EVENT_GET_BSS_TYPE(eventcause));
386         if (!priv)
387                 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
388         /* Clear BSS_NO_BITS from event */
389         eventcause &= EVENT_ID_MASK;
390         adapter->event_cause = eventcause;
391
392         if (skb) {
393                 rx_info = MWIFIEX_SKB_RXCB(skb);
394                 rx_info->bss_num = priv->bss_num;
395                 rx_info->bss_type = priv->bss_type;
396         }
397
398         if (eventcause != EVENT_PS_SLEEP && eventcause != EVENT_PS_AWAKE) {
399                 do_gettimeofday(&tstamp);
400                 dev_dbg(adapter->dev, "event: %lu.%lu: cause: %#x\n",
401                        tstamp.tv_sec, tstamp.tv_usec, eventcause);
402         }
403
404         ret = mwifiex_process_sta_event(priv);
405
406         adapter->event_cause = 0;
407         adapter->event_skb = NULL;
408         adapter->if_ops.event_complete(adapter, skb);
409
410         return ret;
411 }
412
413 /*
414  * This function is used to send synchronous command to the firmware.
415  *
416  * it allocates a wait queue for the command and wait for the command
417  * response.
418  */
419 int mwifiex_send_cmd_sync(struct mwifiex_private *priv, uint16_t cmd_no,
420                           u16 cmd_action, u32 cmd_oid, void *data_buf)
421 {
422         int ret = 0;
423         struct mwifiex_adapter *adapter = priv->adapter;
424
425         adapter->cmd_wait_q_required = true;
426
427         ret = mwifiex_send_cmd_async(priv, cmd_no, cmd_action, cmd_oid,
428                                      data_buf);
429         if (!ret)
430                 ret = mwifiex_wait_queue_complete(adapter);
431
432         return ret;
433 }
434
435
436 /*
437  * This function prepares a command and asynchronously send it to the firmware.
438  *
439  * Preparation includes -
440  *      - Sanity tests to make sure the card is still present or the FW
441  *        is not reset
442  *      - Getting a new command node from the command free queue
443  *      - Initializing the command node for default parameters
444  *      - Fill up the non-default parameters and buffer pointers
445  *      - Add the command to pending queue
446  */
447 int mwifiex_send_cmd_async(struct mwifiex_private *priv, uint16_t cmd_no,
448                            u16 cmd_action, u32 cmd_oid, void *data_buf)
449 {
450         int ret;
451         struct mwifiex_adapter *adapter = priv->adapter;
452         struct cmd_ctrl_node *cmd_node;
453         struct host_cmd_ds_command *cmd_ptr;
454
455         if (!adapter) {
456                 pr_err("PREP_CMD: adapter is NULL\n");
457                 return -1;
458         }
459
460         if (adapter->is_suspended) {
461                 dev_err(adapter->dev, "PREP_CMD: device in suspended state\n");
462                 return -1;
463         }
464
465         if (adapter->surprise_removed) {
466                 dev_err(adapter->dev, "PREP_CMD: card is removed\n");
467                 return -1;
468         }
469
470         if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET) {
471                 if (cmd_no != HostCmd_CMD_FUNC_INIT) {
472                         dev_err(adapter->dev, "PREP_CMD: FW in reset state\n");
473                         return -1;
474                 }
475         }
476
477         /* Get a new command node */
478         cmd_node = mwifiex_get_cmd_node(adapter);
479
480         if (!cmd_node) {
481                 dev_err(adapter->dev, "PREP_CMD: no free cmd node\n");
482                 return -1;
483         }
484
485         /* Initialize the command node */
486         mwifiex_init_cmd_node(priv, cmd_node, cmd_oid, data_buf);
487
488         if (!cmd_node->cmd_skb) {
489                 dev_err(adapter->dev, "PREP_CMD: no free cmd buf\n");
490                 return -1;
491         }
492
493         memset(skb_put(cmd_node->cmd_skb, sizeof(struct host_cmd_ds_command)),
494                0, sizeof(struct host_cmd_ds_command));
495
496         cmd_ptr = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
497         cmd_ptr->command = cpu_to_le16(cmd_no);
498         cmd_ptr->result = 0;
499
500         /* Prepare command */
501         if (cmd_no) {
502                 ret = mwifiex_sta_prepare_cmd(priv, cmd_no, cmd_action,
503                                               cmd_oid, data_buf, cmd_ptr);
504         } else {
505                 ret = mwifiex_cmd_host_cmd(priv, cmd_ptr, data_buf);
506                 cmd_node->cmd_flag |= CMD_F_HOSTCMD;
507         }
508
509         /* Return error, since the command preparation failed */
510         if (ret) {
511                 dev_err(adapter->dev, "PREP_CMD: cmd %#x preparation failed\n",
512                                                         cmd_no);
513                 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
514                 return -1;
515         }
516
517         /* Send command */
518         if (cmd_no == HostCmd_CMD_802_11_SCAN) {
519                 mwifiex_queue_scan_cmd(priv, cmd_node);
520         } else {
521                 adapter->cmd_queued = cmd_node;
522                 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node, true);
523         }
524
525         return ret;
526 }
527
528 /*
529  * This function returns a command to the command free queue.
530  *
531  * The function also calls the completion callback if required, before
532  * cleaning the command node and re-inserting it into the free queue.
533  */
534 void
535 mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter,
536                              struct cmd_ctrl_node *cmd_node)
537 {
538         unsigned long flags;
539
540         if (!cmd_node)
541                 return;
542
543         if (cmd_node->wait_q_enabled)
544                 mwifiex_complete_cmd(adapter, cmd_node);
545         /* Clean the node */
546         mwifiex_clean_cmd_node(adapter, cmd_node);
547
548         /* Insert node into cmd_free_q */
549         spin_lock_irqsave(&adapter->cmd_free_q_lock, flags);
550         list_add_tail(&cmd_node->list, &adapter->cmd_free_q);
551         spin_unlock_irqrestore(&adapter->cmd_free_q_lock, flags);
552 }
553
554 /*
555  * This function queues a command to the command pending queue.
556  *
557  * This in effect adds the command to the command list to be executed.
558  * Exit PS command is handled specially, by placing it always to the
559  * front of the command queue.
560  */
561 void
562 mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
563                                 struct cmd_ctrl_node *cmd_node, u32 add_tail)
564 {
565         struct host_cmd_ds_command *host_cmd = NULL;
566         u16 command;
567         unsigned long flags;
568
569         host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
570         if (!host_cmd) {
571                 dev_err(adapter->dev, "QUEUE_CMD: host_cmd is NULL\n");
572                 return;
573         }
574
575         command = le16_to_cpu(host_cmd->command);
576
577         /* Exit_PS command needs to be queued in the header always. */
578         if (command == HostCmd_CMD_802_11_PS_MODE_ENH) {
579                 struct host_cmd_ds_802_11_ps_mode_enh *pm =
580                         &host_cmd->params.psmode_enh;
581                 if ((le16_to_cpu(pm->action) == DIS_PS)
582                     || (le16_to_cpu(pm->action) == DIS_AUTO_PS)) {
583                         if (adapter->ps_state != PS_STATE_AWAKE)
584                                 add_tail = false;
585                 }
586         }
587
588         spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
589         if (add_tail)
590                 list_add_tail(&cmd_node->list, &adapter->cmd_pending_q);
591         else
592                 list_add(&cmd_node->list, &adapter->cmd_pending_q);
593         spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
594
595         dev_dbg(adapter->dev, "cmd: QUEUE_CMD: cmd=%#x is queued\n", command);
596 }
597
598 /*
599  * This function executes the next command in command pending queue.
600  *
601  * This function will fail if a command is already in processing stage,
602  * otherwise it will dequeue the first command from the command pending
603  * queue and send to the firmware.
604  *
605  * If the device is currently in host sleep mode, any commands, except the
606  * host sleep configuration command will de-activate the host sleep. For PS
607  * mode, the function will put the firmware back to sleep if applicable.
608  */
609 int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter)
610 {
611         struct mwifiex_private *priv;
612         struct cmd_ctrl_node *cmd_node;
613         int ret = 0;
614         struct host_cmd_ds_command *host_cmd;
615         unsigned long cmd_flags;
616         unsigned long cmd_pending_q_flags;
617
618         /* Check if already in processing */
619         if (adapter->curr_cmd) {
620                 dev_err(adapter->dev, "EXEC_NEXT_CMD: cmd in processing\n");
621                 return -1;
622         }
623
624         spin_lock_irqsave(&adapter->mwifiex_cmd_lock, cmd_flags);
625         /* Check if any command is pending */
626         spin_lock_irqsave(&adapter->cmd_pending_q_lock, cmd_pending_q_flags);
627         if (list_empty(&adapter->cmd_pending_q)) {
628                 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock,
629                                        cmd_pending_q_flags);
630                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
631                 return 0;
632         }
633         cmd_node = list_first_entry(&adapter->cmd_pending_q,
634                                     struct cmd_ctrl_node, list);
635         spin_unlock_irqrestore(&adapter->cmd_pending_q_lock,
636                                cmd_pending_q_flags);
637
638         host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
639         priv = cmd_node->priv;
640
641         if (adapter->ps_state != PS_STATE_AWAKE) {
642                 dev_err(adapter->dev, "%s: cannot send cmd in sleep state,"
643                                 " this should not happen\n", __func__);
644                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
645                 return ret;
646         }
647
648         spin_lock_irqsave(&adapter->cmd_pending_q_lock, cmd_pending_q_flags);
649         list_del(&cmd_node->list);
650         spin_unlock_irqrestore(&adapter->cmd_pending_q_lock,
651                                cmd_pending_q_flags);
652
653         spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
654         ret = mwifiex_dnld_cmd_to_fw(priv, cmd_node);
655         priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
656         /* Any command sent to the firmware when host is in sleep
657          * mode should de-configure host sleep. We should skip the
658          * host sleep configuration command itself though
659          */
660         if (priv && (host_cmd->command !=
661              cpu_to_le16(HostCmd_CMD_802_11_HS_CFG_ENH))) {
662                 if (adapter->hs_activated) {
663                         adapter->is_hs_configured = false;
664                         mwifiex_hs_activated_event(priv, false);
665                 }
666         }
667
668         return ret;
669 }
670
671 /*
672  * This function handles the command response.
673  *
674  * After processing, the function cleans the command node and puts
675  * it back to the command free queue.
676  */
677 int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter)
678 {
679         struct host_cmd_ds_command *resp;
680         struct mwifiex_private *priv =
681                 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
682         int ret = 0;
683         uint16_t orig_cmdresp_no;
684         uint16_t cmdresp_no;
685         uint16_t cmdresp_result;
686         struct timeval tstamp;
687         unsigned long flags;
688
689         /* Now we got response from FW, cancel the command timer */
690         del_timer(&adapter->cmd_timer);
691
692         if (!adapter->curr_cmd || !adapter->curr_cmd->resp_skb) {
693                 resp = (struct host_cmd_ds_command *) adapter->upld_buf;
694                 dev_err(adapter->dev, "CMD_RESP: NULL curr_cmd, %#x\n",
695                        le16_to_cpu(resp->command));
696                 return -1;
697         }
698
699         adapter->num_cmd_timeout = 0;
700
701         resp = (struct host_cmd_ds_command *) adapter->curr_cmd->resp_skb->data;
702         if (adapter->curr_cmd->cmd_flag & CMD_F_CANCELED) {
703                 dev_err(adapter->dev, "CMD_RESP: %#x been canceled\n",
704                                 le16_to_cpu(resp->command));
705                 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
706                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
707                 adapter->curr_cmd = NULL;
708                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
709                 return -1;
710         }
711
712         if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) {
713                 /* Copy original response back to response buffer */
714                 struct mwifiex_ds_misc_cmd *hostcmd;
715                 uint16_t size = le16_to_cpu(resp->size);
716                 dev_dbg(adapter->dev, "info: host cmd resp size = %d\n", size);
717                 size = min_t(u16, size, MWIFIEX_SIZE_OF_CMD_BUFFER);
718                 if (adapter->curr_cmd->data_buf) {
719                         hostcmd = adapter->curr_cmd->data_buf;
720                         hostcmd->len = size;
721                         memcpy(hostcmd->cmd, resp, size);
722                 }
723         }
724         orig_cmdresp_no = le16_to_cpu(resp->command);
725
726         /* Get BSS number and corresponding priv */
727         priv = mwifiex_get_priv_by_id(adapter,
728                         HostCmd_GET_BSS_NO(le16_to_cpu(resp->seq_num)),
729                         HostCmd_GET_BSS_TYPE(le16_to_cpu(resp->seq_num)));
730         if (!priv)
731                 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
732         /* Clear RET_BIT from HostCmd */
733         resp->command = cpu_to_le16(orig_cmdresp_no & HostCmd_CMD_ID_MASK);
734
735         cmdresp_no = le16_to_cpu(resp->command);
736         cmdresp_result = le16_to_cpu(resp->result);
737
738         /* Save the last command response to debug log */
739         adapter->dbg.last_cmd_resp_index =
740                 (adapter->dbg.last_cmd_resp_index + 1) % DBG_CMD_NUM;
741         adapter->dbg.last_cmd_resp_id[adapter->dbg.last_cmd_resp_index] =
742                 orig_cmdresp_no;
743
744         do_gettimeofday(&tstamp);
745         dev_dbg(adapter->dev, "cmd: CMD_RESP: (%lu.%lu): 0x%x, result %d,"
746                 " len %d, seqno 0x%x\n",
747                tstamp.tv_sec, tstamp.tv_usec, orig_cmdresp_no, cmdresp_result,
748                le16_to_cpu(resp->size), le16_to_cpu(resp->seq_num));
749
750         if (!(orig_cmdresp_no & HostCmd_RET_BIT)) {
751                 dev_err(adapter->dev, "CMD_RESP: invalid cmd resp\n");
752                 if (adapter->curr_cmd->wait_q_enabled)
753                         adapter->cmd_wait_q.status = -1;
754
755                 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
756                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
757                 adapter->curr_cmd = NULL;
758                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
759                 return -1;
760         }
761
762         if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) {
763                 adapter->curr_cmd->cmd_flag &= ~CMD_F_HOSTCMD;
764                 if ((cmdresp_result == HostCmd_RESULT_OK)
765                     && (cmdresp_no == HostCmd_CMD_802_11_HS_CFG_ENH))
766                         ret = mwifiex_ret_802_11_hs_cfg(priv, resp);
767         } else {
768                 /* handle response */
769                 ret = mwifiex_process_sta_cmdresp(priv, cmdresp_no, resp);
770         }
771
772         /* Check init command response */
773         if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) {
774                 if (ret) {
775                         dev_err(adapter->dev, "%s: cmd %#x failed during "
776                                 "initialization\n", __func__, cmdresp_no);
777                         mwifiex_init_fw_complete(adapter);
778                         return -1;
779                 } else if (adapter->last_init_cmd == cmdresp_no)
780                         adapter->hw_status = MWIFIEX_HW_STATUS_INIT_DONE;
781         }
782
783         if (adapter->curr_cmd) {
784                 if (adapter->curr_cmd->wait_q_enabled)
785                         adapter->cmd_wait_q.status = ret;
786
787                 /* Clean up and put current command back to cmd_free_q */
788                 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
789
790                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
791                 adapter->curr_cmd = NULL;
792                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
793         }
794
795         return ret;
796 }
797
798 /*
799  * This function handles the timeout of command sending.
800  *
801  * It will re-send the same command again.
802  */
803 void
804 mwifiex_cmd_timeout_func(unsigned long function_context)
805 {
806         struct mwifiex_adapter *adapter =
807                 (struct mwifiex_adapter *) function_context;
808         struct cmd_ctrl_node *cmd_node;
809         struct timeval tstamp;
810
811         adapter->num_cmd_timeout++;
812         adapter->dbg.num_cmd_timeout++;
813         if (!adapter->curr_cmd) {
814                 dev_dbg(adapter->dev, "cmd: empty curr_cmd\n");
815                 return;
816         }
817         cmd_node = adapter->curr_cmd;
818         if (cmd_node->wait_q_enabled)
819                 adapter->cmd_wait_q.status = -ETIMEDOUT;
820
821         if (cmd_node) {
822                 adapter->dbg.timeout_cmd_id =
823                         adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index];
824                 adapter->dbg.timeout_cmd_act =
825                         adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index];
826                 do_gettimeofday(&tstamp);
827                 dev_err(adapter->dev, "%s: Timeout cmd id (%lu.%lu) = %#x,"
828                         " act = %#x\n", __func__,
829                        tstamp.tv_sec, tstamp.tv_usec,
830                        adapter->dbg.timeout_cmd_id,
831                        adapter->dbg.timeout_cmd_act);
832
833                 dev_err(adapter->dev, "num_data_h2c_failure = %d\n",
834                        adapter->dbg.num_tx_host_to_card_failure);
835                 dev_err(adapter->dev, "num_cmd_h2c_failure = %d\n",
836                        adapter->dbg.num_cmd_host_to_card_failure);
837
838                 dev_err(adapter->dev, "num_cmd_timeout = %d\n",
839                        adapter->dbg.num_cmd_timeout);
840                 dev_err(adapter->dev, "num_tx_timeout = %d\n",
841                        adapter->dbg.num_tx_timeout);
842
843                 dev_err(adapter->dev, "last_cmd_index = %d\n",
844                        adapter->dbg.last_cmd_index);
845                 print_hex_dump_bytes("last_cmd_id: ", DUMP_PREFIX_OFFSET,
846                                 adapter->dbg.last_cmd_id, DBG_CMD_NUM);
847                 print_hex_dump_bytes("last_cmd_act: ", DUMP_PREFIX_OFFSET,
848                                 adapter->dbg.last_cmd_act, DBG_CMD_NUM);
849
850                 dev_err(adapter->dev, "last_cmd_resp_index = %d\n",
851                        adapter->dbg.last_cmd_resp_index);
852                 print_hex_dump_bytes("last_cmd_resp_id: ", DUMP_PREFIX_OFFSET,
853                                 adapter->dbg.last_cmd_resp_id, DBG_CMD_NUM);
854
855                 dev_err(adapter->dev, "last_event_index = %d\n",
856                        adapter->dbg.last_event_index);
857                 print_hex_dump_bytes("last_event: ", DUMP_PREFIX_OFFSET,
858                                 adapter->dbg.last_event, DBG_CMD_NUM);
859
860                 dev_err(adapter->dev, "data_sent=%d cmd_sent=%d\n",
861                        adapter->data_sent, adapter->cmd_sent);
862
863                 dev_err(adapter->dev, "ps_mode=%d ps_state=%d\n",
864                                 adapter->ps_mode, adapter->ps_state);
865         }
866         if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING)
867                 mwifiex_init_fw_complete(adapter);
868 }
869
870 /*
871  * This function cancels all the pending commands.
872  *
873  * The current command, all commands in command pending queue and all scan
874  * commands in scan pending queue are cancelled. All the completion callbacks
875  * are called with failure status to ensure cleanup.
876  */
877 void
878 mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter)
879 {
880         struct cmd_ctrl_node *cmd_node = NULL, *tmp_node;
881         unsigned long flags;
882
883         /* Cancel current cmd */
884         if ((adapter->curr_cmd) && (adapter->curr_cmd->wait_q_enabled)) {
885                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
886                 adapter->curr_cmd->wait_q_enabled = false;
887                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
888                 adapter->cmd_wait_q.status = -1;
889                 mwifiex_complete_cmd(adapter, adapter->curr_cmd);
890         }
891         /* Cancel all pending command */
892         spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
893         list_for_each_entry_safe(cmd_node, tmp_node,
894                                  &adapter->cmd_pending_q, list) {
895                 list_del(&cmd_node->list);
896                 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
897
898                 if (cmd_node->wait_q_enabled) {
899                         adapter->cmd_wait_q.status = -1;
900                         mwifiex_complete_cmd(adapter, cmd_node);
901                         cmd_node->wait_q_enabled = false;
902                 }
903                 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
904                 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
905         }
906         spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
907
908         /* Cancel all pending scan command */
909         spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
910         list_for_each_entry_safe(cmd_node, tmp_node,
911                                  &adapter->scan_pending_q, list) {
912                 list_del(&cmd_node->list);
913                 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
914
915                 cmd_node->wait_q_enabled = false;
916                 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
917                 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
918         }
919         spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
920
921         spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
922         adapter->scan_processing = false;
923         spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
924 }
925
926 /*
927  * This function cancels all pending commands that matches with
928  * the given IOCTL request.
929  *
930  * Both the current command buffer and the pending command queue are
931  * searched for matching IOCTL request. The completion callback of
932  * the matched command is called with failure status to ensure cleanup.
933  * In case of scan commands, all pending commands in scan pending queue
934  * are cancelled.
935  */
936 void
937 mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter)
938 {
939         struct cmd_ctrl_node *cmd_node = NULL, *tmp_node = NULL;
940         unsigned long cmd_flags;
941         unsigned long scan_pending_q_flags;
942         uint16_t cancel_scan_cmd = false;
943
944         if ((adapter->curr_cmd) &&
945              (adapter->curr_cmd->wait_q_enabled)) {
946                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, cmd_flags);
947                 cmd_node = adapter->curr_cmd;
948                 cmd_node->wait_q_enabled = false;
949                 cmd_node->cmd_flag |= CMD_F_CANCELED;
950                 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
951                 mwifiex_complete_cmd(adapter, adapter->curr_cmd);
952                 adapter->curr_cmd = NULL;
953                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
954         }
955
956         /* Cancel all pending scan command */
957         spin_lock_irqsave(&adapter->scan_pending_q_lock,
958                           scan_pending_q_flags);
959         list_for_each_entry_safe(cmd_node, tmp_node,
960                                  &adapter->scan_pending_q, list) {
961                 list_del(&cmd_node->list);
962                 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
963                                        scan_pending_q_flags);
964                 cmd_node->wait_q_enabled = false;
965                 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
966                 spin_lock_irqsave(&adapter->scan_pending_q_lock,
967                                   scan_pending_q_flags);
968                 cancel_scan_cmd = true;
969         }
970         spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
971                                scan_pending_q_flags);
972
973         if (cancel_scan_cmd) {
974                 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, cmd_flags);
975                 adapter->scan_processing = false;
976                 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
977         }
978         adapter->cmd_wait_q.status = -1;
979 }
980
981 /*
982  * This function sends the sleep confirm command to firmware, if
983  * possible.
984  *
985  * The sleep confirm command cannot be issued if command response,
986  * data response or event response is awaiting handling, or if we
987  * are in the middle of sending a command, or expecting a command
988  * response.
989  */
990 void
991 mwifiex_check_ps_cond(struct mwifiex_adapter *adapter)
992 {
993         if (!adapter->cmd_sent &&
994             !adapter->curr_cmd && !IS_CARD_RX_RCVD(adapter))
995                 mwifiex_dnld_sleep_confirm_cmd(adapter);
996         else
997                 dev_dbg(adapter->dev,
998                         "cmd: Delay Sleep Confirm (%s%s%s)\n",
999                        (adapter->cmd_sent) ? "D" : "",
1000                        (adapter->curr_cmd) ? "C" : "",
1001                        (IS_CARD_RX_RCVD(adapter)) ? "R" : "");
1002 }
1003
1004 /*
1005  * This function sends a Host Sleep activated event to applications.
1006  *
1007  * This event is generated by the driver, with a blank event body.
1008  */
1009 void
1010 mwifiex_hs_activated_event(struct mwifiex_private *priv, u8 activated)
1011 {
1012         if (activated) {
1013                 if (priv->adapter->is_hs_configured) {
1014                         priv->adapter->hs_activated = true;
1015                         dev_dbg(priv->adapter->dev, "event: hs_activated\n");
1016                         priv->adapter->hs_activate_wait_q_woken = true;
1017                         wake_up_interruptible(
1018                                 &priv->adapter->hs_activate_wait_q);
1019                 } else {
1020                         dev_dbg(priv->adapter->dev, "event: HS not configured\n");
1021                 }
1022         } else {
1023                 dev_dbg(priv->adapter->dev, "event: hs_deactivated\n");
1024                 priv->adapter->hs_activated = false;
1025         }
1026 }
1027
1028 /*
1029  * This function handles the command response of a Host Sleep configuration
1030  * command.
1031  *
1032  * Handling includes changing the header fields into CPU format
1033  * and setting the current host sleep activation status in driver.
1034  *
1035  * In case host sleep status change, the function generates an event to
1036  * notify the applications.
1037  */
1038 int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv,
1039                               struct host_cmd_ds_command *resp)
1040 {
1041         struct mwifiex_adapter *adapter = priv->adapter;
1042         struct host_cmd_ds_802_11_hs_cfg_enh *phs_cfg =
1043                 &resp->params.opt_hs_cfg;
1044         uint32_t conditions = le32_to_cpu(phs_cfg->params.hs_config.conditions);
1045
1046         if (phs_cfg->action == cpu_to_le16(HS_ACTIVATE)) {
1047                 mwifiex_hs_activated_event(priv, true);
1048                 return 0;
1049         } else {
1050                 dev_dbg(adapter->dev, "cmd: CMD_RESP: HS_CFG cmd reply"
1051                         " result=%#x, conditions=0x%x gpio=0x%x gap=0x%x\n",
1052                         resp->result, conditions,
1053                        phs_cfg->params.hs_config.gpio,
1054                        phs_cfg->params.hs_config.gap);
1055         }
1056         if (conditions != HOST_SLEEP_CFG_CANCEL) {
1057                 adapter->is_hs_configured = true;
1058         } else {
1059                 adapter->is_hs_configured = false;
1060                 if (adapter->hs_activated)
1061                         mwifiex_hs_activated_event(priv, false);
1062         }
1063
1064         return 0;
1065 }
1066
1067 /*
1068  * This function wakes up the adapter and generates a Host Sleep
1069  * cancel event on receiving the power up interrupt.
1070  */
1071 void
1072 mwifiex_process_hs_config(struct mwifiex_adapter *adapter)
1073 {
1074         dev_dbg(adapter->dev, "info: %s: auto cancelling host sleep"
1075                 " since there is interrupt from the firmware\n", __func__);
1076
1077         adapter->if_ops.wakeup(adapter);
1078         adapter->hs_activated = false;
1079         adapter->is_hs_configured = false;
1080         mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
1081                                    MWIFIEX_BSS_ROLE_ANY), false);
1082 }
1083
1084 /*
1085  * This function handles the command response of a sleep confirm command.
1086  *
1087  * The function sets the card state to SLEEP if the response indicates success.
1088  */
1089 void
1090 mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *adapter,
1091                                    u8 *pbuf, u32 upld_len)
1092 {
1093         struct host_cmd_ds_command *cmd = (struct host_cmd_ds_command *) pbuf;
1094         struct mwifiex_private *priv =
1095                 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
1096         uint16_t result = le16_to_cpu(cmd->result);
1097         uint16_t command = le16_to_cpu(cmd->command);
1098         uint16_t seq_num = le16_to_cpu(cmd->seq_num);
1099
1100         if (!upld_len) {
1101                 dev_err(adapter->dev, "%s: cmd size is 0\n", __func__);
1102                 return;
1103         }
1104
1105         /* Get BSS number and corresponding priv */
1106         priv = mwifiex_get_priv_by_id(adapter, HostCmd_GET_BSS_NO(seq_num),
1107                                       HostCmd_GET_BSS_TYPE(seq_num));
1108         if (!priv)
1109                 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
1110
1111         /* Update sequence number */
1112         seq_num = HostCmd_GET_SEQ_NO(seq_num);
1113         /* Clear RET_BIT from HostCmd */
1114         command &= HostCmd_CMD_ID_MASK;
1115
1116         if (command != HostCmd_CMD_802_11_PS_MODE_ENH) {
1117                 dev_err(adapter->dev, "%s: received unexpected response for"
1118                         " cmd %x, result = %x\n", __func__, command, result);
1119                 return;
1120         }
1121
1122         if (result) {
1123                 dev_err(adapter->dev, "%s: sleep confirm cmd failed\n",
1124                                                 __func__);
1125                 adapter->pm_wakeup_card_req = false;
1126                 adapter->ps_state = PS_STATE_AWAKE;
1127                 return;
1128         }
1129         adapter->pm_wakeup_card_req = true;
1130         if (adapter->is_hs_configured)
1131                 mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
1132                                            MWIFIEX_BSS_ROLE_ANY), true);
1133         adapter->ps_state = PS_STATE_SLEEP;
1134         cmd->command = cpu_to_le16(command);
1135         cmd->seq_num = cpu_to_le16(seq_num);
1136 }
1137 EXPORT_SYMBOL_GPL(mwifiex_process_sleep_confirm_resp);
1138
1139 /*
1140  * This function prepares an enhanced power mode command.
1141  *
1142  * This function can be used to disable power save or to configure
1143  * power save with auto PS or STA PS or auto deep sleep.
1144  *
1145  * Preparation includes -
1146  *      - Setting command ID, action and proper size
1147  *      - Setting Power Save bitmap, PS parameters TLV, PS mode TLV,
1148  *        auto deep sleep TLV (as required)
1149  *      - Ensuring correct endian-ness
1150  */
1151 int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
1152                                struct host_cmd_ds_command *cmd,
1153                                u16 cmd_action, uint16_t ps_bitmap,
1154                                struct mwifiex_ds_auto_ds *auto_ds)
1155 {
1156         struct host_cmd_ds_802_11_ps_mode_enh *psmode_enh =
1157                 &cmd->params.psmode_enh;
1158         u8 *tlv;
1159         u16 cmd_size = 0;
1160
1161         cmd->command = cpu_to_le16(HostCmd_CMD_802_11_PS_MODE_ENH);
1162         if (cmd_action == DIS_AUTO_PS) {
1163                 psmode_enh->action = cpu_to_le16(DIS_AUTO_PS);
1164                 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap);
1165                 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) +
1166                                 sizeof(psmode_enh->params.ps_bitmap));
1167         } else if (cmd_action == GET_PS) {
1168                 psmode_enh->action = cpu_to_le16(GET_PS);
1169                 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap);
1170                 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) +
1171                                 sizeof(psmode_enh->params.ps_bitmap));
1172         } else if (cmd_action == EN_AUTO_PS) {
1173                 psmode_enh->action = cpu_to_le16(EN_AUTO_PS);
1174                 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap);
1175                 cmd_size = S_DS_GEN + sizeof(psmode_enh->action) +
1176                                 sizeof(psmode_enh->params.ps_bitmap);
1177                 tlv = (u8 *) cmd + cmd_size;
1178                 if (ps_bitmap & BITMAP_STA_PS) {
1179                         struct mwifiex_adapter *adapter = priv->adapter;
1180                         struct mwifiex_ie_types_ps_param *ps_tlv =
1181                                 (struct mwifiex_ie_types_ps_param *) tlv;
1182                         struct mwifiex_ps_param *ps_mode = &ps_tlv->param;
1183                         ps_tlv->header.type = cpu_to_le16(TLV_TYPE_PS_PARAM);
1184                         ps_tlv->header.len = cpu_to_le16(sizeof(*ps_tlv) -
1185                                         sizeof(struct mwifiex_ie_types_header));
1186                         cmd_size += sizeof(*ps_tlv);
1187                         tlv += sizeof(*ps_tlv);
1188                         dev_dbg(adapter->dev, "cmd: PS Command: Enter PS\n");
1189                         ps_mode->null_pkt_interval =
1190                                 cpu_to_le16(adapter->null_pkt_interval);
1191                         ps_mode->multiple_dtims =
1192                                 cpu_to_le16(adapter->multiple_dtim);
1193                         ps_mode->bcn_miss_timeout =
1194                                 cpu_to_le16(adapter->bcn_miss_time_out);
1195                         ps_mode->local_listen_interval =
1196                                 cpu_to_le16(adapter->local_listen_interval);
1197                         ps_mode->adhoc_wake_period =
1198                                 cpu_to_le16(adapter->adhoc_awake_period);
1199                         ps_mode->delay_to_ps =
1200                                 cpu_to_le16(adapter->delay_to_ps);
1201                         ps_mode->mode =
1202                                 cpu_to_le16(adapter->enhanced_ps_mode);
1203
1204                 }
1205                 if (ps_bitmap & BITMAP_AUTO_DS) {
1206                         struct mwifiex_ie_types_auto_ds_param *auto_ds_tlv =
1207                                 (struct mwifiex_ie_types_auto_ds_param *) tlv;
1208                         u16 idletime = 0;
1209
1210                         auto_ds_tlv->header.type =
1211                                 cpu_to_le16(TLV_TYPE_AUTO_DS_PARAM);
1212                         auto_ds_tlv->header.len =
1213                                 cpu_to_le16(sizeof(*auto_ds_tlv) -
1214                                         sizeof(struct mwifiex_ie_types_header));
1215                         cmd_size += sizeof(*auto_ds_tlv);
1216                         tlv += sizeof(*auto_ds_tlv);
1217                         if (auto_ds)
1218                                 idletime = auto_ds->idle_time;
1219                         dev_dbg(priv->adapter->dev,
1220                                         "cmd: PS Command: Enter Auto Deep Sleep\n");
1221                         auto_ds_tlv->deep_sleep_timeout = cpu_to_le16(idletime);
1222                 }
1223                 cmd->size = cpu_to_le16(cmd_size);
1224         }
1225         return 0;
1226 }
1227
1228 /*
1229  * This function handles the command response of an enhanced power mode
1230  * command.
1231  *
1232  * Handling includes changing the header fields into CPU format
1233  * and setting the current enhanced power mode in driver.
1234  */
1235 int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
1236                                struct host_cmd_ds_command *resp,
1237                                struct mwifiex_ds_pm_cfg *pm_cfg)
1238 {
1239         struct mwifiex_adapter *adapter = priv->adapter;
1240         struct host_cmd_ds_802_11_ps_mode_enh *ps_mode =
1241                 &resp->params.psmode_enh;
1242         uint16_t action = le16_to_cpu(ps_mode->action);
1243         uint16_t ps_bitmap = le16_to_cpu(ps_mode->params.ps_bitmap);
1244         uint16_t auto_ps_bitmap =
1245                 le16_to_cpu(ps_mode->params.ps_bitmap);
1246
1247         dev_dbg(adapter->dev, "info: %s: PS_MODE cmd reply result=%#x action=%#X\n",
1248                                         __func__, resp->result, action);
1249         if (action == EN_AUTO_PS) {
1250                 if (auto_ps_bitmap & BITMAP_AUTO_DS) {
1251                         dev_dbg(adapter->dev, "cmd: Enabled auto deep sleep\n");
1252                         priv->adapter->is_deep_sleep = true;
1253                 }
1254                 if (auto_ps_bitmap & BITMAP_STA_PS) {
1255                         dev_dbg(adapter->dev, "cmd: Enabled STA power save\n");
1256                         if (adapter->sleep_period.period)
1257                                 dev_dbg(adapter->dev, "cmd: set to uapsd/pps mode\n");
1258                 }
1259         } else if (action == DIS_AUTO_PS) {
1260                 if (ps_bitmap & BITMAP_AUTO_DS) {
1261                         priv->adapter->is_deep_sleep = false;
1262                         dev_dbg(adapter->dev, "cmd: Disabled auto deep sleep\n");
1263                 }
1264                 if (ps_bitmap & BITMAP_STA_PS) {
1265                         dev_dbg(adapter->dev, "cmd: Disabled STA power save\n");
1266                         if (adapter->sleep_period.period) {
1267                                 adapter->delay_null_pkt = false;
1268                                 adapter->tx_lock_flag = false;
1269                                 adapter->pps_uapsd_mode = false;
1270                         }
1271                 }
1272         } else if (action == GET_PS) {
1273                 if (ps_bitmap & BITMAP_STA_PS)
1274                         adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_PSP;
1275                 else
1276                         adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM;
1277
1278                 dev_dbg(adapter->dev, "cmd: ps_bitmap=%#x\n", ps_bitmap);
1279
1280                 if (pm_cfg) {
1281                         /* This section is for get power save mode */
1282                         if (ps_bitmap & BITMAP_STA_PS)
1283                                 pm_cfg->param.ps_mode = 1;
1284                         else
1285                                 pm_cfg->param.ps_mode = 0;
1286                 }
1287         }
1288         return 0;
1289 }
1290
1291 /*
1292  * This function prepares command to get hardware specifications.
1293  *
1294  * Preparation includes -
1295  *      - Setting command ID, action and proper size
1296  *      - Setting permanent address parameter
1297  *      - Ensuring correct endian-ness
1298  */
1299 int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv,
1300                             struct host_cmd_ds_command *cmd)
1301 {
1302         struct host_cmd_ds_get_hw_spec *hw_spec = &cmd->params.hw_spec;
1303
1304         cmd->command = cpu_to_le16(HostCmd_CMD_GET_HW_SPEC);
1305         cmd->size =
1306                 cpu_to_le16(sizeof(struct host_cmd_ds_get_hw_spec) + S_DS_GEN);
1307         memcpy(hw_spec->permanent_addr, priv->curr_addr, ETH_ALEN);
1308
1309         return 0;
1310 }
1311
1312 /*
1313  * This function handles the command response of get hardware
1314  * specifications.
1315  *
1316  * Handling includes changing the header fields into CPU format
1317  * and saving/updating the following parameters in driver -
1318  *      - Firmware capability information
1319  *      - Firmware band settings
1320  *      - Ad-hoc start band and channel
1321  *      - Ad-hoc 11n activation status
1322  *      - Firmware release number
1323  *      - Number of antennas
1324  *      - Hardware address
1325  *      - Hardware interface version
1326  *      - Firmware version
1327  *      - Region code
1328  *      - 11n capabilities
1329  *      - MCS support fields
1330  *      - MP end port
1331  */
1332 int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
1333                             struct host_cmd_ds_command *resp)
1334 {
1335         struct host_cmd_ds_get_hw_spec *hw_spec = &resp->params.hw_spec;
1336         struct mwifiex_adapter *adapter = priv->adapter;
1337         int i;
1338
1339         adapter->fw_cap_info = le32_to_cpu(hw_spec->fw_cap_info);
1340
1341         if (IS_SUPPORT_MULTI_BANDS(adapter))
1342                 adapter->fw_bands = (u8) GET_FW_DEFAULT_BANDS(adapter);
1343         else
1344                 adapter->fw_bands = BAND_B;
1345
1346         adapter->config_bands = adapter->fw_bands;
1347
1348         if (adapter->fw_bands & BAND_A) {
1349                 if (adapter->fw_bands & BAND_GN) {
1350                         adapter->config_bands |= BAND_AN;
1351                         adapter->fw_bands |= BAND_AN;
1352                 }
1353                 if (adapter->fw_bands & BAND_AN) {
1354                         adapter->adhoc_start_band = BAND_A | BAND_AN;
1355                         adapter->adhoc_11n_enabled = true;
1356                 } else {
1357                         adapter->adhoc_start_band = BAND_A;
1358                 }
1359                 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL_A;
1360         } else if (adapter->fw_bands & BAND_GN) {
1361                 adapter->adhoc_start_band = BAND_G | BAND_B | BAND_GN;
1362                 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
1363                 adapter->adhoc_11n_enabled = true;
1364         } else if (adapter->fw_bands & BAND_G) {
1365                 adapter->adhoc_start_band = BAND_G | BAND_B;
1366                 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
1367         } else if (adapter->fw_bands & BAND_B) {
1368                 adapter->adhoc_start_band = BAND_B;
1369                 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
1370         }
1371
1372         adapter->fw_release_number = le32_to_cpu(hw_spec->fw_release_number);
1373         adapter->number_of_antenna = le16_to_cpu(hw_spec->number_of_antenna);
1374
1375         dev_dbg(adapter->dev, "info: GET_HW_SPEC: fw_release_number- %#x\n",
1376                adapter->fw_release_number);
1377         dev_dbg(adapter->dev, "info: GET_HW_SPEC: permanent addr: %pM\n",
1378                                         hw_spec->permanent_addr);
1379         dev_dbg(adapter->dev, "info: GET_HW_SPEC: hw_if_version=%#x  version=%#x\n",
1380                 le16_to_cpu(hw_spec->hw_if_version),
1381                le16_to_cpu(hw_spec->version));
1382
1383         if (priv->curr_addr[0] == 0xff)
1384                 memmove(priv->curr_addr, hw_spec->permanent_addr, ETH_ALEN);
1385
1386         adapter->region_code = le16_to_cpu(hw_spec->region_code);
1387
1388         for (i = 0; i < MWIFIEX_MAX_REGION_CODE; i++)
1389                 /* Use the region code to search for the index */
1390                 if (adapter->region_code == region_code_index[i])
1391                         break;
1392
1393         /* If it's unidentified region code, use the default (USA) */
1394         if (i >= MWIFIEX_MAX_REGION_CODE) {
1395                 adapter->region_code = 0x10;
1396                 dev_dbg(adapter->dev, "cmd: unknown region code, use default (USA)\n");
1397         }
1398
1399         adapter->hw_dot_11n_dev_cap = le32_to_cpu(hw_spec->dot_11n_dev_cap);
1400         adapter->hw_dev_mcs_support = hw_spec->dev_mcs_support;
1401
1402         if (adapter->if_ops.update_mp_end_port)
1403                 adapter->if_ops.update_mp_end_port(adapter,
1404                                         le16_to_cpu(hw_spec->mp_end_port));
1405
1406         return 0;
1407 }