blob: 2d7b646557c8116654216600a9740c1793919426 [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
16static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode);
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050017static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
18static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Holger Schurig0d61d042007-12-05 17:58:06 +010019 struct cmd_ctrl_node *ptempnode,
20 u16 wait_option, void *pdata_buf);
21
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023/**
Dan Williams852e1f22007-12-10 15:24:47 -050024 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025 *
26 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050027 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028 */
Dan Williams852e1f22007-12-10 15:24:47 -050029static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020030{
Dan Williams852e1f22007-12-10 15:24:47 -050031 switch (cmd) {
32 case CMD_802_11_RSSI:
33 return 1;
34 default:
35 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020037 return 0;
38}
39
Dan Williams6e66f032007-12-11 12:42:16 -050040/**
41 * @brief Updates the hardware details like MAC address and regulatory region
42 *
43 * @param priv A pointer to struct lbs_private structure
44 *
45 * @return 0 on success, error on failure
46 */
47int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020048{
Dan Williams6e66f032007-12-11 12:42:16 -050049 struct cmd_ds_get_hw_spec cmd;
50 int ret = -1;
51 u32 i;
52 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020053
Holger Schurig9012b282007-05-25 11:27:16 -040054 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055
Dan Williams6e66f032007-12-11 12:42:16 -050056 memset(&cmd, 0, sizeof(cmd));
57 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
58 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
59 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, cmd);
60 if (ret)
61 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062
Dan Williams6e66f032007-12-11 12:42:16 -050063 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
64 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
65
66 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
67 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
68 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
69 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
70 print_mac(mac, cmd.permanentaddr));
71 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
72 cmd.hwifversion, cmd.version);
73
74 /* Clamp region code to 8-bit since FW spec indicates that it should
75 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
76 * returns non-zero high 8 bits here.
77 */
78 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
79
80 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
81 /* use the region code to search for the index */
82 if (priv->regioncode == lbs_region_code_to_index[i])
83 break;
84 }
85
86 /* if it's unidentified region code, use the default (USA) */
87 if (i >= MRVDRV_MAX_REGION_CODE) {
88 priv->regioncode = 0x10;
89 lbs_pr_info("unidentified region code; using the default (USA)\n");
90 }
91
92 if (priv->current_addr[0] == 0xff)
93 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
94
95 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
96 if (priv->mesh_dev)
97 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
98
99 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
100 ret = -1;
101 goto out;
102 }
103
104 if (lbs_set_universaltable(priv, 0)) {
105 ret = -1;
106 goto out;
107 }
108
109out:
Holger Schurig9012b282007-05-25 11:27:16 -0400110 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500111 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112}
113
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500114int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
115 uint8_t gpio, uint8_t gap)
116{
117 struct cmd_ds_host_sleep cmd_config;
118 int ret;
119
120 cmd_config.criteria = cpu_to_le32(criteria);
121 cmd_config.gpio = gpio;
122 cmd_config.gap = gap;
123
124 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, cmd_config);
125 if (ret) {
126 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
127 return ret;
128 }
129 return ret;
130}
131EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
132
Holger Schurig69f90322007-11-23 15:43:44 +0100133static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200134 struct cmd_ds_command *cmd,
135 u16 cmd_action)
136{
137 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200138
Holger Schurig9012b282007-05-25 11:27:16 -0400139 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140
Dan Williams0aef64d2007-08-02 11:31:18 -0400141 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400142 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
143 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144 psm->action = cpu_to_le16(cmd_action);
145 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400146 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400147 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400148 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200149
Holger Schurig252cf0d2007-08-02 13:09:34 -0400150 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400151 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200152 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400153 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 break;
155
Dan Williams0aef64d2007-08-02 11:31:18 -0400156 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400157 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200158 break;
159
Dan Williams0aef64d2007-08-02 11:31:18 -0400160 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400161 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162 break;
163
164 default:
165 break;
166 }
167
Holger Schurig9012b282007-05-25 11:27:16 -0400168 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200169 return 0;
170}
171
Holger Schurig69f90322007-11-23 15:43:44 +0100172static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200173 struct cmd_ds_command *cmd,
174 u16 cmd_action, void *pdata_buf)
175{
176 u16 *timeout = pdata_buf;
177
Holger Schurig8ff12da2007-08-02 11:54:31 -0400178 lbs_deb_enter(LBS_DEB_CMD);
179
Dan Williams0aef64d2007-08-02 11:31:18 -0400180 cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181 cmd->size =
182 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
183 + S_DS_GEN);
184
185 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
186
187 if (cmd_action)
David Woodhouse981f1872007-05-25 23:36:54 -0400188 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200189 else
190 cmd->params.inactivity_timeout.timeout = 0;
191
Holger Schurig8ff12da2007-08-02 11:54:31 -0400192 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193 return 0;
194}
195
Holger Schurig69f90322007-11-23 15:43:44 +0100196static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200197 struct cmd_ds_command *cmd,
198 u16 cmd_action)
199{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200200 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
201
Holger Schurig9012b282007-05-25 11:27:16 -0400202 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200203
David Woodhouse981f1872007-05-25 23:36:54 -0400204 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
205 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400206 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200207
Dan Williams0aef64d2007-08-02 11:31:18 -0400208 if (cmd_action == CMD_ACT_GET) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000209 memset(&priv->sp, 0, sizeof(struct sleep_params));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200210 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
211 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400212 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213 sp->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000214 sp->error = cpu_to_le16(priv->sp.sp_error);
215 sp->offset = cpu_to_le16(priv->sp.sp_offset);
216 sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime);
217 sp->calcontrol = (u8) priv->sp.sp_calcontrol;
218 sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk;
219 sp->reserved = cpu_to_le16(priv->sp.sp_reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200220 }
221
Holger Schurig9012b282007-05-25 11:27:16 -0400222 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200223 return 0;
224}
225
Holger Schurig69f90322007-11-23 15:43:44 +0100226static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200227 struct cmd_ds_command *cmd,
228 u32 cmd_act,
229 void * pdata_buf)
230{
231 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200232 int ret = 0;
233 struct assoc_request * assoc_req = pdata_buf;
234
Holger Schurig9012b282007-05-25 11:27:16 -0400235 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236
Dan Williams0aef64d2007-08-02 11:31:18 -0400237 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400238 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239
Dan Williams0aef64d2007-08-02 11:31:18 -0400240 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241 int i;
242
243 if (!assoc_req) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500244 lbs_deb_cmd("Invalid association request!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245 ret = -1;
246 goto done;
247 }
248
Dan Williams0aef64d2007-08-02 11:31:18 -0400249 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250
251 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400252 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400253 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200254
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200255 /* Copy key types and material to host command structure */
256 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400257 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200258
259 switch (pkey->len) {
260 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200261 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200262 memmove(&wep->keymaterial[i], pkey->key,
263 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400264 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200265 break;
266 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200267 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200268 memmove(&wep->keymaterial[i], pkey->key,
269 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400270 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200271 break;
272 case 0:
273 break;
274 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400275 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200276 i, pkey->len);
277 ret = -1;
278 goto done;
279 break;
280 }
281 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400282 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200283 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400284 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200285
286 /* default tx key index */
David Woodhouseaa21c002007-12-08 20:04:36 +0000287 wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400288 (u32)CMD_WEP_KEY_INDEX_MASK));
David Woodhouseaa21c002007-12-08 20:04:36 +0000289 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200290 }
291
292 ret = 0;
293
294done:
Holger Schurig9012b282007-05-25 11:27:16 -0400295 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296 return ret;
297}
298
Holger Schurig69f90322007-11-23 15:43:44 +0100299static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400301 u16 cmd_action,
302 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303{
304 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400305 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400306
307 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308
Dan Williams0aef64d2007-08-02 11:31:18 -0400309 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400310 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200311 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400312
Dan Williams0aef64d2007-08-02 11:31:18 -0400313 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400314 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400315 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400316 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400317 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400318 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200319 }
320
Dan Williams90a42212007-05-25 23:01:24 -0400321 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200322 return 0;
323}
324
325
Holger Schurig3a188642007-11-26 10:07:14 +0100326static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
327{
328 ssize_t pos = 0;
329 struct mrvlietypesheader *tlv_h;
330 while (pos < size) {
331 u16 length;
332 tlv_h = (struct mrvlietypesheader *) tlv;
333 if (tlv_h->len == 0)
334 return pos;
335 length = le16_to_cpu(tlv_h->len) +
336 sizeof(struct mrvlietypesheader);
337 pos += length;
338 tlv += length;
339 }
340 return pos;
341}
342
343
344static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
345 struct cmd_ds_command *cmd, u16 cmd_action,
346 void *pdata_buf)
347{
348 struct cmd_ds_802_11_subscribe_event *events =
349 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
350
351 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
352 * for various Marvell TLVs */
353
354 lbs_deb_enter(LBS_DEB_CMD);
355
356 cmd->size = cpu_to_le16(sizeof(*events)
357 - sizeof(events->tlv)
358 + S_DS_GEN);
359 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
360 if (cmd_action == CMD_ACT_GET) {
361 cmd->params.subscribe_event.events = 0;
362 } else {
363 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
364 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
365 cmd->params.subscribe_event.events = events->events;
366 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
367 }
368
369 lbs_deb_leave(LBS_DEB_CMD);
370}
371
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200372static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400373 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400375 lbs_deb_enter(LBS_DEB_CMD);
376
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400378 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200380 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
381 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400382 }
383 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
385 }
386
387 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400388 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 pkeyparamset->keylen = cpu_to_le16(pkey->len);
390 memcpy(pkeyparamset->key, pkey->key, pkey->len);
391 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
392 + sizeof(pkeyparamset->keyinfo)
393 + sizeof(pkeyparamset->keylen)
394 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400395 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200396}
397
Holger Schurig69f90322007-11-23 15:43:44 +0100398static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200399 struct cmd_ds_command *cmd,
400 u16 cmd_action,
401 u32 cmd_oid, void *pdata_buf)
402{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200403 struct cmd_ds_802_11_key_material *pkeymaterial =
404 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400405 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200406 int ret = 0;
407 int index = 0;
408
Holger Schurig9012b282007-05-25 11:27:16 -0400409 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200410
Dan Williams0aef64d2007-08-02 11:31:18 -0400411 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200412 pkeymaterial->action = cpu_to_le16(cmd_action);
413
Dan Williams0aef64d2007-08-02 11:31:18 -0400414 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400415 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200416 ret = 0;
417 goto done;
418 }
419
420 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
421
Dan Williams90a42212007-05-25 23:01:24 -0400422 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200423 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400424 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425 index++;
426 }
427
Dan Williams90a42212007-05-25 23:01:24 -0400428 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200429 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400430 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200431 index++;
432 }
433
434 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400435 + sizeof (pkeymaterial->action)
436 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437
438 ret = 0;
439
440done:
Holger Schurig9012b282007-05-25 11:27:16 -0400441 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442 return ret;
443}
444
Holger Schurig69f90322007-11-23 15:43:44 +0100445static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446 struct cmd_ds_command *cmd, int cmd_action)
447{
448 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
449
Holger Schurig8ff12da2007-08-02 11:54:31 -0400450 lbs_deb_enter(LBS_DEB_CMD);
451
Dan Williams0aef64d2007-08-02 11:31:18 -0400452 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200453 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
454 reset->action = cpu_to_le16(cmd_action);
455
Holger Schurig8ff12da2007-08-02 11:54:31 -0400456 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200457 return 0;
458}
459
Holger Schurig69f90322007-11-23 15:43:44 +0100460static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200461 struct cmd_ds_command *cmd)
462{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400463 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400464 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200465 cmd->size =
466 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
467
Holger Schurig8ff12da2007-08-02 11:54:31 -0400468 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200469 return 0;
470}
471
Holger Schurig69f90322007-11-23 15:43:44 +0100472static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200473 struct cmd_ds_command *cmd)
474{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400475 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400476 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400478 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479
Holger Schurig8ff12da2007-08-02 11:54:31 -0400480 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200481 return 0;
482}
483
Holger Schurig69f90322007-11-23 15:43:44 +0100484static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200485 struct cmd_ds_command *cmd,
486 int cmd_action,
487 int cmd_oid, void *pdata_buf)
488{
489 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 u8 ucTemp;
491
Holger Schurig9012b282007-05-25 11:27:16 -0400492 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493
Holger Schurig9012b282007-05-25 11:27:16 -0400494 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495
Dan Williams0aef64d2007-08-02 11:31:18 -0400496 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400497 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498
499 switch (cmd_oid) {
500 case OID_802_11_INFRASTRUCTURE_MODE:
501 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400502 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400503 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
504 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000505 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400506 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400508 } else {
509 /* Infra and Auto modes */
510 ucTemp = SNMP_MIB_VALUE_INFRA;
511 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512
513 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
514
515 break;
516 }
517
518 case OID_802_11D_ENABLE:
519 {
520 u32 ulTemp;
521
Dan Williams0aef64d2007-08-02 11:31:18 -0400522 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200523
Dan Williams0aef64d2007-08-02 11:31:18 -0400524 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000525 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
526 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200527 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400528 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529 cpu_to_le16((u16) ulTemp);
530 }
531 break;
532 }
533
534 case OID_802_11_FRAGMENTATION_THRESHOLD:
535 {
536 u32 ulTemp;
537
Dan Williams0aef64d2007-08-02 11:31:18 -0400538 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200539
Dan Williams0aef64d2007-08-02 11:31:18 -0400540 if (cmd_action == CMD_ACT_GET) {
541 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
542 } else if (cmd_action == CMD_ACT_SET) {
543 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400544 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200545 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400546 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200547 cpu_to_le16((u16) ulTemp);
548
549 }
550
551 break;
552 }
553
554 case OID_802_11_RTS_THRESHOLD:
555 {
556
557 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000558 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200559
Dan Williams0aef64d2007-08-02 11:31:18 -0400560 if (cmd_action == CMD_ACT_GET) {
561 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
562 } else if (cmd_action == CMD_ACT_SET) {
563 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400564 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
565 ulTemp = *((u32 *)pdata_buf);
566 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200567 cpu_to_le16((u16) ulTemp);
568
569 }
570 break;
571 }
572 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400573 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200574
Dan Williams0aef64d2007-08-02 11:31:18 -0400575 if (cmd_action == CMD_ACT_GET) {
576 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
577 } else if (cmd_action == CMD_ACT_SET) {
578 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400580 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000581 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200582 }
583
584 break;
585 default:
586 break;
587 }
588
Holger Schurig9012b282007-05-25 11:27:16 -0400589 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400591 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
592 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200593
Holger Schurig9012b282007-05-25 11:27:16 -0400594 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400595 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400596 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
597 le16_to_cpu(pSNMPMIB->bufsize),
598 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599
Holger Schurig9012b282007-05-25 11:27:16 -0400600 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200601 return 0;
602}
603
Holger Schurig69f90322007-11-23 15:43:44 +0100604static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605 struct cmd_ds_command *cmd,
606 int cmd_action)
607{
David Woodhouse981f1872007-05-25 23:36:54 -0400608 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609
Holger Schurig9012b282007-05-25 11:27:16 -0400610 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200611
612 cmd->size =
613 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
614 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400615 cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200616
617 pradiocontrol->action = cpu_to_le16(cmd_action);
618
David Woodhouseaa21c002007-12-08 20:04:36 +0000619 switch (priv->preamble) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400620 case CMD_TYPE_SHORT_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200621 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
622 break;
623
Dan Williams0aef64d2007-08-02 11:31:18 -0400624 case CMD_TYPE_LONG_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200625 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
626 break;
627
Dan Williams0aef64d2007-08-02 11:31:18 -0400628 case CMD_TYPE_AUTO_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629 default:
630 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
631 break;
632 }
633
David Woodhouseaa21c002007-12-08 20:04:36 +0000634 if (priv->radioon)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200635 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
636 else
637 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
638
Holger Schurig9012b282007-05-25 11:27:16 -0400639 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200640 return 0;
641}
642
Holger Schurig69f90322007-11-23 15:43:44 +0100643static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644 struct cmd_ds_command *cmd,
645 u16 cmd_action, void *pdata_buf)
646{
647
648 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
649
Holger Schurig9012b282007-05-25 11:27:16 -0400650 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200651
652 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400653 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400654 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400655 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656
David Woodhouse981f1872007-05-25 23:36:54 -0400657 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
658 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
659 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660
661 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400662 case CMD_ACT_TX_POWER_OPT_GET:
663 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200664 prtp->currentlevel = 0;
665 break;
666
Dan Williams0aef64d2007-08-02 11:31:18 -0400667 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
668 prtp->action = cpu_to_le16(CMD_ACT_SET);
669 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200670 break;
671
Dan Williams0aef64d2007-08-02 11:31:18 -0400672 case CMD_ACT_TX_POWER_OPT_SET_MID:
673 prtp->action = cpu_to_le16(CMD_ACT_SET);
674 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200675 break;
676
Dan Williams0aef64d2007-08-02 11:31:18 -0400677 case CMD_ACT_TX_POWER_OPT_SET_LOW:
678 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200679 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
680 break;
681 }
Holger Schurig9012b282007-05-25 11:27:16 -0400682
683 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200684 return 0;
685}
686
Holger Schurig69f90322007-11-23 15:43:44 +0100687static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400688 struct cmd_ds_command *cmd,
689 u16 cmd_action, void *pdata_buf)
690{
691 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
692
693 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
694 cmd->size =
695 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
696 S_DS_GEN);
697
698 monitor->action = cpu_to_le16(cmd_action);
699 if (cmd_action == CMD_ACT_SET) {
700 monitor->mode =
701 cpu_to_le16((u16) (*(u32 *) pdata_buf));
702 }
703
704 return 0;
705}
706
Holger Schurig69f90322007-11-23 15:43:44 +0100707static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708 struct cmd_ds_command *cmd,
709 u16 cmd_action)
710{
711 struct cmd_ds_802_11_rate_adapt_rateset
712 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200713
Holger Schurig8ff12da2007-08-02 11:54:31 -0400714 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200715 cmd->size =
716 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
717 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400718 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719
David Woodhouse981f1872007-05-25 23:36:54 -0400720 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000721 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
722 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200723
Holger Schurig9012b282007-05-25 11:27:16 -0400724 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200725 return 0;
726}
727
Dan Williams8e3c91b2007-12-11 15:50:59 -0500728/**
729 * @brief Get the current data rate
730 *
731 * @param priv A pointer to struct lbs_private structure
732 *
733 * @return The data rate on success, error on failure
734 */
735int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200736{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500737 struct cmd_ds_802_11_data_rate cmd;
738 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739
Holger Schurig9012b282007-05-25 11:27:16 -0400740 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741
Dan Williams8e3c91b2007-12-11 15:50:59 -0500742 memset(&cmd, 0, sizeof(cmd));
743 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
744 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745
Dan Williams8e3c91b2007-12-11 15:50:59 -0500746 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, cmd);
747 if (ret)
748 goto out;
749
750 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
751
752 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
753 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
754
755out:
756 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
757 return ret;
758}
759
760/**
761 * @brief Set the data rate
762 *
763 * @param priv A pointer to struct lbs_private structure
764 * @param rate The desired data rate, or 0 to clear a locked rate
765 *
766 * @return 0 on success, error on failure
767 */
768int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
769{
770 struct cmd_ds_802_11_data_rate cmd;
771 int ret = 0;
772
773 lbs_deb_enter(LBS_DEB_CMD);
774
775 memset(&cmd, 0, sizeof(cmd));
776 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
777
778 if (rate > 0) {
779 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
780 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
781 if (cmd.rates[0] == 0) {
782 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
783 " 0x%02X\n", rate);
784 ret = 0;
785 goto out;
786 }
787 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
788 } else {
789 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400790 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200791 }
792
Dan Williams8e3c91b2007-12-11 15:50:59 -0500793 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, cmd);
794 if (ret)
795 goto out;
796
797 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
798
799 /* FIXME: get actual rates FW can do if this command actually returns
800 * all data rates supported.
801 */
802 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
803 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
804
805out:
806 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
807 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808}
809
Holger Schurig69f90322007-11-23 15:43:44 +0100810static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811 struct cmd_ds_command *cmd,
812 u16 cmd_action)
813{
814 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200815
Holger Schurig8ff12da2007-08-02 11:54:31 -0400816 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400817 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400819 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200820
Holger Schurig8ff12da2007-08-02 11:54:31 -0400821 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200822 pMCastAdr->action = cpu_to_le16(cmd_action);
823 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000824 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
825 memcpy(pMCastAdr->maclist, priv->multicastlist,
826 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200827
Holger Schurig8ff12da2007-08-02 11:54:31 -0400828 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829 return 0;
830}
831
Dan Williams2dd4b262007-12-11 16:54:15 -0500832/**
833 * @brief Get the radio channel
834 *
835 * @param priv A pointer to struct lbs_private structure
836 *
837 * @return The channel on success, error on failure
838 */
839int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200840{
Dan Williams2dd4b262007-12-11 16:54:15 -0500841 struct cmd_ds_802_11_rf_channel cmd;
842 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200843
Holger Schurig8ff12da2007-08-02 11:54:31 -0400844 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200845
Dan Williams2dd4b262007-12-11 16:54:15 -0500846 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
847 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200848
Dan Williams2dd4b262007-12-11 16:54:15 -0500849 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, cmd);
850 if (ret)
851 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200852
Dan Williamscb182a62007-12-11 17:35:51 -0500853 ret = le16_to_cpu(cmd.channel);
854 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500855
856out:
857 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
858 return ret;
859}
860
861/**
862 * @brief Set the radio channel
863 *
864 * @param priv A pointer to struct lbs_private structure
865 * @param channel The desired channel, or 0 to clear a locked channel
866 *
867 * @return 0 on success, error on failure
868 */
869int lbs_set_channel(struct lbs_private *priv, u8 channel)
870{
871 struct cmd_ds_802_11_rf_channel cmd;
872 u8 old_channel = priv->curbssparams.channel;
873 int ret = 0;
874
875 lbs_deb_enter(LBS_DEB_CMD);
876
877 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
878 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
879 cmd.channel = cpu_to_le16(channel);
880
881 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, cmd);
882 if (ret)
883 goto out;
884
Dan Williamscb182a62007-12-11 17:35:51 -0500885 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
886 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
887 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500888
889out:
890 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
891 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200892}
893
Holger Schurig69f90322007-11-23 15:43:44 +0100894static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200895 struct cmd_ds_command *cmd)
896{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200897
Holger Schurig8ff12da2007-08-02 11:54:31 -0400898 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400899 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400900 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400901 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200902
903 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000904 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
905 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
906 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
907 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
908 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
909 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200910
Holger Schurig8ff12da2007-08-02 11:54:31 -0400911 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912 return 0;
913}
914
Holger Schurig69f90322007-11-23 15:43:44 +0100915static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200916 struct cmd_ds_command *cmdptr,
917 u8 cmd_action, void *pdata_buf)
918{
Holger Schurig10078322007-11-15 18:05:47 -0500919 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200920
Holger Schurig9012b282007-05-25 11:27:16 -0400921 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200922
Holger Schurig10078322007-11-15 18:05:47 -0500923 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200924
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000925 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400926 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200927 {
928 struct cmd_ds_mac_reg_access *macreg;
929
930 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400931 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
932 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200933 macreg =
934 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
935 macreg;
936
937 macreg->action = cpu_to_le16(cmd_action);
938 macreg->offset = cpu_to_le16((u16) offval->offset);
939 macreg->value = cpu_to_le32(offval->value);
940
941 break;
942 }
943
Dan Williams0aef64d2007-08-02 11:31:18 -0400944 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200945 {
946 struct cmd_ds_bbp_reg_access *bbpreg;
947
948 cmdptr->size =
949 cpu_to_le16(sizeof
950 (struct cmd_ds_bbp_reg_access)
951 + S_DS_GEN);
952 bbpreg =
953 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
954 bbpreg;
955
956 bbpreg->action = cpu_to_le16(cmd_action);
957 bbpreg->offset = cpu_to_le16((u16) offval->offset);
958 bbpreg->value = (u8) offval->value;
959
960 break;
961 }
962
Dan Williams0aef64d2007-08-02 11:31:18 -0400963 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200964 {
965 struct cmd_ds_rf_reg_access *rfreg;
966
967 cmdptr->size =
968 cpu_to_le16(sizeof
969 (struct cmd_ds_rf_reg_access) +
970 S_DS_GEN);
971 rfreg =
972 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
973 rfreg;
974
975 rfreg->action = cpu_to_le16(cmd_action);
976 rfreg->offset = cpu_to_le16((u16) offval->offset);
977 rfreg->value = (u8) offval->value;
978
979 break;
980 }
981
982 default:
983 break;
984 }
985
Holger Schurig9012b282007-05-25 11:27:16 -0400986 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200987 return 0;
988}
989
Holger Schurig69f90322007-11-23 15:43:44 +0100990static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200991 struct cmd_ds_command *cmd,
992 u16 cmd_action)
993{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200994
Holger Schurig8ff12da2007-08-02 11:54:31 -0400995 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400996 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400997 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998 S_DS_GEN);
999 cmd->result = 0;
1000
1001 cmd->params.macadd.action = cpu_to_le16(cmd_action);
1002
Dan Williams0aef64d2007-08-02 11:31:18 -04001003 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001004 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +00001005 priv->current_addr, ETH_ALEN);
1006 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001007 }
1008
Holger Schurig8ff12da2007-08-02 11:54:31 -04001009 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010 return 0;
1011}
1012
Holger Schurig69f90322007-11-23 15:43:44 +01001013static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001014 struct cmd_ds_command *cmd,
1015 int cmd_action, void *pdata_buf)
1016{
Holger Schurig10078322007-11-15 18:05:47 -05001017 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018
Holger Schurig9012b282007-05-25 11:27:16 -04001019 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020
Dan Williams0aef64d2007-08-02 11:31:18 -04001021 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001022 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1023 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001024 cmd->result = 0;
1025
1026 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1027 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1028 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1029 cmd->params.rdeeprom.value = 0;
1030
Holger Schurig8ff12da2007-08-02 11:54:31 -04001031 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001032 return 0;
1033}
1034
Holger Schurig69f90322007-11-23 15:43:44 +01001035static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001036 struct cmd_ds_command *cmd,
1037 u16 cmd_action, void *pdata_buf)
1038{
1039 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001040 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001041
Dan Williams0aef64d2007-08-02 11:31:18 -04001042 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001043 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 cmd->result = 0;
1045 bt_access->action = cpu_to_le16(cmd_action);
1046
1047 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001048 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001049 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001050 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001052 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001053 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001054 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001056 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001057 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1058 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001059 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001061 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001062 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1063 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001064 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001065 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066 default:
1067 break;
1068 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001069 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070 return 0;
1071}
1072
Holger Schurig69f90322007-11-23 15:43:44 +01001073static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001074 struct cmd_ds_command *cmd,
1075 u16 cmd_action, void *pdata_buf)
1076{
1077 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001078 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001079
Dan Williams0aef64d2007-08-02 11:31:18 -04001080 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001081 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082 cmd->result = 0;
1083
1084 if (pdata_buf)
1085 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1086 else
1087 memset(fwt_access, 0, sizeof(*fwt_access));
1088
1089 fwt_access->action = cpu_to_le16(cmd_action);
1090
Holger Schurig8ff12da2007-08-02 11:54:31 -04001091 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001092 return 0;
1093}
1094
David Woodhouse301eacb2007-12-11 15:23:59 -05001095int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1096 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001097{
David Woodhouse301eacb2007-12-11 15:23:59 -05001098 int ret;
1099
Holger Schurig8ff12da2007-08-02 11:54:31 -04001100 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001101
David Woodhouse301eacb2007-12-11 15:23:59 -05001102 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
1103 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
1104 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001105
David Woodhouse301eacb2007-12-11 15:23:59 -05001106 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107
David Woodhouse301eacb2007-12-11 15:23:59 -05001108 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, (*cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109
Holger Schurig8ff12da2007-08-02 11:54:31 -04001110 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001111 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001112}
David Woodhouse301eacb2007-12-11 15:23:59 -05001113EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114
David Woodhouse23a397a2007-12-11 18:56:42 -05001115int lbs_mesh_config(struct lbs_private *priv, int enable)
1116{
1117 struct cmd_ds_mesh_config cmd;
1118
1119 memset(&cmd, 0, sizeof(cmd));
1120 cmd.action = cpu_to_le16(enable);
1121 cmd.channel = cpu_to_le16(priv->curbssparams.channel);
1122 cmd.type = cpu_to_le16(0x100 + 37);
1123
1124 if (enable) {
1125 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1126 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1127 }
David Woodhouse06113c12007-12-11 22:52:03 -05001128 lbs_deb_cmd("mesh config channel %d SSID %s\n",
1129 priv->curbssparams.channel,
1130 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse23a397a2007-12-11 18:56:42 -05001131 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, cmd);
1132}
1133
Brajesh Dave96287ac2007-11-20 17:44:28 -05001134static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1135 struct cmd_ds_command *cmd,
1136 u16 cmd_action)
1137{
1138 struct cmd_ds_802_11_beacon_control
1139 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001140
1141 lbs_deb_enter(LBS_DEB_CMD);
1142 cmd->size =
1143 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1144 + S_DS_GEN);
1145 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1146
1147 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001148 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1149 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001150
1151 lbs_deb_leave(LBS_DEB_CMD);
1152 return 0;
1153}
1154
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001155/*
Holger Schurig10078322007-11-15 18:05:47 -05001156 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001157 * the command timer, because it does not account for queued commands.
1158 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001159void lbs_queue_cmd(struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +01001160 struct cmd_ctrl_node *cmdnode,
1161 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001162{
1163 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164
Holger Schurig8ff12da2007-08-02 11:54:31 -04001165 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001166
Dan Williamsddac4522007-12-11 13:49:39 -05001167 if (!cmdnode || !cmdnode->cmdbuf) {
1168 lbs_deb_host("QUEUE_CMD: cmdnode or cmdbuf is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001169 goto done;
1170 }
1171
1172 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001173 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
1174 struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf;
1175
Dan Williams0aef64d2007-08-02 11:31:18 -04001176 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001177 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178 addtail = 0;
1179 }
1180 }
1181
David Woodhouseaa21c002007-12-08 20:04:36 +00001182 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001183
David Woodhouseac472462007-12-08 00:35:00 +00001184 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001185 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001186 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001187 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001188
David Woodhouseaa21c002007-12-08 20:04:36 +00001189 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001190
Holger Schurig8ff12da2007-08-02 11:54:31 -04001191 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001192 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001193
1194done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001195 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001196}
1197
1198/*
1199 * TODO: Fix the issue when DownloadcommandToStation is being called the
Holger Schurig8ff12da2007-08-02 11:54:31 -04001200 * second time when the command times out. All the cmdptr->xxx are in little
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001201 * endian and therefore all the comparissions will fail.
1202 * For now - we are not performing the endian conversion the second time - but
1203 * for PS and DEEP_SLEEP we need to worry
1204 */
Holger Schurig69f90322007-11-23 15:43:44 +01001205static int DownloadcommandToStation(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206 struct cmd_ctrl_node *cmdnode)
1207{
1208 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001209 struct cmd_header *cmd;
Eugene Teob031ac12007-08-02 13:18:07 -04001210 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001211 u16 cmdsize;
1212 u16 command;
1213
Holger Schurig8ff12da2007-08-02 11:54:31 -04001214 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215
David Woodhouseaa21c002007-12-08 20:04:36 +00001216 if (!priv || !cmdnode) {
1217 lbs_deb_host("DNLD_CMD: priv or cmdmode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218 goto done;
1219 }
1220
Dan Williamsddac4522007-12-11 13:49:39 -05001221 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001222
David Woodhouseaa21c002007-12-08 20:04:36 +00001223 spin_lock_irqsave(&priv->driver_lock, flags);
Dan Williamsddac4522007-12-11 13:49:39 -05001224 if (!cmd || !cmd->size) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001225 lbs_deb_host("DNLD_CMD: cmdptr is NULL or zero\n");
Holger Schurig10078322007-11-15 18:05:47 -05001226 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001227 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001228 goto done;
1229 }
1230
David Woodhouseaa21c002007-12-08 20:04:36 +00001231 priv->cur_cmd = cmdnode;
1232 priv->cur_cmd_retcode = 0;
1233 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001234
Dan Williamsddac4522007-12-11 13:49:39 -05001235 cmdsize = le16_to_cpu(cmd->size);
1236 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237
David Woodhousee1258172007-12-11 23:42:49 -05001238 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1239 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001240 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001241
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242 cmdnode->cmdwaitqwoken = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243
Dan Williamsddac4522007-12-11 13:49:39 -05001244 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001245
1246 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001247 lbs_deb_host("DNLD_CMD: hw_host_to_card failed\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001248 spin_lock_irqsave(&priv->driver_lock, flags);
1249 priv->cur_cmd_retcode = ret;
1250 __lbs_cleanup_and_insert_cmd(priv, priv->cur_cmd);
1251 priv->cur_cmd = NULL;
1252 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001253 goto done;
1254 }
1255
Holger Schurig8ff12da2007-08-02 11:54:31 -04001256 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001257
1258 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001259 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1260 || command == CMD_802_11_ASSOCIATE)
David Woodhouseaa21c002007-12-08 20:04:36 +00001261 mod_timer(&priv->command_timer, jiffies + (10*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001262 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001263 mod_timer(&priv->command_timer, jiffies + (5*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264
1265 ret = 0;
1266
Holger Schurig9012b282007-05-25 11:27:16 -04001267done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001268 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001269 return ret;
1270}
1271
Holger Schurig69f90322007-11-23 15:43:44 +01001272static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001273 struct cmd_ds_command *cmd)
1274{
1275 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1276
Holger Schurig9012b282007-05-25 11:27:16 -04001277 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001278
Dan Williams0aef64d2007-08-02 11:31:18 -04001279 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001280 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001281 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282
Holger Schurig8ff12da2007-08-02 11:54:31 -04001283 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001284 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285
Holger Schurig9012b282007-05-25 11:27:16 -04001286 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287 return 0;
1288}
1289
1290/**
1291 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001292 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293 */
Holger Schurig69f90322007-11-23 15:43:44 +01001294void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1295 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001296{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297
1298 if (!ptempcmd)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001299 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001300
1301 cleanup_cmdnode(ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001302 list_add_tail(&ptempcmd->list, &priv->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303}
1304
Holger Schurig69f90322007-11-23 15:43:44 +01001305static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1306 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001307{
1308 unsigned long flags;
1309
David Woodhouseaa21c002007-12-08 20:04:36 +00001310 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001311 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001312 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001313}
1314
Holger Schurig69f90322007-11-23 15:43:44 +01001315int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001316{
1317 int ret = 0;
1318
Holger Schurig9012b282007-05-25 11:27:16 -04001319 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320
Holger Schurig10078322007-11-15 18:05:47 -05001321 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001322 CMD_802_11_RADIO_CONTROL,
1323 CMD_ACT_SET,
1324 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001325
Holger Schurig8ff12da2007-08-02 11:54:31 -04001326 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001327 priv->radioon, priv->preamble);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328
Holger Schurig9012b282007-05-25 11:27:16 -04001329 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330 return ret;
1331}
1332
Holger Schurig69f90322007-11-23 15:43:44 +01001333int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001334{
1335 int ret = 0;
1336
Holger Schurig9012b282007-05-25 11:27:16 -04001337 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001338
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001340 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001341 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001342
Holger Schurig9012b282007-05-25 11:27:16 -04001343 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001344 return ret;
1345}
1346
1347/**
1348 * @brief This function prepare the command before send to firmware.
1349 *
Holger Schurig69f90322007-11-23 15:43:44 +01001350 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001351 * @param cmd_no command number
1352 * @param cmd_action command action: GET or SET
1353 * @param wait_option wait option: wait response or not
1354 * @param cmd_oid cmd oid: treated as sub command
1355 * @param pdata_buf A pointer to informaion buffer
1356 * @return 0 or -1
1357 */
Holger Schurig69f90322007-11-23 15:43:44 +01001358int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001359 u16 cmd_no,
1360 u16 cmd_action,
1361 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1362{
1363 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001364 struct cmd_ctrl_node *cmdnode;
1365 struct cmd_ds_command *cmdptr;
1366 unsigned long flags;
1367
Holger Schurig8ff12da2007-08-02 11:54:31 -04001368 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001369
David Woodhouseaa21c002007-12-08 20:04:36 +00001370 if (!priv) {
1371 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001372 ret = -1;
1373 goto done;
1374 }
1375
David Woodhouseaa21c002007-12-08 20:04:36 +00001376 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001377 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378 ret = -1;
1379 goto done;
1380 }
1381
Holger Schurig0d61d042007-12-05 17:58:06 +01001382 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001383
1384 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001385 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001386
1387 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001388 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001389 ret = -1;
1390 goto done;
1391 }
1392
David Woodhousef5ece8f2007-12-01 15:15:41 +00001393 lbs_set_cmd_ctrl_node(priv, cmdnode, wait_option, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001394
Dan Williamsddac4522007-12-11 13:49:39 -05001395 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001396
Holger Schurig8ff12da2007-08-02 11:54:31 -04001397 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398
1399 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001400 lbs_deb_host("PREP_CMD: cmdptr is NULL\n");
Holger Schurig10078322007-11-15 18:05:47 -05001401 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402 ret = -1;
1403 goto done;
1404 }
1405
1406 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001407 priv->seqnum++;
1408 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001409
David Woodhouse981f1872007-05-25 23:36:54 -04001410 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001411 cmdptr->result = 0;
1412
1413 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001414 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001415 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001416 break;
1417
Dan Williams0aef64d2007-08-02 11:31:18 -04001418 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001419 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 break;
1421
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001423 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424 break;
1425
Dan Williams0aef64d2007-08-02 11:31:18 -04001426 case CMD_802_11_ASSOCIATE:
1427 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001428 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001429 break;
1430
Dan Williams0aef64d2007-08-02 11:31:18 -04001431 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001432 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 break;
1434
Dan Williams0aef64d2007-08-02 11:31:18 -04001435 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001436 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001437 break;
1438
Dan Williams0aef64d2007-08-02 11:31:18 -04001439 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001440 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001441 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001442 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001443 break;
1444
Dan Williams0aef64d2007-08-02 11:31:18 -04001445 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001446 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001447 break;
1448
Dan Williams0aef64d2007-08-02 11:31:18 -04001449 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001450 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001451 break;
1452
Dan Williams0aef64d2007-08-02 11:31:18 -04001453 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001454 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001455 break;
1456
Dan Williams0aef64d2007-08-02 11:31:18 -04001457 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001458 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001459 break;
1460
Dan Williams0aef64d2007-08-02 11:31:18 -04001461 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001462 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001463 cmd_action, cmd_oid, pdata_buf);
1464 break;
1465
Dan Williams0aef64d2007-08-02 11:31:18 -04001466 case CMD_MAC_REG_ACCESS:
1467 case CMD_BBP_REG_ACCESS:
1468 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001469 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001470 break;
1471
Dan Williams0aef64d2007-08-02 11:31:18 -04001472 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001473 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001474 cmd_action, pdata_buf);
1475 break;
1476
Dan Williams0aef64d2007-08-02 11:31:18 -04001477 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001478 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479 break;
1480
Dan Williams0aef64d2007-08-02 11:31:18 -04001481 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001482 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 cmdptr, cmd_action);
1484 break;
1485
Dan Williams0aef64d2007-08-02 11:31:18 -04001486 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001487 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001488 break;
1489
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001490 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001491 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001492 cmd_action, pdata_buf);
1493 break;
1494
Dan Williams0aef64d2007-08-02 11:31:18 -04001495 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001496 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001497 break;
1498
Dan Williams0aef64d2007-08-02 11:31:18 -04001499 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001500 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001501 break;
1502
Dan Williams0aef64d2007-08-02 11:31:18 -04001503 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001504 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001505 break;
1506
Dan Williams0aef64d2007-08-02 11:31:18 -04001507 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001508 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001509 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001510 break;
1511
Dan Williams0aef64d2007-08-02 11:31:18 -04001512 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001513 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001514 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001515 break;
1516
Dan Williams0aef64d2007-08-02 11:31:18 -04001517 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001518 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001519 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001520 break;
1521
Dan Williams0aef64d2007-08-02 11:31:18 -04001522 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001523 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001524 break;
1525
Dan Williams0aef64d2007-08-02 11:31:18 -04001526 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001527 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001528 cmd_action, pdata_buf);
1529 break;
1530
Dan Williams0aef64d2007-08-02 11:31:18 -04001531 case CMD_802_11_SET_AFC:
1532 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533
1534 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001535 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1536 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537
1538 memmove(&cmdptr->params.afc,
1539 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1540
1541 ret = 0;
1542 goto done;
1543
Dan Williams0aef64d2007-08-02 11:31:18 -04001544 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001545 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001546 cmd_no, cmd_action);
1547 break;
1548
Dan Williams0aef64d2007-08-02 11:31:18 -04001549 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001550 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001551 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001552 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001553 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001554 cmd_action, pdata_buf);
David Woodhousef5ece8f2007-12-01 15:15:41 +00001555 lbs_set_cmd_ctrl_node(priv, cmdnode, 0, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001556 break;
1557
Dan Williams0aef64d2007-08-02 11:31:18 -04001558 case CMD_802_11_TPC_CFG:
1559 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001560 cmdptr->size =
1561 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1562 S_DS_GEN);
1563
1564 memmove(&cmdptr->params.tpccfg,
1565 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1566
1567 ret = 0;
1568 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001569 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001570 {
1571 struct mrvlietypes_ledgpio *gpio =
1572 (struct mrvlietypes_ledgpio*)
1573 cmdptr->params.ledgpio.data;
1574
1575 memmove(&cmdptr->params.ledgpio,
1576 pdata_buf,
1577 sizeof(struct cmd_ds_802_11_led_ctrl));
1578
1579 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001580 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001581
1582#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1583 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001584 cpu_to_le16(le16_to_cpu(gpio->header.len)
1585 + S_DS_GEN
1586 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1587 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001588
1589 ret = 0;
1590 break;
1591 }
Holger Schurig3a188642007-11-26 10:07:14 +01001592 case CMD_802_11_SUBSCRIBE_EVENT:
1593 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1594 cmd_action, pdata_buf);
1595 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001596 case CMD_802_11_PWR_CFG:
1597 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001598 cmdptr->size =
1599 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1600 S_DS_GEN);
1601 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1602 sizeof(struct cmd_ds_802_11_pwr_cfg));
1603
1604 ret = 0;
1605 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001606 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001607 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001608 break;
1609
Dan Williams0aef64d2007-08-02 11:31:18 -04001610 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001611 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001612 break;
1613
Dan Williams0aef64d2007-08-02 11:31:18 -04001614 case CMD_GET_TSF:
1615 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001616 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1617 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001618 ret = 0;
1619 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001620 case CMD_802_11_BEACON_CTRL:
1621 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1622 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001623 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001624 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001625 ret = -1;
1626 break;
1627 }
1628
1629 /* return error, since the command preparation failed */
1630 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001631 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001632 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001633 ret = -1;
1634 goto done;
1635 }
1636
1637 cmdnode->cmdwaitqwoken = 0;
1638
David Woodhouseaa21c002007-12-08 20:04:36 +00001639 lbs_queue_cmd(priv, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001640 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001641
Dan Williams0aef64d2007-08-02 11:31:18 -04001642 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001643 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001644 might_sleep();
1645 wait_event_interruptible(cmdnode->cmdwait_q,
1646 cmdnode->cmdwaitqwoken);
1647 }
1648
David Woodhouseaa21c002007-12-08 20:04:36 +00001649 spin_lock_irqsave(&priv->driver_lock, flags);
1650 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001651 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001652 priv->cur_cmd_retcode);
1653 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654 ret = -1;
1655 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001656 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001657
1658done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001659 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001660 return ret;
1661}
Holger Schurig10078322007-11-15 18:05:47 -05001662EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663
1664/**
1665 * @brief This function allocates the command buffer and link
1666 * it to command free queue.
1667 *
Holger Schurig69f90322007-11-23 15:43:44 +01001668 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001669 * @return 0 or -1
1670 */
Holger Schurig69f90322007-11-23 15:43:44 +01001671int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001672{
1673 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001674 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001675 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001676 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001677
Holger Schurig8ff12da2007-08-02 11:54:31 -04001678 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001679
Dan Williamsddac4522007-12-11 13:49:39 -05001680 /* Allocate and initialize the command array */
1681 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1682 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001683 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001684 ret = -1;
1685 goto done;
1686 }
Dan Williamsddac4522007-12-11 13:49:39 -05001687 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001688
Dan Williamsddac4522007-12-11 13:49:39 -05001689 /* Allocate and initialize each command buffer in the command array */
1690 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1691 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1692 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001693 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001694 ret = -1;
1695 goto done;
1696 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001697 }
1698
Dan Williamsddac4522007-12-11 13:49:39 -05001699 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1700 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1701 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001702 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001703 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001704
1705done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001706 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001707 return ret;
1708}
1709
1710/**
1711 * @brief This function frees the command buffer.
1712 *
Holger Schurig69f90322007-11-23 15:43:44 +01001713 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001714 * @return 0 or -1
1715 */
Holger Schurig69f90322007-11-23 15:43:44 +01001716int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001717{
Dan Williamsddac4522007-12-11 13:49:39 -05001718 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001719 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720
Holger Schurig8ff12da2007-08-02 11:54:31 -04001721 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001722
1723 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001724 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001725 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001726 goto done;
1727 }
1728
Dan Williamsddac4522007-12-11 13:49:39 -05001729 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001730
1731 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001732 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1733 if (cmdarray[i].cmdbuf) {
1734 kfree(cmdarray[i].cmdbuf);
1735 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001736 }
1737 }
1738
1739 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001740 if (priv->cmd_array) {
1741 kfree(priv->cmd_array);
1742 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001743 }
1744
1745done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001746 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001747 return 0;
1748}
1749
1750/**
1751 * @brief This function gets a free command node if available in
1752 * command free queue.
1753 *
Holger Schurig69f90322007-11-23 15:43:44 +01001754 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001755 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1756 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001757static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758{
1759 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001760 unsigned long flags;
1761
Holger Schurig8ff12da2007-08-02 11:54:31 -04001762 lbs_deb_enter(LBS_DEB_HOST);
1763
David Woodhouseaa21c002007-12-08 20:04:36 +00001764 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001765 return NULL;
1766
David Woodhouseaa21c002007-12-08 20:04:36 +00001767 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001768
David Woodhouseaa21c002007-12-08 20:04:36 +00001769 if (!list_empty(&priv->cmdfreeq)) {
1770 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001771 struct cmd_ctrl_node, list);
1772 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001774 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001775 tempnode = NULL;
1776 }
1777
David Woodhouseaa21c002007-12-08 20:04:36 +00001778 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779
Holger Schurig8ff12da2007-08-02 11:54:31 -04001780 if (tempnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781 cleanup_cmdnode(tempnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001782
Holger Schurig8ff12da2007-08-02 11:54:31 -04001783 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001784 return tempnode;
1785}
1786
1787/**
1788 * @brief This function cleans command node.
1789 *
1790 * @param ptempnode A pointer to cmdCtrlNode structure
1791 * @return n/a
1792 */
Dan Williamsddac4522007-12-11 13:49:39 -05001793static void cleanup_cmdnode(struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001794{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001795 lbs_deb_enter(LBS_DEB_HOST);
1796
Dan Williamsddac4522007-12-11 13:49:39 -05001797 if (!cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798 return;
Dan Williamsddac4522007-12-11 13:49:39 -05001799 cmdnode->cmdwaitqwoken = 1;
1800 wake_up_interruptible(&cmdnode->cmdwait_q);
1801 cmdnode->wait_option = 0;
1802 cmdnode->pdata_buf = NULL;
1803 cmdnode->callback = NULL;
1804 cmdnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001805
Dan Williamsddac4522007-12-11 13:49:39 -05001806 if (cmdnode->cmdbuf != NULL)
1807 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001808
1809 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001810}
1811
1812/**
1813 * @brief This function initializes the command node.
1814 *
Holger Schurig69f90322007-11-23 15:43:44 +01001815 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817 * @param wait_option wait option: wait response or not
1818 * @param pdata_buf A pointer to informaion buffer
1819 * @return 0 or -1
1820 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001821static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1822 struct cmd_ctrl_node *ptempnode,
1823 u16 wait_option, void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001824{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001825 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001826
1827 if (!ptempnode)
1828 return;
1829
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001830 ptempnode->wait_option = wait_option;
1831 ptempnode->pdata_buf = pdata_buf;
David Woodhouse17230472007-12-07 15:13:05 +00001832 ptempnode->callback = NULL;
David Woodhouse1309b552007-12-10 13:36:10 -05001833 ptempnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001834
Holger Schurig8ff12da2007-08-02 11:54:31 -04001835 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836}
1837
1838/**
1839 * @brief This function executes next command in command
1840 * pending queue. It will put fimware back to PS mode
1841 * if applicable.
1842 *
Holger Schurig69f90322007-11-23 15:43:44 +01001843 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001844 * @return 0 or -1
1845 */
Holger Schurig69f90322007-11-23 15:43:44 +01001846int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001847{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001848 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001849 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001850 unsigned long flags;
1851 int ret = 0;
1852
Holger Schurig8ff12da2007-08-02 11:54:31 -04001853 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001854 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001855 // data packet is received
1856 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001857
David Woodhouseaa21c002007-12-08 20:04:36 +00001858 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001859
David Woodhouseaa21c002007-12-08 20:04:36 +00001860 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001861 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001862 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001863 ret = -1;
1864 goto done;
1865 }
1866
David Woodhouseaa21c002007-12-08 20:04:36 +00001867 if (!list_empty(&priv->cmdpendingq)) {
1868 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001869 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870 }
1871
David Woodhouseaa21c002007-12-08 20:04:36 +00001872 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001873
1874 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001875 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001876
Dan Williamsddac4522007-12-11 13:49:39 -05001877 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001878 if ((priv->psstate == PS_STATE_SLEEP) ||
1879 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001880 lbs_deb_host(
1881 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001882 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001883 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001884 ret = -1;
1885 goto done;
1886 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001887 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001888 "0x%04x in psstate %d\n",
1889 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001890 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001891 /*
1892 * 1. Non-PS command:
1893 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001894 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895 * 2. PS command but not Exit_PS:
1896 * Ignore it.
1897 * 3. PS command Exit_PS:
1898 * Set needtowakeup to TRUE if current state is SLEEP,
1899 * otherwise send this command down to firmware
1900 * immediately.
1901 */
Dan Williamsddac4522007-12-11 13:49:39 -05001902 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001903 /* Prepare to send Exit PS,
1904 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001905 if ((priv->psstate == PS_STATE_SLEEP)
1906 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907 ) {
1908 /* w/ new scheme, it will not reach here.
1909 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001910 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001911 } else
Holger Schurig10078322007-11-15 18:05:47 -05001912 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001913
1914 ret = 0;
1915 goto done;
1916 } else {
1917 /*
1918 * PS command. Ignore it if it is not Exit_PS.
1919 * otherwise send it down immediately.
1920 */
Dan Williamsddac4522007-12-11 13:49:39 -05001921 struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001922
Holger Schurig8ff12da2007-08-02 11:54:31 -04001923 lbs_deb_host(
1924 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001925 psm->action);
1926 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001927 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001928 lbs_deb_host(
1929 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001930 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001931 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001932
1933 ret = 0;
1934 goto done;
1935 }
1936
David Woodhouseaa21c002007-12-08 20:04:36 +00001937 if ((priv->psstate == PS_STATE_SLEEP) ||
1938 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001939 lbs_deb_host(
1940 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001941 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001942 lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001943 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001944
1945 ret = 0;
1946 goto done;
1947 }
1948
Holger Schurig8ff12da2007-08-02 11:54:31 -04001949 lbs_deb_host(
1950 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001951 }
1952 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001953 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001954 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001955 le16_to_cpu(cmd->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001956 DownloadcommandToStation(priv, cmdnode);
1957 } else {
1958 /*
1959 * check if in power save mode, if yes, put the device back
1960 * to PS mode
1961 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001962 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1963 (priv->psstate == PS_STATE_FULL_POWER) &&
1964 ((priv->connect_status == LBS_CONNECTED) ||
1965 (priv->mesh_connect_status == LBS_CONNECTED))) {
1966 if (priv->secinfo.WPAenabled ||
1967 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001968 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001969 if (priv->wpa_mcast_key.len ||
1970 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001971 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001972 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1973 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001974 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001975 }
1976 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001977 lbs_deb_host(
1978 "EXEC_NEXT_CMD: cmdpendingq empty, "
1979 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001980 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001981 }
1982 }
1983 }
1984
1985 ret = 0;
1986done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001987 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001988 return ret;
1989}
1990
Holger Schurig69f90322007-11-23 15:43:44 +01001991void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992{
1993 union iwreq_data iwrq;
1994 u8 buf[50];
1995
Holger Schurig8ff12da2007-08-02 11:54:31 -04001996 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001997
1998 memset(&iwrq, 0, sizeof(union iwreq_data));
1999 memset(buf, 0, sizeof(buf));
2000
2001 snprintf(buf, sizeof(buf) - 1, "%s", str);
2002
2003 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
2004
2005 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04002006 lbs_deb_wext("event indication string %s\n", (char *)buf);
2007 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
2008 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002009
Holger Schurig634b8f42007-05-25 13:05:16 -04002010 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002011
Holger Schurig8ff12da2007-08-02 11:54:31 -04002012 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002013}
2014
Holger Schurig69f90322007-11-23 15:43:44 +01002015static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002016{
2017 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002018 int ret = 0;
2019
Holger Schurig8ff12da2007-08-02 11:54:31 -04002020 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002021
Holger Schurig8ff12da2007-08-02 11:54:31 -04002022 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 size);
2024
Holger Schurig8ff12da2007-08-02 11:54:31 -04002025 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002026
Holger Schurig208fdd22007-05-25 12:17:06 -04002027 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04002028 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029
David Woodhouseaa21c002007-12-08 20:04:36 +00002030 spin_lock_irqsave(&priv->driver_lock, flags);
2031 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04002032 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002033 priv->intcounter, priv->currenttxskb);
2034 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002035
2036 if (ret) {
2037 lbs_pr_alert(
2038 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
2039 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00002040 spin_lock_irqsave(&priv->driver_lock, flags);
2041 if (!priv->intcounter) {
2042 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002043 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002044 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002045 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002047 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002048
Holger Schurig8ff12da2007-08-02 11:54:31 -04002049 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002050 }
2051
Holger Schurig8ff12da2007-08-02 11:54:31 -04002052 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002053 return ret;
2054}
2055
Holger Schurig69f90322007-11-23 15:43:44 +01002056void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002057{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002058 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002059
2060 /*
2061 * PS is currently supported only in Infrastructure mode
2062 * Remove this check if it is to be supported in IBSS mode also
2063 */
2064
Holger Schurig10078322007-11-15 18:05:47 -05002065 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002066 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002067
Holger Schurig8ff12da2007-08-02 11:54:31 -04002068 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002069}
2070
2071/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002072 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002073 *
Holger Schurig69f90322007-11-23 15:43:44 +01002074 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002075 * @param wait_option wait response or not
2076 * @return n/a
2077 */
Holger Schurig69f90322007-11-23 15:43:44 +01002078void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002079{
David Woodhouse981f1872007-05-25 23:36:54 -04002080 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002081
Holger Schurig8ff12da2007-08-02 11:54:31 -04002082 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002083
Holger Schurig10078322007-11-15 18:05:47 -05002084 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002085
Holger Schurig10078322007-11-15 18:05:47 -05002086 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002087 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002088 wait_option, 0, &Localpsmode);
2089
Holger Schurig8ff12da2007-08-02 11:54:31 -04002090 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002091}
2092
2093/**
2094 * @brief This function checks condition and prepares to
2095 * send sleep confirm command to firmware if ok.
2096 *
Holger Schurig69f90322007-11-23 15:43:44 +01002097 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002098 * @param psmode Power Saving mode
2099 * @return n/a
2100 */
Holger Schurig69f90322007-11-23 15:43:44 +01002101void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002102{
2103 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002104 u8 allowed = 1;
2105
Holger Schurig8ff12da2007-08-02 11:54:31 -04002106 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002107
Holger Schurig634b8f42007-05-25 13:05:16 -04002108 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002109 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002110 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002111 }
2112
David Woodhouseaa21c002007-12-08 20:04:36 +00002113 spin_lock_irqsave(&priv->driver_lock, flags);
2114 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002115 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002116 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002117 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002118 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002119 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002120 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002121 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002122 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002123
2124 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002125 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002126 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002127 sizeof(struct PS_CMD_ConfirmSleep));
2128 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002129 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002130 }
2131
Holger Schurig8ff12da2007-08-02 11:54:31 -04002132 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002133}
Holger Schurig675787e2007-12-05 17:58:11 +01002134
2135
2136/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002137 * @brief Simple callback that copies response back into command
2138 *
2139 * @param priv A pointer to struct lbs_private structure
2140 * @param extra A pointer to the original command structure for which
2141 * 'resp' is a response
2142 * @param resp A pointer to the command response
2143 *
2144 * @return 0 on success, error on failure
2145 */
2146int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002147 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002148{
2149 struct cmd_header *buf = (void *)extra;
2150 uint16_t copy_len;
2151
2152 lbs_deb_enter(LBS_DEB_CMD);
2153
2154 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2155 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002156 "copy back buffer was %u bytes\n", copy_len,
2157 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002158 memcpy(buf, resp, copy_len);
2159
2160 lbs_deb_leave(LBS_DEB_CMD);
2161 return 0;
2162}
2163
2164/**
Holger Schurig675787e2007-12-05 17:58:11 +01002165 * @brief Simple way to call firmware functions
2166 *
2167 * @param priv A pointer to struct lbs_private structure
2168 * @param psmode one of the many CMD_802_11_xxxx
2169 * @param cmd pointer to the parameters structure for above command
2170 * (this should not include the command, size, sequence
2171 * and result fields from struct cmd_ds_gen)
2172 * @param cmd_size size structure pointed to by cmd
2173 * @param rsp pointer to an area where the result should be placed
2174 * @param rsp_size pointer to the size of the rsp area. If the firmware
2175 * returns fewer bytes, then this *rsp_size will be
2176 * changed to the actual size.
2177 * @return -1 in case of a higher level error, otherwise
2178 * the result code from the firmware
2179 */
Dan Williams7ad994d2007-12-11 12:33:30 -05002180int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2181 struct cmd_header *in_cmd, int in_cmd_size,
2182 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
Dan Williams14e865b2007-12-10 15:11:23 -05002183 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002184{
Holger Schurig675787e2007-12-05 17:58:11 +01002185 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002186 unsigned long flags;
2187 int ret = 0;
2188
2189 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002190
David Woodhouseaa21c002007-12-08 20:04:36 +00002191 if (!priv) {
2192 lbs_deb_host("PREP_CMD: priv is NULL\n");
Holger Schurig675787e2007-12-05 17:58:11 +01002193 ret = -1;
2194 goto done;
2195 }
2196
David Woodhouseaa21c002007-12-08 20:04:36 +00002197 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002198 lbs_deb_host("PREP_CMD: card removed\n");
2199 ret = -1;
2200 goto done;
2201 }
2202
2203 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002204 if (cmdnode == NULL) {
2205 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2206
2207 /* Wake up main thread to execute next command */
2208 wake_up_interruptible(&priv->waitq);
2209 ret = -1;
2210 goto done;
2211 }
2212
Holger Schurig675787e2007-12-05 17:58:11 +01002213 cmdnode->wait_option = CMD_OPTION_WAITFORRSP;
David Woodhouse448a51a2007-12-08 00:59:54 +00002214 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002215 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002216
Dan Williams7ad994d2007-12-11 12:33:30 -05002217 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002218 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002219
Holger Schurig675787e2007-12-05 17:58:11 +01002220 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002221 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002222 cmdnode->cmdbuf->command = cpu_to_le16(command);
2223 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2224 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2225 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002226
2227 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2228
2229 /* here was the big old switch() statement, which is now obsolete,
2230 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2231
2232 cmdnode->cmdwaitqwoken = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00002233 lbs_queue_cmd(priv, cmdnode, 1);
Holger Schurig675787e2007-12-05 17:58:11 +01002234 wake_up_interruptible(&priv->waitq);
2235
2236 might_sleep();
2237 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2238
David Woodhouseaa21c002007-12-08 20:04:36 +00002239 spin_lock_irqsave(&priv->driver_lock, flags);
2240 if (priv->cur_cmd_retcode) {
Holger Schurig675787e2007-12-05 17:58:11 +01002241 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002242 priv->cur_cmd_retcode);
2243 priv->cur_cmd_retcode = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002244 ret = -1;
2245 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002246 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002247
2248done:
2249 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2250 return ret;
2251}
Dan Williams14e865b2007-12-10 15:11:23 -05002252EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002253
2254