blob: 733110a03b56815252fbc0d5d72dc8d9e2ecdb89 [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>
7#include "host.h"
8#include "hostcmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "decl.h"
10#include "defs.h"
11#include "dev.h"
12#include "join.h"
13#include "wext.h"
Dan Williams6e66f032007-12-11 12:42:16 -050014#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050016static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
17static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Holger Schurig0d61d042007-12-05 17:58:06 +010018 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -050019 void *pdata_buf);
Holger Schurig0d61d042007-12-05 17:58:06 +010020
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022/**
Holger Schurig8db4a2b2008-03-19 10:11:00 +010023 * @brief Simple callback that copies response back into command
24 *
25 * @param priv A pointer to struct lbs_private structure
26 * @param extra A pointer to the original command structure for which
27 * 'resp' is a response
28 * @param resp A pointer to the command response
29 *
30 * @return 0 on success, error on failure
31 */
32int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
33 struct cmd_header *resp)
34{
35 struct cmd_header *buf = (void *)extra;
36 uint16_t copy_len;
37
38 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
39 memcpy(buf, resp, copy_len);
40 return 0;
41}
42EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
43
44/**
45 * @brief Simple callback that ignores the result. Use this if
46 * you just want to send a command to the hardware, but don't
47 * care for the result.
48 *
49 * @param priv ignored
50 * @param extra ignored
51 * @param resp ignored
52 *
53 * @return 0 for success
54 */
55static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
56 struct cmd_header *resp)
57{
58 return 0;
59}
60
61
62/**
Dan Williams852e1f22007-12-10 15:24:47 -050063 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064 *
65 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050066 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020067 */
Dan Williams852e1f22007-12-10 15:24:47 -050068static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020069{
Dan Williams852e1f22007-12-10 15:24:47 -050070 switch (cmd) {
71 case CMD_802_11_RSSI:
72 return 1;
73 default:
74 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076 return 0;
77}
78
Dan Williams6e66f032007-12-11 12:42:16 -050079/**
80 * @brief Updates the hardware details like MAC address and regulatory region
81 *
82 * @param priv A pointer to struct lbs_private structure
83 *
84 * @return 0 on success, error on failure
85 */
86int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020087{
Dan Williams6e66f032007-12-11 12:42:16 -050088 struct cmd_ds_get_hw_spec cmd;
89 int ret = -1;
90 u32 i;
91 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020092
Holger Schurig9012b282007-05-25 11:27:16 -040093 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020094
Dan Williams6e66f032007-12-11 12:42:16 -050095 memset(&cmd, 0, sizeof(cmd));
96 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
97 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050098 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050099 if (ret)
100 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101
Dan Williams6e66f032007-12-11 12:42:16 -0500102 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500103
Holger Schurigdac10a92008-01-16 15:55:22 +0100104 /* The firmware release is in an interesting format: the patch
105 * level is in the most significant nibble ... so fix that: */
106 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
107 priv->fwrelease = (priv->fwrelease << 8) |
108 (priv->fwrelease >> 24 & 0xff);
109
110 /* Some firmware capabilities:
111 * CF card firmware 5.0.16p0: cap 0x00000303
112 * USB dongle firmware 5.110.17p2: cap 0x00000303
113 */
114 printk("libertas: %s, fw %u.%u.%up%u, cap 0x%08x\n",
115 print_mac(mac, cmd.permanentaddr),
116 priv->fwrelease >> 24 & 0xff,
117 priv->fwrelease >> 16 & 0xff,
118 priv->fwrelease >> 8 & 0xff,
119 priv->fwrelease & 0xff,
120 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500121 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
122 cmd.hwifversion, cmd.version);
123
124 /* Clamp region code to 8-bit since FW spec indicates that it should
125 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
126 * returns non-zero high 8 bits here.
127 */
128 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
129
130 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
131 /* use the region code to search for the index */
132 if (priv->regioncode == lbs_region_code_to_index[i])
133 break;
134 }
135
136 /* if it's unidentified region code, use the default (USA) */
137 if (i >= MRVDRV_MAX_REGION_CODE) {
138 priv->regioncode = 0x10;
139 lbs_pr_info("unidentified region code; using the default (USA)\n");
140 }
141
142 if (priv->current_addr[0] == 0xff)
143 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
144
145 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
146 if (priv->mesh_dev)
147 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
148
149 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
150 ret = -1;
151 goto out;
152 }
153
154 if (lbs_set_universaltable(priv, 0)) {
155 ret = -1;
156 goto out;
157 }
158
159out:
Holger Schurig9012b282007-05-25 11:27:16 -0400160 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500161 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162}
163
David Woodhouse506e9022007-12-12 20:06:06 -0500164int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500165{
166 struct cmd_ds_host_sleep cmd_config;
167 int ret;
168
David Woodhouse9fae8992007-12-15 03:46:44 -0500169 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500170 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500171 cmd_config.gpio = priv->wol_gpio;
172 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500173
David Woodhouse689442d2007-12-12 16:00:42 -0500174 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500175 if (!ret) {
176 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
177 priv->wol_criteria = criteria;
178 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500179 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500180 }
David Woodhouse506e9022007-12-12 20:06:06 -0500181
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500182 return ret;
183}
184EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
185
Holger Schurig69f90322007-11-23 15:43:44 +0100186static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200187 struct cmd_ds_command *cmd,
188 u16 cmd_action)
189{
190 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191
Holger Schurig9012b282007-05-25 11:27:16 -0400192 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193
Dan Williams0aef64d2007-08-02 11:31:18 -0400194 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400195 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
196 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200197 psm->action = cpu_to_le16(cmd_action);
198 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400199 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400200 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400201 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200202
Holger Schurig252cf0d2007-08-02 13:09:34 -0400203 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400204 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400206 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200207 break;
208
Dan Williams0aef64d2007-08-02 11:31:18 -0400209 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400210 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211 break;
212
Dan Williams0aef64d2007-08-02 11:31:18 -0400213 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400214 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200215 break;
216
217 default:
218 break;
219 }
220
Holger Schurig9012b282007-05-25 11:27:16 -0400221 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200222 return 0;
223}
224
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500225int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
226 uint16_t cmd_action, uint16_t *timeout)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200227{
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500228 struct cmd_ds_802_11_inactivity_timeout cmd;
229 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200230
Holger Schurig8ff12da2007-08-02 11:54:31 -0400231 lbs_deb_enter(LBS_DEB_CMD);
232
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500233 cmd.hdr.command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
234 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200235
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500236 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500238 if (cmd_action == CMD_ACT_SET)
239 cmd.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240 else
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500241 cmd.timeout = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200242
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500243 ret = lbs_cmd_with_response(priv, CMD_802_11_INACTIVITY_TIMEOUT, &cmd);
244
245 if (!ret)
246 *timeout = le16_to_cpu(cmd.timeout);
247
248 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200249 return 0;
250}
251
David Woodhouse3fbe1042007-12-17 23:48:31 -0500252int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
253 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200254{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500255 struct cmd_ds_802_11_sleep_params cmd;
256 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257
Holger Schurig9012b282007-05-25 11:27:16 -0400258 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259
Dan Williams0aef64d2007-08-02 11:31:18 -0400260 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500261 memset(&cmd, 0, sizeof(cmd));
262 } else {
263 cmd.error = cpu_to_le16(sp->sp_error);
264 cmd.offset = cpu_to_le16(sp->sp_offset);
265 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
266 cmd.calcontrol = sp->sp_calcontrol;
267 cmd.externalsleepclk = sp->sp_extsleepclk;
268 cmd.reserved = cpu_to_le16(sp->sp_reserved);
269 }
270 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
271 cmd.action = cpu_to_le16(cmd_action);
272
273 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
274
275 if (!ret) {
276 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
277 "calcontrol 0x%x extsleepclk 0x%x\n",
278 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
279 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
280 cmd.externalsleepclk);
281
282 sp->sp_error = le16_to_cpu(cmd.error);
283 sp->sp_offset = le16_to_cpu(cmd.offset);
284 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
285 sp->sp_calcontrol = cmd.calcontrol;
286 sp->sp_extsleepclk = cmd.externalsleepclk;
287 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200288 }
289
David Woodhouse3fbe1042007-12-17 23:48:31 -0500290 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200291 return 0;
292}
293
David Woodhousef70dd452007-12-18 00:18:05 -0500294int lbs_cmd_802_11_set_wep(struct lbs_private *priv, uint16_t cmd_action,
295 struct assoc_request *assoc)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296{
David Woodhousef70dd452007-12-18 00:18:05 -0500297 struct cmd_ds_802_11_set_wep cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200299
Holger Schurig9012b282007-05-25 11:27:16 -0400300 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200301
David Woodhousef70dd452007-12-18 00:18:05 -0500302 cmd.hdr.command = cpu_to_le16(CMD_802_11_SET_WEP);
303 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304
David Woodhousef70dd452007-12-18 00:18:05 -0500305 cmd.action = cpu_to_le16(cmd_action);
306
307 if (cmd_action == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308 int i;
309
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200310 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500311 cmd.keyindex = cpu_to_le16(assoc->wep_tx_keyidx &
312 CMD_WEP_KEY_INDEX_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200313
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200314 /* Copy key types and material to host command structure */
315 for (i = 0; i < 4; i++) {
David Woodhousef70dd452007-12-18 00:18:05 -0500316 struct enc_key *pkey = &assoc->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200317
318 switch (pkey->len) {
319 case KEY_LEN_WEP_40:
David Woodhousef70dd452007-12-18 00:18:05 -0500320 cmd.keytype[i] = CMD_TYPE_WEP_40_BIT;
321 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400322 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200323 break;
324 case KEY_LEN_WEP_104:
David Woodhousef70dd452007-12-18 00:18:05 -0500325 cmd.keytype[i] = CMD_TYPE_WEP_104_BIT;
326 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400327 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328 break;
329 case 0:
330 break;
331 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400332 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
David Woodhousef70dd452007-12-18 00:18:05 -0500333 i, pkey->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200334 ret = -1;
335 goto done;
336 break;
337 }
338 }
David Woodhousef70dd452007-12-18 00:18:05 -0500339 } else if (cmd_action == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200340 /* ACT_REMOVE clears _all_ WEP keys */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200341
342 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500343 cmd.keyindex = cpu_to_le16(priv->wep_tx_keyidx &
344 CMD_WEP_KEY_INDEX_MASK);
David Woodhouseaa21c002007-12-08 20:04:36 +0000345 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200346 }
347
David Woodhousef70dd452007-12-18 00:18:05 -0500348 ret = lbs_cmd_with_response(priv, CMD_802_11_SET_WEP, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200349done:
Holger Schurig9012b282007-05-25 11:27:16 -0400350 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200351 return ret;
352}
353
David Woodhouse4f59abf2007-12-18 00:47:17 -0500354int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv, uint16_t cmd_action,
355 uint16_t *enable)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200356{
David Woodhouse4f59abf2007-12-18 00:47:17 -0500357 struct cmd_ds_802_11_enable_rsn cmd;
358 int ret;
Dan Williams90a42212007-05-25 23:01:24 -0400359
360 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200361
David Woodhouse4f59abf2007-12-18 00:47:17 -0500362 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
363 cmd.action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400364
Dan Williams0aef64d2007-08-02 11:31:18 -0400365 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400366 if (*enable)
David Woodhouse4f59abf2007-12-18 00:47:17 -0500367 cmd.enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400368 else
David Woodhouse4f59abf2007-12-18 00:47:17 -0500369 cmd.enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400370 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200371 }
372
David Woodhouse4f59abf2007-12-18 00:47:17 -0500373 ret = lbs_cmd_with_response(priv, CMD_802_11_ENABLE_RSN, &cmd);
374 if (!ret && cmd_action == CMD_ACT_GET)
375 *enable = le16_to_cpu(cmd.enable);
376
377 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
378 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379}
380
David Woodhouse9e1228d2008-03-03 12:15:39 +0100381static void set_one_wpa_key(struct MrvlIEtype_keyParamSet *keyparam,
382 struct enc_key *key)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400384 lbs_deb_enter(LBS_DEB_CMD);
385
David Woodhouse9e1228d2008-03-03 12:15:39 +0100386 if (key->flags & KEY_INFO_WPA_ENABLED)
387 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
388 if (key->flags & KEY_INFO_WPA_UNICAST)
389 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
390 if (key->flags & KEY_INFO_WPA_MCAST)
391 keyparam->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200392
David Woodhouse9e1228d2008-03-03 12:15:39 +0100393 keyparam->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
394 keyparam->keytypeid = cpu_to_le16(key->type);
395 keyparam->keylen = cpu_to_le16(key->len);
396 memcpy(keyparam->key, key->key, key->len);
397
398 /* Length field doesn't include the {type,length} header */
399 keyparam->length = cpu_to_le16(sizeof(*keyparam) - 4);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400400 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401}
402
David Woodhouse9e1228d2008-03-03 12:15:39 +0100403int lbs_cmd_802_11_key_material(struct lbs_private *priv, uint16_t cmd_action,
404 struct assoc_request *assoc)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405{
David Woodhouse9e1228d2008-03-03 12:15:39 +0100406 struct cmd_ds_802_11_key_material cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407 int ret = 0;
408 int index = 0;
409
Holger Schurig9012b282007-05-25 11:27:16 -0400410 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411
David Woodhouse9e1228d2008-03-03 12:15:39 +0100412 cmd.action = cpu_to_le16(cmd_action);
413 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200414
Dan Williams0aef64d2007-08-02 11:31:18 -0400415 if (cmd_action == CMD_ACT_GET) {
David Woodhouse9e1228d2008-03-03 12:15:39 +0100416 cmd.hdr.size = cpu_to_le16(S_DS_GEN + 2);
417 } else {
418 memset(cmd.keyParamSet, 0, sizeof(cmd.keyParamSet));
419
420 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc->flags)) {
421 set_one_wpa_key(&cmd.keyParamSet[index],
422 &assoc->wpa_unicast_key);
423 index++;
424 }
425
426 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc->flags)) {
427 set_one_wpa_key(&cmd.keyParamSet[index],
428 &assoc->wpa_mcast_key);
429 index++;
430 }
431
432 /* The common header and as many keys as we included */
433 cmd.hdr.size = cpu_to_le16(offsetof(typeof(cmd),
434 keyParamSet[index]));
435 }
436 ret = lbs_cmd_with_response(priv, CMD_802_11_KEY_MATERIAL, &cmd);
437 /* Copy the returned key to driver private data */
438 if (!ret && cmd_action == CMD_ACT_GET) {
439 void *buf_ptr = cmd.keyParamSet;
440 void *resp_end = &(&cmd)[1];
441
442 while (buf_ptr < resp_end) {
443 struct MrvlIEtype_keyParamSet *keyparam = buf_ptr;
444 struct enc_key *key;
445 uint16_t param_set_len = le16_to_cpu(keyparam->length);
446 uint16_t key_len = le16_to_cpu(keyparam->keylen);
447 uint16_t key_flags = le16_to_cpu(keyparam->keyinfo);
448 uint16_t key_type = le16_to_cpu(keyparam->keytypeid);
449 void *end;
450
451 end = (void *)keyparam + sizeof(keyparam->type)
452 + sizeof(keyparam->length) + param_set_len;
453
454 /* Make sure we don't access past the end of the IEs */
455 if (end > resp_end)
456 break;
457
458 if (key_flags & KEY_INFO_WPA_UNICAST)
459 key = &priv->wpa_unicast_key;
460 else if (key_flags & KEY_INFO_WPA_MCAST)
461 key = &priv->wpa_mcast_key;
462 else
463 break;
464
465 /* Copy returned key into driver */
466 memset(key, 0, sizeof(struct enc_key));
467 if (key_len > sizeof(key->key))
468 break;
469 key->type = key_type;
470 key->flags = key_flags;
471 key->len = key_len;
472 memcpy(key->key, keyparam->key, key->len);
473
474 buf_ptr = end + 1;
475 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476 }
477
Holger Schurig9012b282007-05-25 11:27:16 -0400478 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479 return ret;
480}
481
Holger Schurig69f90322007-11-23 15:43:44 +0100482static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483 struct cmd_ds_command *cmd, int cmd_action)
484{
485 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
486
Holger Schurig8ff12da2007-08-02 11:54:31 -0400487 lbs_deb_enter(LBS_DEB_CMD);
488
Dan Williams0aef64d2007-08-02 11:31:18 -0400489 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
491 reset->action = cpu_to_le16(cmd_action);
492
Holger Schurig8ff12da2007-08-02 11:54:31 -0400493 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200494 return 0;
495}
496
Holger Schurig69f90322007-11-23 15:43:44 +0100497static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498 struct cmd_ds_command *cmd)
499{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400500 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400501 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200502 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400503 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200504
Holger Schurig8ff12da2007-08-02 11:54:31 -0400505 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200506 return 0;
507}
508
Holger Schurig69f90322007-11-23 15:43:44 +0100509static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510 struct cmd_ds_command *cmd,
511 int cmd_action,
512 int cmd_oid, void *pdata_buf)
513{
514 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200515 u8 ucTemp;
516
Holger Schurig9012b282007-05-25 11:27:16 -0400517 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200518
Holger Schurig9012b282007-05-25 11:27:16 -0400519 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200520
Dan Williams0aef64d2007-08-02 11:31:18 -0400521 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400522 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200523
524 switch (cmd_oid) {
525 case OID_802_11_INFRASTRUCTURE_MODE:
526 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400527 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400528 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
529 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000530 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400531 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200532 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400533 } else {
534 /* Infra and Auto modes */
535 ucTemp = SNMP_MIB_VALUE_INFRA;
536 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200537
538 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
539
540 break;
541 }
542
543 case OID_802_11D_ENABLE:
544 {
545 u32 ulTemp;
546
Dan Williams0aef64d2007-08-02 11:31:18 -0400547 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200548
Dan Williams0aef64d2007-08-02 11:31:18 -0400549 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000550 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
551 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400553 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200554 cpu_to_le16((u16) ulTemp);
555 }
556 break;
557 }
558
559 case OID_802_11_FRAGMENTATION_THRESHOLD:
560 {
561 u32 ulTemp;
562
Dan Williams0aef64d2007-08-02 11:31:18 -0400563 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564
Dan Williams0aef64d2007-08-02 11:31:18 -0400565 if (cmd_action == CMD_ACT_GET) {
566 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
567 } else if (cmd_action == CMD_ACT_SET) {
568 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400569 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200570 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400571 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572 cpu_to_le16((u16) ulTemp);
573
574 }
575
576 break;
577 }
578
579 case OID_802_11_RTS_THRESHOLD:
580 {
581
582 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000583 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200584
Dan Williams0aef64d2007-08-02 11:31:18 -0400585 if (cmd_action == CMD_ACT_GET) {
586 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
587 } else if (cmd_action == CMD_ACT_SET) {
588 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400589 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
590 ulTemp = *((u32 *)pdata_buf);
591 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200592 cpu_to_le16((u16) ulTemp);
593
594 }
595 break;
596 }
597 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400598 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599
Dan Williams0aef64d2007-08-02 11:31:18 -0400600 if (cmd_action == CMD_ACT_GET) {
601 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
602 } else if (cmd_action == CMD_ACT_SET) {
603 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200604 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400605 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000606 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607 }
608
609 break;
610 default:
611 break;
612 }
613
Holger Schurig9012b282007-05-25 11:27:16 -0400614 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200615 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400616 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
617 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618
Holger Schurig9012b282007-05-25 11:27:16 -0400619 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400620 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400621 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
622 le16_to_cpu(pSNMPMIB->bufsize),
623 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200624
Holger Schurig9012b282007-05-25 11:27:16 -0400625 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626 return 0;
627}
628
Holger Schurig69f90322007-11-23 15:43:44 +0100629static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 struct cmd_ds_command *cmd,
631 u16 cmd_action, void *pdata_buf)
632{
633
634 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
635
Holger Schurig9012b282007-05-25 11:27:16 -0400636 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637
638 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400639 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400640 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400641 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642
David Woodhouse981f1872007-05-25 23:36:54 -0400643 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
644 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
645 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200646
647 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400648 case CMD_ACT_TX_POWER_OPT_GET:
649 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650 prtp->currentlevel = 0;
651 break;
652
Dan Williams0aef64d2007-08-02 11:31:18 -0400653 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
654 prtp->action = cpu_to_le16(CMD_ACT_SET);
655 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656 break;
657
Dan Williams0aef64d2007-08-02 11:31:18 -0400658 case CMD_ACT_TX_POWER_OPT_SET_MID:
659 prtp->action = cpu_to_le16(CMD_ACT_SET);
660 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200661 break;
662
Dan Williams0aef64d2007-08-02 11:31:18 -0400663 case CMD_ACT_TX_POWER_OPT_SET_LOW:
664 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200665 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
666 break;
667 }
Holger Schurig9012b282007-05-25 11:27:16 -0400668
669 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200670 return 0;
671}
672
Holger Schurig69f90322007-11-23 15:43:44 +0100673static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400674 struct cmd_ds_command *cmd,
675 u16 cmd_action, void *pdata_buf)
676{
677 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
678
679 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
680 cmd->size =
681 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
682 S_DS_GEN);
683
684 monitor->action = cpu_to_le16(cmd_action);
685 if (cmd_action == CMD_ACT_SET) {
686 monitor->mode =
687 cpu_to_le16((u16) (*(u32 *) pdata_buf));
688 }
689
690 return 0;
691}
692
Holger Schurig69f90322007-11-23 15:43:44 +0100693static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694 struct cmd_ds_command *cmd,
695 u16 cmd_action)
696{
697 struct cmd_ds_802_11_rate_adapt_rateset
698 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200699
Holger Schurig8ff12da2007-08-02 11:54:31 -0400700 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200701 cmd->size =
702 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
703 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400704 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705
David Woodhouse981f1872007-05-25 23:36:54 -0400706 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000707 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
708 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200709
Holger Schurig9012b282007-05-25 11:27:16 -0400710 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711 return 0;
712}
713
Dan Williams8e3c91b2007-12-11 15:50:59 -0500714/**
715 * @brief Get the current data rate
716 *
717 * @param priv A pointer to struct lbs_private structure
718 *
719 * @return The data rate on success, error on failure
720 */
721int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200722{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500723 struct cmd_ds_802_11_data_rate cmd;
724 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200725
Holger Schurig9012b282007-05-25 11:27:16 -0400726 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727
Dan Williams8e3c91b2007-12-11 15:50:59 -0500728 memset(&cmd, 0, sizeof(cmd));
729 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
730 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200731
David Woodhouse689442d2007-12-12 16:00:42 -0500732 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500733 if (ret)
734 goto out;
735
736 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
737
738 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
739 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
740
741out:
742 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
743 return ret;
744}
745
746/**
747 * @brief Set the data rate
748 *
749 * @param priv A pointer to struct lbs_private structure
750 * @param rate The desired data rate, or 0 to clear a locked rate
751 *
752 * @return 0 on success, error on failure
753 */
754int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
755{
756 struct cmd_ds_802_11_data_rate cmd;
757 int ret = 0;
758
759 lbs_deb_enter(LBS_DEB_CMD);
760
761 memset(&cmd, 0, sizeof(cmd));
762 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
763
764 if (rate > 0) {
765 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
766 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
767 if (cmd.rates[0] == 0) {
768 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
769 " 0x%02X\n", rate);
770 ret = 0;
771 goto out;
772 }
773 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
774 } else {
775 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400776 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777 }
778
David Woodhouse689442d2007-12-12 16:00:42 -0500779 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500780 if (ret)
781 goto out;
782
783 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
784
785 /* FIXME: get actual rates FW can do if this command actually returns
786 * all data rates supported.
787 */
788 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
789 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
790
791out:
792 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
793 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200794}
795
Holger Schurig69f90322007-11-23 15:43:44 +0100796static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200797 struct cmd_ds_command *cmd,
798 u16 cmd_action)
799{
800 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200801
Holger Schurig8ff12da2007-08-02 11:54:31 -0400802 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400803 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200804 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400805 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806
Holger Schurig8ff12da2007-08-02 11:54:31 -0400807 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808 pMCastAdr->action = cpu_to_le16(cmd_action);
809 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000810 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
811 memcpy(pMCastAdr->maclist, priv->multicastlist,
812 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200813
Holger Schurig8ff12da2007-08-02 11:54:31 -0400814 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200815 return 0;
816}
817
Dan Williams2dd4b262007-12-11 16:54:15 -0500818/**
819 * @brief Get the radio channel
820 *
821 * @param priv A pointer to struct lbs_private structure
822 *
823 * @return The channel on success, error on failure
824 */
825int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200826{
Dan Williams2dd4b262007-12-11 16:54:15 -0500827 struct cmd_ds_802_11_rf_channel cmd;
828 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829
Holger Schurig8ff12da2007-08-02 11:54:31 -0400830 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200831
Dan Williams2dd4b262007-12-11 16:54:15 -0500832 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
833 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200834
David Woodhouse689442d2007-12-12 16:00:42 -0500835 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500836 if (ret)
837 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200838
Dan Williamscb182a62007-12-11 17:35:51 -0500839 ret = le16_to_cpu(cmd.channel);
840 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500841
842out:
843 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
844 return ret;
845}
846
847/**
848 * @brief Set the radio channel
849 *
850 * @param priv A pointer to struct lbs_private structure
851 * @param channel The desired channel, or 0 to clear a locked channel
852 *
853 * @return 0 on success, error on failure
854 */
855int lbs_set_channel(struct lbs_private *priv, u8 channel)
856{
857 struct cmd_ds_802_11_rf_channel cmd;
858 u8 old_channel = priv->curbssparams.channel;
859 int ret = 0;
860
861 lbs_deb_enter(LBS_DEB_CMD);
862
863 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
864 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
865 cmd.channel = cpu_to_le16(channel);
866
David Woodhouse689442d2007-12-12 16:00:42 -0500867 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500868 if (ret)
869 goto out;
870
Dan Williamscb182a62007-12-11 17:35:51 -0500871 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
872 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
873 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500874
875out:
876 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
877 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200878}
879
Holger Schurig69f90322007-11-23 15:43:44 +0100880static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200881 struct cmd_ds_command *cmd)
882{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200883
Holger Schurig8ff12da2007-08-02 11:54:31 -0400884 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400885 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400886 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400887 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
889 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000890 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
891 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
892 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
893 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
894 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
895 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200896
Holger Schurig8ff12da2007-08-02 11:54:31 -0400897 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898 return 0;
899}
900
Holger Schurig69f90322007-11-23 15:43:44 +0100901static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200902 struct cmd_ds_command *cmdptr,
903 u8 cmd_action, void *pdata_buf)
904{
Holger Schurig10078322007-11-15 18:05:47 -0500905 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906
Holger Schurig9012b282007-05-25 11:27:16 -0400907 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908
Holger Schurig10078322007-11-15 18:05:47 -0500909 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200910
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000911 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400912 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200913 {
914 struct cmd_ds_mac_reg_access *macreg;
915
916 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400917 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
918 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200919 macreg =
920 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
921 macreg;
922
923 macreg->action = cpu_to_le16(cmd_action);
924 macreg->offset = cpu_to_le16((u16) offval->offset);
925 macreg->value = cpu_to_le32(offval->value);
926
927 break;
928 }
929
Dan Williams0aef64d2007-08-02 11:31:18 -0400930 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200931 {
932 struct cmd_ds_bbp_reg_access *bbpreg;
933
934 cmdptr->size =
935 cpu_to_le16(sizeof
936 (struct cmd_ds_bbp_reg_access)
937 + S_DS_GEN);
938 bbpreg =
939 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
940 bbpreg;
941
942 bbpreg->action = cpu_to_le16(cmd_action);
943 bbpreg->offset = cpu_to_le16((u16) offval->offset);
944 bbpreg->value = (u8) offval->value;
945
946 break;
947 }
948
Dan Williams0aef64d2007-08-02 11:31:18 -0400949 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200950 {
951 struct cmd_ds_rf_reg_access *rfreg;
952
953 cmdptr->size =
954 cpu_to_le16(sizeof
955 (struct cmd_ds_rf_reg_access) +
956 S_DS_GEN);
957 rfreg =
958 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
959 rfreg;
960
961 rfreg->action = cpu_to_le16(cmd_action);
962 rfreg->offset = cpu_to_le16((u16) offval->offset);
963 rfreg->value = (u8) offval->value;
964
965 break;
966 }
967
968 default:
969 break;
970 }
971
Holger Schurig9012b282007-05-25 11:27:16 -0400972 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973 return 0;
974}
975
Holger Schurig69f90322007-11-23 15:43:44 +0100976static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977 struct cmd_ds_command *cmd,
978 u16 cmd_action)
979{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980
Holger Schurig8ff12da2007-08-02 11:54:31 -0400981 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400982 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400983 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200984 S_DS_GEN);
985 cmd->result = 0;
986
987 cmd->params.macadd.action = cpu_to_le16(cmd_action);
988
Dan Williams0aef64d2007-08-02 11:31:18 -0400989 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200990 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000991 priv->current_addr, ETH_ALEN);
992 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200993 }
994
Holger Schurig8ff12da2007-08-02 11:54:31 -0400995 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996 return 0;
997}
998
Holger Schurig69f90322007-11-23 15:43:44 +0100999static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001000 struct cmd_ds_command *cmd,
1001 int cmd_action, void *pdata_buf)
1002{
Holger Schurig10078322007-11-15 18:05:47 -05001003 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001004
Holger Schurig9012b282007-05-25 11:27:16 -04001005 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001006
Dan Williams0aef64d2007-08-02 11:31:18 -04001007 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001008 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1009 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010 cmd->result = 0;
1011
1012 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1013 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1014 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1015 cmd->params.rdeeprom.value = 0;
1016
Holger Schurig8ff12da2007-08-02 11:54:31 -04001017 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018 return 0;
1019}
1020
Holger Schurig69f90322007-11-23 15:43:44 +01001021static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022 struct cmd_ds_command *cmd,
1023 u16 cmd_action, void *pdata_buf)
1024{
1025 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001026 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027
Dan Williams0aef64d2007-08-02 11:31:18 -04001028 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001029 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030 cmd->result = 0;
1031 bt_access->action = cpu_to_le16(cmd_action);
1032
1033 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001034 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001035 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001036 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001038 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001039 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001040 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001041 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001042 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001043 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1044 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001045 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001047 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001048 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1049 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001050 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001051 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052 default:
1053 break;
1054 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001055 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001056 return 0;
1057}
1058
Holger Schurig69f90322007-11-23 15:43:44 +01001059static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060 struct cmd_ds_command *cmd,
1061 u16 cmd_action, void *pdata_buf)
1062{
1063 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001064 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001065
Dan Williams0aef64d2007-08-02 11:31:18 -04001066 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001067 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001068 cmd->result = 0;
1069
1070 if (pdata_buf)
1071 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1072 else
1073 memset(fwt_access, 0, sizeof(*fwt_access));
1074
1075 fwt_access->action = cpu_to_le16(cmd_action);
1076
Holger Schurig8ff12da2007-08-02 11:54:31 -04001077 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078 return 0;
1079}
1080
David Woodhouse301eacb2007-12-11 15:23:59 -05001081int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1082 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001083{
David Woodhouse301eacb2007-12-11 15:23:59 -05001084 int ret;
1085
Holger Schurig8ff12da2007-08-02 11:54:31 -04001086 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001087
David Woodhouse301eacb2007-12-11 15:23:59 -05001088 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001089 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001090 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001091
David Woodhouse301eacb2007-12-11 15:23:59 -05001092 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093
David Woodhouse689442d2007-12-12 16:00:42 -05001094 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001095
Holger Schurig8ff12da2007-08-02 11:54:31 -04001096 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001097 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001098}
1099
David Woodhouse86062132007-12-13 00:32:36 -05001100int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001101{
1102 struct cmd_ds_mesh_config cmd;
1103
1104 memset(&cmd, 0, sizeof(cmd));
1105 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001106 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001107 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001108 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001109
David Woodhouse23a397a2007-12-11 18:56:42 -05001110 if (enable) {
1111 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1112 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1113 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001114 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001115 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001116 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001117 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001118}
1119
Brajesh Dave96287ac2007-11-20 17:44:28 -05001120static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1121 struct cmd_ds_command *cmd,
1122 u16 cmd_action)
1123{
1124 struct cmd_ds_802_11_beacon_control
1125 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001126
1127 lbs_deb_enter(LBS_DEB_CMD);
1128 cmd->size =
1129 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1130 + S_DS_GEN);
1131 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1132
1133 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001134 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1135 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001136
1137 lbs_deb_leave(LBS_DEB_CMD);
1138 return 0;
1139}
1140
David Woodhouse681ffbb2007-12-15 20:04:54 -05001141static void lbs_queue_cmd(struct lbs_private *priv,
1142 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143{
1144 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001145 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146
Holger Schurig8ff12da2007-08-02 11:54:31 -04001147 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148
David Woodhousec4ab4122007-12-15 00:41:51 -05001149 if (!cmdnode) {
1150 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151 goto done;
1152 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001153 if (!cmdnode->cmdbuf->size) {
1154 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1155 goto done;
1156 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001157 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158
1159 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001160 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001161 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001162
Dan Williams0aef64d2007-08-02 11:31:18 -04001163 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001164 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165 addtail = 0;
1166 }
1167 }
1168
David Woodhouseaa21c002007-12-08 20:04:36 +00001169 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001170
David Woodhouseac472462007-12-08 00:35:00 +00001171 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001172 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001173 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001174 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175
David Woodhouseaa21c002007-12-08 20:04:36 +00001176 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177
Holger Schurig8ff12da2007-08-02 11:54:31 -04001178 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001179 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001180
1181done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001182 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001183}
1184
David Woodhouse18c52e72007-12-17 16:03:58 -05001185static void lbs_submit_command(struct lbs_private *priv,
1186 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001187{
1188 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001189 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001190 uint16_t cmdsize;
1191 uint16_t command;
1192 int timeo = 5 * HZ;
1193 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001194
Holger Schurig8ff12da2007-08-02 11:54:31 -04001195 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001196
Dan Williamsddac4522007-12-11 13:49:39 -05001197 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001198
David Woodhouseaa21c002007-12-08 20:04:36 +00001199 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001200 priv->cur_cmd = cmdnode;
1201 priv->cur_cmd_retcode = 0;
1202 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001203
Dan Williamsddac4522007-12-11 13:49:39 -05001204 cmdsize = le16_to_cpu(cmd->size);
1205 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206
David Woodhouse18c52e72007-12-17 16:03:58 -05001207 /* These commands take longer */
1208 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1209 command == CMD_802_11_AUTHENTICATE)
1210 timeo = 10 * HZ;
1211
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001212 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
David Woodhousee1258172007-12-11 23:42:49 -05001213 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001214 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001215
Dan Williamsddac4522007-12-11 13:49:39 -05001216 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001217
David Woodhoused9896ee2007-12-15 00:09:25 -05001218 if (ret) {
1219 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001220 /* Let the timer kick in and retry, and potentially reset
1221 the whole thing if the condition persists */
1222 timeo = HZ;
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001223 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
1225 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001226 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227
David Woodhouse18c52e72007-12-17 16:03:58 -05001228 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229}
1230
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001231/**
1232 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001233 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001234 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001235static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001236 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001238 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001240 if (!cmdnode)
1241 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001243 cmdnode->callback = NULL;
1244 cmdnode->callback_arg = 0;
1245
1246 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1247
1248 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1249 out:
1250 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251}
1252
Holger Schurig69f90322007-11-23 15:43:44 +01001253static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1254 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001255{
1256 unsigned long flags;
1257
David Woodhouseaa21c002007-12-08 20:04:36 +00001258 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001259 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001260 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261}
1262
David Woodhouse183aeac2007-12-15 01:52:54 -05001263void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1264 int result)
1265{
1266 if (cmd == priv->cur_cmd)
1267 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001268
David Woodhouseae125bf2007-12-15 04:22:52 -05001269 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001270 cmd->cmdwaitqwoken = 1;
1271 wake_up_interruptible(&cmd->cmdwait_q);
1272
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001273 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001274 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001275 priv->cur_cmd = NULL;
1276}
1277
Holger Schurig69f90322007-11-23 15:43:44 +01001278int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001279{
1280 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001281 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282
Holger Schurig9012b282007-05-25 11:27:16 -04001283 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001284
David Woodhousea7c45892007-12-17 22:43:48 -05001285 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1286 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287
David Woodhousea7c45892007-12-17 22:43:48 -05001288 switch (priv->preamble) {
1289 case CMD_TYPE_SHORT_PREAMBLE:
1290 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1291 break;
1292
1293 case CMD_TYPE_LONG_PREAMBLE:
1294 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1295 break;
1296
1297 case CMD_TYPE_AUTO_PREAMBLE:
1298 default:
1299 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1300 break;
1301 }
1302
1303 if (priv->radioon)
1304 cmd.control |= cpu_to_le16(TURN_ON_RF);
1305 else
1306 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1307
1308 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1309 priv->preamble);
1310
1311 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312
Holger Schurig9012b282007-05-25 11:27:16 -04001313 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001314 return ret;
1315}
1316
Holger Schurigc97329e2008-03-18 11:20:21 +01001317void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001318{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001319 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320
Holger Schurig9012b282007-05-25 11:27:16 -04001321 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001322
Holger Schurig835d3ac2008-03-12 16:05:40 +01001323 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001324 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001325 cmd.reserved = 0;
1326
Holger Schurigc97329e2008-03-18 11:20:21 +01001327 lbs_cmd_async(priv, CMD_MAC_CONTROL,
1328 &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001329
Holger Schurigc97329e2008-03-18 11:20:21 +01001330 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001331}
1332
1333/**
1334 * @brief This function prepare the command before send to firmware.
1335 *
Holger Schurig69f90322007-11-23 15:43:44 +01001336 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001337 * @param cmd_no command number
1338 * @param cmd_action command action: GET or SET
1339 * @param wait_option wait option: wait response or not
1340 * @param cmd_oid cmd oid: treated as sub command
1341 * @param pdata_buf A pointer to informaion buffer
1342 * @return 0 or -1
1343 */
Holger Schurig69f90322007-11-23 15:43:44 +01001344int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001345 u16 cmd_no,
1346 u16 cmd_action,
1347 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1348{
1349 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001350 struct cmd_ctrl_node *cmdnode;
1351 struct cmd_ds_command *cmdptr;
1352 unsigned long flags;
1353
Holger Schurig8ff12da2007-08-02 11:54:31 -04001354 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001355
David Woodhouseaa21c002007-12-08 20:04:36 +00001356 if (!priv) {
1357 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001358 ret = -1;
1359 goto done;
1360 }
1361
David Woodhouseaa21c002007-12-08 20:04:36 +00001362 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001363 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001364 ret = -1;
1365 goto done;
1366 }
1367
Holger Schurig0d61d042007-12-05 17:58:06 +01001368 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001369
1370 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001371 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001372
1373 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001374 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001375 ret = -1;
1376 goto done;
1377 }
1378
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001379 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001380
Dan Williamsddac4522007-12-11 13:49:39 -05001381 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382
Holger Schurig8ff12da2007-08-02 11:54:31 -04001383 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001384
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001385 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001386 priv->seqnum++;
1387 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001388
David Woodhouse981f1872007-05-25 23:36:54 -04001389 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390 cmdptr->result = 0;
1391
1392 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001393 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001394 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395 break;
1396
Dan Williams0aef64d2007-08-02 11:31:18 -04001397 case CMD_802_11_ASSOCIATE:
1398 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001399 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001400 break;
1401
Dan Williams0aef64d2007-08-02 11:31:18 -04001402 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001403 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001404 break;
1405
Dan Williams0aef64d2007-08-02 11:31:18 -04001406 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001407 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001409
Dan Williams0aef64d2007-08-02 11:31:18 -04001410 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001411 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001412 break;
1413
Dan Williams0aef64d2007-08-02 11:31:18 -04001414 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001415 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001416 break;
1417
Dan Williams0aef64d2007-08-02 11:31:18 -04001418 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001419 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 break;
1421
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001423 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424 cmd_action, cmd_oid, pdata_buf);
1425 break;
1426
Dan Williams0aef64d2007-08-02 11:31:18 -04001427 case CMD_MAC_REG_ACCESS:
1428 case CMD_BBP_REG_ACCESS:
1429 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001430 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001431 break;
1432
Dan Williams0aef64d2007-08-02 11:31:18 -04001433 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001434 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001435 cmd_action, pdata_buf);
1436 break;
1437
Dan Williams0aef64d2007-08-02 11:31:18 -04001438 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001439 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001440 cmdptr, cmd_action);
1441 break;
1442
Dan Williams0aef64d2007-08-02 11:31:18 -04001443 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001444 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001445 break;
1446
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001447 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001448 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001449 cmd_action, pdata_buf);
1450 break;
1451
Dan Williams0aef64d2007-08-02 11:31:18 -04001452 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001453 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001454 break;
1455
Dan Williams0aef64d2007-08-02 11:31:18 -04001456 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001457 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458 break;
1459
Dan Williams0aef64d2007-08-02 11:31:18 -04001460 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001461 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001462 break;
1463
Dan Williams0aef64d2007-08-02 11:31:18 -04001464 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001465 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001466 break;
1467
Dan Williams0aef64d2007-08-02 11:31:18 -04001468 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001469 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001470 cmd_action, pdata_buf);
1471 break;
1472
Dan Williams0aef64d2007-08-02 11:31:18 -04001473 case CMD_802_11_SET_AFC:
1474 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001475
1476 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001477 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1478 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479
1480 memmove(&cmdptr->params.afc,
1481 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1482
1483 ret = 0;
1484 goto done;
1485
Dan Williams0aef64d2007-08-02 11:31:18 -04001486 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001487 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001488 cmd_no, cmd_action);
1489 break;
1490
Dan Williams0aef64d2007-08-02 11:31:18 -04001491 case CMD_802_11_TPC_CFG:
1492 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001493 cmdptr->size =
1494 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1495 S_DS_GEN);
1496
1497 memmove(&cmdptr->params.tpccfg,
1498 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1499
1500 ret = 0;
1501 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001502 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001503 {
1504 struct mrvlietypes_ledgpio *gpio =
1505 (struct mrvlietypes_ledgpio*)
1506 cmdptr->params.ledgpio.data;
1507
1508 memmove(&cmdptr->params.ledgpio,
1509 pdata_buf,
1510 sizeof(struct cmd_ds_802_11_led_ctrl));
1511
1512 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001513 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001514
1515#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1516 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001517 cpu_to_le16(le16_to_cpu(gpio->header.len)
1518 + S_DS_GEN
1519 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1520 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001521
1522 ret = 0;
1523 break;
1524 }
David Woodhouse5844d122007-12-18 02:01:37 -05001525
Dan Williams0aef64d2007-08-02 11:31:18 -04001526 case CMD_802_11_PWR_CFG:
1527 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001528 cmdptr->size =
1529 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1530 S_DS_GEN);
1531 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1532 sizeof(struct cmd_ds_802_11_pwr_cfg));
1533
1534 ret = 0;
1535 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001536 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001537 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001538 break;
1539
Dan Williams0aef64d2007-08-02 11:31:18 -04001540 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001541 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001542 break;
1543
Dan Williams0aef64d2007-08-02 11:31:18 -04001544 case CMD_GET_TSF:
1545 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001546 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1547 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001548 ret = 0;
1549 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001550 case CMD_802_11_BEACON_CTRL:
1551 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1552 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001553 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001554 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001555 ret = -1;
1556 break;
1557 }
1558
1559 /* return error, since the command preparation failed */
1560 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001561 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001562 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001563 ret = -1;
1564 goto done;
1565 }
1566
1567 cmdnode->cmdwaitqwoken = 0;
1568
David Woodhouse681ffbb2007-12-15 20:04:54 -05001569 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001570 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001571
Dan Williams0aef64d2007-08-02 11:31:18 -04001572 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001573 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001574 might_sleep();
1575 wait_event_interruptible(cmdnode->cmdwait_q,
1576 cmdnode->cmdwaitqwoken);
1577 }
1578
David Woodhouseaa21c002007-12-08 20:04:36 +00001579 spin_lock_irqsave(&priv->driver_lock, flags);
1580 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001581 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001582 priv->cur_cmd_retcode);
1583 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001584 ret = -1;
1585 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001586 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001587
1588done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001589 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001590 return ret;
1591}
1592
1593/**
1594 * @brief This function allocates the command buffer and link
1595 * it to command free queue.
1596 *
Holger Schurig69f90322007-11-23 15:43:44 +01001597 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001598 * @return 0 or -1
1599 */
Holger Schurig69f90322007-11-23 15:43:44 +01001600int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001601{
1602 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001603 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001604 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001605 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001606
Holger Schurig8ff12da2007-08-02 11:54:31 -04001607 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001608
Dan Williamsddac4522007-12-11 13:49:39 -05001609 /* Allocate and initialize the command array */
1610 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1611 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001612 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001613 ret = -1;
1614 goto done;
1615 }
Dan Williamsddac4522007-12-11 13:49:39 -05001616 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001617
Dan Williamsddac4522007-12-11 13:49:39 -05001618 /* Allocate and initialize each command buffer in the command array */
1619 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1620 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1621 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001622 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001623 ret = -1;
1624 goto done;
1625 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001626 }
1627
Dan Williamsddac4522007-12-11 13:49:39 -05001628 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1629 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1630 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001631 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001632 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001633
1634done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001635 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001636 return ret;
1637}
1638
1639/**
1640 * @brief This function frees the command buffer.
1641 *
Holger Schurig69f90322007-11-23 15:43:44 +01001642 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001643 * @return 0 or -1
1644 */
Holger Schurig69f90322007-11-23 15:43:44 +01001645int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646{
Dan Williamsddac4522007-12-11 13:49:39 -05001647 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649
Holger Schurig8ff12da2007-08-02 11:54:31 -04001650 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001651
1652 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001653 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001654 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001655 goto done;
1656 }
1657
Dan Williamsddac4522007-12-11 13:49:39 -05001658 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001659
1660 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001661 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1662 if (cmdarray[i].cmdbuf) {
1663 kfree(cmdarray[i].cmdbuf);
1664 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665 }
1666 }
1667
1668 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001669 if (priv->cmd_array) {
1670 kfree(priv->cmd_array);
1671 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001672 }
1673
1674done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001675 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676 return 0;
1677}
1678
1679/**
1680 * @brief This function gets a free command node if available in
1681 * command free queue.
1682 *
Holger Schurig69f90322007-11-23 15:43:44 +01001683 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001684 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1685 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001686static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001687{
1688 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001689 unsigned long flags;
1690
Holger Schurig8ff12da2007-08-02 11:54:31 -04001691 lbs_deb_enter(LBS_DEB_HOST);
1692
David Woodhouseaa21c002007-12-08 20:04:36 +00001693 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001694 return NULL;
1695
David Woodhouseaa21c002007-12-08 20:04:36 +00001696 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001697
David Woodhouseaa21c002007-12-08 20:04:36 +00001698 if (!list_empty(&priv->cmdfreeq)) {
1699 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001700 struct cmd_ctrl_node, list);
1701 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001702 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001703 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001704 tempnode = NULL;
1705 }
1706
David Woodhouseaa21c002007-12-08 20:04:36 +00001707 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001708
Holger Schurig8ff12da2007-08-02 11:54:31 -04001709 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001710 return tempnode;
1711}
1712
1713/**
1714 * @brief This function cleans command node.
1715 *
1716 * @param ptempnode A pointer to cmdCtrlNode structure
1717 * @return n/a
1718 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001719
1720/**
1721 * @brief This function initializes the command node.
1722 *
Holger Schurig69f90322007-11-23 15:43:44 +01001723 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001725 * @param pdata_buf A pointer to informaion buffer
1726 * @return 0 or -1
1727 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001728static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1729 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001730 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001731{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001732 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001733
1734 if (!ptempnode)
1735 return;
1736
David Woodhouse17230472007-12-07 15:13:05 +00001737 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001738 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001739
Holger Schurig8ff12da2007-08-02 11:54:31 -04001740 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001741}
1742
1743/**
1744 * @brief This function executes next command in command
1745 * pending queue. It will put fimware back to PS mode
1746 * if applicable.
1747 *
Holger Schurig69f90322007-11-23 15:43:44 +01001748 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001749 * @return 0 or -1
1750 */
Holger Schurig69f90322007-11-23 15:43:44 +01001751int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001753 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001754 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001755 unsigned long flags;
1756 int ret = 0;
1757
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001758 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1759 * only caller to us is lbs_thread() and we get even when a
1760 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001761 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001762
David Woodhouseaa21c002007-12-08 20:04:36 +00001763 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001764
David Woodhouseaa21c002007-12-08 20:04:36 +00001765 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001766 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001767 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001768 ret = -1;
1769 goto done;
1770 }
1771
David Woodhouseaa21c002007-12-08 20:04:36 +00001772 if (!list_empty(&priv->cmdpendingq)) {
1773 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001774 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001775 }
1776
David Woodhouseaa21c002007-12-08 20:04:36 +00001777 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001778
1779 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001780 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781
Dan Williamsddac4522007-12-11 13:49:39 -05001782 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001783 if ((priv->psstate == PS_STATE_SLEEP) ||
1784 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001785 lbs_deb_host(
1786 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001787 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001788 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789 ret = -1;
1790 goto done;
1791 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001792 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001793 "0x%04x in psstate %d\n",
1794 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001795 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001796 /*
1797 * 1. Non-PS command:
1798 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001799 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001800 * 2. PS command but not Exit_PS:
1801 * Ignore it.
1802 * 3. PS command Exit_PS:
1803 * Set needtowakeup to TRUE if current state is SLEEP,
1804 * otherwise send this command down to firmware
1805 * immediately.
1806 */
Dan Williamsddac4522007-12-11 13:49:39 -05001807 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001808 /* Prepare to send Exit PS,
1809 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001810 if ((priv->psstate == PS_STATE_SLEEP)
1811 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001812 ) {
1813 /* w/ new scheme, it will not reach here.
1814 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001815 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816 } else
Holger Schurig10078322007-11-15 18:05:47 -05001817 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001818
1819 ret = 0;
1820 goto done;
1821 } else {
1822 /*
1823 * PS command. Ignore it if it is not Exit_PS.
1824 * otherwise send it down immediately.
1825 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001826 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001827
Holger Schurig8ff12da2007-08-02 11:54:31 -04001828 lbs_deb_host(
1829 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001830 psm->action);
1831 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001832 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001833 lbs_deb_host(
1834 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001835 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001836 spin_lock_irqsave(&priv->driver_lock, flags);
1837 lbs_complete_command(priv, cmdnode, 0);
1838 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001839
1840 ret = 0;
1841 goto done;
1842 }
1843
David Woodhouseaa21c002007-12-08 20:04:36 +00001844 if ((priv->psstate == PS_STATE_SLEEP) ||
1845 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001846 lbs_deb_host(
1847 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001848 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001849 spin_lock_irqsave(&priv->driver_lock, flags);
1850 lbs_complete_command(priv, cmdnode, 0);
1851 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001852 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001853
1854 ret = 0;
1855 goto done;
1856 }
1857
Holger Schurig8ff12da2007-08-02 11:54:31 -04001858 lbs_deb_host(
1859 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001860 }
1861 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001862 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001863 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001864 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001865 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001866 } else {
1867 /*
1868 * check if in power save mode, if yes, put the device back
1869 * to PS mode
1870 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001871 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1872 (priv->psstate == PS_STATE_FULL_POWER) &&
1873 ((priv->connect_status == LBS_CONNECTED) ||
1874 (priv->mesh_connect_status == LBS_CONNECTED))) {
1875 if (priv->secinfo.WPAenabled ||
1876 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001877 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001878 if (priv->wpa_mcast_key.len ||
1879 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001880 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001881 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1882 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001883 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001884 }
1885 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001886 lbs_deb_host(
1887 "EXEC_NEXT_CMD: cmdpendingq empty, "
1888 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001889 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001890 }
1891 }
1892 }
1893
1894 ret = 0;
1895done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001896 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001897 return ret;
1898}
1899
Holger Schurig69f90322007-11-23 15:43:44 +01001900void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001901{
1902 union iwreq_data iwrq;
1903 u8 buf[50];
1904
Holger Schurig8ff12da2007-08-02 11:54:31 -04001905 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001906
1907 memset(&iwrq, 0, sizeof(union iwreq_data));
1908 memset(buf, 0, sizeof(buf));
1909
1910 snprintf(buf, sizeof(buf) - 1, "%s", str);
1911
1912 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1913
1914 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001915 lbs_deb_wext("event indication string %s\n", (char *)buf);
1916 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1917 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001918
Holger Schurig634b8f42007-05-25 13:05:16 -04001919 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001920
Holger Schurig8ff12da2007-08-02 11:54:31 -04001921 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001922}
1923
Holger Schurig69f90322007-11-23 15:43:44 +01001924static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001925{
1926 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001927 int ret = 0;
1928
Holger Schurig8ff12da2007-08-02 11:54:31 -04001929 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001930 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001931
Holger Schurig208fdd22007-05-25 12:17:06 -04001932 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001933
David Woodhouseaa21c002007-12-08 20:04:36 +00001934 spin_lock_irqsave(&priv->driver_lock, flags);
1935 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001936 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001937 priv->intcounter, priv->currenttxskb);
1938 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001939
1940 if (ret) {
1941 lbs_pr_alert(
1942 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1943 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001944 spin_lock_irqsave(&priv->driver_lock, flags);
1945 if (!priv->intcounter) {
1946 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001947 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001948 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001949 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001950 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001951 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952 }
1953
Holger Schurig8ff12da2007-08-02 11:54:31 -04001954 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001955 return ret;
1956}
1957
Holger Schurig69f90322007-11-23 15:43:44 +01001958void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001959{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001960 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001961
1962 /*
1963 * PS is currently supported only in Infrastructure mode
1964 * Remove this check if it is to be supported in IBSS mode also
1965 */
1966
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_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001969
Holger Schurig8ff12da2007-08-02 11:54:31 -04001970 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001971}
1972
1973/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001974 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001975 *
Holger Schurig69f90322007-11-23 15:43:44 +01001976 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001977 * @param wait_option wait response or not
1978 * @return n/a
1979 */
Holger Schurig69f90322007-11-23 15:43:44 +01001980void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001981{
David Woodhouse981f1872007-05-25 23:36:54 -04001982 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983
Holger Schurig8ff12da2007-08-02 11:54:31 -04001984 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001985
Holger Schurig10078322007-11-15 18:05:47 -05001986 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001987
Holger Schurig10078322007-11-15 18:05:47 -05001988 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001989 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001990 wait_option, 0, &Localpsmode);
1991
Holger Schurig8ff12da2007-08-02 11:54:31 -04001992 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001993}
1994
1995/**
1996 * @brief This function checks condition and prepares to
1997 * send sleep confirm command to firmware if ok.
1998 *
Holger Schurig69f90322007-11-23 15:43:44 +01001999 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002000 * @param psmode Power Saving mode
2001 * @return n/a
2002 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01002003void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002004{
2005 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01002006 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002007
Holger Schurig8ff12da2007-08-02 11:54:31 -04002008 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002009
Holger Schurig634b8f42007-05-25 13:05:16 -04002010 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002011 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002012 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002013 }
2014
David Woodhouseaa21c002007-12-08 20:04:36 +00002015 spin_lock_irqsave(&priv->driver_lock, flags);
2016 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002017 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002018 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002019 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002020 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002021 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002022 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002024 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002025
2026 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002027 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002028 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029 sizeof(struct PS_CMD_ConfirmSleep));
2030 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002031 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002032 }
2033
Holger Schurig8ff12da2007-08-02 11:54:31 -04002034 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002035}
Holger Schurig675787e2007-12-05 17:58:11 +01002036
2037
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002038static struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
2039 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
2040 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2041 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002042{
Holger Schurig675787e2007-12-05 17:58:11 +01002043 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002044
2045 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002046
David Woodhouseaa21c002007-12-08 20:04:36 +00002047 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002048 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002049 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002050 goto done;
2051 }
2052
2053 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002054 if (cmdnode == NULL) {
2055 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2056
2057 /* Wake up main thread to execute next command */
2058 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002059 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002060 goto done;
2061 }
2062
David Woodhouse448a51a2007-12-08 00:59:54 +00002063 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002064 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002065
Dan Williams7ad994d2007-12-11 12:33:30 -05002066 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002067 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002068
Holger Schurig675787e2007-12-05 17:58:11 +01002069 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002070 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002071 cmdnode->cmdbuf->command = cpu_to_le16(command);
2072 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2073 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2074 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002075
2076 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2077
Holger Schurig675787e2007-12-05 17:58:11 +01002078 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002079 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002080 wake_up_interruptible(&priv->waitq);
2081
David Woodhouse3399ea52007-12-15 03:09:33 -05002082 done:
2083 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2084 return cmdnode;
2085}
2086
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002087void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2088 struct cmd_header *in_cmd, int in_cmd_size)
2089{
2090 lbs_deb_enter(LBS_DEB_CMD);
2091 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2092 lbs_cmd_async_callback, 0);
2093 lbs_deb_leave(LBS_DEB_CMD);
2094}
2095
David Woodhouse3399ea52007-12-15 03:09:33 -05002096int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2097 struct cmd_header *in_cmd, int in_cmd_size,
2098 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2099 unsigned long callback_arg)
2100{
2101 struct cmd_ctrl_node *cmdnode;
2102 unsigned long flags;
2103 int ret = 0;
2104
2105 lbs_deb_enter(LBS_DEB_HOST);
2106
2107 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2108 callback, callback_arg);
2109 if (IS_ERR(cmdnode)) {
2110 ret = PTR_ERR(cmdnode);
2111 goto done;
2112 }
2113
Holger Schurig675787e2007-12-05 17:58:11 +01002114 might_sleep();
2115 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2116
David Woodhouseaa21c002007-12-08 20:04:36 +00002117 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002118 ret = cmdnode->result;
2119 if (ret)
2120 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2121 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002122
David Woodhousead12d0f2007-12-15 02:06:16 -05002123 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002124 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002125
2126done:
2127 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2128 return ret;
2129}
Dan Williams14e865b2007-12-10 15:11:23 -05002130EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002131
2132