blob: be8a170b633f0023d530b2f55598ebeae75f8409 [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 Schurigc97329e2008-03-18 11:20:21 +01001329void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001331 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001332
Holger Schurig9012b282007-05-25 11:27:16 -04001333 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001334
Holger Schurig835d3ac2008-03-12 16:05:40 +01001335 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001336 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001337 cmd.reserved = 0;
1338
Holger Schurigc97329e2008-03-18 11:20:21 +01001339 lbs_cmd_async(priv, CMD_MAC_CONTROL,
1340 &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341
Holger Schurigc97329e2008-03-18 11:20:21 +01001342 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343}
1344
1345/**
1346 * @brief This function prepare the command before send to firmware.
1347 *
Holger Schurig69f90322007-11-23 15:43:44 +01001348 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001349 * @param cmd_no command number
1350 * @param cmd_action command action: GET or SET
1351 * @param wait_option wait option: wait response or not
1352 * @param cmd_oid cmd oid: treated as sub command
1353 * @param pdata_buf A pointer to informaion buffer
1354 * @return 0 or -1
1355 */
Holger Schurig69f90322007-11-23 15:43:44 +01001356int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 u16 cmd_no,
1358 u16 cmd_action,
1359 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1360{
1361 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001362 struct cmd_ctrl_node *cmdnode;
1363 struct cmd_ds_command *cmdptr;
1364 unsigned long flags;
1365
Holger Schurig8ff12da2007-08-02 11:54:31 -04001366 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001367
David Woodhouseaa21c002007-12-08 20:04:36 +00001368 if (!priv) {
1369 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001370 ret = -1;
1371 goto done;
1372 }
1373
David Woodhouseaa21c002007-12-08 20:04:36 +00001374 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001375 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001376 ret = -1;
1377 goto done;
1378 }
1379
Holger Schurig0d61d042007-12-05 17:58:06 +01001380 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381
1382 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001383 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001384
1385 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001386 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001387 ret = -1;
1388 goto done;
1389 }
1390
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001391 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001392
Dan Williamsddac4522007-12-11 13:49:39 -05001393 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001394
Holger Schurig8ff12da2007-08-02 11:54:31 -04001395 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001396
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001398 priv->seqnum++;
1399 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001400
David Woodhouse981f1872007-05-25 23:36:54 -04001401 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402 cmdptr->result = 0;
1403
1404 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001405 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001406 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001407 break;
1408
Dan Williams0aef64d2007-08-02 11:31:18 -04001409 case CMD_802_11_ASSOCIATE:
1410 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001411 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001412 break;
1413
Dan Williams0aef64d2007-08-02 11:31:18 -04001414 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001415 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001416 break;
1417
Dan Williams0aef64d2007-08-02 11:31:18 -04001418 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001419 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001421
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001423 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424 break;
1425
Dan Williams0aef64d2007-08-02 11:31:18 -04001426 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001427 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001428 break;
1429
Dan Williams0aef64d2007-08-02 11:31:18 -04001430 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001431 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001432 break;
1433
Dan Williams0aef64d2007-08-02 11:31:18 -04001434 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001435 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 break;
1437
Dan Williams0aef64d2007-08-02 11:31:18 -04001438 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001439 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001440 cmd_action, cmd_oid, pdata_buf);
1441 break;
1442
Dan Williams0aef64d2007-08-02 11:31:18 -04001443 case CMD_MAC_REG_ACCESS:
1444 case CMD_BBP_REG_ACCESS:
1445 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001446 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001447 break;
1448
Dan Williams0aef64d2007-08-02 11:31:18 -04001449 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001450 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001451 cmd_action, pdata_buf);
1452 break;
1453
Dan Williams0aef64d2007-08-02 11:31:18 -04001454 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001455 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001456 cmdptr, cmd_action);
1457 break;
1458
Dan Williams0aef64d2007-08-02 11:31:18 -04001459 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001460 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001461 break;
1462
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001463 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001464 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001465 cmd_action, pdata_buf);
1466 break;
1467
Dan Williams0aef64d2007-08-02 11:31:18 -04001468 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001469 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001470 break;
1471
Dan Williams0aef64d2007-08-02 11:31:18 -04001472 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001473 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001474 break;
1475
Dan Williams0aef64d2007-08-02 11:31:18 -04001476 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001477 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001478 break;
1479
Dan Williams0aef64d2007-08-02 11:31:18 -04001480 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001481 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001482 break;
1483
Dan Williams0aef64d2007-08-02 11:31:18 -04001484 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001485 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001486 cmd_action, pdata_buf);
1487 break;
1488
Dan Williams0aef64d2007-08-02 11:31:18 -04001489 case CMD_802_11_SET_AFC:
1490 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491
1492 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001493 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1494 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001495
1496 memmove(&cmdptr->params.afc,
1497 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1498
1499 ret = 0;
1500 goto done;
1501
Dan Williams0aef64d2007-08-02 11:31:18 -04001502 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001503 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504 cmd_no, cmd_action);
1505 break;
1506
Dan Williams0aef64d2007-08-02 11:31:18 -04001507 case CMD_802_11_TPC_CFG:
1508 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001509 cmdptr->size =
1510 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1511 S_DS_GEN);
1512
1513 memmove(&cmdptr->params.tpccfg,
1514 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1515
1516 ret = 0;
1517 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001518 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001519 {
1520 struct mrvlietypes_ledgpio *gpio =
1521 (struct mrvlietypes_ledgpio*)
1522 cmdptr->params.ledgpio.data;
1523
1524 memmove(&cmdptr->params.ledgpio,
1525 pdata_buf,
1526 sizeof(struct cmd_ds_802_11_led_ctrl));
1527
1528 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001529 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001530
1531#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1532 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001533 cpu_to_le16(le16_to_cpu(gpio->header.len)
1534 + S_DS_GEN
1535 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1536 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537
1538 ret = 0;
1539 break;
1540 }
David Woodhouse5844d122007-12-18 02:01:37 -05001541
Dan Williams0aef64d2007-08-02 11:31:18 -04001542 case CMD_802_11_PWR_CFG:
1543 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001544 cmdptr->size =
1545 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1546 S_DS_GEN);
1547 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1548 sizeof(struct cmd_ds_802_11_pwr_cfg));
1549
1550 ret = 0;
1551 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001552 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001553 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001554 break;
1555
Dan Williams0aef64d2007-08-02 11:31:18 -04001556 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001557 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001558 break;
1559
Dan Williams0aef64d2007-08-02 11:31:18 -04001560 case CMD_GET_TSF:
1561 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001562 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1563 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001564 ret = 0;
1565 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001566 case CMD_802_11_BEACON_CTRL:
1567 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1568 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001569 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001570 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001571 ret = -1;
1572 break;
1573 }
1574
1575 /* return error, since the command preparation failed */
1576 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001577 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001578 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001579 ret = -1;
1580 goto done;
1581 }
1582
1583 cmdnode->cmdwaitqwoken = 0;
1584
David Woodhouse681ffbb2007-12-15 20:04:54 -05001585 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001586 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001587
Dan Williams0aef64d2007-08-02 11:31:18 -04001588 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001589 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001590 might_sleep();
1591 wait_event_interruptible(cmdnode->cmdwait_q,
1592 cmdnode->cmdwaitqwoken);
1593 }
1594
David Woodhouseaa21c002007-12-08 20:04:36 +00001595 spin_lock_irqsave(&priv->driver_lock, flags);
1596 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001597 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001598 priv->cur_cmd_retcode);
1599 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001600 ret = -1;
1601 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001602 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001603
1604done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001605 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001606 return ret;
1607}
1608
1609/**
1610 * @brief This function allocates the command buffer and link
1611 * it to command free queue.
1612 *
Holger Schurig69f90322007-11-23 15:43:44 +01001613 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001614 * @return 0 or -1
1615 */
Holger Schurig69f90322007-11-23 15:43:44 +01001616int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001617{
1618 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001619 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001621 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001622
Holger Schurig8ff12da2007-08-02 11:54:31 -04001623 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001624
Dan Williamsddac4522007-12-11 13:49:39 -05001625 /* Allocate and initialize the command array */
1626 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1627 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001628 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001629 ret = -1;
1630 goto done;
1631 }
Dan Williamsddac4522007-12-11 13:49:39 -05001632 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001633
Dan Williamsddac4522007-12-11 13:49:39 -05001634 /* Allocate and initialize each command buffer in the command array */
1635 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1636 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1637 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001638 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001639 ret = -1;
1640 goto done;
1641 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001642 }
1643
Dan Williamsddac4522007-12-11 13:49:39 -05001644 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1645 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1646 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001647 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001649
1650done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001651 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001652 return ret;
1653}
1654
1655/**
1656 * @brief This function frees the command buffer.
1657 *
Holger Schurig69f90322007-11-23 15:43:44 +01001658 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001659 * @return 0 or -1
1660 */
Holger Schurig69f90322007-11-23 15:43:44 +01001661int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001662{
Dan Williamsddac4522007-12-11 13:49:39 -05001663 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001664 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665
Holger Schurig8ff12da2007-08-02 11:54:31 -04001666 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001667
1668 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001669 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001670 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671 goto done;
1672 }
1673
Dan Williamsddac4522007-12-11 13:49:39 -05001674 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001675
1676 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001677 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1678 if (cmdarray[i].cmdbuf) {
1679 kfree(cmdarray[i].cmdbuf);
1680 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001681 }
1682 }
1683
1684 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001685 if (priv->cmd_array) {
1686 kfree(priv->cmd_array);
1687 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001688 }
1689
1690done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001691 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001692 return 0;
1693}
1694
1695/**
1696 * @brief This function gets a free command node if available in
1697 * command free queue.
1698 *
Holger Schurig69f90322007-11-23 15:43:44 +01001699 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001700 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1701 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001702static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001703{
1704 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001705 unsigned long flags;
1706
Holger Schurig8ff12da2007-08-02 11:54:31 -04001707 lbs_deb_enter(LBS_DEB_HOST);
1708
David Woodhouseaa21c002007-12-08 20:04:36 +00001709 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001710 return NULL;
1711
David Woodhouseaa21c002007-12-08 20:04:36 +00001712 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001713
David Woodhouseaa21c002007-12-08 20:04:36 +00001714 if (!list_empty(&priv->cmdfreeq)) {
1715 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001716 struct cmd_ctrl_node, list);
1717 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001718 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001719 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720 tempnode = NULL;
1721 }
1722
David Woodhouseaa21c002007-12-08 20:04:36 +00001723 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724
Holger Schurig8ff12da2007-08-02 11:54:31 -04001725 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001726 return tempnode;
1727}
1728
1729/**
1730 * @brief This function cleans command node.
1731 *
1732 * @param ptempnode A pointer to cmdCtrlNode structure
1733 * @return n/a
1734 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735
1736/**
1737 * @brief This function initializes the command node.
1738 *
Holger Schurig69f90322007-11-23 15:43:44 +01001739 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001740 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001741 * @param pdata_buf A pointer to informaion buffer
1742 * @return 0 or -1
1743 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001744static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1745 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001746 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001747{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001748 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001749
1750 if (!ptempnode)
1751 return;
1752
David Woodhouse17230472007-12-07 15:13:05 +00001753 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001754 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001755
Holger Schurig8ff12da2007-08-02 11:54:31 -04001756 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001757}
1758
1759/**
1760 * @brief This function executes next command in command
1761 * pending queue. It will put fimware back to PS mode
1762 * if applicable.
1763 *
Holger Schurig69f90322007-11-23 15:43:44 +01001764 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001765 * @return 0 or -1
1766 */
Holger Schurig69f90322007-11-23 15:43:44 +01001767int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001768{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001769 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001770 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001771 unsigned long flags;
1772 int ret = 0;
1773
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001774 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1775 * only caller to us is lbs_thread() and we get even when a
1776 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001777 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001778
David Woodhouseaa21c002007-12-08 20:04:36 +00001779 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001780
David Woodhouseaa21c002007-12-08 20:04:36 +00001781 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001782 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001783 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001784 ret = -1;
1785 goto done;
1786 }
1787
David Woodhouseaa21c002007-12-08 20:04:36 +00001788 if (!list_empty(&priv->cmdpendingq)) {
1789 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001790 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001791 }
1792
David Woodhouseaa21c002007-12-08 20:04:36 +00001793 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001794
1795 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001796 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001797
Dan Williamsddac4522007-12-11 13:49:39 -05001798 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001799 if ((priv->psstate == PS_STATE_SLEEP) ||
1800 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001801 lbs_deb_host(
1802 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001803 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001804 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001805 ret = -1;
1806 goto done;
1807 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001808 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001809 "0x%04x in psstate %d\n",
1810 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001811 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001812 /*
1813 * 1. Non-PS command:
1814 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001815 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816 * 2. PS command but not Exit_PS:
1817 * Ignore it.
1818 * 3. PS command Exit_PS:
1819 * Set needtowakeup to TRUE if current state is SLEEP,
1820 * otherwise send this command down to firmware
1821 * immediately.
1822 */
Dan Williamsddac4522007-12-11 13:49:39 -05001823 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001824 /* Prepare to send Exit PS,
1825 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001826 if ((priv->psstate == PS_STATE_SLEEP)
1827 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001828 ) {
1829 /* w/ new scheme, it will not reach here.
1830 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001831 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001832 } else
Holger Schurig10078322007-11-15 18:05:47 -05001833 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001834
1835 ret = 0;
1836 goto done;
1837 } else {
1838 /*
1839 * PS command. Ignore it if it is not Exit_PS.
1840 * otherwise send it down immediately.
1841 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001842 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001843
Holger Schurig8ff12da2007-08-02 11:54:31 -04001844 lbs_deb_host(
1845 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001846 psm->action);
1847 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001848 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001849 lbs_deb_host(
1850 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001851 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001852 spin_lock_irqsave(&priv->driver_lock, flags);
1853 lbs_complete_command(priv, cmdnode, 0);
1854 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001855
1856 ret = 0;
1857 goto done;
1858 }
1859
David Woodhouseaa21c002007-12-08 20:04:36 +00001860 if ((priv->psstate == PS_STATE_SLEEP) ||
1861 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001862 lbs_deb_host(
1863 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001864 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001865 spin_lock_irqsave(&priv->driver_lock, flags);
1866 lbs_complete_command(priv, cmdnode, 0);
1867 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001868 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001869
1870 ret = 0;
1871 goto done;
1872 }
1873
Holger Schurig8ff12da2007-08-02 11:54:31 -04001874 lbs_deb_host(
1875 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001876 }
1877 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001878 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001879 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001880 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001881 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001882 } else {
1883 /*
1884 * check if in power save mode, if yes, put the device back
1885 * to PS mode
1886 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001887 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1888 (priv->psstate == PS_STATE_FULL_POWER) &&
1889 ((priv->connect_status == LBS_CONNECTED) ||
1890 (priv->mesh_connect_status == LBS_CONNECTED))) {
1891 if (priv->secinfo.WPAenabled ||
1892 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001893 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001894 if (priv->wpa_mcast_key.len ||
1895 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001896 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001897 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1898 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001899 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001900 }
1901 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001902 lbs_deb_host(
1903 "EXEC_NEXT_CMD: cmdpendingq empty, "
1904 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001905 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001906 }
1907 }
1908 }
1909
1910 ret = 0;
1911done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001912 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001913 return ret;
1914}
1915
Holger Schurig69f90322007-11-23 15:43:44 +01001916void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001917{
1918 union iwreq_data iwrq;
1919 u8 buf[50];
1920
Holger Schurig8ff12da2007-08-02 11:54:31 -04001921 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001922
1923 memset(&iwrq, 0, sizeof(union iwreq_data));
1924 memset(buf, 0, sizeof(buf));
1925
1926 snprintf(buf, sizeof(buf) - 1, "%s", str);
1927
1928 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1929
1930 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001931 lbs_deb_wext("event indication string %s\n", (char *)buf);
1932 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1933 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001934
Holger Schurig634b8f42007-05-25 13:05:16 -04001935 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001936
Holger Schurig8ff12da2007-08-02 11:54:31 -04001937 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001938}
1939
Holger Schurig69f90322007-11-23 15:43:44 +01001940static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001941{
1942 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001943 int ret = 0;
1944
Holger Schurig8ff12da2007-08-02 11:54:31 -04001945 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001946
Holger Schurig8ff12da2007-08-02 11:54:31 -04001947 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001948 size);
1949
Holger Schurig8ff12da2007-08-02 11:54:31 -04001950 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001951
Holger Schurig208fdd22007-05-25 12:17:06 -04001952 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001953
David Woodhouseaa21c002007-12-08 20:04:36 +00001954 spin_lock_irqsave(&priv->driver_lock, flags);
1955 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001956 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001957 priv->intcounter, priv->currenttxskb);
1958 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001959
1960 if (ret) {
1961 lbs_pr_alert(
1962 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1963 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001964 spin_lock_irqsave(&priv->driver_lock, flags);
1965 if (!priv->intcounter) {
1966 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001967 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001968 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001969 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001971 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001972
Holger Schurig8ff12da2007-08-02 11:54:31 -04001973 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001974 }
1975
Holger Schurig8ff12da2007-08-02 11:54:31 -04001976 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001977 return ret;
1978}
1979
Holger Schurig69f90322007-11-23 15:43:44 +01001980void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001981{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001982 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983
1984 /*
1985 * PS is currently supported only in Infrastructure mode
1986 * Remove this check if it is to be supported in IBSS mode also
1987 */
1988
Holger Schurig10078322007-11-15 18:05:47 -05001989 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001990 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001991
Holger Schurig8ff12da2007-08-02 11:54:31 -04001992 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001993}
1994
1995/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001996 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001997 *
Holger Schurig69f90322007-11-23 15:43:44 +01001998 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001999 * @param wait_option wait response or not
2000 * @return n/a
2001 */
Holger Schurig69f90322007-11-23 15:43:44 +01002002void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002003{
David Woodhouse981f1872007-05-25 23:36:54 -04002004 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002005
Holger Schurig8ff12da2007-08-02 11:54:31 -04002006 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002007
Holger Schurig10078322007-11-15 18:05:47 -05002008 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002009
Holger Schurig10078322007-11-15 18:05:47 -05002010 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002011 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002012 wait_option, 0, &Localpsmode);
2013
Holger Schurig8ff12da2007-08-02 11:54:31 -04002014 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002015}
2016
2017/**
2018 * @brief This function checks condition and prepares to
2019 * send sleep confirm command to firmware if ok.
2020 *
Holger Schurig69f90322007-11-23 15:43:44 +01002021 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002022 * @param psmode Power Saving mode
2023 * @return n/a
2024 */
Holger Schurig69f90322007-11-23 15:43:44 +01002025void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002026{
2027 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002028 u8 allowed = 1;
2029
Holger Schurig8ff12da2007-08-02 11:54:31 -04002030 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002031
Holger Schurig634b8f42007-05-25 13:05:16 -04002032 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002033 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002034 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002035 }
2036
David Woodhouseaa21c002007-12-08 20:04:36 +00002037 spin_lock_irqsave(&priv->driver_lock, flags);
2038 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002039 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002040 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002041 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002042 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002043 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002044 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002045 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002046 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002047
2048 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002049 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002050 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002051 sizeof(struct PS_CMD_ConfirmSleep));
2052 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002053 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 }
2055
Holger Schurig8ff12da2007-08-02 11:54:31 -04002056 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002057}
Holger Schurig675787e2007-12-05 17:58:11 +01002058
2059
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002060static struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
2061 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
2062 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2063 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002064{
Holger Schurig675787e2007-12-05 17:58:11 +01002065 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002066
2067 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002068
David Woodhouseaa21c002007-12-08 20:04:36 +00002069 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002070 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002071 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002072 goto done;
2073 }
2074
2075 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002076 if (cmdnode == NULL) {
2077 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2078
2079 /* Wake up main thread to execute next command */
2080 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002081 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002082 goto done;
2083 }
2084
David Woodhouse448a51a2007-12-08 00:59:54 +00002085 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002086 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002087
Dan Williams7ad994d2007-12-11 12:33:30 -05002088 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002089 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002090
Holger Schurig675787e2007-12-05 17:58:11 +01002091 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002092 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002093 cmdnode->cmdbuf->command = cpu_to_le16(command);
2094 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2095 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2096 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002097
2098 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2099
Holger Schurig675787e2007-12-05 17:58:11 +01002100 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002101 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002102 wake_up_interruptible(&priv->waitq);
2103
David Woodhouse3399ea52007-12-15 03:09:33 -05002104 done:
2105 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2106 return cmdnode;
2107}
2108
Holger Schurig8db4a2b2008-03-19 10:11:00 +01002109void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2110 struct cmd_header *in_cmd, int in_cmd_size)
2111{
2112 lbs_deb_enter(LBS_DEB_CMD);
2113 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2114 lbs_cmd_async_callback, 0);
2115 lbs_deb_leave(LBS_DEB_CMD);
2116}
2117
David Woodhouse3399ea52007-12-15 03:09:33 -05002118int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2119 struct cmd_header *in_cmd, int in_cmd_size,
2120 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2121 unsigned long callback_arg)
2122{
2123 struct cmd_ctrl_node *cmdnode;
2124 unsigned long flags;
2125 int ret = 0;
2126
2127 lbs_deb_enter(LBS_DEB_HOST);
2128
2129 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2130 callback, callback_arg);
2131 if (IS_ERR(cmdnode)) {
2132 ret = PTR_ERR(cmdnode);
2133 goto done;
2134 }
2135
Holger Schurig675787e2007-12-05 17:58:11 +01002136 might_sleep();
2137 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2138
David Woodhouseaa21c002007-12-08 20:04:36 +00002139 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002140 ret = cmdnode->result;
2141 if (ret)
2142 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2143 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002144
David Woodhousead12d0f2007-12-15 02:06:16 -05002145 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002146 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002147
2148done:
2149 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2150 return ret;
2151}
Dan Williams14e865b2007-12-10 15:11:23 -05002152EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002153
2154