blob: 1065ce29cd080783daf7a1a79ff3c8e560acdefb [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
John W. Linville7e272fc2008-09-24 18:13:14 -04006#include <net/lib80211.h>
Holger Schurig7919b892008-04-01 14:50:43 +02007#include <linux/kfifo.h>
Holger Schurige93156e2009-10-22 15:30:58 +02008#include <linux/sched.h>
9
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020011#include "decl.h"
12#include "defs.h"
13#include "dev.h"
Holger Schurig697900a2008-04-02 16:27:10 +020014#include "assoc.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015#include "wext.h"
Holger Schurig2d465022009-10-22 15:30:48 +020016#include "scan.h"
Dan Williams6e66f032007-12-11 12:42:16 -050017#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020018
Holger Schurige93156e2009-10-22 15:30:58 +020019
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050020static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
Holger Schurig0d61d042007-12-05 17:58:06 +010021
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022/**
Holger Schurig8db4a2b2008-03-19 10:11:00 +010023 * @brief Simple callback that copies response back into command
24 *
25 * @param priv A pointer to struct lbs_private structure
26 * @param extra A pointer to the original command structure for which
27 * 'resp' is a response
28 * @param resp A pointer to the command response
29 *
30 * @return 0 on success, error on failure
31 */
32int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
33 struct cmd_header *resp)
34{
35 struct cmd_header *buf = (void *)extra;
36 uint16_t copy_len;
37
38 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
39 memcpy(buf, resp, copy_len);
40 return 0;
41}
42EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
43
44/**
45 * @brief Simple callback that ignores the result. Use this if
46 * you just want to send a command to the hardware, but don't
47 * care for the result.
48 *
49 * @param priv ignored
50 * @param extra ignored
51 * @param resp ignored
52 *
53 * @return 0 for success
54 */
55static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
56 struct cmd_header *resp)
57{
58 return 0;
59}
60
61
62/**
Dan Williams852e1f22007-12-10 15:24:47 -050063 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 *
65 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050066 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020067 */
Dan Williams852e1f22007-12-10 15:24:47 -050068static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020069{
Dan Williams852e1f22007-12-10 15:24:47 -050070 switch (cmd) {
71 case CMD_802_11_RSSI:
72 return 1;
73 default:
74 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076 return 0;
77}
78
Dan Williams6e66f032007-12-11 12:42:16 -050079/**
Amitkumar Karwar63f275d2009-10-06 19:20:28 -070080 * @brief This function checks if the command is allowed.
81 *
82 * @param priv A pointer to lbs_private structure
83 * @return allowed or not allowed.
84 */
85
86static int lbs_is_cmd_allowed(struct lbs_private *priv)
87{
88 int ret = 1;
89
90 lbs_deb_enter(LBS_DEB_CMD);
91
92 if (!priv->is_auto_deep_sleep_enabled) {
93 if (priv->is_deep_sleep) {
94 lbs_deb_cmd("command not allowed in deep sleep\n");
95 ret = 0;
96 }
97 }
98
99 lbs_deb_leave(LBS_DEB_CMD);
100 return ret;
101}
102
103/**
Dan Williams6e66f032007-12-11 12:42:16 -0500104 * @brief Updates the hardware details like MAC address and regulatory region
105 *
106 * @param priv A pointer to struct lbs_private structure
107 *
108 * @return 0 on success, error on failure
109 */
110int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111{
Dan Williams6e66f032007-12-11 12:42:16 -0500112 struct cmd_ds_get_hw_spec cmd;
113 int ret = -1;
114 u32 i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115
Holger Schurig9012b282007-05-25 11:27:16 -0400116 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200117
Dan Williams6e66f032007-12-11 12:42:16 -0500118 memset(&cmd, 0, sizeof(cmd));
119 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
120 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -0500121 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -0500122 if (ret)
123 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200124
Dan Williams6e66f032007-12-11 12:42:16 -0500125 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500126
Holger Schurigdac10a92008-01-16 15:55:22 +0100127 /* The firmware release is in an interesting format: the patch
128 * level is in the most significant nibble ... so fix that: */
129 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
130 priv->fwrelease = (priv->fwrelease << 8) |
131 (priv->fwrelease >> 24 & 0xff);
132
133 /* Some firmware capabilities:
134 * CF card firmware 5.0.16p0: cap 0x00000303
135 * USB dongle firmware 5.110.17p2: cap 0x00000303
136 */
Johannes Berge1749612008-10-27 15:59:26 -0700137 lbs_pr_info("%pM, fw %u.%u.%up%u, cap 0x%08x\n",
138 cmd.permanentaddr,
Holger Schurigdac10a92008-01-16 15:55:22 +0100139 priv->fwrelease >> 24 & 0xff,
140 priv->fwrelease >> 16 & 0xff,
141 priv->fwrelease >> 8 & 0xff,
142 priv->fwrelease & 0xff,
143 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500144 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
145 cmd.hwifversion, cmd.version);
146
Bing Zhao684d6b32009-03-25 09:51:16 -0700147 /* Determine mesh_fw_ver from fwrelease and fwcapinfo */
148 /* 5.0.16p0 9.0.0.p0 is known to NOT support any mesh */
149 /* 5.110.22 have mesh command with 0xa3 command id */
150 /* 10.0.0.p0 FW brings in mesh config command with different id */
151 /* Check FW version MSB and initialize mesh_fw_ver */
152 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V5)
153 priv->mesh_fw_ver = MESH_FW_OLD;
154 else if ((MRVL_FW_MAJOR_REV(priv->fwrelease) >= MRVL_FW_V10) &&
155 (priv->fwcapinfo & MESH_CAPINFO_ENABLE_MASK))
156 priv->mesh_fw_ver = MESH_FW_NEW;
157 else
158 priv->mesh_fw_ver = MESH_NONE;
159
Dan Williams6e66f032007-12-11 12:42:16 -0500160 /* Clamp region code to 8-bit since FW spec indicates that it should
161 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
162 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200163 *
164 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
165 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500166 */
Marek Vasut15483992009-07-16 19:19:53 +0200167 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
168 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
169 else
170 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500171
172 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
173 /* use the region code to search for the index */
174 if (priv->regioncode == lbs_region_code_to_index[i])
175 break;
176 }
177
178 /* if it's unidentified region code, use the default (USA) */
179 if (i >= MRVDRV_MAX_REGION_CODE) {
180 priv->regioncode = 0x10;
181 lbs_pr_info("unidentified region code; using the default (USA)\n");
182 }
183
184 if (priv->current_addr[0] == 0xff)
185 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
186
187 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
188 if (priv->mesh_dev)
189 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
190
191 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
192 ret = -1;
193 goto out;
194 }
195
Dan Williams6e66f032007-12-11 12:42:16 -0500196out:
Holger Schurig9012b282007-05-25 11:27:16 -0400197 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500198 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200199}
200
Anna Neal582c1b52008-10-20 16:46:56 -0700201int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
202 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500203{
204 struct cmd_ds_host_sleep cmd_config;
205 int ret;
206
David Woodhouse9fae8992007-12-15 03:46:44 -0500207 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500208 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500209 cmd_config.gpio = priv->wol_gpio;
210 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500211
Anna Neal582c1b52008-10-20 16:46:56 -0700212 if (p_wol_config != NULL)
213 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
214 sizeof(struct wol_config));
215 else
216 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
217
David Woodhouse689442d2007-12-12 16:00:42 -0500218 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500219 if (!ret) {
Anna Neal582c1b52008-10-20 16:46:56 -0700220 if (criteria) {
221 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
222 priv->wol_criteria = criteria;
223 } else
224 memcpy((uint8_t *) p_wol_config,
225 (uint8_t *)&cmd_config.wol_conf,
226 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500227 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500228 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500229 }
David Woodhouse506e9022007-12-12 20:06:06 -0500230
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500231 return ret;
232}
233EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
234
Holger Schurige98a88d2008-03-19 14:25:58 +0100235static int lbs_cmd_802_11_ps_mode(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236 u16 cmd_action)
237{
238 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239
Holger Schurig9012b282007-05-25 11:27:16 -0400240 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241
Dan Williams0aef64d2007-08-02 11:31:18 -0400242 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400243 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200244 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245 psm->action = cpu_to_le16(cmd_action);
246 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400247 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400248 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400249 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250
Holger Schurig252cf0d2007-08-02 13:09:34 -0400251 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400252 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200253 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400254 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200255 break;
256
Dan Williams0aef64d2007-08-02 11:31:18 -0400257 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400258 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259 break;
260
Dan Williams0aef64d2007-08-02 11:31:18 -0400261 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400262 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263 break;
264
265 default:
266 break;
267 }
268
Holger Schurig9012b282007-05-25 11:27:16 -0400269 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270 return 0;
271}
272
David Woodhouse3fbe1042007-12-17 23:48:31 -0500273int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
274 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200275{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500276 struct cmd_ds_802_11_sleep_params cmd;
277 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200278
Holger Schurig9012b282007-05-25 11:27:16 -0400279 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200280
Dan Williams0aef64d2007-08-02 11:31:18 -0400281 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500282 memset(&cmd, 0, sizeof(cmd));
283 } else {
284 cmd.error = cpu_to_le16(sp->sp_error);
285 cmd.offset = cpu_to_le16(sp->sp_offset);
286 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
287 cmd.calcontrol = sp->sp_calcontrol;
288 cmd.externalsleepclk = sp->sp_extsleepclk;
289 cmd.reserved = cpu_to_le16(sp->sp_reserved);
290 }
291 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
292 cmd.action = cpu_to_le16(cmd_action);
293
294 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
295
296 if (!ret) {
297 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
298 "calcontrol 0x%x extsleepclk 0x%x\n",
299 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
300 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
301 cmd.externalsleepclk);
302
303 sp->sp_error = le16_to_cpu(cmd.error);
304 sp->sp_offset = le16_to_cpu(cmd.offset);
305 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
306 sp->sp_calcontrol = cmd.calcontrol;
307 sp->sp_extsleepclk = cmd.externalsleepclk;
308 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200309 }
310
David Woodhouse3fbe1042007-12-17 23:48:31 -0500311 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200312 return 0;
313}
314
Amitkumar Karwar49125452009-09-30 20:04:38 -0700315static int lbs_wait_for_ds_awake(struct lbs_private *priv)
316{
317 int ret = 0;
318
319 lbs_deb_enter(LBS_DEB_CMD);
320
321 if (priv->is_deep_sleep) {
322 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
323 !priv->is_deep_sleep, (10 * HZ))) {
324 lbs_pr_err("ds_awake_q: timer expired\n");
325 ret = -1;
326 }
327 }
328
329 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
330 return ret;
331}
332
333int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
334{
335 int ret = 0;
336
337 lbs_deb_enter(LBS_DEB_CMD);
338
339 if (deep_sleep) {
340 if (priv->is_deep_sleep != 1) {
341 lbs_deb_cmd("deep sleep: sleep\n");
342 BUG_ON(!priv->enter_deep_sleep);
343 ret = priv->enter_deep_sleep(priv);
344 if (!ret) {
345 netif_stop_queue(priv->dev);
346 netif_carrier_off(priv->dev);
347 }
348 } else {
349 lbs_pr_err("deep sleep: already enabled\n");
350 }
351 } else {
352 if (priv->is_deep_sleep) {
353 lbs_deb_cmd("deep sleep: wakeup\n");
354 BUG_ON(!priv->exit_deep_sleep);
355 ret = priv->exit_deep_sleep(priv);
356 if (!ret) {
357 ret = lbs_wait_for_ds_awake(priv);
358 if (ret)
359 lbs_pr_err("deep sleep: wakeup"
360 "failed\n");
361 }
362 }
363 }
364
365 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
366 return ret;
367}
368
Dan Williams39fcf7a2008-09-10 12:49:00 -0400369/**
370 * @brief Set an SNMP MIB value
371 *
372 * @param priv A pointer to struct lbs_private structure
373 * @param oid The OID to set in the firmware
374 * @param val Value to set the OID to
375 *
376 * @return 0 on success, error on failure
377 */
378int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400380 struct cmd_ds_802_11_snmp_mib cmd;
381 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200382
Holger Schurig9012b282007-05-25 11:27:16 -0400383 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384
Dan Williams39fcf7a2008-09-10 12:49:00 -0400385 memset(&cmd, 0, sizeof (cmd));
386 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
387 cmd.action = cpu_to_le16(CMD_ACT_SET);
388 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389
Dan Williams39fcf7a2008-09-10 12:49:00 -0400390 switch (oid) {
391 case SNMP_MIB_OID_BSS_TYPE:
392 cmd.bufsize = cpu_to_le16(sizeof(u8));
Holger Schurigfef06402009-10-22 15:30:59 +0200393 cmd.value[0] = val;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400395 case SNMP_MIB_OID_11D_ENABLE:
396 case SNMP_MIB_OID_FRAG_THRESHOLD:
397 case SNMP_MIB_OID_RTS_THRESHOLD:
398 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
399 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
400 cmd.bufsize = cpu_to_le16(sizeof(u16));
401 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200402 break;
403 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400404 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
405 ret = -EINVAL;
406 goto out;
407 }
408
409 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
410 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
411
412 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
413
414out:
415 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
416 return ret;
417}
418
419/**
420 * @brief Get an SNMP MIB value
421 *
422 * @param priv A pointer to struct lbs_private structure
423 * @param oid The OID to retrieve from the firmware
424 * @param out_val Location for the returned value
425 *
426 * @return 0 on success, error on failure
427 */
428int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
429{
430 struct cmd_ds_802_11_snmp_mib cmd;
431 int ret;
432
433 lbs_deb_enter(LBS_DEB_CMD);
434
435 memset(&cmd, 0, sizeof (cmd));
436 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
437 cmd.action = cpu_to_le16(CMD_ACT_GET);
438 cmd.oid = cpu_to_le16(oid);
439
440 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
441 if (ret)
442 goto out;
443
444 switch (le16_to_cpu(cmd.bufsize)) {
445 case sizeof(u8):
Holger Schurigfef06402009-10-22 15:30:59 +0200446 *out_val = cmd.value[0];
Dan Williams39fcf7a2008-09-10 12:49:00 -0400447 break;
448 case sizeof(u16):
449 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
450 break;
451 default:
452 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
453 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454 break;
455 }
456
Dan Williams39fcf7a2008-09-10 12:49:00 -0400457out:
458 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
459 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200460}
461
Dan Williams87c8c722008-08-19 15:15:35 -0400462/**
463 * @brief Get the min, max, and current TX power
464 *
465 * @param priv A pointer to struct lbs_private structure
466 * @param curlevel Current power level in dBm
467 * @param minlevel Minimum supported power level in dBm (optional)
468 * @param maxlevel Maximum supported power level in dBm (optional)
469 *
470 * @return 0 on success, error on failure
471 */
472int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
473 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474{
Dan Williams87c8c722008-08-19 15:15:35 -0400475 struct cmd_ds_802_11_rf_tx_power cmd;
476 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477
Holger Schurig9012b282007-05-25 11:27:16 -0400478 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479
Dan Williams87c8c722008-08-19 15:15:35 -0400480 memset(&cmd, 0, sizeof(cmd));
481 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
482 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483
Dan Williams87c8c722008-08-19 15:15:35 -0400484 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
485 if (ret == 0) {
486 *curlevel = le16_to_cpu(cmd.curlevel);
487 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100488 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400489 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100490 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200491 }
Holger Schurig9012b282007-05-25 11:27:16 -0400492
493 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams87c8c722008-08-19 15:15:35 -0400494 return ret;
495}
496
497/**
498 * @brief Set the TX power
499 *
500 * @param priv A pointer to struct lbs_private structure
501 * @param dbm The desired power level in dBm
502 *
503 * @return 0 on success, error on failure
504 */
505int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
506{
507 struct cmd_ds_802_11_rf_tx_power cmd;
508 int ret;
509
510 lbs_deb_enter(LBS_DEB_CMD);
511
512 memset(&cmd, 0, sizeof(cmd));
513 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
514 cmd.action = cpu_to_le16(CMD_ACT_SET);
515 cmd.curlevel = cpu_to_le16(dbm);
516
517 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
518
519 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
520
521 lbs_deb_leave(LBS_DEB_CMD);
522 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200523}
524
Holger Schurige98a88d2008-03-19 14:25:58 +0100525static int lbs_cmd_802_11_monitor_mode(struct cmd_ds_command *cmd,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400526 u16 cmd_action, void *pdata_buf)
527{
528 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
529
530 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
531 cmd->size =
532 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200533 sizeof(struct cmd_header));
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400534
535 monitor->action = cpu_to_le16(cmd_action);
536 if (cmd_action == CMD_ACT_SET) {
537 monitor->mode =
538 cpu_to_le16((u16) (*(u32 *) pdata_buf));
539 }
540
541 return 0;
542}
543
Dan Williams2dd4b262007-12-11 16:54:15 -0500544/**
545 * @brief Get the radio channel
546 *
547 * @param priv A pointer to struct lbs_private structure
548 *
549 * @return The channel on success, error on failure
550 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200551static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552{
Dan Williams2dd4b262007-12-11 16:54:15 -0500553 struct cmd_ds_802_11_rf_channel cmd;
554 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555
Holger Schurig8ff12da2007-08-02 11:54:31 -0400556 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200557
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200558 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500559 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
560 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561
David Woodhouse689442d2007-12-12 16:00:42 -0500562 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500563 if (ret)
564 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200565
Dan Williamscb182a62007-12-11 17:35:51 -0500566 ret = le16_to_cpu(cmd.channel);
567 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500568
569out:
570 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
571 return ret;
572}
573
Holger Schurig73ab1f22008-04-02 16:52:19 +0200574int lbs_update_channel(struct lbs_private *priv)
575{
576 int ret;
577
578 /* the channel in f/w could be out of sync; get the current channel */
579 lbs_deb_enter(LBS_DEB_ASSOC);
580
581 ret = lbs_get_channel(priv);
582 if (ret > 0) {
Holger Schurigc14951f2009-10-22 15:30:50 +0200583 priv->channel = ret;
Holger Schurig73ab1f22008-04-02 16:52:19 +0200584 ret = 0;
585 }
586 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
587 return ret;
588}
589
Dan Williams2dd4b262007-12-11 16:54:15 -0500590/**
591 * @brief Set the radio channel
592 *
593 * @param priv A pointer to struct lbs_private structure
594 * @param channel The desired channel, or 0 to clear a locked channel
595 *
596 * @return 0 on success, error on failure
597 */
598int lbs_set_channel(struct lbs_private *priv, u8 channel)
599{
600 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530601#ifdef DEBUG
Holger Schurigc14951f2009-10-22 15:30:50 +0200602 u8 old_channel = priv->channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530603#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500604 int ret = 0;
605
606 lbs_deb_enter(LBS_DEB_CMD);
607
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200608 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500609 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
610 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
611 cmd.channel = cpu_to_le16(channel);
612
David Woodhouse689442d2007-12-12 16:00:42 -0500613 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500614 if (ret)
615 goto out;
616
Holger Schurigc14951f2009-10-22 15:30:50 +0200617 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
Dan Williamscb182a62007-12-11 17:35:51 -0500618 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
Holger Schurigc14951f2009-10-22 15:30:50 +0200619 priv->channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500620
621out:
622 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
623 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200624}
625
Holger Schurige98a88d2008-03-19 14:25:58 +0100626static int lbs_cmd_reg_access(struct cmd_ds_command *cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 u8 cmd_action, void *pdata_buf)
628{
Holger Schurig10078322007-11-15 18:05:47 -0500629 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630
Holger Schurig9012b282007-05-25 11:27:16 -0400631 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
Holger Schurig10078322007-11-15 18:05:47 -0500633 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000635 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400636 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637 {
638 struct cmd_ds_mac_reg_access *macreg;
639
640 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400641 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200642 + sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200643 macreg =
644 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
645 macreg;
646
647 macreg->action = cpu_to_le16(cmd_action);
648 macreg->offset = cpu_to_le16((u16) offval->offset);
649 macreg->value = cpu_to_le32(offval->value);
650
651 break;
652 }
653
Dan Williams0aef64d2007-08-02 11:31:18 -0400654 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200655 {
656 struct cmd_ds_bbp_reg_access *bbpreg;
657
658 cmdptr->size =
659 cpu_to_le16(sizeof
660 (struct cmd_ds_bbp_reg_access)
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200661 + sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662 bbpreg =
663 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
664 bbpreg;
665
666 bbpreg->action = cpu_to_le16(cmd_action);
667 bbpreg->offset = cpu_to_le16((u16) offval->offset);
668 bbpreg->value = (u8) offval->value;
669
670 break;
671 }
672
Dan Williams0aef64d2007-08-02 11:31:18 -0400673 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200674 {
675 struct cmd_ds_rf_reg_access *rfreg;
676
677 cmdptr->size =
678 cpu_to_le16(sizeof
679 (struct cmd_ds_rf_reg_access) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200680 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200681 rfreg =
682 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
683 rfreg;
684
685 rfreg->action = cpu_to_le16(cmd_action);
686 rfreg->offset = cpu_to_le16((u16) offval->offset);
687 rfreg->value = (u8) offval->value;
688
689 break;
690 }
691
692 default:
693 break;
694 }
695
Holger Schurig9012b282007-05-25 11:27:16 -0400696 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200697 return 0;
698}
699
Holger Schurige98a88d2008-03-19 14:25:58 +0100700static int lbs_cmd_bt_access(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200701 u16 cmd_action, void *pdata_buf)
702{
703 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400704 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705
Dan Williams0aef64d2007-08-02 11:31:18 -0400706 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200707 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) +
708 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200709 cmd->result = 0;
710 bt_access->action = cpu_to_le16(cmd_action);
711
712 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400713 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400715 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200716 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400717 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200718 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400719 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200720 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400721 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200722 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
723 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400724 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200725 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400726 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400727 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
728 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400729 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400730 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200731 default:
732 break;
733 }
Holger Schurig8ff12da2007-08-02 11:54:31 -0400734 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200735 return 0;
736}
737
Holger Schurige98a88d2008-03-19 14:25:58 +0100738static int lbs_cmd_fwt_access(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739 u16 cmd_action, void *pdata_buf)
740{
741 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400742 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200743
Dan Williams0aef64d2007-08-02 11:31:18 -0400744 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
Holger Schurig8ec97cc2009-10-22 15:30:55 +0200745 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) +
746 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200747 cmd->result = 0;
748
749 if (pdata_buf)
750 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
751 else
752 memset(fwt_access, 0, sizeof(*fwt_access));
753
754 fwt_access->action = cpu_to_le16(cmd_action);
755
Holger Schurig8ff12da2007-08-02 11:54:31 -0400756 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200757 return 0;
758}
759
David Woodhouse301eacb2007-12-11 15:23:59 -0500760int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
761 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200762{
David Woodhouse301eacb2007-12-11 15:23:59 -0500763 int ret;
764
Holger Schurig8ff12da2007-08-02 11:54:31 -0400765 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200766
David Woodhouse301eacb2007-12-11 15:23:59 -0500767 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -0500768 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -0500769 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200770
David Woodhouse301eacb2007-12-11 15:23:59 -0500771 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200772
David Woodhouse689442d2007-12-12 16:00:42 -0500773 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200774
Holger Schurig8ff12da2007-08-02 11:54:31 -0400775 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -0500776 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777}
778
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700779static int __lbs_mesh_config_send(struct lbs_private *priv,
780 struct cmd_ds_mesh_config *cmd,
781 uint16_t action, uint16_t type)
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700782{
783 int ret;
Bing Zhao684d6b32009-03-25 09:51:16 -0700784 u16 command = CMD_MESH_CONFIG_OLD;
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700785
786 lbs_deb_enter(LBS_DEB_CMD);
787
Bing Zhao684d6b32009-03-25 09:51:16 -0700788 /*
789 * Command id is 0xac for v10 FW along with mesh interface
790 * id in bits 14-13-12.
791 */
792 if (priv->mesh_fw_ver == MESH_FW_NEW)
793 command = CMD_MESH_CONFIG |
794 (MESH_IFACE_ID << MESH_IFACE_BIT_OFFSET);
795
796 cmd->hdr.command = cpu_to_le16(command);
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700797 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_config));
798 cmd->hdr.result = 0;
799
800 cmd->type = cpu_to_le16(type);
801 cmd->action = cpu_to_le16(action);
802
Bing Zhao684d6b32009-03-25 09:51:16 -0700803 ret = lbs_cmd_with_response(priv, command, cmd);
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700804
805 lbs_deb_leave(LBS_DEB_CMD);
806 return ret;
807}
808
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700809int lbs_mesh_config_send(struct lbs_private *priv,
810 struct cmd_ds_mesh_config *cmd,
811 uint16_t action, uint16_t type)
812{
813 int ret;
814
815 if (!(priv->fwcapinfo & FW_CAPINFO_PERSISTENT_CONFIG))
816 return -EOPNOTSUPP;
817
818 ret = __lbs_mesh_config_send(priv, cmd, action, type);
819 return ret;
820}
821
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700822/* This function is the CMD_MESH_CONFIG legacy function. It only handles the
823 * START and STOP actions. The extended actions supported by CMD_MESH_CONFIG
824 * are all handled by preparing a struct cmd_ds_mesh_config and passing it to
825 * lbs_mesh_config_send.
826 */
827int lbs_mesh_config(struct lbs_private *priv, uint16_t action, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -0500828{
829 struct cmd_ds_mesh_config cmd;
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700830 struct mrvl_meshie *ie;
John W. Linville9387b7c2008-09-30 20:59:05 -0400831 DECLARE_SSID_BUF(ssid);
David Woodhouse23a397a2007-12-11 18:56:42 -0500832
833 memset(&cmd, 0, sizeof(cmd));
David Woodhouse86062132007-12-13 00:32:36 -0500834 cmd.channel = cpu_to_le16(chan);
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700835 ie = (struct mrvl_meshie *)cmd.data;
David Woodhouse7e226272007-12-14 22:53:41 -0500836
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700837 switch (action) {
838 case CMD_ACT_MESH_CONFIG_START:
Johannes Berg2c7060022008-10-30 22:09:54 +0100839 ie->id = WLAN_EID_GENERIC;
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700840 ie->val.oui[0] = 0x00;
841 ie->val.oui[1] = 0x50;
842 ie->val.oui[2] = 0x43;
843 ie->val.type = MARVELL_MESH_IE_TYPE;
844 ie->val.subtype = MARVELL_MESH_IE_SUBTYPE;
845 ie->val.version = MARVELL_MESH_IE_VERSION;
846 ie->val.active_protocol_id = MARVELL_MESH_PROTO_ID_HWMP;
847 ie->val.active_metric_id = MARVELL_MESH_METRIC_ID;
848 ie->val.mesh_capability = MARVELL_MESH_CAPABILITY;
849 ie->val.mesh_id_len = priv->mesh_ssid_len;
850 memcpy(ie->val.mesh_id, priv->mesh_ssid, priv->mesh_ssid_len);
Johannes Berg2c7060022008-10-30 22:09:54 +0100851 ie->len = sizeof(struct mrvl_meshie_val) -
Holger Schurig243e84e2009-10-22 15:30:47 +0200852 IEEE80211_MAX_SSID_LEN + priv->mesh_ssid_len;
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700853 cmd.length = cpu_to_le16(sizeof(struct mrvl_meshie_val));
854 break;
855 case CMD_ACT_MESH_CONFIG_STOP:
856 break;
857 default:
858 return -1;
David Woodhouse23a397a2007-12-11 18:56:42 -0500859 }
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700860 lbs_deb_cmd("mesh config action %d type %x channel %d SSID %s\n",
861 action, priv->mesh_tlv, chan,
John W. Linville9387b7c2008-09-30 20:59:05 -0400862 print_ssid(ssid, priv->mesh_ssid, priv->mesh_ssid_len));
Javier Cardonaedaea5c2008-05-17 00:55:10 -0700863
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -0700864 return __lbs_mesh_config_send(priv, &cmd, action, priv->mesh_tlv);
David Woodhouse23a397a2007-12-11 18:56:42 -0500865}
866
David Woodhouse681ffbb2007-12-15 20:04:54 -0500867static void lbs_queue_cmd(struct lbs_private *priv,
868 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200869{
870 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -0500871 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200872
Holger Schurig8ff12da2007-08-02 11:54:31 -0400873 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200874
David Woodhousec4ab4122007-12-15 00:41:51 -0500875 if (!cmdnode) {
876 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200877 goto done;
878 }
David Woodhoused9896ee2007-12-15 00:09:25 -0500879 if (!cmdnode->cmdbuf->size) {
880 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
881 goto done;
882 }
David Woodhouseae125bf2007-12-15 04:22:52 -0500883 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200884
885 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -0500886 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -0500887 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -0500888
Dan Williams0aef64d2007-08-02 11:31:18 -0400889 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000890 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891 addtail = 0;
892 }
893 }
894
David Woodhouseaa21c002007-12-08 20:04:36 +0000895 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200896
David Woodhouseac472462007-12-08 00:35:00 +0000897 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +0000898 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +0000899 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000900 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200901
David Woodhouseaa21c002007-12-08 20:04:36 +0000902 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200903
Holger Schurig8ff12da2007-08-02 11:54:31 -0400904 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -0500905 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906
907done:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400908 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200909}
910
David Woodhouse18c52e72007-12-17 16:03:58 -0500911static void lbs_submit_command(struct lbs_private *priv,
912 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200913{
914 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -0500915 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -0500916 uint16_t cmdsize;
917 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +0200918 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500919 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200920
Holger Schurig8ff12da2007-08-02 11:54:31 -0400921 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200922
Dan Williamsddac4522007-12-11 13:49:39 -0500923 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200924
David Woodhouseaa21c002007-12-08 20:04:36 +0000925 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +0000926 priv->cur_cmd = cmdnode;
927 priv->cur_cmd_retcode = 0;
928 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200929
Dan Williamsddac4522007-12-11 13:49:39 -0500930 cmdsize = le16_to_cpu(cmd->size);
931 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200932
David Woodhouse18c52e72007-12-17 16:03:58 -0500933 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400934 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +0200935 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500936
Holger Schurige5225b32008-03-26 10:04:44 +0100937 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
938 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100939 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400940
Dan Williamsddac4522007-12-11 13:49:39 -0500941 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -0500942
David Woodhoused9896ee2007-12-15 00:09:25 -0500943 if (ret) {
944 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -0500945 /* Let the timer kick in and retry, and potentially reset
946 the whole thing if the condition persists */
Holger Schurig57962f02008-05-14 16:30:28 +0200947 timeo = HZ/4;
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100948 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200949
Amitkumar Karwar49125452009-09-30 20:04:38 -0700950 if (command == CMD_802_11_DEEP_SLEEP) {
951 if (priv->is_auto_deep_sleep_enabled) {
952 priv->wakeup_dev_required = 1;
953 priv->dnld_sent = 0;
954 }
955 priv->is_deep_sleep = 1;
956 lbs_complete_command(priv, cmdnode, 0);
957 } else {
958 /* Setup the timer after transmit command */
959 mod_timer(&priv->command_timer, jiffies + timeo);
960 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200961
David Woodhouse18c52e72007-12-17 16:03:58 -0500962 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200963}
964
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200965/**
966 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +0000967 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200968 */
David Woodhouse183aeac2007-12-15 01:52:54 -0500969static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500970 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200971{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500972 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500974 if (!cmdnode)
975 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500977 cmdnode->callback = NULL;
978 cmdnode->callback_arg = 0;
979
980 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
981
982 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
983 out:
984 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985}
986
Holger Schurig69f90322007-11-23 15:43:44 +0100987static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
988 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989{
990 unsigned long flags;
991
David Woodhouseaa21c002007-12-08 20:04:36 +0000992 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -0500993 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +0000994 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995}
996
David Woodhouse183aeac2007-12-15 01:52:54 -0500997void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
998 int result)
999{
1000 if (cmd == priv->cur_cmd)
1001 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001002
David Woodhouseae125bf2007-12-15 04:22:52 -05001003 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001004 cmd->cmdwaitqwoken = 1;
1005 wake_up_interruptible(&cmd->cmdwait_q);
1006
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001007 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001008 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001009 priv->cur_cmd = NULL;
1010}
1011
Dan Williamsd5db2df2008-08-21 17:51:07 -04001012int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001013{
David Woodhousea7c45892007-12-17 22:43:48 -05001014 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001015 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016
Holger Schurig9012b282007-05-25 11:27:16 -04001017 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018
David Woodhousea7c45892007-12-17 22:43:48 -05001019 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1020 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021
Dan Williamsd5db2df2008-08-21 17:51:07 -04001022 /* Only v8 and below support setting the preamble */
1023 if (priv->fwrelease < 0x09000000) {
1024 switch (preamble) {
1025 case RADIO_PREAMBLE_SHORT:
1026 if (!(priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE))
1027 goto out;
1028 /* Fall through */
1029 case RADIO_PREAMBLE_AUTO:
1030 case RADIO_PREAMBLE_LONG:
1031 cmd.control = cpu_to_le16(preamble);
1032 break;
1033 default:
1034 goto out;
1035 }
David Woodhousea7c45892007-12-17 22:43:48 -05001036 }
1037
Dan Williamsd5db2df2008-08-21 17:51:07 -04001038 if (radio_on)
1039 cmd.control |= cpu_to_le16(0x1);
1040 else {
1041 cmd.control &= cpu_to_le16(~0x1);
1042 priv->txpower_cur = 0;
1043 }
David Woodhousea7c45892007-12-17 22:43:48 -05001044
Dan Williamsd5db2df2008-08-21 17:51:07 -04001045 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1046 radio_on ? "ON" : "OFF", preamble);
1047
1048 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -05001049
1050 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051
Dan Williamsd5db2df2008-08-21 17:51:07 -04001052out:
Holger Schurig9012b282007-05-25 11:27:16 -04001053 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001054 return ret;
1055}
1056
Holger Schurigc97329e2008-03-18 11:20:21 +01001057void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001059 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060
Holger Schurig9012b282007-05-25 11:27:16 -04001061 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001062
Holger Schurig835d3ac2008-03-12 16:05:40 +01001063 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001064 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001065 cmd.reserved = 0;
1066
David Woodhouse75bf45a2008-05-20 13:32:45 +01001067 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001068
Holger Schurigc97329e2008-03-18 11:20:21 +01001069 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070}
1071
1072/**
1073 * @brief This function prepare the command before send to firmware.
1074 *
Holger Schurig69f90322007-11-23 15:43:44 +01001075 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076 * @param cmd_no command number
1077 * @param cmd_action command action: GET or SET
1078 * @param wait_option wait option: wait response or not
1079 * @param cmd_oid cmd oid: treated as sub command
1080 * @param pdata_buf A pointer to informaion buffer
1081 * @return 0 or -1
1082 */
Holger Schurig69f90322007-11-23 15:43:44 +01001083int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001084 u16 cmd_no,
1085 u16 cmd_action,
1086 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1087{
1088 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001089 struct cmd_ctrl_node *cmdnode;
1090 struct cmd_ds_command *cmdptr;
1091 unsigned long flags;
1092
Holger Schurig8ff12da2007-08-02 11:54:31 -04001093 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001094
David Woodhouseaa21c002007-12-08 20:04:36 +00001095 if (!priv) {
1096 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001097 ret = -1;
1098 goto done;
1099 }
1100
David Woodhouseaa21c002007-12-08 20:04:36 +00001101 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001102 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001103 ret = -1;
1104 goto done;
1105 }
1106
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001107 if (!lbs_is_cmd_allowed(priv)) {
1108 ret = -EBUSY;
1109 goto done;
1110 }
1111
Holger Schurig0d61d042007-12-05 17:58:06 +01001112 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001113
1114 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001115 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001116
1117 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001118 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001119 ret = -1;
1120 goto done;
1121 }
1122
Holger Schurige98a88d2008-03-19 14:25:58 +01001123 cmdnode->callback = NULL;
1124 cmdnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001125
Dan Williamsddac4522007-12-11 13:49:39 -05001126 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001127
Holger Schurig8ff12da2007-08-02 11:54:31 -04001128 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001129
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001130 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001131 priv->seqnum++;
1132 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001133
David Woodhouse981f1872007-05-25 23:36:54 -04001134 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001135 cmdptr->result = 0;
1136
1137 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001138 case CMD_802_11_PS_MODE:
Holger Schurige98a88d2008-03-19 14:25:58 +01001139 ret = lbs_cmd_802_11_ps_mode(cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001140 break;
1141
Dan Williams0aef64d2007-08-02 11:31:18 -04001142 case CMD_MAC_REG_ACCESS:
1143 case CMD_BBP_REG_ACCESS:
1144 case CMD_RF_REG_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001145 ret = lbs_cmd_reg_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146 break;
1147
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001148 case CMD_802_11_MONITOR_MODE:
Holger Schurige98a88d2008-03-19 14:25:58 +01001149 ret = lbs_cmd_802_11_monitor_mode(cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001150 cmd_action, pdata_buf);
1151 break;
1152
Dan Williams0aef64d2007-08-02 11:31:18 -04001153 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001154 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155 break;
1156
Dan Williams0aef64d2007-08-02 11:31:18 -04001157 case CMD_802_11_SET_AFC:
1158 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001159
1160 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001161 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001162 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001163
1164 memmove(&cmdptr->params.afc,
1165 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1166
1167 ret = 0;
1168 goto done;
1169
Dan Williams0aef64d2007-08-02 11:31:18 -04001170 case CMD_802_11_TPC_CFG:
1171 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001172 cmdptr->size =
1173 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001174 sizeof(struct cmd_header));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175
1176 memmove(&cmdptr->params.tpccfg,
1177 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1178
1179 ret = 0;
1180 break;
David Woodhouse5844d122007-12-18 02:01:37 -05001181
Dan Williams0aef64d2007-08-02 11:31:18 -04001182 case CMD_BT_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001183 ret = lbs_cmd_bt_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184 break;
1185
Dan Williams0aef64d2007-08-02 11:31:18 -04001186 case CMD_FWT_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001187 ret = lbs_cmd_fwt_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001188 break;
1189
Brajesh Dave96287ac2007-11-20 17:44:28 -05001190 case CMD_802_11_BEACON_CTRL:
1191 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1192 break;
Amitkumar Karwar49125452009-09-30 20:04:38 -07001193 case CMD_802_11_DEEP_SLEEP:
1194 cmdptr->command = cpu_to_le16(CMD_802_11_DEEP_SLEEP);
Holger Schurig8ec97cc2009-10-22 15:30:55 +02001195 cmdptr->size = cpu_to_le16(sizeof(struct cmd_header));
Amitkumar Karwar49125452009-09-30 20:04:38 -07001196 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197 default:
David Woodhousee37fc6e2008-05-20 11:47:16 +01001198 lbs_pr_err("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199 ret = -1;
1200 break;
1201 }
1202
1203 /* return error, since the command preparation failed */
1204 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001205 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001206 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207 ret = -1;
1208 goto done;
1209 }
1210
1211 cmdnode->cmdwaitqwoken = 0;
1212
David Woodhouse681ffbb2007-12-15 20:04:54 -05001213 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001214 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215
Dan Williams0aef64d2007-08-02 11:31:18 -04001216 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001217 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218 might_sleep();
1219 wait_event_interruptible(cmdnode->cmdwait_q,
1220 cmdnode->cmdwaitqwoken);
1221 }
1222
David Woodhouseaa21c002007-12-08 20:04:36 +00001223 spin_lock_irqsave(&priv->driver_lock, flags);
1224 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001225 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001226 priv->cur_cmd_retcode);
1227 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001228 ret = -1;
1229 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001230 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001231
1232done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001233 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001234 return ret;
1235}
1236
1237/**
1238 * @brief This function allocates the command buffer and link
1239 * it to command free queue.
1240 *
Holger Schurig69f90322007-11-23 15:43:44 +01001241 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242 * @return 0 or -1
1243 */
Holger Schurig69f90322007-11-23 15:43:44 +01001244int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001245{
1246 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001247 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001248 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001249 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001250
Holger Schurig8ff12da2007-08-02 11:54:31 -04001251 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252
Dan Williamsddac4522007-12-11 13:49:39 -05001253 /* Allocate and initialize the command array */
1254 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1255 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001256 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001257 ret = -1;
1258 goto done;
1259 }
Dan Williamsddac4522007-12-11 13:49:39 -05001260 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261
Dan Williamsddac4522007-12-11 13:49:39 -05001262 /* Allocate and initialize each command buffer in the command array */
1263 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1264 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1265 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001266 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001267 ret = -1;
1268 goto done;
1269 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001270 }
1271
Dan Williamsddac4522007-12-11 13:49:39 -05001272 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1273 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1274 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001276 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001277
1278done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001279 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280 return ret;
1281}
1282
1283/**
1284 * @brief This function frees the command buffer.
1285 *
Holger Schurig69f90322007-11-23 15:43:44 +01001286 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287 * @return 0 or -1
1288 */
Holger Schurig69f90322007-11-23 15:43:44 +01001289int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001290{
Dan Williamsddac4522007-12-11 13:49:39 -05001291 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001292 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293
Holger Schurig8ff12da2007-08-02 11:54:31 -04001294 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001295
1296 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001297 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001298 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001299 goto done;
1300 }
1301
Dan Williamsddac4522007-12-11 13:49:39 -05001302 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303
1304 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001305 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1306 if (cmdarray[i].cmdbuf) {
1307 kfree(cmdarray[i].cmdbuf);
1308 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001309 }
1310 }
1311
1312 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001313 if (priv->cmd_array) {
1314 kfree(priv->cmd_array);
1315 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001316 }
1317
1318done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001319 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320 return 0;
1321}
1322
1323/**
1324 * @brief This function gets a free command node if available in
1325 * command free queue.
1326 *
Holger Schurig69f90322007-11-23 15:43:44 +01001327 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1329 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001330static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001331{
1332 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001333 unsigned long flags;
1334
Holger Schurig8ff12da2007-08-02 11:54:31 -04001335 lbs_deb_enter(LBS_DEB_HOST);
1336
David Woodhouseaa21c002007-12-08 20:04:36 +00001337 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001338 return NULL;
1339
David Woodhouseaa21c002007-12-08 20:04:36 +00001340 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341
David Woodhouseaa21c002007-12-08 20:04:36 +00001342 if (!list_empty(&priv->cmdfreeq)) {
1343 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001344 struct cmd_ctrl_node, list);
1345 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001346 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001347 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001348 tempnode = NULL;
1349 }
1350
David Woodhouseaa21c002007-12-08 20:04:36 +00001351 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001352
Holger Schurig8ff12da2007-08-02 11:54:31 -04001353 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001354 return tempnode;
1355}
1356
1357/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001358 * @brief This function executes next command in command
Nick Andrew877d0312009-01-26 11:06:57 +01001359 * pending queue. It will put firmware back to PS mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360 * if applicable.
1361 *
Holger Schurig69f90322007-11-23 15:43:44 +01001362 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 * @return 0 or -1
1364 */
Holger Schurig69f90322007-11-23 15:43:44 +01001365int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001366{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001367 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001368 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001369 unsigned long flags;
1370 int ret = 0;
1371
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001372 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1373 * only caller to us is lbs_thread() and we get even when a
1374 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001375 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001376
David Woodhouseaa21c002007-12-08 20:04:36 +00001377 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378
David Woodhouseaa21c002007-12-08 20:04:36 +00001379 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001380 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001381 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382 ret = -1;
1383 goto done;
1384 }
1385
David Woodhouseaa21c002007-12-08 20:04:36 +00001386 if (!list_empty(&priv->cmdpendingq)) {
1387 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001388 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001389 }
1390
David Woodhouseaa21c002007-12-08 20:04:36 +00001391 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001392
1393 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001394 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395
Dan Williamsddac4522007-12-11 13:49:39 -05001396 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001397 if ((priv->psstate == PS_STATE_SLEEP) ||
1398 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001399 lbs_deb_host(
1400 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001401 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001402 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001403 ret = -1;
1404 goto done;
1405 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001406 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001407 "0x%04x in psstate %d\n",
1408 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001409 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001410 /*
1411 * 1. Non-PS command:
1412 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001413 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001414 * 2. PS command but not Exit_PS:
1415 * Ignore it.
1416 * 3. PS command Exit_PS:
1417 * Set needtowakeup to TRUE if current state is SLEEP,
1418 * otherwise send this command down to firmware
1419 * immediately.
1420 */
Dan Williamsddac4522007-12-11 13:49:39 -05001421 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001422 /* Prepare to send Exit PS,
1423 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001424 if ((priv->psstate == PS_STATE_SLEEP)
1425 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426 ) {
1427 /* w/ new scheme, it will not reach here.
1428 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001429 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430 } else
Holger Schurig10078322007-11-15 18:05:47 -05001431 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001432
1433 ret = 0;
1434 goto done;
1435 } else {
1436 /*
1437 * PS command. Ignore it if it is not Exit_PS.
1438 * otherwise send it down immediately.
1439 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001440 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001441
Holger Schurig8ff12da2007-08-02 11:54:31 -04001442 lbs_deb_host(
1443 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001444 psm->action);
1445 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001446 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001447 lbs_deb_host(
1448 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001449 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001450 spin_lock_irqsave(&priv->driver_lock, flags);
1451 lbs_complete_command(priv, cmdnode, 0);
1452 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001453
1454 ret = 0;
1455 goto done;
1456 }
1457
David Woodhouseaa21c002007-12-08 20:04:36 +00001458 if ((priv->psstate == PS_STATE_SLEEP) ||
1459 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001460 lbs_deb_host(
1461 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001462 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001463 spin_lock_irqsave(&priv->driver_lock, flags);
1464 lbs_complete_command(priv, cmdnode, 0);
1465 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001466 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001467
1468 ret = 0;
1469 goto done;
1470 }
1471
Holger Schurig8ff12da2007-08-02 11:54:31 -04001472 lbs_deb_host(
1473 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001474 }
1475 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001476 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001477 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001478 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001479 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001480 } else {
1481 /*
1482 * check if in power save mode, if yes, put the device back
1483 * to PS mode
1484 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001485 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1486 (priv->psstate == PS_STATE_FULL_POWER) &&
1487 ((priv->connect_status == LBS_CONNECTED) ||
1488 (priv->mesh_connect_status == LBS_CONNECTED))) {
1489 if (priv->secinfo.WPAenabled ||
1490 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001492 if (priv->wpa_mcast_key.len ||
1493 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001494 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001495 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1496 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001497 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498 }
1499 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001500 lbs_deb_host(
1501 "EXEC_NEXT_CMD: cmdpendingq empty, "
1502 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001503 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504 }
1505 }
1506 }
1507
1508 ret = 0;
1509done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001510 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001511 return ret;
1512}
1513
Holger Schurigf539f2e2008-03-26 13:22:11 +01001514static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001515{
1516 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001517 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001518
Holger Schurig8ff12da2007-08-02 11:54:31 -04001519 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001520 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1521 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001522
Holger Schurigf539f2e2008-03-26 13:22:11 +01001523 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1524 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525 if (ret) {
Holger Schurigf539f2e2008-03-26 13:22:11 +01001526 lbs_pr_alert("confirm_sleep failed\n");
Holger Schurig7919b892008-04-01 14:50:43 +02001527 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001528 }
Holger Schurig7919b892008-04-01 14:50:43 +02001529
1530 spin_lock_irqsave(&priv->driver_lock, flags);
1531
Holger Schuriga01f5452008-06-04 11:10:40 +02001532 /* We don't get a response on the sleep-confirmation */
1533 priv->dnld_sent = DNLD_RES_RECEIVED;
1534
Holger Schurig7919b892008-04-01 14:50:43 +02001535 /* If nothing to do, go back to sleep (?) */
1536 if (!__kfifo_len(priv->event_fifo) && !priv->resp_len[priv->resp_idx])
1537 priv->psstate = PS_STATE_SLEEP;
1538
1539 spin_unlock_irqrestore(&priv->driver_lock, flags);
1540
1541out:
Holger Schurigf539f2e2008-03-26 13:22:11 +01001542 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001543}
1544
Holger Schurig69f90322007-11-23 15:43:44 +01001545void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001546{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001547 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001548
1549 /*
1550 * PS is currently supported only in Infrastructure mode
1551 * Remove this check if it is to be supported in IBSS mode also
1552 */
1553
Holger Schurig10078322007-11-15 18:05:47 -05001554 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001555 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001556
Holger Schurig8ff12da2007-08-02 11:54:31 -04001557 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001558}
1559
1560/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001561 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001562 *
Holger Schurig69f90322007-11-23 15:43:44 +01001563 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001564 * @param wait_option wait response or not
1565 * @return n/a
1566 */
Holger Schurig69f90322007-11-23 15:43:44 +01001567void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001568{
David Woodhouse981f1872007-05-25 23:36:54 -04001569 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001570
Holger Schurig8ff12da2007-08-02 11:54:31 -04001571 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001572
Holger Schurig10078322007-11-15 18:05:47 -05001573 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001574
Holger Schurig10078322007-11-15 18:05:47 -05001575 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001576 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001577 wait_option, 0, &Localpsmode);
1578
Holger Schurig8ff12da2007-08-02 11:54:31 -04001579 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001580}
1581
1582/**
1583 * @brief This function checks condition and prepares to
1584 * send sleep confirm command to firmware if ok.
1585 *
Holger Schurig69f90322007-11-23 15:43:44 +01001586 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001587 * @param psmode Power Saving mode
1588 * @return n/a
1589 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001590void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001591{
1592 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001593 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001594
Holger Schurig8ff12da2007-08-02 11:54:31 -04001595 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001596
Holger Schuriga01f5452008-06-04 11:10:40 +02001597 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f492007-05-25 13:05:16 -04001598 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001599 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001600 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001601 }
1602
Holger Schurig7919b892008-04-01 14:50:43 +02001603 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001604 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001605 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001606 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001607 }
Holger Schurig7919b892008-04-01 14:50:43 +02001608
1609 /* Pending events or command responses? */
1610 if (__kfifo_len(priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001611 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02001612 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001613 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001614 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001615
1616 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001617 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01001618 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001619 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001620 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001621 }
1622
Holger Schurig8ff12da2007-08-02 11:54:31 -04001623 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001624}
Holger Schurig675787e2007-12-05 17:58:11 +01001625
1626
Anna Neal0112c9e2008-09-11 11:17:25 -07001627/**
1628 * @brief Configures the transmission power control functionality.
1629 *
1630 * @param priv A pointer to struct lbs_private structure
1631 * @param enable Transmission power control enable
1632 * @param p0 Power level when link quality is good (dBm).
1633 * @param p1 Power level when link quality is fair (dBm).
1634 * @param p2 Power level when link quality is poor (dBm).
1635 * @param usesnr Use Signal to Noise Ratio in TPC
1636 *
1637 * @return 0 on success
1638 */
1639int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1640 int8_t p2, int usesnr)
1641{
1642 struct cmd_ds_802_11_tpc_cfg cmd;
1643 int ret;
1644
1645 memset(&cmd, 0, sizeof(cmd));
1646 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1647 cmd.action = cpu_to_le16(CMD_ACT_SET);
1648 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04001649 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07001650 cmd.P0 = p0;
1651 cmd.P1 = p1;
1652 cmd.P2 = p2;
1653
1654 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1655
1656 return ret;
1657}
1658
1659/**
1660 * @brief Configures the power adaptation settings.
1661 *
1662 * @param priv A pointer to struct lbs_private structure
1663 * @param enable Power adaptation enable
1664 * @param p0 Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1665 * @param p1 Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1666 * @param p2 Power level for 48 and 54 Mbps (dBm).
1667 *
1668 * @return 0 on Success
1669 */
1670
1671int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1672 int8_t p1, int8_t p2)
1673{
1674 struct cmd_ds_802_11_pa_cfg cmd;
1675 int ret;
1676
1677 memset(&cmd, 0, sizeof(cmd));
1678 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1679 cmd.action = cpu_to_le16(CMD_ACT_SET);
1680 cmd.enable = !!enable;
1681 cmd.P0 = p0;
1682 cmd.P1 = p1;
1683 cmd.P2 = p2;
1684
1685 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1686
1687 return ret;
1688}
1689
1690
Holger Schurig6d898b12009-10-14 16:49:53 +02001691struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001692 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1693 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1694 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01001695{
Holger Schurig675787e2007-12-05 17:58:11 +01001696 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01001697
1698 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01001699
David Woodhouseaa21c002007-12-08 20:04:36 +00001700 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01001701 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05001702 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01001703 goto done;
1704 }
1705
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001706 if (!lbs_is_cmd_allowed(priv)) {
1707 cmdnode = ERR_PTR(-EBUSY);
1708 goto done;
1709 }
1710
Holger Schurig675787e2007-12-05 17:58:11 +01001711 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01001712 if (cmdnode == NULL) {
1713 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1714
1715 /* Wake up main thread to execute next command */
1716 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05001717 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01001718 goto done;
1719 }
1720
David Woodhouse448a51a2007-12-08 00:59:54 +00001721 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05001722 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01001723
Dan Williams7ad994d2007-12-11 12:33:30 -05001724 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001725 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05001726
Holger Schurig675787e2007-12-05 17:58:11 +01001727 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00001728 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05001729 cmdnode->cmdbuf->command = cpu_to_le16(command);
1730 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
1731 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
1732 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01001733
1734 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1735
Holger Schurig675787e2007-12-05 17:58:11 +01001736 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001737 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01001738 wake_up_interruptible(&priv->waitq);
1739
David Woodhouse3399ea52007-12-15 03:09:33 -05001740 done:
1741 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
1742 return cmdnode;
1743}
1744
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001745void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1746 struct cmd_header *in_cmd, int in_cmd_size)
1747{
1748 lbs_deb_enter(LBS_DEB_CMD);
1749 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1750 lbs_cmd_async_callback, 0);
1751 lbs_deb_leave(LBS_DEB_CMD);
1752}
1753
David Woodhouse3399ea52007-12-15 03:09:33 -05001754int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1755 struct cmd_header *in_cmd, int in_cmd_size,
1756 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1757 unsigned long callback_arg)
1758{
1759 struct cmd_ctrl_node *cmdnode;
1760 unsigned long flags;
1761 int ret = 0;
1762
1763 lbs_deb_enter(LBS_DEB_HOST);
1764
1765 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1766 callback, callback_arg);
1767 if (IS_ERR(cmdnode)) {
1768 ret = PTR_ERR(cmdnode);
1769 goto done;
1770 }
1771
Holger Schurig675787e2007-12-05 17:58:11 +01001772 might_sleep();
1773 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
1774
David Woodhouseaa21c002007-12-08 20:04:36 +00001775 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05001776 ret = cmdnode->result;
1777 if (ret)
1778 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
1779 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05001780
David Woodhousead12d0f2007-12-15 02:06:16 -05001781 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001782 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01001783
1784done:
1785 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1786 return ret;
1787}
Dan Williams14e865b2007-12-10 15:11:23 -05001788EXPORT_SYMBOL_GPL(__lbs_cmd);