blob: 6c8a9d952a01b6f5ac1a5c531dde1c64f2b162ee [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>
Holger Schurige93156e2009-10-22 15:30:58 +02009
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include "decl.h"
Kiran Divekare86dc1c2010-06-14 22:01:26 +053011#include "cfg.h"
Dan Williams6e66f032007-12-11 12:42:16 -050012#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013
Holger Schurige93156e2009-10-22 15:30:58 +020014
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050015static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
Holger Schurig0d61d042007-12-05 17:58:06 +010016
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020017/**
Holger Schurig8db4a2b2008-03-19 10:11:00 +010018 * @brief Simple callback that copies response back into command
19 *
20 * @param priv A pointer to struct lbs_private structure
21 * @param extra A pointer to the original command structure for which
22 * 'resp' is a response
23 * @param resp A pointer to the command response
24 *
25 * @return 0 on success, error on failure
26 */
27int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
28 struct cmd_header *resp)
29{
30 struct cmd_header *buf = (void *)extra;
31 uint16_t copy_len;
32
33 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
34 memcpy(buf, resp, copy_len);
35 return 0;
36}
37EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
38
39/**
40 * @brief Simple callback that ignores the result. Use this if
41 * you just want to send a command to the hardware, but don't
42 * care for the result.
43 *
44 * @param priv ignored
45 * @param extra ignored
46 * @param resp ignored
47 *
48 * @return 0 for success
49 */
50static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
51 struct cmd_header *resp)
52{
53 return 0;
54}
55
56
57/**
Dan Williams852e1f22007-12-10 15:24:47 -050058 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020059 *
60 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050061 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062 */
Dan Williams852e1f22007-12-10 15:24:47 -050063static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064{
Dan Williams852e1f22007-12-10 15:24:47 -050065 switch (cmd) {
66 case CMD_802_11_RSSI:
67 return 1;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070068 case CMD_802_11_HOST_SLEEP_CFG:
69 return 1;
Dan Williams852e1f22007-12-10 15:24:47 -050070 default:
71 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020072 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020073 return 0;
74}
75
Dan Williams6e66f032007-12-11 12:42:16 -050076/**
Amitkumar Karwar63f275d2009-10-06 19:20:28 -070077 * @brief This function checks if the command is allowed.
78 *
79 * @param priv A pointer to lbs_private structure
80 * @return allowed or not allowed.
81 */
82
83static int lbs_is_cmd_allowed(struct lbs_private *priv)
84{
85 int ret = 1;
86
87 lbs_deb_enter(LBS_DEB_CMD);
88
89 if (!priv->is_auto_deep_sleep_enabled) {
90 if (priv->is_deep_sleep) {
91 lbs_deb_cmd("command not allowed in deep sleep\n");
92 ret = 0;
93 }
94 }
95
96 lbs_deb_leave(LBS_DEB_CMD);
97 return ret;
98}
99
100/**
Dan Williams6e66f032007-12-11 12:42:16 -0500101 * @brief Updates the hardware details like MAC address and regulatory region
102 *
103 * @param priv A pointer to struct lbs_private structure
104 *
105 * @return 0 on success, error on failure
106 */
107int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200108{
Dan Williams6e66f032007-12-11 12:42:16 -0500109 struct cmd_ds_get_hw_spec cmd;
110 int ret = -1;
111 u32 i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112
Holger Schurig9012b282007-05-25 11:27:16 -0400113 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200114
Dan Williams6e66f032007-12-11 12:42:16 -0500115 memset(&cmd, 0, sizeof(cmd));
116 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
117 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -0500118 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -0500119 if (ret)
120 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200121
Dan Williams6e66f032007-12-11 12:42:16 -0500122 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500123
Holger Schurigdac10a92008-01-16 15:55:22 +0100124 /* The firmware release is in an interesting format: the patch
125 * level is in the most significant nibble ... so fix that: */
126 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
127 priv->fwrelease = (priv->fwrelease << 8) |
128 (priv->fwrelease >> 24 & 0xff);
129
130 /* Some firmware capabilities:
131 * CF card firmware 5.0.16p0: cap 0x00000303
132 * USB dongle firmware 5.110.17p2: cap 0x00000303
133 */
Johannes Berge1749612008-10-27 15:59:26 -0700134 lbs_pr_info("%pM, fw %u.%u.%up%u, cap 0x%08x\n",
135 cmd.permanentaddr,
Holger Schurigdac10a92008-01-16 15:55:22 +0100136 priv->fwrelease >> 24 & 0xff,
137 priv->fwrelease >> 16 & 0xff,
138 priv->fwrelease >> 8 & 0xff,
139 priv->fwrelease & 0xff,
140 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500141 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
142 cmd.hwifversion, cmd.version);
143
144 /* Clamp region code to 8-bit since FW spec indicates that it should
145 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
146 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200147 *
148 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
149 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500150 */
Marek Vasut15483992009-07-16 19:19:53 +0200151 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
152 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
153 else
154 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500155
156 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
157 /* use the region code to search for the index */
158 if (priv->regioncode == lbs_region_code_to_index[i])
159 break;
160 }
161
162 /* if it's unidentified region code, use the default (USA) */
163 if (i >= MRVDRV_MAX_REGION_CODE) {
164 priv->regioncode = 0x10;
165 lbs_pr_info("unidentified region code; using the default (USA)\n");
166 }
167
168 if (priv->current_addr[0] == 0xff)
169 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
170
171 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
172 if (priv->mesh_dev)
173 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
174
Dan Williams6e66f032007-12-11 12:42:16 -0500175out:
Holger Schurig9012b282007-05-25 11:27:16 -0400176 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500177 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178}
179
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700180static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
181 struct cmd_header *resp)
182{
183 lbs_deb_enter(LBS_DEB_CMD);
184 if (priv->wol_criteria == EHS_REMOVE_WAKEUP) {
185 priv->is_host_sleep_configured = 0;
186 if (priv->psstate == PS_STATE_FULL_POWER) {
187 priv->is_host_sleep_activated = 0;
188 wake_up_interruptible(&priv->host_sleep_q);
189 }
190 } else {
191 priv->is_host_sleep_configured = 1;
192 }
193 lbs_deb_leave(LBS_DEB_CMD);
194 return 0;
195}
196
Anna Neal582c1b52008-10-20 16:46:56 -0700197int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
198 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500199{
200 struct cmd_ds_host_sleep cmd_config;
201 int ret;
202
David Woodhouse9fae8992007-12-15 03:46:44 -0500203 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500204 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500205 cmd_config.gpio = priv->wol_gpio;
206 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500207
Anna Neal582c1b52008-10-20 16:46:56 -0700208 if (p_wol_config != NULL)
209 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
210 sizeof(struct wol_config));
211 else
212 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
213
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700214 ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
215 le16_to_cpu(cmd_config.hdr.size),
216 lbs_ret_host_sleep_cfg, 0);
David Woodhouse506e9022007-12-12 20:06:06 -0500217 if (!ret) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700218 if (p_wol_config)
Anna Neal582c1b52008-10-20 16:46:56 -0700219 memcpy((uint8_t *) p_wol_config,
220 (uint8_t *)&cmd_config.wol_conf,
221 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500222 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500223 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500224 }
David Woodhouse506e9022007-12-12 20:06:06 -0500225
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500226 return ret;
227}
228EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
229
Holger Schurige98a88d2008-03-19 14:25:58 +0100230static int lbs_cmd_802_11_ps_mode(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231 u16 cmd_action)
232{
233 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200234
Holger Schurig9012b282007-05-25 11:27:16 -0400235 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236
Dan Williams0aef64d2007-08-02 11:31:18 -0400237 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400238 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200239 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240 psm->action = cpu_to_le16(cmd_action);
241 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400242 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400243 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400244 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245
Holger Schurig252cf0d2007-08-02 13:09:34 -0400246 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400247 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400249 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250 break;
251
Dan Williams0aef64d2007-08-02 11:31:18 -0400252 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400253 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200254 break;
255
Dan Williams0aef64d2007-08-02 11:31:18 -0400256 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400257 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200258 break;
259
260 default:
261 break;
262 }
263
Holger Schurig9012b282007-05-25 11:27:16 -0400264 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265 return 0;
266}
267
David Woodhouse3fbe1042007-12-17 23:48:31 -0500268int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
269 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500271 struct cmd_ds_802_11_sleep_params cmd;
272 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200273
Holger Schurig9012b282007-05-25 11:27:16 -0400274 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200275
Dan Williams0aef64d2007-08-02 11:31:18 -0400276 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500277 memset(&cmd, 0, sizeof(cmd));
278 } else {
279 cmd.error = cpu_to_le16(sp->sp_error);
280 cmd.offset = cpu_to_le16(sp->sp_offset);
281 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
282 cmd.calcontrol = sp->sp_calcontrol;
283 cmd.externalsleepclk = sp->sp_extsleepclk;
284 cmd.reserved = cpu_to_le16(sp->sp_reserved);
285 }
286 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
287 cmd.action = cpu_to_le16(cmd_action);
288
289 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
290
291 if (!ret) {
292 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
293 "calcontrol 0x%x extsleepclk 0x%x\n",
294 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
295 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
296 cmd.externalsleepclk);
297
298 sp->sp_error = le16_to_cpu(cmd.error);
299 sp->sp_offset = le16_to_cpu(cmd.offset);
300 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
301 sp->sp_calcontrol = cmd.calcontrol;
302 sp->sp_extsleepclk = cmd.externalsleepclk;
303 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304 }
305
David Woodhouse3fbe1042007-12-17 23:48:31 -0500306 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 return 0;
308}
309
Amitkumar Karwar49125452009-09-30 20:04:38 -0700310static int lbs_wait_for_ds_awake(struct lbs_private *priv)
311{
312 int ret = 0;
313
314 lbs_deb_enter(LBS_DEB_CMD);
315
316 if (priv->is_deep_sleep) {
317 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
318 !priv->is_deep_sleep, (10 * HZ))) {
319 lbs_pr_err("ds_awake_q: timer expired\n");
320 ret = -1;
321 }
322 }
323
324 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
325 return ret;
326}
327
328int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
329{
330 int ret = 0;
331
332 lbs_deb_enter(LBS_DEB_CMD);
333
334 if (deep_sleep) {
335 if (priv->is_deep_sleep != 1) {
336 lbs_deb_cmd("deep sleep: sleep\n");
337 BUG_ON(!priv->enter_deep_sleep);
338 ret = priv->enter_deep_sleep(priv);
339 if (!ret) {
340 netif_stop_queue(priv->dev);
341 netif_carrier_off(priv->dev);
342 }
343 } else {
344 lbs_pr_err("deep sleep: already enabled\n");
345 }
346 } else {
347 if (priv->is_deep_sleep) {
348 lbs_deb_cmd("deep sleep: wakeup\n");
349 BUG_ON(!priv->exit_deep_sleep);
350 ret = priv->exit_deep_sleep(priv);
351 if (!ret) {
352 ret = lbs_wait_for_ds_awake(priv);
353 if (ret)
354 lbs_pr_err("deep sleep: wakeup"
355 "failed\n");
356 }
357 }
358 }
359
360 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
361 return ret;
362}
363
Dan Williams39fcf7a2008-09-10 12:49:00 -0400364/**
365 * @brief Set an SNMP MIB value
366 *
367 * @param priv A pointer to struct lbs_private structure
368 * @param oid The OID to set in the firmware
369 * @param val Value to set the OID to
370 *
371 * @return 0 on success, error on failure
372 */
373int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400375 struct cmd_ds_802_11_snmp_mib cmd;
376 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377
Holger Schurig9012b282007-05-25 11:27:16 -0400378 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379
Dan Williams39fcf7a2008-09-10 12:49:00 -0400380 memset(&cmd, 0, sizeof (cmd));
381 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
382 cmd.action = cpu_to_le16(CMD_ACT_SET);
383 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384
Dan Williams39fcf7a2008-09-10 12:49:00 -0400385 switch (oid) {
386 case SNMP_MIB_OID_BSS_TYPE:
387 cmd.bufsize = cpu_to_le16(sizeof(u8));
Holger Schurigfef06402009-10-22 15:30:59 +0200388 cmd.value[0] = val;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400390 case SNMP_MIB_OID_11D_ENABLE:
391 case SNMP_MIB_OID_FRAG_THRESHOLD:
392 case SNMP_MIB_OID_RTS_THRESHOLD:
393 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
394 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
395 cmd.bufsize = cpu_to_le16(sizeof(u16));
396 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200397 break;
398 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400399 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
400 ret = -EINVAL;
401 goto out;
402 }
403
404 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
405 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
406
407 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
408
409out:
410 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
411 return ret;
412}
413
414/**
415 * @brief Get an SNMP MIB value
416 *
417 * @param priv A pointer to struct lbs_private structure
418 * @param oid The OID to retrieve from the firmware
419 * @param out_val Location for the returned value
420 *
421 * @return 0 on success, error on failure
422 */
423int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
424{
425 struct cmd_ds_802_11_snmp_mib cmd;
426 int ret;
427
428 lbs_deb_enter(LBS_DEB_CMD);
429
430 memset(&cmd, 0, sizeof (cmd));
431 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
432 cmd.action = cpu_to_le16(CMD_ACT_GET);
433 cmd.oid = cpu_to_le16(oid);
434
435 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
436 if (ret)
437 goto out;
438
439 switch (le16_to_cpu(cmd.bufsize)) {
440 case sizeof(u8):
Holger Schurigfef06402009-10-22 15:30:59 +0200441 *out_val = cmd.value[0];
Dan Williams39fcf7a2008-09-10 12:49:00 -0400442 break;
443 case sizeof(u16):
444 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
445 break;
446 default:
447 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
448 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200449 break;
450 }
451
Dan Williams39fcf7a2008-09-10 12:49:00 -0400452out:
453 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
454 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200455}
456
Dan Williams87c8c722008-08-19 15:15:35 -0400457/**
458 * @brief Get the min, max, and current TX power
459 *
460 * @param priv A pointer to struct lbs_private structure
461 * @param curlevel Current power level in dBm
462 * @param minlevel Minimum supported power level in dBm (optional)
463 * @param maxlevel Maximum supported power level in dBm (optional)
464 *
465 * @return 0 on success, error on failure
466 */
467int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
468 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200469{
Dan Williams87c8c722008-08-19 15:15:35 -0400470 struct cmd_ds_802_11_rf_tx_power cmd;
471 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200472
Holger Schurig9012b282007-05-25 11:27:16 -0400473 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474
Dan Williams87c8c722008-08-19 15:15:35 -0400475 memset(&cmd, 0, sizeof(cmd));
476 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
477 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200478
Dan Williams87c8c722008-08-19 15:15:35 -0400479 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
480 if (ret == 0) {
481 *curlevel = le16_to_cpu(cmd.curlevel);
482 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100483 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400484 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100485 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486 }
Holger Schurig9012b282007-05-25 11:27:16 -0400487
488 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams87c8c722008-08-19 15:15:35 -0400489 return ret;
490}
491
492/**
493 * @brief Set the TX power
494 *
495 * @param priv A pointer to struct lbs_private structure
496 * @param dbm The desired power level in dBm
497 *
498 * @return 0 on success, error on failure
499 */
500int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
501{
502 struct cmd_ds_802_11_rf_tx_power cmd;
503 int ret;
504
505 lbs_deb_enter(LBS_DEB_CMD);
506
507 memset(&cmd, 0, sizeof(cmd));
508 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
509 cmd.action = cpu_to_le16(CMD_ACT_SET);
510 cmd.curlevel = cpu_to_le16(dbm);
511
512 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
513
514 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
515
516 lbs_deb_leave(LBS_DEB_CMD);
517 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200518}
519
Holger Schurige98a88d2008-03-19 14:25:58 +0100520static int lbs_cmd_802_11_monitor_mode(struct cmd_ds_command *cmd,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400521 u16 cmd_action, void *pdata_buf)
522{
523 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
524
525 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
526 cmd->size =
527 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200528 sizeof(struct cmd_header));
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400529
530 monitor->action = cpu_to_le16(cmd_action);
531 if (cmd_action == CMD_ACT_SET) {
532 monitor->mode =
533 cpu_to_le16((u16) (*(u32 *) pdata_buf));
534 }
535
536 return 0;
537}
538
Dan Williams2dd4b262007-12-11 16:54:15 -0500539/**
540 * @brief Get the radio channel
541 *
542 * @param priv A pointer to struct lbs_private structure
543 *
544 * @return The channel on success, error on failure
545 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200546static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200547{
Dan Williams2dd4b262007-12-11 16:54:15 -0500548 struct cmd_ds_802_11_rf_channel cmd;
549 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550
Holger Schurig8ff12da2007-08-02 11:54:31 -0400551 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200553 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500554 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
555 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200556
David Woodhouse689442d2007-12-12 16:00:42 -0500557 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500558 if (ret)
559 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200560
Dan Williamscb182a62007-12-11 17:35:51 -0500561 ret = le16_to_cpu(cmd.channel);
562 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500563
564out:
565 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
566 return ret;
567}
568
Holger Schurig73ab1f22008-04-02 16:52:19 +0200569int lbs_update_channel(struct lbs_private *priv)
570{
571 int ret;
572
573 /* the channel in f/w could be out of sync; get the current channel */
574 lbs_deb_enter(LBS_DEB_ASSOC);
575
576 ret = lbs_get_channel(priv);
577 if (ret > 0) {
Holger Schurigc14951f2009-10-22 15:30:50 +0200578 priv->channel = ret;
Holger Schurig73ab1f22008-04-02 16:52:19 +0200579 ret = 0;
580 }
581 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
582 return ret;
583}
584
Dan Williams2dd4b262007-12-11 16:54:15 -0500585/**
586 * @brief Set the radio channel
587 *
588 * @param priv A pointer to struct lbs_private structure
589 * @param channel The desired channel, or 0 to clear a locked channel
590 *
591 * @return 0 on success, error on failure
592 */
593int lbs_set_channel(struct lbs_private *priv, u8 channel)
594{
595 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530596#ifdef DEBUG
Holger Schurigc14951f2009-10-22 15:30:50 +0200597 u8 old_channel = priv->channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530598#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500599 int ret = 0;
600
601 lbs_deb_enter(LBS_DEB_CMD);
602
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200603 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500604 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
605 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
606 cmd.channel = cpu_to_le16(channel);
607
David Woodhouse689442d2007-12-12 16:00:42 -0500608 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500609 if (ret)
610 goto out;
611
Holger Schurigc14951f2009-10-22 15:30:50 +0200612 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
Dan Williamscb182a62007-12-11 17:35:51 -0500613 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
Holger Schurigc14951f2009-10-22 15:30:50 +0200614 priv->channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500615
616out:
617 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
618 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619}
620
Holger Schurige98a88d2008-03-19 14:25:58 +0100621static int lbs_cmd_reg_access(struct cmd_ds_command *cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622 u8 cmd_action, void *pdata_buf)
623{
Holger Schurig10078322007-11-15 18:05:47 -0500624 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200625
Holger Schurig9012b282007-05-25 11:27:16 -0400626 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627
Holger Schurig10078322007-11-15 18:05:47 -0500628 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000630 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400631 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632 {
633 struct cmd_ds_mac_reg_access *macreg;
634
635 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400636 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200637 + sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638 macreg =
639 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
640 macreg;
641
642 macreg->action = cpu_to_le16(cmd_action);
643 macreg->offset = cpu_to_le16((u16) offval->offset);
644 macreg->value = cpu_to_le32(offval->value);
645
646 break;
647 }
648
Dan Williams0aef64d2007-08-02 11:31:18 -0400649 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650 {
651 struct cmd_ds_bbp_reg_access *bbpreg;
652
653 cmdptr->size =
654 cpu_to_le16(sizeof
655 (struct cmd_ds_bbp_reg_access)
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200656 + sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200657 bbpreg =
658 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
659 bbpreg;
660
661 bbpreg->action = cpu_to_le16(cmd_action);
662 bbpreg->offset = cpu_to_le16((u16) offval->offset);
663 bbpreg->value = (u8) offval->value;
664
665 break;
666 }
667
Dan Williams0aef64d2007-08-02 11:31:18 -0400668 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200669 {
670 struct cmd_ds_rf_reg_access *rfreg;
671
672 cmdptr->size =
673 cpu_to_le16(sizeof
674 (struct cmd_ds_rf_reg_access) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200675 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676 rfreg =
677 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
678 rfreg;
679
680 rfreg->action = cpu_to_le16(cmd_action);
681 rfreg->offset = cpu_to_le16((u16) offval->offset);
682 rfreg->value = (u8) offval->value;
683
684 break;
685 }
686
687 default:
688 break;
689 }
690
Holger Schurig9012b282007-05-25 11:27:16 -0400691 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692 return 0;
693}
694
David Woodhouse681ffbb2007-12-15 20:04:54 -0500695static void lbs_queue_cmd(struct lbs_private *priv,
696 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200697{
698 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -0500699 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200700
Holger Schurig8ff12da2007-08-02 11:54:31 -0400701 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200702
David Woodhousec4ab4122007-12-15 00:41:51 -0500703 if (!cmdnode) {
704 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705 goto done;
706 }
David Woodhoused9896ee2007-12-15 00:09:25 -0500707 if (!cmdnode->cmdbuf->size) {
708 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
709 goto done;
710 }
David Woodhouseae125bf2007-12-15 04:22:52 -0500711 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200712
713 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -0500714 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -0500715 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -0500716
Dan Williams0aef64d2007-08-02 11:31:18 -0400717 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000718 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719 addtail = 0;
720 }
721 }
722
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700723 if (le16_to_cpu(cmdnode->cmdbuf->command) ==
724 CMD_802_11_WAKEUP_CONFIRM)
725 addtail = 0;
726
David Woodhouseaa21c002007-12-08 20:04:36 +0000727 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200728
David Woodhouseac472462007-12-08 00:35:00 +0000729 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +0000730 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +0000731 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000732 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200733
David Woodhouseaa21c002007-12-08 20:04:36 +0000734 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200735
Holger Schurig8ff12da2007-08-02 11:54:31 -0400736 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -0500737 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200738
739done:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400740 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741}
742
David Woodhouse18c52e72007-12-17 16:03:58 -0500743static void lbs_submit_command(struct lbs_private *priv,
744 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745{
746 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -0500747 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -0500748 uint16_t cmdsize;
749 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +0200750 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500751 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200752
Holger Schurig8ff12da2007-08-02 11:54:31 -0400753 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200754
Dan Williamsddac4522007-12-11 13:49:39 -0500755 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200756
David Woodhouseaa21c002007-12-08 20:04:36 +0000757 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +0000758 priv->cur_cmd = cmdnode;
759 priv->cur_cmd_retcode = 0;
760 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200761
Dan Williamsddac4522007-12-11 13:49:39 -0500762 cmdsize = le16_to_cpu(cmd->size);
763 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200764
David Woodhouse18c52e72007-12-17 16:03:58 -0500765 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400766 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +0200767 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500768
Holger Schurige5225b32008-03-26 10:04:44 +0100769 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
770 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100771 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400772
Dan Williamsddac4522007-12-11 13:49:39 -0500773 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -0500774
David Woodhoused9896ee2007-12-15 00:09:25 -0500775 if (ret) {
776 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -0500777 /* Let the timer kick in and retry, and potentially reset
778 the whole thing if the condition persists */
Holger Schurig57962f02008-05-14 16:30:28 +0200779 timeo = HZ/4;
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100780 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200781
Amitkumar Karwar49125452009-09-30 20:04:38 -0700782 if (command == CMD_802_11_DEEP_SLEEP) {
783 if (priv->is_auto_deep_sleep_enabled) {
784 priv->wakeup_dev_required = 1;
785 priv->dnld_sent = 0;
786 }
787 priv->is_deep_sleep = 1;
788 lbs_complete_command(priv, cmdnode, 0);
789 } else {
790 /* Setup the timer after transmit command */
791 mod_timer(&priv->command_timer, jiffies + timeo);
792 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793
David Woodhouse18c52e72007-12-17 16:03:58 -0500794 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200795}
796
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200797/**
798 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +0000799 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200800 */
David Woodhouse183aeac2007-12-15 01:52:54 -0500801static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500802 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200803{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500804 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200805
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500806 if (!cmdnode)
807 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500809 cmdnode->callback = NULL;
810 cmdnode->callback_arg = 0;
811
812 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
813
814 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
815 out:
816 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200817}
818
Holger Schurig69f90322007-11-23 15:43:44 +0100819static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
820 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821{
822 unsigned long flags;
823
David Woodhouseaa21c002007-12-08 20:04:36 +0000824 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -0500825 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +0000826 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200827}
828
David Woodhouse183aeac2007-12-15 01:52:54 -0500829void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
830 int result)
831{
832 if (cmd == priv->cur_cmd)
833 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500834
David Woodhouseae125bf2007-12-15 04:22:52 -0500835 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500836 cmd->cmdwaitqwoken = 1;
837 wake_up_interruptible(&cmd->cmdwait_q);
838
Holger Schurig8db4a2b2008-03-19 10:11:00 +0100839 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -0500840 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -0500841 priv->cur_cmd = NULL;
842}
843
Dan Williamsd5db2df2008-08-21 17:51:07 -0400844int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200845{
David Woodhousea7c45892007-12-17 22:43:48 -0500846 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -0400847 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200848
Holger Schurig9012b282007-05-25 11:27:16 -0400849 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200850
David Woodhousea7c45892007-12-17 22:43:48 -0500851 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
852 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200853
Dan Williamsd5db2df2008-08-21 17:51:07 -0400854 /* Only v8 and below support setting the preamble */
855 if (priv->fwrelease < 0x09000000) {
856 switch (preamble) {
857 case RADIO_PREAMBLE_SHORT:
Dan Williamsd5db2df2008-08-21 17:51:07 -0400858 case RADIO_PREAMBLE_AUTO:
859 case RADIO_PREAMBLE_LONG:
860 cmd.control = cpu_to_le16(preamble);
861 break;
862 default:
863 goto out;
864 }
David Woodhousea7c45892007-12-17 22:43:48 -0500865 }
866
Dan Williamsd5db2df2008-08-21 17:51:07 -0400867 if (radio_on)
868 cmd.control |= cpu_to_le16(0x1);
869 else {
870 cmd.control &= cpu_to_le16(~0x1);
871 priv->txpower_cur = 0;
872 }
David Woodhousea7c45892007-12-17 22:43:48 -0500873
Dan Williamsd5db2df2008-08-21 17:51:07 -0400874 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
875 radio_on ? "ON" : "OFF", preamble);
876
877 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -0500878
879 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200880
Dan Williamsd5db2df2008-08-21 17:51:07 -0400881out:
Holger Schurig9012b282007-05-25 11:27:16 -0400882 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200883 return ret;
884}
885
Holger Schurigc97329e2008-03-18 11:20:21 +0100886void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200887{
Holger Schurig835d3ac2008-03-12 16:05:40 +0100888 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200889
Holger Schurig9012b282007-05-25 11:27:16 -0400890 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891
Holger Schurig835d3ac2008-03-12 16:05:40 +0100892 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +0100893 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +0100894 cmd.reserved = 0;
895
David Woodhouse75bf45a2008-05-20 13:32:45 +0100896 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200897
Holger Schurigc97329e2008-03-18 11:20:21 +0100898 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200899}
900
901/**
Kiran Divekar1047d5e2010-06-04 23:20:42 -0700902 * @brief This function implements command CMD_802_11D_DOMAIN_INFO
903 * @param priv pointer to struct lbs_private
904 * @param cmd pointer to cmd buffer
905 * @param cmdno cmd ID
906 * @param cmdOption cmd action
907 * @return 0
908*/
909int lbs_cmd_802_11d_domain_info(struct lbs_private *priv,
910 struct cmd_ds_command *cmd,
911 u16 cmdoption)
912{
913 struct cmd_ds_802_11d_domain_info *pdomaininfo =
914 &cmd->params.domaininfo;
915 struct mrvl_ie_domain_param_set *domain = &pdomaininfo->domain;
916 u8 nr_triplet = priv->domain_reg.no_triplet;
917
918 lbs_deb_enter(LBS_DEB_11D);
919
920 lbs_deb_11d("nr_triplet=%x\n", nr_triplet);
921
922 pdomaininfo->action = cpu_to_le16(cmdoption);
923 if (cmdoption == CMD_ACT_GET) {
924 cmd->size = cpu_to_le16(sizeof(pdomaininfo->action) +
925 sizeof(struct cmd_header));
926 lbs_deb_hex(LBS_DEB_11D, "802_11D_DOMAIN_INFO", (u8 *) cmd,
927 le16_to_cpu(cmd->size));
928 goto done;
929 }
930
931 domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);
932 memcpy(domain->countrycode, priv->domain_reg.country_code,
933 sizeof(domain->countrycode));
934
935 domain->header.len = cpu_to_le16(nr_triplet
936 * sizeof(struct ieee80211_country_ie_triplet)
937 + sizeof(domain->countrycode));
938
939 if (nr_triplet) {
940 memcpy(domain->triplet, priv->domain_reg.triplet,
941 nr_triplet *
942 sizeof(struct ieee80211_country_ie_triplet));
943
944 cmd->size = cpu_to_le16(sizeof(pdomaininfo->action) +
945 le16_to_cpu(domain->header.len) +
946 sizeof(struct mrvl_ie_header) +
947 sizeof(struct cmd_header));
948 } else {
949 cmd->size = cpu_to_le16(sizeof(pdomaininfo->action) +
950 sizeof(struct cmd_header));
951 }
952
953 lbs_deb_hex(LBS_DEB_11D, "802_11D_DOMAIN_INFO", (u8 *) cmd,
954 le16_to_cpu(cmd->size));
955
956done:
957 lbs_deb_enter(LBS_DEB_11D);
958 return 0;
959}
960
961/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200962 * @brief This function prepare the command before send to firmware.
963 *
Holger Schurig69f90322007-11-23 15:43:44 +0100964 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200965 * @param cmd_no command number
966 * @param cmd_action command action: GET or SET
967 * @param wait_option wait option: wait response or not
968 * @param cmd_oid cmd oid: treated as sub command
969 * @param pdata_buf A pointer to informaion buffer
970 * @return 0 or -1
971 */
Holger Schurig69f90322007-11-23 15:43:44 +0100972int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973 u16 cmd_no,
974 u16 cmd_action,
975 u16 wait_option, u32 cmd_oid, void *pdata_buf)
976{
977 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200978 struct cmd_ctrl_node *cmdnode;
979 struct cmd_ds_command *cmdptr;
980 unsigned long flags;
981
Holger Schurig8ff12da2007-08-02 11:54:31 -0400982 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200983
David Woodhouseaa21c002007-12-08 20:04:36 +0000984 if (!priv) {
985 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986 ret = -1;
987 goto done;
988 }
989
David Woodhouseaa21c002007-12-08 20:04:36 +0000990 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400991 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992 ret = -1;
993 goto done;
994 }
995
Amitkumar Karwar63f275d2009-10-06 19:20:28 -0700996 if (!lbs_is_cmd_allowed(priv)) {
997 ret = -EBUSY;
998 goto done;
999 }
1000
Holger Schurig0d61d042007-12-05 17:58:06 +01001001 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002
1003 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001004 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005
1006 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001007 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001008 ret = -1;
1009 goto done;
1010 }
1011
Holger Schurige98a88d2008-03-19 14:25:58 +01001012 cmdnode->callback = NULL;
1013 cmdnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001014
Dan Williamsddac4522007-12-11 13:49:39 -05001015 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016
Holger Schurig8ff12da2007-08-02 11:54:31 -04001017 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001020 priv->seqnum++;
1021 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022
David Woodhouse981f1872007-05-25 23:36:54 -04001023 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001024 cmdptr->result = 0;
1025
1026 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001027 case CMD_802_11_PS_MODE:
Holger Schurige98a88d2008-03-19 14:25:58 +01001028 ret = lbs_cmd_802_11_ps_mode(cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001029 break;
1030
Dan Williams0aef64d2007-08-02 11:31:18 -04001031 case CMD_MAC_REG_ACCESS:
1032 case CMD_BBP_REG_ACCESS:
1033 case CMD_RF_REG_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001034 ret = lbs_cmd_reg_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001035 break;
1036
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001037 case CMD_802_11_MONITOR_MODE:
Holger Schurige98a88d2008-03-19 14:25:58 +01001038 ret = lbs_cmd_802_11_monitor_mode(cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001039 cmd_action, pdata_buf);
1040 break;
1041
Dan Williams0aef64d2007-08-02 11:31:18 -04001042 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001043 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 break;
1045
Dan Williams0aef64d2007-08-02 11:31:18 -04001046 case CMD_802_11_SET_AFC:
1047 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048
1049 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001050 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001051 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052
1053 memmove(&cmdptr->params.afc,
1054 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1055
1056 ret = 0;
1057 goto done;
1058
Kiran Divekar1047d5e2010-06-04 23:20:42 -07001059 case CMD_802_11D_DOMAIN_INFO:
1060 cmdptr->command = cpu_to_le16(cmd_no);
1061 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr, cmd_action);
1062 break;
1063
Dan Williams0aef64d2007-08-02 11:31:18 -04001064 case CMD_802_11_TPC_CFG:
1065 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066 cmdptr->size =
1067 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001068 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001069
1070 memmove(&cmdptr->params.tpccfg,
1071 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1072
1073 ret = 0;
1074 break;
David Woodhouse5844d122007-12-18 02:01:37 -05001075
Holger Schurig4143a232009-12-02 15:26:02 +01001076#ifdef CONFIG_LIBERTAS_MESH
1077
Dan Williams0aef64d2007-08-02 11:31:18 -04001078 case CMD_BT_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001079 ret = lbs_cmd_bt_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080 break;
1081
Dan Williams0aef64d2007-08-02 11:31:18 -04001082 case CMD_FWT_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001083 ret = lbs_cmd_fwt_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001084 break;
1085
Holger Schurig4143a232009-12-02 15:26:02 +01001086#endif
1087
Brajesh Dave96287ac2007-11-20 17:44:28 -05001088 case CMD_802_11_BEACON_CTRL:
1089 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1090 break;
Amitkumar Karwar49125452009-09-30 20:04:38 -07001091 case CMD_802_11_DEEP_SLEEP:
1092 cmdptr->command = cpu_to_le16(CMD_802_11_DEEP_SLEEP);
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001093 cmdptr->size = cpu_to_le16(sizeof(struct cmd_header));
Amitkumar Karwar49125452009-09-30 20:04:38 -07001094 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001095 default:
David Woodhousee37fc6e2008-05-20 11:47:16 +01001096 lbs_pr_err("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001097 ret = -1;
1098 break;
1099 }
1100
1101 /* return error, since the command preparation failed */
1102 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001103 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001104 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001105 ret = -1;
1106 goto done;
1107 }
1108
1109 cmdnode->cmdwaitqwoken = 0;
1110
David Woodhouse681ffbb2007-12-15 20:04:54 -05001111 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001112 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001113
Dan Williams0aef64d2007-08-02 11:31:18 -04001114 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001115 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001116 might_sleep();
1117 wait_event_interruptible(cmdnode->cmdwait_q,
1118 cmdnode->cmdwaitqwoken);
1119 }
1120
David Woodhouseaa21c002007-12-08 20:04:36 +00001121 spin_lock_irqsave(&priv->driver_lock, flags);
1122 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001123 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001124 priv->cur_cmd_retcode);
1125 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001126 ret = -1;
1127 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001128 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001129
1130done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001131 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132 return ret;
1133}
1134
1135/**
1136 * @brief This function allocates the command buffer and link
1137 * it to command free queue.
1138 *
Holger Schurig69f90322007-11-23 15:43:44 +01001139 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001140 * @return 0 or -1
1141 */
Holger Schurig69f90322007-11-23 15:43:44 +01001142int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143{
1144 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001145 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001147 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148
Holger Schurig8ff12da2007-08-02 11:54:31 -04001149 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001150
Dan Williamsddac4522007-12-11 13:49:39 -05001151 /* Allocate and initialize the command array */
1152 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1153 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001154 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155 ret = -1;
1156 goto done;
1157 }
Dan Williamsddac4522007-12-11 13:49:39 -05001158 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001159
Dan Williamsddac4522007-12-11 13:49:39 -05001160 /* Allocate and initialize each command buffer in the command array */
1161 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1162 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1163 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001164 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165 ret = -1;
1166 goto done;
1167 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168 }
1169
Dan Williamsddac4522007-12-11 13:49:39 -05001170 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1171 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1172 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001174 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001175
1176done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001177 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178 return ret;
1179}
1180
1181/**
1182 * @brief This function frees the command buffer.
1183 *
Holger Schurig69f90322007-11-23 15:43:44 +01001184 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001185 * @return 0 or -1
1186 */
Holger Schurig69f90322007-11-23 15:43:44 +01001187int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001188{
Dan Williamsddac4522007-12-11 13:49:39 -05001189 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001190 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001191
Holger Schurig8ff12da2007-08-02 11:54:31 -04001192 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001193
1194 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001195 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001196 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197 goto done;
1198 }
1199
Dan Williamsddac4522007-12-11 13:49:39 -05001200 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001201
1202 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001203 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1204 if (cmdarray[i].cmdbuf) {
1205 kfree(cmdarray[i].cmdbuf);
1206 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207 }
1208 }
1209
1210 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001211 if (priv->cmd_array) {
1212 kfree(priv->cmd_array);
1213 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214 }
1215
1216done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001217 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218 return 0;
1219}
1220
1221/**
1222 * @brief This function gets a free command node if available in
1223 * command free queue.
1224 *
Holger Schurig69f90322007-11-23 15:43:44 +01001225 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001226 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1227 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001228static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229{
1230 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001231 unsigned long flags;
1232
Holger Schurig8ff12da2007-08-02 11:54:31 -04001233 lbs_deb_enter(LBS_DEB_HOST);
1234
David Woodhouseaa21c002007-12-08 20:04:36 +00001235 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001236 return NULL;
1237
David Woodhouseaa21c002007-12-08 20:04:36 +00001238 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239
David Woodhouseaa21c002007-12-08 20:04:36 +00001240 if (!list_empty(&priv->cmdfreeq)) {
1241 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001242 struct cmd_ctrl_node, list);
1243 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001244 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001245 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246 tempnode = NULL;
1247 }
1248
David Woodhouseaa21c002007-12-08 20:04:36 +00001249 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001250
Holger Schurig8ff12da2007-08-02 11:54:31 -04001251 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252 return tempnode;
1253}
1254
1255/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001256 * @brief This function executes next command in command
Nick Andrew877d0312009-01-26 11:06:57 +01001257 * pending queue. It will put firmware back to PS mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001258 * if applicable.
1259 *
Holger Schurig69f90322007-11-23 15:43:44 +01001260 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261 * @return 0 or -1
1262 */
Holger Schurig69f90322007-11-23 15:43:44 +01001263int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001265 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001266 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001267 unsigned long flags;
1268 int ret = 0;
1269
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001270 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1271 * only caller to us is lbs_thread() and we get even when a
1272 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001273 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001274
David Woodhouseaa21c002007-12-08 20:04:36 +00001275 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001276
David Woodhouseaa21c002007-12-08 20:04:36 +00001277 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001278 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001279 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280 ret = -1;
1281 goto done;
1282 }
1283
David Woodhouseaa21c002007-12-08 20:04:36 +00001284 if (!list_empty(&priv->cmdpendingq)) {
1285 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001286 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287 }
1288
David Woodhouseaa21c002007-12-08 20:04:36 +00001289 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001290
1291 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001292 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293
Dan Williamsddac4522007-12-11 13:49:39 -05001294 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001295 if ((priv->psstate == PS_STATE_SLEEP) ||
1296 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001297 lbs_deb_host(
1298 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001299 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001300 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001301 ret = -1;
1302 goto done;
1303 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001304 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001305 "0x%04x in psstate %d\n",
1306 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001307 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001308 /*
1309 * 1. Non-PS command:
1310 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001311 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312 * 2. PS command but not Exit_PS:
1313 * Ignore it.
1314 * 3. PS command Exit_PS:
1315 * Set needtowakeup to TRUE if current state is SLEEP,
1316 * otherwise send this command down to firmware
1317 * immediately.
1318 */
Dan Williamsddac4522007-12-11 13:49:39 -05001319 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320 /* Prepare to send Exit PS,
1321 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001322 if ((priv->psstate == PS_STATE_SLEEP)
1323 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324 ) {
1325 /* w/ new scheme, it will not reach here.
1326 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001327 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328 } else
Holger Schurig10078322007-11-15 18:05:47 -05001329 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330
1331 ret = 0;
1332 goto done;
1333 } else {
1334 /*
1335 * PS command. Ignore it if it is not Exit_PS.
1336 * otherwise send it down immediately.
1337 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001338 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339
Holger Schurig8ff12da2007-08-02 11:54:31 -04001340 lbs_deb_host(
1341 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001342 psm->action);
1343 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001344 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001345 lbs_deb_host(
1346 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001347 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001348 spin_lock_irqsave(&priv->driver_lock, flags);
1349 lbs_complete_command(priv, cmdnode, 0);
1350 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001351
1352 ret = 0;
1353 goto done;
1354 }
1355
David Woodhouseaa21c002007-12-08 20:04:36 +00001356 if ((priv->psstate == PS_STATE_SLEEP) ||
1357 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001358 lbs_deb_host(
1359 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001360 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001361 spin_lock_irqsave(&priv->driver_lock, flags);
1362 lbs_complete_command(priv, cmdnode, 0);
1363 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001364 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001365
1366 ret = 0;
1367 goto done;
1368 }
1369
Holger Schurig8ff12da2007-08-02 11:54:31 -04001370 lbs_deb_host(
1371 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001372 }
1373 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001374 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001375 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001376 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001377 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378 } else {
1379 /*
1380 * check if in power save mode, if yes, put the device back
1381 * to PS mode
1382 */
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301383#ifdef TODO
1384 /*
1385 * This was the old code for libertas+wext. Someone that
1386 * understands this beast should re-code it in a sane way.
1387 *
1388 * I actually don't understand why this is related to WPA
1389 * and to connection status, shouldn't powering should be
1390 * independ of such things?
1391 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001392 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1393 (priv->psstate == PS_STATE_FULL_POWER) &&
1394 ((priv->connect_status == LBS_CONNECTED) ||
Holger Schurig602114a2009-12-02 15:26:01 +01001395 lbs_mesh_connected(priv))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001396 if (priv->secinfo.WPAenabled ||
1397 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001399 if (priv->wpa_mcast_key.len ||
1400 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001401 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1403 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001404 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001405 }
1406 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001407 lbs_deb_host(
1408 "EXEC_NEXT_CMD: cmdpendingq empty, "
1409 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001410 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001411 }
1412 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301413#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001414 }
1415
1416 ret = 0;
1417done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001418 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001419 return ret;
1420}
1421
Holger Schurigf539f2e2008-03-26 13:22:11 +01001422static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001423{
1424 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001425 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426
Holger Schurig8ff12da2007-08-02 11:54:31 -04001427 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001428 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1429 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430
Holger Schurigf539f2e2008-03-26 13:22:11 +01001431 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1432 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 if (ret) {
Holger Schurigf539f2e2008-03-26 13:22:11 +01001434 lbs_pr_alert("confirm_sleep failed\n");
Holger Schurig7919b892008-04-01 14:50:43 +02001435 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 }
Holger Schurig7919b892008-04-01 14:50:43 +02001437
1438 spin_lock_irqsave(&priv->driver_lock, flags);
1439
Holger Schuriga01f5452008-06-04 11:10:40 +02001440 /* We don't get a response on the sleep-confirmation */
1441 priv->dnld_sent = DNLD_RES_RECEIVED;
1442
Amitkumar Karwar66fceb62010-05-19 03:24:38 -07001443 if (priv->is_host_sleep_configured) {
1444 priv->is_host_sleep_activated = 1;
1445 wake_up_interruptible(&priv->host_sleep_q);
1446 }
1447
Holger Schurig7919b892008-04-01 14:50:43 +02001448 /* If nothing to do, go back to sleep (?) */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001449 if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
Holger Schurig7919b892008-04-01 14:50:43 +02001450 priv->psstate = PS_STATE_SLEEP;
1451
1452 spin_unlock_irqrestore(&priv->driver_lock, flags);
1453
1454out:
Holger Schurigf539f2e2008-03-26 13:22:11 +01001455 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001456}
1457
Holger Schurig69f90322007-11-23 15:43:44 +01001458void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001459{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001460 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001461
1462 /*
1463 * PS is currently supported only in Infrastructure mode
1464 * Remove this check if it is to be supported in IBSS mode also
1465 */
1466
Holger Schurig10078322007-11-15 18:05:47 -05001467 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001468 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469
Holger Schurig8ff12da2007-08-02 11:54:31 -04001470 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471}
1472
1473/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001474 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001475 *
Holger Schurig69f90322007-11-23 15:43:44 +01001476 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001477 * @param wait_option wait response or not
1478 * @return n/a
1479 */
Holger Schurig69f90322007-11-23 15:43:44 +01001480void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001481{
David Woodhouse981f1872007-05-25 23:36:54 -04001482 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483
Holger Schurig8ff12da2007-08-02 11:54:31 -04001484 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001485
Holger Schurig10078322007-11-15 18:05:47 -05001486 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001487
Holger Schurig10078322007-11-15 18:05:47 -05001488 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001489 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001490 wait_option, 0, &Localpsmode);
1491
Holger Schurig8ff12da2007-08-02 11:54:31 -04001492 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001493}
1494
1495/**
1496 * @brief This function checks condition and prepares to
1497 * send sleep confirm command to firmware if ok.
1498 *
Holger Schurig69f90322007-11-23 15:43:44 +01001499 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001500 * @param psmode Power Saving mode
1501 * @return n/a
1502 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001503void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504{
1505 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001506 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507
Holger Schurig8ff12da2007-08-02 11:54:31 -04001508 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001509
Holger Schuriga01f5452008-06-04 11:10:40 +02001510 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f42007-05-25 13:05:16 -04001511 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001512 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001513 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001514 }
1515
Holger Schurig7919b892008-04-01 14:50:43 +02001516 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001517 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001518 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001519 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001520 }
Holger Schurig7919b892008-04-01 14:50:43 +02001521
1522 /* Pending events or command responses? */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001523 if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001524 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02001525 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001526 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001527 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001528
1529 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001530 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01001531 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001532 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001533 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001534 }
1535
Holger Schurig8ff12da2007-08-02 11:54:31 -04001536 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537}
Holger Schurig675787e2007-12-05 17:58:11 +01001538
1539
Anna Neal0112c9e2008-09-11 11:17:25 -07001540/**
1541 * @brief Configures the transmission power control functionality.
1542 *
1543 * @param priv A pointer to struct lbs_private structure
1544 * @param enable Transmission power control enable
1545 * @param p0 Power level when link quality is good (dBm).
1546 * @param p1 Power level when link quality is fair (dBm).
1547 * @param p2 Power level when link quality is poor (dBm).
1548 * @param usesnr Use Signal to Noise Ratio in TPC
1549 *
1550 * @return 0 on success
1551 */
1552int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1553 int8_t p2, int usesnr)
1554{
1555 struct cmd_ds_802_11_tpc_cfg cmd;
1556 int ret;
1557
1558 memset(&cmd, 0, sizeof(cmd));
1559 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1560 cmd.action = cpu_to_le16(CMD_ACT_SET);
1561 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04001562 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07001563 cmd.P0 = p0;
1564 cmd.P1 = p1;
1565 cmd.P2 = p2;
1566
1567 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1568
1569 return ret;
1570}
1571
1572/**
1573 * @brief Configures the power adaptation settings.
1574 *
1575 * @param priv A pointer to struct lbs_private structure
1576 * @param enable Power adaptation enable
1577 * @param p0 Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1578 * @param p1 Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1579 * @param p2 Power level for 48 and 54 Mbps (dBm).
1580 *
1581 * @return 0 on Success
1582 */
1583
1584int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1585 int8_t p1, int8_t p2)
1586{
1587 struct cmd_ds_802_11_pa_cfg cmd;
1588 int ret;
1589
1590 memset(&cmd, 0, sizeof(cmd));
1591 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1592 cmd.action = cpu_to_le16(CMD_ACT_SET);
1593 cmd.enable = !!enable;
1594 cmd.P0 = p0;
1595 cmd.P1 = p1;
1596 cmd.P2 = p2;
1597
1598 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1599
1600 return ret;
1601}
1602
1603
Holger Schurig6d898b12009-10-14 16:49:53 +02001604struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001605 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1606 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1607 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01001608{
Holger Schurig675787e2007-12-05 17:58:11 +01001609 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01001610
1611 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01001612
David Woodhouseaa21c002007-12-08 20:04:36 +00001613 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01001614 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05001615 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01001616 goto done;
1617 }
1618
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001619 if (!lbs_is_cmd_allowed(priv)) {
1620 cmdnode = ERR_PTR(-EBUSY);
1621 goto done;
1622 }
1623
Holger Schurig675787e2007-12-05 17:58:11 +01001624 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01001625 if (cmdnode == NULL) {
1626 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1627
1628 /* Wake up main thread to execute next command */
1629 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05001630 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01001631 goto done;
1632 }
1633
David Woodhouse448a51a2007-12-08 00:59:54 +00001634 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05001635 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01001636
Dan Williams7ad994d2007-12-11 12:33:30 -05001637 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001638 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05001639
Holger Schurig675787e2007-12-05 17:58:11 +01001640 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00001641 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05001642 cmdnode->cmdbuf->command = cpu_to_le16(command);
1643 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
1644 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
1645 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01001646
1647 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1648
Holger Schurig675787e2007-12-05 17:58:11 +01001649 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001650 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01001651 wake_up_interruptible(&priv->waitq);
1652
David Woodhouse3399ea52007-12-15 03:09:33 -05001653 done:
1654 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
1655 return cmdnode;
1656}
1657
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001658void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1659 struct cmd_header *in_cmd, int in_cmd_size)
1660{
1661 lbs_deb_enter(LBS_DEB_CMD);
1662 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1663 lbs_cmd_async_callback, 0);
1664 lbs_deb_leave(LBS_DEB_CMD);
1665}
1666
David Woodhouse3399ea52007-12-15 03:09:33 -05001667int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1668 struct cmd_header *in_cmd, int in_cmd_size,
1669 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1670 unsigned long callback_arg)
1671{
1672 struct cmd_ctrl_node *cmdnode;
1673 unsigned long flags;
1674 int ret = 0;
1675
1676 lbs_deb_enter(LBS_DEB_HOST);
1677
1678 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1679 callback, callback_arg);
1680 if (IS_ERR(cmdnode)) {
1681 ret = PTR_ERR(cmdnode);
1682 goto done;
1683 }
1684
Holger Schurig675787e2007-12-05 17:58:11 +01001685 might_sleep();
1686 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
1687
David Woodhouseaa21c002007-12-08 20:04:36 +00001688 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05001689 ret = cmdnode->result;
1690 if (ret)
1691 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
1692 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05001693
David Woodhousead12d0f2007-12-15 02:06:16 -05001694 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001695 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01001696
1697done:
1698 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1699 return ret;
1700}
Dan Williams14e865b2007-12-10 15:11:23 -05001701EXPORT_SYMBOL_GPL(__lbs_cmd);