blob: 9d621fe7f08afee3a8f3001638d09af0bff6725a [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
5
6#include <net/iw_handler.h>
7#include "host.h"
8#include "hostcmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "decl.h"
10#include "defs.h"
11#include "dev.h"
12#include "join.h"
13#include "wext.h"
Dan Williams6e66f032007-12-11 12:42:16 -050014#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015
16static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode);
Holger Schurig0d61d042007-12-05 17:58:06 +010017struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
18void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
19 struct cmd_ctrl_node *ptempnode,
20 u16 wait_option, void *pdata_buf);
21
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023/**
Dan Williams852e1f22007-12-10 15:24:47 -050024 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025 *
26 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050027 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028 */
Dan Williams852e1f22007-12-10 15:24:47 -050029static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020030{
Dan Williams852e1f22007-12-10 15:24:47 -050031 switch (cmd) {
32 case CMD_802_11_RSSI:
33 return 1;
34 default:
35 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020037 return 0;
38}
39
Dan Williams6e66f032007-12-11 12:42:16 -050040/**
41 * @brief Updates the hardware details like MAC address and regulatory region
42 *
43 * @param priv A pointer to struct lbs_private structure
44 *
45 * @return 0 on success, error on failure
46 */
47int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020048{
Dan Williams6e66f032007-12-11 12:42:16 -050049 struct cmd_ds_get_hw_spec cmd;
50 int ret = -1;
51 u32 i;
52 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020053
Holger Schurig9012b282007-05-25 11:27:16 -040054 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055
Dan Williams6e66f032007-12-11 12:42:16 -050056 memset(&cmd, 0, sizeof(cmd));
57 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
58 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
59 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, cmd);
60 if (ret)
61 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062
Dan Williams6e66f032007-12-11 12:42:16 -050063 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
64 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
65
66 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
67 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
68 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
69 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
70 print_mac(mac, cmd.permanentaddr));
71 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
72 cmd.hwifversion, cmd.version);
73
74 /* Clamp region code to 8-bit since FW spec indicates that it should
75 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
76 * returns non-zero high 8 bits here.
77 */
78 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
79
80 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
81 /* use the region code to search for the index */
82 if (priv->regioncode == lbs_region_code_to_index[i])
83 break;
84 }
85
86 /* if it's unidentified region code, use the default (USA) */
87 if (i >= MRVDRV_MAX_REGION_CODE) {
88 priv->regioncode = 0x10;
89 lbs_pr_info("unidentified region code; using the default (USA)\n");
90 }
91
92 if (priv->current_addr[0] == 0xff)
93 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
94
95 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
96 if (priv->mesh_dev)
97 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
98
99 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
100 ret = -1;
101 goto out;
102 }
103
104 if (lbs_set_universaltable(priv, 0)) {
105 ret = -1;
106 goto out;
107 }
108
109out:
Holger Schurig9012b282007-05-25 11:27:16 -0400110 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500111 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112}
113
Holger Schurig69f90322007-11-23 15:43:44 +0100114static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200115 struct cmd_ds_command *cmd,
116 u16 cmd_action)
117{
118 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200119
Holger Schurig9012b282007-05-25 11:27:16 -0400120 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200121
Dan Williams0aef64d2007-08-02 11:31:18 -0400122 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400123 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
124 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200125 psm->action = cpu_to_le16(cmd_action);
126 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400127 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400128 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400129 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200130
Holger Schurig252cf0d2007-08-02 13:09:34 -0400131 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400132 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200133 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400134 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200135 break;
136
Dan Williams0aef64d2007-08-02 11:31:18 -0400137 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400138 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200139 break;
140
Dan Williams0aef64d2007-08-02 11:31:18 -0400141 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400142 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200143 break;
144
145 default:
146 break;
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_inactivity_timeout(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 struct cmd_ds_command *cmd,
155 u16 cmd_action, void *pdata_buf)
156{
157 u16 *timeout = pdata_buf;
158
Holger Schurig8ff12da2007-08-02 11:54:31 -0400159 lbs_deb_enter(LBS_DEB_CMD);
160
Dan Williams0aef64d2007-08-02 11:31:18 -0400161 cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200162 cmd->size =
163 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
164 + S_DS_GEN);
165
166 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
167
168 if (cmd_action)
David Woodhouse981f1872007-05-25 23:36:54 -0400169 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200170 else
171 cmd->params.inactivity_timeout.timeout = 0;
172
Holger Schurig8ff12da2007-08-02 11:54:31 -0400173 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200174 return 0;
175}
176
Holger Schurig69f90322007-11-23 15:43:44 +0100177static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200178 struct cmd_ds_command *cmd,
179 u16 cmd_action)
180{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200181 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
182
Holger Schurig9012b282007-05-25 11:27:16 -0400183 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184
David Woodhouse981f1872007-05-25 23:36:54 -0400185 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
186 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400187 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200188
Dan Williams0aef64d2007-08-02 11:31:18 -0400189 if (cmd_action == CMD_ACT_GET) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000190 memset(&priv->sp, 0, sizeof(struct sleep_params));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
192 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400193 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200194 sp->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000195 sp->error = cpu_to_le16(priv->sp.sp_error);
196 sp->offset = cpu_to_le16(priv->sp.sp_offset);
197 sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime);
198 sp->calcontrol = (u8) priv->sp.sp_calcontrol;
199 sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk;
200 sp->reserved = cpu_to_le16(priv->sp.sp_reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201 }
202
Holger Schurig9012b282007-05-25 11:27:16 -0400203 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200204 return 0;
205}
206
Holger Schurig69f90322007-11-23 15:43:44 +0100207static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208 struct cmd_ds_command *cmd,
209 u32 cmd_act,
210 void * pdata_buf)
211{
212 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200213 int ret = 0;
214 struct assoc_request * assoc_req = pdata_buf;
215
Holger Schurig9012b282007-05-25 11:27:16 -0400216 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200217
Dan Williams0aef64d2007-08-02 11:31:18 -0400218 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400219 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200220
Dan Williams0aef64d2007-08-02 11:31:18 -0400221 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200222 int i;
223
224 if (!assoc_req) {
Holger Schurig9012b282007-05-25 11:27:16 -0400225 lbs_deb_cmd("Invalid association request!");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200226 ret = -1;
227 goto done;
228 }
229
Dan Williams0aef64d2007-08-02 11:31:18 -0400230 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231
232 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400233 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400234 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200235
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236 /* Copy key types and material to host command structure */
237 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400238 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239
240 switch (pkey->len) {
241 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200242 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200243 memmove(&wep->keymaterial[i], pkey->key,
244 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400245 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200246 break;
247 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200248 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200249 memmove(&wep->keymaterial[i], pkey->key,
250 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400251 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200252 break;
253 case 0:
254 break;
255 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400256 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 i, pkey->len);
258 ret = -1;
259 goto done;
260 break;
261 }
262 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400263 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400265 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266
267 /* default tx key index */
David Woodhouseaa21c002007-12-08 20:04:36 +0000268 wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400269 (u32)CMD_WEP_KEY_INDEX_MASK));
David Woodhouseaa21c002007-12-08 20:04:36 +0000270 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200271 }
272
273 ret = 0;
274
275done:
Holger Schurig9012b282007-05-25 11:27:16 -0400276 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277 return ret;
278}
279
Holger Schurig69f90322007-11-23 15:43:44 +0100280static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200281 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400282 u16 cmd_action,
283 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200284{
285 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400286 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400287
288 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200289
Dan Williams0aef64d2007-08-02 11:31:18 -0400290 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400291 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200292 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400293
Dan Williams0aef64d2007-08-02 11:31:18 -0400294 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400295 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400296 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400297 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400298 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400299 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 }
301
Dan Williams90a42212007-05-25 23:01:24 -0400302 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200303 return 0;
304}
305
306
Holger Schurig3a188642007-11-26 10:07:14 +0100307static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
308{
309 ssize_t pos = 0;
310 struct mrvlietypesheader *tlv_h;
311 while (pos < size) {
312 u16 length;
313 tlv_h = (struct mrvlietypesheader *) tlv;
314 if (tlv_h->len == 0)
315 return pos;
316 length = le16_to_cpu(tlv_h->len) +
317 sizeof(struct mrvlietypesheader);
318 pos += length;
319 tlv += length;
320 }
321 return pos;
322}
323
324
325static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
326 struct cmd_ds_command *cmd, u16 cmd_action,
327 void *pdata_buf)
328{
329 struct cmd_ds_802_11_subscribe_event *events =
330 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
331
332 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
333 * for various Marvell TLVs */
334
335 lbs_deb_enter(LBS_DEB_CMD);
336
337 cmd->size = cpu_to_le16(sizeof(*events)
338 - sizeof(events->tlv)
339 + S_DS_GEN);
340 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
341 if (cmd_action == CMD_ACT_GET) {
342 cmd->params.subscribe_event.events = 0;
343 } else {
344 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
345 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
346 cmd->params.subscribe_event.events = events->events;
347 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
348 }
349
350 lbs_deb_leave(LBS_DEB_CMD);
351}
352
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200353static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400354 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200355{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400356 lbs_deb_enter(LBS_DEB_CMD);
357
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200358 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400359 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200360 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200361 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
362 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400363 }
364 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200365 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
366 }
367
368 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400369 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200370 pkeyparamset->keylen = cpu_to_le16(pkey->len);
371 memcpy(pkeyparamset->key, pkey->key, pkey->len);
372 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
373 + sizeof(pkeyparamset->keyinfo)
374 + sizeof(pkeyparamset->keylen)
375 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400376 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377}
378
Holger Schurig69f90322007-11-23 15:43:44 +0100379static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200380 struct cmd_ds_command *cmd,
381 u16 cmd_action,
382 u32 cmd_oid, void *pdata_buf)
383{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384 struct cmd_ds_802_11_key_material *pkeymaterial =
385 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400386 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387 int ret = 0;
388 int index = 0;
389
Holger Schurig9012b282007-05-25 11:27:16 -0400390 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200391
Dan Williams0aef64d2007-08-02 11:31:18 -0400392 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200393 pkeymaterial->action = cpu_to_le16(cmd_action);
394
Dan Williams0aef64d2007-08-02 11:31:18 -0400395 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400396 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200397 ret = 0;
398 goto done;
399 }
400
401 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
402
Dan Williams90a42212007-05-25 23:01:24 -0400403 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400405 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200406 index++;
407 }
408
Dan Williams90a42212007-05-25 23:01:24 -0400409 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200410 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400411 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200412 index++;
413 }
414
415 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400416 + sizeof (pkeymaterial->action)
417 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200418
419 ret = 0;
420
421done:
Holger Schurig9012b282007-05-25 11:27:16 -0400422 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200423 return ret;
424}
425
Holger Schurig69f90322007-11-23 15:43:44 +0100426static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427 struct cmd_ds_command *cmd, int cmd_action)
428{
429 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
430
Holger Schurig8ff12da2007-08-02 11:54:31 -0400431 lbs_deb_enter(LBS_DEB_CMD);
432
Dan Williams0aef64d2007-08-02 11:31:18 -0400433 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
435 reset->action = cpu_to_le16(cmd_action);
436
Holger Schurig8ff12da2007-08-02 11:54:31 -0400437 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200438 return 0;
439}
440
Holger Schurig69f90322007-11-23 15:43:44 +0100441static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442 struct cmd_ds_command *cmd)
443{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400444 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400445 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446 cmd->size =
447 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
448
Holger Schurig8ff12da2007-08-02 11:54:31 -0400449 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200450 return 0;
451}
452
Holger Schurig69f90322007-11-23 15:43:44 +0100453static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454 struct cmd_ds_command *cmd)
455{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400456 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400457 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400459 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200460
Holger Schurig8ff12da2007-08-02 11:54:31 -0400461 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200462 return 0;
463}
464
Holger Schurig69f90322007-11-23 15:43:44 +0100465static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200466 struct cmd_ds_command *cmd,
467 int cmd_action,
468 int cmd_oid, void *pdata_buf)
469{
470 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200471 u8 ucTemp;
472
Holger Schurig9012b282007-05-25 11:27:16 -0400473 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474
Holger Schurig9012b282007-05-25 11:27:16 -0400475 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200476
Dan Williams0aef64d2007-08-02 11:31:18 -0400477 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400478 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479
480 switch (cmd_oid) {
481 case OID_802_11_INFRASTRUCTURE_MODE:
482 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400483 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400484 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
485 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000486 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400487 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200488 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400489 } else {
490 /* Infra and Auto modes */
491 ucTemp = SNMP_MIB_VALUE_INFRA;
492 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493
494 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
495
496 break;
497 }
498
499 case OID_802_11D_ENABLE:
500 {
501 u32 ulTemp;
502
Dan Williams0aef64d2007-08-02 11:31:18 -0400503 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200504
Dan Williams0aef64d2007-08-02 11:31:18 -0400505 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000506 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
507 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200508 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400509 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510 cpu_to_le16((u16) ulTemp);
511 }
512 break;
513 }
514
515 case OID_802_11_FRAGMENTATION_THRESHOLD:
516 {
517 u32 ulTemp;
518
Dan Williams0aef64d2007-08-02 11:31:18 -0400519 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200520
Dan Williams0aef64d2007-08-02 11:31:18 -0400521 if (cmd_action == CMD_ACT_GET) {
522 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
523 } else if (cmd_action == CMD_ACT_SET) {
524 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400525 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200526 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400527 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528 cpu_to_le16((u16) ulTemp);
529
530 }
531
532 break;
533 }
534
535 case OID_802_11_RTS_THRESHOLD:
536 {
537
538 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000539 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200540
Dan Williams0aef64d2007-08-02 11:31:18 -0400541 if (cmd_action == CMD_ACT_GET) {
542 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
543 } else if (cmd_action == CMD_ACT_SET) {
544 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400545 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
546 ulTemp = *((u32 *)pdata_buf);
547 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200548 cpu_to_le16((u16) ulTemp);
549
550 }
551 break;
552 }
553 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400554 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200555
Dan Williams0aef64d2007-08-02 11:31:18 -0400556 if (cmd_action == CMD_ACT_GET) {
557 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
558 } else if (cmd_action == CMD_ACT_SET) {
559 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200560 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400561 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000562 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 }
564
565 break;
566 default:
567 break;
568 }
569
Holger Schurig9012b282007-05-25 11:27:16 -0400570 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200571 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400572 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
573 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200574
Holger Schurig9012b282007-05-25 11:27:16 -0400575 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400576 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400577 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
578 le16_to_cpu(pSNMPMIB->bufsize),
579 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200580
Holger Schurig9012b282007-05-25 11:27:16 -0400581 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200582 return 0;
583}
584
Holger Schurig69f90322007-11-23 15:43:44 +0100585static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200586 struct cmd_ds_command *cmd,
587 int cmd_action)
588{
David Woodhouse981f1872007-05-25 23:36:54 -0400589 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200590
Holger Schurig9012b282007-05-25 11:27:16 -0400591 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200592
593 cmd->size =
594 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
595 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400596 cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200597
598 pradiocontrol->action = cpu_to_le16(cmd_action);
599
David Woodhouseaa21c002007-12-08 20:04:36 +0000600 switch (priv->preamble) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400601 case CMD_TYPE_SHORT_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200602 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
603 break;
604
Dan Williams0aef64d2007-08-02 11:31:18 -0400605 case CMD_TYPE_LONG_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200606 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
607 break;
608
Dan Williams0aef64d2007-08-02 11:31:18 -0400609 case CMD_TYPE_AUTO_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610 default:
611 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
612 break;
613 }
614
David Woodhouseaa21c002007-12-08 20:04:36 +0000615 if (priv->radioon)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200616 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
617 else
618 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
619
Holger Schurig9012b282007-05-25 11:27:16 -0400620 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200621 return 0;
622}
623
Holger Schurig69f90322007-11-23 15:43:44 +0100624static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200625 struct cmd_ds_command *cmd,
626 u16 cmd_action, void *pdata_buf)
627{
628
629 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
630
Holger Schurig9012b282007-05-25 11:27:16 -0400631 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
633 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400634 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400635 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400636 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637
David Woodhouse981f1872007-05-25 23:36:54 -0400638 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
639 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
640 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641
642 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400643 case CMD_ACT_TX_POWER_OPT_GET:
644 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200645 prtp->currentlevel = 0;
646 break;
647
Dan Williams0aef64d2007-08-02 11:31:18 -0400648 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
649 prtp->action = cpu_to_le16(CMD_ACT_SET);
650 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200651 break;
652
Dan Williams0aef64d2007-08-02 11:31:18 -0400653 case CMD_ACT_TX_POWER_OPT_SET_MID:
654 prtp->action = cpu_to_le16(CMD_ACT_SET);
655 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200656 break;
657
Dan Williams0aef64d2007-08-02 11:31:18 -0400658 case CMD_ACT_TX_POWER_OPT_SET_LOW:
659 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
661 break;
662 }
Holger Schurig9012b282007-05-25 11:27:16 -0400663
664 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200665 return 0;
666}
667
Holger Schurig69f90322007-11-23 15:43:44 +0100668static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400669 struct cmd_ds_command *cmd,
670 u16 cmd_action, void *pdata_buf)
671{
672 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
673
674 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
675 cmd->size =
676 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
677 S_DS_GEN);
678
679 monitor->action = cpu_to_le16(cmd_action);
680 if (cmd_action == CMD_ACT_SET) {
681 monitor->mode =
682 cpu_to_le16((u16) (*(u32 *) pdata_buf));
683 }
684
685 return 0;
686}
687
Holger Schurig69f90322007-11-23 15:43:44 +0100688static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200689 struct cmd_ds_command *cmd,
690 u16 cmd_action)
691{
692 struct cmd_ds_802_11_rate_adapt_rateset
693 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694
Holger Schurig8ff12da2007-08-02 11:54:31 -0400695 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200696 cmd->size =
697 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
698 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400699 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200700
David Woodhouse981f1872007-05-25 23:36:54 -0400701 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000702 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
703 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200704
Holger Schurig9012b282007-05-25 11:27:16 -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_data_rate(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200710 struct cmd_ds_command *cmd,
711 u16 cmd_action)
712{
713 struct cmd_ds_802_11_data_rate *pdatarate = &cmd->params.drate;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714
Holger Schurig9012b282007-05-25 11:27:16 -0400715 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200716
David Woodhouse981f1872007-05-25 23:36:54 -0400717 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_data_rate) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200718 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400719 cmd->command = cpu_to_le16(CMD_802_11_DATA_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200720 memset(pdatarate, 0, sizeof(struct cmd_ds_802_11_data_rate));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200721 pdatarate->action = cpu_to_le16(cmd_action);
722
Dan Williamsffcae952007-08-02 11:35:46 -0400723 if (cmd_action == CMD_ACT_SET_TX_FIX_RATE) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000724 pdatarate->rates[0] = lbs_data_rate_to_fw_index(priv->cur_rate);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400725 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000726 priv->cur_rate);
Dan Williamsffcae952007-08-02 11:35:46 -0400727 } else if (cmd_action == CMD_ACT_SET_TX_AUTO) {
Holger Schurig8ff12da2007-08-02 11:54:31 -0400728 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200729 }
730
Holger Schurig9012b282007-05-25 11:27:16 -0400731 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200732 return 0;
733}
734
Holger Schurig69f90322007-11-23 15:43:44 +0100735static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200736 struct cmd_ds_command *cmd,
737 u16 cmd_action)
738{
739 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200740
Holger Schurig8ff12da2007-08-02 11:54:31 -0400741 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400742 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200743 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400744 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200745
Holger Schurig8ff12da2007-08-02 11:54:31 -0400746 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200747 pMCastAdr->action = cpu_to_le16(cmd_action);
748 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000749 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
750 memcpy(pMCastAdr->maclist, priv->multicastlist,
751 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200752
Holger Schurig8ff12da2007-08-02 11:54:31 -0400753 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200754 return 0;
755}
756
Holger Schurig69f90322007-11-23 15:43:44 +0100757static int lbs_cmd_802_11_rf_channel(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200758 struct cmd_ds_command *cmd,
759 int option, void *pdata_buf)
760{
761 struct cmd_ds_802_11_rf_channel *rfchan = &cmd->params.rfchannel;
762
Holger Schurig8ff12da2007-08-02 11:54:31 -0400763 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400764 cmd->command = cpu_to_le16(CMD_802_11_RF_CHANNEL);
David Woodhouse981f1872007-05-25 23:36:54 -0400765 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rf_channel) +
766 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200767
Dan Williams0aef64d2007-08-02 11:31:18 -0400768 if (option == CMD_OPT_802_11_RF_CHANNEL_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200769 rfchan->currentchannel = cpu_to_le16(*((u16 *) pdata_buf));
770 }
771
772 rfchan->action = cpu_to_le16(option);
773
Holger Schurig8ff12da2007-08-02 11:54:31 -0400774 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200775 return 0;
776}
777
Holger Schurig69f90322007-11-23 15:43:44 +0100778static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200779 struct cmd_ds_command *cmd)
780{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200781
Holger Schurig8ff12da2007-08-02 11:54:31 -0400782 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400783 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400784 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400785 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200786
787 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000788 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
789 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
790 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
791 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
792 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
793 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200794
Holger Schurig8ff12da2007-08-02 11:54:31 -0400795 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200796 return 0;
797}
798
Holger Schurig69f90322007-11-23 15:43:44 +0100799static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200800 struct cmd_ds_command *cmdptr,
801 u8 cmd_action, void *pdata_buf)
802{
Holger Schurig10078322007-11-15 18:05:47 -0500803 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200804
Holger Schurig9012b282007-05-25 11:27:16 -0400805 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806
Holger Schurig10078322007-11-15 18:05:47 -0500807 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000809 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400810 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811 {
812 struct cmd_ds_mac_reg_access *macreg;
813
814 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400815 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
816 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200817 macreg =
818 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
819 macreg;
820
821 macreg->action = cpu_to_le16(cmd_action);
822 macreg->offset = cpu_to_le16((u16) offval->offset);
823 macreg->value = cpu_to_le32(offval->value);
824
825 break;
826 }
827
Dan Williams0aef64d2007-08-02 11:31:18 -0400828 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829 {
830 struct cmd_ds_bbp_reg_access *bbpreg;
831
832 cmdptr->size =
833 cpu_to_le16(sizeof
834 (struct cmd_ds_bbp_reg_access)
835 + S_DS_GEN);
836 bbpreg =
837 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
838 bbpreg;
839
840 bbpreg->action = cpu_to_le16(cmd_action);
841 bbpreg->offset = cpu_to_le16((u16) offval->offset);
842 bbpreg->value = (u8) offval->value;
843
844 break;
845 }
846
Dan Williams0aef64d2007-08-02 11:31:18 -0400847 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200848 {
849 struct cmd_ds_rf_reg_access *rfreg;
850
851 cmdptr->size =
852 cpu_to_le16(sizeof
853 (struct cmd_ds_rf_reg_access) +
854 S_DS_GEN);
855 rfreg =
856 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
857 rfreg;
858
859 rfreg->action = cpu_to_le16(cmd_action);
860 rfreg->offset = cpu_to_le16((u16) offval->offset);
861 rfreg->value = (u8) offval->value;
862
863 break;
864 }
865
866 default:
867 break;
868 }
869
Holger Schurig9012b282007-05-25 11:27:16 -0400870 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200871 return 0;
872}
873
Holger Schurig69f90322007-11-23 15:43:44 +0100874static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875 struct cmd_ds_command *cmd,
876 u16 cmd_action)
877{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200878
Holger Schurig8ff12da2007-08-02 11:54:31 -0400879 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400880 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400881 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882 S_DS_GEN);
883 cmd->result = 0;
884
885 cmd->params.macadd.action = cpu_to_le16(cmd_action);
886
Dan Williams0aef64d2007-08-02 11:31:18 -0400887 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000889 priv->current_addr, ETH_ALEN);
890 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891 }
892
Holger Schurig8ff12da2007-08-02 11:54:31 -0400893 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894 return 0;
895}
896
Holger Schurig69f90322007-11-23 15:43:44 +0100897static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898 struct cmd_ds_command *cmd,
899 int cmd_action, void *pdata_buf)
900{
Holger Schurig10078322007-11-15 18:05:47 -0500901 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200902
Holger Schurig9012b282007-05-25 11:27:16 -0400903 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200904
Dan Williams0aef64d2007-08-02 11:31:18 -0400905 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400906 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
907 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908 cmd->result = 0;
909
910 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
911 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
912 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
913 cmd->params.rdeeprom.value = 0;
914
Holger Schurig8ff12da2007-08-02 11:54:31 -0400915 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200916 return 0;
917}
918
Holger Schurig69f90322007-11-23 15:43:44 +0100919static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200920 struct cmd_ds_command *cmd,
921 u16 cmd_action, void *pdata_buf)
922{
923 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400924 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200925
Dan Williams0aef64d2007-08-02 11:31:18 -0400926 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400927 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200928 cmd->result = 0;
929 bt_access->action = cpu_to_le16(cmd_action);
930
931 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400932 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200933 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400934 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200935 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400936 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200937 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400938 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200939 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400940 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200941 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
942 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400943 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200944 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400945 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400946 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
947 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400948 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400949 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200950 default:
951 break;
952 }
Holger Schurig8ff12da2007-08-02 11:54:31 -0400953 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200954 return 0;
955}
956
Holger Schurig69f90322007-11-23 15:43:44 +0100957static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200958 struct cmd_ds_command *cmd,
959 u16 cmd_action, void *pdata_buf)
960{
961 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400962 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200963
Dan Williams0aef64d2007-08-02 11:31:18 -0400964 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400965 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200966 cmd->result = 0;
967
968 if (pdata_buf)
969 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
970 else
971 memset(fwt_access, 0, sizeof(*fwt_access));
972
973 fwt_access->action = cpu_to_le16(cmd_action);
974
Holger Schurig8ff12da2007-08-02 11:54:31 -0400975 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976 return 0;
977}
978
David Woodhouse301eacb2007-12-11 15:23:59 -0500979int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
980 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200981{
David Woodhouse301eacb2007-12-11 15:23:59 -0500982 int ret;
983
Holger Schurig8ff12da2007-08-02 11:54:31 -0400984 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985
David Woodhouse301eacb2007-12-11 15:23:59 -0500986 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
987 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
988 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989
David Woodhouse301eacb2007-12-11 15:23:59 -0500990 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200991
David Woodhouse301eacb2007-12-11 15:23:59 -0500992 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, (*cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200993
Holger Schurig8ff12da2007-08-02 11:54:31 -0400994 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -0500995 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996}
David Woodhouse301eacb2007-12-11 15:23:59 -0500997EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998
Brajesh Dave96287ac2007-11-20 17:44:28 -0500999static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1000 struct cmd_ds_command *cmd,
1001 u16 cmd_action)
1002{
1003 struct cmd_ds_802_11_beacon_control
1004 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001005
1006 lbs_deb_enter(LBS_DEB_CMD);
1007 cmd->size =
1008 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1009 + S_DS_GEN);
1010 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1011
1012 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001013 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1014 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001015
1016 lbs_deb_leave(LBS_DEB_CMD);
1017 return 0;
1018}
1019
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001020/*
Holger Schurig10078322007-11-15 18:05:47 -05001021 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001022 * the command timer, because it does not account for queued commands.
1023 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001024void lbs_queue_cmd(struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +01001025 struct cmd_ctrl_node *cmdnode,
1026 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027{
1028 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001029
Holger Schurig8ff12da2007-08-02 11:54:31 -04001030 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001031
Dan Williamsddac4522007-12-11 13:49:39 -05001032 if (!cmdnode || !cmdnode->cmdbuf) {
1033 lbs_deb_host("QUEUE_CMD: cmdnode or cmdbuf is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001034 goto done;
1035 }
1036
1037 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001038 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
1039 struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf;
1040
Dan Williams0aef64d2007-08-02 11:31:18 -04001041 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001042 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001043 addtail = 0;
1044 }
1045 }
1046
David Woodhouseaa21c002007-12-08 20:04:36 +00001047 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048
David Woodhouseac472462007-12-08 00:35:00 +00001049 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001050 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001051 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001052 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001053
David Woodhouseaa21c002007-12-08 20:04:36 +00001054 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055
Holger Schurig8ff12da2007-08-02 11:54:31 -04001056 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001057 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058
1059done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001060 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001061}
1062
1063/*
1064 * TODO: Fix the issue when DownloadcommandToStation is being called the
Holger Schurig8ff12da2007-08-02 11:54:31 -04001065 * second time when the command times out. All the cmdptr->xxx are in little
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066 * endian and therefore all the comparissions will fail.
1067 * For now - we are not performing the endian conversion the second time - but
1068 * for PS and DEEP_SLEEP we need to worry
1069 */
Holger Schurig69f90322007-11-23 15:43:44 +01001070static int DownloadcommandToStation(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071 struct cmd_ctrl_node *cmdnode)
1072{
1073 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001074 struct cmd_header *cmd;
Eugene Teob031ac12007-08-02 13:18:07 -04001075 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076 u16 cmdsize;
1077 u16 command;
1078
Holger Schurig8ff12da2007-08-02 11:54:31 -04001079 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080
David Woodhouseaa21c002007-12-08 20:04:36 +00001081 if (!priv || !cmdnode) {
1082 lbs_deb_host("DNLD_CMD: priv or cmdmode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001083 goto done;
1084 }
1085
Dan Williamsddac4522007-12-11 13:49:39 -05001086 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001087
David Woodhouseaa21c002007-12-08 20:04:36 +00001088 spin_lock_irqsave(&priv->driver_lock, flags);
Dan Williamsddac4522007-12-11 13:49:39 -05001089 if (!cmd || !cmd->size) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001090 lbs_deb_host("DNLD_CMD: cmdptr is NULL or zero\n");
Holger Schurig10078322007-11-15 18:05:47 -05001091 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001092 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093 goto done;
1094 }
1095
David Woodhouseaa21c002007-12-08 20:04:36 +00001096 priv->cur_cmd = cmdnode;
1097 priv->cur_cmd_retcode = 0;
1098 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099
Dan Williamsddac4522007-12-11 13:49:39 -05001100 cmdsize = le16_to_cpu(cmd->size);
1101 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102
Holger Schurig8ff12da2007-08-02 11:54:31 -04001103 lbs_deb_host("DNLD_CMD: command 0x%04x, size %d, jiffies %lu\n",
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001104 command, cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001105 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001106
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107 cmdnode->cmdwaitqwoken = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001108
Dan Williamsddac4522007-12-11 13:49:39 -05001109 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001110
1111 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001112 lbs_deb_host("DNLD_CMD: hw_host_to_card failed\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001113 spin_lock_irqsave(&priv->driver_lock, flags);
1114 priv->cur_cmd_retcode = ret;
1115 __lbs_cleanup_and_insert_cmd(priv, priv->cur_cmd);
1116 priv->cur_cmd = NULL;
1117 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001118 goto done;
1119 }
1120
Holger Schurig8ff12da2007-08-02 11:54:31 -04001121 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001122
1123 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001124 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1125 || command == CMD_802_11_ASSOCIATE)
David Woodhouseaa21c002007-12-08 20:04:36 +00001126 mod_timer(&priv->command_timer, jiffies + (10*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001127 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001128 mod_timer(&priv->command_timer, jiffies + (5*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001129
1130 ret = 0;
1131
Holger Schurig9012b282007-05-25 11:27:16 -04001132done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001133 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001134 return ret;
1135}
1136
Holger Schurig69f90322007-11-23 15:43:44 +01001137static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001138 struct cmd_ds_command *cmd)
1139{
1140 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1141
Holger Schurig9012b282007-05-25 11:27:16 -04001142 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143
Dan Williams0aef64d2007-08-02 11:31:18 -04001144 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001145 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001146 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001147
Holger Schurig8ff12da2007-08-02 11:54:31 -04001148 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001149 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001150
Holger Schurig9012b282007-05-25 11:27:16 -04001151 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001152 return 0;
1153}
1154
1155/**
1156 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001157 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158 */
Holger Schurig69f90322007-11-23 15:43:44 +01001159void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1160 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001162
1163 if (!ptempcmd)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001164 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165
1166 cleanup_cmdnode(ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001167 list_add_tail(&ptempcmd->list, &priv->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168}
1169
Holger Schurig69f90322007-11-23 15:43:44 +01001170static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1171 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001172{
1173 unsigned long flags;
1174
David Woodhouseaa21c002007-12-08 20:04:36 +00001175 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001176 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001177 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178}
1179
Holger Schurig69f90322007-11-23 15:43:44 +01001180int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181{
1182 int ret = 0;
1183
Holger Schurig9012b282007-05-25 11:27:16 -04001184 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001185
Holger Schurig10078322007-11-15 18:05:47 -05001186 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001187 CMD_802_11_RADIO_CONTROL,
1188 CMD_ACT_SET,
1189 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001190
Holger Schurig8ff12da2007-08-02 11:54:31 -04001191 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001192 priv->radioon, priv->preamble);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001193
Holger Schurig9012b282007-05-25 11:27:16 -04001194 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001195 return ret;
1196}
1197
Holger Schurig69f90322007-11-23 15:43:44 +01001198int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199{
1200 int ret = 0;
1201
Holger Schurig9012b282007-05-25 11:27:16 -04001202 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001203
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001204 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001205 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001206 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207
Holger Schurig9012b282007-05-25 11:27:16 -04001208 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209 return ret;
1210}
1211
1212/**
1213 * @brief This function prepare the command before send to firmware.
1214 *
Holger Schurig69f90322007-11-23 15:43:44 +01001215 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001216 * @param cmd_no command number
1217 * @param cmd_action command action: GET or SET
1218 * @param wait_option wait option: wait response or not
1219 * @param cmd_oid cmd oid: treated as sub command
1220 * @param pdata_buf A pointer to informaion buffer
1221 * @return 0 or -1
1222 */
Holger Schurig69f90322007-11-23 15:43:44 +01001223int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224 u16 cmd_no,
1225 u16 cmd_action,
1226 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1227{
1228 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229 struct cmd_ctrl_node *cmdnode;
1230 struct cmd_ds_command *cmdptr;
1231 unsigned long flags;
1232
Holger Schurig8ff12da2007-08-02 11:54:31 -04001233 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001234
David Woodhouseaa21c002007-12-08 20:04:36 +00001235 if (!priv) {
1236 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237 ret = -1;
1238 goto done;
1239 }
1240
David Woodhouseaa21c002007-12-08 20:04:36 +00001241 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001242 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243 ret = -1;
1244 goto done;
1245 }
1246
Holger Schurig0d61d042007-12-05 17:58:06 +01001247 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001248
1249 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001250 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251
1252 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001253 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001254 ret = -1;
1255 goto done;
1256 }
1257
David Woodhousef5ece8f2007-12-01 15:15:41 +00001258 lbs_set_cmd_ctrl_node(priv, cmdnode, wait_option, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001259
Dan Williamsddac4522007-12-11 13:49:39 -05001260 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261
Holger Schurig8ff12da2007-08-02 11:54:31 -04001262 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001263
1264 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001265 lbs_deb_host("PREP_CMD: cmdptr is NULL\n");
Holger Schurig10078322007-11-15 18:05:47 -05001266 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001267 ret = -1;
1268 goto done;
1269 }
1270
1271 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001272 priv->seqnum++;
1273 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001274
David Woodhouse981f1872007-05-25 23:36:54 -04001275 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001276 cmdptr->result = 0;
1277
1278 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001279 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001280 ret = lbs_cmd_802_11_ps_mode(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_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001284 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285 break;
1286
Dan Williams0aef64d2007-08-02 11:31:18 -04001287 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001288 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001289 break;
1290
Dan Williams0aef64d2007-08-02 11:31:18 -04001291 case CMD_802_11_ASSOCIATE:
1292 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001293 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001294 break;
1295
Dan Williams0aef64d2007-08-02 11:31:18 -04001296 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001297 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001298 break;
1299
Dan Williams0aef64d2007-08-02 11:31:18 -04001300 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001301 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001302 break;
1303
Dan Williams0aef64d2007-08-02 11:31:18 -04001304 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001305 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001306 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001307 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001308 break;
1309
Dan Williams0aef64d2007-08-02 11:31:18 -04001310 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001311 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312 break;
1313
Dan Williams0aef64d2007-08-02 11:31:18 -04001314 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001315 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001316 break;
1317
Dan Williams0aef64d2007-08-02 11:31:18 -04001318 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001319 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320 break;
1321
Dan Williams0aef64d2007-08-02 11:31:18 -04001322 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001323 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324 break;
1325
Dan Williams0aef64d2007-08-02 11:31:18 -04001326 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001327 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328 cmd_action, cmd_oid, pdata_buf);
1329 break;
1330
Dan Williams0aef64d2007-08-02 11:31:18 -04001331 case CMD_MAC_REG_ACCESS:
1332 case CMD_BBP_REG_ACCESS:
1333 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001334 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335 break;
1336
Dan Williams0aef64d2007-08-02 11:31:18 -04001337 case CMD_802_11_RF_CHANNEL:
Holger Schurig10078322007-11-15 18:05:47 -05001338 ret = lbs_cmd_802_11_rf_channel(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339 cmd_action, pdata_buf);
1340 break;
1341
Dan Williams0aef64d2007-08-02 11:31:18 -04001342 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001343 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001344 cmd_action, pdata_buf);
1345 break;
1346
Dan Williams0aef64d2007-08-02 11:31:18 -04001347 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001348 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001349 break;
1350
Dan Williams0aef64d2007-08-02 11:31:18 -04001351 case CMD_802_11_DATA_RATE:
Holger Schurig10078322007-11-15 18:05:47 -05001352 ret = lbs_cmd_802_11_data_rate(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001353 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001354 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001355 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001356 cmdptr, cmd_action);
1357 break;
1358
Dan Williams0aef64d2007-08-02 11:31:18 -04001359 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001360 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001361 break;
1362
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001363 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001364 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001365 cmd_action, pdata_buf);
1366 break;
1367
Dan Williams0aef64d2007-08-02 11:31:18 -04001368 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001369 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001370 break;
1371
Dan Williams0aef64d2007-08-02 11:31:18 -04001372 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001373 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001374 break;
1375
Dan Williams0aef64d2007-08-02 11:31:18 -04001376 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001377 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378 break;
1379
Dan Williams0aef64d2007-08-02 11:31:18 -04001380 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001381 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001382 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001383 break;
1384
Dan Williams0aef64d2007-08-02 11:31:18 -04001385 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001386 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001387 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001388 break;
1389
Dan Williams0aef64d2007-08-02 11:31:18 -04001390 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001391 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001392 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 break;
1394
Dan Williams0aef64d2007-08-02 11:31:18 -04001395 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001396 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397 break;
1398
Dan Williams0aef64d2007-08-02 11:31:18 -04001399 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001400 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401 cmd_action, pdata_buf);
1402 break;
1403
Dan Williams0aef64d2007-08-02 11:31:18 -04001404 case CMD_802_11_SET_AFC:
1405 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001406
1407 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001408 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1409 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001410
1411 memmove(&cmdptr->params.afc,
1412 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1413
1414 ret = 0;
1415 goto done;
1416
Dan Williams0aef64d2007-08-02 11:31:18 -04001417 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001418 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001419 cmd_no, cmd_action);
1420 break;
1421
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001423 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001425 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001426 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001427 cmd_action, pdata_buf);
David Woodhousef5ece8f2007-12-01 15:15:41 +00001428 lbs_set_cmd_ctrl_node(priv, cmdnode, 0, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001429 break;
1430
Dan Williams0aef64d2007-08-02 11:31:18 -04001431 case CMD_802_11_TPC_CFG:
1432 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 cmdptr->size =
1434 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1435 S_DS_GEN);
1436
1437 memmove(&cmdptr->params.tpccfg,
1438 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1439
1440 ret = 0;
1441 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001442 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001443 {
1444 struct mrvlietypes_ledgpio *gpio =
1445 (struct mrvlietypes_ledgpio*)
1446 cmdptr->params.ledgpio.data;
1447
1448 memmove(&cmdptr->params.ledgpio,
1449 pdata_buf,
1450 sizeof(struct cmd_ds_802_11_led_ctrl));
1451
1452 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001453 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001454
1455#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1456 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001457 cpu_to_le16(le16_to_cpu(gpio->header.len)
1458 + S_DS_GEN
1459 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1460 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001461
1462 ret = 0;
1463 break;
1464 }
Holger Schurig3a188642007-11-26 10:07:14 +01001465 case CMD_802_11_SUBSCRIBE_EVENT:
1466 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1467 cmd_action, pdata_buf);
1468 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001469 case CMD_802_11_PWR_CFG:
1470 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 cmdptr->size =
1472 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1473 S_DS_GEN);
1474 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1475 sizeof(struct cmd_ds_802_11_pwr_cfg));
1476
1477 ret = 0;
1478 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001479 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001480 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001481 break;
1482
Dan Williams0aef64d2007-08-02 11:31:18 -04001483 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001484 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001485 break;
1486
Dan Williams0aef64d2007-08-02 11:31:18 -04001487 case CMD_GET_TSF:
1488 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001489 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1490 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491 ret = 0;
1492 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001493 case CMD_802_11_BEACON_CTRL:
1494 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1495 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001496 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001497 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498 ret = -1;
1499 break;
1500 }
1501
1502 /* return error, since the command preparation failed */
1503 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001504 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001505 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001506 ret = -1;
1507 goto done;
1508 }
1509
1510 cmdnode->cmdwaitqwoken = 0;
1511
David Woodhouseaa21c002007-12-08 20:04:36 +00001512 lbs_queue_cmd(priv, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001513 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001514
Dan Williams0aef64d2007-08-02 11:31:18 -04001515 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001516 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001517 might_sleep();
1518 wait_event_interruptible(cmdnode->cmdwait_q,
1519 cmdnode->cmdwaitqwoken);
1520 }
1521
David Woodhouseaa21c002007-12-08 20:04:36 +00001522 spin_lock_irqsave(&priv->driver_lock, flags);
1523 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001524 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001525 priv->cur_cmd_retcode);
1526 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001527 ret = -1;
1528 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001529 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001530
1531done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001532 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533 return ret;
1534}
Holger Schurig10078322007-11-15 18:05:47 -05001535EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001536
1537/**
1538 * @brief This function allocates the command buffer and link
1539 * it to command free queue.
1540 *
Holger Schurig69f90322007-11-23 15:43:44 +01001541 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001542 * @return 0 or -1
1543 */
Holger Schurig69f90322007-11-23 15:43:44 +01001544int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001545{
1546 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001547 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001548 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001549 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001550
Holger Schurig8ff12da2007-08-02 11:54:31 -04001551 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001552
Dan Williamsddac4522007-12-11 13:49:39 -05001553 /* Allocate and initialize the command array */
1554 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1555 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001556 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001557 ret = -1;
1558 goto done;
1559 }
Dan Williamsddac4522007-12-11 13:49:39 -05001560 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001561
Dan Williamsddac4522007-12-11 13:49:39 -05001562 /* Allocate and initialize each command buffer in the command array */
1563 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1564 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1565 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001566 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567 ret = -1;
1568 goto done;
1569 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001570 }
1571
Dan Williamsddac4522007-12-11 13:49:39 -05001572 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1573 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1574 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001576 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001577
1578done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001579 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001580 return ret;
1581}
1582
1583/**
1584 * @brief This function frees the command buffer.
1585 *
Holger Schurig69f90322007-11-23 15:43:44 +01001586 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001587 * @return 0 or -1
1588 */
Holger Schurig69f90322007-11-23 15:43:44 +01001589int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001590{
Dan Williamsddac4522007-12-11 13:49:39 -05001591 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001592 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001593
Holger Schurig8ff12da2007-08-02 11:54:31 -04001594 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001595
1596 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001597 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001598 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001599 goto done;
1600 }
1601
Dan Williamsddac4522007-12-11 13:49:39 -05001602 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001603
1604 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001605 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1606 if (cmdarray[i].cmdbuf) {
1607 kfree(cmdarray[i].cmdbuf);
1608 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001609 }
1610 }
1611
1612 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001613 if (priv->cmd_array) {
1614 kfree(priv->cmd_array);
1615 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001616 }
1617
1618done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001619 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620 return 0;
1621}
1622
1623/**
1624 * @brief This function gets a free command node if available in
1625 * command free queue.
1626 *
Holger Schurig69f90322007-11-23 15:43:44 +01001627 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001628 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1629 */
Holger Schurig0d61d042007-12-05 17:58:06 +01001630struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001631{
1632 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001633 unsigned long flags;
1634
Holger Schurig8ff12da2007-08-02 11:54:31 -04001635 lbs_deb_enter(LBS_DEB_HOST);
1636
David Woodhouseaa21c002007-12-08 20:04:36 +00001637 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001638 return NULL;
1639
David Woodhouseaa21c002007-12-08 20:04:36 +00001640 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001641
David Woodhouseaa21c002007-12-08 20:04:36 +00001642 if (!list_empty(&priv->cmdfreeq)) {
1643 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001644 struct cmd_ctrl_node, list);
1645 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001647 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648 tempnode = NULL;
1649 }
1650
David Woodhouseaa21c002007-12-08 20:04:36 +00001651 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001652
Holger Schurig8ff12da2007-08-02 11:54:31 -04001653 if (tempnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654 cleanup_cmdnode(tempnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001655
Holger Schurig8ff12da2007-08-02 11:54:31 -04001656 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001657 return tempnode;
1658}
1659
1660/**
1661 * @brief This function cleans command node.
1662 *
1663 * @param ptempnode A pointer to cmdCtrlNode structure
1664 * @return n/a
1665 */
Dan Williamsddac4522007-12-11 13:49:39 -05001666static void cleanup_cmdnode(struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001667{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001668 lbs_deb_enter(LBS_DEB_HOST);
1669
Dan Williamsddac4522007-12-11 13:49:39 -05001670 if (!cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671 return;
Dan Williamsddac4522007-12-11 13:49:39 -05001672 cmdnode->cmdwaitqwoken = 1;
1673 wake_up_interruptible(&cmdnode->cmdwait_q);
1674 cmdnode->wait_option = 0;
1675 cmdnode->pdata_buf = NULL;
1676 cmdnode->callback = NULL;
1677 cmdnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001678
Dan Williamsddac4522007-12-11 13:49:39 -05001679 if (cmdnode->cmdbuf != NULL)
1680 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001681
1682 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001683}
1684
1685/**
1686 * @brief This function initializes the command node.
1687 *
Holger Schurig69f90322007-11-23 15:43:44 +01001688 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001689 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001690 * @param wait_option wait option: wait response or not
1691 * @param pdata_buf A pointer to informaion buffer
1692 * @return 0 or -1
1693 */
Holger Schurig69f90322007-11-23 15:43:44 +01001694void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001695 struct cmd_ctrl_node *ptempnode,
David Woodhousef5ece8f2007-12-01 15:15:41 +00001696 u16 wait_option, void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001697{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001698 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699
1700 if (!ptempnode)
1701 return;
1702
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001703 ptempnode->wait_option = wait_option;
1704 ptempnode->pdata_buf = pdata_buf;
David Woodhouse17230472007-12-07 15:13:05 +00001705 ptempnode->callback = NULL;
David Woodhouse1309b552007-12-10 13:36:10 -05001706 ptempnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001707
Holger Schurig8ff12da2007-08-02 11:54:31 -04001708 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001709}
1710
1711/**
1712 * @brief This function executes next command in command
1713 * pending queue. It will put fimware back to PS mode
1714 * if applicable.
1715 *
Holger Schurig69f90322007-11-23 15:43:44 +01001716 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001717 * @return 0 or -1
1718 */
Holger Schurig69f90322007-11-23 15:43:44 +01001719int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001721 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001722 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001723 unsigned long flags;
1724 int ret = 0;
1725
Holger Schurig8ff12da2007-08-02 11:54:31 -04001726 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001727 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001728 // data packet is received
1729 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001730
David Woodhouseaa21c002007-12-08 20:04:36 +00001731 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001732
David Woodhouseaa21c002007-12-08 20:04:36 +00001733 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001734 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001735 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001736 ret = -1;
1737 goto done;
1738 }
1739
David Woodhouseaa21c002007-12-08 20:04:36 +00001740 if (!list_empty(&priv->cmdpendingq)) {
1741 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001742 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001743 }
1744
David Woodhouseaa21c002007-12-08 20:04:36 +00001745 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001746
1747 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001748 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001749
Dan Williamsddac4522007-12-11 13:49:39 -05001750 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001751 if ((priv->psstate == PS_STATE_SLEEP) ||
1752 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001753 lbs_deb_host(
1754 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001755 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001756 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001757 ret = -1;
1758 goto done;
1759 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001760 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001761 "0x%04x in psstate %d\n",
1762 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001763 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001764 /*
1765 * 1. Non-PS command:
1766 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001767 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001768 * 2. PS command but not Exit_PS:
1769 * Ignore it.
1770 * 3. PS command Exit_PS:
1771 * Set needtowakeup to TRUE if current state is SLEEP,
1772 * otherwise send this command down to firmware
1773 * immediately.
1774 */
Dan Williamsddac4522007-12-11 13:49:39 -05001775 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001776 /* Prepare to send Exit PS,
1777 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001778 if ((priv->psstate == PS_STATE_SLEEP)
1779 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001780 ) {
1781 /* w/ new scheme, it will not reach here.
1782 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001783 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001784 } else
Holger Schurig10078322007-11-15 18:05:47 -05001785 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001786
1787 ret = 0;
1788 goto done;
1789 } else {
1790 /*
1791 * PS command. Ignore it if it is not Exit_PS.
1792 * otherwise send it down immediately.
1793 */
Dan Williamsddac4522007-12-11 13:49:39 -05001794 struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795
Holger Schurig8ff12da2007-08-02 11:54:31 -04001796 lbs_deb_host(
1797 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798 psm->action);
1799 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001800 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001801 lbs_deb_host(
1802 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001803 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001804 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001805
1806 ret = 0;
1807 goto done;
1808 }
1809
David Woodhouseaa21c002007-12-08 20:04:36 +00001810 if ((priv->psstate == PS_STATE_SLEEP) ||
1811 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001812 lbs_deb_host(
1813 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001814 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001815 lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001816 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817
1818 ret = 0;
1819 goto done;
1820 }
1821
Holger Schurig8ff12da2007-08-02 11:54:31 -04001822 lbs_deb_host(
1823 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001824 }
1825 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001826 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001827 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001828 le16_to_cpu(cmd->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001829 DownloadcommandToStation(priv, cmdnode);
1830 } else {
1831 /*
1832 * check if in power save mode, if yes, put the device back
1833 * to PS mode
1834 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001835 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1836 (priv->psstate == PS_STATE_FULL_POWER) &&
1837 ((priv->connect_status == LBS_CONNECTED) ||
1838 (priv->mesh_connect_status == LBS_CONNECTED))) {
1839 if (priv->secinfo.WPAenabled ||
1840 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001841 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001842 if (priv->wpa_mcast_key.len ||
1843 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001844 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001845 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1846 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001847 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001848 }
1849 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001850 lbs_deb_host(
1851 "EXEC_NEXT_CMD: cmdpendingq empty, "
1852 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001853 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001854 }
1855 }
1856 }
1857
1858 ret = 0;
1859done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001860 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001861 return ret;
1862}
1863
Holger Schurig69f90322007-11-23 15:43:44 +01001864void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001865{
1866 union iwreq_data iwrq;
1867 u8 buf[50];
1868
Holger Schurig8ff12da2007-08-02 11:54:31 -04001869 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870
1871 memset(&iwrq, 0, sizeof(union iwreq_data));
1872 memset(buf, 0, sizeof(buf));
1873
1874 snprintf(buf, sizeof(buf) - 1, "%s", str);
1875
1876 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1877
1878 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001879 lbs_deb_wext("event indication string %s\n", (char *)buf);
1880 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1881 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001882
Holger Schurig634b8f42007-05-25 13:05:16 -04001883 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001884
Holger Schurig8ff12da2007-08-02 11:54:31 -04001885 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001886}
1887
Holger Schurig69f90322007-11-23 15:43:44 +01001888static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001889{
1890 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001891 int ret = 0;
1892
Holger Schurig8ff12da2007-08-02 11:54:31 -04001893 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001894
Holger Schurig8ff12da2007-08-02 11:54:31 -04001895 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001896 size);
1897
Holger Schurig8ff12da2007-08-02 11:54:31 -04001898 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001899
Holger Schurig208fdd22007-05-25 12:17:06 -04001900 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04001901 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001902
David Woodhouseaa21c002007-12-08 20:04:36 +00001903 spin_lock_irqsave(&priv->driver_lock, flags);
1904 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001905 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001906 priv->intcounter, priv->currenttxskb);
1907 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001908
1909 if (ret) {
1910 lbs_pr_alert(
1911 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1912 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001913 spin_lock_irqsave(&priv->driver_lock, flags);
1914 if (!priv->intcounter) {
1915 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001916 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001917 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001918 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001919 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001920 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001921
Holger Schurig8ff12da2007-08-02 11:54:31 -04001922 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001923 }
1924
Holger Schurig8ff12da2007-08-02 11:54:31 -04001925 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001926 return ret;
1927}
1928
Holger Schurig69f90322007-11-23 15:43:44 +01001929void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001930{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001931 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001932
1933 /*
1934 * PS is currently supported only in Infrastructure mode
1935 * Remove this check if it is to be supported in IBSS mode also
1936 */
1937
Holger Schurig10078322007-11-15 18:05:47 -05001938 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001939 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001940
Holger Schurig8ff12da2007-08-02 11:54:31 -04001941 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001942}
1943
1944/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001945 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001946 *
Holger Schurig69f90322007-11-23 15:43:44 +01001947 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001948 * @param wait_option wait response or not
1949 * @return n/a
1950 */
Holger Schurig69f90322007-11-23 15:43:44 +01001951void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952{
David Woodhouse981f1872007-05-25 23:36:54 -04001953 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954
Holger Schurig8ff12da2007-08-02 11:54:31 -04001955 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001956
Holger Schurig10078322007-11-15 18:05:47 -05001957 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001958
Holger Schurig10078322007-11-15 18:05:47 -05001959 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001960 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001961 wait_option, 0, &Localpsmode);
1962
Holger Schurig8ff12da2007-08-02 11:54:31 -04001963 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964}
1965
1966/**
1967 * @brief This function checks condition and prepares to
1968 * send sleep confirm command to firmware if ok.
1969 *
Holger Schurig69f90322007-11-23 15:43:44 +01001970 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001971 * @param psmode Power Saving mode
1972 * @return n/a
1973 */
Holger Schurig69f90322007-11-23 15:43:44 +01001974void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001975{
1976 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001977 u8 allowed = 1;
1978
Holger Schurig8ff12da2007-08-02 11:54:31 -04001979 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001980
Holger Schurig634b8f42007-05-25 13:05:16 -04001981 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001982 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001983 lbs_deb_host("dnld_sent was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001984 }
1985
David Woodhouseaa21c002007-12-08 20:04:36 +00001986 spin_lock_irqsave(&priv->driver_lock, flags);
1987 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001988 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001989 lbs_deb_host("cur_cmd was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001990 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001991 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992 allowed = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00001993 lbs_deb_host("intcounter %d", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001994 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001995 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996
1997 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001998 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001999 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002000 sizeof(struct PS_CMD_ConfirmSleep));
2001 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002002 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002003 }
2004
Holger Schurig8ff12da2007-08-02 11:54:31 -04002005 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002006}
Holger Schurig675787e2007-12-05 17:58:11 +01002007
2008
2009/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002010 * @brief Simple callback that copies response back into command
2011 *
2012 * @param priv A pointer to struct lbs_private structure
2013 * @param extra A pointer to the original command structure for which
2014 * 'resp' is a response
2015 * @param resp A pointer to the command response
2016 *
2017 * @return 0 on success, error on failure
2018 */
2019int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002020 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002021{
2022 struct cmd_header *buf = (void *)extra;
2023 uint16_t copy_len;
2024
2025 lbs_deb_enter(LBS_DEB_CMD);
2026
2027 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2028 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002029 "copy back buffer was %u bytes\n", copy_len,
2030 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002031 memcpy(buf, resp, copy_len);
2032
2033 lbs_deb_leave(LBS_DEB_CMD);
2034 return 0;
2035}
2036
2037/**
Holger Schurig675787e2007-12-05 17:58:11 +01002038 * @brief Simple way to call firmware functions
2039 *
2040 * @param priv A pointer to struct lbs_private structure
2041 * @param psmode one of the many CMD_802_11_xxxx
2042 * @param cmd pointer to the parameters structure for above command
2043 * (this should not include the command, size, sequence
2044 * and result fields from struct cmd_ds_gen)
2045 * @param cmd_size size structure pointed to by cmd
2046 * @param rsp pointer to an area where the result should be placed
2047 * @param rsp_size pointer to the size of the rsp area. If the firmware
2048 * returns fewer bytes, then this *rsp_size will be
2049 * changed to the actual size.
2050 * @return -1 in case of a higher level error, otherwise
2051 * the result code from the firmware
2052 */
Dan Williams7ad994d2007-12-11 12:33:30 -05002053int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2054 struct cmd_header *in_cmd, int in_cmd_size,
2055 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
Dan Williams14e865b2007-12-10 15:11:23 -05002056 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002057{
Holger Schurig675787e2007-12-05 17:58:11 +01002058 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002059 unsigned long flags;
2060 int ret = 0;
2061
2062 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002063
David Woodhouseaa21c002007-12-08 20:04:36 +00002064 if (!priv) {
2065 lbs_deb_host("PREP_CMD: priv is NULL\n");
Holger Schurig675787e2007-12-05 17:58:11 +01002066 ret = -1;
2067 goto done;
2068 }
2069
David Woodhouseaa21c002007-12-08 20:04:36 +00002070 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002071 lbs_deb_host("PREP_CMD: card removed\n");
2072 ret = -1;
2073 goto done;
2074 }
2075
2076 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002077 if (cmdnode == NULL) {
2078 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2079
2080 /* Wake up main thread to execute next command */
2081 wake_up_interruptible(&priv->waitq);
2082 ret = -1;
2083 goto done;
2084 }
2085
Holger Schurig675787e2007-12-05 17:58:11 +01002086 cmdnode->wait_option = CMD_OPTION_WAITFORRSP;
David Woodhouse448a51a2007-12-08 00:59:54 +00002087 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002088 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002089
Dan Williams7ad994d2007-12-11 12:33:30 -05002090 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002091 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002092
Holger Schurig675787e2007-12-05 17:58:11 +01002093 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002094 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002095 cmdnode->cmdbuf->command = cpu_to_le16(command);
2096 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2097 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2098 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002099
2100 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2101
2102 /* here was the big old switch() statement, which is now obsolete,
2103 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2104
2105 cmdnode->cmdwaitqwoken = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00002106 lbs_queue_cmd(priv, cmdnode, 1);
Holger Schurig675787e2007-12-05 17:58:11 +01002107 wake_up_interruptible(&priv->waitq);
2108
2109 might_sleep();
2110 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2111
David Woodhouseaa21c002007-12-08 20:04:36 +00002112 spin_lock_irqsave(&priv->driver_lock, flags);
2113 if (priv->cur_cmd_retcode) {
Holger Schurig675787e2007-12-05 17:58:11 +01002114 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002115 priv->cur_cmd_retcode);
2116 priv->cur_cmd_retcode = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002117 ret = -1;
2118 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002119 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002120
2121done:
2122 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2123 return ret;
2124}
Dan Williams14e865b2007-12-10 15:11:23 -05002125EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002126
2127