blob: c9528b3e9e9a0eb48e46528eca3db0506c4f2991 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
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 */
36static void
37mwifiex_init_cmd_node(struct mwifiex_private *priv,
38 struct cmd_ctrl_node *cmd_node,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -070039 u32 cmd_oid, void *data_buf)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070040{
41 cmd_node->priv = priv;
42 cmd_node->cmd_oid = cmd_oid;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -070043 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 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -070049 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 */
57static struct cmd_ctrl_node *
58mwifiex_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,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -070070 struct cmd_ctrl_node, list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -070071 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 */
88static void
89mwifiex_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;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070094 cmd_node->data_buf = NULL;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -070095 cmd_node->wait_q_enabled = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070096
Amitkumar Karwar5cf80992011-09-21 21:43:25 -070097 if (cmd_node->cmd_skb)
98 skb_trim(cmd_node->cmd_skb, 0);
99
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700100 if (cmd_node->resp_skb) {
Amitkumar Karward930fae2011-10-11 17:41:21 -0700101 adapter->if_ops.cmdrsp_complete(adapter, cmd_node->resp_skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700102 cmd_node->resp_skb = NULL;
103 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700104}
105
106/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700107 * 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 */
113static int mwifiex_cmd_host_cmd(struct mwifiex_private *priv,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700114 struct host_cmd_ds_command *cmd,
115 struct mwifiex_ds_misc_cmd *pcmd_ptr)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700116{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700117 /* Copy the HOST command to command buffer */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700118 memcpy(cmd, pcmd_ptr->cmd, pcmd_ptr->len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700119 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 */
131static 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;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700136 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700137 struct host_cmd_ds_command *host_cmd;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700138 uint16_t cmd_code;
139 uint16_t cmd_size;
140 struct timeval tstamp;
141 unsigned long flags;
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700142 __le32 tmp;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700143
144 if (!adapter || !cmd_node)
145 return -1;
146
147 host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700148
149 /* Sanity test */
150 if (host_cmd == NULL || host_cmd->size == 0) {
151 dev_err(adapter->dev, "DNLD_CMD: host_cmd is null"
152 " or cmd size is 0, not sending\n");
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700153 if (cmd_node->wait_q_enabled)
154 adapter->cmd_wait_q.status = -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700155 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
156 return -1;
157 }
158
159 /* Set command sequence number */
160 adapter->seq_num++;
161 host_cmd->seq_num = cpu_to_le16(HostCmd_SET_SEQ_NO_BSS_INFO
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700162 (adapter->seq_num,
163 cmd_node->priv->bss_num,
164 cmd_node->priv->bss_type));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700165
166 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
167 adapter->curr_cmd = cmd_node;
168 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
169
170 cmd_code = le16_to_cpu(host_cmd->command);
171 cmd_size = le16_to_cpu(host_cmd->size);
172
Stone Piaoda251862012-08-22 20:26:31 -0700173 /* Adjust skb length */
174 if (cmd_node->cmd_skb->len > cmd_size)
175 /*
176 * cmd_size is less than sizeof(struct host_cmd_ds_command).
177 * Trim off the unused portion.
178 */
179 skb_trim(cmd_node->cmd_skb, cmd_size);
180 else if (cmd_node->cmd_skb->len < cmd_size)
181 /*
182 * cmd_size is larger than sizeof(struct host_cmd_ds_command)
183 * because we have appended custom IE TLV. Increase skb length
184 * accordingly.
185 */
186 skb_put(cmd_node->cmd_skb, cmd_size - cmd_node->cmd_skb->len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700187
188 do_gettimeofday(&tstamp);
189 dev_dbg(adapter->dev, "cmd: DNLD_CMD: (%lu.%lu): %#x, act %#x, len %d,"
190 " seqno %#x\n",
191 tstamp.tv_sec, tstamp.tv_usec, cmd_code,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700192 le16_to_cpu(*(__le16 *) ((u8 *) host_cmd + S_DS_GEN)), cmd_size,
193 le16_to_cpu(host_cmd->seq_num));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700194
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700195 if (adapter->iface_type == MWIFIEX_USB) {
196 tmp = cpu_to_le32(MWIFIEX_USB_TYPE_CMD);
197 skb_push(cmd_node->cmd_skb, MWIFIEX_TYPE_LEN);
198 memcpy(cmd_node->cmd_skb->data, &tmp, MWIFIEX_TYPE_LEN);
199 adapter->cmd_sent = true;
200 ret = adapter->if_ops.host_to_card(adapter,
201 MWIFIEX_USB_EP_CMD_EVENT,
202 cmd_node->cmd_skb, NULL);
203 skb_pull(cmd_node->cmd_skb, MWIFIEX_TYPE_LEN);
204 if (ret == -EBUSY)
205 cmd_node->cmd_skb = NULL;
206 } else {
207 skb_push(cmd_node->cmd_skb, INTF_HEADER_LEN);
208 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD,
209 cmd_node->cmd_skb, NULL);
210 skb_pull(cmd_node->cmd_skb, INTF_HEADER_LEN);
211 }
Bing Zhao18bf9652011-04-06 16:46:55 -0700212
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700213 if (ret == -1) {
214 dev_err(adapter->dev, "DNLD_CMD: host to card failed\n");
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700215 if (adapter->iface_type == MWIFIEX_USB)
216 adapter->cmd_sent = false;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700217 if (cmd_node->wait_q_enabled)
218 adapter->cmd_wait_q.status = -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700219 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
220
221 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
222 adapter->curr_cmd = NULL;
223 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
224
225 adapter->dbg.num_cmd_host_to_card_failure++;
226 return -1;
227 }
228
229 /* Save the last command id and action to debug log */
230 adapter->dbg.last_cmd_index =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700231 (adapter->dbg.last_cmd_index + 1) % DBG_CMD_NUM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700232 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index] = cmd_code;
233 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index] =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700234 le16_to_cpu(*(__le16 *) ((u8 *) host_cmd + S_DS_GEN));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700235
236 /* Clear BSS_NO_BITS from HostCmd */
237 cmd_code &= HostCmd_CMD_ID_MASK;
238
239 /* Setup the timer after transmit command */
240 mod_timer(&adapter->cmd_timer,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700241 jiffies + (MWIFIEX_TIMER_10S * HZ) / 1000);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700242
243 return 0;
244}
245
246/*
247 * This function downloads a sleep confirm command to the firmware.
248 *
249 * The function performs sanity tests, sets the command sequence
250 * number and size, converts the header fields to CPU format before
251 * sending.
252 *
253 * No responses are needed for sleep confirm command.
254 */
255static int mwifiex_dnld_sleep_confirm_cmd(struct mwifiex_adapter *adapter)
256{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700257 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700258 struct mwifiex_private *priv;
Amitkumar Karwar7cc5eb62011-05-09 19:00:18 -0700259 struct mwifiex_opt_sleep_confirm *sleep_cfm_buf =
260 (struct mwifiex_opt_sleep_confirm *)
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700261 adapter->sleep_cfm->data;
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700262 struct sk_buff *sleep_cfm_tmp;
263 __le32 tmp;
264
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700265 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
266
Amitkumar Karwar7cc5eb62011-05-09 19:00:18 -0700267 sleep_cfm_buf->seq_num =
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700268 cpu_to_le16((HostCmd_SET_SEQ_NO_BSS_INFO
269 (adapter->seq_num, priv->bss_num,
270 priv->bss_type)));
271 adapter->seq_num++;
272
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700273 if (adapter->iface_type == MWIFIEX_USB) {
274 sleep_cfm_tmp =
275 dev_alloc_skb(sizeof(struct mwifiex_opt_sleep_confirm)
276 + MWIFIEX_TYPE_LEN);
277 skb_put(sleep_cfm_tmp, sizeof(struct mwifiex_opt_sleep_confirm)
278 + MWIFIEX_TYPE_LEN);
279 tmp = cpu_to_le32(MWIFIEX_USB_TYPE_CMD);
280 memcpy(sleep_cfm_tmp->data, &tmp, MWIFIEX_TYPE_LEN);
281 memcpy(sleep_cfm_tmp->data + MWIFIEX_TYPE_LEN,
282 adapter->sleep_cfm->data,
283 sizeof(struct mwifiex_opt_sleep_confirm));
284 ret = adapter->if_ops.host_to_card(adapter,
285 MWIFIEX_USB_EP_CMD_EVENT,
286 sleep_cfm_tmp, NULL);
287 if (ret != -EBUSY)
288 dev_kfree_skb_any(sleep_cfm_tmp);
289 } else {
290 skb_push(adapter->sleep_cfm, INTF_HEADER_LEN);
291 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_CMD,
292 adapter->sleep_cfm, NULL);
293 skb_pull(adapter->sleep_cfm, INTF_HEADER_LEN);
294 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700295
296 if (ret == -1) {
297 dev_err(adapter->dev, "SLEEP_CFM: failed\n");
298 adapter->dbg.num_cmd_sleep_cfm_host_to_card_failure++;
299 return -1;
300 }
301 if (GET_BSS_ROLE(mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY))
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700302 == MWIFIEX_BSS_ROLE_STA) {
Amitkumar Karwar7cc5eb62011-05-09 19:00:18 -0700303 if (!sleep_cfm_buf->resp_ctrl)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700304 /* Response is not needed for sleep
305 confirm command */
306 adapter->ps_state = PS_STATE_SLEEP;
307 else
308 adapter->ps_state = PS_STATE_SLEEP_CFM;
309
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700310 if (!sleep_cfm_buf->resp_ctrl &&
311 (adapter->is_hs_configured &&
312 !adapter->sleep_period.period)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700313 adapter->pm_wakeup_card_req = true;
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700314 mwifiex_hs_activated_event(mwifiex_get_priv
315 (adapter, MWIFIEX_BSS_ROLE_STA), true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700316 }
317 }
318
319 return ret;
320}
321
322/*
323 * This function allocates the command buffers and links them to
324 * the command free queue.
325 *
326 * The driver uses a pre allocated number of command buffers, which
327 * are created at driver initializations and freed at driver cleanup.
328 * Every command needs to obtain a command buffer from this pool before
329 * it can be issued. The command free queue lists the command buffers
330 * currently free to use, while the command pending queue lists the
331 * command buffers already in use and awaiting handling. Command buffers
332 * are returned to the free queue after use.
333 */
334int mwifiex_alloc_cmd_buffer(struct mwifiex_adapter *adapter)
335{
336 struct cmd_ctrl_node *cmd_array;
337 u32 buf_size;
338 u32 i;
339
340 /* Allocate and initialize struct cmd_ctrl_node */
341 buf_size = sizeof(struct cmd_ctrl_node) * MWIFIEX_NUM_OF_CMD_BUFFER;
342 cmd_array = kzalloc(buf_size, GFP_KERNEL);
343 if (!cmd_array) {
344 dev_err(adapter->dev, "%s: failed to alloc cmd_array\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700345 __func__);
Christoph Fritzb53575e2011-05-08 22:50:09 +0200346 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700347 }
348
349 adapter->cmd_pool = cmd_array;
350 memset(adapter->cmd_pool, 0, buf_size);
351
352 /* Allocate and initialize command buffers */
353 for (i = 0; i < MWIFIEX_NUM_OF_CMD_BUFFER; i++) {
354 cmd_array[i].skb = dev_alloc_skb(MWIFIEX_SIZE_OF_CMD_BUFFER);
355 if (!cmd_array[i].skb) {
356 dev_err(adapter->dev, "ALLOC_CMD_BUF: out of memory\n");
357 return -1;
358 }
359 }
360
361 for (i = 0; i < MWIFIEX_NUM_OF_CMD_BUFFER; i++)
362 mwifiex_insert_cmd_to_free_q(adapter, &cmd_array[i]);
363
364 return 0;
365}
366
367/*
368 * This function frees the command buffers.
369 *
370 * The function calls the completion callback for all the command
371 * buffers that still have response buffers associated with them.
372 */
373int mwifiex_free_cmd_buffer(struct mwifiex_adapter *adapter)
374{
375 struct cmd_ctrl_node *cmd_array;
376 u32 i;
377
378 /* Need to check if cmd pool is allocated or not */
379 if (!adapter->cmd_pool) {
380 dev_dbg(adapter->dev, "info: FREE_CMD_BUF: cmd_pool is null\n");
381 return 0;
382 }
383
384 cmd_array = adapter->cmd_pool;
385
386 /* Release shared memory buffers */
387 for (i = 0; i < MWIFIEX_NUM_OF_CMD_BUFFER; i++) {
388 if (cmd_array[i].skb) {
389 dev_dbg(adapter->dev, "cmd: free cmd buffer %d\n", i);
390 dev_kfree_skb_any(cmd_array[i].skb);
391 }
392 if (!cmd_array[i].resp_skb)
393 continue;
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700394
395 if (adapter->iface_type == MWIFIEX_USB)
396 adapter->if_ops.cmdrsp_complete(adapter,
397 cmd_array[i].resp_skb);
398 else
399 dev_kfree_skb_any(cmd_array[i].resp_skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700400 }
401 /* Release struct cmd_ctrl_node */
402 if (adapter->cmd_pool) {
403 dev_dbg(adapter->dev, "cmd: free cmd pool\n");
404 kfree(adapter->cmd_pool);
405 adapter->cmd_pool = NULL;
406 }
407
408 return 0;
409}
410
411/*
412 * This function handles events generated by firmware.
413 *
414 * Event body of events received from firmware are not used (though they are
415 * saved), only the event ID is used. Some events are re-invoked by
416 * the driver, with a new event body.
417 *
418 * After processing, the function calls the completion callback
419 * for cleanup.
420 */
421int mwifiex_process_event(struct mwifiex_adapter *adapter)
422{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700423 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700424 struct mwifiex_private *priv =
425 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
426 struct sk_buff *skb = adapter->event_skb;
427 u32 eventcause = adapter->event_cause;
428 struct timeval tstamp;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700429 struct mwifiex_rxinfo *rx_info;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700430
431 /* Save the last event to debug log */
432 adapter->dbg.last_event_index =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700433 (adapter->dbg.last_event_index + 1) % DBG_CMD_NUM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700434 adapter->dbg.last_event[adapter->dbg.last_event_index] =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700435 (u16) eventcause;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700436
437 /* Get BSS number and corresponding priv */
438 priv = mwifiex_get_priv_by_id(adapter, EVENT_GET_BSS_NUM(eventcause),
439 EVENT_GET_BSS_TYPE(eventcause));
440 if (!priv)
441 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
442 /* Clear BSS_NO_BITS from event */
443 eventcause &= EVENT_ID_MASK;
444 adapter->event_cause = eventcause;
445
446 if (skb) {
447 rx_info = MWIFIEX_SKB_RXCB(skb);
Yogesh Ashok Powar9da9a3b2012-01-11 20:06:11 -0800448 rx_info->bss_num = priv->bss_num;
449 rx_info->bss_type = priv->bss_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700450 }
451
452 if (eventcause != EVENT_PS_SLEEP && eventcause != EVENT_PS_AWAKE) {
453 do_gettimeofday(&tstamp);
454 dev_dbg(adapter->dev, "event: %lu.%lu: cause: %#x\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700455 tstamp.tv_sec, tstamp.tv_usec, eventcause);
Avinash Patil03785382012-05-08 18:30:14 -0700456 } else {
457 /* Handle PS_SLEEP/AWAKE events on STA */
458 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_STA);
459 if (!priv)
460 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700461 }
462
Avinash Patil3d99d982012-08-03 18:06:06 -0700463 if (priv->bss_role == MWIFIEX_BSS_ROLE_UAP)
464 ret = mwifiex_process_uap_event(priv);
465 else
466 ret = mwifiex_process_sta_event(priv);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700467
468 adapter->event_cause = 0;
469 adapter->event_skb = NULL;
Amitkumar Karward930fae2011-10-11 17:41:21 -0700470 adapter->if_ops.event_complete(adapter, skb);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700471
472 return ret;
473}
474
475/*
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700476 * This function is used to send synchronous command to the firmware.
477 *
478 * it allocates a wait queue for the command and wait for the command
479 * response.
480 */
481int mwifiex_send_cmd_sync(struct mwifiex_private *priv, uint16_t cmd_no,
482 u16 cmd_action, u32 cmd_oid, void *data_buf)
483{
484 int ret = 0;
485 struct mwifiex_adapter *adapter = priv->adapter;
486
487 adapter->cmd_wait_q_required = true;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700488
489 ret = mwifiex_send_cmd_async(priv, cmd_no, cmd_action, cmd_oid,
490 data_buf);
491 if (!ret)
492 ret = mwifiex_wait_queue_complete(adapter);
493
494 return ret;
495}
496
497
498/*
499 * This function prepares a command and asynchronously send it to the firmware.
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700500 *
501 * Preparation includes -
502 * - Sanity tests to make sure the card is still present or the FW
503 * is not reset
504 * - Getting a new command node from the command free queue
505 * - Initializing the command node for default parameters
506 * - Fill up the non-default parameters and buffer pointers
507 * - Add the command to pending queue
508 */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700509int mwifiex_send_cmd_async(struct mwifiex_private *priv, uint16_t cmd_no,
510 u16 cmd_action, u32 cmd_oid, void *data_buf)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700511{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700512 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700513 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700514 struct cmd_ctrl_node *cmd_node;
515 struct host_cmd_ds_command *cmd_ptr;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700516
517 if (!adapter) {
518 pr_err("PREP_CMD: adapter is NULL\n");
519 return -1;
520 }
521
522 if (adapter->is_suspended) {
523 dev_err(adapter->dev, "PREP_CMD: device in suspended state\n");
524 return -1;
525 }
526
527 if (adapter->surprise_removed) {
528 dev_err(adapter->dev, "PREP_CMD: card is removed\n");
529 return -1;
530 }
531
532 if (adapter->hw_status == MWIFIEX_HW_STATUS_RESET) {
533 if (cmd_no != HostCmd_CMD_FUNC_INIT) {
534 dev_err(adapter->dev, "PREP_CMD: FW in reset state\n");
535 return -1;
536 }
537 }
538
539 /* Get a new command node */
540 cmd_node = mwifiex_get_cmd_node(adapter);
541
542 if (!cmd_node) {
543 dev_err(adapter->dev, "PREP_CMD: no free cmd node\n");
544 return -1;
545 }
546
547 /* Initialize the command node */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700548 mwifiex_init_cmd_node(priv, cmd_node, cmd_oid, data_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700549
550 if (!cmd_node->cmd_skb) {
551 dev_err(adapter->dev, "PREP_CMD: no free cmd buf\n");
552 return -1;
553 }
554
555 memset(skb_put(cmd_node->cmd_skb, sizeof(struct host_cmd_ds_command)),
556 0, sizeof(struct host_cmd_ds_command));
557
558 cmd_ptr = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
559 cmd_ptr->command = cpu_to_le16(cmd_no);
560 cmd_ptr->result = 0;
561
562 /* Prepare command */
563 if (cmd_no) {
Avinash Patil40d07032012-05-08 18:30:19 -0700564 switch (cmd_no) {
565 case HostCmd_CMD_UAP_SYS_CONFIG:
566 case HostCmd_CMD_UAP_BSS_START:
567 case HostCmd_CMD_UAP_BSS_STOP:
568 ret = mwifiex_uap_prepare_cmd(priv, cmd_no, cmd_action,
569 cmd_oid, data_buf,
570 cmd_ptr);
571 break;
572 default:
573 ret = mwifiex_sta_prepare_cmd(priv, cmd_no, cmd_action,
574 cmd_oid, data_buf,
575 cmd_ptr);
576 break;
577 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700578 } else {
579 ret = mwifiex_cmd_host_cmd(priv, cmd_ptr, data_buf);
580 cmd_node->cmd_flag |= CMD_F_HOSTCMD;
581 }
582
583 /* Return error, since the command preparation failed */
584 if (ret) {
585 dev_err(adapter->dev, "PREP_CMD: cmd %#x preparation failed\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700586 cmd_no);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700587 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
588 return -1;
589 }
590
591 /* Send command */
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700592 if (cmd_no == HostCmd_CMD_802_11_SCAN) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700593 mwifiex_queue_scan_cmd(priv, cmd_node);
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700594 } else {
595 adapter->cmd_queued = cmd_node;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700596 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node, true);
Amitkumar Karwar1a1fb972012-06-27 19:57:56 -0700597 queue_work(adapter->workqueue, &adapter->main_work);
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700598 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700599
600 return ret;
601}
602
603/*
604 * This function returns a command to the command free queue.
605 *
606 * The function also calls the completion callback if required, before
607 * cleaning the command node and re-inserting it into the free queue.
608 */
609void
610mwifiex_insert_cmd_to_free_q(struct mwifiex_adapter *adapter,
611 struct cmd_ctrl_node *cmd_node)
612{
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700613 unsigned long flags;
614
Yogesh Ashok Powar19a89862011-04-13 17:27:07 -0700615 if (!cmd_node)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700616 return;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700617
618 if (cmd_node->wait_q_enabled)
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700619 mwifiex_complete_cmd(adapter, cmd_node);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700620 /* Clean the node */
621 mwifiex_clean_cmd_node(adapter, cmd_node);
622
623 /* Insert node into cmd_free_q */
624 spin_lock_irqsave(&adapter->cmd_free_q_lock, flags);
625 list_add_tail(&cmd_node->list, &adapter->cmd_free_q);
626 spin_unlock_irqrestore(&adapter->cmd_free_q_lock, flags);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700627}
628
629/*
630 * This function queues a command to the command pending queue.
631 *
632 * This in effect adds the command to the command list to be executed.
633 * Exit PS command is handled specially, by placing it always to the
634 * front of the command queue.
635 */
636void
637mwifiex_insert_cmd_to_pending_q(struct mwifiex_adapter *adapter,
638 struct cmd_ctrl_node *cmd_node, u32 add_tail)
639{
640 struct host_cmd_ds_command *host_cmd = NULL;
641 u16 command;
642 unsigned long flags;
643
644 host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
645 if (!host_cmd) {
646 dev_err(adapter->dev, "QUEUE_CMD: host_cmd is NULL\n");
647 return;
648 }
649
650 command = le16_to_cpu(host_cmd->command);
651
652 /* Exit_PS command needs to be queued in the header always. */
653 if (command == HostCmd_CMD_802_11_PS_MODE_ENH) {
654 struct host_cmd_ds_802_11_ps_mode_enh *pm =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700655 &host_cmd->params.psmode_enh;
656 if ((le16_to_cpu(pm->action) == DIS_PS) ||
657 (le16_to_cpu(pm->action) == DIS_AUTO_PS)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700658 if (adapter->ps_state != PS_STATE_AWAKE)
659 add_tail = false;
660 }
661 }
662
663 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
664 if (add_tail)
665 list_add_tail(&cmd_node->list, &adapter->cmd_pending_q);
666 else
667 list_add(&cmd_node->list, &adapter->cmd_pending_q);
668 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
669
670 dev_dbg(adapter->dev, "cmd: QUEUE_CMD: cmd=%#x is queued\n", command);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700671}
672
673/*
674 * This function executes the next command in command pending queue.
675 *
676 * This function will fail if a command is already in processing stage,
677 * otherwise it will dequeue the first command from the command pending
678 * queue and send to the firmware.
679 *
680 * If the device is currently in host sleep mode, any commands, except the
681 * host sleep configuration command will de-activate the host sleep. For PS
682 * mode, the function will put the firmware back to sleep if applicable.
683 */
684int mwifiex_exec_next_cmd(struct mwifiex_adapter *adapter)
685{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700686 struct mwifiex_private *priv;
687 struct cmd_ctrl_node *cmd_node;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700688 int ret = 0;
689 struct host_cmd_ds_command *host_cmd;
690 unsigned long cmd_flags;
691 unsigned long cmd_pending_q_flags;
692
693 /* Check if already in processing */
694 if (adapter->curr_cmd) {
695 dev_err(adapter->dev, "EXEC_NEXT_CMD: cmd in processing\n");
696 return -1;
697 }
698
699 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, cmd_flags);
700 /* Check if any command is pending */
701 spin_lock_irqsave(&adapter->cmd_pending_q_lock, cmd_pending_q_flags);
702 if (list_empty(&adapter->cmd_pending_q)) {
703 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock,
704 cmd_pending_q_flags);
705 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
706 return 0;
707 }
708 cmd_node = list_first_entry(&adapter->cmd_pending_q,
709 struct cmd_ctrl_node, list);
710 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock,
711 cmd_pending_q_flags);
712
713 host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
714 priv = cmd_node->priv;
715
716 if (adapter->ps_state != PS_STATE_AWAKE) {
717 dev_err(adapter->dev, "%s: cannot send cmd in sleep state,"
718 " this should not happen\n", __func__);
719 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
720 return ret;
721 }
722
723 spin_lock_irqsave(&adapter->cmd_pending_q_lock, cmd_pending_q_flags);
724 list_del(&cmd_node->list);
725 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock,
726 cmd_pending_q_flags);
727
728 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
729 ret = mwifiex_dnld_cmd_to_fw(priv, cmd_node);
730 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
731 /* Any command sent to the firmware when host is in sleep
732 * mode should de-configure host sleep. We should skip the
733 * host sleep configuration command itself though
734 */
735 if (priv && (host_cmd->command !=
736 cpu_to_le16(HostCmd_CMD_802_11_HS_CFG_ENH))) {
737 if (adapter->hs_activated) {
738 adapter->is_hs_configured = false;
739 mwifiex_hs_activated_event(priv, false);
740 }
741 }
742
743 return ret;
744}
745
746/*
747 * This function handles the command response.
748 *
749 * After processing, the function cleans the command node and puts
750 * it back to the command free queue.
751 */
752int mwifiex_process_cmdresp(struct mwifiex_adapter *adapter)
753{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700754 struct host_cmd_ds_command *resp;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700755 struct mwifiex_private *priv =
756 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
757 int ret = 0;
758 uint16_t orig_cmdresp_no;
759 uint16_t cmdresp_no;
760 uint16_t cmdresp_result;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700761 struct timeval tstamp;
762 unsigned long flags;
763
764 /* Now we got response from FW, cancel the command timer */
765 del_timer(&adapter->cmd_timer);
766
767 if (!adapter->curr_cmd || !adapter->curr_cmd->resp_skb) {
768 resp = (struct host_cmd_ds_command *) adapter->upld_buf;
769 dev_err(adapter->dev, "CMD_RESP: NULL curr_cmd, %#x\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700770 le16_to_cpu(resp->command));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700771 return -1;
772 }
773
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700774 adapter->num_cmd_timeout = 0;
775
776 resp = (struct host_cmd_ds_command *) adapter->curr_cmd->resp_skb->data;
777 if (adapter->curr_cmd->cmd_flag & CMD_F_CANCELED) {
778 dev_err(adapter->dev, "CMD_RESP: %#x been canceled\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700779 le16_to_cpu(resp->command));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700780 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
781 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
782 adapter->curr_cmd = NULL;
783 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
784 return -1;
785 }
786
787 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) {
788 /* Copy original response back to response buffer */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700789 struct mwifiex_ds_misc_cmd *hostcmd;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700790 uint16_t size = le16_to_cpu(resp->size);
791 dev_dbg(adapter->dev, "info: host cmd resp size = %d\n", size);
792 size = min_t(u16, size, MWIFIEX_SIZE_OF_CMD_BUFFER);
793 if (adapter->curr_cmd->data_buf) {
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700794 hostcmd = adapter->curr_cmd->data_buf;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700795 hostcmd->len = size;
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -0700796 memcpy(hostcmd->cmd, resp, size);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700797 }
798 }
799 orig_cmdresp_no = le16_to_cpu(resp->command);
800
801 /* Get BSS number and corresponding priv */
802 priv = mwifiex_get_priv_by_id(adapter,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700803 HostCmd_GET_BSS_NO(le16_to_cpu(resp->seq_num)),
804 HostCmd_GET_BSS_TYPE(le16_to_cpu(resp->seq_num)));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700805 if (!priv)
806 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
807 /* Clear RET_BIT from HostCmd */
808 resp->command = cpu_to_le16(orig_cmdresp_no & HostCmd_CMD_ID_MASK);
809
810 cmdresp_no = le16_to_cpu(resp->command);
811 cmdresp_result = le16_to_cpu(resp->result);
812
813 /* Save the last command response to debug log */
814 adapter->dbg.last_cmd_resp_index =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700815 (adapter->dbg.last_cmd_resp_index + 1) % DBG_CMD_NUM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700816 adapter->dbg.last_cmd_resp_id[adapter->dbg.last_cmd_resp_index] =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700817 orig_cmdresp_no;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700818
819 do_gettimeofday(&tstamp);
820 dev_dbg(adapter->dev, "cmd: CMD_RESP: (%lu.%lu): 0x%x, result %d,"
821 " len %d, seqno 0x%x\n",
822 tstamp.tv_sec, tstamp.tv_usec, orig_cmdresp_no, cmdresp_result,
823 le16_to_cpu(resp->size), le16_to_cpu(resp->seq_num));
824
825 if (!(orig_cmdresp_no & HostCmd_RET_BIT)) {
826 dev_err(adapter->dev, "CMD_RESP: invalid cmd resp\n");
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700827 if (adapter->curr_cmd->wait_q_enabled)
828 adapter->cmd_wait_q.status = -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700829
830 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
831 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
832 adapter->curr_cmd = NULL;
833 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
834 return -1;
835 }
836
837 if (adapter->curr_cmd->cmd_flag & CMD_F_HOSTCMD) {
838 adapter->curr_cmd->cmd_flag &= ~CMD_F_HOSTCMD;
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700839 if ((cmdresp_result == HostCmd_RESULT_OK) &&
840 (cmdresp_no == HostCmd_CMD_802_11_HS_CFG_ENH))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700841 ret = mwifiex_ret_802_11_hs_cfg(priv, resp);
842 } else {
843 /* handle response */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700844 ret = mwifiex_process_sta_cmdresp(priv, cmdresp_no, resp);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700845 }
846
847 /* Check init command response */
848 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) {
Amitkumar Karwara0f6d6c2012-02-24 21:36:05 -0800849 if (ret) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700850 dev_err(adapter->dev, "%s: cmd %#x failed during "
851 "initialization\n", __func__, cmdresp_no);
852 mwifiex_init_fw_complete(adapter);
853 return -1;
854 } else if (adapter->last_init_cmd == cmdresp_no)
855 adapter->hw_status = MWIFIEX_HW_STATUS_INIT_DONE;
856 }
857
858 if (adapter->curr_cmd) {
Amitkumar Karwara0f6d6c2012-02-24 21:36:05 -0800859 if (adapter->curr_cmd->wait_q_enabled)
860 adapter->cmd_wait_q.status = ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700861
862 /* Clean up and put current command back to cmd_free_q */
863 mwifiex_insert_cmd_to_free_q(adapter, adapter->curr_cmd);
864
865 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
866 adapter->curr_cmd = NULL;
867 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
868 }
869
870 return ret;
871}
872
873/*
874 * This function handles the timeout of command sending.
875 *
876 * It will re-send the same command again.
877 */
878void
879mwifiex_cmd_timeout_func(unsigned long function_context)
880{
881 struct mwifiex_adapter *adapter =
882 (struct mwifiex_adapter *) function_context;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700883 struct cmd_ctrl_node *cmd_node;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700884 struct timeval tstamp;
885
886 adapter->num_cmd_timeout++;
887 adapter->dbg.num_cmd_timeout++;
888 if (!adapter->curr_cmd) {
889 dev_dbg(adapter->dev, "cmd: empty curr_cmd\n");
890 return;
891 }
892 cmd_node = adapter->curr_cmd;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700893 if (cmd_node->wait_q_enabled)
894 adapter->cmd_wait_q.status = -ETIMEDOUT;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700895
896 if (cmd_node) {
897 adapter->dbg.timeout_cmd_id =
898 adapter->dbg.last_cmd_id[adapter->dbg.last_cmd_index];
899 adapter->dbg.timeout_cmd_act =
900 adapter->dbg.last_cmd_act[adapter->dbg.last_cmd_index];
901 do_gettimeofday(&tstamp);
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700902 dev_err(adapter->dev,
903 "%s: Timeout cmd id (%lu.%lu) = %#x, act = %#x\n",
904 __func__, tstamp.tv_sec, tstamp.tv_usec,
905 adapter->dbg.timeout_cmd_id,
906 adapter->dbg.timeout_cmd_act);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700907
908 dev_err(adapter->dev, "num_data_h2c_failure = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700909 adapter->dbg.num_tx_host_to_card_failure);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700910 dev_err(adapter->dev, "num_cmd_h2c_failure = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700911 adapter->dbg.num_cmd_host_to_card_failure);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700912
913 dev_err(adapter->dev, "num_cmd_timeout = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700914 adapter->dbg.num_cmd_timeout);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700915 dev_err(adapter->dev, "num_tx_timeout = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700916 adapter->dbg.num_tx_timeout);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700917
918 dev_err(adapter->dev, "last_cmd_index = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700919 adapter->dbg.last_cmd_index);
Andrei Emeltchenkoafe38402012-10-05 13:57:49 -0700920 dev_err(adapter->dev, "last_cmd_id: %*ph\n",
921 (int)sizeof(adapter->dbg.last_cmd_id),
922 adapter->dbg.last_cmd_id);
923 dev_err(adapter->dev, "last_cmd_act: %*ph\n",
924 (int)sizeof(adapter->dbg.last_cmd_act),
925 adapter->dbg.last_cmd_act);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700926
927 dev_err(adapter->dev, "last_cmd_resp_index = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700928 adapter->dbg.last_cmd_resp_index);
Andrei Emeltchenkoafe38402012-10-05 13:57:49 -0700929 dev_err(adapter->dev, "last_cmd_resp_id: %*ph\n",
930 (int)sizeof(adapter->dbg.last_cmd_resp_id),
931 adapter->dbg.last_cmd_resp_id);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700932
933 dev_err(adapter->dev, "last_event_index = %d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700934 adapter->dbg.last_event_index);
Andrei Emeltchenkoafe38402012-10-05 13:57:49 -0700935 dev_err(adapter->dev, "last_event: %*ph\n",
936 (int)sizeof(adapter->dbg.last_event),
937 adapter->dbg.last_event);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700938
939 dev_err(adapter->dev, "data_sent=%d cmd_sent=%d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700940 adapter->data_sent, adapter->cmd_sent);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700941
942 dev_err(adapter->dev, "ps_mode=%d ps_state=%d\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -0700943 adapter->ps_mode, adapter->ps_state);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700944 }
945 if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING)
946 mwifiex_init_fw_complete(adapter);
Amitkumar Karward31ab352012-11-01 18:44:14 -0700947
948 if (adapter->if_ops.card_reset)
949 adapter->if_ops.card_reset(adapter);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700950}
951
952/*
953 * This function cancels all the pending commands.
954 *
955 * The current command, all commands in command pending queue and all scan
956 * commands in scan pending queue are cancelled. All the completion callbacks
957 * are called with failure status to ensure cleanup.
958 */
959void
960mwifiex_cancel_all_pending_cmd(struct mwifiex_adapter *adapter)
961{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700962 struct cmd_ctrl_node *cmd_node = NULL, *tmp_node;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700963 unsigned long flags;
964
965 /* Cancel current cmd */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700966 if ((adapter->curr_cmd) && (adapter->curr_cmd->wait_q_enabled)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700967 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700968 adapter->curr_cmd->wait_q_enabled = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700969 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700970 adapter->cmd_wait_q.status = -1;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700971 mwifiex_complete_cmd(adapter, adapter->curr_cmd);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700972 }
973 /* Cancel all pending command */
974 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
975 list_for_each_entry_safe(cmd_node, tmp_node,
976 &adapter->cmd_pending_q, list) {
977 list_del(&cmd_node->list);
978 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
979
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700980 if (cmd_node->wait_q_enabled) {
981 adapter->cmd_wait_q.status = -1;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -0700982 mwifiex_complete_cmd(adapter, cmd_node);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700983 cmd_node->wait_q_enabled = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700984 }
985 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
986 spin_lock_irqsave(&adapter->cmd_pending_q_lock, flags);
987 }
988 spin_unlock_irqrestore(&adapter->cmd_pending_q_lock, flags);
989
990 /* Cancel all pending scan command */
991 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
992 list_for_each_entry_safe(cmd_node, tmp_node,
993 &adapter->scan_pending_q, list) {
994 list_del(&cmd_node->list);
995 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
996
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700997 cmd_node->wait_q_enabled = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700998 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
999 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1000 }
1001 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
1002
1003 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1004 adapter->scan_processing = false;
1005 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1006}
1007
1008/*
1009 * This function cancels all pending commands that matches with
1010 * the given IOCTL request.
1011 *
1012 * Both the current command buffer and the pending command queue are
1013 * searched for matching IOCTL request. The completion callback of
1014 * the matched command is called with failure status to ensure cleanup.
1015 * In case of scan commands, all pending commands in scan pending queue
1016 * are cancelled.
1017 */
1018void
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001019mwifiex_cancel_pending_ioctl(struct mwifiex_adapter *adapter)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001020{
1021 struct cmd_ctrl_node *cmd_node = NULL, *tmp_node = NULL;
1022 unsigned long cmd_flags;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001023 unsigned long scan_pending_q_flags;
1024 uint16_t cancel_scan_cmd = false;
1025
1026 if ((adapter->curr_cmd) &&
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001027 (adapter->curr_cmd->wait_q_enabled)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001028 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, cmd_flags);
1029 cmd_node = adapter->curr_cmd;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001030 cmd_node->wait_q_enabled = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001031 cmd_node->cmd_flag |= CMD_F_CANCELED;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001032 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
Yogesh Ashok Powar51e708c2011-12-13 20:43:16 -08001033 mwifiex_complete_cmd(adapter, adapter->curr_cmd);
1034 adapter->curr_cmd = NULL;
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001035 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001036 }
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001037
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001038 /* Cancel all pending scan command */
1039 spin_lock_irqsave(&adapter->scan_pending_q_lock,
1040 scan_pending_q_flags);
1041 list_for_each_entry_safe(cmd_node, tmp_node,
1042 &adapter->scan_pending_q, list) {
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001043 list_del(&cmd_node->list);
1044 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1045 scan_pending_q_flags);
1046 cmd_node->wait_q_enabled = false;
1047 mwifiex_insert_cmd_to_free_q(adapter, cmd_node);
1048 spin_lock_irqsave(&adapter->scan_pending_q_lock,
1049 scan_pending_q_flags);
1050 cancel_scan_cmd = true;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001051 }
1052 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1053 scan_pending_q_flags);
1054
1055 if (cancel_scan_cmd) {
1056 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, cmd_flags);
1057 adapter->scan_processing = false;
1058 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, cmd_flags);
1059 }
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001060 adapter->cmd_wait_q.status = -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001061}
1062
1063/*
1064 * This function sends the sleep confirm command to firmware, if
1065 * possible.
1066 *
1067 * The sleep confirm command cannot be issued if command response,
1068 * data response or event response is awaiting handling, or if we
1069 * are in the middle of sending a command, or expecting a command
1070 * response.
1071 */
1072void
1073mwifiex_check_ps_cond(struct mwifiex_adapter *adapter)
1074{
1075 if (!adapter->cmd_sent &&
1076 !adapter->curr_cmd && !IS_CARD_RX_RCVD(adapter))
1077 mwifiex_dnld_sleep_confirm_cmd(adapter);
1078 else
1079 dev_dbg(adapter->dev,
1080 "cmd: Delay Sleep Confirm (%s%s%s)\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001081 (adapter->cmd_sent) ? "D" : "",
1082 (adapter->curr_cmd) ? "C" : "",
1083 (IS_CARD_RX_RCVD(adapter)) ? "R" : "");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001084}
1085
1086/*
1087 * This function sends a Host Sleep activated event to applications.
1088 *
1089 * This event is generated by the driver, with a blank event body.
1090 */
1091void
1092mwifiex_hs_activated_event(struct mwifiex_private *priv, u8 activated)
1093{
1094 if (activated) {
1095 if (priv->adapter->is_hs_configured) {
1096 priv->adapter->hs_activated = true;
Avinash Patil2db96c32012-09-27 19:00:10 -07001097 mwifiex_update_rxreor_flags(priv->adapter,
1098 RXREOR_FORCE_NO_DROP);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001099 dev_dbg(priv->adapter->dev, "event: hs_activated\n");
1100 priv->adapter->hs_activate_wait_q_woken = true;
1101 wake_up_interruptible(
1102 &priv->adapter->hs_activate_wait_q);
1103 } else {
1104 dev_dbg(priv->adapter->dev, "event: HS not configured\n");
1105 }
1106 } else {
1107 dev_dbg(priv->adapter->dev, "event: hs_deactivated\n");
1108 priv->adapter->hs_activated = false;
1109 }
1110}
1111
1112/*
1113 * This function handles the command response of a Host Sleep configuration
1114 * command.
1115 *
1116 * Handling includes changing the header fields into CPU format
1117 * and setting the current host sleep activation status in driver.
1118 *
1119 * In case host sleep status change, the function generates an event to
1120 * notify the applications.
1121 */
1122int mwifiex_ret_802_11_hs_cfg(struct mwifiex_private *priv,
1123 struct host_cmd_ds_command *resp)
1124{
1125 struct mwifiex_adapter *adapter = priv->adapter;
1126 struct host_cmd_ds_802_11_hs_cfg_enh *phs_cfg =
1127 &resp->params.opt_hs_cfg;
1128 uint32_t conditions = le32_to_cpu(phs_cfg->params.hs_config.conditions);
1129
Amitkumar Karwara4186ea2012-06-20 19:58:37 -07001130 if (phs_cfg->action == cpu_to_le16(HS_ACTIVATE) &&
1131 adapter->iface_type == MWIFIEX_SDIO) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001132 mwifiex_hs_activated_event(priv, true);
1133 return 0;
1134 } else {
1135 dev_dbg(adapter->dev, "cmd: CMD_RESP: HS_CFG cmd reply"
1136 " result=%#x, conditions=0x%x gpio=0x%x gap=0x%x\n",
1137 resp->result, conditions,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001138 phs_cfg->params.hs_config.gpio,
1139 phs_cfg->params.hs_config.gap);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001140 }
1141 if (conditions != HOST_SLEEP_CFG_CANCEL) {
1142 adapter->is_hs_configured = true;
Amitkumar Karwara4186ea2012-06-20 19:58:37 -07001143 if (adapter->iface_type == MWIFIEX_USB ||
1144 adapter->iface_type == MWIFIEX_PCIE)
1145 mwifiex_hs_activated_event(priv, true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001146 } else {
1147 adapter->is_hs_configured = false;
1148 if (adapter->hs_activated)
1149 mwifiex_hs_activated_event(priv, false);
1150 }
1151
1152 return 0;
1153}
1154
1155/*
1156 * This function wakes up the adapter and generates a Host Sleep
1157 * cancel event on receiving the power up interrupt.
1158 */
1159void
1160mwifiex_process_hs_config(struct mwifiex_adapter *adapter)
1161{
1162 dev_dbg(adapter->dev, "info: %s: auto cancelling host sleep"
1163 " since there is interrupt from the firmware\n", __func__);
1164
1165 adapter->if_ops.wakeup(adapter);
1166 adapter->hs_activated = false;
1167 adapter->is_hs_configured = false;
1168 mwifiex_hs_activated_event(mwifiex_get_priv(adapter,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001169 MWIFIEX_BSS_ROLE_ANY),
1170 false);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001171}
Amitkumar Karwar4daffe32012-04-18 20:08:28 -07001172EXPORT_SYMBOL_GPL(mwifiex_process_hs_config);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001173
1174/*
1175 * This function handles the command response of a sleep confirm command.
1176 *
1177 * The function sets the card state to SLEEP if the response indicates success.
1178 */
1179void
1180mwifiex_process_sleep_confirm_resp(struct mwifiex_adapter *adapter,
1181 u8 *pbuf, u32 upld_len)
1182{
1183 struct host_cmd_ds_command *cmd = (struct host_cmd_ds_command *) pbuf;
1184 struct mwifiex_private *priv =
1185 mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
1186 uint16_t result = le16_to_cpu(cmd->result);
1187 uint16_t command = le16_to_cpu(cmd->command);
1188 uint16_t seq_num = le16_to_cpu(cmd->seq_num);
1189
1190 if (!upld_len) {
1191 dev_err(adapter->dev, "%s: cmd size is 0\n", __func__);
1192 return;
1193 }
1194
1195 /* Get BSS number and corresponding priv */
1196 priv = mwifiex_get_priv_by_id(adapter, HostCmd_GET_BSS_NO(seq_num),
1197 HostCmd_GET_BSS_TYPE(seq_num));
1198 if (!priv)
1199 priv = mwifiex_get_priv(adapter, MWIFIEX_BSS_ROLE_ANY);
1200
1201 /* Update sequence number */
1202 seq_num = HostCmd_GET_SEQ_NO(seq_num);
1203 /* Clear RET_BIT from HostCmd */
1204 command &= HostCmd_CMD_ID_MASK;
1205
1206 if (command != HostCmd_CMD_802_11_PS_MODE_ENH) {
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001207 dev_err(adapter->dev,
1208 "%s: rcvd unexpected resp for cmd %#x, result = %x\n",
1209 __func__, command, result);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001210 return;
1211 }
1212
1213 if (result) {
1214 dev_err(adapter->dev, "%s: sleep confirm cmd failed\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001215 __func__);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001216 adapter->pm_wakeup_card_req = false;
1217 adapter->ps_state = PS_STATE_AWAKE;
1218 return;
1219 }
1220 adapter->pm_wakeup_card_req = true;
1221 if (adapter->is_hs_configured)
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001222 mwifiex_hs_activated_event(mwifiex_get_priv
1223 (adapter, MWIFIEX_BSS_ROLE_ANY),
1224 true);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001225 adapter->ps_state = PS_STATE_SLEEP;
1226 cmd->command = cpu_to_le16(command);
1227 cmd->seq_num = cpu_to_le16(seq_num);
1228}
1229EXPORT_SYMBOL_GPL(mwifiex_process_sleep_confirm_resp);
1230
1231/*
1232 * This function prepares an enhanced power mode command.
1233 *
1234 * This function can be used to disable power save or to configure
1235 * power save with auto PS or STA PS or auto deep sleep.
1236 *
1237 * Preparation includes -
1238 * - Setting command ID, action and proper size
1239 * - Setting Power Save bitmap, PS parameters TLV, PS mode TLV,
1240 * auto deep sleep TLV (as required)
1241 * - Ensuring correct endian-ness
1242 */
1243int mwifiex_cmd_enh_power_mode(struct mwifiex_private *priv,
1244 struct host_cmd_ds_command *cmd,
1245 u16 cmd_action, uint16_t ps_bitmap,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001246 struct mwifiex_ds_auto_ds *auto_ds)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001247{
1248 struct host_cmd_ds_802_11_ps_mode_enh *psmode_enh =
1249 &cmd->params.psmode_enh;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001250 u8 *tlv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001251 u16 cmd_size = 0;
1252
1253 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_PS_MODE_ENH);
1254 if (cmd_action == DIS_AUTO_PS) {
1255 psmode_enh->action = cpu_to_le16(DIS_AUTO_PS);
1256 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap);
Marc Yang2b06bdb2011-03-30 18:12:44 -07001257 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) +
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001258 sizeof(psmode_enh->params.ps_bitmap));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001259 } else if (cmd_action == GET_PS) {
1260 psmode_enh->action = cpu_to_le16(GET_PS);
1261 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap);
Marc Yang2b06bdb2011-03-30 18:12:44 -07001262 cmd->size = cpu_to_le16(S_DS_GEN + sizeof(psmode_enh->action) +
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001263 sizeof(psmode_enh->params.ps_bitmap));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001264 } else if (cmd_action == EN_AUTO_PS) {
1265 psmode_enh->action = cpu_to_le16(EN_AUTO_PS);
Marc Yang2b06bdb2011-03-30 18:12:44 -07001266 psmode_enh->params.ps_bitmap = cpu_to_le16(ps_bitmap);
1267 cmd_size = S_DS_GEN + sizeof(psmode_enh->action) +
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001268 sizeof(psmode_enh->params.ps_bitmap);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001269 tlv = (u8 *) cmd + cmd_size;
1270 if (ps_bitmap & BITMAP_STA_PS) {
1271 struct mwifiex_adapter *adapter = priv->adapter;
1272 struct mwifiex_ie_types_ps_param *ps_tlv =
1273 (struct mwifiex_ie_types_ps_param *) tlv;
1274 struct mwifiex_ps_param *ps_mode = &ps_tlv->param;
1275 ps_tlv->header.type = cpu_to_le16(TLV_TYPE_PS_PARAM);
1276 ps_tlv->header.len = cpu_to_le16(sizeof(*ps_tlv) -
1277 sizeof(struct mwifiex_ie_types_header));
1278 cmd_size += sizeof(*ps_tlv);
1279 tlv += sizeof(*ps_tlv);
1280 dev_dbg(adapter->dev, "cmd: PS Command: Enter PS\n");
1281 ps_mode->null_pkt_interval =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001282 cpu_to_le16(adapter->null_pkt_interval);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001283 ps_mode->multiple_dtims =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001284 cpu_to_le16(adapter->multiple_dtim);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001285 ps_mode->bcn_miss_timeout =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001286 cpu_to_le16(adapter->bcn_miss_time_out);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001287 ps_mode->local_listen_interval =
1288 cpu_to_le16(adapter->local_listen_interval);
1289 ps_mode->adhoc_wake_period =
1290 cpu_to_le16(adapter->adhoc_awake_period);
1291 ps_mode->delay_to_ps =
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001292 cpu_to_le16(adapter->delay_to_ps);
1293 ps_mode->mode = cpu_to_le16(adapter->enhanced_ps_mode);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001294
1295 }
1296 if (ps_bitmap & BITMAP_AUTO_DS) {
Marc Yang2b06bdb2011-03-30 18:12:44 -07001297 struct mwifiex_ie_types_auto_ds_param *auto_ds_tlv =
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001298 (struct mwifiex_ie_types_auto_ds_param *) tlv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001299 u16 idletime = 0;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001300
1301 auto_ds_tlv->header.type =
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001302 cpu_to_le16(TLV_TYPE_AUTO_DS_PARAM);
Marc Yang2b06bdb2011-03-30 18:12:44 -07001303 auto_ds_tlv->header.len =
1304 cpu_to_le16(sizeof(*auto_ds_tlv) -
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001305 sizeof(struct mwifiex_ie_types_header));
Marc Yang2b06bdb2011-03-30 18:12:44 -07001306 cmd_size += sizeof(*auto_ds_tlv);
1307 tlv += sizeof(*auto_ds_tlv);
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001308 if (auto_ds)
1309 idletime = auto_ds->idle_time;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001310 dev_dbg(priv->adapter->dev,
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001311 "cmd: PS Command: Enter Auto Deep Sleep\n");
Marc Yang2b06bdb2011-03-30 18:12:44 -07001312 auto_ds_tlv->deep_sleep_timeout = cpu_to_le16(idletime);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001313 }
1314 cmd->size = cpu_to_le16(cmd_size);
1315 }
1316 return 0;
1317}
1318
1319/*
1320 * This function handles the command response of an enhanced power mode
1321 * command.
1322 *
1323 * Handling includes changing the header fields into CPU format
1324 * and setting the current enhanced power mode in driver.
1325 */
1326int mwifiex_ret_enh_power_mode(struct mwifiex_private *priv,
1327 struct host_cmd_ds_command *resp,
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001328 struct mwifiex_ds_pm_cfg *pm_cfg)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001329{
1330 struct mwifiex_adapter *adapter = priv->adapter;
1331 struct host_cmd_ds_802_11_ps_mode_enh *ps_mode =
1332 &resp->params.psmode_enh;
1333 uint16_t action = le16_to_cpu(ps_mode->action);
1334 uint16_t ps_bitmap = le16_to_cpu(ps_mode->params.ps_bitmap);
1335 uint16_t auto_ps_bitmap =
Marc Yang2b06bdb2011-03-30 18:12:44 -07001336 le16_to_cpu(ps_mode->params.ps_bitmap);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001337
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001338 dev_dbg(adapter->dev,
1339 "info: %s: PS_MODE cmd reply result=%#x action=%#X\n",
1340 __func__, resp->result, action);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001341 if (action == EN_AUTO_PS) {
1342 if (auto_ps_bitmap & BITMAP_AUTO_DS) {
1343 dev_dbg(adapter->dev, "cmd: Enabled auto deep sleep\n");
1344 priv->adapter->is_deep_sleep = true;
1345 }
1346 if (auto_ps_bitmap & BITMAP_STA_PS) {
1347 dev_dbg(adapter->dev, "cmd: Enabled STA power save\n");
1348 if (adapter->sleep_period.period)
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001349 dev_dbg(adapter->dev,
1350 "cmd: set to uapsd/pps mode\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001351 }
1352 } else if (action == DIS_AUTO_PS) {
1353 if (ps_bitmap & BITMAP_AUTO_DS) {
1354 priv->adapter->is_deep_sleep = false;
1355 dev_dbg(adapter->dev, "cmd: Disabled auto deep sleep\n");
1356 }
1357 if (ps_bitmap & BITMAP_STA_PS) {
1358 dev_dbg(adapter->dev, "cmd: Disabled STA power save\n");
1359 if (adapter->sleep_period.period) {
1360 adapter->delay_null_pkt = false;
1361 adapter->tx_lock_flag = false;
1362 adapter->pps_uapsd_mode = false;
1363 }
1364 }
1365 } else if (action == GET_PS) {
Marc Yang2b06bdb2011-03-30 18:12:44 -07001366 if (ps_bitmap & BITMAP_STA_PS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001367 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_PSP;
1368 else
1369 adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM;
1370
1371 dev_dbg(adapter->dev, "cmd: ps_bitmap=%#x\n", ps_bitmap);
1372
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001373 if (pm_cfg) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001374 /* This section is for get power save mode */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001375 if (ps_bitmap & BITMAP_STA_PS)
1376 pm_cfg->param.ps_mode = 1;
1377 else
1378 pm_cfg->param.ps_mode = 0;
1379 }
1380 }
1381 return 0;
1382}
1383
1384/*
1385 * This function prepares command to get hardware specifications.
1386 *
1387 * Preparation includes -
1388 * - Setting command ID, action and proper size
1389 * - Setting permanent address parameter
1390 * - Ensuring correct endian-ness
1391 */
1392int mwifiex_cmd_get_hw_spec(struct mwifiex_private *priv,
1393 struct host_cmd_ds_command *cmd)
1394{
1395 struct host_cmd_ds_get_hw_spec *hw_spec = &cmd->params.hw_spec;
1396
1397 cmd->command = cpu_to_le16(HostCmd_CMD_GET_HW_SPEC);
1398 cmd->size =
1399 cpu_to_le16(sizeof(struct host_cmd_ds_get_hw_spec) + S_DS_GEN);
1400 memcpy(hw_spec->permanent_addr, priv->curr_addr, ETH_ALEN);
1401
1402 return 0;
1403}
1404
1405/*
1406 * This function handles the command response of get hardware
1407 * specifications.
1408 *
1409 * Handling includes changing the header fields into CPU format
1410 * and saving/updating the following parameters in driver -
1411 * - Firmware capability information
1412 * - Firmware band settings
1413 * - Ad-hoc start band and channel
1414 * - Ad-hoc 11n activation status
1415 * - Firmware release number
1416 * - Number of antennas
1417 * - Hardware address
1418 * - Hardware interface version
1419 * - Firmware version
1420 * - Region code
1421 * - 11n capabilities
1422 * - MCS support fields
1423 * - MP end port
1424 */
1425int mwifiex_ret_get_hw_spec(struct mwifiex_private *priv,
1426 struct host_cmd_ds_command *resp)
1427{
1428 struct host_cmd_ds_get_hw_spec *hw_spec = &resp->params.hw_spec;
1429 struct mwifiex_adapter *adapter = priv->adapter;
1430 int i;
1431
1432 adapter->fw_cap_info = le32_to_cpu(hw_spec->fw_cap_info);
1433
1434 if (IS_SUPPORT_MULTI_BANDS(adapter))
1435 adapter->fw_bands = (u8) GET_FW_DEFAULT_BANDS(adapter);
1436 else
1437 adapter->fw_bands = BAND_B;
1438
1439 adapter->config_bands = adapter->fw_bands;
1440
1441 if (adapter->fw_bands & BAND_A) {
1442 if (adapter->fw_bands & BAND_GN) {
1443 adapter->config_bands |= BAND_AN;
1444 adapter->fw_bands |= BAND_AN;
1445 }
1446 if (adapter->fw_bands & BAND_AN) {
1447 adapter->adhoc_start_band = BAND_A | BAND_AN;
1448 adapter->adhoc_11n_enabled = true;
1449 } else {
1450 adapter->adhoc_start_band = BAND_A;
1451 }
1452 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL_A;
1453 } else if (adapter->fw_bands & BAND_GN) {
1454 adapter->adhoc_start_band = BAND_G | BAND_B | BAND_GN;
1455 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
1456 adapter->adhoc_11n_enabled = true;
1457 } else if (adapter->fw_bands & BAND_G) {
1458 adapter->adhoc_start_band = BAND_G | BAND_B;
1459 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
1460 } else if (adapter->fw_bands & BAND_B) {
1461 adapter->adhoc_start_band = BAND_B;
1462 priv->adhoc_channel = DEFAULT_AD_HOC_CHANNEL;
1463 }
1464
1465 adapter->fw_release_number = le32_to_cpu(hw_spec->fw_release_number);
1466 adapter->number_of_antenna = le16_to_cpu(hw_spec->number_of_antenna);
1467
1468 dev_dbg(adapter->dev, "info: GET_HW_SPEC: fw_release_number- %#x\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001469 adapter->fw_release_number);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001470 dev_dbg(adapter->dev, "info: GET_HW_SPEC: permanent addr: %pM\n",
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001471 hw_spec->permanent_addr);
1472 dev_dbg(adapter->dev,
1473 "info: GET_HW_SPEC: hw_if_version=%#x version=%#x\n",
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001474 le16_to_cpu(hw_spec->hw_if_version),
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001475 le16_to_cpu(hw_spec->version));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001476
1477 if (priv->curr_addr[0] == 0xff)
1478 memmove(priv->curr_addr, hw_spec->permanent_addr, ETH_ALEN);
1479
1480 adapter->region_code = le16_to_cpu(hw_spec->region_code);
1481
1482 for (i = 0; i < MWIFIEX_MAX_REGION_CODE; i++)
1483 /* Use the region code to search for the index */
1484 if (adapter->region_code == region_code_index[i])
1485 break;
1486
1487 /* If it's unidentified region code, use the default (USA) */
1488 if (i >= MWIFIEX_MAX_REGION_CODE) {
1489 adapter->region_code = 0x10;
Yogesh Ashok Powaraea07012012-03-13 19:22:35 -07001490 dev_dbg(adapter->dev,
1491 "cmd: unknown region code, use default (USA)\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001492 }
1493
1494 adapter->hw_dot_11n_dev_cap = le32_to_cpu(hw_spec->dot_11n_dev_cap);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001495 adapter->hw_dev_mcs_support = hw_spec->dev_mcs_support;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001496
1497 if (adapter->if_ops.update_mp_end_port)
1498 adapter->if_ops.update_mp_end_port(adapter,
1499 le16_to_cpu(hw_spec->mp_end_port));
1500
1501 return 0;
1502}