blob: be461c5c42ae84191b6f8dba914eb9cf3a09db30 [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_log(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_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200502 cmd->size =
503 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
504
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_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510 struct cmd_ds_command *cmd)
511{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400512 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400513 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200514 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400515 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200516
Holger Schurig8ff12da2007-08-02 11:54:31 -0400517 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200518 return 0;
519}
520
Holger Schurig69f90322007-11-23 15:43:44 +0100521static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200522 struct cmd_ds_command *cmd,
523 int cmd_action,
524 int cmd_oid, void *pdata_buf)
525{
526 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200527 u8 ucTemp;
528
Holger Schurig9012b282007-05-25 11:27:16 -0400529 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530
Holger Schurig9012b282007-05-25 11:27:16 -0400531 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200532
Dan Williams0aef64d2007-08-02 11:31:18 -0400533 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400534 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200535
536 switch (cmd_oid) {
537 case OID_802_11_INFRASTRUCTURE_MODE:
538 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400539 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400540 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
541 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000542 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400543 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400545 } else {
546 /* Infra and Auto modes */
547 ucTemp = SNMP_MIB_VALUE_INFRA;
548 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549
550 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
551
552 break;
553 }
554
555 case OID_802_11D_ENABLE:
556 {
557 u32 ulTemp;
558
Dan Williams0aef64d2007-08-02 11:31:18 -0400559 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200560
Dan Williams0aef64d2007-08-02 11:31:18 -0400561 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000562 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
563 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400565 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200566 cpu_to_le16((u16) ulTemp);
567 }
568 break;
569 }
570
571 case OID_802_11_FRAGMENTATION_THRESHOLD:
572 {
573 u32 ulTemp;
574
Dan Williams0aef64d2007-08-02 11:31:18 -0400575 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200576
Dan Williams0aef64d2007-08-02 11:31:18 -0400577 if (cmd_action == CMD_ACT_GET) {
578 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
579 } else if (cmd_action == CMD_ACT_SET) {
580 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400581 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200582 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400583 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200584 cpu_to_le16((u16) ulTemp);
585
586 }
587
588 break;
589 }
590
591 case OID_802_11_RTS_THRESHOLD:
592 {
593
594 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000595 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200596
Dan Williams0aef64d2007-08-02 11:31:18 -0400597 if (cmd_action == CMD_ACT_GET) {
598 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
599 } else if (cmd_action == CMD_ACT_SET) {
600 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400601 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
602 ulTemp = *((u32 *)pdata_buf);
603 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200604 cpu_to_le16((u16) ulTemp);
605
606 }
607 break;
608 }
609 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400610 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200611
Dan Williams0aef64d2007-08-02 11:31:18 -0400612 if (cmd_action == CMD_ACT_GET) {
613 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
614 } else if (cmd_action == CMD_ACT_SET) {
615 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200616 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400617 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000618 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619 }
620
621 break;
622 default:
623 break;
624 }
625
Holger Schurig9012b282007-05-25 11:27:16 -0400626 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400628 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
629 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630
Holger Schurig9012b282007-05-25 11:27:16 -0400631 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400632 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400633 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
634 le16_to_cpu(pSNMPMIB->bufsize),
635 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636
Holger Schurig9012b282007-05-25 11:27:16 -0400637 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638 return 0;
639}
640
Holger Schurig69f90322007-11-23 15:43:44 +0100641static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642 struct cmd_ds_command *cmd,
643 u16 cmd_action, void *pdata_buf)
644{
645
646 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
647
Holger Schurig9012b282007-05-25 11:27:16 -0400648 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200649
650 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400651 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400652 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400653 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654
David Woodhouse981f1872007-05-25 23:36:54 -0400655 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
656 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
657 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658
659 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400660 case CMD_ACT_TX_POWER_OPT_GET:
661 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662 prtp->currentlevel = 0;
663 break;
664
Dan Williams0aef64d2007-08-02 11:31:18 -0400665 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
666 prtp->action = cpu_to_le16(CMD_ACT_SET);
667 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200668 break;
669
Dan Williams0aef64d2007-08-02 11:31:18 -0400670 case CMD_ACT_TX_POWER_OPT_SET_MID:
671 prtp->action = cpu_to_le16(CMD_ACT_SET);
672 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200673 break;
674
Dan Williams0aef64d2007-08-02 11:31:18 -0400675 case CMD_ACT_TX_POWER_OPT_SET_LOW:
676 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200677 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
678 break;
679 }
Holger Schurig9012b282007-05-25 11:27:16 -0400680
681 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200682 return 0;
683}
684
Holger Schurig69f90322007-11-23 15:43:44 +0100685static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400686 struct cmd_ds_command *cmd,
687 u16 cmd_action, void *pdata_buf)
688{
689 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
690
691 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
692 cmd->size =
693 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
694 S_DS_GEN);
695
696 monitor->action = cpu_to_le16(cmd_action);
697 if (cmd_action == CMD_ACT_SET) {
698 monitor->mode =
699 cpu_to_le16((u16) (*(u32 *) pdata_buf));
700 }
701
702 return 0;
703}
704
Holger Schurig69f90322007-11-23 15:43:44 +0100705static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200706 struct cmd_ds_command *cmd,
707 u16 cmd_action)
708{
709 struct cmd_ds_802_11_rate_adapt_rateset
710 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711
Holger Schurig8ff12da2007-08-02 11:54:31 -0400712 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200713 cmd->size =
714 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
715 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400716 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200717
David Woodhouse981f1872007-05-25 23:36:54 -0400718 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000719 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
720 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200721
Holger Schurig9012b282007-05-25 11:27:16 -0400722 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200723 return 0;
724}
725
Dan Williams8e3c91b2007-12-11 15:50:59 -0500726/**
727 * @brief Get the current data rate
728 *
729 * @param priv A pointer to struct lbs_private structure
730 *
731 * @return The data rate on success, error on failure
732 */
733int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200734{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500735 struct cmd_ds_802_11_data_rate cmd;
736 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200737
Holger Schurig9012b282007-05-25 11:27:16 -0400738 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739
Dan Williams8e3c91b2007-12-11 15:50:59 -0500740 memset(&cmd, 0, sizeof(cmd));
741 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
742 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200743
David Woodhouse689442d2007-12-12 16:00:42 -0500744 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500745 if (ret)
746 goto out;
747
748 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
749
750 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
751 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
752
753out:
754 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
755 return ret;
756}
757
758/**
759 * @brief Set the data rate
760 *
761 * @param priv A pointer to struct lbs_private structure
762 * @param rate The desired data rate, or 0 to clear a locked rate
763 *
764 * @return 0 on success, error on failure
765 */
766int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
767{
768 struct cmd_ds_802_11_data_rate cmd;
769 int ret = 0;
770
771 lbs_deb_enter(LBS_DEB_CMD);
772
773 memset(&cmd, 0, sizeof(cmd));
774 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
775
776 if (rate > 0) {
777 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
778 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
779 if (cmd.rates[0] == 0) {
780 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
781 " 0x%02X\n", rate);
782 ret = 0;
783 goto out;
784 }
785 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
786 } else {
787 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400788 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200789 }
790
David Woodhouse689442d2007-12-12 16:00:42 -0500791 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500792 if (ret)
793 goto out;
794
795 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
796
797 /* FIXME: get actual rates FW can do if this command actually returns
798 * all data rates supported.
799 */
800 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
801 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
802
803out:
804 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
805 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806}
807
Holger Schurig69f90322007-11-23 15:43:44 +0100808static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200809 struct cmd_ds_command *cmd,
810 u16 cmd_action)
811{
812 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200813
Holger Schurig8ff12da2007-08-02 11:54:31 -0400814 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400815 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200816 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400817 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818
Holger Schurig8ff12da2007-08-02 11:54:31 -0400819 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200820 pMCastAdr->action = cpu_to_le16(cmd_action);
821 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000822 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
823 memcpy(pMCastAdr->maclist, priv->multicastlist,
824 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200825
Holger Schurig8ff12da2007-08-02 11:54:31 -0400826 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200827 return 0;
828}
829
Dan Williams2dd4b262007-12-11 16:54:15 -0500830/**
831 * @brief Get the radio channel
832 *
833 * @param priv A pointer to struct lbs_private structure
834 *
835 * @return The channel on success, error on failure
836 */
837int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200838{
Dan Williams2dd4b262007-12-11 16:54:15 -0500839 struct cmd_ds_802_11_rf_channel cmd;
840 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200841
Holger Schurig8ff12da2007-08-02 11:54:31 -0400842 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200843
Dan Williams2dd4b262007-12-11 16:54:15 -0500844 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
845 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200846
David Woodhouse689442d2007-12-12 16:00:42 -0500847 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500848 if (ret)
849 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200850
Dan Williamscb182a62007-12-11 17:35:51 -0500851 ret = le16_to_cpu(cmd.channel);
852 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500853
854out:
855 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
856 return ret;
857}
858
859/**
860 * @brief Set the radio channel
861 *
862 * @param priv A pointer to struct lbs_private structure
863 * @param channel The desired channel, or 0 to clear a locked channel
864 *
865 * @return 0 on success, error on failure
866 */
867int lbs_set_channel(struct lbs_private *priv, u8 channel)
868{
869 struct cmd_ds_802_11_rf_channel cmd;
870 u8 old_channel = priv->curbssparams.channel;
871 int ret = 0;
872
873 lbs_deb_enter(LBS_DEB_CMD);
874
875 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
876 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
877 cmd.channel = cpu_to_le16(channel);
878
David Woodhouse689442d2007-12-12 16:00:42 -0500879 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500880 if (ret)
881 goto out;
882
Dan Williamscb182a62007-12-11 17:35:51 -0500883 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
884 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
885 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500886
887out:
888 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
889 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200890}
891
Holger Schurig69f90322007-11-23 15:43:44 +0100892static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200893 struct cmd_ds_command *cmd)
894{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200895
Holger Schurig8ff12da2007-08-02 11:54:31 -0400896 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400897 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400898 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400899 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200900
901 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000902 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
903 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
904 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
905 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
906 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
907 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908
Holger Schurig8ff12da2007-08-02 11:54:31 -0400909 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200910 return 0;
911}
912
Holger Schurig69f90322007-11-23 15:43:44 +0100913static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200914 struct cmd_ds_command *cmdptr,
915 u8 cmd_action, void *pdata_buf)
916{
Holger Schurig10078322007-11-15 18:05:47 -0500917 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200918
Holger Schurig9012b282007-05-25 11:27:16 -0400919 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200920
Holger Schurig10078322007-11-15 18:05:47 -0500921 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200922
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000923 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400924 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200925 {
926 struct cmd_ds_mac_reg_access *macreg;
927
928 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400929 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
930 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200931 macreg =
932 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
933 macreg;
934
935 macreg->action = cpu_to_le16(cmd_action);
936 macreg->offset = cpu_to_le16((u16) offval->offset);
937 macreg->value = cpu_to_le32(offval->value);
938
939 break;
940 }
941
Dan Williams0aef64d2007-08-02 11:31:18 -0400942 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200943 {
944 struct cmd_ds_bbp_reg_access *bbpreg;
945
946 cmdptr->size =
947 cpu_to_le16(sizeof
948 (struct cmd_ds_bbp_reg_access)
949 + S_DS_GEN);
950 bbpreg =
951 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
952 bbpreg;
953
954 bbpreg->action = cpu_to_le16(cmd_action);
955 bbpreg->offset = cpu_to_le16((u16) offval->offset);
956 bbpreg->value = (u8) offval->value;
957
958 break;
959 }
960
Dan Williams0aef64d2007-08-02 11:31:18 -0400961 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200962 {
963 struct cmd_ds_rf_reg_access *rfreg;
964
965 cmdptr->size =
966 cpu_to_le16(sizeof
967 (struct cmd_ds_rf_reg_access) +
968 S_DS_GEN);
969 rfreg =
970 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
971 rfreg;
972
973 rfreg->action = cpu_to_le16(cmd_action);
974 rfreg->offset = cpu_to_le16((u16) offval->offset);
975 rfreg->value = (u8) offval->value;
976
977 break;
978 }
979
980 default:
981 break;
982 }
983
Holger Schurig9012b282007-05-25 11:27:16 -0400984 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985 return 0;
986}
987
Holger Schurig69f90322007-11-23 15:43:44 +0100988static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989 struct cmd_ds_command *cmd,
990 u16 cmd_action)
991{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992
Holger Schurig8ff12da2007-08-02 11:54:31 -0400993 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400994 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400995 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996 S_DS_GEN);
997 cmd->result = 0;
998
999 cmd->params.macadd.action = cpu_to_le16(cmd_action);
1000
Dan Williams0aef64d2007-08-02 11:31:18 -04001001 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +00001003 priv->current_addr, ETH_ALEN);
1004 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005 }
1006
Holger Schurig8ff12da2007-08-02 11:54:31 -04001007 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001008 return 0;
1009}
1010
Holger Schurig69f90322007-11-23 15:43:44 +01001011static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001012 struct cmd_ds_command *cmd,
1013 int cmd_action, void *pdata_buf)
1014{
Holger Schurig10078322007-11-15 18:05:47 -05001015 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016
Holger Schurig9012b282007-05-25 11:27:16 -04001017 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018
Dan Williams0aef64d2007-08-02 11:31:18 -04001019 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001020 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1021 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022 cmd->result = 0;
1023
1024 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1025 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1026 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1027 cmd->params.rdeeprom.value = 0;
1028
Holger Schurig8ff12da2007-08-02 11:54:31 -04001029 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030 return 0;
1031}
1032
Holger Schurig69f90322007-11-23 15:43:44 +01001033static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001034 struct cmd_ds_command *cmd,
1035 u16 cmd_action, void *pdata_buf)
1036{
1037 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001038 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001039
Dan Williams0aef64d2007-08-02 11:31:18 -04001040 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001041 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001042 cmd->result = 0;
1043 bt_access->action = cpu_to_le16(cmd_action);
1044
1045 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001046 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001047 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001048 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001049 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001050 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001052 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001053 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001054 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1056 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001057 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001059 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001060 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1061 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001062 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001063 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001064 default:
1065 break;
1066 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001067 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001068 return 0;
1069}
1070
Holger Schurig69f90322007-11-23 15:43:44 +01001071static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072 struct cmd_ds_command *cmd,
1073 u16 cmd_action, void *pdata_buf)
1074{
1075 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001076 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001077
Dan Williams0aef64d2007-08-02 11:31:18 -04001078 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001079 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080 cmd->result = 0;
1081
1082 if (pdata_buf)
1083 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1084 else
1085 memset(fwt_access, 0, sizeof(*fwt_access));
1086
1087 fwt_access->action = cpu_to_le16(cmd_action);
1088
Holger Schurig8ff12da2007-08-02 11:54:31 -04001089 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090 return 0;
1091}
1092
David Woodhouse301eacb2007-12-11 15:23:59 -05001093int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1094 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001095{
David Woodhouse301eacb2007-12-11 15:23:59 -05001096 int ret;
1097
Holger Schurig8ff12da2007-08-02 11:54:31 -04001098 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099
David Woodhouse301eacb2007-12-11 15:23:59 -05001100 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001101 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001102 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001103
David Woodhouse301eacb2007-12-11 15:23:59 -05001104 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001105
David Woodhouse689442d2007-12-12 16:00:42 -05001106 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107
Holger Schurig8ff12da2007-08-02 11:54:31 -04001108 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001109 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001110}
1111
David Woodhouse86062132007-12-13 00:32:36 -05001112int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001113{
1114 struct cmd_ds_mesh_config cmd;
1115
1116 memset(&cmd, 0, sizeof(cmd));
1117 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001118 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001119 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001120 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001121
David Woodhouse23a397a2007-12-11 18:56:42 -05001122 if (enable) {
1123 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1124 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1125 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001126 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001127 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001128 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001129 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001130}
1131
Brajesh Dave96287ac2007-11-20 17:44:28 -05001132static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1133 struct cmd_ds_command *cmd,
1134 u16 cmd_action)
1135{
1136 struct cmd_ds_802_11_beacon_control
1137 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001138
1139 lbs_deb_enter(LBS_DEB_CMD);
1140 cmd->size =
1141 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1142 + S_DS_GEN);
1143 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1144
1145 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001146 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1147 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001148
1149 lbs_deb_leave(LBS_DEB_CMD);
1150 return 0;
1151}
1152
David Woodhouse681ffbb2007-12-15 20:04:54 -05001153static void lbs_queue_cmd(struct lbs_private *priv,
1154 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155{
1156 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001157 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158
Holger Schurig8ff12da2007-08-02 11:54:31 -04001159 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001160
David Woodhousec4ab4122007-12-15 00:41:51 -05001161 if (!cmdnode) {
1162 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001163 goto done;
1164 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001165 if (!cmdnode->cmdbuf->size) {
1166 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1167 goto done;
1168 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001169 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001170
1171 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001172 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001173 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001174
Dan Williams0aef64d2007-08-02 11:31:18 -04001175 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001176 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177 addtail = 0;
1178 }
1179 }
1180
David Woodhouseaa21c002007-12-08 20:04:36 +00001181 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001182
David Woodhouseac472462007-12-08 00:35:00 +00001183 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001184 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001185 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001186 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001187
David Woodhouseaa21c002007-12-08 20:04:36 +00001188 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189
Holger Schurig8ff12da2007-08-02 11:54:31 -04001190 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001191 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001192
1193done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001194 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001195}
1196
David Woodhouse18c52e72007-12-17 16:03:58 -05001197static void lbs_submit_command(struct lbs_private *priv,
1198 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199{
1200 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001201 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001202 uint16_t cmdsize;
1203 uint16_t command;
1204 int timeo = 5 * HZ;
1205 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206
Holger Schurig8ff12da2007-08-02 11:54:31 -04001207 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001208
Dan Williamsddac4522007-12-11 13:49:39 -05001209 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210
David Woodhouseaa21c002007-12-08 20:04:36 +00001211 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001212 priv->cur_cmd = cmdnode;
1213 priv->cur_cmd_retcode = 0;
1214 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215
Dan Williamsddac4522007-12-11 13:49:39 -05001216 cmdsize = le16_to_cpu(cmd->size);
1217 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218
David Woodhouse18c52e72007-12-17 16:03:58 -05001219 /* These commands take longer */
1220 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1221 command == CMD_802_11_AUTHENTICATE)
1222 timeo = 10 * HZ;
1223
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001224 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
David Woodhousee1258172007-12-11 23:42:49 -05001225 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001226 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001227
Dan Williamsddac4522007-12-11 13:49:39 -05001228 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001229
David Woodhoused9896ee2007-12-15 00:09:25 -05001230 if (ret) {
1231 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001232 /* Let the timer kick in and retry, and potentially reset
1233 the whole thing if the condition persists */
1234 timeo = HZ;
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001235 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001236
1237 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001238 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239
David Woodhouse18c52e72007-12-17 16:03:58 -05001240 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241}
1242
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243/**
1244 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001245 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001247static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001248 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001249{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001250 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001252 if (!cmdnode)
1253 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001254
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001255 cmdnode->callback = NULL;
1256 cmdnode->callback_arg = 0;
1257
1258 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1259
1260 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1261 out:
1262 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001263}
1264
Holger Schurig69f90322007-11-23 15:43:44 +01001265static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1266 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001267{
1268 unsigned long flags;
1269
David Woodhouseaa21c002007-12-08 20:04:36 +00001270 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001271 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001272 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001273}
1274
David Woodhouse183aeac2007-12-15 01:52:54 -05001275void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1276 int result)
1277{
1278 if (cmd == priv->cur_cmd)
1279 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001280
David Woodhouseae125bf2007-12-15 04:22:52 -05001281 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001282 cmd->cmdwaitqwoken = 1;
1283 wake_up_interruptible(&cmd->cmdwait_q);
1284
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001285 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001286 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001287 priv->cur_cmd = NULL;
1288}
1289
Holger Schurig69f90322007-11-23 15:43:44 +01001290int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001291{
1292 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001293 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001294
Holger Schurig9012b282007-05-25 11:27:16 -04001295 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001296
David Woodhousea7c45892007-12-17 22:43:48 -05001297 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1298 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001299
David Woodhousea7c45892007-12-17 22:43:48 -05001300 switch (priv->preamble) {
1301 case CMD_TYPE_SHORT_PREAMBLE:
1302 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1303 break;
1304
1305 case CMD_TYPE_LONG_PREAMBLE:
1306 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1307 break;
1308
1309 case CMD_TYPE_AUTO_PREAMBLE:
1310 default:
1311 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1312 break;
1313 }
1314
1315 if (priv->radioon)
1316 cmd.control |= cpu_to_le16(TURN_ON_RF);
1317 else
1318 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1319
1320 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1321 priv->preamble);
1322
1323 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324
Holger Schurig9012b282007-05-25 11:27:16 -04001325 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326 return ret;
1327}
1328
Holger Schurigd9e97782008-03-12 16:06:43 +01001329int lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330{
1331 int ret = 0;
Holger Schurig835d3ac2008-03-12 16:05:40 +01001332 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001333
Holger Schurig9012b282007-05-25 11:27:16 -04001334 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335
Holger Schurig835d3ac2008-03-12 16:05:40 +01001336 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001337 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001338 cmd.reserved = 0;
1339
1340 ret = lbs_cmd_with_response(priv, CMD_MAC_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341
Holger Schurig9012b282007-05-25 11:27:16 -04001342 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343 return ret;
1344}
1345
1346/**
1347 * @brief This function prepare the command before send to firmware.
1348 *
Holger Schurig69f90322007-11-23 15:43:44 +01001349 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001350 * @param cmd_no command number
1351 * @param cmd_action command action: GET or SET
1352 * @param wait_option wait option: wait response or not
1353 * @param cmd_oid cmd oid: treated as sub command
1354 * @param pdata_buf A pointer to informaion buffer
1355 * @return 0 or -1
1356 */
Holger Schurig69f90322007-11-23 15:43:44 +01001357int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001358 u16 cmd_no,
1359 u16 cmd_action,
1360 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1361{
1362 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 struct cmd_ctrl_node *cmdnode;
1364 struct cmd_ds_command *cmdptr;
1365 unsigned long flags;
1366
Holger Schurig8ff12da2007-08-02 11:54:31 -04001367 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368
David Woodhouseaa21c002007-12-08 20:04:36 +00001369 if (!priv) {
1370 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001371 ret = -1;
1372 goto done;
1373 }
1374
David Woodhouseaa21c002007-12-08 20:04:36 +00001375 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001376 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001377 ret = -1;
1378 goto done;
1379 }
1380
Holger Schurig0d61d042007-12-05 17:58:06 +01001381 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382
1383 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001384 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001385
1386 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001387 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001388 ret = -1;
1389 goto done;
1390 }
1391
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001392 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393
Dan Williamsddac4522007-12-11 13:49:39 -05001394 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395
Holger Schurig8ff12da2007-08-02 11:54:31 -04001396 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001399 priv->seqnum++;
1400 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401
David Woodhouse981f1872007-05-25 23:36:54 -04001402 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001403 cmdptr->result = 0;
1404
1405 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001406 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001407 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 break;
1409
Dan Williams0aef64d2007-08-02 11:31:18 -04001410 case CMD_802_11_ASSOCIATE:
1411 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001412 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001413 break;
1414
Dan Williams0aef64d2007-08-02 11:31:18 -04001415 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001416 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417 break;
1418
Dan Williams0aef64d2007-08-02 11:31:18 -04001419 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001420 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001421 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001422
Dan Williams0aef64d2007-08-02 11:31:18 -04001423 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001424 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001425 break;
1426
Dan Williams0aef64d2007-08-02 11:31:18 -04001427 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001428 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001429 break;
1430
Dan Williams0aef64d2007-08-02 11:31:18 -04001431 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001432 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 break;
1434
Dan Williams0aef64d2007-08-02 11:31:18 -04001435 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001436 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001437 break;
1438
Dan Williams0aef64d2007-08-02 11:31:18 -04001439 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001440 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001441 cmd_action, cmd_oid, pdata_buf);
1442 break;
1443
Dan Williams0aef64d2007-08-02 11:31:18 -04001444 case CMD_MAC_REG_ACCESS:
1445 case CMD_BBP_REG_ACCESS:
1446 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001447 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001448 break;
1449
Dan Williams0aef64d2007-08-02 11:31:18 -04001450 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001451 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001452 cmd_action, pdata_buf);
1453 break;
1454
Dan Williams0aef64d2007-08-02 11:31:18 -04001455 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001456 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001457 cmdptr, cmd_action);
1458 break;
1459
Dan Williams0aef64d2007-08-02 11:31:18 -04001460 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001461 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001462 break;
1463
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001464 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001465 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001466 cmd_action, pdata_buf);
1467 break;
1468
Dan Williams0aef64d2007-08-02 11:31:18 -04001469 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001470 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 break;
1472
Dan Williams0aef64d2007-08-02 11:31:18 -04001473 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001474 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001475 break;
1476
Dan Williams0aef64d2007-08-02 11:31:18 -04001477 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001478 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479 break;
1480
Dan Williams0aef64d2007-08-02 11:31:18 -04001481 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001482 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 break;
1484
Dan Williams0aef64d2007-08-02 11:31:18 -04001485 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001486 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001487 cmd_action, pdata_buf);
1488 break;
1489
Dan Williams0aef64d2007-08-02 11:31:18 -04001490 case CMD_802_11_SET_AFC:
1491 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001492
1493 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001494 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1495 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001496
1497 memmove(&cmdptr->params.afc,
1498 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1499
1500 ret = 0;
1501 goto done;
1502
Dan Williams0aef64d2007-08-02 11:31:18 -04001503 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001504 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001505 cmd_no, cmd_action);
1506 break;
1507
Dan Williams0aef64d2007-08-02 11:31:18 -04001508 case CMD_802_11_TPC_CFG:
1509 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001510 cmdptr->size =
1511 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1512 S_DS_GEN);
1513
1514 memmove(&cmdptr->params.tpccfg,
1515 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1516
1517 ret = 0;
1518 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001519 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001520 {
1521 struct mrvlietypes_ledgpio *gpio =
1522 (struct mrvlietypes_ledgpio*)
1523 cmdptr->params.ledgpio.data;
1524
1525 memmove(&cmdptr->params.ledgpio,
1526 pdata_buf,
1527 sizeof(struct cmd_ds_802_11_led_ctrl));
1528
1529 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001530 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001531
1532#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1533 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001534 cpu_to_le16(le16_to_cpu(gpio->header.len)
1535 + S_DS_GEN
1536 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1537 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001538
1539 ret = 0;
1540 break;
1541 }
David Woodhouse5844d122007-12-18 02:01:37 -05001542
Dan Williams0aef64d2007-08-02 11:31:18 -04001543 case CMD_802_11_PWR_CFG:
1544 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001545 cmdptr->size =
1546 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1547 S_DS_GEN);
1548 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1549 sizeof(struct cmd_ds_802_11_pwr_cfg));
1550
1551 ret = 0;
1552 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001553 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001554 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001555 break;
1556
Dan Williams0aef64d2007-08-02 11:31:18 -04001557 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001558 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001559 break;
1560
Dan Williams0aef64d2007-08-02 11:31:18 -04001561 case CMD_GET_TSF:
1562 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001563 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1564 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001565 ret = 0;
1566 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001567 case CMD_802_11_BEACON_CTRL:
1568 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1569 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001570 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001571 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001572 ret = -1;
1573 break;
1574 }
1575
1576 /* return error, since the command preparation failed */
1577 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001578 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001579 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001580 ret = -1;
1581 goto done;
1582 }
1583
1584 cmdnode->cmdwaitqwoken = 0;
1585
David Woodhouse681ffbb2007-12-15 20:04:54 -05001586 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001587 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001588
Dan Williams0aef64d2007-08-02 11:31:18 -04001589 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001590 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001591 might_sleep();
1592 wait_event_interruptible(cmdnode->cmdwait_q,
1593 cmdnode->cmdwaitqwoken);
1594 }
1595
David Woodhouseaa21c002007-12-08 20:04:36 +00001596 spin_lock_irqsave(&priv->driver_lock, flags);
1597 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001598 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001599 priv->cur_cmd_retcode);
1600 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001601 ret = -1;
1602 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001603 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001604
1605done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001606 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001607 return ret;
1608}
1609
1610/**
1611 * @brief This function allocates the command buffer and link
1612 * it to command free queue.
1613 *
Holger Schurig69f90322007-11-23 15:43:44 +01001614 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001615 * @return 0 or -1
1616 */
Holger Schurig69f90322007-11-23 15:43:44 +01001617int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001618{
1619 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001620 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001621 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001622 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001623
Holger Schurig8ff12da2007-08-02 11:54:31 -04001624 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001625
Dan Williamsddac4522007-12-11 13:49:39 -05001626 /* Allocate and initialize the command array */
1627 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1628 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001629 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001630 ret = -1;
1631 goto done;
1632 }
Dan Williamsddac4522007-12-11 13:49:39 -05001633 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001634
Dan Williamsddac4522007-12-11 13:49:39 -05001635 /* Allocate and initialize each command buffer in the command array */
1636 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1637 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1638 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001639 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001640 ret = -1;
1641 goto done;
1642 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001643 }
1644
Dan Williamsddac4522007-12-11 13:49:39 -05001645 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1646 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1647 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001650
1651done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001652 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001653 return ret;
1654}
1655
1656/**
1657 * @brief This function frees the command buffer.
1658 *
Holger Schurig69f90322007-11-23 15:43:44 +01001659 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001660 * @return 0 or -1
1661 */
Holger Schurig69f90322007-11-23 15:43:44 +01001662int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663{
Dan Williamsddac4522007-12-11 13:49:39 -05001664 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001666
Holger Schurig8ff12da2007-08-02 11:54:31 -04001667 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001668
1669 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001670 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001671 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001672 goto done;
1673 }
1674
Dan Williamsddac4522007-12-11 13:49:39 -05001675 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676
1677 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001678 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1679 if (cmdarray[i].cmdbuf) {
1680 kfree(cmdarray[i].cmdbuf);
1681 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001682 }
1683 }
1684
1685 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001686 if (priv->cmd_array) {
1687 kfree(priv->cmd_array);
1688 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001689 }
1690
1691done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001692 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001693 return 0;
1694}
1695
1696/**
1697 * @brief This function gets a free command node if available in
1698 * command free queue.
1699 *
Holger Schurig69f90322007-11-23 15:43:44 +01001700 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1702 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001703static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001704{
1705 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001706 unsigned long flags;
1707
Holger Schurig8ff12da2007-08-02 11:54:31 -04001708 lbs_deb_enter(LBS_DEB_HOST);
1709
David Woodhouseaa21c002007-12-08 20:04:36 +00001710 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001711 return NULL;
1712
David Woodhouseaa21c002007-12-08 20:04:36 +00001713 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001714
David Woodhouseaa21c002007-12-08 20:04:36 +00001715 if (!list_empty(&priv->cmdfreeq)) {
1716 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001717 struct cmd_ctrl_node, list);
1718 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001719 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001720 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001721 tempnode = NULL;
1722 }
1723
David Woodhouseaa21c002007-12-08 20:04:36 +00001724 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001725
Holger Schurig8ff12da2007-08-02 11:54:31 -04001726 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001727 return tempnode;
1728}
1729
1730/**
1731 * @brief This function cleans command node.
1732 *
1733 * @param ptempnode A pointer to cmdCtrlNode structure
1734 * @return n/a
1735 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001736
1737/**
1738 * @brief This function initializes the command node.
1739 *
Holger Schurig69f90322007-11-23 15:43:44 +01001740 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001741 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001742 * @param pdata_buf A pointer to informaion buffer
1743 * @return 0 or -1
1744 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001745static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1746 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001747 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001748{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001749 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750
1751 if (!ptempnode)
1752 return;
1753
David Woodhouse17230472007-12-07 15:13:05 +00001754 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001755 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001756
Holger Schurig8ff12da2007-08-02 11:54:31 -04001757 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758}
1759
1760/**
1761 * @brief This function executes next command in command
1762 * pending queue. It will put fimware back to PS mode
1763 * if applicable.
1764 *
Holger Schurig69f90322007-11-23 15:43:44 +01001765 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001766 * @return 0 or -1
1767 */
Holger Schurig69f90322007-11-23 15:43:44 +01001768int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001769{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001770 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001771 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001772 unsigned long flags;
1773 int ret = 0;
1774
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001775 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1776 * only caller to us is lbs_thread() and we get even when a
1777 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001778 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779
David Woodhouseaa21c002007-12-08 20:04:36 +00001780 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781
David Woodhouseaa21c002007-12-08 20:04:36 +00001782 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001783 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001784 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001785 ret = -1;
1786 goto done;
1787 }
1788
David Woodhouseaa21c002007-12-08 20:04:36 +00001789 if (!list_empty(&priv->cmdpendingq)) {
1790 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001791 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001792 }
1793
David Woodhouseaa21c002007-12-08 20:04:36 +00001794 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795
1796 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001797 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798
Dan Williamsddac4522007-12-11 13:49:39 -05001799 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001800 if ((priv->psstate == PS_STATE_SLEEP) ||
1801 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001802 lbs_deb_host(
1803 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001804 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001805 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001806 ret = -1;
1807 goto done;
1808 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001809 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001810 "0x%04x in psstate %d\n",
1811 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001812 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001813 /*
1814 * 1. Non-PS command:
1815 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001816 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817 * 2. PS command but not Exit_PS:
1818 * Ignore it.
1819 * 3. PS command Exit_PS:
1820 * Set needtowakeup to TRUE if current state is SLEEP,
1821 * otherwise send this command down to firmware
1822 * immediately.
1823 */
Dan Williamsddac4522007-12-11 13:49:39 -05001824 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001825 /* Prepare to send Exit PS,
1826 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001827 if ((priv->psstate == PS_STATE_SLEEP)
1828 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001829 ) {
1830 /* w/ new scheme, it will not reach here.
1831 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001832 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001833 } else
Holger Schurig10078322007-11-15 18:05:47 -05001834 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001835
1836 ret = 0;
1837 goto done;
1838 } else {
1839 /*
1840 * PS command. Ignore it if it is not Exit_PS.
1841 * otherwise send it down immediately.
1842 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001843 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001844
Holger Schurig8ff12da2007-08-02 11:54:31 -04001845 lbs_deb_host(
1846 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001847 psm->action);
1848 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001849 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001850 lbs_deb_host(
1851 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001852 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001853 spin_lock_irqsave(&priv->driver_lock, flags);
1854 lbs_complete_command(priv, cmdnode, 0);
1855 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001856
1857 ret = 0;
1858 goto done;
1859 }
1860
David Woodhouseaa21c002007-12-08 20:04:36 +00001861 if ((priv->psstate == PS_STATE_SLEEP) ||
1862 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001863 lbs_deb_host(
1864 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001865 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001866 spin_lock_irqsave(&priv->driver_lock, flags);
1867 lbs_complete_command(priv, cmdnode, 0);
1868 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001869 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870
1871 ret = 0;
1872 goto done;
1873 }
1874
Holger Schurig8ff12da2007-08-02 11:54:31 -04001875 lbs_deb_host(
1876 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001877 }
1878 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001879 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001880 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001881 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001882 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001883 } else {
1884 /*
1885 * check if in power save mode, if yes, put the device back
1886 * to PS mode
1887 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001888 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1889 (priv->psstate == PS_STATE_FULL_POWER) &&
1890 ((priv->connect_status == LBS_CONNECTED) ||
1891 (priv->mesh_connect_status == LBS_CONNECTED))) {
1892 if (priv->secinfo.WPAenabled ||
1893 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001894 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001895 if (priv->wpa_mcast_key.len ||
1896 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001897 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001898 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1899 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001900 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001901 }
1902 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001903 lbs_deb_host(
1904 "EXEC_NEXT_CMD: cmdpendingq empty, "
1905 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001906 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907 }
1908 }
1909 }
1910
1911 ret = 0;
1912done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001913 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001914 return ret;
1915}
1916
Holger Schurig69f90322007-11-23 15:43:44 +01001917void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001918{
1919 union iwreq_data iwrq;
1920 u8 buf[50];
1921
Holger Schurig8ff12da2007-08-02 11:54:31 -04001922 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001923
1924 memset(&iwrq, 0, sizeof(union iwreq_data));
1925 memset(buf, 0, sizeof(buf));
1926
1927 snprintf(buf, sizeof(buf) - 1, "%s", str);
1928
1929 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1930
1931 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001932 lbs_deb_wext("event indication string %s\n", (char *)buf);
1933 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1934 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001935
Holger Schurig634b8f42007-05-25 13:05:16 -04001936 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001937
Holger Schurig8ff12da2007-08-02 11:54:31 -04001938 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001939}
1940
Holger Schurig69f90322007-11-23 15:43:44 +01001941static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001942{
1943 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001944 int ret = 0;
1945
Holger Schurig8ff12da2007-08-02 11:54:31 -04001946 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001947
Holger Schurig8ff12da2007-08-02 11:54:31 -04001948 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001949 size);
1950
Holger Schurig8ff12da2007-08-02 11:54:31 -04001951 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952
Holger Schurig208fdd22007-05-25 12:17:06 -04001953 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954
David Woodhouseaa21c002007-12-08 20:04:36 +00001955 spin_lock_irqsave(&priv->driver_lock, flags);
1956 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001957 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001958 priv->intcounter, priv->currenttxskb);
1959 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960
1961 if (ret) {
1962 lbs_pr_alert(
1963 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1964 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001965 spin_lock_irqsave(&priv->driver_lock, flags);
1966 if (!priv->intcounter) {
1967 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001968 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001969 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001970 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001971 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001972 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001973
Holger Schurig8ff12da2007-08-02 11:54:31 -04001974 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001975 }
1976
Holger Schurig8ff12da2007-08-02 11:54:31 -04001977 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001978 return ret;
1979}
1980
Holger Schurig69f90322007-11-23 15:43:44 +01001981void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001982{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001983 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001984
1985 /*
1986 * PS is currently supported only in Infrastructure mode
1987 * Remove this check if it is to be supported in IBSS mode also
1988 */
1989
Holger Schurig10078322007-11-15 18:05:47 -05001990 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001991 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992
Holger Schurig8ff12da2007-08-02 11:54:31 -04001993 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001994}
1995
1996/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001997 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001998 *
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 wait_option wait response or not
2001 * @return n/a
2002 */
Holger Schurig69f90322007-11-23 15:43:44 +01002003void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002004{
David Woodhouse981f1872007-05-25 23:36:54 -04002005 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002006
Holger Schurig8ff12da2007-08-02 11:54:31 -04002007 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002008
Holger Schurig10078322007-11-15 18:05:47 -05002009 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002010
Holger Schurig10078322007-11-15 18:05:47 -05002011 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002012 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002013 wait_option, 0, &Localpsmode);
2014
Holger Schurig8ff12da2007-08-02 11:54:31 -04002015 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002016}
2017
2018/**
2019 * @brief This function checks condition and prepares to
2020 * send sleep confirm command to firmware if ok.
2021 *
Holger Schurig69f90322007-11-23 15:43:44 +01002022 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 * @param psmode Power Saving mode
2024 * @return n/a
2025 */
Holger Schurig69f90322007-11-23 15:43:44 +01002026void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002027{
2028 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029 u8 allowed = 1;
2030
Holger Schurig8ff12da2007-08-02 11:54:31 -04002031 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002032
Holger Schurig634b8f42007-05-25 13:05:16 -04002033 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002034 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002035 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002036 }
2037
David Woodhouseaa21c002007-12-08 20:04:36 +00002038 spin_lock_irqsave(&priv->driver_lock, flags);
2039 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002040 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002041 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002042 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002043 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002044 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002045 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002047 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002048
2049 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002050 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002051 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052 sizeof(struct PS_CMD_ConfirmSleep));
2053 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002054 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002055 }
2056
Holger Schurig8ff12da2007-08-02 11:54:31 -04002057 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002058}
Holger Schurig675787e2007-12-05 17:58:11 +01002059
2060
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002061static struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
2062 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
2063 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2064 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002065{
Holger Schurig675787e2007-12-05 17:58:11 +01002066 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002067
2068 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002069
David Woodhouseaa21c002007-12-08 20:04:36 +00002070 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002071 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002072 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002073 goto done;
2074 }
2075
2076 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002077 if (cmdnode == NULL) {
2078 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2079
2080 /* Wake up main thread to execute next command */
2081 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002082 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002083 goto done;
2084 }
2085
David Woodhouse448a51a2007-12-08 00:59:54 +00002086 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002087 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002088
Dan Williams7ad994d2007-12-11 12:33:30 -05002089 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002090 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002091
Holger Schurig675787e2007-12-05 17:58:11 +01002092 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002093 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002094 cmdnode->cmdbuf->command = cpu_to_le16(command);
2095 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2096 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2097 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002098
2099 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2100
Holger Schurig675787e2007-12-05 17:58:11 +01002101 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002102 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002103 wake_up_interruptible(&priv->waitq);
2104
David Woodhouse3399ea52007-12-15 03:09:33 -05002105 done:
2106 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2107 return cmdnode;
2108}
2109
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002110void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2111 struct cmd_header *in_cmd, int in_cmd_size)
2112{
2113 lbs_deb_enter(LBS_DEB_CMD);
2114 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2115 lbs_cmd_async_callback, 0);
2116 lbs_deb_leave(LBS_DEB_CMD);
2117}
2118
David Woodhouse3399ea52007-12-15 03:09:33 -05002119int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2120 struct cmd_header *in_cmd, int in_cmd_size,
2121 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2122 unsigned long callback_arg)
2123{
2124 struct cmd_ctrl_node *cmdnode;
2125 unsigned long flags;
2126 int ret = 0;
2127
2128 lbs_deb_enter(LBS_DEB_HOST);
2129
2130 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2131 callback, callback_arg);
2132 if (IS_ERR(cmdnode)) {
2133 ret = PTR_ERR(cmdnode);
2134 goto done;
2135 }
2136
Holger Schurig675787e2007-12-05 17:58:11 +01002137 might_sleep();
2138 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2139
David Woodhouseaa21c002007-12-08 20:04:36 +00002140 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002141 ret = cmdnode->result;
2142 if (ret)
2143 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2144 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002145
David Woodhousead12d0f2007-12-15 02:06:16 -05002146 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002147 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002148
2149done:
2150 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2151 return ret;
2152}
Dan Williams14e865b2007-12-10 15:11:23 -05002153EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002154
2155