blob: 78c4da150a745d9cf6bf8db5de96054c9fb53b9b [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
5
Holger Schurig7919b892008-04-01 14:50:43 +02006#include <linux/kfifo.h>
Holger Schurige93156e2009-10-22 15:30:58 +02007#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Dan Williamsa45b6f42010-07-27 12:54:34 -07009#include <linux/if_arp.h>
Holger Schurige93156e2009-10-22 15:30:58 +020010
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011#include "decl.h"
Kiran Divekare86dc1c2010-06-14 22:01:26 +053012#include "cfg.h"
Dan Williams6e66f032007-12-11 12:42:16 -050013#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
Dan Williams9fb76632010-07-27 12:55:21 -070015#define CAL_NF(nf) ((s32)(-(s32)(nf)))
16#define CAL_RSSI(snr, nf) ((s32)((s32)(snr) + CAL_NF(nf)))
Holger Schurige93156e2009-10-22 15:30:58 +020017
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020018/**
Holger Schurig8db4a2b2008-03-19 10:11:00 +010019 * @brief Simple callback that copies response back into command
20 *
21 * @param priv A pointer to struct lbs_private structure
22 * @param extra A pointer to the original command structure for which
23 * 'resp' is a response
24 * @param resp A pointer to the command response
25 *
26 * @return 0 on success, error on failure
27 */
28int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
29 struct cmd_header *resp)
30{
31 struct cmd_header *buf = (void *)extra;
32 uint16_t copy_len;
33
34 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
35 memcpy(buf, resp, copy_len);
36 return 0;
37}
38EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
39
40/**
41 * @brief Simple callback that ignores the result. Use this if
42 * you just want to send a command to the hardware, but don't
43 * care for the result.
44 *
45 * @param priv ignored
46 * @param extra ignored
47 * @param resp ignored
48 *
49 * @return 0 for success
50 */
51static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
52 struct cmd_header *resp)
53{
54 return 0;
55}
56
57
58/**
Dan Williams852e1f22007-12-10 15:24:47 -050059 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060 *
61 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050062 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020063 */
Dan Williams852e1f22007-12-10 15:24:47 -050064static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020065{
Dan Williams852e1f22007-12-10 15:24:47 -050066 switch (cmd) {
67 case CMD_802_11_RSSI:
68 return 1;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070069 case CMD_802_11_HOST_SLEEP_CFG:
70 return 1;
Dan Williams852e1f22007-12-10 15:24:47 -050071 default:
72 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020073 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020074 return 0;
75}
76
Dan Williams6e66f032007-12-11 12:42:16 -050077/**
78 * @brief Updates the hardware details like MAC address and regulatory region
79 *
80 * @param priv A pointer to struct lbs_private structure
81 *
82 * @return 0 on success, error on failure
83 */
84int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020085{
Dan Williams6e66f032007-12-11 12:42:16 -050086 struct cmd_ds_get_hw_spec cmd;
87 int ret = -1;
88 u32 i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020089
Holger Schurig9012b282007-05-25 11:27:16 -040090 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020091
Dan Williams6e66f032007-12-11 12:42:16 -050092 memset(&cmd, 0, sizeof(cmd));
93 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
94 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050095 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050096 if (ret)
97 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020098
Dan Williams6e66f032007-12-11 12:42:16 -050099 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500100
Holger Schurigdac10a92008-01-16 15:55:22 +0100101 /* The firmware release is in an interesting format: the patch
102 * level is in the most significant nibble ... so fix that: */
103 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
104 priv->fwrelease = (priv->fwrelease << 8) |
105 (priv->fwrelease >> 24 & 0xff);
106
107 /* Some firmware capabilities:
108 * CF card firmware 5.0.16p0: cap 0x00000303
109 * USB dongle firmware 5.110.17p2: cap 0x00000303
110 */
Johannes Berge1749612008-10-27 15:59:26 -0700111 lbs_pr_info("%pM, fw %u.%u.%up%u, cap 0x%08x\n",
112 cmd.permanentaddr,
Holger Schurigdac10a92008-01-16 15:55:22 +0100113 priv->fwrelease >> 24 & 0xff,
114 priv->fwrelease >> 16 & 0xff,
115 priv->fwrelease >> 8 & 0xff,
116 priv->fwrelease & 0xff,
117 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500118 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
119 cmd.hwifversion, cmd.version);
120
121 /* Clamp region code to 8-bit since FW spec indicates that it should
122 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
123 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200124 *
125 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
126 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500127 */
Marek Vasut15483992009-07-16 19:19:53 +0200128 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
129 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
130 else
131 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500132
133 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
134 /* use the region code to search for the index */
135 if (priv->regioncode == lbs_region_code_to_index[i])
136 break;
137 }
138
139 /* if it's unidentified region code, use the default (USA) */
140 if (i >= MRVDRV_MAX_REGION_CODE) {
141 priv->regioncode = 0x10;
142 lbs_pr_info("unidentified region code; using the default (USA)\n");
143 }
144
145 if (priv->current_addr[0] == 0xff)
146 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
147
148 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
149 if (priv->mesh_dev)
150 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
151
Dan Williams6e66f032007-12-11 12:42:16 -0500152out:
Holger Schurig9012b282007-05-25 11:27:16 -0400153 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500154 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155}
156
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700157static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
158 struct cmd_header *resp)
159{
160 lbs_deb_enter(LBS_DEB_CMD);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530161 if (priv->is_host_sleep_activated) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700162 priv->is_host_sleep_configured = 0;
163 if (priv->psstate == PS_STATE_FULL_POWER) {
164 priv->is_host_sleep_activated = 0;
165 wake_up_interruptible(&priv->host_sleep_q);
166 }
167 } else {
168 priv->is_host_sleep_configured = 1;
169 }
170 lbs_deb_leave(LBS_DEB_CMD);
171 return 0;
172}
173
Anna Neal582c1b52008-10-20 16:46:56 -0700174int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
175 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500176{
177 struct cmd_ds_host_sleep cmd_config;
178 int ret;
179
Deepak Saxenaae63a332010-10-31 13:40:33 +0000180 /*
181 * Certain firmware versions do not support EHS_REMOVE_WAKEUP command
182 * and the card will return a failure. Since we need to be
183 * able to reset the mask, in those cases we set a 0 mask instead.
184 */
185 if (criteria == EHS_REMOVE_WAKEUP && !priv->ehs_remove_supported)
186 criteria = 0;
187
David Woodhouse9fae8992007-12-15 03:46:44 -0500188 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500189 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500190 cmd_config.gpio = priv->wol_gpio;
191 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500192
Anna Neal582c1b52008-10-20 16:46:56 -0700193 if (p_wol_config != NULL)
194 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
195 sizeof(struct wol_config));
196 else
197 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
198
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700199 ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
200 le16_to_cpu(cmd_config.hdr.size),
201 lbs_ret_host_sleep_cfg, 0);
David Woodhouse506e9022007-12-12 20:06:06 -0500202 if (!ret) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700203 if (p_wol_config)
Anna Neal582c1b52008-10-20 16:46:56 -0700204 memcpy((uint8_t *) p_wol_config,
205 (uint8_t *)&cmd_config.wol_conf,
206 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500207 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500208 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500209 }
David Woodhouse506e9022007-12-12 20:06:06 -0500210
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500211 return ret;
212}
213EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
214
Dan Williams0bb64082010-07-27 13:08:08 -0700215/**
216 * @brief Sets the Power Save mode
217 *
218 * @param priv A pointer to struct lbs_private structure
219 * @param cmd_action The Power Save operation (PS_MODE_ACTION_ENTER_PS or
220 * PS_MODE_ACTION_EXIT_PS)
221 * @param block Whether to block on a response or not
222 *
223 * @return 0 on success, error on failure
224 */
225int lbs_set_ps_mode(struct lbs_private *priv, u16 cmd_action, bool block)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200226{
Dan Williams0bb64082010-07-27 13:08:08 -0700227 struct cmd_ds_802_11_ps_mode cmd;
228 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200229
Holger Schurig9012b282007-05-25 11:27:16 -0400230 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231
Dan Williams0bb64082010-07-27 13:08:08 -0700232 memset(&cmd, 0, sizeof(cmd));
233 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
234 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200235
Dan Williams0bb64082010-07-27 13:08:08 -0700236 if (cmd_action == PS_MODE_ACTION_ENTER_PS) {
237 lbs_deb_cmd("PS_MODE: action ENTER_PS\n");
238 cmd.multipledtim = cpu_to_le16(1); /* Default DTIM multiple */
239 } else if (cmd_action == PS_MODE_ACTION_EXIT_PS) {
240 lbs_deb_cmd("PS_MODE: action EXIT_PS\n");
241 } else {
242 /* We don't handle CONFIRM_SLEEP here because it needs to
243 * be fastpathed to the firmware.
244 */
245 lbs_deb_cmd("PS_MODE: unknown action 0x%X\n", cmd_action);
246 ret = -EOPNOTSUPP;
247 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248 }
249
Dan Williams0bb64082010-07-27 13:08:08 -0700250 if (block)
251 ret = lbs_cmd_with_response(priv, CMD_802_11_PS_MODE, &cmd);
252 else
253 lbs_cmd_async(priv, CMD_802_11_PS_MODE, &cmd.hdr, sizeof (cmd));
254
255out:
256 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
257 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200258}
259
David Woodhouse3fbe1042007-12-17 23:48:31 -0500260int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
261 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200262{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500263 struct cmd_ds_802_11_sleep_params cmd;
264 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265
Holger Schurig9012b282007-05-25 11:27:16 -0400266 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267
Dan Williams0aef64d2007-08-02 11:31:18 -0400268 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500269 memset(&cmd, 0, sizeof(cmd));
270 } else {
271 cmd.error = cpu_to_le16(sp->sp_error);
272 cmd.offset = cpu_to_le16(sp->sp_offset);
273 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
274 cmd.calcontrol = sp->sp_calcontrol;
275 cmd.externalsleepclk = sp->sp_extsleepclk;
276 cmd.reserved = cpu_to_le16(sp->sp_reserved);
277 }
278 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
279 cmd.action = cpu_to_le16(cmd_action);
280
281 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
282
283 if (!ret) {
284 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
285 "calcontrol 0x%x extsleepclk 0x%x\n",
286 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
287 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
288 cmd.externalsleepclk);
289
290 sp->sp_error = le16_to_cpu(cmd.error);
291 sp->sp_offset = le16_to_cpu(cmd.offset);
292 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
293 sp->sp_calcontrol = cmd.calcontrol;
294 sp->sp_extsleepclk = cmd.externalsleepclk;
295 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296 }
297
David Woodhouse3fbe1042007-12-17 23:48:31 -0500298 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200299 return 0;
300}
301
Amitkumar Karwar49125452009-09-30 20:04:38 -0700302static int lbs_wait_for_ds_awake(struct lbs_private *priv)
303{
304 int ret = 0;
305
306 lbs_deb_enter(LBS_DEB_CMD);
307
308 if (priv->is_deep_sleep) {
309 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
310 !priv->is_deep_sleep, (10 * HZ))) {
311 lbs_pr_err("ds_awake_q: timer expired\n");
312 ret = -1;
313 }
314 }
315
316 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
317 return ret;
318}
319
320int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
321{
322 int ret = 0;
323
324 lbs_deb_enter(LBS_DEB_CMD);
325
326 if (deep_sleep) {
327 if (priv->is_deep_sleep != 1) {
328 lbs_deb_cmd("deep sleep: sleep\n");
329 BUG_ON(!priv->enter_deep_sleep);
330 ret = priv->enter_deep_sleep(priv);
331 if (!ret) {
332 netif_stop_queue(priv->dev);
333 netif_carrier_off(priv->dev);
334 }
335 } else {
336 lbs_pr_err("deep sleep: already enabled\n");
337 }
338 } else {
339 if (priv->is_deep_sleep) {
340 lbs_deb_cmd("deep sleep: wakeup\n");
341 BUG_ON(!priv->exit_deep_sleep);
342 ret = priv->exit_deep_sleep(priv);
343 if (!ret) {
344 ret = lbs_wait_for_ds_awake(priv);
345 if (ret)
346 lbs_pr_err("deep sleep: wakeup"
347 "failed\n");
348 }
349 }
350 }
351
352 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
353 return ret;
354}
355
Amitkumar Karwar13118432010-07-08 06:43:48 +0530356static int lbs_ret_host_sleep_activate(struct lbs_private *priv,
357 unsigned long dummy,
358 struct cmd_header *cmd)
359{
360 lbs_deb_enter(LBS_DEB_FW);
361 priv->is_host_sleep_activated = 1;
362 wake_up_interruptible(&priv->host_sleep_q);
363 lbs_deb_leave(LBS_DEB_FW);
364 return 0;
365}
366
367int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep)
368{
369 struct cmd_header cmd;
370 int ret = 0;
371 uint32_t criteria = EHS_REMOVE_WAKEUP;
372
373 lbs_deb_enter(LBS_DEB_CMD);
374
375 if (host_sleep) {
376 if (priv->is_host_sleep_activated != 1) {
377 memset(&cmd, 0, sizeof(cmd));
378 ret = lbs_host_sleep_cfg(priv, priv->wol_criteria,
379 (struct wol_config *)NULL);
380 if (ret) {
381 lbs_pr_info("Host sleep configuration failed: "
382 "%d\n", ret);
383 return ret;
384 }
385 if (priv->psstate == PS_STATE_FULL_POWER) {
386 ret = __lbs_cmd(priv,
387 CMD_802_11_HOST_SLEEP_ACTIVATE,
388 &cmd,
389 sizeof(cmd),
390 lbs_ret_host_sleep_activate, 0);
391 if (ret)
392 lbs_pr_info("HOST_SLEEP_ACTIVATE "
393 "failed: %d\n", ret);
394 }
395
396 if (!wait_event_interruptible_timeout(
397 priv->host_sleep_q,
398 priv->is_host_sleep_activated,
399 (10 * HZ))) {
400 lbs_pr_err("host_sleep_q: timer expired\n");
401 ret = -1;
402 }
403 } else {
404 lbs_pr_err("host sleep: already enabled\n");
405 }
406 } else {
407 if (priv->is_host_sleep_activated)
408 ret = lbs_host_sleep_cfg(priv, criteria,
409 (struct wol_config *)NULL);
410 }
411
412 return ret;
413}
414
Dan Williams39fcf7a2008-09-10 12:49:00 -0400415/**
416 * @brief Set an SNMP MIB value
417 *
418 * @param priv A pointer to struct lbs_private structure
419 * @param oid The OID to set in the firmware
420 * @param val Value to set the OID to
421 *
422 * @return 0 on success, error on failure
423 */
424int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400426 struct cmd_ds_802_11_snmp_mib cmd;
427 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200428
Holger Schurig9012b282007-05-25 11:27:16 -0400429 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430
Dan Williams39fcf7a2008-09-10 12:49:00 -0400431 memset(&cmd, 0, sizeof (cmd));
432 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
433 cmd.action = cpu_to_le16(CMD_ACT_SET);
434 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200435
Dan Williams39fcf7a2008-09-10 12:49:00 -0400436 switch (oid) {
437 case SNMP_MIB_OID_BSS_TYPE:
438 cmd.bufsize = cpu_to_le16(sizeof(u8));
Holger Schurigfef06402009-10-22 15:30:59 +0200439 cmd.value[0] = val;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400441 case SNMP_MIB_OID_11D_ENABLE:
442 case SNMP_MIB_OID_FRAG_THRESHOLD:
443 case SNMP_MIB_OID_RTS_THRESHOLD:
444 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
445 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
446 cmd.bufsize = cpu_to_le16(sizeof(u16));
447 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200448 break;
449 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400450 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
451 ret = -EINVAL;
452 goto out;
453 }
454
455 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
456 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
457
458 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
459
460out:
461 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
462 return ret;
463}
464
465/**
466 * @brief Get an SNMP MIB value
467 *
468 * @param priv A pointer to struct lbs_private structure
469 * @param oid The OID to retrieve from the firmware
470 * @param out_val Location for the returned value
471 *
472 * @return 0 on success, error on failure
473 */
474int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
475{
476 struct cmd_ds_802_11_snmp_mib cmd;
477 int ret;
478
479 lbs_deb_enter(LBS_DEB_CMD);
480
481 memset(&cmd, 0, sizeof (cmd));
482 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
483 cmd.action = cpu_to_le16(CMD_ACT_GET);
484 cmd.oid = cpu_to_le16(oid);
485
486 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
487 if (ret)
488 goto out;
489
490 switch (le16_to_cpu(cmd.bufsize)) {
491 case sizeof(u8):
Holger Schurigfef06402009-10-22 15:30:59 +0200492 *out_val = cmd.value[0];
Dan Williams39fcf7a2008-09-10 12:49:00 -0400493 break;
494 case sizeof(u16):
495 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
496 break;
497 default:
498 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
499 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500 break;
501 }
502
Dan Williams39fcf7a2008-09-10 12:49:00 -0400503out:
504 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
505 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200506}
507
Dan Williams87c8c722008-08-19 15:15:35 -0400508/**
509 * @brief Get the min, max, and current TX power
510 *
511 * @param priv A pointer to struct lbs_private structure
512 * @param curlevel Current power level in dBm
513 * @param minlevel Minimum supported power level in dBm (optional)
514 * @param maxlevel Maximum supported power level in dBm (optional)
515 *
516 * @return 0 on success, error on failure
517 */
518int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
519 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200520{
Dan Williams87c8c722008-08-19 15:15:35 -0400521 struct cmd_ds_802_11_rf_tx_power cmd;
522 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200523
Holger Schurig9012b282007-05-25 11:27:16 -0400524 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525
Dan Williams87c8c722008-08-19 15:15:35 -0400526 memset(&cmd, 0, sizeof(cmd));
527 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
528 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529
Dan Williams87c8c722008-08-19 15:15:35 -0400530 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
531 if (ret == 0) {
532 *curlevel = le16_to_cpu(cmd.curlevel);
533 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100534 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400535 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100536 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200537 }
Holger Schurig9012b282007-05-25 11:27:16 -0400538
539 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams87c8c722008-08-19 15:15:35 -0400540 return ret;
541}
542
543/**
544 * @brief Set the TX power
545 *
546 * @param priv A pointer to struct lbs_private structure
547 * @param dbm The desired power level in dBm
548 *
549 * @return 0 on success, error on failure
550 */
551int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
552{
553 struct cmd_ds_802_11_rf_tx_power cmd;
554 int ret;
555
556 lbs_deb_enter(LBS_DEB_CMD);
557
558 memset(&cmd, 0, sizeof(cmd));
559 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
560 cmd.action = cpu_to_le16(CMD_ACT_SET);
561 cmd.curlevel = cpu_to_le16(dbm);
562
563 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
564
565 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
566
567 lbs_deb_leave(LBS_DEB_CMD);
568 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200569}
570
Dan Williamsa45b6f42010-07-27 12:54:34 -0700571/**
572 * @brief Enable or disable monitor mode (only implemented on OLPC usb8388 FW)
573 *
574 * @param priv A pointer to struct lbs_private structure
575 * @param enable 1 to enable monitor mode, 0 to disable
576 *
577 * @return 0 on success, error on failure
578 */
579int lbs_set_monitor_mode(struct lbs_private *priv, int enable)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400580{
Dan Williamsa45b6f42010-07-27 12:54:34 -0700581 struct cmd_ds_802_11_monitor_mode cmd;
582 int ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400583
Dan Williamsa45b6f42010-07-27 12:54:34 -0700584 memset(&cmd, 0, sizeof(cmd));
585 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
586 cmd.action = cpu_to_le16(CMD_ACT_SET);
587 if (enable)
588 cmd.mode = cpu_to_le16(0x1);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400589
Dan Williamsa45b6f42010-07-27 12:54:34 -0700590 lbs_deb_cmd("SET_MONITOR_MODE: %d\n", enable);
591
592 ret = lbs_cmd_with_response(priv, CMD_802_11_MONITOR_MODE, &cmd);
593 if (ret == 0) {
594 priv->dev->type = enable ? ARPHRD_IEEE80211_RADIOTAP :
595 ARPHRD_ETHER;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400596 }
597
Dan Williamsa45b6f42010-07-27 12:54:34 -0700598 lbs_deb_leave(LBS_DEB_CMD);
599 return ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400600}
601
Dan Williams2dd4b262007-12-11 16:54:15 -0500602/**
603 * @brief Get the radio channel
604 *
605 * @param priv A pointer to struct lbs_private structure
606 *
607 * @return The channel on success, error on failure
608 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200609static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610{
Dan Williams2dd4b262007-12-11 16:54:15 -0500611 struct cmd_ds_802_11_rf_channel cmd;
612 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200613
Holger Schurig8ff12da2007-08-02 11:54:31 -0400614 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200615
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200616 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500617 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
618 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619
David Woodhouse689442d2007-12-12 16:00:42 -0500620 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500621 if (ret)
622 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623
Dan Williamscb182a62007-12-11 17:35:51 -0500624 ret = le16_to_cpu(cmd.channel);
625 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500626
627out:
628 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
629 return ret;
630}
631
Holger Schurig73ab1f22008-04-02 16:52:19 +0200632int lbs_update_channel(struct lbs_private *priv)
633{
634 int ret;
635
636 /* the channel in f/w could be out of sync; get the current channel */
637 lbs_deb_enter(LBS_DEB_ASSOC);
638
639 ret = lbs_get_channel(priv);
640 if (ret > 0) {
Holger Schurigc14951f2009-10-22 15:30:50 +0200641 priv->channel = ret;
Holger Schurig73ab1f22008-04-02 16:52:19 +0200642 ret = 0;
643 }
644 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
645 return ret;
646}
647
Dan Williams2dd4b262007-12-11 16:54:15 -0500648/**
649 * @brief Set the radio channel
650 *
651 * @param priv A pointer to struct lbs_private structure
652 * @param channel The desired channel, or 0 to clear a locked channel
653 *
654 * @return 0 on success, error on failure
655 */
656int lbs_set_channel(struct lbs_private *priv, u8 channel)
657{
658 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530659#ifdef DEBUG
Holger Schurigc14951f2009-10-22 15:30:50 +0200660 u8 old_channel = priv->channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530661#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500662 int ret = 0;
663
664 lbs_deb_enter(LBS_DEB_CMD);
665
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200666 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500667 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
668 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
669 cmd.channel = cpu_to_le16(channel);
670
David Woodhouse689442d2007-12-12 16:00:42 -0500671 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500672 if (ret)
673 goto out;
674
Holger Schurigc14951f2009-10-22 15:30:50 +0200675 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
Dan Williamscb182a62007-12-11 17:35:51 -0500676 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
Holger Schurigc14951f2009-10-22 15:30:50 +0200677 priv->channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500678
679out:
680 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
681 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200682}
683
Dan Williams9fb76632010-07-27 12:55:21 -0700684/**
685 * @brief Get current RSSI and noise floor
686 *
687 * @param priv A pointer to struct lbs_private structure
688 * @param rssi On successful return, signal level in mBm
689 *
690 * @return The channel on success, error on failure
691 */
692int lbs_get_rssi(struct lbs_private *priv, s8 *rssi, s8 *nf)
693{
694 struct cmd_ds_802_11_rssi cmd;
695 int ret = 0;
696
697 lbs_deb_enter(LBS_DEB_CMD);
698
699 BUG_ON(rssi == NULL);
700 BUG_ON(nf == NULL);
701
702 memset(&cmd, 0, sizeof(cmd));
703 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
704 /* Average SNR over last 8 beacons */
705 cmd.n_or_snr = cpu_to_le16(8);
706
707 ret = lbs_cmd_with_response(priv, CMD_802_11_RSSI, &cmd);
708 if (ret == 0) {
709 *nf = CAL_NF(le16_to_cpu(cmd.nf));
710 *rssi = CAL_RSSI(le16_to_cpu(cmd.n_or_snr), le16_to_cpu(cmd.nf));
711 }
712
713 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
714 return ret;
715}
716
Dan Williamscc4b9d32010-07-27 12:56:05 -0700717/**
718 * @brief Send regulatory and 802.11d domain information to the firmware
719 *
720 * @param priv pointer to struct lbs_private
721 * @param request cfg80211 regulatory request structure
722 * @param bands the device's supported bands and channels
723 *
724 * @return 0 on success, error code on failure
725*/
726int lbs_set_11d_domain_info(struct lbs_private *priv,
727 struct regulatory_request *request,
728 struct ieee80211_supported_band **bands)
729{
730 struct cmd_ds_802_11d_domain_info cmd;
731 struct mrvl_ie_domain_param_set *domain = &cmd.domain;
732 struct ieee80211_country_ie_triplet *t;
733 enum ieee80211_band band;
734 struct ieee80211_channel *ch;
735 u8 num_triplet = 0;
736 u8 num_parsed_chan = 0;
737 u8 first_channel = 0, next_chan = 0, max_pwr = 0;
738 u8 i, flag = 0;
739 size_t triplet_size;
740 int ret;
741
742 lbs_deb_enter(LBS_DEB_11D);
743
744 memset(&cmd, 0, sizeof(cmd));
745 cmd.action = cpu_to_le16(CMD_ACT_SET);
746
747 lbs_deb_11d("Setting country code '%c%c'\n",
748 request->alpha2[0], request->alpha2[1]);
749
750 domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);
751
752 /* Set country code */
753 domain->country_code[0] = request->alpha2[0];
754 domain->country_code[1] = request->alpha2[1];
755 domain->country_code[2] = ' ';
756
757 /* Now set up the channel triplets; firmware is somewhat picky here
758 * and doesn't validate channel numbers and spans; hence it would
759 * interpret a triplet of (36, 4, 20) as channels 36, 37, 38, 39. Since
760 * the last 3 aren't valid channels, the driver is responsible for
761 * splitting that up into 4 triplet pairs of (36, 1, 20) + (40, 1, 20)
762 * etc.
763 */
764 for (band = 0;
765 (band < IEEE80211_NUM_BANDS) && (num_triplet < MAX_11D_TRIPLETS);
766 band++) {
767
768 if (!bands[band])
769 continue;
770
771 for (i = 0;
772 (i < bands[band]->n_channels) && (num_triplet < MAX_11D_TRIPLETS);
773 i++) {
774 ch = &bands[band]->channels[i];
775 if (ch->flags & IEEE80211_CHAN_DISABLED)
776 continue;
777
778 if (!flag) {
779 flag = 1;
780 next_chan = first_channel = (u32) ch->hw_value;
781 max_pwr = ch->max_power;
782 num_parsed_chan = 1;
783 continue;
784 }
785
786 if ((ch->hw_value == next_chan + 1) &&
787 (ch->max_power == max_pwr)) {
788 /* Consolidate adjacent channels */
789 next_chan++;
790 num_parsed_chan++;
791 } else {
792 /* Add this triplet */
793 lbs_deb_11d("11D triplet (%d, %d, %d)\n",
794 first_channel, num_parsed_chan,
795 max_pwr);
796 t = &domain->triplet[num_triplet];
797 t->chans.first_channel = first_channel;
798 t->chans.num_channels = num_parsed_chan;
799 t->chans.max_power = max_pwr;
800 num_triplet++;
801 flag = 0;
802 }
803 }
804
805 if (flag) {
806 /* Add last triplet */
807 lbs_deb_11d("11D triplet (%d, %d, %d)\n", first_channel,
808 num_parsed_chan, max_pwr);
809 t = &domain->triplet[num_triplet];
810 t->chans.first_channel = first_channel;
811 t->chans.num_channels = num_parsed_chan;
812 t->chans.max_power = max_pwr;
813 num_triplet++;
814 }
815 }
816
817 lbs_deb_11d("# triplets %d\n", num_triplet);
818
819 /* Set command header sizes */
820 triplet_size = num_triplet * sizeof(struct ieee80211_country_ie_triplet);
821 domain->header.len = cpu_to_le16(sizeof(domain->country_code) +
822 triplet_size);
823
824 lbs_deb_hex(LBS_DEB_11D, "802.11D domain param set",
825 (u8 *) &cmd.domain.country_code,
826 le16_to_cpu(domain->header.len));
827
828 cmd.hdr.size = cpu_to_le16(sizeof(cmd.hdr) +
829 sizeof(cmd.action) +
830 sizeof(cmd.domain.header) +
831 sizeof(cmd.domain.country_code) +
832 triplet_size);
833
834 ret = lbs_cmd_with_response(priv, CMD_802_11D_DOMAIN_INFO, &cmd);
835
836 lbs_deb_leave_args(LBS_DEB_11D, "ret %d", ret);
837 return ret;
838}
839
Dan Williams4c7c6e002010-07-27 13:01:07 -0700840/**
841 * @brief Read a MAC, Baseband, or RF register
842 *
843 * @param priv pointer to struct lbs_private
844 * @param cmd register command, one of CMD_MAC_REG_ACCESS,
845 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
846 * @param offset byte offset of the register to get
847 * @param value on success, the value of the register at 'offset'
848 *
849 * @return 0 on success, error code on failure
850*/
851int lbs_get_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 *value)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200852{
Dan Williams4c7c6e002010-07-27 13:01:07 -0700853 struct cmd_ds_reg_access cmd;
854 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200855
Holger Schurig9012b282007-05-25 11:27:16 -0400856 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200857
Dan Williams4c7c6e002010-07-27 13:01:07 -0700858 BUG_ON(value == NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200859
Dan Williams4c7c6e002010-07-27 13:01:07 -0700860 memset(&cmd, 0, sizeof(cmd));
861 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
862 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200863
Dan Williams4c7c6e002010-07-27 13:01:07 -0700864 if (reg != CMD_MAC_REG_ACCESS &&
865 reg != CMD_BBP_REG_ACCESS &&
866 reg != CMD_RF_REG_ACCESS) {
867 ret = -EINVAL;
868 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200869 }
870
Dan Williams4c7c6e002010-07-27 13:01:07 -0700871 ret = lbs_cmd_with_response(priv, reg, &cmd);
872 if (ret) {
873 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
874 *value = cmd.value.bbp_rf;
875 else if (reg == CMD_MAC_REG_ACCESS)
876 *value = le32_to_cpu(cmd.value.mac);
877 }
878
879out:
880 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
881 return ret;
882}
883
884/**
885 * @brief Write a MAC, Baseband, or RF register
886 *
887 * @param priv pointer to struct lbs_private
888 * @param cmd register command, one of CMD_MAC_REG_ACCESS,
889 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
890 * @param offset byte offset of the register to set
891 * @param value the value to write to the register at 'offset'
892 *
893 * @return 0 on success, error code on failure
894*/
895int lbs_set_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 value)
896{
897 struct cmd_ds_reg_access cmd;
898 int ret = 0;
899
900 lbs_deb_enter(LBS_DEB_CMD);
901
902 memset(&cmd, 0, sizeof(cmd));
903 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
904 cmd.action = cpu_to_le16(CMD_ACT_SET);
905
906 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
907 cmd.value.bbp_rf = (u8) (value & 0xFF);
908 else if (reg == CMD_MAC_REG_ACCESS)
909 cmd.value.mac = cpu_to_le32(value);
910 else {
911 ret = -EINVAL;
912 goto out;
913 }
914
915 ret = lbs_cmd_with_response(priv, reg, &cmd);
916
917out:
918 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
919 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200920}
921
David Woodhouse681ffbb2007-12-15 20:04:54 -0500922static void lbs_queue_cmd(struct lbs_private *priv,
923 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200924{
925 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -0500926 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200927
Holger Schurig8ff12da2007-08-02 11:54:31 -0400928 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200929
David Woodhousec4ab4122007-12-15 00:41:51 -0500930 if (!cmdnode) {
931 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200932 goto done;
933 }
David Woodhoused9896ee2007-12-15 00:09:25 -0500934 if (!cmdnode->cmdbuf->size) {
935 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
936 goto done;
937 }
David Woodhouseae125bf2007-12-15 04:22:52 -0500938 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200939
940 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -0500941 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
Dan Williams0bb64082010-07-27 13:08:08 -0700942 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf;
Dan Williamsddac4522007-12-11 13:49:39 -0500943
Dan Williams0bb64082010-07-27 13:08:08 -0700944 if (psm->action == cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000945 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200946 addtail = 0;
947 }
948 }
949
Dan Williams0bb64082010-07-27 13:08:08 -0700950 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_WAKEUP_CONFIRM)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700951 addtail = 0;
952
David Woodhouseaa21c002007-12-08 20:04:36 +0000953 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200954
David Woodhouseac472462007-12-08 00:35:00 +0000955 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +0000956 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +0000957 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000958 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200959
David Woodhouseaa21c002007-12-08 20:04:36 +0000960 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200961
Holger Schurig8ff12da2007-08-02 11:54:31 -0400962 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -0500963 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200964
965done:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400966 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200967}
968
David Woodhouse18c52e72007-12-17 16:03:58 -0500969static void lbs_submit_command(struct lbs_private *priv,
970 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200971{
972 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -0500973 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -0500974 uint16_t cmdsize;
975 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +0200976 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500977 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200978
Holger Schurig8ff12da2007-08-02 11:54:31 -0400979 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980
Dan Williamsddac4522007-12-11 13:49:39 -0500981 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200982
David Woodhouseaa21c002007-12-08 20:04:36 +0000983 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +0000984 priv->cur_cmd = cmdnode;
David Woodhouseaa21c002007-12-08 20:04:36 +0000985 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986
Dan Williamsddac4522007-12-11 13:49:39 -0500987 cmdsize = le16_to_cpu(cmd->size);
988 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989
David Woodhouse18c52e72007-12-17 16:03:58 -0500990 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400991 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +0200992 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500993
Holger Schurige5225b32008-03-26 10:04:44 +0100994 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
995 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100996 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997
Dan Williamsddac4522007-12-11 13:49:39 -0500998 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -0500999
David Woodhoused9896ee2007-12-15 00:09:25 -05001000 if (ret) {
1001 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001002 /* Let the timer kick in and retry, and potentially reset
1003 the whole thing if the condition persists */
Holger Schurig57962f02008-05-14 16:30:28 +02001004 timeo = HZ/4;
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001005 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001006
Amitkumar Karwar49125452009-09-30 20:04:38 -07001007 if (command == CMD_802_11_DEEP_SLEEP) {
1008 if (priv->is_auto_deep_sleep_enabled) {
1009 priv->wakeup_dev_required = 1;
1010 priv->dnld_sent = 0;
1011 }
1012 priv->is_deep_sleep = 1;
1013 lbs_complete_command(priv, cmdnode, 0);
1014 } else {
1015 /* Setup the timer after transmit command */
1016 mod_timer(&priv->command_timer, jiffies + timeo);
1017 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018
David Woodhouse18c52e72007-12-17 16:03:58 -05001019 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020}
1021
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022/**
1023 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001024 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001025 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001026static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001027 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001028{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001029 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001031 if (!cmdnode)
1032 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001034 cmdnode->callback = NULL;
1035 cmdnode->callback_arg = 0;
1036
1037 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1038
1039 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1040 out:
1041 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001042}
1043
Holger Schurig69f90322007-11-23 15:43:44 +01001044static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1045 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046{
1047 unsigned long flags;
1048
David Woodhouseaa21c002007-12-08 20:04:36 +00001049 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001050 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001051 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052}
1053
David Woodhouse183aeac2007-12-15 01:52:54 -05001054void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1055 int result)
1056{
David Woodhouseae125bf2007-12-15 04:22:52 -05001057 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001058 cmd->cmdwaitqwoken = 1;
1059 wake_up_interruptible(&cmd->cmdwait_q);
1060
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001061 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001062 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001063 priv->cur_cmd = NULL;
1064}
1065
Dan Williamsd5db2df2008-08-21 17:51:07 -04001066int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067{
David Woodhousea7c45892007-12-17 22:43:48 -05001068 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001069 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070
Holger Schurig9012b282007-05-25 11:27:16 -04001071 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072
David Woodhousea7c45892007-12-17 22:43:48 -05001073 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1074 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075
Dan Williamsd5db2df2008-08-21 17:51:07 -04001076 /* Only v8 and below support setting the preamble */
1077 if (priv->fwrelease < 0x09000000) {
1078 switch (preamble) {
1079 case RADIO_PREAMBLE_SHORT:
Dan Williamsd5db2df2008-08-21 17:51:07 -04001080 case RADIO_PREAMBLE_AUTO:
1081 case RADIO_PREAMBLE_LONG:
1082 cmd.control = cpu_to_le16(preamble);
1083 break;
1084 default:
1085 goto out;
1086 }
David Woodhousea7c45892007-12-17 22:43:48 -05001087 }
1088
Dan Williamsd5db2df2008-08-21 17:51:07 -04001089 if (radio_on)
1090 cmd.control |= cpu_to_le16(0x1);
1091 else {
1092 cmd.control &= cpu_to_le16(~0x1);
1093 priv->txpower_cur = 0;
1094 }
David Woodhousea7c45892007-12-17 22:43:48 -05001095
Dan Williamsd5db2df2008-08-21 17:51:07 -04001096 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1097 radio_on ? "ON" : "OFF", preamble);
1098
1099 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -05001100
1101 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102
Dan Williamsd5db2df2008-08-21 17:51:07 -04001103out:
Holger Schurig9012b282007-05-25 11:27:16 -04001104 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001105 return ret;
1106}
1107
Holger Schurigc97329e2008-03-18 11:20:21 +01001108void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001110 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001111
Holger Schurig9012b282007-05-25 11:27:16 -04001112 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001113
Holger Schurig835d3ac2008-03-12 16:05:40 +01001114 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001115 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001116 cmd.reserved = 0;
1117
David Woodhouse75bf45a2008-05-20 13:32:45 +01001118 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001119
Holger Schurigc97329e2008-03-18 11:20:21 +01001120 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001121}
1122
1123/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001124 * @brief This function allocates the command buffer and link
1125 * it to command free queue.
1126 *
Holger Schurig69f90322007-11-23 15:43:44 +01001127 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001128 * @return 0 or -1
1129 */
Holger Schurig69f90322007-11-23 15:43:44 +01001130int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001131{
1132 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001133 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001134 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001135 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001136
Holger Schurig8ff12da2007-08-02 11:54:31 -04001137 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001138
Dan Williamsddac4522007-12-11 13:49:39 -05001139 /* Allocate and initialize the command array */
1140 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1141 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001142 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143 ret = -1;
1144 goto done;
1145 }
Dan Williamsddac4522007-12-11 13:49:39 -05001146 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001147
Dan Williamsddac4522007-12-11 13:49:39 -05001148 /* Allocate and initialize each command buffer in the command array */
1149 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1150 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1151 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001152 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001153 ret = -1;
1154 goto done;
1155 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156 }
1157
Dan Williamsddac4522007-12-11 13:49:39 -05001158 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1159 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1160 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001162 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001163
1164done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001165 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001166 return ret;
1167}
1168
1169/**
1170 * @brief This function frees the command buffer.
1171 *
Holger Schurig69f90322007-11-23 15:43:44 +01001172 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173 * @return 0 or -1
1174 */
Holger Schurig69f90322007-11-23 15:43:44 +01001175int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001176{
Dan Williamsddac4522007-12-11 13:49:39 -05001177 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001179
Holger Schurig8ff12da2007-08-02 11:54:31 -04001180 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181
1182 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001183 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001184 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001185 goto done;
1186 }
1187
Dan Williamsddac4522007-12-11 13:49:39 -05001188 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189
1190 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001191 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1192 if (cmdarray[i].cmdbuf) {
1193 kfree(cmdarray[i].cmdbuf);
1194 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001195 }
1196 }
1197
1198 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001199 if (priv->cmd_array) {
1200 kfree(priv->cmd_array);
1201 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001202 }
1203
1204done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001205 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206 return 0;
1207}
1208
1209/**
1210 * @brief This function gets a free command node if available in
1211 * command free queue.
1212 *
Holger Schurig69f90322007-11-23 15:43:44 +01001213 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1215 */
Dan Williamsd06956b2010-07-27 13:16:24 -07001216static struct cmd_ctrl_node *lbs_get_free_cmd_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217{
1218 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001219 unsigned long flags;
1220
Holger Schurig8ff12da2007-08-02 11:54:31 -04001221 lbs_deb_enter(LBS_DEB_HOST);
1222
David Woodhouseaa21c002007-12-08 20:04:36 +00001223 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224 return NULL;
1225
David Woodhouseaa21c002007-12-08 20:04:36 +00001226 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227
David Woodhouseaa21c002007-12-08 20:04:36 +00001228 if (!list_empty(&priv->cmdfreeq)) {
1229 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001230 struct cmd_ctrl_node, list);
1231 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001232 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001233 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001234 tempnode = NULL;
1235 }
1236
David Woodhouseaa21c002007-12-08 20:04:36 +00001237 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001238
Holger Schurig8ff12da2007-08-02 11:54:31 -04001239 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001240 return tempnode;
1241}
1242
1243/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001244 * @brief This function executes next command in command
Nick Andrew877d0312009-01-26 11:06:57 +01001245 * pending queue. It will put firmware back to PS mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246 * if applicable.
1247 *
Holger Schurig69f90322007-11-23 15:43:44 +01001248 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001249 * @return 0 or -1
1250 */
Holger Schurig69f90322007-11-23 15:43:44 +01001251int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001253 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001254 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001255 unsigned long flags;
1256 int ret = 0;
1257
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001258 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1259 * only caller to us is lbs_thread() and we get even when a
1260 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001261 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001262
David Woodhouseaa21c002007-12-08 20:04:36 +00001263 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264
David Woodhouseaa21c002007-12-08 20:04:36 +00001265 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001266 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001267 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001268 ret = -1;
1269 goto done;
1270 }
1271
David Woodhouseaa21c002007-12-08 20:04:36 +00001272 if (!list_empty(&priv->cmdpendingq)) {
1273 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001274 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275 }
1276
David Woodhouseaa21c002007-12-08 20:04:36 +00001277 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001278
1279 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001280 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001281
Dan Williamsddac4522007-12-11 13:49:39 -05001282 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001283 if ((priv->psstate == PS_STATE_SLEEP) ||
1284 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001285 lbs_deb_host(
1286 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001287 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001288 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001289 ret = -1;
1290 goto done;
1291 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001292 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001293 "0x%04x in psstate %d\n",
1294 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001295 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001296 /*
1297 * 1. Non-PS command:
1298 * Queue it. set needtowakeup to TRUE if current state
Dan Williams0bb64082010-07-27 13:08:08 -07001299 * is SLEEP, otherwise call send EXIT_PS.
1300 * 2. PS command but not EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001301 * Ignore it.
Dan Williams0bb64082010-07-27 13:08:08 -07001302 * 3. PS command EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303 * Set needtowakeup to TRUE if current state is SLEEP,
1304 * otherwise send this command down to firmware
1305 * immediately.
1306 */
Dan Williamsddac4522007-12-11 13:49:39 -05001307 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001308 /* Prepare to send Exit PS,
1309 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001310 if ((priv->psstate == PS_STATE_SLEEP)
1311 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312 ) {
1313 /* w/ new scheme, it will not reach here.
1314 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001315 priv->needtowakeup = 1;
Dan Williams0bb64082010-07-27 13:08:08 -07001316 } else {
1317 lbs_set_ps_mode(priv,
1318 PS_MODE_ACTION_EXIT_PS,
1319 false);
1320 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321
1322 ret = 0;
1323 goto done;
1324 } else {
1325 /*
1326 * PS command. Ignore it if it is not Exit_PS.
1327 * otherwise send it down immediately.
1328 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001329 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330
Holger Schurig8ff12da2007-08-02 11:54:31 -04001331 lbs_deb_host(
1332 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001333 psm->action);
1334 if (psm->action !=
Dan Williams0bb64082010-07-27 13:08:08 -07001335 cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001336 lbs_deb_host(
1337 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001338 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001339 spin_lock_irqsave(&priv->driver_lock, flags);
1340 lbs_complete_command(priv, cmdnode, 0);
1341 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001342
1343 ret = 0;
1344 goto done;
1345 }
1346
David Woodhouseaa21c002007-12-08 20:04:36 +00001347 if ((priv->psstate == PS_STATE_SLEEP) ||
1348 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001349 lbs_deb_host(
1350 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001351 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001352 spin_lock_irqsave(&priv->driver_lock, flags);
1353 lbs_complete_command(priv, cmdnode, 0);
1354 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001355 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001356
1357 ret = 0;
1358 goto done;
1359 }
1360
Holger Schurig8ff12da2007-08-02 11:54:31 -04001361 lbs_deb_host(
1362 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 }
1364 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001365 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001366 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001367 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001368 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001369 } else {
1370 /*
1371 * check if in power save mode, if yes, put the device back
1372 * to PS mode
1373 */
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301374#ifdef TODO
1375 /*
1376 * This was the old code for libertas+wext. Someone that
1377 * understands this beast should re-code it in a sane way.
1378 *
1379 * I actually don't understand why this is related to WPA
1380 * and to connection status, shouldn't powering should be
1381 * independ of such things?
1382 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001383 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1384 (priv->psstate == PS_STATE_FULL_POWER) &&
1385 ((priv->connect_status == LBS_CONNECTED) ||
Holger Schurig602114a2009-12-02 15:26:01 +01001386 lbs_mesh_connected(priv))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001387 if (priv->secinfo.WPAenabled ||
1388 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001389 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001390 if (priv->wpa_mcast_key.len ||
1391 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001392 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1394 " go back to PS_SLEEP");
Dan Williams0bb64082010-07-27 13:08:08 -07001395 lbs_set_ps_mode(priv,
1396 PS_MODE_ACTION_ENTER_PS,
1397 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398 }
1399 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001400 lbs_deb_host(
1401 "EXEC_NEXT_CMD: cmdpendingq empty, "
1402 "go back to PS_SLEEP");
Dan Williams0bb64082010-07-27 13:08:08 -07001403 lbs_set_ps_mode(priv, PS_MODE_ACTION_ENTER_PS,
1404 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001405 }
1406 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301407#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 }
1409
1410 ret = 0;
1411done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001412 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001413 return ret;
1414}
1415
Holger Schurigf539f2e2008-03-26 13:22:11 +01001416static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417{
1418 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001419 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420
Holger Schurig8ff12da2007-08-02 11:54:31 -04001421 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001422 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1423 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424
Holger Schurigf539f2e2008-03-26 13:22:11 +01001425 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1426 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001427 if (ret) {
Holger Schurigf539f2e2008-03-26 13:22:11 +01001428 lbs_pr_alert("confirm_sleep failed\n");
Holger Schurig7919b892008-04-01 14:50:43 +02001429 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430 }
Holger Schurig7919b892008-04-01 14:50:43 +02001431
1432 spin_lock_irqsave(&priv->driver_lock, flags);
1433
Holger Schuriga01f5452008-06-04 11:10:40 +02001434 /* We don't get a response on the sleep-confirmation */
1435 priv->dnld_sent = DNLD_RES_RECEIVED;
1436
Amitkumar Karwar66fceb62010-05-19 03:24:38 -07001437 if (priv->is_host_sleep_configured) {
1438 priv->is_host_sleep_activated = 1;
1439 wake_up_interruptible(&priv->host_sleep_q);
1440 }
1441
Holger Schurig7919b892008-04-01 14:50:43 +02001442 /* If nothing to do, go back to sleep (?) */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001443 if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
Holger Schurig7919b892008-04-01 14:50:43 +02001444 priv->psstate = PS_STATE_SLEEP;
1445
1446 spin_unlock_irqrestore(&priv->driver_lock, flags);
1447
1448out:
Holger Schurigf539f2e2008-03-26 13:22:11 +01001449 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001450}
1451
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001452/**
1453 * @brief This function checks condition and prepares to
1454 * send sleep confirm command to firmware if ok.
1455 *
Holger Schurig69f90322007-11-23 15:43:44 +01001456 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001457 * @param psmode Power Saving mode
1458 * @return n/a
1459 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001460void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001461{
1462 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001463 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464
Holger Schurig8ff12da2007-08-02 11:54:31 -04001465 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001466
Holger Schuriga01f5452008-06-04 11:10:40 +02001467 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f42007-05-25 13:05:16 -04001468 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001470 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 }
1472
Holger Schurig7919b892008-04-01 14:50:43 +02001473 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001474 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001475 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001476 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001477 }
Holger Schurig7919b892008-04-01 14:50:43 +02001478
1479 /* Pending events or command responses? */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001480 if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001481 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02001482 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001484 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001485
1486 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001487 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01001488 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001489 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001490 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491 }
1492
Holger Schurig8ff12da2007-08-02 11:54:31 -04001493 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001494}
Holger Schurig675787e2007-12-05 17:58:11 +01001495
1496
Anna Neal0112c9e2008-09-11 11:17:25 -07001497/**
1498 * @brief Configures the transmission power control functionality.
1499 *
1500 * @param priv A pointer to struct lbs_private structure
1501 * @param enable Transmission power control enable
1502 * @param p0 Power level when link quality is good (dBm).
1503 * @param p1 Power level when link quality is fair (dBm).
1504 * @param p2 Power level when link quality is poor (dBm).
1505 * @param usesnr Use Signal to Noise Ratio in TPC
1506 *
1507 * @return 0 on success
1508 */
1509int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1510 int8_t p2, int usesnr)
1511{
1512 struct cmd_ds_802_11_tpc_cfg cmd;
1513 int ret;
1514
1515 memset(&cmd, 0, sizeof(cmd));
1516 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1517 cmd.action = cpu_to_le16(CMD_ACT_SET);
1518 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04001519 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07001520 cmd.P0 = p0;
1521 cmd.P1 = p1;
1522 cmd.P2 = p2;
1523
1524 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1525
1526 return ret;
1527}
1528
1529/**
1530 * @brief Configures the power adaptation settings.
1531 *
1532 * @param priv A pointer to struct lbs_private structure
1533 * @param enable Power adaptation enable
1534 * @param p0 Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1535 * @param p1 Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1536 * @param p2 Power level for 48 and 54 Mbps (dBm).
1537 *
1538 * @return 0 on Success
1539 */
1540
1541int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1542 int8_t p1, int8_t p2)
1543{
1544 struct cmd_ds_802_11_pa_cfg cmd;
1545 int ret;
1546
1547 memset(&cmd, 0, sizeof(cmd));
1548 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1549 cmd.action = cpu_to_le16(CMD_ACT_SET);
1550 cmd.enable = !!enable;
1551 cmd.P0 = p0;
1552 cmd.P1 = p1;
1553 cmd.P2 = p2;
1554
1555 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1556
1557 return ret;
1558}
1559
1560
Holger Schurig6d898b12009-10-14 16:49:53 +02001561struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001562 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1563 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1564 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01001565{
Holger Schurig675787e2007-12-05 17:58:11 +01001566 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01001567
1568 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01001569
David Woodhouseaa21c002007-12-08 20:04:36 +00001570 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01001571 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05001572 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01001573 goto done;
1574 }
1575
Dan Williams77ccdcf2010-07-27 13:15:45 -07001576 /* No commands are allowed in Deep Sleep until we toggle the GPIO
1577 * to wake up the card and it has signaled that it's ready.
1578 */
1579 if (!priv->is_auto_deep_sleep_enabled) {
1580 if (priv->is_deep_sleep) {
1581 lbs_deb_cmd("command not allowed in deep sleep\n");
1582 cmdnode = ERR_PTR(-EBUSY);
1583 goto done;
1584 }
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001585 }
1586
Dan Williamsd06956b2010-07-27 13:16:24 -07001587 cmdnode = lbs_get_free_cmd_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01001588 if (cmdnode == NULL) {
1589 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1590
1591 /* Wake up main thread to execute next command */
1592 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05001593 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01001594 goto done;
1595 }
1596
David Woodhouse448a51a2007-12-08 00:59:54 +00001597 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05001598 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01001599
Dan Williams7ad994d2007-12-11 12:33:30 -05001600 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001601 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05001602
Holger Schurig675787e2007-12-05 17:58:11 +01001603 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00001604 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05001605 cmdnode->cmdbuf->command = cpu_to_le16(command);
1606 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
1607 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
1608 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01001609
1610 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1611
Holger Schurig675787e2007-12-05 17:58:11 +01001612 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001613 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01001614 wake_up_interruptible(&priv->waitq);
1615
David Woodhouse3399ea52007-12-15 03:09:33 -05001616 done:
1617 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
1618 return cmdnode;
1619}
1620
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001621void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1622 struct cmd_header *in_cmd, int in_cmd_size)
1623{
1624 lbs_deb_enter(LBS_DEB_CMD);
1625 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1626 lbs_cmd_async_callback, 0);
1627 lbs_deb_leave(LBS_DEB_CMD);
1628}
1629
David Woodhouse3399ea52007-12-15 03:09:33 -05001630int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1631 struct cmd_header *in_cmd, int in_cmd_size,
1632 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1633 unsigned long callback_arg)
1634{
1635 struct cmd_ctrl_node *cmdnode;
1636 unsigned long flags;
1637 int ret = 0;
1638
1639 lbs_deb_enter(LBS_DEB_HOST);
1640
1641 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1642 callback, callback_arg);
1643 if (IS_ERR(cmdnode)) {
1644 ret = PTR_ERR(cmdnode);
1645 goto done;
1646 }
1647
Holger Schurig675787e2007-12-05 17:58:11 +01001648 might_sleep();
1649 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
1650
David Woodhouseaa21c002007-12-08 20:04:36 +00001651 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05001652 ret = cmdnode->result;
1653 if (ret)
1654 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
1655 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05001656
David Woodhousead12d0f2007-12-15 02:06:16 -05001657 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001658 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01001659
1660done:
1661 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1662 return ret;
1663}
Dan Williams14e865b2007-12-10 15:11:23 -05001664EXPORT_SYMBOL_GPL(__lbs_cmd);