blob: 092c295e3802ed7bf621edd10f30a70ace22ea62 [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"
14
15static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode);
Holger Schurig0d61d042007-12-05 17:58:06 +010016struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
17void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
18 struct cmd_ctrl_node *ptempnode,
19 u16 wait_option, void *pdata_buf);
20
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021
22static u16 commands_allowed_in_ps[] = {
Dan Williams0aef64d2007-08-02 11:31:18 -040023 CMD_802_11_RSSI,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024};
25
26/**
27 * @brief This function checks if the commans is allowed
28 * in PS mode not.
29 *
30 * @param command the command ID
31 * @return TRUE or FALSE
32 */
David Woodhouse981f1872007-05-25 23:36:54 -040033static u8 is_command_allowed_in_ps(__le16 command)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020034{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020035 int i;
36
David Woodhouse981f1872007-05-25 23:36:54 -040037 for (i = 0; i < ARRAY_SIZE(commands_allowed_in_ps); i++) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020038 if (command == cpu_to_le16(commands_allowed_in_ps[i]))
39 return 1;
40 }
41
42 return 0;
43}
44
Holger Schurig69f90322007-11-23 15:43:44 +010045static int lbs_cmd_hw_spec(struct lbs_private *priv, struct cmd_ds_command *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020046{
47 struct cmd_ds_get_hw_spec *hwspec = &cmd->params.hwspec;
48
Holger Schurig9012b282007-05-25 11:27:16 -040049 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020050
Dan Williams0aef64d2007-08-02 11:31:18 -040051 cmd->command = cpu_to_le16(CMD_GET_HW_SPEC);
David Woodhouse981f1872007-05-25 23:36:54 -040052 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_get_hw_spec) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020053 memcpy(hwspec->permanentaddr, priv->adapter->current_addr, ETH_ALEN);
54
Holger Schurig9012b282007-05-25 11:27:16 -040055 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020056 return 0;
57}
58
Holger Schurig69f90322007-11-23 15:43:44 +010059static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060 struct cmd_ds_command *cmd,
61 u16 cmd_action)
62{
63 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020064
Holger Schurig9012b282007-05-25 11:27:16 -040065 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066
Dan Williams0aef64d2007-08-02 11:31:18 -040067 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -040068 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
69 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020070 psm->action = cpu_to_le16(cmd_action);
71 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -040072 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -040073 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -040074 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075
Holger Schurig252cf0d2007-08-02 13:09:34 -040076 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -040077 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020078 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -040079 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020080 break;
81
Dan Williams0aef64d2007-08-02 11:31:18 -040082 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -040083 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020084 break;
85
Dan Williams0aef64d2007-08-02 11:31:18 -040086 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -040087 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020088 break;
89
90 default:
91 break;
92 }
93
Holger Schurig9012b282007-05-25 11:27:16 -040094 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020095 return 0;
96}
97
Holger Schurig69f90322007-11-23 15:43:44 +010098static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020099 struct cmd_ds_command *cmd,
100 u16 cmd_action, void *pdata_buf)
101{
102 u16 *timeout = pdata_buf;
103
Holger Schurig8ff12da2007-08-02 11:54:31 -0400104 lbs_deb_enter(LBS_DEB_CMD);
105
Dan Williams0aef64d2007-08-02 11:31:18 -0400106 cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200107 cmd->size =
108 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
109 + S_DS_GEN);
110
111 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
112
113 if (cmd_action)
David Woodhouse981f1872007-05-25 23:36:54 -0400114 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115 else
116 cmd->params.inactivity_timeout.timeout = 0;
117
Holger Schurig8ff12da2007-08-02 11:54:31 -0400118 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119 return 0;
120}
121
Holger Schurig69f90322007-11-23 15:43:44 +0100122static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200123 struct cmd_ds_command *cmd,
124 u16 cmd_action)
125{
Holger Schurig69f90322007-11-23 15:43:44 +0100126 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200127 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
128
Holger Schurig9012b282007-05-25 11:27:16 -0400129 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130
David Woodhouse981f1872007-05-25 23:36:54 -0400131 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
132 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400133 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200134
Dan Williams0aef64d2007-08-02 11:31:18 -0400135 if (cmd_action == CMD_ACT_GET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 memset(&adapter->sp, 0, sizeof(struct sleep_params));
137 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
138 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400139 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140 sp->action = cpu_to_le16(cmd_action);
141 sp->error = cpu_to_le16(adapter->sp.sp_error);
142 sp->offset = cpu_to_le16(adapter->sp.sp_offset);
143 sp->stabletime = cpu_to_le16(adapter->sp.sp_stabletime);
144 sp->calcontrol = (u8) adapter->sp.sp_calcontrol;
145 sp->externalsleepclk = (u8) adapter->sp.sp_extsleepclk;
146 sp->reserved = cpu_to_le16(adapter->sp.sp_reserved);
147 }
148
Holger Schurig9012b282007-05-25 11:27:16 -0400149 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200150 return 0;
151}
152
Holger Schurig69f90322007-11-23 15:43:44 +0100153static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 struct cmd_ds_command *cmd,
155 u32 cmd_act,
156 void * pdata_buf)
157{
158 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Holger Schurig69f90322007-11-23 15:43:44 +0100159 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200160 int ret = 0;
161 struct assoc_request * assoc_req = pdata_buf;
162
Holger Schurig9012b282007-05-25 11:27:16 -0400163 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164
Dan Williams0aef64d2007-08-02 11:31:18 -0400165 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400166 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200167
Dan Williams0aef64d2007-08-02 11:31:18 -0400168 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200169 int i;
170
171 if (!assoc_req) {
Holger Schurig9012b282007-05-25 11:27:16 -0400172 lbs_deb_cmd("Invalid association request!");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200173 ret = -1;
174 goto done;
175 }
176
Dan Williams0aef64d2007-08-02 11:31:18 -0400177 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178
179 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400180 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400181 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183 /* Copy key types and material to host command structure */
184 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400185 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186
187 switch (pkey->len) {
188 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200189 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190 memmove(&wep->keymaterial[i], pkey->key,
191 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400192 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200193 break;
194 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200195 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200196 memmove(&wep->keymaterial[i], pkey->key,
197 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400198 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200199 break;
200 case 0:
201 break;
202 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400203 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200204 i, pkey->len);
205 ret = -1;
206 goto done;
207 break;
208 }
209 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400210 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400212 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213
214 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400215 wep->keyindex = cpu_to_le16((u16)(adapter->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400216 (u32)CMD_WEP_KEY_INDEX_MASK));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400217 lbs_deb_cmd("SET_WEP: remove key %d\n", adapter->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200218 }
219
220 ret = 0;
221
222done:
Holger Schurig9012b282007-05-25 11:27:16 -0400223 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200224 return ret;
225}
226
Holger Schurig69f90322007-11-23 15:43:44 +0100227static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200228 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400229 u16 cmd_action,
230 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231{
232 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400233 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400234
235 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_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400238 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400240
Dan Williams0aef64d2007-08-02 11:31:18 -0400241 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400242 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400243 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400244 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400245 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400246 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247 }
248
Dan Williams90a42212007-05-25 23:01:24 -0400249 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250 return 0;
251}
252
253
Holger Schurig3a188642007-11-26 10:07:14 +0100254static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
255{
256 ssize_t pos = 0;
257 struct mrvlietypesheader *tlv_h;
258 while (pos < size) {
259 u16 length;
260 tlv_h = (struct mrvlietypesheader *) tlv;
261 if (tlv_h->len == 0)
262 return pos;
263 length = le16_to_cpu(tlv_h->len) +
264 sizeof(struct mrvlietypesheader);
265 pos += length;
266 tlv += length;
267 }
268 return pos;
269}
270
271
272static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
273 struct cmd_ds_command *cmd, u16 cmd_action,
274 void *pdata_buf)
275{
276 struct cmd_ds_802_11_subscribe_event *events =
277 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
278
279 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
280 * for various Marvell TLVs */
281
282 lbs_deb_enter(LBS_DEB_CMD);
283
284 cmd->size = cpu_to_le16(sizeof(*events)
285 - sizeof(events->tlv)
286 + S_DS_GEN);
287 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
288 if (cmd_action == CMD_ACT_GET) {
289 cmd->params.subscribe_event.events = 0;
290 } else {
291 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
292 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
293 cmd->params.subscribe_event.events = events->events;
294 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
295 }
296
297 lbs_deb_leave(LBS_DEB_CMD);
298}
299
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400301 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200302{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400303 lbs_deb_enter(LBS_DEB_CMD);
304
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200305 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400306 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
309 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400310 }
311 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200312 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
313 }
314
315 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400316 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200317 pkeyparamset->keylen = cpu_to_le16(pkey->len);
318 memcpy(pkeyparamset->key, pkey->key, pkey->len);
319 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
320 + sizeof(pkeyparamset->keyinfo)
321 + sizeof(pkeyparamset->keylen)
322 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400323 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200324}
325
Holger Schurig69f90322007-11-23 15:43:44 +0100326static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200327 struct cmd_ds_command *cmd,
328 u16 cmd_action,
329 u32 cmd_oid, void *pdata_buf)
330{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200331 struct cmd_ds_802_11_key_material *pkeymaterial =
332 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400333 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200334 int ret = 0;
335 int index = 0;
336
Holger Schurig9012b282007-05-25 11:27:16 -0400337 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200338
Dan Williams0aef64d2007-08-02 11:31:18 -0400339 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200340 pkeymaterial->action = cpu_to_le16(cmd_action);
341
Dan Williams0aef64d2007-08-02 11:31:18 -0400342 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400343 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200344 ret = 0;
345 goto done;
346 }
347
348 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
349
Dan Williams90a42212007-05-25 23:01:24 -0400350 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200351 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400352 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200353 index++;
354 }
355
Dan Williams90a42212007-05-25 23:01:24 -0400356 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200357 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400358 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200359 index++;
360 }
361
362 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400363 + sizeof (pkeymaterial->action)
364 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200365
366 ret = 0;
367
368done:
Holger Schurig9012b282007-05-25 11:27:16 -0400369 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200370 return ret;
371}
372
Holger Schurig69f90322007-11-23 15:43:44 +0100373static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374 struct cmd_ds_command *cmd, int cmd_action)
375{
376 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
377
Holger Schurig8ff12da2007-08-02 11:54:31 -0400378 lbs_deb_enter(LBS_DEB_CMD);
379
Dan Williams0aef64d2007-08-02 11:31:18 -0400380 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
382 reset->action = cpu_to_le16(cmd_action);
383
Holger Schurig8ff12da2007-08-02 11:54:31 -0400384 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 return 0;
386}
387
Holger Schurig69f90322007-11-23 15:43:44 +0100388static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 struct cmd_ds_command *cmd)
390{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400391 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400392 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200393 cmd->size =
394 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
395
Holger Schurig8ff12da2007-08-02 11:54:31 -0400396 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200397 return 0;
398}
399
Holger Schurig69f90322007-11-23 15:43:44 +0100400static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401 struct cmd_ds_command *cmd)
402{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400403 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400404 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400406 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407
Holger Schurig8ff12da2007-08-02 11:54:31 -0400408 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200409 return 0;
410}
411
Holger Schurig69f90322007-11-23 15:43:44 +0100412static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200413 struct cmd_ds_command *cmd,
414 int cmd_action,
415 int cmd_oid, void *pdata_buf)
416{
417 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Holger Schurig69f90322007-11-23 15:43:44 +0100418 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200419 u8 ucTemp;
420
Holger Schurig9012b282007-05-25 11:27:16 -0400421 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200422
Holger Schurig9012b282007-05-25 11:27:16 -0400423 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200424
Dan Williams0aef64d2007-08-02 11:31:18 -0400425 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400426 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427
428 switch (cmd_oid) {
429 case OID_802_11_INFRASTRUCTURE_MODE:
430 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400431 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400432 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
433 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000434 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400435 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200436 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400437 } else {
438 /* Infra and Auto modes */
439 ucTemp = SNMP_MIB_VALUE_INFRA;
440 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200441
442 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
443
444 break;
445 }
446
447 case OID_802_11D_ENABLE:
448 {
449 u32 ulTemp;
450
Dan Williams0aef64d2007-08-02 11:31:18 -0400451 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452
Dan Williams0aef64d2007-08-02 11:31:18 -0400453 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000454 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
455 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200456 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400457 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458 cpu_to_le16((u16) ulTemp);
459 }
460 break;
461 }
462
463 case OID_802_11_FRAGMENTATION_THRESHOLD:
464 {
465 u32 ulTemp;
466
Dan Williams0aef64d2007-08-02 11:31:18 -0400467 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200468
Dan Williams0aef64d2007-08-02 11:31:18 -0400469 if (cmd_action == CMD_ACT_GET) {
470 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
471 } else if (cmd_action == CMD_ACT_SET) {
472 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400473 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400475 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476 cpu_to_le16((u16) ulTemp);
477
478 }
479
480 break;
481 }
482
483 case OID_802_11_RTS_THRESHOLD:
484 {
485
486 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000487 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200488
Dan Williams0aef64d2007-08-02 11:31:18 -0400489 if (cmd_action == CMD_ACT_GET) {
490 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
491 } else if (cmd_action == CMD_ACT_SET) {
492 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400493 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
494 ulTemp = *((u32 *)pdata_buf);
495 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200496 cpu_to_le16((u16) ulTemp);
497
498 }
499 break;
500 }
501 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400502 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503
Dan Williams0aef64d2007-08-02 11:31:18 -0400504 if (cmd_action == CMD_ACT_GET) {
505 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
506 } else if (cmd_action == CMD_ACT_SET) {
507 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200508 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400509 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510 cpu_to_le16((u16) adapter->txretrycount);
511 }
512
513 break;
514 default:
515 break;
516 }
517
Holger Schurig9012b282007-05-25 11:27:16 -0400518 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200519 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400520 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
521 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200522
Holger Schurig9012b282007-05-25 11:27:16 -0400523 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400524 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400525 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
526 le16_to_cpu(pSNMPMIB->bufsize),
527 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528
Holger Schurig9012b282007-05-25 11:27:16 -0400529 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530 return 0;
531}
532
Holger Schurig69f90322007-11-23 15:43:44 +0100533static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200534 struct cmd_ds_command *cmd,
535 int cmd_action)
536{
Holger Schurig69f90322007-11-23 15:43:44 +0100537 struct lbs_adapter *adapter = priv->adapter;
David Woodhouse981f1872007-05-25 23:36:54 -0400538 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200539
Holger Schurig9012b282007-05-25 11:27:16 -0400540 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200541
542 cmd->size =
543 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
544 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400545 cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546
547 pradiocontrol->action = cpu_to_le16(cmd_action);
548
549 switch (adapter->preamble) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400550 case CMD_TYPE_SHORT_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200551 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
552 break;
553
Dan Williams0aef64d2007-08-02 11:31:18 -0400554 case CMD_TYPE_LONG_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
556 break;
557
Dan Williams0aef64d2007-08-02 11:31:18 -0400558 case CMD_TYPE_AUTO_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200559 default:
560 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
561 break;
562 }
563
564 if (adapter->radioon)
565 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
566 else
567 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
568
Holger Schurig9012b282007-05-25 11:27:16 -0400569 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200570 return 0;
571}
572
Holger Schurig69f90322007-11-23 15:43:44 +0100573static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200574 struct cmd_ds_command *cmd,
575 u16 cmd_action, void *pdata_buf)
576{
577
578 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
579
Holger Schurig9012b282007-05-25 11:27:16 -0400580 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200581
582 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400583 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400584 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400585 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200586
David Woodhouse981f1872007-05-25 23:36:54 -0400587 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
588 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
589 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590
591 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400592 case CMD_ACT_TX_POWER_OPT_GET:
593 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200594 prtp->currentlevel = 0;
595 break;
596
Dan Williams0aef64d2007-08-02 11:31:18 -0400597 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
598 prtp->action = cpu_to_le16(CMD_ACT_SET);
599 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200600 break;
601
Dan Williams0aef64d2007-08-02 11:31:18 -0400602 case CMD_ACT_TX_POWER_OPT_SET_MID:
603 prtp->action = cpu_to_le16(CMD_ACT_SET);
604 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605 break;
606
Dan Williams0aef64d2007-08-02 11:31:18 -0400607 case CMD_ACT_TX_POWER_OPT_SET_LOW:
608 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
610 break;
611 }
Holger Schurig9012b282007-05-25 11:27:16 -0400612
613 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200614 return 0;
615}
616
Holger Schurig69f90322007-11-23 15:43:44 +0100617static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400618 struct cmd_ds_command *cmd,
619 u16 cmd_action, void *pdata_buf)
620{
621 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
622
623 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
624 cmd->size =
625 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
626 S_DS_GEN);
627
628 monitor->action = cpu_to_le16(cmd_action);
629 if (cmd_action == CMD_ACT_SET) {
630 monitor->mode =
631 cpu_to_le16((u16) (*(u32 *) pdata_buf));
632 }
633
634 return 0;
635}
636
Holger Schurig69f90322007-11-23 15:43:44 +0100637static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638 struct cmd_ds_command *cmd,
639 u16 cmd_action)
640{
641 struct cmd_ds_802_11_rate_adapt_rateset
642 *rateadapt = &cmd->params.rateset;
Holger Schurig69f90322007-11-23 15:43:44 +0100643 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644
Holger Schurig8ff12da2007-08-02 11:54:31 -0400645 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200646 cmd->size =
647 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
648 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400649 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650
David Woodhouse981f1872007-05-25 23:36:54 -0400651 rateadapt->action = cpu_to_le16(cmd_action);
652 rateadapt->enablehwauto = cpu_to_le16(adapter->enablehwauto);
653 rateadapt->bitmap = cpu_to_le16(adapter->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654
Holger Schurig9012b282007-05-25 11:27:16 -0400655 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656 return 0;
657}
658
Holger Schurig69f90322007-11-23 15:43:44 +0100659static int lbs_cmd_802_11_data_rate(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660 struct cmd_ds_command *cmd,
661 u16 cmd_action)
662{
663 struct cmd_ds_802_11_data_rate *pdatarate = &cmd->params.drate;
Holger Schurig69f90322007-11-23 15:43:44 +0100664 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200665
Holger Schurig9012b282007-05-25 11:27:16 -0400666 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200667
David Woodhouse981f1872007-05-25 23:36:54 -0400668 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_data_rate) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200669 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400670 cmd->command = cpu_to_le16(CMD_802_11_DATA_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671 memset(pdatarate, 0, sizeof(struct cmd_ds_802_11_data_rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200672 pdatarate->action = cpu_to_le16(cmd_action);
673
Dan Williamsffcae952007-08-02 11:35:46 -0400674 if (cmd_action == CMD_ACT_SET_TX_FIX_RATE) {
Holger Schurig10078322007-11-15 18:05:47 -0500675 pdatarate->rates[0] = lbs_data_rate_to_fw_index(adapter->cur_rate);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400676 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n",
Dan Williams8c512762007-08-02 11:40:45 -0400677 adapter->cur_rate);
Dan Williamsffcae952007-08-02 11:35:46 -0400678 } else if (cmd_action == CMD_ACT_SET_TX_AUTO) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400679 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200680 }
681
Holger Schurig9012b282007-05-25 11:27:16 -0400682 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200683 return 0;
684}
685
Holger Schurig69f90322007-11-23 15:43:44 +0100686static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200687 struct cmd_ds_command *cmd,
688 u16 cmd_action)
689{
690 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Holger Schurig69f90322007-11-23 15:43:44 +0100691 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692
Holger Schurig8ff12da2007-08-02 11:54:31 -0400693 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400694 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200695 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400696 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200697
Holger Schurig8ff12da2007-08-02 11:54:31 -0400698 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200699 pMCastAdr->action = cpu_to_le16(cmd_action);
700 pMCastAdr->nr_of_adrs =
701 cpu_to_le16((u16) adapter->nr_of_multicastmacaddr);
702 memcpy(pMCastAdr->maclist, adapter->multicastlist,
703 adapter->nr_of_multicastmacaddr * ETH_ALEN);
704
Holger Schurig8ff12da2007-08-02 11:54:31 -0400705 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200706 return 0;
707}
708
Holger Schurig69f90322007-11-23 15:43:44 +0100709static int lbs_cmd_802_11_rf_channel(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200710 struct cmd_ds_command *cmd,
711 int option, void *pdata_buf)
712{
713 struct cmd_ds_802_11_rf_channel *rfchan = &cmd->params.rfchannel;
714
Holger Schurig8ff12da2007-08-02 11:54:31 -0400715 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400716 cmd->command = cpu_to_le16(CMD_802_11_RF_CHANNEL);
David Woodhouse981f1872007-05-25 23:36:54 -0400717 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rf_channel) +
718 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719
Dan Williams0aef64d2007-08-02 11:31:18 -0400720 if (option == CMD_OPT_802_11_RF_CHANNEL_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200721 rfchan->currentchannel = cpu_to_le16(*((u16 *) pdata_buf));
722 }
723
724 rfchan->action = cpu_to_le16(option);
725
Holger Schurig8ff12da2007-08-02 11:54:31 -0400726 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727 return 0;
728}
729
Holger Schurig69f90322007-11-23 15:43:44 +0100730static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200731 struct cmd_ds_command *cmd)
732{
Holger Schurig69f90322007-11-23 15:43:44 +0100733 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200734
Holger Schurig8ff12da2007-08-02 11:54:31 -0400735 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400736 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400737 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400738 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739
740 /* reset Beacon SNR/NF/RSSI values */
741 adapter->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
742 adapter->SNR[TYPE_BEACON][TYPE_AVG] = 0;
743 adapter->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
744 adapter->NF[TYPE_BEACON][TYPE_AVG] = 0;
745 adapter->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
746 adapter->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
747
Holger Schurig8ff12da2007-08-02 11:54:31 -0400748 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200749 return 0;
750}
751
Holger Schurig69f90322007-11-23 15:43:44 +0100752static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200753 struct cmd_ds_command *cmdptr,
754 u8 cmd_action, void *pdata_buf)
755{
Holger Schurig10078322007-11-15 18:05:47 -0500756 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200757
Holger Schurig9012b282007-05-25 11:27:16 -0400758 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200759
Holger Schurig10078322007-11-15 18:05:47 -0500760 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200761
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000762 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400763 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200764 {
765 struct cmd_ds_mac_reg_access *macreg;
766
767 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400768 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
769 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200770 macreg =
771 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
772 macreg;
773
774 macreg->action = cpu_to_le16(cmd_action);
775 macreg->offset = cpu_to_le16((u16) offval->offset);
776 macreg->value = cpu_to_le32(offval->value);
777
778 break;
779 }
780
Dan Williams0aef64d2007-08-02 11:31:18 -0400781 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200782 {
783 struct cmd_ds_bbp_reg_access *bbpreg;
784
785 cmdptr->size =
786 cpu_to_le16(sizeof
787 (struct cmd_ds_bbp_reg_access)
788 + S_DS_GEN);
789 bbpreg =
790 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
791 bbpreg;
792
793 bbpreg->action = cpu_to_le16(cmd_action);
794 bbpreg->offset = cpu_to_le16((u16) offval->offset);
795 bbpreg->value = (u8) offval->value;
796
797 break;
798 }
799
Dan Williams0aef64d2007-08-02 11:31:18 -0400800 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200801 {
802 struct cmd_ds_rf_reg_access *rfreg;
803
804 cmdptr->size =
805 cpu_to_le16(sizeof
806 (struct cmd_ds_rf_reg_access) +
807 S_DS_GEN);
808 rfreg =
809 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
810 rfreg;
811
812 rfreg->action = cpu_to_le16(cmd_action);
813 rfreg->offset = cpu_to_le16((u16) offval->offset);
814 rfreg->value = (u8) offval->value;
815
816 break;
817 }
818
819 default:
820 break;
821 }
822
Holger Schurig9012b282007-05-25 11:27:16 -0400823 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200824 return 0;
825}
826
Holger Schurig69f90322007-11-23 15:43:44 +0100827static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200828 struct cmd_ds_command *cmd,
829 u16 cmd_action)
830{
Holger Schurig69f90322007-11-23 15:43:44 +0100831 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200832
Holger Schurig8ff12da2007-08-02 11:54:31 -0400833 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400834 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400835 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200836 S_DS_GEN);
837 cmd->result = 0;
838
839 cmd->params.macadd.action = cpu_to_le16(cmd_action);
840
Dan Williams0aef64d2007-08-02 11:31:18 -0400841 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200842 memcpy(cmd->params.macadd.macadd,
843 adapter->current_addr, ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400844 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", adapter->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200845 }
846
Holger Schurig8ff12da2007-08-02 11:54:31 -0400847 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200848 return 0;
849}
850
Holger Schurig69f90322007-11-23 15:43:44 +0100851static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200852 struct cmd_ds_command *cmd,
853 int cmd_action, void *pdata_buf)
854{
Holger Schurig10078322007-11-15 18:05:47 -0500855 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200856
Holger Schurig9012b282007-05-25 11:27:16 -0400857 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200858
Dan Williams0aef64d2007-08-02 11:31:18 -0400859 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400860 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
861 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200862 cmd->result = 0;
863
864 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
865 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
866 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
867 cmd->params.rdeeprom.value = 0;
868
Holger Schurig8ff12da2007-08-02 11:54:31 -0400869 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200870 return 0;
871}
872
Holger Schurig69f90322007-11-23 15:43:44 +0100873static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200874 struct cmd_ds_command *cmd,
875 u16 cmd_action, void *pdata_buf)
876{
877 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400878 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200879
Dan Williams0aef64d2007-08-02 11:31:18 -0400880 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400881 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882 cmd->result = 0;
883 bt_access->action = cpu_to_le16(cmd_action);
884
885 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400886 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200887 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400888 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200889 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400890 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400892 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200893 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400894 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200895 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
896 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400897 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400899 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400900 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
901 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400902 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400903 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200904 default:
905 break;
906 }
Holger Schurig8ff12da2007-08-02 11:54:31 -0400907 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908 return 0;
909}
910
Holger Schurig69f90322007-11-23 15:43:44 +0100911static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912 struct cmd_ds_command *cmd,
913 u16 cmd_action, void *pdata_buf)
914{
915 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400916 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200917
Dan Williams0aef64d2007-08-02 11:31:18 -0400918 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400919 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200920 cmd->result = 0;
921
922 if (pdata_buf)
923 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
924 else
925 memset(fwt_access, 0, sizeof(*fwt_access));
926
927 fwt_access->action = cpu_to_le16(cmd_action);
928
Holger Schurig8ff12da2007-08-02 11:54:31 -0400929 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200930 return 0;
931}
932
Holger Schurig69f90322007-11-23 15:43:44 +0100933static int lbs_cmd_mesh_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200934 struct cmd_ds_command *cmd,
935 u16 cmd_action, void *pdata_buf)
936{
937 struct cmd_ds_mesh_access *mesh_access = &cmd->params.mesh;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400938 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200939
Dan Williams0aef64d2007-08-02 11:31:18 -0400940 cmd->command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400941 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200942 cmd->result = 0;
943
944 if (pdata_buf)
945 memcpy(mesh_access, pdata_buf, sizeof(*mesh_access));
946 else
947 memset(mesh_access, 0, sizeof(*mesh_access));
948
949 mesh_access->action = cpu_to_le16(cmd_action);
950
Holger Schurig8ff12da2007-08-02 11:54:31 -0400951 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200952 return 0;
953}
954
Brajesh Dave96287ac2007-11-20 17:44:28 -0500955static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
956 struct cmd_ds_command *cmd,
957 u16 cmd_action)
958{
959 struct cmd_ds_802_11_beacon_control
960 *bcn_ctrl = &cmd->params.bcn_ctrl;
961 struct lbs_adapter *adapter = priv->adapter;
962
963 lbs_deb_enter(LBS_DEB_CMD);
964 cmd->size =
965 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
966 + S_DS_GEN);
967 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
968
969 bcn_ctrl->action = cpu_to_le16(cmd_action);
970 bcn_ctrl->beacon_enable = cpu_to_le16(adapter->beacon_enable);
971 bcn_ctrl->beacon_period = cpu_to_le16(adapter->beacon_period);
972
973 lbs_deb_leave(LBS_DEB_CMD);
974 return 0;
975}
976
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -0400977/*
Holger Schurig10078322007-11-15 18:05:47 -0500978 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -0400979 * the command timer, because it does not account for queued commands.
980 */
Holger Schurig69f90322007-11-23 15:43:44 +0100981void lbs_queue_cmd(struct lbs_adapter *adapter,
982 struct cmd_ctrl_node *cmdnode,
983 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200984{
985 unsigned long flags;
986 struct cmd_ds_command *cmdptr;
987
Holger Schurig8ff12da2007-08-02 11:54:31 -0400988 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989
990 if (!cmdnode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400991 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992 goto done;
993 }
994
995 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
996 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997 lbs_deb_host("QUEUE_CMD: cmdptr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998 goto done;
999 }
1000
1001 /* Exit_PS command needs to be queued in the header always. */
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001002 if (le16_to_cpu(cmdptr->command) == CMD_802_11_PS_MODE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001003 struct cmd_ds_802_11_ps_mode *psm = &cmdptr->params.psmode;
Dan Williams0aef64d2007-08-02 11:31:18 -04001004 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005 if (adapter->psstate != PS_STATE_FULL_POWER)
1006 addtail = 0;
1007 }
1008 }
1009
1010 spin_lock_irqsave(&adapter->driver_lock, flags);
1011
David Woodhouseac472462007-12-08 00:35:00 +00001012 if (addtail)
Li Zefanabe3ed12007-12-06 13:01:21 +01001013 list_add_tail(&cmdnode->list, &adapter->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001014 else
Li Zefanabe3ed12007-12-06 13:01:21 +01001015 list_add(&cmdnode->list, &adapter->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016
1017 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1018
Holger Schurig8ff12da2007-08-02 11:54:31 -04001019 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001020 le16_to_cpu(((struct cmd_ds_gen*)cmdnode->bufvirtualaddr)->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021
1022done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001023 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001024}
1025
1026/*
1027 * TODO: Fix the issue when DownloadcommandToStation is being called the
Holger Schurig8ff12da2007-08-02 11:54:31 -04001028 * second time when the command times out. All the cmdptr->xxx are in little
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001029 * endian and therefore all the comparissions will fail.
1030 * For now - we are not performing the endian conversion the second time - but
1031 * for PS and DEEP_SLEEP we need to worry
1032 */
Holger Schurig69f90322007-11-23 15:43:44 +01001033static int DownloadcommandToStation(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001034 struct cmd_ctrl_node *cmdnode)
1035{
1036 unsigned long flags;
1037 struct cmd_ds_command *cmdptr;
Holger Schurig69f90322007-11-23 15:43:44 +01001038 struct lbs_adapter *adapter = priv->adapter;
Eugene Teob031ac12007-08-02 13:18:07 -04001039 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001040 u16 cmdsize;
1041 u16 command;
1042
Holger Schurig8ff12da2007-08-02 11:54:31 -04001043 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044
1045 if (!adapter || !cmdnode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001046 lbs_deb_host("DNLD_CMD: adapter or cmdmode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001047 goto done;
1048 }
1049
1050 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1051
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052 spin_lock_irqsave(&adapter->driver_lock, flags);
1053 if (!cmdptr || !cmdptr->size) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001054 lbs_deb_host("DNLD_CMD: cmdptr is NULL or zero\n");
Holger Schurig10078322007-11-15 18:05:47 -05001055 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001056 spin_unlock_irqrestore(&adapter->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001057 goto done;
1058 }
1059
1060 adapter->cur_cmd = cmdnode;
1061 adapter->cur_cmd_retcode = 0;
1062 spin_unlock_irqrestore(&adapter->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001063
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001064 cmdsize = le16_to_cpu(cmdptr->size);
1065 command = le16_to_cpu(cmdptr->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066
Holger Schurig8ff12da2007-08-02 11:54:31 -04001067 lbs_deb_host("DNLD_CMD: command 0x%04x, size %d, jiffies %lu\n",
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001068 command, cmdsize, jiffies);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001069 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", cmdnode->bufvirtualaddr, cmdsize);
1070
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071 cmdnode->cmdwaitqwoken = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072
Holger Schurig208fdd22007-05-25 12:17:06 -04001073 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmdptr, cmdsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001074
1075 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001076 lbs_deb_host("DNLD_CMD: hw_host_to_card failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001077 spin_lock_irqsave(&adapter->driver_lock, flags);
Pierre Ossman794760f2007-08-20 12:24:42 -04001078 adapter->cur_cmd_retcode = ret;
Holger Schurig10078322007-11-15 18:05:47 -05001079 __lbs_cleanup_and_insert_cmd(priv, adapter->cur_cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080 adapter->cur_cmd = NULL;
1081 spin_unlock_irqrestore(&adapter->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082 goto done;
1083 }
1084
Holger Schurig8ff12da2007-08-02 11:54:31 -04001085 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001086
1087 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001088 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1089 || command == CMD_802_11_ASSOCIATE)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090 mod_timer(&adapter->command_timer, jiffies + (10*HZ));
1091 else
1092 mod_timer(&adapter->command_timer, jiffies + (5*HZ));
1093
1094 ret = 0;
1095
Holger Schurig9012b282007-05-25 11:27:16 -04001096done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001097 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001098 return ret;
1099}
1100
Holger Schurig69f90322007-11-23 15:43:44 +01001101static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102 struct cmd_ds_command *cmd)
1103{
1104 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1105
Holger Schurig9012b282007-05-25 11:27:16 -04001106 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107
Dan Williams0aef64d2007-08-02 11:31:18 -04001108 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001109 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001110 mac->action = cpu_to_le16(priv->adapter->currentpacketfilter);
1111
Holger Schurig8ff12da2007-08-02 11:54:31 -04001112 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001113 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114
Holger Schurig9012b282007-05-25 11:27:16 -04001115 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001116 return 0;
1117}
1118
1119/**
1120 * This function inserts command node to cmdfreeq
1121 * after cleans it. Requires adapter->driver_lock held.
1122 */
Holger Schurig69f90322007-11-23 15:43:44 +01001123void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1124 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001125{
Holger Schurig69f90322007-11-23 15:43:44 +01001126 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001127
1128 if (!ptempcmd)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001129 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001130
1131 cleanup_cmdnode(ptempcmd);
Li Zefanabe3ed12007-12-06 13:01:21 +01001132 list_add_tail(&ptempcmd->list, &adapter->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001133}
1134
Holger Schurig69f90322007-11-23 15:43:44 +01001135static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1136 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001137{
1138 unsigned long flags;
1139
1140 spin_lock_irqsave(&priv->adapter->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001141 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001142 spin_unlock_irqrestore(&priv->adapter->driver_lock, flags);
1143}
1144
Holger Schurig69f90322007-11-23 15:43:44 +01001145int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146{
1147 int ret = 0;
1148
Holger Schurig9012b282007-05-25 11:27:16 -04001149 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001150
Holger Schurig10078322007-11-15 18:05:47 -05001151 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001152 CMD_802_11_RADIO_CONTROL,
1153 CMD_ACT_SET,
1154 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155
Holger Schurig8ff12da2007-08-02 11:54:31 -04001156 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001157 priv->adapter->radioon, priv->adapter->preamble);
1158
Holger Schurig9012b282007-05-25 11:27:16 -04001159 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001160 return ret;
1161}
1162
Holger Schurig69f90322007-11-23 15:43:44 +01001163int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164{
1165 int ret = 0;
1166
Holger Schurig9012b282007-05-25 11:27:16 -04001167 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001169 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001170 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001171 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001172
Holger Schurig9012b282007-05-25 11:27:16 -04001173 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001174 return ret;
1175}
1176
1177/**
1178 * @brief This function prepare the command before send to firmware.
1179 *
Holger Schurig69f90322007-11-23 15:43:44 +01001180 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181 * @param cmd_no command number
1182 * @param cmd_action command action: GET or SET
1183 * @param wait_option wait option: wait response or not
1184 * @param cmd_oid cmd oid: treated as sub command
1185 * @param pdata_buf A pointer to informaion buffer
1186 * @return 0 or -1
1187 */
Holger Schurig69f90322007-11-23 15:43:44 +01001188int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189 u16 cmd_no,
1190 u16 cmd_action,
1191 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1192{
1193 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +01001194 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001195 struct cmd_ctrl_node *cmdnode;
1196 struct cmd_ds_command *cmdptr;
1197 unsigned long flags;
1198
Holger Schurig8ff12da2007-08-02 11:54:31 -04001199 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001200
1201 if (!adapter) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001202 lbs_deb_host("PREP_CMD: adapter is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001203 ret = -1;
1204 goto done;
1205 }
1206
1207 if (adapter->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001208 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209 ret = -1;
1210 goto done;
1211 }
1212
Holger Schurig0d61d042007-12-05 17:58:06 +01001213 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214
1215 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001216 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217
1218 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001219 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001220 ret = -1;
1221 goto done;
1222 }
1223
David Woodhousef5ece8f2007-12-01 15:15:41 +00001224 lbs_set_cmd_ctrl_node(priv, cmdnode, wait_option, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001225
1226 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1227
Holger Schurig8ff12da2007-08-02 11:54:31 -04001228 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229
1230 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001231 lbs_deb_host("PREP_CMD: cmdptr is NULL\n");
Holger Schurig10078322007-11-15 18:05:47 -05001232 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001233 ret = -1;
1234 goto done;
1235 }
1236
1237 /* Set sequence number, command and INT option */
1238 adapter->seqnum++;
1239 cmdptr->seqnum = cpu_to_le16(adapter->seqnum);
1240
David Woodhouse981f1872007-05-25 23:36:54 -04001241 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242 cmdptr->result = 0;
1243
1244 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001245 case CMD_GET_HW_SPEC:
Holger Schurig10078322007-11-15 18:05:47 -05001246 ret = lbs_cmd_hw_spec(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001247 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001248 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001249 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001250 break;
1251
Dan Williams0aef64d2007-08-02 11:31:18 -04001252 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001253 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001254 break;
1255
Dan Williams0aef64d2007-08-02 11:31:18 -04001256 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001257 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001258 break;
1259
Dan Williams0aef64d2007-08-02 11:31:18 -04001260 case CMD_802_11_ASSOCIATE:
1261 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001262 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001263 break;
1264
Dan Williams0aef64d2007-08-02 11:31:18 -04001265 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001266 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001267 break;
1268
Dan Williams0aef64d2007-08-02 11:31:18 -04001269 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001270 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001271 break;
1272
Dan Williams0aef64d2007-08-02 11:31:18 -04001273 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001274 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001276 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 break;
1278
Dan Williams0aef64d2007-08-02 11:31:18 -04001279 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001280 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001281 break;
1282
Dan Williams0aef64d2007-08-02 11:31:18 -04001283 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001284 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285 break;
1286
Dan Williams0aef64d2007-08-02 11:31:18 -04001287 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001288 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001289 break;
1290
Dan Williams0aef64d2007-08-02 11:31:18 -04001291 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001292 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293 break;
1294
Dan Williams0aef64d2007-08-02 11:31:18 -04001295 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001296 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297 cmd_action, cmd_oid, pdata_buf);
1298 break;
1299
Dan Williams0aef64d2007-08-02 11:31:18 -04001300 case CMD_MAC_REG_ACCESS:
1301 case CMD_BBP_REG_ACCESS:
1302 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001303 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001304 break;
1305
Dan Williams0aef64d2007-08-02 11:31:18 -04001306 case CMD_802_11_RF_CHANNEL:
Holger Schurig10078322007-11-15 18:05:47 -05001307 ret = lbs_cmd_802_11_rf_channel(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001308 cmd_action, pdata_buf);
1309 break;
1310
Dan Williams0aef64d2007-08-02 11:31:18 -04001311 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001312 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001313 cmd_action, pdata_buf);
1314 break;
1315
Dan Williams0aef64d2007-08-02 11:31:18 -04001316 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001317 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001318 break;
1319
Dan Williams0aef64d2007-08-02 11:31:18 -04001320 case CMD_802_11_DATA_RATE:
Holger Schurig10078322007-11-15 18:05:47 -05001321 ret = lbs_cmd_802_11_data_rate(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001322 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001323 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001324 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001325 cmdptr, cmd_action);
1326 break;
1327
Dan Williams0aef64d2007-08-02 11:31:18 -04001328 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001329 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330 break;
1331
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001332 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001333 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001334 cmd_action, pdata_buf);
1335 break;
1336
Dan Williams0aef64d2007-08-02 11:31:18 -04001337 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001338 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339 break;
1340
Dan Williams0aef64d2007-08-02 11:31:18 -04001341 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001342 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343 break;
1344
Dan Williams0aef64d2007-08-02 11:31:18 -04001345 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001346 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001347 break;
1348
Dan Williams0aef64d2007-08-02 11:31:18 -04001349 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001350 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001351 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001352 break;
1353
Dan Williams0aef64d2007-08-02 11:31:18 -04001354 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001355 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001356 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 break;
1358
Dan Williams0aef64d2007-08-02 11:31:18 -04001359 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001361 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001362 break;
1363
Dan Williams0aef64d2007-08-02 11:31:18 -04001364 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001365 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001366 break;
1367
Dan Williams0aef64d2007-08-02 11:31:18 -04001368 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001369 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001370 cmd_action, pdata_buf);
1371 break;
1372
Dan Williams0aef64d2007-08-02 11:31:18 -04001373 case CMD_802_11_SET_AFC:
1374 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001375
1376 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001377 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1378 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001379
1380 memmove(&cmdptr->params.afc,
1381 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1382
1383 ret = 0;
1384 goto done;
1385
Dan Williams0aef64d2007-08-02 11:31:18 -04001386 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001387 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001388 cmd_no, cmd_action);
1389 break;
1390
Dan Williams0aef64d2007-08-02 11:31:18 -04001391 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001392 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001394 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001395 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001396 cmd_action, pdata_buf);
David Woodhousef5ece8f2007-12-01 15:15:41 +00001397 lbs_set_cmd_ctrl_node(priv, cmdnode, 0, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398 break;
1399
Dan Williams0aef64d2007-08-02 11:31:18 -04001400 case CMD_802_11_TPC_CFG:
1401 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402 cmdptr->size =
1403 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1404 S_DS_GEN);
1405
1406 memmove(&cmdptr->params.tpccfg,
1407 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1408
1409 ret = 0;
1410 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001411 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001412 {
1413 struct mrvlietypes_ledgpio *gpio =
1414 (struct mrvlietypes_ledgpio*)
1415 cmdptr->params.ledgpio.data;
1416
1417 memmove(&cmdptr->params.ledgpio,
1418 pdata_buf,
1419 sizeof(struct cmd_ds_802_11_led_ctrl));
1420
1421 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001423
1424#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1425 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001426 cpu_to_le16(le16_to_cpu(gpio->header.len)
1427 + S_DS_GEN
1428 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1429 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430
1431 ret = 0;
1432 break;
1433 }
Holger Schurig3a188642007-11-26 10:07:14 +01001434 case CMD_802_11_SUBSCRIBE_EVENT:
1435 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1436 cmd_action, pdata_buf);
1437 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001438 case CMD_802_11_PWR_CFG:
1439 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001440 cmdptr->size =
1441 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1442 S_DS_GEN);
1443 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1444 sizeof(struct cmd_ds_802_11_pwr_cfg));
1445
1446 ret = 0;
1447 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001448 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001449 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001450 break;
1451
Dan Williams0aef64d2007-08-02 11:31:18 -04001452 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001453 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001454 break;
1455
Dan Williams0aef64d2007-08-02 11:31:18 -04001456 case CMD_MESH_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001457 ret = lbs_cmd_mesh_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458 break;
1459
Dan Williams0aef64d2007-08-02 11:31:18 -04001460 case CMD_GET_TSF:
1461 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001462 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1463 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464 ret = 0;
1465 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001466 case CMD_802_11_BEACON_CTRL:
1467 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1468 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001470 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 ret = -1;
1472 break;
1473 }
1474
1475 /* return error, since the command preparation failed */
1476 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001477 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001478 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479 ret = -1;
1480 goto done;
1481 }
1482
1483 cmdnode->cmdwaitqwoken = 0;
1484
Holger Schurig10078322007-11-15 18:05:47 -05001485 lbs_queue_cmd(adapter, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001486 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001487
Dan Williams0aef64d2007-08-02 11:31:18 -04001488 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001489 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001490 might_sleep();
1491 wait_event_interruptible(cmdnode->cmdwait_q,
1492 cmdnode->cmdwaitqwoken);
1493 }
1494
1495 spin_lock_irqsave(&adapter->driver_lock, flags);
1496 if (adapter->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001497 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498 adapter->cur_cmd_retcode);
1499 adapter->cur_cmd_retcode = 0;
1500 ret = -1;
1501 }
1502 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1503
1504done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001505 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001506 return ret;
1507}
Holger Schurig10078322007-11-15 18:05:47 -05001508EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001509
1510/**
1511 * @brief This function allocates the command buffer and link
1512 * it to command free queue.
1513 *
Holger Schurig69f90322007-11-23 15:43:44 +01001514 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001515 * @return 0 or -1
1516 */
Holger Schurig69f90322007-11-23 15:43:44 +01001517int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001518{
1519 int ret = 0;
1520 u32 ulbufsize;
1521 u32 i;
1522 struct cmd_ctrl_node *tempcmd_array;
1523 u8 *ptempvirtualaddr;
Holger Schurig69f90322007-11-23 15:43:44 +01001524 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525
Holger Schurig8ff12da2007-08-02 11:54:31 -04001526 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001527
1528 /* Allocate and initialize cmdCtrlNode */
1529 ulbufsize = sizeof(struct cmd_ctrl_node) * MRVDRV_NUM_OF_CMD_BUFFER;
1530
Holger Schurigfb3dddf2007-05-25 11:58:22 -04001531 if (!(tempcmd_array = kzalloc(ulbufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001532 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533 ret = -1;
1534 goto done;
1535 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001536 adapter->cmd_array = tempcmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537
1538 /* Allocate and initialize command buffers */
1539 ulbufsize = MRVDRV_SIZE_OF_CMD_BUFFER;
1540 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
Holger Schurigfb3dddf2007-05-25 11:58:22 -04001541 if (!(ptempvirtualaddr = kzalloc(ulbufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001542 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001543 ret = -1;
1544 goto done;
1545 }
1546
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001547 /* Update command buffer virtual */
1548 tempcmd_array[i].bufvirtualaddr = ptempvirtualaddr;
1549 }
1550
1551 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1552 init_waitqueue_head(&tempcmd_array[i].cmdwait_q);
Holger Schurig10078322007-11-15 18:05:47 -05001553 lbs_cleanup_and_insert_cmd(priv, &tempcmd_array[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001554 }
1555
1556 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001557
1558done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001559 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001560 return ret;
1561}
1562
1563/**
1564 * @brief This function frees the command buffer.
1565 *
Holger Schurig69f90322007-11-23 15:43:44 +01001566 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567 * @return 0 or -1
1568 */
Holger Schurig69f90322007-11-23 15:43:44 +01001569int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001570{
David Woodhouse981f1872007-05-25 23:36:54 -04001571 u32 ulbufsize; /* Someone needs to die for this. Slowly and painfully */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001572 unsigned int i;
1573 struct cmd_ctrl_node *tempcmd_array;
Holger Schurig69f90322007-11-23 15:43:44 +01001574 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575
Holger Schurig8ff12da2007-08-02 11:54:31 -04001576 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001577
1578 /* need to check if cmd array is allocated or not */
1579 if (adapter->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001580 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001581 goto done;
1582 }
1583
1584 tempcmd_array = adapter->cmd_array;
1585
1586 /* Release shared memory buffers */
1587 ulbufsize = MRVDRV_SIZE_OF_CMD_BUFFER;
1588 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1589 if (tempcmd_array[i].bufvirtualaddr) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001590 kfree(tempcmd_array[i].bufvirtualaddr);
1591 tempcmd_array[i].bufvirtualaddr = NULL;
1592 }
1593 }
1594
1595 /* Release cmd_ctrl_node */
1596 if (adapter->cmd_array) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001597 kfree(adapter->cmd_array);
1598 adapter->cmd_array = NULL;
1599 }
1600
1601done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001602 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001603 return 0;
1604}
1605
1606/**
1607 * @brief This function gets a free command node if available in
1608 * command free queue.
1609 *
Holger Schurig69f90322007-11-23 15:43:44 +01001610 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001611 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1612 */
Holger Schurig0d61d042007-12-05 17:58:06 +01001613struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001614{
1615 struct cmd_ctrl_node *tempnode;
Holger Schurig69f90322007-11-23 15:43:44 +01001616 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001617 unsigned long flags;
1618
Holger Schurig8ff12da2007-08-02 11:54:31 -04001619 lbs_deb_enter(LBS_DEB_HOST);
1620
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001621 if (!adapter)
1622 return NULL;
1623
1624 spin_lock_irqsave(&adapter->driver_lock, flags);
1625
1626 if (!list_empty(&adapter->cmdfreeq)) {
Li Zefanabe3ed12007-12-06 13:01:21 +01001627 tempnode = list_first_entry(&adapter->cmdfreeq,
1628 struct cmd_ctrl_node, list);
1629 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001630 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001631 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001632 tempnode = NULL;
1633 }
1634
1635 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1636
Holger Schurig8ff12da2007-08-02 11:54:31 -04001637 if (tempnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001638 cleanup_cmdnode(tempnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001639
Holger Schurig8ff12da2007-08-02 11:54:31 -04001640 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001641 return tempnode;
1642}
1643
1644/**
1645 * @brief This function cleans command node.
1646 *
1647 * @param ptempnode A pointer to cmdCtrlNode structure
1648 * @return n/a
1649 */
1650static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode)
1651{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001652 lbs_deb_enter(LBS_DEB_HOST);
1653
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654 if (!ptempnode)
1655 return;
1656 ptempnode->cmdwaitqwoken = 1;
1657 wake_up_interruptible(&ptempnode->cmdwait_q);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001658 ptempnode->wait_option = 0;
1659 ptempnode->pdata_buf = NULL;
David Woodhouse17230472007-12-07 15:13:05 +00001660 ptempnode->pdata_size = NULL;
1661 ptempnode->callback = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001662
1663 if (ptempnode->bufvirtualaddr != NULL)
1664 memset(ptempnode->bufvirtualaddr, 0, MRVDRV_SIZE_OF_CMD_BUFFER);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001665
1666 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001667}
1668
1669/**
1670 * @brief This function initializes the command node.
1671 *
Holger Schurig69f90322007-11-23 15:43:44 +01001672 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001673 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674 * @param wait_option wait option: wait response or not
1675 * @param pdata_buf A pointer to informaion buffer
1676 * @return 0 or -1
1677 */
Holger Schurig69f90322007-11-23 15:43:44 +01001678void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001679 struct cmd_ctrl_node *ptempnode,
David Woodhousef5ece8f2007-12-01 15:15:41 +00001680 u16 wait_option, void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001681{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001682 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001683
1684 if (!ptempnode)
1685 return;
1686
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001687 ptempnode->wait_option = wait_option;
1688 ptempnode->pdata_buf = pdata_buf;
David Woodhouse17230472007-12-07 15:13:05 +00001689 ptempnode->pdata_size = NULL;
1690 ptempnode->callback = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691
Holger Schurig8ff12da2007-08-02 11:54:31 -04001692 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001693}
1694
1695/**
1696 * @brief This function executes next command in command
1697 * pending queue. It will put fimware back to PS mode
1698 * if applicable.
1699 *
Holger Schurig69f90322007-11-23 15:43:44 +01001700 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701 * @return 0 or -1
1702 */
Holger Schurig69f90322007-11-23 15:43:44 +01001703int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001704{
Holger Schurig69f90322007-11-23 15:43:44 +01001705 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001706 struct cmd_ctrl_node *cmdnode = NULL;
1707 struct cmd_ds_command *cmdptr;
1708 unsigned long flags;
1709 int ret = 0;
1710
Holger Schurig8ff12da2007-08-02 11:54:31 -04001711 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001712 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001713 // data packet is received
1714 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001715
1716 spin_lock_irqsave(&adapter->driver_lock, flags);
1717
1718 if (adapter->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001719 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1721 ret = -1;
1722 goto done;
1723 }
1724
1725 if (!list_empty(&adapter->cmdpendingq)) {
Li Zefanabe3ed12007-12-06 13:01:21 +01001726 cmdnode = list_first_entry(&adapter->cmdpendingq,
1727 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001728 }
1729
1730 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1731
1732 if (cmdnode) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001733 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1734
1735 if (is_command_allowed_in_ps(cmdptr->command)) {
David Woodhouse981f1872007-05-25 23:36:54 -04001736 if ((adapter->psstate == PS_STATE_SLEEP) ||
1737 (adapter->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001738 lbs_deb_host(
1739 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001740 le16_to_cpu(cmdptr->command),
1741 adapter->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001742 ret = -1;
1743 goto done;
1744 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001745 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
1746 "0x%04x in psstate %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001747 le16_to_cpu(cmdptr->command),
1748 adapter->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001749 } else if (adapter->psstate != PS_STATE_FULL_POWER) {
1750 /*
1751 * 1. Non-PS command:
1752 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001753 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001754 * 2. PS command but not Exit_PS:
1755 * Ignore it.
1756 * 3. PS command Exit_PS:
1757 * Set needtowakeup to TRUE if current state is SLEEP,
1758 * otherwise send this command down to firmware
1759 * immediately.
1760 */
1761 if (cmdptr->command !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001762 cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001763 /* Prepare to send Exit PS,
1764 * this non PS command will be sent later */
1765 if ((adapter->psstate == PS_STATE_SLEEP)
1766 || (adapter->psstate == PS_STATE_PRE_SLEEP)
1767 ) {
1768 /* w/ new scheme, it will not reach here.
1769 since it is blocked in main_thread. */
1770 adapter->needtowakeup = 1;
1771 } else
Holger Schurig10078322007-11-15 18:05:47 -05001772 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773
1774 ret = 0;
1775 goto done;
1776 } else {
1777 /*
1778 * PS command. Ignore it if it is not Exit_PS.
1779 * otherwise send it down immediately.
1780 */
1781 struct cmd_ds_802_11_ps_mode *psm =
1782 &cmdptr->params.psmode;
1783
Holger Schurig8ff12da2007-08-02 11:54:31 -04001784 lbs_deb_host(
1785 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001786 psm->action);
1787 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001788 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001789 lbs_deb_host(
1790 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001791 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001792 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001793
1794 ret = 0;
1795 goto done;
1796 }
1797
David Woodhouse981f1872007-05-25 23:36:54 -04001798 if ((adapter->psstate == PS_STATE_SLEEP) ||
1799 (adapter->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001800 lbs_deb_host(
1801 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001802 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001803 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804 adapter->needtowakeup = 1;
1805
1806 ret = 0;
1807 goto done;
1808 }
1809
Holger Schurig8ff12da2007-08-02 11:54:31 -04001810 lbs_deb_host(
1811 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001812 }
1813 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001814 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001815 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001816 le16_to_cpu(cmdptr->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817 DownloadcommandToStation(priv, cmdnode);
1818 } else {
1819 /*
1820 * check if in power save mode, if yes, put the device back
1821 * to PS mode
1822 */
Holger Schurig10078322007-11-15 18:05:47 -05001823 if ((adapter->psmode != LBS802_11POWERMODECAM) &&
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001824 (adapter->psstate == PS_STATE_FULL_POWER) &&
Brajesh Dave01d77d82007-11-20 17:44:14 -05001825 ((adapter->connect_status == LBS_CONNECTED) ||
1826 (adapter->mesh_connect_status == LBS_CONNECTED))) {
David Woodhouse981f1872007-05-25 23:36:54 -04001827 if (adapter->secinfo.WPAenabled ||
1828 adapter->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001829 /* check for valid WPA group keys */
David Woodhouse981f1872007-05-25 23:36:54 -04001830 if (adapter->wpa_mcast_key.len ||
1831 adapter->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001832 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001833 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1834 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001835 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836 }
1837 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001838 lbs_deb_host(
1839 "EXEC_NEXT_CMD: cmdpendingq empty, "
1840 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001841 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001842 }
1843 }
1844 }
1845
1846 ret = 0;
1847done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001848 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001849 return ret;
1850}
1851
Holger Schurig69f90322007-11-23 15:43:44 +01001852void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001853{
1854 union iwreq_data iwrq;
1855 u8 buf[50];
1856
Holger Schurig8ff12da2007-08-02 11:54:31 -04001857 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001858
1859 memset(&iwrq, 0, sizeof(union iwreq_data));
1860 memset(buf, 0, sizeof(buf));
1861
1862 snprintf(buf, sizeof(buf) - 1, "%s", str);
1863
1864 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1865
1866 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001867 lbs_deb_wext("event indication string %s\n", (char *)buf);
1868 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1869 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870
Holger Schurig634b8f42007-05-25 13:05:16 -04001871 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001872
Holger Schurig8ff12da2007-08-02 11:54:31 -04001873 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001874}
1875
Holger Schurig69f90322007-11-23 15:43:44 +01001876static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001877{
1878 unsigned long flags;
Holger Schurig69f90322007-11-23 15:43:44 +01001879 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001880 int ret = 0;
1881
Holger Schurig8ff12da2007-08-02 11:54:31 -04001882 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001883
Holger Schurig8ff12da2007-08-02 11:54:31 -04001884 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001885 size);
1886
Holger Schurig8ff12da2007-08-02 11:54:31 -04001887 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001888
Holger Schurig208fdd22007-05-25 12:17:06 -04001889 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04001890 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001891
1892 spin_lock_irqsave(&adapter->driver_lock, flags);
1893 if (adapter->intcounter || adapter->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001894 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895 adapter->intcounter, adapter->currenttxskb);
1896 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1897
1898 if (ret) {
1899 lbs_pr_alert(
1900 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1901 } else {
1902 spin_lock_irqsave(&adapter->driver_lock, flags);
1903 if (!adapter->intcounter) {
1904 adapter->psstate = PS_STATE_SLEEP;
1905 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001906 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907 adapter->intcounter);
1908 }
1909 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1910
Holger Schurig8ff12da2007-08-02 11:54:31 -04001911 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001912 }
1913
Holger Schurig8ff12da2007-08-02 11:54:31 -04001914 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001915 return ret;
1916}
1917
Holger Schurig69f90322007-11-23 15:43:44 +01001918void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001919{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001920 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001921
1922 /*
1923 * PS is currently supported only in Infrastructure mode
1924 * Remove this check if it is to be supported in IBSS mode also
1925 */
1926
Holger Schurig10078322007-11-15 18:05:47 -05001927 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001928 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001929
Holger Schurig8ff12da2007-08-02 11:54:31 -04001930 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001931}
1932
1933/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001934 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001935 *
Holger Schurig69f90322007-11-23 15:43:44 +01001936 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001937 * @param wait_option wait response or not
1938 * @return n/a
1939 */
Holger Schurig69f90322007-11-23 15:43:44 +01001940void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001941{
David Woodhouse981f1872007-05-25 23:36:54 -04001942 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001943
Holger Schurig8ff12da2007-08-02 11:54:31 -04001944 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001945
Holger Schurig10078322007-11-15 18:05:47 -05001946 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001947
Holger Schurig10078322007-11-15 18:05:47 -05001948 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001949 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001950 wait_option, 0, &Localpsmode);
1951
Holger Schurig8ff12da2007-08-02 11:54:31 -04001952 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001953}
1954
1955/**
1956 * @brief This function checks condition and prepares to
1957 * send sleep confirm command to firmware if ok.
1958 *
Holger Schurig69f90322007-11-23 15:43:44 +01001959 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960 * @param psmode Power Saving mode
1961 * @return n/a
1962 */
Holger Schurig69f90322007-11-23 15:43:44 +01001963void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964{
1965 unsigned long flags =0;
Holger Schurig69f90322007-11-23 15:43:44 +01001966 struct lbs_adapter *adapter = priv->adapter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001967 u8 allowed = 1;
1968
Holger Schurig8ff12da2007-08-02 11:54:31 -04001969 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970
Holger Schurig634b8f42007-05-25 13:05:16 -04001971 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001972 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001973 lbs_deb_host("dnld_sent was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001974 }
1975
1976 spin_lock_irqsave(&adapter->driver_lock, flags);
1977 if (adapter->cur_cmd) {
1978 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001979 lbs_deb_host("cur_cmd was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001980 }
1981 if (adapter->intcounter > 0) {
1982 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001983 lbs_deb_host("intcounter %d", adapter->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001984 }
1985 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1986
1987 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001988 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
1989 sendconfirmsleep(priv, (u8 *) & adapter->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001990 sizeof(struct PS_CMD_ConfirmSleep));
1991 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001992 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001993 }
1994
Holger Schurig8ff12da2007-08-02 11:54:31 -04001995 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996}
Holger Schurig675787e2007-12-05 17:58:11 +01001997
1998
1999/**
2000 * @brief Simple way to call firmware functions
2001 *
2002 * @param priv A pointer to struct lbs_private structure
2003 * @param psmode one of the many CMD_802_11_xxxx
2004 * @param cmd pointer to the parameters structure for above command
2005 * (this should not include the command, size, sequence
2006 * and result fields from struct cmd_ds_gen)
2007 * @param cmd_size size structure pointed to by cmd
2008 * @param rsp pointer to an area where the result should be placed
2009 * @param rsp_size pointer to the size of the rsp area. If the firmware
2010 * returns fewer bytes, then this *rsp_size will be
2011 * changed to the actual size.
2012 * @return -1 in case of a higher level error, otherwise
2013 * the result code from the firmware
2014 */
David Woodhouse17230472007-12-07 15:13:05 +00002015
2016static int lbs_cmd_callback(uint16_t respcmd, struct cmd_ds_command *resp, struct lbs_private *priv)
2017{
2018 struct cmd_ds_gen *r = (struct cmd_ds_gen *)resp;
2019 struct lbs_adapter *adapter = priv->adapter;
Holger Schurigc2df2ef2007-12-07 15:30:44 +00002020 u16 sz = le16_to_cpu(resp->size) - S_DS_GEN;
David Woodhouse17230472007-12-07 15:13:05 +00002021
2022 if (sz > *adapter->cur_cmd->pdata_size) {
2023 lbs_pr_err("response 0x%04x doesn't fit into buffer (%d > %d)\n",
2024 respcmd, sz, *adapter->cur_cmd->pdata_size);
2025 sz = *adapter->cur_cmd->pdata_size;
2026 }
2027 memcpy(adapter->cur_cmd->pdata_buf, r->cmdresp, sz);
2028 *adapter->cur_cmd->pdata_size = sz;
2029
2030 return 0;
2031}
2032
2033int lbs_cmd(struct lbs_private *priv, u16 command, void *cmd, int cmd_size,
2034 void *rsp, int *rsp_size)
Holger Schurig675787e2007-12-05 17:58:11 +01002035{
2036 struct lbs_adapter *adapter = priv->adapter;
2037 struct cmd_ctrl_node *cmdnode;
2038 struct cmd_ds_gen *cmdptr;
2039 unsigned long flags;
2040 int ret = 0;
2041
2042 lbs_deb_enter(LBS_DEB_HOST);
2043 lbs_deb_host("rsp at %p, rsp_size at %p\n", rsp, rsp_size);
2044
2045 if (!adapter || !rsp_size) {
2046 lbs_deb_host("PREP_CMD: adapter is NULL\n");
2047 ret = -1;
2048 goto done;
2049 }
2050
2051 if (adapter->surpriseremoved) {
2052 lbs_deb_host("PREP_CMD: card removed\n");
2053 ret = -1;
2054 goto done;
2055 }
2056
2057 cmdnode = lbs_get_cmd_ctrl_node(priv);
2058
2059 if (cmdnode == NULL) {
2060 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2061
2062 /* Wake up main thread to execute next command */
2063 wake_up_interruptible(&priv->waitq);
2064 ret = -1;
2065 goto done;
2066 }
2067
2068 cmdptr = (struct cmd_ds_gen *)cmdnode->bufvirtualaddr;
2069 cmdnode->wait_option = CMD_OPTION_WAITFORRSP;
2070 cmdnode->pdata_buf = rsp;
2071 cmdnode->pdata_size = rsp_size;
David Woodhouse17230472007-12-07 15:13:05 +00002072 cmdnode->callback = lbs_cmd_callback;
Holger Schurig675787e2007-12-05 17:58:11 +01002073
2074 /* Set sequence number, clean result, move to buffer */
2075 adapter->seqnum++;
2076 cmdptr->command = cpu_to_le16(command);
David Woodhouse6228c0a2007-12-06 12:38:31 +00002077 cmdptr->size = cpu_to_le16(cmd_size + S_DS_GEN);
Holger Schurig675787e2007-12-05 17:58:11 +01002078 cmdptr->seqnum = cpu_to_le16(adapter->seqnum);
2079 cmdptr->result = 0;
2080 memcpy(cmdptr->cmdresp, cmd, cmd_size);
2081
2082 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2083
2084 /* here was the big old switch() statement, which is now obsolete,
2085 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2086
2087 cmdnode->cmdwaitqwoken = 0;
2088 lbs_queue_cmd(adapter, cmdnode, 1);
2089 wake_up_interruptible(&priv->waitq);
2090
2091 might_sleep();
2092 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2093
2094 spin_lock_irqsave(&adapter->driver_lock, flags);
2095 if (adapter->cur_cmd_retcode) {
2096 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
2097 adapter->cur_cmd_retcode);
2098 adapter->cur_cmd_retcode = 0;
2099 ret = -1;
2100 }
2101 spin_unlock_irqrestore(&adapter->driver_lock, flags);
2102
2103done:
2104 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2105 return ret;
2106}
2107EXPORT_SYMBOL_GPL(lbs_cmd);
2108
2109