blob: dd4f98231352dda4c5598c0b4d3fbf3263b0b929 [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
6#include <net/iw_handler.h>
John W. Linville7e272fc2008-09-24 18:13:14 -04007#include <net/lib80211.h>
Holger Schurig7919b892008-04-01 14:50:43 +02008#include <linux/kfifo.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020010#include "decl.h"
11#include "defs.h"
12#include "dev.h"
Holger Schurig697900a2008-04-02 16:27:10 +020013#include "assoc.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014#include "wext.h"
Dan Williams6e66f032007-12-11 12:42:16 -050015#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020016
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050017static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
Holger Schurig0d61d042007-12-05 17:58:06 +010018
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019/**
Holger Schurig8db4a2b2008-03-19 10:11:00 +010020 * @brief Simple callback that copies response back into command
21 *
22 * @param priv A pointer to struct lbs_private structure
23 * @param extra A pointer to the original command structure for which
24 * 'resp' is a response
25 * @param resp A pointer to the command response
26 *
27 * @return 0 on success, error on failure
28 */
29int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
30 struct cmd_header *resp)
31{
32 struct cmd_header *buf = (void *)extra;
33 uint16_t copy_len;
34
35 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
36 memcpy(buf, resp, copy_len);
37 return 0;
38}
39EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
40
41/**
42 * @brief Simple callback that ignores the result. Use this if
43 * you just want to send a command to the hardware, but don't
44 * care for the result.
45 *
46 * @param priv ignored
47 * @param extra ignored
48 * @param resp ignored
49 *
50 * @return 0 for success
51 */
52static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
53 struct cmd_header *resp)
54{
55 return 0;
56}
57
58
59/**
Dan Williams852e1f22007-12-10 15:24:47 -050060 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061 *
62 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050063 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 */
Dan Williams852e1f22007-12-10 15:24:47 -050065static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066{
Dan Williams852e1f22007-12-10 15:24:47 -050067 switch (cmd) {
68 case CMD_802_11_RSSI:
69 return 1;
70 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
Bing Zhao684d6b32009-03-25 09:51:16 -0700144 /* Determine mesh_fw_ver from fwrelease and fwcapinfo */
145 /* 5.0.16p0 9.0.0.p0 is known to NOT support any mesh */
146 /* 5.110.22 have mesh command with 0xa3 command id */
147 /* 10.0.0.p0 FW brings in mesh config command with different id */
148 /* Check FW version MSB and initialize mesh_fw_ver */
149 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V5)
150 priv->mesh_fw_ver = MESH_FW_OLD;
151 else if ((MRVL_FW_MAJOR_REV(priv->fwrelease) >= MRVL_FW_V10) &&
152 (priv->fwcapinfo & MESH_CAPINFO_ENABLE_MASK))
153 priv->mesh_fw_ver = MESH_FW_NEW;
154 else
155 priv->mesh_fw_ver = MESH_NONE;
156
Dan Williams6e66f032007-12-11 12:42:16 -0500157 /* Clamp region code to 8-bit since FW spec indicates that it should
158 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
159 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200160 *
161 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
162 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500163 */
Marek Vasut15483992009-07-16 19:19:53 +0200164 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
165 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
166 else
167 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500168
169 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
170 /* use the region code to search for the index */
171 if (priv->regioncode == lbs_region_code_to_index[i])
172 break;
173 }
174
175 /* if it's unidentified region code, use the default (USA) */
176 if (i >= MRVDRV_MAX_REGION_CODE) {
177 priv->regioncode = 0x10;
178 lbs_pr_info("unidentified region code; using the default (USA)\n");
179 }
180
181 if (priv->current_addr[0] == 0xff)
182 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
183
184 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
185 if (priv->mesh_dev)
186 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
187
188 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
189 ret = -1;
190 goto out;
191 }
192
Dan Williams6e66f032007-12-11 12:42:16 -0500193out:
Holger Schurig9012b282007-05-25 11:27:16 -0400194 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500195 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200196}
197
Anna Neal582c1b52008-10-20 16:46:56 -0700198int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
199 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500200{
201 struct cmd_ds_host_sleep cmd_config;
202 int ret;
203
David Woodhouse9fae8992007-12-15 03:46:44 -0500204 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500205 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500206 cmd_config.gpio = priv->wol_gpio;
207 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500208
Anna Neal582c1b52008-10-20 16:46:56 -0700209 if (p_wol_config != NULL)
210 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
211 sizeof(struct wol_config));
212 else
213 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
214
David Woodhouse689442d2007-12-12 16:00:42 -0500215 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500216 if (!ret) {
Anna Neal582c1b52008-10-20 16:46:56 -0700217 if (criteria) {
218 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
219 priv->wol_criteria = criteria;
220 } else
221 memcpy((uint8_t *) p_wol_config,
222 (uint8_t *)&cmd_config.wol_conf,
223 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500224 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500225 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500226 }
David Woodhouse506e9022007-12-12 20:06:06 -0500227
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500228 return ret;
229}
230EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
231
Holger Schurige98a88d2008-03-19 14:25:58 +0100232static int lbs_cmd_802_11_ps_mode(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200233 u16 cmd_action)
234{
235 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236
Holger Schurig9012b282007-05-25 11:27:16 -0400237 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200238
Dan Williams0aef64d2007-08-02 11:31:18 -0400239 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400240 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
241 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200242 psm->action = cpu_to_le16(cmd_action);
243 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400244 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400245 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400246 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247
Holger Schurig252cf0d2007-08-02 13:09:34 -0400248 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400249 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400251 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200252 break;
253
Dan Williams0aef64d2007-08-02 11:31:18 -0400254 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400255 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256 break;
257
Dan Williams0aef64d2007-08-02 11:31:18 -0400258 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400259 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260 break;
261
262 default:
263 break;
264 }
265
Holger Schurig9012b282007-05-25 11:27:16 -0400266 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267 return 0;
268}
269
David Woodhouse3fbe1042007-12-17 23:48:31 -0500270int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
271 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500273 struct cmd_ds_802_11_sleep_params cmd;
274 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200275
Holger Schurig9012b282007-05-25 11:27:16 -0400276 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277
Dan Williams0aef64d2007-08-02 11:31:18 -0400278 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500279 memset(&cmd, 0, sizeof(cmd));
280 } else {
281 cmd.error = cpu_to_le16(sp->sp_error);
282 cmd.offset = cpu_to_le16(sp->sp_offset);
283 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
284 cmd.calcontrol = sp->sp_calcontrol;
285 cmd.externalsleepclk = sp->sp_extsleepclk;
286 cmd.reserved = cpu_to_le16(sp->sp_reserved);
287 }
288 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
289 cmd.action = cpu_to_le16(cmd_action);
290
291 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
292
293 if (!ret) {
294 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
295 "calcontrol 0x%x extsleepclk 0x%x\n",
296 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
297 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
298 cmd.externalsleepclk);
299
300 sp->sp_error = le16_to_cpu(cmd.error);
301 sp->sp_offset = le16_to_cpu(cmd.offset);
302 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
303 sp->sp_calcontrol = cmd.calcontrol;
304 sp->sp_extsleepclk = cmd.externalsleepclk;
305 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200306 }
307
David Woodhouse3fbe1042007-12-17 23:48:31 -0500308 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200309 return 0;
310}
311
Amitkumar Karwar49125452009-09-30 20:04:38 -0700312static int lbs_wait_for_ds_awake(struct lbs_private *priv)
313{
314 int ret = 0;
315
316 lbs_deb_enter(LBS_DEB_CMD);
317
318 if (priv->is_deep_sleep) {
319 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
320 !priv->is_deep_sleep, (10 * HZ))) {
321 lbs_pr_err("ds_awake_q: timer expired\n");
322 ret = -1;
323 }
324 }
325
326 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
327 return ret;
328}
329
330int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
331{
332 int ret = 0;
333
334 lbs_deb_enter(LBS_DEB_CMD);
335
336 if (deep_sleep) {
337 if (priv->is_deep_sleep != 1) {
338 lbs_deb_cmd("deep sleep: sleep\n");
339 BUG_ON(!priv->enter_deep_sleep);
340 ret = priv->enter_deep_sleep(priv);
341 if (!ret) {
342 netif_stop_queue(priv->dev);
343 netif_carrier_off(priv->dev);
344 }
345 } else {
346 lbs_pr_err("deep sleep: already enabled\n");
347 }
348 } else {
349 if (priv->is_deep_sleep) {
350 lbs_deb_cmd("deep sleep: wakeup\n");
351 BUG_ON(!priv->exit_deep_sleep);
352 ret = priv->exit_deep_sleep(priv);
353 if (!ret) {
354 ret = lbs_wait_for_ds_awake(priv);
355 if (ret)
356 lbs_pr_err("deep sleep: wakeup"
357 "failed\n");
358 }
359 }
360 }
361
362 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
363 return ret;
364}
365
David Woodhousef70dd452007-12-18 00:18:05 -0500366int lbs_cmd_802_11_set_wep(struct lbs_private *priv, uint16_t cmd_action,
367 struct assoc_request *assoc)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200368{
David Woodhousef70dd452007-12-18 00:18:05 -0500369 struct cmd_ds_802_11_set_wep cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200370 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200371
Holger Schurig9012b282007-05-25 11:27:16 -0400372 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200373
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200374 memset(&cmd, 0, sizeof(cmd));
David Woodhousef70dd452007-12-18 00:18:05 -0500375 cmd.hdr.command = cpu_to_le16(CMD_802_11_SET_WEP);
376 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377
David Woodhousef70dd452007-12-18 00:18:05 -0500378 cmd.action = cpu_to_le16(cmd_action);
379
380 if (cmd_action == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381 int i;
382
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500384 cmd.keyindex = cpu_to_le16(assoc->wep_tx_keyidx &
385 CMD_WEP_KEY_INDEX_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200386
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387 /* Copy key types and material to host command structure */
388 for (i = 0; i < 4; i++) {
David Woodhousef70dd452007-12-18 00:18:05 -0500389 struct enc_key *pkey = &assoc->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200390
391 switch (pkey->len) {
392 case KEY_LEN_WEP_40:
David Woodhousef70dd452007-12-18 00:18:05 -0500393 cmd.keytype[i] = CMD_TYPE_WEP_40_BIT;
394 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400395 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200396 break;
397 case KEY_LEN_WEP_104:
David Woodhousef70dd452007-12-18 00:18:05 -0500398 cmd.keytype[i] = CMD_TYPE_WEP_104_BIT;
399 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400400 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401 break;
402 case 0:
403 break;
404 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400405 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
David Woodhousef70dd452007-12-18 00:18:05 -0500406 i, pkey->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407 ret = -1;
408 goto done;
409 break;
410 }
411 }
David Woodhousef70dd452007-12-18 00:18:05 -0500412 } else if (cmd_action == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200413 /* ACT_REMOVE clears _all_ WEP keys */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200414
415 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500416 cmd.keyindex = cpu_to_le16(priv->wep_tx_keyidx &
417 CMD_WEP_KEY_INDEX_MASK);
David Woodhouseaa21c002007-12-08 20:04:36 +0000418 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200419 }
420
David Woodhousef70dd452007-12-18 00:18:05 -0500421 ret = lbs_cmd_with_response(priv, CMD_802_11_SET_WEP, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200422done:
Holger Schurig9012b282007-05-25 11:27:16 -0400423 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200424 return ret;
425}
426
David Woodhouse4f59abf2007-12-18 00:47:17 -0500427int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv, uint16_t cmd_action,
428 uint16_t *enable)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200429{
David Woodhouse4f59abf2007-12-18 00:47:17 -0500430 struct cmd_ds_802_11_enable_rsn cmd;
431 int ret;
Dan Williams90a42212007-05-25 23:01:24 -0400432
433 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434
David Woodhouse4f59abf2007-12-18 00:47:17 -0500435 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
436 cmd.action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400437
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200438 if (cmd_action == CMD_ACT_GET)
439 cmd.enable = 0;
440 else {
Dan Williams18c96c342007-06-18 12:01:12 -0400441 if (*enable)
David Woodhouse4f59abf2007-12-18 00:47:17 -0500442 cmd.enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400443 else
David Woodhouse4f59abf2007-12-18 00:47:17 -0500444 cmd.enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400445 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446 }
447
David Woodhouse4f59abf2007-12-18 00:47:17 -0500448 ret = lbs_cmd_with_response(priv, CMD_802_11_ENABLE_RSN, &cmd);
449 if (!ret && cmd_action == CMD_ACT_GET)
450 *enable = le16_to_cpu(cmd.enable);
451
452 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
453 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454}
455
David Woodhouse9e1228d2008-03-03 12:15:39 +0100456static void set_one_wpa_key(struct MrvlIEtype_keyParamSet *keyparam,
457 struct enc_key *key)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400459 lbs_deb_enter(LBS_DEB_CMD);
460
David Woodhouse9e1228d2008-03-03 12:15:39 +0100461 if (key->flags & KEY_INFO_WPA_ENABLED)
462 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
463 if (key->flags & KEY_INFO_WPA_UNICAST)
464 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
465 if (key->flags & KEY_INFO_WPA_MCAST)
466 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200467
David Woodhouse9e1228d2008-03-03 12:15:39 +0100468 keyparam->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
469 keyparam->keytypeid = cpu_to_le16(key->type);
470 keyparam->keylen = cpu_to_le16(key->len);
471 memcpy(keyparam->key, key->key, key->len);
472
473 /* Length field doesn't include the {type,length} header */
474 keyparam->length = cpu_to_le16(sizeof(*keyparam) - 4);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400475 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476}
477
David Woodhouse9e1228d2008-03-03 12:15:39 +0100478int lbs_cmd_802_11_key_material(struct lbs_private *priv, uint16_t cmd_action,
479 struct assoc_request *assoc)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200480{
David Woodhouse9e1228d2008-03-03 12:15:39 +0100481 struct cmd_ds_802_11_key_material cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 int ret = 0;
483 int index = 0;
484
Holger Schurig9012b282007-05-25 11:27:16 -0400485 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486
David Woodhouse9e1228d2008-03-03 12:15:39 +0100487 cmd.action = cpu_to_le16(cmd_action);
488 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489
Dan Williams0aef64d2007-08-02 11:31:18 -0400490 if (cmd_action == CMD_ACT_GET) {
David Woodhouse9e1228d2008-03-03 12:15:39 +0100491 cmd.hdr.size = cpu_to_le16(S_DS_GEN + 2);
492 } else {
493 memset(cmd.keyParamSet, 0, sizeof(cmd.keyParamSet));
494
495 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc->flags)) {
496 set_one_wpa_key(&cmd.keyParamSet[index],
497 &assoc->wpa_unicast_key);
498 index++;
499 }
500
501 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc->flags)) {
502 set_one_wpa_key(&cmd.keyParamSet[index],
503 &assoc->wpa_mcast_key);
504 index++;
505 }
506
507 /* The common header and as many keys as we included */
508 cmd.hdr.size = cpu_to_le16(offsetof(typeof(cmd),
509 keyParamSet[index]));
510 }
511 ret = lbs_cmd_with_response(priv, CMD_802_11_KEY_MATERIAL, &cmd);
512 /* Copy the returned key to driver private data */
513 if (!ret && cmd_action == CMD_ACT_GET) {
514 void *buf_ptr = cmd.keyParamSet;
515 void *resp_end = &(&cmd)[1];
516
517 while (buf_ptr < resp_end) {
518 struct MrvlIEtype_keyParamSet *keyparam = buf_ptr;
519 struct enc_key *key;
520 uint16_t param_set_len = le16_to_cpu(keyparam->length);
521 uint16_t key_len = le16_to_cpu(keyparam->keylen);
522 uint16_t key_flags = le16_to_cpu(keyparam->keyinfo);
523 uint16_t key_type = le16_to_cpu(keyparam->keytypeid);
524 void *end;
525
526 end = (void *)keyparam + sizeof(keyparam->type)
527 + sizeof(keyparam->length) + param_set_len;
528
529 /* Make sure we don't access past the end of the IEs */
530 if (end > resp_end)
531 break;
532
533 if (key_flags & KEY_INFO_WPA_UNICAST)
534 key = &priv->wpa_unicast_key;
535 else if (key_flags & KEY_INFO_WPA_MCAST)
536 key = &priv->wpa_mcast_key;
537 else
538 break;
539
540 /* Copy returned key into driver */
541 memset(key, 0, sizeof(struct enc_key));
542 if (key_len > sizeof(key->key))
543 break;
544 key->type = key_type;
545 key->flags = key_flags;
546 key->len = key_len;
547 memcpy(key->key, keyparam->key, key->len);
548
549 buf_ptr = end + 1;
550 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200551 }
552
Holger Schurig9012b282007-05-25 11:27:16 -0400553 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200554 return ret;
555}
556
Dan Williams39fcf7a2008-09-10 12:49:00 -0400557/**
558 * @brief Set an SNMP MIB value
559 *
560 * @param priv A pointer to struct lbs_private structure
561 * @param oid The OID to set in the firmware
562 * @param val Value to set the OID to
563 *
564 * @return 0 on success, error on failure
565 */
566int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200567{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400568 struct cmd_ds_802_11_snmp_mib cmd;
569 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200570
Holger Schurig9012b282007-05-25 11:27:16 -0400571 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572
Dan Williams39fcf7a2008-09-10 12:49:00 -0400573 memset(&cmd, 0, sizeof (cmd));
574 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
575 cmd.action = cpu_to_le16(CMD_ACT_SET);
576 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200577
Dan Williams39fcf7a2008-09-10 12:49:00 -0400578 switch (oid) {
579 case SNMP_MIB_OID_BSS_TYPE:
580 cmd.bufsize = cpu_to_le16(sizeof(u8));
581 cmd.value[0] = (val == IW_MODE_ADHOC) ? 2 : 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200582 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400583 case SNMP_MIB_OID_11D_ENABLE:
584 case SNMP_MIB_OID_FRAG_THRESHOLD:
585 case SNMP_MIB_OID_RTS_THRESHOLD:
586 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
587 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
588 cmd.bufsize = cpu_to_le16(sizeof(u16));
589 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590 break;
591 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400592 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
593 ret = -EINVAL;
594 goto out;
595 }
596
597 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
598 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
599
600 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
601
602out:
603 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
604 return ret;
605}
606
607/**
608 * @brief Get an SNMP MIB value
609 *
610 * @param priv A pointer to struct lbs_private structure
611 * @param oid The OID to retrieve from the firmware
612 * @param out_val Location for the returned value
613 *
614 * @return 0 on success, error on failure
615 */
616int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
617{
618 struct cmd_ds_802_11_snmp_mib cmd;
619 int ret;
620
621 lbs_deb_enter(LBS_DEB_CMD);
622
623 memset(&cmd, 0, sizeof (cmd));
624 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
625 cmd.action = cpu_to_le16(CMD_ACT_GET);
626 cmd.oid = cpu_to_le16(oid);
627
628 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
629 if (ret)
630 goto out;
631
632 switch (le16_to_cpu(cmd.bufsize)) {
633 case sizeof(u8):
634 if (oid == SNMP_MIB_OID_BSS_TYPE) {
635 if (cmd.value[0] == 2)
636 *out_val = IW_MODE_ADHOC;
637 else
638 *out_val = IW_MODE_INFRA;
639 } else
640 *out_val = cmd.value[0];
641 break;
642 case sizeof(u16):
643 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
644 break;
645 default:
646 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
647 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648 break;
649 }
650
Dan Williams39fcf7a2008-09-10 12:49:00 -0400651out:
652 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
653 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654}
655
Dan Williams87c8c722008-08-19 15:15:35 -0400656/**
657 * @brief Get the min, max, and current TX power
658 *
659 * @param priv A pointer to struct lbs_private structure
660 * @param curlevel Current power level in dBm
661 * @param minlevel Minimum supported power level in dBm (optional)
662 * @param maxlevel Maximum supported power level in dBm (optional)
663 *
664 * @return 0 on success, error on failure
665 */
666int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
667 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200668{
Dan Williams87c8c722008-08-19 15:15:35 -0400669 struct cmd_ds_802_11_rf_tx_power cmd;
670 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671
Holger Schurig9012b282007-05-25 11:27:16 -0400672 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200673
Dan Williams87c8c722008-08-19 15:15:35 -0400674 memset(&cmd, 0, sizeof(cmd));
675 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
676 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200677
Dan Williams87c8c722008-08-19 15:15:35 -0400678 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
679 if (ret == 0) {
680 *curlevel = le16_to_cpu(cmd.curlevel);
681 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100682 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400683 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100684 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200685 }
Holger Schurig9012b282007-05-25 11:27:16 -0400686
687 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams87c8c722008-08-19 15:15:35 -0400688 return ret;
689}
690
691/**
692 * @brief Set the TX power
693 *
694 * @param priv A pointer to struct lbs_private structure
695 * @param dbm The desired power level in dBm
696 *
697 * @return 0 on success, error on failure
698 */
699int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
700{
701 struct cmd_ds_802_11_rf_tx_power cmd;
702 int ret;
703
704 lbs_deb_enter(LBS_DEB_CMD);
705
706 memset(&cmd, 0, sizeof(cmd));
707 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
708 cmd.action = cpu_to_le16(CMD_ACT_SET);
709 cmd.curlevel = cpu_to_le16(dbm);
710
711 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
712
713 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
714
715 lbs_deb_leave(LBS_DEB_CMD);
716 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200717}
718
Holger Schurige98a88d2008-03-19 14:25:58 +0100719static int lbs_cmd_802_11_monitor_mode(struct cmd_ds_command *cmd,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400720 u16 cmd_action, void *pdata_buf)
721{
722 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
723
724 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
725 cmd->size =
726 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
727 S_DS_GEN);
728
729 monitor->action = cpu_to_le16(cmd_action);
730 if (cmd_action == CMD_ACT_SET) {
731 monitor->mode =
732 cpu_to_le16((u16) (*(u32 *) pdata_buf));
733 }
734
735 return 0;
736}
737
Javier Cardona85319f92008-05-24 10:59:49 +0100738static __le16 lbs_rate_to_fw_bitmap(int rate, int lower_rates_ok)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739{
Javier Cardona85319f92008-05-24 10:59:49 +0100740/* Bit Rate
741* 15:13 Reserved
742* 12 54 Mbps
743* 11 48 Mbps
744* 10 36 Mbps
745* 9 24 Mbps
746* 8 18 Mbps
747* 7 12 Mbps
748* 6 9 Mbps
749* 5 6 Mbps
750* 4 Reserved
751* 3 11 Mbps
752* 2 5.5 Mbps
753* 1 2 Mbps
754* 0 1 Mbps
755**/
756
757 uint16_t ratemask;
758 int i = lbs_data_rate_to_fw_index(rate);
759 if (lower_rates_ok)
760 ratemask = (0x1fef >> (12 - i));
761 else
762 ratemask = (1 << i);
763 return cpu_to_le16(ratemask);
764}
765
766int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
767 uint16_t cmd_action)
768{
769 struct cmd_ds_802_11_rate_adapt_rateset cmd;
770 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200771
Holger Schurig8ff12da2007-08-02 11:54:31 -0400772 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200773
Javier Cardona85319f92008-05-24 10:59:49 +0100774 if (!priv->cur_rate && !priv->enablehwauto)
775 return -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200776
Javier Cardona85319f92008-05-24 10:59:49 +0100777 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
778
779 cmd.action = cpu_to_le16(cmd_action);
780 cmd.enablehwauto = cpu_to_le16(priv->enablehwauto);
781 cmd.bitmap = lbs_rate_to_fw_bitmap(priv->cur_rate, priv->enablehwauto);
782 ret = lbs_cmd_with_response(priv, CMD_802_11_RATE_ADAPT_RATESET, &cmd);
783 if (!ret && cmd_action == CMD_ACT_GET) {
784 priv->ratebitmap = le16_to_cpu(cmd.bitmap);
785 priv->enablehwauto = le16_to_cpu(cmd.enablehwauto);
786 }
787
788 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
789 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200790}
Javier Cardona85319f92008-05-24 10:59:49 +0100791EXPORT_SYMBOL_GPL(lbs_cmd_802_11_rate_adapt_rateset);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200792
Dan Williams8e3c91b2007-12-11 15:50:59 -0500793/**
Dan Williams8e3c91b2007-12-11 15:50:59 -0500794 * @brief Set the data rate
795 *
796 * @param priv A pointer to struct lbs_private structure
797 * @param rate The desired data rate, or 0 to clear a locked rate
798 *
799 * @return 0 on success, error on failure
800 */
801int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
802{
803 struct cmd_ds_802_11_data_rate cmd;
804 int ret = 0;
805
806 lbs_deb_enter(LBS_DEB_CMD);
807
808 memset(&cmd, 0, sizeof(cmd));
809 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
810
811 if (rate > 0) {
812 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
813 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
814 if (cmd.rates[0] == 0) {
815 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
816 " 0x%02X\n", rate);
817 ret = 0;
818 goto out;
819 }
820 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
821 } else {
822 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400823 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200824 }
825
David Woodhouse689442d2007-12-12 16:00:42 -0500826 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500827 if (ret)
828 goto out;
829
830 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
831
832 /* FIXME: get actual rates FW can do if this command actually returns
833 * all data rates supported.
834 */
835 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
836 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
837
838out:
839 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
840 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200841}
842
Dan Williams2dd4b262007-12-11 16:54:15 -0500843/**
844 * @brief Get the radio channel
845 *
846 * @param priv A pointer to struct lbs_private structure
847 *
848 * @return The channel on success, error on failure
849 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200850static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200851{
Dan Williams2dd4b262007-12-11 16:54:15 -0500852 struct cmd_ds_802_11_rf_channel cmd;
853 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200854
Holger Schurig8ff12da2007-08-02 11:54:31 -0400855 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200856
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200857 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500858 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
859 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200860
David Woodhouse689442d2007-12-12 16:00:42 -0500861 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500862 if (ret)
863 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200864
Dan Williamscb182a62007-12-11 17:35:51 -0500865 ret = le16_to_cpu(cmd.channel);
866 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500867
868out:
869 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
870 return ret;
871}
872
Holger Schurig73ab1f22008-04-02 16:52:19 +0200873int lbs_update_channel(struct lbs_private *priv)
874{
875 int ret;
876
877 /* the channel in f/w could be out of sync; get the current channel */
878 lbs_deb_enter(LBS_DEB_ASSOC);
879
880 ret = lbs_get_channel(priv);
881 if (ret > 0) {
882 priv->curbssparams.channel = ret;
883 ret = 0;
884 }
885 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
886 return ret;
887}
888
Dan Williams2dd4b262007-12-11 16:54:15 -0500889/**
890 * @brief Set the radio channel
891 *
892 * @param priv A pointer to struct lbs_private structure
893 * @param channel The desired channel, or 0 to clear a locked channel
894 *
895 * @return 0 on success, error on failure
896 */
897int lbs_set_channel(struct lbs_private *priv, u8 channel)
898{
899 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530900#ifdef DEBUG
Dan Williams2dd4b262007-12-11 16:54:15 -0500901 u8 old_channel = priv->curbssparams.channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530902#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500903 int ret = 0;
904
905 lbs_deb_enter(LBS_DEB_CMD);
906
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200907 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500908 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
909 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
910 cmd.channel = cpu_to_le16(channel);
911
David Woodhouse689442d2007-12-12 16:00:42 -0500912 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500913 if (ret)
914 goto out;
915
Dan Williamscb182a62007-12-11 17:35:51 -0500916 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
917 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
918 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500919
920out:
921 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
922 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200923}
924
Holger Schurig69f90322007-11-23 15:43:44 +0100925static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200926 struct cmd_ds_command *cmd)
927{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200928
Holger Schurig8ff12da2007-08-02 11:54:31 -0400929 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400930 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400931 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400932 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200933
934 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000935 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
936 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
937 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
938 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
939 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
940 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200941
Holger Schurig8ff12da2007-08-02 11:54:31 -0400942 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200943 return 0;
944}
945
Holger Schurige98a88d2008-03-19 14:25:58 +0100946static int lbs_cmd_reg_access(struct cmd_ds_command *cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200947 u8 cmd_action, void *pdata_buf)
948{
Holger Schurig10078322007-11-15 18:05:47 -0500949 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200950
Holger Schurig9012b282007-05-25 11:27:16 -0400951 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200952
Holger Schurig10078322007-11-15 18:05:47 -0500953 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200954
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000955 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400956 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200957 {
958 struct cmd_ds_mac_reg_access *macreg;
959
960 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400961 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
962 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200963 macreg =
964 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
965 macreg;
966
967 macreg->action = cpu_to_le16(cmd_action);
968 macreg->offset = cpu_to_le16((u16) offval->offset);
969 macreg->value = cpu_to_le32(offval->value);
970
971 break;
972 }
973
Dan Williams0aef64d2007-08-02 11:31:18 -0400974 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200975 {
976 struct cmd_ds_bbp_reg_access *bbpreg;
977
978 cmdptr->size =
979 cpu_to_le16(sizeof
980 (struct cmd_ds_bbp_reg_access)
981 + S_DS_GEN);
982 bbpreg =
983 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
984 bbpreg;
985
986 bbpreg->action = cpu_to_le16(cmd_action);
987 bbpreg->offset = cpu_to_le16((u16) offval->offset);
988 bbpreg->value = (u8) offval->value;
989
990 break;
991 }
992
Dan Williams0aef64d2007-08-02 11:31:18 -0400993 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200994 {
995 struct cmd_ds_rf_reg_access *rfreg;
996
997 cmdptr->size =
998 cpu_to_le16(sizeof
999 (struct cmd_ds_rf_reg_access) +
1000 S_DS_GEN);
1001 rfreg =
1002 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
1003 rfreg;
1004
1005 rfreg->action = cpu_to_le16(cmd_action);
1006 rfreg->offset = cpu_to_le16((u16) offval->offset);
1007 rfreg->value = (u8) offval->value;
1008
1009 break;
1010 }
1011
1012 default:
1013 break;
1014 }
1015
Holger Schurig9012b282007-05-25 11:27:16 -04001016 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001017 return 0;
1018}
1019
Holger Schurige98a88d2008-03-19 14:25:58 +01001020static int lbs_cmd_bt_access(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021 u16 cmd_action, void *pdata_buf)
1022{
1023 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001024 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001025
Dan Williams0aef64d2007-08-02 11:31:18 -04001026 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001027 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001028 cmd->result = 0;
1029 bt_access->action = cpu_to_le16(cmd_action);
1030
1031 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001032 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001034 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001035 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001036 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001038 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001039 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001040 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001041 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1042 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001043 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001045 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001046 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1047 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001048 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001049 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001050 default:
1051 break;
1052 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001053 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001054 return 0;
1055}
1056
Holger Schurige98a88d2008-03-19 14:25:58 +01001057static int lbs_cmd_fwt_access(struct cmd_ds_command *cmd,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058 u16 cmd_action, void *pdata_buf)
1059{
1060 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001061 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001062
Dan Williams0aef64d2007-08-02 11:31:18 -04001063 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001064 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001065 cmd->result = 0;
1066
1067 if (pdata_buf)
1068 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1069 else
1070 memset(fwt_access, 0, sizeof(*fwt_access));
1071
1072 fwt_access->action = cpu_to_le16(cmd_action);
1073
Holger Schurig8ff12da2007-08-02 11:54:31 -04001074 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075 return 0;
1076}
1077
David Woodhouse301eacb2007-12-11 15:23:59 -05001078int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1079 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080{
David Woodhouse301eacb2007-12-11 15:23:59 -05001081 int ret;
1082
Holger Schurig8ff12da2007-08-02 11:54:31 -04001083 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001084
David Woodhouse301eacb2007-12-11 15:23:59 -05001085 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001086 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001087 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001088
David Woodhouse301eacb2007-12-11 15:23:59 -05001089 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090
David Woodhouse689442d2007-12-12 16:00:42 -05001091 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001092
Holger Schurig8ff12da2007-08-02 11:54:31 -04001093 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001094 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001095}
1096
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -07001097static int __lbs_mesh_config_send(struct lbs_private *priv,
1098 struct cmd_ds_mesh_config *cmd,
1099 uint16_t action, uint16_t type)
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001100{
1101 int ret;
Bing Zhao684d6b32009-03-25 09:51:16 -07001102 u16 command = CMD_MESH_CONFIG_OLD;
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001103
1104 lbs_deb_enter(LBS_DEB_CMD);
1105
Bing Zhao684d6b32009-03-25 09:51:16 -07001106 /*
1107 * Command id is 0xac for v10 FW along with mesh interface
1108 * id in bits 14-13-12.
1109 */
1110 if (priv->mesh_fw_ver == MESH_FW_NEW)
1111 command = CMD_MESH_CONFIG |
1112 (MESH_IFACE_ID << MESH_IFACE_BIT_OFFSET);
1113
1114 cmd->hdr.command = cpu_to_le16(command);
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001115 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_config));
1116 cmd->hdr.result = 0;
1117
1118 cmd->type = cpu_to_le16(type);
1119 cmd->action = cpu_to_le16(action);
1120
Bing Zhao684d6b32009-03-25 09:51:16 -07001121 ret = lbs_cmd_with_response(priv, command, cmd);
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001122
1123 lbs_deb_leave(LBS_DEB_CMD);
1124 return ret;
1125}
1126
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -07001127int lbs_mesh_config_send(struct lbs_private *priv,
1128 struct cmd_ds_mesh_config *cmd,
1129 uint16_t action, uint16_t type)
1130{
1131 int ret;
1132
1133 if (!(priv->fwcapinfo & FW_CAPINFO_PERSISTENT_CONFIG))
1134 return -EOPNOTSUPP;
1135
1136 ret = __lbs_mesh_config_send(priv, cmd, action, type);
1137 return ret;
1138}
1139
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001140/* This function is the CMD_MESH_CONFIG legacy function. It only handles the
1141 * START and STOP actions. The extended actions supported by CMD_MESH_CONFIG
1142 * are all handled by preparing a struct cmd_ds_mesh_config and passing it to
1143 * lbs_mesh_config_send.
1144 */
1145int lbs_mesh_config(struct lbs_private *priv, uint16_t action, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001146{
1147 struct cmd_ds_mesh_config cmd;
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001148 struct mrvl_meshie *ie;
John W. Linville9387b7c2008-09-30 20:59:05 -04001149 DECLARE_SSID_BUF(ssid);
David Woodhouse23a397a2007-12-11 18:56:42 -05001150
1151 memset(&cmd, 0, sizeof(cmd));
David Woodhouse86062132007-12-13 00:32:36 -05001152 cmd.channel = cpu_to_le16(chan);
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001153 ie = (struct mrvl_meshie *)cmd.data;
David Woodhouse7e226272007-12-14 22:53:41 -05001154
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001155 switch (action) {
1156 case CMD_ACT_MESH_CONFIG_START:
Johannes Berg2c7060022008-10-30 22:09:54 +01001157 ie->id = WLAN_EID_GENERIC;
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001158 ie->val.oui[0] = 0x00;
1159 ie->val.oui[1] = 0x50;
1160 ie->val.oui[2] = 0x43;
1161 ie->val.type = MARVELL_MESH_IE_TYPE;
1162 ie->val.subtype = MARVELL_MESH_IE_SUBTYPE;
1163 ie->val.version = MARVELL_MESH_IE_VERSION;
1164 ie->val.active_protocol_id = MARVELL_MESH_PROTO_ID_HWMP;
1165 ie->val.active_metric_id = MARVELL_MESH_METRIC_ID;
1166 ie->val.mesh_capability = MARVELL_MESH_CAPABILITY;
1167 ie->val.mesh_id_len = priv->mesh_ssid_len;
1168 memcpy(ie->val.mesh_id, priv->mesh_ssid, priv->mesh_ssid_len);
Johannes Berg2c7060022008-10-30 22:09:54 +01001169 ie->len = sizeof(struct mrvl_meshie_val) -
Holger Schurig243e84e2009-10-22 15:30:47 +02001170 IEEE80211_MAX_SSID_LEN + priv->mesh_ssid_len;
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001171 cmd.length = cpu_to_le16(sizeof(struct mrvl_meshie_val));
1172 break;
1173 case CMD_ACT_MESH_CONFIG_STOP:
1174 break;
1175 default:
1176 return -1;
David Woodhouse23a397a2007-12-11 18:56:42 -05001177 }
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001178 lbs_deb_cmd("mesh config action %d type %x channel %d SSID %s\n",
1179 action, priv->mesh_tlv, chan,
John W. Linville9387b7c2008-09-30 20:59:05 -04001180 print_ssid(ssid, priv->mesh_ssid, priv->mesh_ssid_len));
Javier Cardonaedaea5c2008-05-17 00:55:10 -07001181
Brian Cavagnolo1556c0f2008-07-21 11:02:46 -07001182 return __lbs_mesh_config_send(priv, &cmd, action, priv->mesh_tlv);
David Woodhouse23a397a2007-12-11 18:56:42 -05001183}
1184
Brajesh Dave96287ac2007-11-20 17:44:28 -05001185static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1186 struct cmd_ds_command *cmd,
1187 u16 cmd_action)
1188{
1189 struct cmd_ds_802_11_beacon_control
1190 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001191
1192 lbs_deb_enter(LBS_DEB_CMD);
1193 cmd->size =
1194 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1195 + S_DS_GEN);
1196 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1197
1198 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001199 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1200 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001201
1202 lbs_deb_leave(LBS_DEB_CMD);
1203 return 0;
1204}
1205
David Woodhouse681ffbb2007-12-15 20:04:54 -05001206static void lbs_queue_cmd(struct lbs_private *priv,
1207 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001208{
1209 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001210 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001211
Holger Schurig8ff12da2007-08-02 11:54:31 -04001212 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001213
David Woodhousec4ab4122007-12-15 00:41:51 -05001214 if (!cmdnode) {
1215 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001216 goto done;
1217 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001218 if (!cmdnode->cmdbuf->size) {
1219 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1220 goto done;
1221 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001222 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001223
1224 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001225 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001226 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001227
Dan Williams0aef64d2007-08-02 11:31:18 -04001228 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001229 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001230 addtail = 0;
1231 }
1232 }
1233
David Woodhouseaa21c002007-12-08 20:04:36 +00001234 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235
David Woodhouseac472462007-12-08 00:35:00 +00001236 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001237 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001238 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001239 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001240
David Woodhouseaa21c002007-12-08 20:04:36 +00001241 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242
Holger Schurig8ff12da2007-08-02 11:54:31 -04001243 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001244 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001245
1246done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001247 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001248}
1249
David Woodhouse18c52e72007-12-17 16:03:58 -05001250static void lbs_submit_command(struct lbs_private *priv,
1251 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252{
1253 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001254 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001255 uint16_t cmdsize;
1256 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +02001257 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -05001258 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001259
Holger Schurig8ff12da2007-08-02 11:54:31 -04001260 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261
Dan Williamsddac4522007-12-11 13:49:39 -05001262 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001263
David Woodhouseaa21c002007-12-08 20:04:36 +00001264 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001265 priv->cur_cmd = cmdnode;
1266 priv->cur_cmd_retcode = 0;
1267 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001268
Dan Williamsddac4522007-12-11 13:49:39 -05001269 cmdsize = le16_to_cpu(cmd->size);
1270 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001271
David Woodhouse18c52e72007-12-17 16:03:58 -05001272 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -04001273 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +02001274 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -05001275
Holger Schurige5225b32008-03-26 10:04:44 +01001276 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
1277 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001278 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001279
Dan Williamsddac4522007-12-11 13:49:39 -05001280 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001281
David Woodhoused9896ee2007-12-15 00:09:25 -05001282 if (ret) {
1283 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001284 /* Let the timer kick in and retry, and potentially reset
1285 the whole thing if the condition persists */
Holger Schurig57962f02008-05-14 16:30:28 +02001286 timeo = HZ/4;
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001287 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001288
Amitkumar Karwar49125452009-09-30 20:04:38 -07001289 if (command == CMD_802_11_DEEP_SLEEP) {
1290 if (priv->is_auto_deep_sleep_enabled) {
1291 priv->wakeup_dev_required = 1;
1292 priv->dnld_sent = 0;
1293 }
1294 priv->is_deep_sleep = 1;
1295 lbs_complete_command(priv, cmdnode, 0);
1296 } else {
1297 /* Setup the timer after transmit command */
1298 mod_timer(&priv->command_timer, jiffies + timeo);
1299 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001300
David Woodhouse18c52e72007-12-17 16:03:58 -05001301 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001302}
1303
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001304/**
1305 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001306 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001307 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001308static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001309 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001310{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001311 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001313 if (!cmdnode)
1314 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001315
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001316 cmdnode->callback = NULL;
1317 cmdnode->callback_arg = 0;
1318
1319 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1320
1321 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1322 out:
1323 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324}
1325
Holger Schurig69f90322007-11-23 15:43:44 +01001326static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1327 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328{
1329 unsigned long flags;
1330
David Woodhouseaa21c002007-12-08 20:04:36 +00001331 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001332 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001333 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001334}
1335
David Woodhouse183aeac2007-12-15 01:52:54 -05001336void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1337 int result)
1338{
1339 if (cmd == priv->cur_cmd)
1340 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001341
David Woodhouseae125bf2007-12-15 04:22:52 -05001342 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001343 cmd->cmdwaitqwoken = 1;
1344 wake_up_interruptible(&cmd->cmdwait_q);
1345
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001346 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001347 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001348 priv->cur_cmd = NULL;
1349}
1350
Dan Williamsd5db2df2008-08-21 17:51:07 -04001351int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001352{
David Woodhousea7c45892007-12-17 22:43:48 -05001353 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001354 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001355
Holger Schurig9012b282007-05-25 11:27:16 -04001356 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357
David Woodhousea7c45892007-12-17 22:43:48 -05001358 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1359 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360
Dan Williamsd5db2df2008-08-21 17:51:07 -04001361 /* Only v8 and below support setting the preamble */
1362 if (priv->fwrelease < 0x09000000) {
1363 switch (preamble) {
1364 case RADIO_PREAMBLE_SHORT:
1365 if (!(priv->capability & WLAN_CAPABILITY_SHORT_PREAMBLE))
1366 goto out;
1367 /* Fall through */
1368 case RADIO_PREAMBLE_AUTO:
1369 case RADIO_PREAMBLE_LONG:
1370 cmd.control = cpu_to_le16(preamble);
1371 break;
1372 default:
1373 goto out;
1374 }
David Woodhousea7c45892007-12-17 22:43:48 -05001375 }
1376
Dan Williamsd5db2df2008-08-21 17:51:07 -04001377 if (radio_on)
1378 cmd.control |= cpu_to_le16(0x1);
1379 else {
1380 cmd.control &= cpu_to_le16(~0x1);
1381 priv->txpower_cur = 0;
1382 }
David Woodhousea7c45892007-12-17 22:43:48 -05001383
Dan Williamsd5db2df2008-08-21 17:51:07 -04001384 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1385 radio_on ? "ON" : "OFF", preamble);
1386
1387 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -05001388
1389 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390
Dan Williamsd5db2df2008-08-21 17:51:07 -04001391out:
Holger Schurig9012b282007-05-25 11:27:16 -04001392 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 return ret;
1394}
1395
Holger Schurigc97329e2008-03-18 11:20:21 +01001396void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001398 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399
Holger Schurig9012b282007-05-25 11:27:16 -04001400 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401
Holger Schurig835d3ac2008-03-12 16:05:40 +01001402 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001403 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001404 cmd.reserved = 0;
1405
David Woodhouse75bf45a2008-05-20 13:32:45 +01001406 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001407
Holger Schurigc97329e2008-03-18 11:20:21 +01001408 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001409}
1410
1411/**
1412 * @brief This function prepare the command before send to firmware.
1413 *
Holger Schurig69f90322007-11-23 15:43:44 +01001414 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001415 * @param cmd_no command number
1416 * @param cmd_action command action: GET or SET
1417 * @param wait_option wait option: wait response or not
1418 * @param cmd_oid cmd oid: treated as sub command
1419 * @param pdata_buf A pointer to informaion buffer
1420 * @return 0 or -1
1421 */
Holger Schurig69f90322007-11-23 15:43:44 +01001422int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001423 u16 cmd_no,
1424 u16 cmd_action,
1425 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1426{
1427 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001428 struct cmd_ctrl_node *cmdnode;
1429 struct cmd_ds_command *cmdptr;
1430 unsigned long flags;
1431
Holger Schurig8ff12da2007-08-02 11:54:31 -04001432 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433
David Woodhouseaa21c002007-12-08 20:04:36 +00001434 if (!priv) {
1435 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 ret = -1;
1437 goto done;
1438 }
1439
David Woodhouseaa21c002007-12-08 20:04:36 +00001440 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001441 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001442 ret = -1;
1443 goto done;
1444 }
1445
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001446 if (!lbs_is_cmd_allowed(priv)) {
1447 ret = -EBUSY;
1448 goto done;
1449 }
1450
Holger Schurig0d61d042007-12-05 17:58:06 +01001451 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001452
1453 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001454 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001455
1456 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001457 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458 ret = -1;
1459 goto done;
1460 }
1461
Holger Schurige98a88d2008-03-19 14:25:58 +01001462 cmdnode->callback = NULL;
1463 cmdnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464
Dan Williamsddac4522007-12-11 13:49:39 -05001465 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001466
Holger Schurig8ff12da2007-08-02 11:54:31 -04001467 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001468
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001470 priv->seqnum++;
1471 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001472
David Woodhouse981f1872007-05-25 23:36:54 -04001473 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001474 cmdptr->result = 0;
1475
1476 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001477 case CMD_802_11_PS_MODE:
Holger Schurige98a88d2008-03-19 14:25:58 +01001478 ret = lbs_cmd_802_11_ps_mode(cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479 break;
1480
Dan Williams0aef64d2007-08-02 11:31:18 -04001481 case CMD_MAC_REG_ACCESS:
1482 case CMD_BBP_REG_ACCESS:
1483 case CMD_RF_REG_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001484 ret = lbs_cmd_reg_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001485 break;
1486
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001487 case CMD_802_11_MONITOR_MODE:
Holger Schurige98a88d2008-03-19 14:25:58 +01001488 ret = lbs_cmd_802_11_monitor_mode(cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001489 cmd_action, pdata_buf);
1490 break;
1491
Dan Williams0aef64d2007-08-02 11:31:18 -04001492 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001493 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001494 break;
1495
Dan Williams0aef64d2007-08-02 11:31:18 -04001496 case CMD_802_11_SET_AFC:
1497 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498
1499 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001500 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1501 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502
1503 memmove(&cmdptr->params.afc,
1504 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1505
1506 ret = 0;
1507 goto done;
1508
Dan Williams0aef64d2007-08-02 11:31:18 -04001509 case CMD_802_11_TPC_CFG:
1510 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001511 cmdptr->size =
1512 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1513 S_DS_GEN);
1514
1515 memmove(&cmdptr->params.tpccfg,
1516 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1517
1518 ret = 0;
1519 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001520 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001521 {
Dan Williams75b6a612009-05-22 20:03:09 -04001522 struct mrvl_ie_ledgpio *gpio =
1523 (struct mrvl_ie_ledgpio*)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001524 cmdptr->params.ledgpio.data;
1525
1526 memmove(&cmdptr->params.ledgpio,
1527 pdata_buf,
1528 sizeof(struct cmd_ds_802_11_led_ctrl));
1529
1530 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001531 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001532
1533#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1534 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001535 cpu_to_le16(le16_to_cpu(gpio->header.len)
1536 + S_DS_GEN
1537 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1538 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001539
1540 ret = 0;
1541 break;
1542 }
David Woodhouse5844d122007-12-18 02:01:37 -05001543
Dan Williams0aef64d2007-08-02 11:31:18 -04001544 case CMD_BT_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001545 ret = lbs_cmd_bt_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001546 break;
1547
Dan Williams0aef64d2007-08-02 11:31:18 -04001548 case CMD_FWT_ACCESS:
Holger Schurige98a88d2008-03-19 14:25:58 +01001549 ret = lbs_cmd_fwt_access(cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001550 break;
1551
Dan Williams0aef64d2007-08-02 11:31:18 -04001552 case CMD_GET_TSF:
1553 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001554 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1555 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001556 ret = 0;
1557 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001558 case CMD_802_11_BEACON_CTRL:
1559 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1560 break;
Amitkumar Karwar49125452009-09-30 20:04:38 -07001561 case CMD_802_11_DEEP_SLEEP:
1562 cmdptr->command = cpu_to_le16(CMD_802_11_DEEP_SLEEP);
1563 cmdptr->size = cpu_to_le16(S_DS_GEN);
1564 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001565 default:
David Woodhousee37fc6e2008-05-20 11:47:16 +01001566 lbs_pr_err("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567 ret = -1;
1568 break;
1569 }
1570
1571 /* return error, since the command preparation failed */
1572 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001573 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001574 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575 ret = -1;
1576 goto done;
1577 }
1578
1579 cmdnode->cmdwaitqwoken = 0;
1580
David Woodhouse681ffbb2007-12-15 20:04:54 -05001581 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001582 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001583
Dan Williams0aef64d2007-08-02 11:31:18 -04001584 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001585 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001586 might_sleep();
1587 wait_event_interruptible(cmdnode->cmdwait_q,
1588 cmdnode->cmdwaitqwoken);
1589 }
1590
David Woodhouseaa21c002007-12-08 20:04:36 +00001591 spin_lock_irqsave(&priv->driver_lock, flags);
1592 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001593 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001594 priv->cur_cmd_retcode);
1595 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001596 ret = -1;
1597 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001598 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001599
1600done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001601 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001602 return ret;
1603}
1604
1605/**
1606 * @brief This function allocates the command buffer and link
1607 * it to command free queue.
1608 *
Holger Schurig69f90322007-11-23 15:43:44 +01001609 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001610 * @return 0 or -1
1611 */
Holger Schurig69f90322007-11-23 15:43:44 +01001612int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001613{
1614 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001615 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001616 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001617 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001618
Holger Schurig8ff12da2007-08-02 11:54:31 -04001619 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620
Dan Williamsddac4522007-12-11 13:49:39 -05001621 /* Allocate and initialize the command array */
1622 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1623 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001624 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001625 ret = -1;
1626 goto done;
1627 }
Dan Williamsddac4522007-12-11 13:49:39 -05001628 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001629
Dan Williamsddac4522007-12-11 13:49:39 -05001630 /* Allocate and initialize each command buffer in the command array */
1631 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1632 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1633 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001634 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001635 ret = -1;
1636 goto done;
1637 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001638 }
1639
Dan Williamsddac4522007-12-11 13:49:39 -05001640 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1641 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1642 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001643 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001644 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001645
1646done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001647 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648 return ret;
1649}
1650
1651/**
1652 * @brief This function frees the command buffer.
1653 *
Holger Schurig69f90322007-11-23 15:43:44 +01001654 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001655 * @return 0 or -1
1656 */
Holger Schurig69f90322007-11-23 15:43:44 +01001657int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001658{
Dan Williamsddac4522007-12-11 13:49:39 -05001659 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001660 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001661
Holger Schurig8ff12da2007-08-02 11:54:31 -04001662 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663
1664 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001665 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001666 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001667 goto done;
1668 }
1669
Dan Williamsddac4522007-12-11 13:49:39 -05001670 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671
1672 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001673 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1674 if (cmdarray[i].cmdbuf) {
1675 kfree(cmdarray[i].cmdbuf);
1676 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001677 }
1678 }
1679
1680 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001681 if (priv->cmd_array) {
1682 kfree(priv->cmd_array);
1683 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001684 }
1685
1686done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001687 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001688 return 0;
1689}
1690
1691/**
1692 * @brief This function gets a free command node if available in
1693 * command free queue.
1694 *
Holger Schurig69f90322007-11-23 15:43:44 +01001695 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001696 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1697 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001698static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699{
1700 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701 unsigned long flags;
1702
Holger Schurig8ff12da2007-08-02 11:54:31 -04001703 lbs_deb_enter(LBS_DEB_HOST);
1704
David Woodhouseaa21c002007-12-08 20:04:36 +00001705 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001706 return NULL;
1707
David Woodhouseaa21c002007-12-08 20:04:36 +00001708 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001709
David Woodhouseaa21c002007-12-08 20:04:36 +00001710 if (!list_empty(&priv->cmdfreeq)) {
1711 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001712 struct cmd_ctrl_node, list);
1713 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001714 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001715 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001716 tempnode = NULL;
1717 }
1718
David Woodhouseaa21c002007-12-08 20:04:36 +00001719 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720
Holger Schurig8ff12da2007-08-02 11:54:31 -04001721 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001722 return tempnode;
1723}
1724
1725/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001726 * @brief This function executes next command in command
Nick Andrew877d0312009-01-26 11:06:57 +01001727 * pending queue. It will put firmware back to PS mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001728 * if applicable.
1729 *
Holger Schurig69f90322007-11-23 15:43:44 +01001730 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001731 * @return 0 or -1
1732 */
Holger Schurig69f90322007-11-23 15:43:44 +01001733int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001734{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001736 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001737 unsigned long flags;
1738 int ret = 0;
1739
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001740 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1741 * only caller to us is lbs_thread() and we get even when a
1742 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001743 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001744
David Woodhouseaa21c002007-12-08 20:04:36 +00001745 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001746
David Woodhouseaa21c002007-12-08 20:04:36 +00001747 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001748 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001749 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750 ret = -1;
1751 goto done;
1752 }
1753
David Woodhouseaa21c002007-12-08 20:04:36 +00001754 if (!list_empty(&priv->cmdpendingq)) {
1755 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001756 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001757 }
1758
David Woodhouseaa21c002007-12-08 20:04:36 +00001759 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001760
1761 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001762 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001763
Dan Williamsddac4522007-12-11 13:49:39 -05001764 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001765 if ((priv->psstate == PS_STATE_SLEEP) ||
1766 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001767 lbs_deb_host(
1768 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001769 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001770 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001771 ret = -1;
1772 goto done;
1773 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001774 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001775 "0x%04x in psstate %d\n",
1776 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001777 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001778 /*
1779 * 1. Non-PS command:
1780 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001781 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001782 * 2. PS command but not Exit_PS:
1783 * Ignore it.
1784 * 3. PS command Exit_PS:
1785 * Set needtowakeup to TRUE if current state is SLEEP,
1786 * otherwise send this command down to firmware
1787 * immediately.
1788 */
Dan Williamsddac4522007-12-11 13:49:39 -05001789 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001790 /* Prepare to send Exit PS,
1791 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001792 if ((priv->psstate == PS_STATE_SLEEP)
1793 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001794 ) {
1795 /* w/ new scheme, it will not reach here.
1796 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001797 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798 } else
Holger Schurig10078322007-11-15 18:05:47 -05001799 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001800
1801 ret = 0;
1802 goto done;
1803 } else {
1804 /*
1805 * PS command. Ignore it if it is not Exit_PS.
1806 * otherwise send it down immediately.
1807 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001808 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001809
Holger Schurig8ff12da2007-08-02 11:54:31 -04001810 lbs_deb_host(
1811 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001812 psm->action);
1813 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001814 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001815 lbs_deb_host(
1816 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001817 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001818 spin_lock_irqsave(&priv->driver_lock, flags);
1819 lbs_complete_command(priv, cmdnode, 0);
1820 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001821
1822 ret = 0;
1823 goto done;
1824 }
1825
David Woodhouseaa21c002007-12-08 20:04:36 +00001826 if ((priv->psstate == PS_STATE_SLEEP) ||
1827 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001828 lbs_deb_host(
1829 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001830 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001831 spin_lock_irqsave(&priv->driver_lock, flags);
1832 lbs_complete_command(priv, cmdnode, 0);
1833 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001834 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001835
1836 ret = 0;
1837 goto done;
1838 }
1839
Holger Schurig8ff12da2007-08-02 11:54:31 -04001840 lbs_deb_host(
1841 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001842 }
1843 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001844 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001845 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001846 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001847 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001848 } else {
1849 /*
1850 * check if in power save mode, if yes, put the device back
1851 * to PS mode
1852 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001853 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1854 (priv->psstate == PS_STATE_FULL_POWER) &&
1855 ((priv->connect_status == LBS_CONNECTED) ||
1856 (priv->mesh_connect_status == LBS_CONNECTED))) {
1857 if (priv->secinfo.WPAenabled ||
1858 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001859 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001860 if (priv->wpa_mcast_key.len ||
1861 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001862 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001863 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1864 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001865 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001866 }
1867 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001868 lbs_deb_host(
1869 "EXEC_NEXT_CMD: cmdpendingq empty, "
1870 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001871 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001872 }
1873 }
1874 }
1875
1876 ret = 0;
1877done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001878 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001879 return ret;
1880}
1881
Holger Schurig69f90322007-11-23 15:43:44 +01001882void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001883{
1884 union iwreq_data iwrq;
1885 u8 buf[50];
1886
Holger Schurig8ff12da2007-08-02 11:54:31 -04001887 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001888
1889 memset(&iwrq, 0, sizeof(union iwreq_data));
1890 memset(buf, 0, sizeof(buf));
1891
1892 snprintf(buf, sizeof(buf) - 1, "%s", str);
1893
1894 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1895
1896 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001897 lbs_deb_wext("event indication string %s\n", (char *)buf);
1898 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1899 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001900
Holger Schurig634b8f42007-05-25 13:05:16 -04001901 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001902
Holger Schurig8ff12da2007-08-02 11:54:31 -04001903 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001904}
1905
Holger Schurigf539f2e2008-03-26 13:22:11 +01001906static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907{
1908 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001909 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001910
Holger Schurig8ff12da2007-08-02 11:54:31 -04001911 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001912 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1913 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001914
Holger Schurigf539f2e2008-03-26 13:22:11 +01001915 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1916 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001917 if (ret) {
Holger Schurigf539f2e2008-03-26 13:22:11 +01001918 lbs_pr_alert("confirm_sleep failed\n");
Holger Schurig7919b892008-04-01 14:50:43 +02001919 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001920 }
Holger Schurig7919b892008-04-01 14:50:43 +02001921
1922 spin_lock_irqsave(&priv->driver_lock, flags);
1923
Holger Schuriga01f5452008-06-04 11:10:40 +02001924 /* We don't get a response on the sleep-confirmation */
1925 priv->dnld_sent = DNLD_RES_RECEIVED;
1926
Holger Schurig7919b892008-04-01 14:50:43 +02001927 /* If nothing to do, go back to sleep (?) */
1928 if (!__kfifo_len(priv->event_fifo) && !priv->resp_len[priv->resp_idx])
1929 priv->psstate = PS_STATE_SLEEP;
1930
1931 spin_unlock_irqrestore(&priv->driver_lock, flags);
1932
1933out:
Holger Schurigf539f2e2008-03-26 13:22:11 +01001934 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001935}
1936
Holger Schurig69f90322007-11-23 15:43:44 +01001937void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001938{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001939 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001940
1941 /*
1942 * PS is currently supported only in Infrastructure mode
1943 * Remove this check if it is to be supported in IBSS mode also
1944 */
1945
Holger Schurig10078322007-11-15 18:05:47 -05001946 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001947 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001948
Holger Schurig8ff12da2007-08-02 11:54:31 -04001949 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001950}
1951
1952/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001953 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954 *
Holger Schurig69f90322007-11-23 15:43:44 +01001955 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001956 * @param wait_option wait response or not
1957 * @return n/a
1958 */
Holger Schurig69f90322007-11-23 15:43:44 +01001959void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960{
David Woodhouse981f1872007-05-25 23:36:54 -04001961 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001962
Holger Schurig8ff12da2007-08-02 11:54:31 -04001963 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964
Holger Schurig10078322007-11-15 18:05:47 -05001965 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001966
Holger Schurig10078322007-11-15 18:05:47 -05001967 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001968 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001969 wait_option, 0, &Localpsmode);
1970
Holger Schurig8ff12da2007-08-02 11:54:31 -04001971 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001972}
1973
1974/**
1975 * @brief This function checks condition and prepares to
1976 * send sleep confirm command to firmware if ok.
1977 *
Holger Schurig69f90322007-11-23 15:43:44 +01001978 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001979 * @param psmode Power Saving mode
1980 * @return n/a
1981 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001982void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983{
1984 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001985 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001986
Holger Schurig8ff12da2007-08-02 11:54:31 -04001987 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001988
Holger Schuriga01f5452008-06-04 11:10:40 +02001989 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f42007-05-25 13:05:16 -04001990 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001991 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001992 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001993 }
1994
Holger Schurig7919b892008-04-01 14:50:43 +02001995 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001996 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001997 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001998 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001999 }
Holger Schurig7919b892008-04-01 14:50:43 +02002000
2001 /* Pending events or command responses? */
2002 if (__kfifo_len(priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002003 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02002004 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002005 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002006 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002007
2008 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002009 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01002010 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002011 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002012 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002013 }
2014
Holger Schurig8ff12da2007-08-02 11:54:31 -04002015 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002016}
Holger Schurig675787e2007-12-05 17:58:11 +01002017
2018
Anna Neal0112c9e2008-09-11 11:17:25 -07002019/**
2020 * @brief Configures the transmission power control functionality.
2021 *
2022 * @param priv A pointer to struct lbs_private structure
2023 * @param enable Transmission power control enable
2024 * @param p0 Power level when link quality is good (dBm).
2025 * @param p1 Power level when link quality is fair (dBm).
2026 * @param p2 Power level when link quality is poor (dBm).
2027 * @param usesnr Use Signal to Noise Ratio in TPC
2028 *
2029 * @return 0 on success
2030 */
2031int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
2032 int8_t p2, int usesnr)
2033{
2034 struct cmd_ds_802_11_tpc_cfg cmd;
2035 int ret;
2036
2037 memset(&cmd, 0, sizeof(cmd));
2038 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
2039 cmd.action = cpu_to_le16(CMD_ACT_SET);
2040 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04002041 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07002042 cmd.P0 = p0;
2043 cmd.P1 = p1;
2044 cmd.P2 = p2;
2045
2046 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
2047
2048 return ret;
2049}
2050
2051/**
2052 * @brief Configures the power adaptation settings.
2053 *
2054 * @param priv A pointer to struct lbs_private structure
2055 * @param enable Power adaptation enable
2056 * @param p0 Power level for 1, 2, 5.5 and 11 Mbps (dBm).
2057 * @param p1 Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
2058 * @param p2 Power level for 48 and 54 Mbps (dBm).
2059 *
2060 * @return 0 on Success
2061 */
2062
2063int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
2064 int8_t p1, int8_t p2)
2065{
2066 struct cmd_ds_802_11_pa_cfg cmd;
2067 int ret;
2068
2069 memset(&cmd, 0, sizeof(cmd));
2070 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
2071 cmd.action = cpu_to_le16(CMD_ACT_SET);
2072 cmd.enable = !!enable;
2073 cmd.P0 = p0;
2074 cmd.P1 = p1;
2075 cmd.P2 = p2;
2076
2077 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
2078
2079 return ret;
2080}
2081
2082
Holger Schurig6d898b12009-10-14 16:49:53 +02002083struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002084 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
2085 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2086 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002087{
Holger Schurig675787e2007-12-05 17:58:11 +01002088 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002089
2090 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002091
David Woodhouseaa21c002007-12-08 20:04:36 +00002092 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002093 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002094 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002095 goto done;
2096 }
2097
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07002098 if (!lbs_is_cmd_allowed(priv)) {
2099 cmdnode = ERR_PTR(-EBUSY);
2100 goto done;
2101 }
2102
Holger Schurig675787e2007-12-05 17:58:11 +01002103 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002104 if (cmdnode == NULL) {
2105 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2106
2107 /* Wake up main thread to execute next command */
2108 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002109 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002110 goto done;
2111 }
2112
David Woodhouse448a51a2007-12-08 00:59:54 +00002113 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002114 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002115
Dan Williams7ad994d2007-12-11 12:33:30 -05002116 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002117 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002118
Holger Schurig675787e2007-12-05 17:58:11 +01002119 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002120 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002121 cmdnode->cmdbuf->command = cpu_to_le16(command);
2122 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2123 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2124 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002125
2126 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2127
Holger Schurig675787e2007-12-05 17:58:11 +01002128 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002129 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002130 wake_up_interruptible(&priv->waitq);
2131
David Woodhouse3399ea52007-12-15 03:09:33 -05002132 done:
2133 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2134 return cmdnode;
2135}
2136
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002137void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2138 struct cmd_header *in_cmd, int in_cmd_size)
2139{
2140 lbs_deb_enter(LBS_DEB_CMD);
2141 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2142 lbs_cmd_async_callback, 0);
2143 lbs_deb_leave(LBS_DEB_CMD);
2144}
2145
David Woodhouse3399ea52007-12-15 03:09:33 -05002146int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2147 struct cmd_header *in_cmd, int in_cmd_size,
2148 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2149 unsigned long callback_arg)
2150{
2151 struct cmd_ctrl_node *cmdnode;
2152 unsigned long flags;
2153 int ret = 0;
2154
2155 lbs_deb_enter(LBS_DEB_HOST);
2156
2157 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2158 callback, callback_arg);
2159 if (IS_ERR(cmdnode)) {
2160 ret = PTR_ERR(cmdnode);
2161 goto done;
2162 }
2163
Holger Schurig675787e2007-12-05 17:58:11 +01002164 might_sleep();
2165 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2166
David Woodhouseaa21c002007-12-08 20:04:36 +00002167 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002168 ret = cmdnode->result;
2169 if (ret)
2170 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2171 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002172
David Woodhousead12d0f2007-12-15 02:06:16 -05002173 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002174 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002175
2176done:
2177 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2178 return ret;
2179}
Dan Williams14e865b2007-12-10 15:11:23 -05002180EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002181
2182