blob: 01d23493b4eb2bf66b979b5df4b19baf0428479d [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
5
6#include <net/iw_handler.h>
7#include "host.h"
8#include "hostcmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "decl.h"
10#include "defs.h"
11#include "dev.h"
12#include "join.h"
13#include "wext.h"
Dan Williams6e66f032007-12-11 12:42:16 -050014#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015
16static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode);
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050017static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
18static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Holger Schurig0d61d042007-12-05 17:58:06 +010019 struct cmd_ctrl_node *ptempnode,
20 u16 wait_option, void *pdata_buf);
21
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020023/**
Dan Williams852e1f22007-12-10 15:24:47 -050024 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025 *
26 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050027 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020028 */
Dan Williams852e1f22007-12-10 15:24:47 -050029static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020030{
Dan Williams852e1f22007-12-10 15:24:47 -050031 switch (cmd) {
32 case CMD_802_11_RSSI:
33 return 1;
34 default:
35 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020037 return 0;
38}
39
Dan Williams6e66f032007-12-11 12:42:16 -050040/**
41 * @brief Updates the hardware details like MAC address and regulatory region
42 *
43 * @param priv A pointer to struct lbs_private structure
44 *
45 * @return 0 on success, error on failure
46 */
47int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020048{
Dan Williams6e66f032007-12-11 12:42:16 -050049 struct cmd_ds_get_hw_spec cmd;
50 int ret = -1;
51 u32 i;
52 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020053
Holger Schurig9012b282007-05-25 11:27:16 -040054 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020055
Dan Williams6e66f032007-12-11 12:42:16 -050056 memset(&cmd, 0, sizeof(cmd));
57 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
58 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
59 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, cmd);
60 if (ret)
61 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062
Dan Williams6e66f032007-12-11 12:42:16 -050063 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
64 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
65
66 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
67 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
68 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
69 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
70 print_mac(mac, cmd.permanentaddr));
71 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
72 cmd.hwifversion, cmd.version);
73
74 /* Clamp region code to 8-bit since FW spec indicates that it should
75 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
76 * returns non-zero high 8 bits here.
77 */
78 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
79
80 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
81 /* use the region code to search for the index */
82 if (priv->regioncode == lbs_region_code_to_index[i])
83 break;
84 }
85
86 /* if it's unidentified region code, use the default (USA) */
87 if (i >= MRVDRV_MAX_REGION_CODE) {
88 priv->regioncode = 0x10;
89 lbs_pr_info("unidentified region code; using the default (USA)\n");
90 }
91
92 if (priv->current_addr[0] == 0xff)
93 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
94
95 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
96 if (priv->mesh_dev)
97 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
98
99 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
100 ret = -1;
101 goto out;
102 }
103
104 if (lbs_set_universaltable(priv, 0)) {
105 ret = -1;
106 goto out;
107 }
108
109out:
Holger Schurig9012b282007-05-25 11:27:16 -0400110 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500111 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112}
113
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
Dan Williams8e3c91b2007-12-11 15:50:59 -0500709/**
710 * @brief Get the current data rate
711 *
712 * @param priv A pointer to struct lbs_private structure
713 *
714 * @return The data rate on success, error on failure
715 */
716int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200717{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500718 struct cmd_ds_802_11_data_rate cmd;
719 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200720
Holger Schurig9012b282007-05-25 11:27:16 -0400721 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200722
Dan Williams8e3c91b2007-12-11 15:50:59 -0500723 memset(&cmd, 0, sizeof(cmd));
724 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
725 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200726
Dan Williams8e3c91b2007-12-11 15:50:59 -0500727 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, cmd);
728 if (ret)
729 goto out;
730
731 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
732
733 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
734 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
735
736out:
737 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
738 return ret;
739}
740
741/**
742 * @brief Set the data rate
743 *
744 * @param priv A pointer to struct lbs_private structure
745 * @param rate The desired data rate, or 0 to clear a locked rate
746 *
747 * @return 0 on success, error on failure
748 */
749int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
750{
751 struct cmd_ds_802_11_data_rate cmd;
752 int ret = 0;
753
754 lbs_deb_enter(LBS_DEB_CMD);
755
756 memset(&cmd, 0, sizeof(cmd));
757 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
758
759 if (rate > 0) {
760 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
761 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
762 if (cmd.rates[0] == 0) {
763 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
764 " 0x%02X\n", rate);
765 ret = 0;
766 goto out;
767 }
768 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
769 } else {
770 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400771 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200772 }
773
Dan Williams8e3c91b2007-12-11 15:50:59 -0500774 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, cmd);
775 if (ret)
776 goto out;
777
778 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
779
780 /* FIXME: get actual rates FW can do if this command actually returns
781 * all data rates supported.
782 */
783 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
784 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
785
786out:
787 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
788 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200789}
790
Holger Schurig69f90322007-11-23 15:43:44 +0100791static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200792 struct cmd_ds_command *cmd,
793 u16 cmd_action)
794{
795 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200796
Holger Schurig8ff12da2007-08-02 11:54:31 -0400797 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400798 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200799 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400800 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200801
Holger Schurig8ff12da2007-08-02 11:54:31 -0400802 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200803 pMCastAdr->action = cpu_to_le16(cmd_action);
804 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000805 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
806 memcpy(pMCastAdr->maclist, priv->multicastlist,
807 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
Holger Schurig8ff12da2007-08-02 11:54:31 -0400809 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200810 return 0;
811}
812
Dan Williams2dd4b262007-12-11 16:54:15 -0500813/**
814 * @brief Get the radio channel
815 *
816 * @param priv A pointer to struct lbs_private structure
817 *
818 * @return The channel on success, error on failure
819 */
820int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821{
Dan Williams2dd4b262007-12-11 16:54:15 -0500822 struct cmd_ds_802_11_rf_channel cmd;
823 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200824
Holger Schurig8ff12da2007-08-02 11:54:31 -0400825 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200826
Dan Williams2dd4b262007-12-11 16:54:15 -0500827 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
828 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829
Dan Williams2dd4b262007-12-11 16:54:15 -0500830 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, cmd);
831 if (ret)
832 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200833
Dan Williamscb182a62007-12-11 17:35:51 -0500834 ret = le16_to_cpu(cmd.channel);
835 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500836
837out:
838 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
839 return ret;
840}
841
842/**
843 * @brief Set the radio channel
844 *
845 * @param priv A pointer to struct lbs_private structure
846 * @param channel The desired channel, or 0 to clear a locked channel
847 *
848 * @return 0 on success, error on failure
849 */
850int lbs_set_channel(struct lbs_private *priv, u8 channel)
851{
852 struct cmd_ds_802_11_rf_channel cmd;
853 u8 old_channel = priv->curbssparams.channel;
854 int ret = 0;
855
856 lbs_deb_enter(LBS_DEB_CMD);
857
858 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
859 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
860 cmd.channel = cpu_to_le16(channel);
861
862 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, cmd);
863 if (ret)
864 goto out;
865
Dan Williamscb182a62007-12-11 17:35:51 -0500866 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
867 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
868 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500869
870out:
871 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
872 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873}
874
Holger Schurig69f90322007-11-23 15:43:44 +0100875static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200876 struct cmd_ds_command *cmd)
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_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400881 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400882 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200883
884 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000885 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
886 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
887 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
888 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
889 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
890 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891
Holger Schurig8ff12da2007-08-02 11:54:31 -0400892 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200893 return 0;
894}
895
Holger Schurig69f90322007-11-23 15:43:44 +0100896static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200897 struct cmd_ds_command *cmdptr,
898 u8 cmd_action, void *pdata_buf)
899{
Holger Schurig10078322007-11-15 18:05:47 -0500900 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200901
Holger Schurig9012b282007-05-25 11:27:16 -0400902 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200903
Holger Schurig10078322007-11-15 18:05:47 -0500904 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200905
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000906 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400907 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908 {
909 struct cmd_ds_mac_reg_access *macreg;
910
911 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400912 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
913 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200914 macreg =
915 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
916 macreg;
917
918 macreg->action = cpu_to_le16(cmd_action);
919 macreg->offset = cpu_to_le16((u16) offval->offset);
920 macreg->value = cpu_to_le32(offval->value);
921
922 break;
923 }
924
Dan Williams0aef64d2007-08-02 11:31:18 -0400925 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200926 {
927 struct cmd_ds_bbp_reg_access *bbpreg;
928
929 cmdptr->size =
930 cpu_to_le16(sizeof
931 (struct cmd_ds_bbp_reg_access)
932 + S_DS_GEN);
933 bbpreg =
934 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
935 bbpreg;
936
937 bbpreg->action = cpu_to_le16(cmd_action);
938 bbpreg->offset = cpu_to_le16((u16) offval->offset);
939 bbpreg->value = (u8) offval->value;
940
941 break;
942 }
943
Dan Williams0aef64d2007-08-02 11:31:18 -0400944 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200945 {
946 struct cmd_ds_rf_reg_access *rfreg;
947
948 cmdptr->size =
949 cpu_to_le16(sizeof
950 (struct cmd_ds_rf_reg_access) +
951 S_DS_GEN);
952 rfreg =
953 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
954 rfreg;
955
956 rfreg->action = cpu_to_le16(cmd_action);
957 rfreg->offset = cpu_to_le16((u16) offval->offset);
958 rfreg->value = (u8) offval->value;
959
960 break;
961 }
962
963 default:
964 break;
965 }
966
Holger Schurig9012b282007-05-25 11:27:16 -0400967 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200968 return 0;
969}
970
Holger Schurig69f90322007-11-23 15:43:44 +0100971static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972 struct cmd_ds_command *cmd,
973 u16 cmd_action)
974{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200975
Holger Schurig8ff12da2007-08-02 11:54:31 -0400976 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400977 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400978 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200979 S_DS_GEN);
980 cmd->result = 0;
981
982 cmd->params.macadd.action = cpu_to_le16(cmd_action);
983
Dan Williams0aef64d2007-08-02 11:31:18 -0400984 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000986 priv->current_addr, ETH_ALEN);
987 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200988 }
989
Holger Schurig8ff12da2007-08-02 11:54:31 -0400990 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200991 return 0;
992}
993
Holger Schurig69f90322007-11-23 15:43:44 +0100994static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995 struct cmd_ds_command *cmd,
996 int cmd_action, void *pdata_buf)
997{
Holger Schurig10078322007-11-15 18:05:47 -0500998 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200999
Holger Schurig9012b282007-05-25 11:27:16 -04001000 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001001
Dan Williams0aef64d2007-08-02 11:31:18 -04001002 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001003 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1004 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005 cmd->result = 0;
1006
1007 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1008 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1009 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1010 cmd->params.rdeeprom.value = 0;
1011
Holger Schurig8ff12da2007-08-02 11:54:31 -04001012 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001013 return 0;
1014}
1015
Holger Schurig69f90322007-11-23 15:43:44 +01001016static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001017 struct cmd_ds_command *cmd,
1018 u16 cmd_action, void *pdata_buf)
1019{
1020 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001021 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022
Dan Williams0aef64d2007-08-02 11:31:18 -04001023 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001024 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001025 cmd->result = 0;
1026 bt_access->action = cpu_to_le16(cmd_action);
1027
1028 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001029 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001030 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001031 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001032 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001033 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001034 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001035 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001036 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001037 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1039 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001040 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001041 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001042 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001043 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1044 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001045 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001046 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001047 default:
1048 break;
1049 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001050 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051 return 0;
1052}
1053
Holger Schurig69f90322007-11-23 15:43:44 +01001054static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055 struct cmd_ds_command *cmd,
1056 u16 cmd_action, void *pdata_buf)
1057{
1058 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001059 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060
Dan Williams0aef64d2007-08-02 11:31:18 -04001061 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001062 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001063 cmd->result = 0;
1064
1065 if (pdata_buf)
1066 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1067 else
1068 memset(fwt_access, 0, sizeof(*fwt_access));
1069
1070 fwt_access->action = cpu_to_le16(cmd_action);
1071
Holger Schurig8ff12da2007-08-02 11:54:31 -04001072 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001073 return 0;
1074}
1075
David Woodhouse301eacb2007-12-11 15:23:59 -05001076int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1077 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078{
David Woodhouse301eacb2007-12-11 15:23:59 -05001079 int ret;
1080
Holger Schurig8ff12da2007-08-02 11:54:31 -04001081 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082
David Woodhouse301eacb2007-12-11 15:23:59 -05001083 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
1084 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
1085 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001086
David Woodhouse301eacb2007-12-11 15:23:59 -05001087 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001088
David Woodhouse301eacb2007-12-11 15:23:59 -05001089 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, (*cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090
Holger Schurig8ff12da2007-08-02 11:54:31 -04001091 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001092 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093}
David Woodhouse301eacb2007-12-11 15:23:59 -05001094EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001095
David Woodhouse23a397a2007-12-11 18:56:42 -05001096int lbs_mesh_config(struct lbs_private *priv, int enable)
1097{
1098 struct cmd_ds_mesh_config cmd;
1099
1100 memset(&cmd, 0, sizeof(cmd));
1101 cmd.action = cpu_to_le16(enable);
1102 cmd.channel = cpu_to_le16(priv->curbssparams.channel);
1103 cmd.type = cpu_to_le16(0x100 + 37);
1104
1105 if (enable) {
1106 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1107 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1108 }
1109
1110 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, cmd);
1111}
1112
Brajesh Dave96287ac2007-11-20 17:44:28 -05001113static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1114 struct cmd_ds_command *cmd,
1115 u16 cmd_action)
1116{
1117 struct cmd_ds_802_11_beacon_control
1118 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001119
1120 lbs_deb_enter(LBS_DEB_CMD);
1121 cmd->size =
1122 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1123 + S_DS_GEN);
1124 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1125
1126 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001127 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1128 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001129
1130 lbs_deb_leave(LBS_DEB_CMD);
1131 return 0;
1132}
1133
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001134/*
Holger Schurig10078322007-11-15 18:05:47 -05001135 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001136 * the command timer, because it does not account for queued commands.
1137 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001138void lbs_queue_cmd(struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +01001139 struct cmd_ctrl_node *cmdnode,
1140 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001141{
1142 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143
Holger Schurig8ff12da2007-08-02 11:54:31 -04001144 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001145
Dan Williamsddac4522007-12-11 13:49:39 -05001146 if (!cmdnode || !cmdnode->cmdbuf) {
1147 lbs_deb_host("QUEUE_CMD: cmdnode or cmdbuf is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148 goto done;
1149 }
1150
1151 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001152 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
1153 struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf;
1154
Dan Williams0aef64d2007-08-02 11:31:18 -04001155 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001156 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001157 addtail = 0;
1158 }
1159 }
1160
David Woodhouseaa21c002007-12-08 20:04:36 +00001161 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001162
David Woodhouseac472462007-12-08 00:35:00 +00001163 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001164 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001165 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001166 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001167
David Woodhouseaa21c002007-12-08 20:04:36 +00001168 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001169
Holger Schurig8ff12da2007-08-02 11:54:31 -04001170 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001171 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001172
1173done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001174 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175}
1176
1177/*
1178 * TODO: Fix the issue when DownloadcommandToStation is being called the
Holger Schurig8ff12da2007-08-02 11:54:31 -04001179 * second time when the command times out. All the cmdptr->xxx are in little
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001180 * endian and therefore all the comparissions will fail.
1181 * For now - we are not performing the endian conversion the second time - but
1182 * for PS and DEEP_SLEEP we need to worry
1183 */
Holger Schurig69f90322007-11-23 15:43:44 +01001184static int DownloadcommandToStation(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001185 struct cmd_ctrl_node *cmdnode)
1186{
1187 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001188 struct cmd_header *cmd;
Eugene Teob031ac12007-08-02 13:18:07 -04001189 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001190 u16 cmdsize;
1191 u16 command;
1192
Holger Schurig8ff12da2007-08-02 11:54:31 -04001193 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001194
David Woodhouseaa21c002007-12-08 20:04:36 +00001195 if (!priv || !cmdnode) {
1196 lbs_deb_host("DNLD_CMD: priv or cmdmode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197 goto done;
1198 }
1199
Dan Williamsddac4522007-12-11 13:49:39 -05001200 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001201
David Woodhouseaa21c002007-12-08 20:04:36 +00001202 spin_lock_irqsave(&priv->driver_lock, flags);
Dan Williamsddac4522007-12-11 13:49:39 -05001203 if (!cmd || !cmd->size) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001204 lbs_deb_host("DNLD_CMD: cmdptr is NULL or zero\n");
Holger Schurig10078322007-11-15 18:05:47 -05001205 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001206 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207 goto done;
1208 }
1209
David Woodhouseaa21c002007-12-08 20:04:36 +00001210 priv->cur_cmd = cmdnode;
1211 priv->cur_cmd_retcode = 0;
1212 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001213
Dan Williamsddac4522007-12-11 13:49:39 -05001214 cmdsize = le16_to_cpu(cmd->size);
1215 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001216
Holger Schurig8ff12da2007-08-02 11:54:31 -04001217 lbs_deb_host("DNLD_CMD: command 0x%04x, size %d, jiffies %lu\n",
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001218 command, cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001219 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001220
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001221 cmdnode->cmdwaitqwoken = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001222
Dan Williamsddac4522007-12-11 13:49:39 -05001223 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
1225 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001226 lbs_deb_host("DNLD_CMD: hw_host_to_card failed\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001227 spin_lock_irqsave(&priv->driver_lock, flags);
1228 priv->cur_cmd_retcode = ret;
1229 __lbs_cleanup_and_insert_cmd(priv, priv->cur_cmd);
1230 priv->cur_cmd = NULL;
1231 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001232 goto done;
1233 }
1234
Holger Schurig8ff12da2007-08-02 11:54:31 -04001235 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001236
1237 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001238 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1239 || command == CMD_802_11_ASSOCIATE)
David Woodhouseaa21c002007-12-08 20:04:36 +00001240 mod_timer(&priv->command_timer, jiffies + (10*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001242 mod_timer(&priv->command_timer, jiffies + (5*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243
1244 ret = 0;
1245
Holger Schurig9012b282007-05-25 11:27:16 -04001246done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001247 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001248 return ret;
1249}
1250
Holger Schurig69f90322007-11-23 15:43:44 +01001251static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252 struct cmd_ds_command *cmd)
1253{
1254 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1255
Holger Schurig9012b282007-05-25 11:27:16 -04001256 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001257
Dan Williams0aef64d2007-08-02 11:31:18 -04001258 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001259 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001260 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001261
Holger Schurig8ff12da2007-08-02 11:54:31 -04001262 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001263 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264
Holger Schurig9012b282007-05-25 11:27:16 -04001265 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001266 return 0;
1267}
1268
1269/**
1270 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001271 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001272 */
Holger Schurig69f90322007-11-23 15:43:44 +01001273void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1274 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001276
1277 if (!ptempcmd)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001278 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001279
1280 cleanup_cmdnode(ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001281 list_add_tail(&ptempcmd->list, &priv->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282}
1283
Holger Schurig69f90322007-11-23 15:43:44 +01001284static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1285 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001286{
1287 unsigned long flags;
1288
David Woodhouseaa21c002007-12-08 20:04:36 +00001289 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001290 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001291 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001292}
1293
Holger Schurig69f90322007-11-23 15:43:44 +01001294int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001295{
1296 int ret = 0;
1297
Holger Schurig9012b282007-05-25 11:27:16 -04001298 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001299
Holger Schurig10078322007-11-15 18:05:47 -05001300 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001301 CMD_802_11_RADIO_CONTROL,
1302 CMD_ACT_SET,
1303 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001304
Holger Schurig8ff12da2007-08-02 11:54:31 -04001305 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001306 priv->radioon, priv->preamble);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001307
Holger Schurig9012b282007-05-25 11:27:16 -04001308 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001309 return ret;
1310}
1311
Holger Schurig69f90322007-11-23 15:43:44 +01001312int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001313{
1314 int ret = 0;
1315
Holger Schurig9012b282007-05-25 11:27:16 -04001316 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001317
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001318 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001319 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001320 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321
Holger Schurig9012b282007-05-25 11:27:16 -04001322 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323 return ret;
1324}
1325
1326/**
1327 * @brief This function prepare the command before send to firmware.
1328 *
Holger Schurig69f90322007-11-23 15:43:44 +01001329 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330 * @param cmd_no command number
1331 * @param cmd_action command action: GET or SET
1332 * @param wait_option wait option: wait response or not
1333 * @param cmd_oid cmd oid: treated as sub command
1334 * @param pdata_buf A pointer to informaion buffer
1335 * @return 0 or -1
1336 */
Holger Schurig69f90322007-11-23 15:43:44 +01001337int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001338 u16 cmd_no,
1339 u16 cmd_action,
1340 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1341{
1342 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343 struct cmd_ctrl_node *cmdnode;
1344 struct cmd_ds_command *cmdptr;
1345 unsigned long flags;
1346
Holger Schurig8ff12da2007-08-02 11:54:31 -04001347 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001348
David Woodhouseaa21c002007-12-08 20:04:36 +00001349 if (!priv) {
1350 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001351 ret = -1;
1352 goto done;
1353 }
1354
David Woodhouseaa21c002007-12-08 20:04:36 +00001355 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001356 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 ret = -1;
1358 goto done;
1359 }
1360
Holger Schurig0d61d042007-12-05 17:58:06 +01001361 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001362
1363 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001364 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001365
1366 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001367 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368 ret = -1;
1369 goto done;
1370 }
1371
David Woodhousef5ece8f2007-12-01 15:15:41 +00001372 lbs_set_cmd_ctrl_node(priv, cmdnode, wait_option, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001373
Dan Williamsddac4522007-12-11 13:49:39 -05001374 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001375
Holger Schurig8ff12da2007-08-02 11:54:31 -04001376 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001377
1378 if (!cmdptr) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001379 lbs_deb_host("PREP_CMD: cmdptr is NULL\n");
Holger Schurig10078322007-11-15 18:05:47 -05001380 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381 ret = -1;
1382 goto done;
1383 }
1384
1385 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001386 priv->seqnum++;
1387 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001388
David Woodhouse981f1872007-05-25 23:36:54 -04001389 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390 cmdptr->result = 0;
1391
1392 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001393 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001394 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395 break;
1396
Dan Williams0aef64d2007-08-02 11:31:18 -04001397 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001398 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399 break;
1400
Dan Williams0aef64d2007-08-02 11:31:18 -04001401 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001402 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001403 break;
1404
Dan Williams0aef64d2007-08-02 11:31:18 -04001405 case CMD_802_11_ASSOCIATE:
1406 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001407 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 break;
1409
Dan Williams0aef64d2007-08-02 11:31:18 -04001410 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001411 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001412 break;
1413
Dan Williams0aef64d2007-08-02 11:31:18 -04001414 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001415 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001416 break;
1417
Dan Williams0aef64d2007-08-02 11:31:18 -04001418 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001419 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001421 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001422 break;
1423
Dan Williams0aef64d2007-08-02 11:31:18 -04001424 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001425 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426 break;
1427
Dan Williams0aef64d2007-08-02 11:31:18 -04001428 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001429 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430 break;
1431
Dan Williams0aef64d2007-08-02 11:31:18 -04001432 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001433 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001434 break;
1435
Dan Williams0aef64d2007-08-02 11:31:18 -04001436 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001437 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001438 break;
1439
Dan Williams0aef64d2007-08-02 11:31:18 -04001440 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001441 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001442 cmd_action, cmd_oid, pdata_buf);
1443 break;
1444
Dan Williams0aef64d2007-08-02 11:31:18 -04001445 case CMD_MAC_REG_ACCESS:
1446 case CMD_BBP_REG_ACCESS:
1447 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001448 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001449 break;
1450
Dan Williams0aef64d2007-08-02 11:31:18 -04001451 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001452 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001453 cmd_action, pdata_buf);
1454 break;
1455
Dan Williams0aef64d2007-08-02 11:31:18 -04001456 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001457 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458 break;
1459
Dan Williams0aef64d2007-08-02 11:31:18 -04001460 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001461 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001462 cmdptr, cmd_action);
1463 break;
1464
Dan Williams0aef64d2007-08-02 11:31:18 -04001465 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001466 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001467 break;
1468
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001469 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001470 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001471 cmd_action, pdata_buf);
1472 break;
1473
Dan Williams0aef64d2007-08-02 11:31:18 -04001474 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001475 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001476 break;
1477
Dan Williams0aef64d2007-08-02 11:31:18 -04001478 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001479 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001480 break;
1481
Dan Williams0aef64d2007-08-02 11:31:18 -04001482 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001483 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001484 break;
1485
Dan Williams0aef64d2007-08-02 11:31:18 -04001486 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001487 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001488 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001489 break;
1490
Dan Williams0aef64d2007-08-02 11:31:18 -04001491 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001492 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001493 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001494 break;
1495
Dan Williams0aef64d2007-08-02 11:31:18 -04001496 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001497 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001498 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001499 break;
1500
Dan Williams0aef64d2007-08-02 11:31:18 -04001501 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001502 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001503 break;
1504
Dan Williams0aef64d2007-08-02 11:31:18 -04001505 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001506 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507 cmd_action, pdata_buf);
1508 break;
1509
Dan Williams0aef64d2007-08-02 11:31:18 -04001510 case CMD_802_11_SET_AFC:
1511 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001512
1513 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001514 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1515 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001516
1517 memmove(&cmdptr->params.afc,
1518 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1519
1520 ret = 0;
1521 goto done;
1522
Dan Williams0aef64d2007-08-02 11:31:18 -04001523 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001524 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525 cmd_no, cmd_action);
1526 break;
1527
Dan Williams0aef64d2007-08-02 11:31:18 -04001528 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001529 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001530 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001531 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001532 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533 cmd_action, pdata_buf);
David Woodhousef5ece8f2007-12-01 15:15:41 +00001534 lbs_set_cmd_ctrl_node(priv, cmdnode, 0, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001535 break;
1536
Dan Williams0aef64d2007-08-02 11:31:18 -04001537 case CMD_802_11_TPC_CFG:
1538 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001539 cmdptr->size =
1540 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1541 S_DS_GEN);
1542
1543 memmove(&cmdptr->params.tpccfg,
1544 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1545
1546 ret = 0;
1547 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001548 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001549 {
1550 struct mrvlietypes_ledgpio *gpio =
1551 (struct mrvlietypes_ledgpio*)
1552 cmdptr->params.ledgpio.data;
1553
1554 memmove(&cmdptr->params.ledgpio,
1555 pdata_buf,
1556 sizeof(struct cmd_ds_802_11_led_ctrl));
1557
1558 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001559 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001560
1561#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1562 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001563 cpu_to_le16(le16_to_cpu(gpio->header.len)
1564 + S_DS_GEN
1565 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1566 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567
1568 ret = 0;
1569 break;
1570 }
Holger Schurig3a188642007-11-26 10:07:14 +01001571 case CMD_802_11_SUBSCRIBE_EVENT:
1572 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1573 cmd_action, pdata_buf);
1574 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001575 case CMD_802_11_PWR_CFG:
1576 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001577 cmdptr->size =
1578 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1579 S_DS_GEN);
1580 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1581 sizeof(struct cmd_ds_802_11_pwr_cfg));
1582
1583 ret = 0;
1584 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001585 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001586 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001587 break;
1588
Dan Williams0aef64d2007-08-02 11:31:18 -04001589 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001590 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001591 break;
1592
Dan Williams0aef64d2007-08-02 11:31:18 -04001593 case CMD_GET_TSF:
1594 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001595 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1596 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001597 ret = 0;
1598 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001599 case CMD_802_11_BEACON_CTRL:
1600 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1601 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001602 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001603 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001604 ret = -1;
1605 break;
1606 }
1607
1608 /* return error, since the command preparation failed */
1609 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001610 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001611 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001612 ret = -1;
1613 goto done;
1614 }
1615
1616 cmdnode->cmdwaitqwoken = 0;
1617
David Woodhouseaa21c002007-12-08 20:04:36 +00001618 lbs_queue_cmd(priv, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001619 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620
Dan Williams0aef64d2007-08-02 11:31:18 -04001621 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001622 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001623 might_sleep();
1624 wait_event_interruptible(cmdnode->cmdwait_q,
1625 cmdnode->cmdwaitqwoken);
1626 }
1627
David Woodhouseaa21c002007-12-08 20:04:36 +00001628 spin_lock_irqsave(&priv->driver_lock, flags);
1629 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001630 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001631 priv->cur_cmd_retcode);
1632 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001633 ret = -1;
1634 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001635 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001636
1637done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001638 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001639 return ret;
1640}
Holger Schurig10078322007-11-15 18:05:47 -05001641EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001642
1643/**
1644 * @brief This function allocates the command buffer and link
1645 * it to command free queue.
1646 *
Holger Schurig69f90322007-11-23 15:43:44 +01001647 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648 * @return 0 or -1
1649 */
Holger Schurig69f90322007-11-23 15:43:44 +01001650int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001651{
1652 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001653 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001655 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001656
Holger Schurig8ff12da2007-08-02 11:54:31 -04001657 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001658
Dan Williamsddac4522007-12-11 13:49:39 -05001659 /* Allocate and initialize the command array */
1660 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1661 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001662 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663 ret = -1;
1664 goto done;
1665 }
Dan Williamsddac4522007-12-11 13:49:39 -05001666 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001667
Dan Williamsddac4522007-12-11 13:49:39 -05001668 /* Allocate and initialize each command buffer in the command array */
1669 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1670 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1671 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001672 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001673 ret = -1;
1674 goto done;
1675 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676 }
1677
Dan Williamsddac4522007-12-11 13:49:39 -05001678 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1679 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1680 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001681 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001682 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001683
1684done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001685 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001686 return ret;
1687}
1688
1689/**
1690 * @brief This function frees the command buffer.
1691 *
Holger Schurig69f90322007-11-23 15:43:44 +01001692 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001693 * @return 0 or -1
1694 */
Holger Schurig69f90322007-11-23 15:43:44 +01001695int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001696{
Dan Williamsddac4522007-12-11 13:49:39 -05001697 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001698 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699
Holger Schurig8ff12da2007-08-02 11:54:31 -04001700 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701
1702 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001703 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001704 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001705 goto done;
1706 }
1707
Dan Williamsddac4522007-12-11 13:49:39 -05001708 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001709
1710 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001711 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1712 if (cmdarray[i].cmdbuf) {
1713 kfree(cmdarray[i].cmdbuf);
1714 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001715 }
1716 }
1717
1718 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001719 if (priv->cmd_array) {
1720 kfree(priv->cmd_array);
1721 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001722 }
1723
1724done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001725 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001726 return 0;
1727}
1728
1729/**
1730 * @brief This function gets a free command node if available in
1731 * command free queue.
1732 *
Holger Schurig69f90322007-11-23 15:43:44 +01001733 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001734 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1735 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001736static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001737{
1738 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001739 unsigned long flags;
1740
Holger Schurig8ff12da2007-08-02 11:54:31 -04001741 lbs_deb_enter(LBS_DEB_HOST);
1742
David Woodhouseaa21c002007-12-08 20:04:36 +00001743 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001744 return NULL;
1745
David Woodhouseaa21c002007-12-08 20:04:36 +00001746 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001747
David Woodhouseaa21c002007-12-08 20:04:36 +00001748 if (!list_empty(&priv->cmdfreeq)) {
1749 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001750 struct cmd_ctrl_node, list);
1751 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001753 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001754 tempnode = NULL;
1755 }
1756
David Woodhouseaa21c002007-12-08 20:04:36 +00001757 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758
Holger Schurig8ff12da2007-08-02 11:54:31 -04001759 if (tempnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001760 cleanup_cmdnode(tempnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001761
Holger Schurig8ff12da2007-08-02 11:54:31 -04001762 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001763 return tempnode;
1764}
1765
1766/**
1767 * @brief This function cleans command node.
1768 *
1769 * @param ptempnode A pointer to cmdCtrlNode structure
1770 * @return n/a
1771 */
Dan Williamsddac4522007-12-11 13:49:39 -05001772static void cleanup_cmdnode(struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001774 lbs_deb_enter(LBS_DEB_HOST);
1775
Dan Williamsddac4522007-12-11 13:49:39 -05001776 if (!cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001777 return;
Dan Williamsddac4522007-12-11 13:49:39 -05001778 cmdnode->cmdwaitqwoken = 1;
1779 wake_up_interruptible(&cmdnode->cmdwait_q);
1780 cmdnode->wait_option = 0;
1781 cmdnode->pdata_buf = NULL;
1782 cmdnode->callback = NULL;
1783 cmdnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001784
Dan Williamsddac4522007-12-11 13:49:39 -05001785 if (cmdnode->cmdbuf != NULL)
1786 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001787
1788 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789}
1790
1791/**
1792 * @brief This function initializes the command node.
1793 *
Holger Schurig69f90322007-11-23 15:43:44 +01001794 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001796 * @param wait_option wait option: wait response or not
1797 * @param pdata_buf A pointer to informaion buffer
1798 * @return 0 or -1
1799 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001800static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1801 struct cmd_ctrl_node *ptempnode,
1802 u16 wait_option, void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001803{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001804 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001805
1806 if (!ptempnode)
1807 return;
1808
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001809 ptempnode->wait_option = wait_option;
1810 ptempnode->pdata_buf = pdata_buf;
David Woodhouse17230472007-12-07 15:13:05 +00001811 ptempnode->callback = NULL;
David Woodhouse1309b552007-12-10 13:36:10 -05001812 ptempnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001813
Holger Schurig8ff12da2007-08-02 11:54:31 -04001814 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001815}
1816
1817/**
1818 * @brief This function executes next command in command
1819 * pending queue. It will put fimware back to PS mode
1820 * if applicable.
1821 *
Holger Schurig69f90322007-11-23 15:43:44 +01001822 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001823 * @return 0 or -1
1824 */
Holger Schurig69f90322007-11-23 15:43:44 +01001825int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001826{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001827 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001828 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001829 unsigned long flags;
1830 int ret = 0;
1831
Holger Schurig8ff12da2007-08-02 11:54:31 -04001832 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001833 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001834 // data packet is received
1835 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836
David Woodhouseaa21c002007-12-08 20:04:36 +00001837 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001838
David Woodhouseaa21c002007-12-08 20:04:36 +00001839 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001840 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001841 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001842 ret = -1;
1843 goto done;
1844 }
1845
David Woodhouseaa21c002007-12-08 20:04:36 +00001846 if (!list_empty(&priv->cmdpendingq)) {
1847 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001848 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001849 }
1850
David Woodhouseaa21c002007-12-08 20:04:36 +00001851 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001852
1853 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001854 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001855
Dan Williamsddac4522007-12-11 13:49:39 -05001856 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001857 if ((priv->psstate == PS_STATE_SLEEP) ||
1858 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001859 lbs_deb_host(
1860 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001861 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001862 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001863 ret = -1;
1864 goto done;
1865 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001866 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001867 "0x%04x in psstate %d\n",
1868 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001869 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870 /*
1871 * 1. Non-PS command:
1872 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001873 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001874 * 2. PS command but not Exit_PS:
1875 * Ignore it.
1876 * 3. PS command Exit_PS:
1877 * Set needtowakeup to TRUE if current state is SLEEP,
1878 * otherwise send this command down to firmware
1879 * immediately.
1880 */
Dan Williamsddac4522007-12-11 13:49:39 -05001881 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001882 /* Prepare to send Exit PS,
1883 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001884 if ((priv->psstate == PS_STATE_SLEEP)
1885 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001886 ) {
1887 /* w/ new scheme, it will not reach here.
1888 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001889 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001890 } else
Holger Schurig10078322007-11-15 18:05:47 -05001891 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001892
1893 ret = 0;
1894 goto done;
1895 } else {
1896 /*
1897 * PS command. Ignore it if it is not Exit_PS.
1898 * otherwise send it down immediately.
1899 */
Dan Williamsddac4522007-12-11 13:49:39 -05001900 struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001901
Holger Schurig8ff12da2007-08-02 11:54:31 -04001902 lbs_deb_host(
1903 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001904 psm->action);
1905 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001906 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001907 lbs_deb_host(
1908 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001909 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001910 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001911
1912 ret = 0;
1913 goto done;
1914 }
1915
David Woodhouseaa21c002007-12-08 20:04:36 +00001916 if ((priv->psstate == PS_STATE_SLEEP) ||
1917 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001918 lbs_deb_host(
1919 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001920 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001921 lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001922 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001923
1924 ret = 0;
1925 goto done;
1926 }
1927
Holger Schurig8ff12da2007-08-02 11:54:31 -04001928 lbs_deb_host(
1929 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001930 }
1931 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001932 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001933 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001934 le16_to_cpu(cmd->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001935 DownloadcommandToStation(priv, cmdnode);
1936 } else {
1937 /*
1938 * check if in power save mode, if yes, put the device back
1939 * to PS mode
1940 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001941 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1942 (priv->psstate == PS_STATE_FULL_POWER) &&
1943 ((priv->connect_status == LBS_CONNECTED) ||
1944 (priv->mesh_connect_status == LBS_CONNECTED))) {
1945 if (priv->secinfo.WPAenabled ||
1946 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001947 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001948 if (priv->wpa_mcast_key.len ||
1949 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001950 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001951 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1952 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001953 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954 }
1955 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001956 lbs_deb_host(
1957 "EXEC_NEXT_CMD: cmdpendingq empty, "
1958 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001959 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960 }
1961 }
1962 }
1963
1964 ret = 0;
1965done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001966 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001967 return ret;
1968}
1969
Holger Schurig69f90322007-11-23 15:43:44 +01001970void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001971{
1972 union iwreq_data iwrq;
1973 u8 buf[50];
1974
Holger Schurig8ff12da2007-08-02 11:54:31 -04001975 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001976
1977 memset(&iwrq, 0, sizeof(union iwreq_data));
1978 memset(buf, 0, sizeof(buf));
1979
1980 snprintf(buf, sizeof(buf) - 1, "%s", str);
1981
1982 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1983
1984 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001985 lbs_deb_wext("event indication string %s\n", (char *)buf);
1986 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1987 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001988
Holger Schurig634b8f42007-05-25 13:05:16 -04001989 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001990
Holger Schurig8ff12da2007-08-02 11:54:31 -04001991 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992}
1993
Holger Schurig69f90322007-11-23 15:43:44 +01001994static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001995{
1996 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001997 int ret = 0;
1998
Holger Schurig8ff12da2007-08-02 11:54:31 -04001999 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002000
Holger Schurig8ff12da2007-08-02 11:54:31 -04002001 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002002 size);
2003
Holger Schurig8ff12da2007-08-02 11:54:31 -04002004 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002005
Holger Schurig208fdd22007-05-25 12:17:06 -04002006 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04002007 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002008
David Woodhouseaa21c002007-12-08 20:04:36 +00002009 spin_lock_irqsave(&priv->driver_lock, flags);
2010 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04002011 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002012 priv->intcounter, priv->currenttxskb);
2013 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002014
2015 if (ret) {
2016 lbs_pr_alert(
2017 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
2018 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00002019 spin_lock_irqsave(&priv->driver_lock, flags);
2020 if (!priv->intcounter) {
2021 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002022 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002023 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002024 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002025 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002026 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002027
Holger Schurig8ff12da2007-08-02 11:54:31 -04002028 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029 }
2030
Holger Schurig8ff12da2007-08-02 11:54:31 -04002031 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002032 return ret;
2033}
2034
Holger Schurig69f90322007-11-23 15:43:44 +01002035void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002036{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002037 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002038
2039 /*
2040 * PS is currently supported only in Infrastructure mode
2041 * Remove this check if it is to be supported in IBSS mode also
2042 */
2043
Holger Schurig10078322007-11-15 18:05:47 -05002044 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002045 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046
Holger Schurig8ff12da2007-08-02 11:54:31 -04002047 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002048}
2049
2050/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002051 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052 *
Holger Schurig69f90322007-11-23 15:43:44 +01002053 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 * @param wait_option wait response or not
2055 * @return n/a
2056 */
Holger Schurig69f90322007-11-23 15:43:44 +01002057void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002058{
David Woodhouse981f1872007-05-25 23:36:54 -04002059 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002060
Holger Schurig8ff12da2007-08-02 11:54:31 -04002061 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002062
Holger Schurig10078322007-11-15 18:05:47 -05002063 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002064
Holger Schurig10078322007-11-15 18:05:47 -05002065 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002066 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002067 wait_option, 0, &Localpsmode);
2068
Holger Schurig8ff12da2007-08-02 11:54:31 -04002069 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002070}
2071
2072/**
2073 * @brief This function checks condition and prepares to
2074 * send sleep confirm command to firmware if ok.
2075 *
Holger Schurig69f90322007-11-23 15:43:44 +01002076 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002077 * @param psmode Power Saving mode
2078 * @return n/a
2079 */
Holger Schurig69f90322007-11-23 15:43:44 +01002080void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002081{
2082 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002083 u8 allowed = 1;
2084
Holger Schurig8ff12da2007-08-02 11:54:31 -04002085 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002086
Holger Schurig634b8f42007-05-25 13:05:16 -04002087 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002088 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04002089 lbs_deb_host("dnld_sent was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002090 }
2091
David Woodhouseaa21c002007-12-08 20:04:36 +00002092 spin_lock_irqsave(&priv->driver_lock, flags);
2093 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002094 allowed = 0;
Holger Schurig8ff12da2007-08-02 11:54:31 -04002095 lbs_deb_host("cur_cmd was set");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002096 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002097 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002098 allowed = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00002099 lbs_deb_host("intcounter %d", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002100 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002101 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002102
2103 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002104 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002105 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002106 sizeof(struct PS_CMD_ConfirmSleep));
2107 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002108 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002109 }
2110
Holger Schurig8ff12da2007-08-02 11:54:31 -04002111 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002112}
Holger Schurig675787e2007-12-05 17:58:11 +01002113
2114
2115/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002116 * @brief Simple callback that copies response back into command
2117 *
2118 * @param priv A pointer to struct lbs_private structure
2119 * @param extra A pointer to the original command structure for which
2120 * 'resp' is a response
2121 * @param resp A pointer to the command response
2122 *
2123 * @return 0 on success, error on failure
2124 */
2125int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002126 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002127{
2128 struct cmd_header *buf = (void *)extra;
2129 uint16_t copy_len;
2130
2131 lbs_deb_enter(LBS_DEB_CMD);
2132
2133 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2134 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002135 "copy back buffer was %u bytes\n", copy_len,
2136 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002137 memcpy(buf, resp, copy_len);
2138
2139 lbs_deb_leave(LBS_DEB_CMD);
2140 return 0;
2141}
2142
2143/**
Holger Schurig675787e2007-12-05 17:58:11 +01002144 * @brief Simple way to call firmware functions
2145 *
2146 * @param priv A pointer to struct lbs_private structure
2147 * @param psmode one of the many CMD_802_11_xxxx
2148 * @param cmd pointer to the parameters structure for above command
2149 * (this should not include the command, size, sequence
2150 * and result fields from struct cmd_ds_gen)
2151 * @param cmd_size size structure pointed to by cmd
2152 * @param rsp pointer to an area where the result should be placed
2153 * @param rsp_size pointer to the size of the rsp area. If the firmware
2154 * returns fewer bytes, then this *rsp_size will be
2155 * changed to the actual size.
2156 * @return -1 in case of a higher level error, otherwise
2157 * the result code from the firmware
2158 */
Dan Williams7ad994d2007-12-11 12:33:30 -05002159int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2160 struct cmd_header *in_cmd, int in_cmd_size,
2161 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
Dan Williams14e865b2007-12-10 15:11:23 -05002162 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002163{
Holger Schurig675787e2007-12-05 17:58:11 +01002164 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002165 unsigned long flags;
2166 int ret = 0;
2167
2168 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002169
David Woodhouseaa21c002007-12-08 20:04:36 +00002170 if (!priv) {
2171 lbs_deb_host("PREP_CMD: priv is NULL\n");
Holger Schurig675787e2007-12-05 17:58:11 +01002172 ret = -1;
2173 goto done;
2174 }
2175
David Woodhouseaa21c002007-12-08 20:04:36 +00002176 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002177 lbs_deb_host("PREP_CMD: card removed\n");
2178 ret = -1;
2179 goto done;
2180 }
2181
2182 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002183 if (cmdnode == NULL) {
2184 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2185
2186 /* Wake up main thread to execute next command */
2187 wake_up_interruptible(&priv->waitq);
2188 ret = -1;
2189 goto done;
2190 }
2191
Holger Schurig675787e2007-12-05 17:58:11 +01002192 cmdnode->wait_option = CMD_OPTION_WAITFORRSP;
David Woodhouse448a51a2007-12-08 00:59:54 +00002193 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002194 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002195
Dan Williams7ad994d2007-12-11 12:33:30 -05002196 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002197 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002198
Holger Schurig675787e2007-12-05 17:58:11 +01002199 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002200 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002201 cmdnode->cmdbuf->command = cpu_to_le16(command);
2202 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2203 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2204 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002205
2206 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2207
2208 /* here was the big old switch() statement, which is now obsolete,
2209 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2210
2211 cmdnode->cmdwaitqwoken = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00002212 lbs_queue_cmd(priv, cmdnode, 1);
Holger Schurig675787e2007-12-05 17:58:11 +01002213 wake_up_interruptible(&priv->waitq);
2214
2215 might_sleep();
2216 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2217
David Woodhouseaa21c002007-12-08 20:04:36 +00002218 spin_lock_irqsave(&priv->driver_lock, flags);
2219 if (priv->cur_cmd_retcode) {
Holger Schurig675787e2007-12-05 17:58:11 +01002220 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002221 priv->cur_cmd_retcode);
2222 priv->cur_cmd_retcode = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002223 ret = -1;
2224 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002225 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002226
2227done:
2228 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2229 return ret;
2230}
Dan Williams14e865b2007-12-10 15:11:23 -05002231EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002232
2233