blob: 4ffb84a403b3e4cfd09bf6c0f32b68810ba3e8a8 [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,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -050020 void *pdata_buf);
Holger Schurig0d61d042007-12-05 17:58:06 +010021
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);
David Woodhouse689442d2007-12-12 16:00:42 -050059 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050060 if (ret)
61 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062
Dan Williams6e66f032007-12-11 12:42:16 -050063 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
64 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
65
66 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
67 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
68 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
69 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
70 print_mac(mac, cmd.permanentaddr));
71 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
72 cmd.hwifversion, cmd.version);
73
74 /* Clamp region code to 8-bit since FW spec indicates that it should
75 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
76 * returns non-zero high 8 bits here.
77 */
78 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
79
80 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
81 /* use the region code to search for the index */
82 if (priv->regioncode == lbs_region_code_to_index[i])
83 break;
84 }
85
86 /* if it's unidentified region code, use the default (USA) */
87 if (i >= MRVDRV_MAX_REGION_CODE) {
88 priv->regioncode = 0x10;
89 lbs_pr_info("unidentified region code; using the default (USA)\n");
90 }
91
92 if (priv->current_addr[0] == 0xff)
93 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
94
95 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
96 if (priv->mesh_dev)
97 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
98
99 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
100 ret = -1;
101 goto out;
102 }
103
104 if (lbs_set_universaltable(priv, 0)) {
105 ret = -1;
106 goto out;
107 }
108
109out:
Holger Schurig9012b282007-05-25 11:27:16 -0400110 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500111 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200112}
113
David Woodhouse506e9022007-12-12 20:06:06 -0500114int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500115{
116 struct cmd_ds_host_sleep cmd_config;
117 int ret;
118
119 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500120 cmd_config.gpio = priv->wol_gpio;
121 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500122
David Woodhouse689442d2007-12-12 16:00:42 -0500123 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500124 if (!ret) {
125 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
126 priv->wol_criteria = criteria;
127 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500128 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500129 }
David Woodhouse506e9022007-12-12 20:06:06 -0500130
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500131 return ret;
132}
133EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
134
Holger Schurig69f90322007-11-23 15:43:44 +0100135static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 struct cmd_ds_command *cmd,
137 u16 cmd_action)
138{
139 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140
Holger Schurig9012b282007-05-25 11:27:16 -0400141 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200142
Dan Williams0aef64d2007-08-02 11:31:18 -0400143 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400144 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
145 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200146 psm->action = cpu_to_le16(cmd_action);
147 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400148 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400149 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400150 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200151
Holger Schurig252cf0d2007-08-02 13:09:34 -0400152 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400153 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400155 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200156 break;
157
Dan Williams0aef64d2007-08-02 11:31:18 -0400158 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400159 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200160 break;
161
Dan Williams0aef64d2007-08-02 11:31:18 -0400162 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400163 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164 break;
165
166 default:
167 break;
168 }
169
Holger Schurig9012b282007-05-25 11:27:16 -0400170 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 return 0;
172}
173
Holger Schurig69f90322007-11-23 15:43:44 +0100174static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200175 struct cmd_ds_command *cmd,
176 u16 cmd_action, void *pdata_buf)
177{
178 u16 *timeout = pdata_buf;
179
Holger Schurig8ff12da2007-08-02 11:54:31 -0400180 lbs_deb_enter(LBS_DEB_CMD);
181
Dan Williams0aef64d2007-08-02 11:31:18 -0400182 cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200183 cmd->size =
184 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
185 + S_DS_GEN);
186
187 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
188
189 if (cmd_action)
David Woodhouse981f1872007-05-25 23:36:54 -0400190 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191 else
192 cmd->params.inactivity_timeout.timeout = 0;
193
Holger Schurig8ff12da2007-08-02 11:54:31 -0400194 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200195 return 0;
196}
197
Holger Schurig69f90322007-11-23 15:43:44 +0100198static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200199 struct cmd_ds_command *cmd,
200 u16 cmd_action)
201{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200202 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
203
Holger Schurig9012b282007-05-25 11:27:16 -0400204 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205
David Woodhouse981f1872007-05-25 23:36:54 -0400206 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
207 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400208 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200209
Dan Williams0aef64d2007-08-02 11:31:18 -0400210 if (cmd_action == CMD_ACT_GET) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000211 memset(&priv->sp, 0, sizeof(struct sleep_params));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200212 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
213 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400214 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200215 sp->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000216 sp->error = cpu_to_le16(priv->sp.sp_error);
217 sp->offset = cpu_to_le16(priv->sp.sp_offset);
218 sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime);
219 sp->calcontrol = (u8) priv->sp.sp_calcontrol;
220 sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk;
221 sp->reserved = cpu_to_le16(priv->sp.sp_reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200222 }
223
Holger Schurig9012b282007-05-25 11:27:16 -0400224 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200225 return 0;
226}
227
Holger Schurig69f90322007-11-23 15:43:44 +0100228static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200229 struct cmd_ds_command *cmd,
230 u32 cmd_act,
231 void * pdata_buf)
232{
233 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200234 int ret = 0;
235 struct assoc_request * assoc_req = pdata_buf;
236
Holger Schurig9012b282007-05-25 11:27:16 -0400237 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200238
Dan Williams0aef64d2007-08-02 11:31:18 -0400239 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400240 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241
Dan Williams0aef64d2007-08-02 11:31:18 -0400242 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200243 int i;
244
245 if (!assoc_req) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500246 lbs_deb_cmd("Invalid association request!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247 ret = -1;
248 goto done;
249 }
250
Dan Williams0aef64d2007-08-02 11:31:18 -0400251 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200252
253 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400254 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400255 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 /* Copy key types and material to host command structure */
258 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400259 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260
261 switch (pkey->len) {
262 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200263 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264 memmove(&wep->keymaterial[i], pkey->key,
265 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400266 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267 break;
268 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200269 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270 memmove(&wep->keymaterial[i], pkey->key,
271 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400272 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200273 break;
274 case 0:
275 break;
276 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400277 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200278 i, pkey->len);
279 ret = -1;
280 goto done;
281 break;
282 }
283 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400284 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200285 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400286 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200287
288 /* default tx key index */
David Woodhouseaa21c002007-12-08 20:04:36 +0000289 wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400290 (u32)CMD_WEP_KEY_INDEX_MASK));
David Woodhouseaa21c002007-12-08 20:04:36 +0000291 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200292 }
293
294 ret = 0;
295
296done:
Holger Schurig9012b282007-05-25 11:27:16 -0400297 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298 return ret;
299}
300
Holger Schurig69f90322007-11-23 15:43:44 +0100301static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200302 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400303 u16 cmd_action,
304 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200305{
306 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400307 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400308
309 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200310
Dan Williams0aef64d2007-08-02 11:31:18 -0400311 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400312 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200313 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400314
Dan Williams0aef64d2007-08-02 11:31:18 -0400315 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400316 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400317 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400318 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400319 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400320 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200321 }
322
Dan Williams90a42212007-05-25 23:01:24 -0400323 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200324 return 0;
325}
326
327
Holger Schurig3a188642007-11-26 10:07:14 +0100328static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
329{
330 ssize_t pos = 0;
331 struct mrvlietypesheader *tlv_h;
332 while (pos < size) {
333 u16 length;
334 tlv_h = (struct mrvlietypesheader *) tlv;
335 if (tlv_h->len == 0)
336 return pos;
337 length = le16_to_cpu(tlv_h->len) +
338 sizeof(struct mrvlietypesheader);
339 pos += length;
340 tlv += length;
341 }
342 return pos;
343}
344
345
346static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
347 struct cmd_ds_command *cmd, u16 cmd_action,
348 void *pdata_buf)
349{
350 struct cmd_ds_802_11_subscribe_event *events =
351 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
352
353 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
354 * for various Marvell TLVs */
355
356 lbs_deb_enter(LBS_DEB_CMD);
357
358 cmd->size = cpu_to_le16(sizeof(*events)
359 - sizeof(events->tlv)
360 + S_DS_GEN);
361 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
362 if (cmd_action == CMD_ACT_GET) {
363 cmd->params.subscribe_event.events = 0;
364 } else {
365 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
366 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
367 cmd->params.subscribe_event.events = events->events;
368 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
369 }
370
371 lbs_deb_leave(LBS_DEB_CMD);
372}
373
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400375 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200376{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400377 lbs_deb_enter(LBS_DEB_CMD);
378
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400380 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200382 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
383 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400384 }
385 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200386 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
387 }
388
389 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400390 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200391 pkeyparamset->keylen = cpu_to_le16(pkey->len);
392 memcpy(pkeyparamset->key, pkey->key, pkey->len);
393 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
394 + sizeof(pkeyparamset->keyinfo)
395 + sizeof(pkeyparamset->keylen)
396 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400397 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200398}
399
Holger Schurig69f90322007-11-23 15:43:44 +0100400static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401 struct cmd_ds_command *cmd,
402 u16 cmd_action,
403 u32 cmd_oid, void *pdata_buf)
404{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405 struct cmd_ds_802_11_key_material *pkeymaterial =
406 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400407 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200408 int ret = 0;
409 int index = 0;
410
Holger Schurig9012b282007-05-25 11:27:16 -0400411 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200412
Dan Williams0aef64d2007-08-02 11:31:18 -0400413 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200414 pkeymaterial->action = cpu_to_le16(cmd_action);
415
Dan Williams0aef64d2007-08-02 11:31:18 -0400416 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400417 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200418 ret = 0;
419 goto done;
420 }
421
422 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
423
Dan Williams90a42212007-05-25 23:01:24 -0400424 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200425 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400426 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427 index++;
428 }
429
Dan Williams90a42212007-05-25 23:01:24 -0400430 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200431 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400432 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200433 index++;
434 }
435
436 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400437 + sizeof (pkeymaterial->action)
438 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200439
440 ret = 0;
441
442done:
Holger Schurig9012b282007-05-25 11:27:16 -0400443 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200444 return ret;
445}
446
Holger Schurig69f90322007-11-23 15:43:44 +0100447static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200448 struct cmd_ds_command *cmd, int cmd_action)
449{
450 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
451
Holger Schurig8ff12da2007-08-02 11:54:31 -0400452 lbs_deb_enter(LBS_DEB_CMD);
453
Dan Williams0aef64d2007-08-02 11:31:18 -0400454 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200455 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
456 reset->action = cpu_to_le16(cmd_action);
457
Holger Schurig8ff12da2007-08-02 11:54:31 -0400458 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 return 0;
460}
461
Holger Schurig69f90322007-11-23 15:43:44 +0100462static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463 struct cmd_ds_command *cmd)
464{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400465 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400466 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200467 cmd->size =
468 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
469
Holger Schurig8ff12da2007-08-02 11:54:31 -0400470 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200471 return 0;
472}
473
Holger Schurig69f90322007-11-23 15:43:44 +0100474static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200475 struct cmd_ds_command *cmd)
476{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400477 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400478 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400480 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200481
Holger Schurig8ff12da2007-08-02 11:54:31 -0400482 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200483 return 0;
484}
485
Holger Schurig69f90322007-11-23 15:43:44 +0100486static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200487 struct cmd_ds_command *cmd,
488 int cmd_action,
489 int cmd_oid, void *pdata_buf)
490{
491 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200492 u8 ucTemp;
493
Holger Schurig9012b282007-05-25 11:27:16 -0400494 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495
Holger Schurig9012b282007-05-25 11:27:16 -0400496 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200497
Dan Williams0aef64d2007-08-02 11:31:18 -0400498 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400499 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500
501 switch (cmd_oid) {
502 case OID_802_11_INFRASTRUCTURE_MODE:
503 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400504 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400505 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
506 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000507 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400508 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200509 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400510 } else {
511 /* Infra and Auto modes */
512 ucTemp = SNMP_MIB_VALUE_INFRA;
513 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200514
515 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
516
517 break;
518 }
519
520 case OID_802_11D_ENABLE:
521 {
522 u32 ulTemp;
523
Dan Williams0aef64d2007-08-02 11:31:18 -0400524 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525
Dan Williams0aef64d2007-08-02 11:31:18 -0400526 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000527 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
528 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400530 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200531 cpu_to_le16((u16) ulTemp);
532 }
533 break;
534 }
535
536 case OID_802_11_FRAGMENTATION_THRESHOLD:
537 {
538 u32 ulTemp;
539
Dan Williams0aef64d2007-08-02 11:31:18 -0400540 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200541
Dan Williams0aef64d2007-08-02 11:31:18 -0400542 if (cmd_action == CMD_ACT_GET) {
543 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
544 } else if (cmd_action == CMD_ACT_SET) {
545 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400546 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200547 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400548 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549 cpu_to_le16((u16) ulTemp);
550
551 }
552
553 break;
554 }
555
556 case OID_802_11_RTS_THRESHOLD:
557 {
558
559 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000560 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561
Dan Williams0aef64d2007-08-02 11:31:18 -0400562 if (cmd_action == CMD_ACT_GET) {
563 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
564 } else if (cmd_action == CMD_ACT_SET) {
565 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400566 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
567 ulTemp = *((u32 *)pdata_buf);
568 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200569 cpu_to_le16((u16) ulTemp);
570
571 }
572 break;
573 }
574 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400575 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200576
Dan Williams0aef64d2007-08-02 11:31:18 -0400577 if (cmd_action == CMD_ACT_GET) {
578 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
579 } else if (cmd_action == CMD_ACT_SET) {
580 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200581 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400582 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000583 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200584 }
585
586 break;
587 default:
588 break;
589 }
590
Holger Schurig9012b282007-05-25 11:27:16 -0400591 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200592 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400593 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
594 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595
Holger Schurig9012b282007-05-25 11:27:16 -0400596 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400597 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400598 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
599 le16_to_cpu(pSNMPMIB->bufsize),
600 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200601
Holger Schurig9012b282007-05-25 11:27:16 -0400602 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603 return 0;
604}
605
Holger Schurig69f90322007-11-23 15:43:44 +0100606static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607 struct cmd_ds_command *cmd,
608 int cmd_action)
609{
David Woodhouse981f1872007-05-25 23:36:54 -0400610 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200611
Holger Schurig9012b282007-05-25 11:27:16 -0400612 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200613
614 cmd->size =
615 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
616 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400617 cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618
619 pradiocontrol->action = cpu_to_le16(cmd_action);
620
David Woodhouseaa21c002007-12-08 20:04:36 +0000621 switch (priv->preamble) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400622 case CMD_TYPE_SHORT_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
624 break;
625
Dan Williams0aef64d2007-08-02 11:31:18 -0400626 case CMD_TYPE_LONG_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
628 break;
629
Dan Williams0aef64d2007-08-02 11:31:18 -0400630 case CMD_TYPE_AUTO_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200631 default:
632 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
633 break;
634 }
635
David Woodhouseaa21c002007-12-08 20:04:36 +0000636 if (priv->radioon)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200637 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
638 else
639 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
640
Holger Schurig9012b282007-05-25 11:27:16 -0400641 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642 return 0;
643}
644
Holger Schurig69f90322007-11-23 15:43:44 +0100645static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200646 struct cmd_ds_command *cmd,
647 u16 cmd_action, void *pdata_buf)
648{
649
650 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
651
Holger Schurig9012b282007-05-25 11:27:16 -0400652 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200653
654 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400655 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400656 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400657 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658
David Woodhouse981f1872007-05-25 23:36:54 -0400659 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
660 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
661 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662
663 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400664 case CMD_ACT_TX_POWER_OPT_GET:
665 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200666 prtp->currentlevel = 0;
667 break;
668
Dan Williams0aef64d2007-08-02 11:31:18 -0400669 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
670 prtp->action = cpu_to_le16(CMD_ACT_SET);
671 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200672 break;
673
Dan Williams0aef64d2007-08-02 11:31:18 -0400674 case CMD_ACT_TX_POWER_OPT_SET_MID:
675 prtp->action = cpu_to_le16(CMD_ACT_SET);
676 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200677 break;
678
Dan Williams0aef64d2007-08-02 11:31:18 -0400679 case CMD_ACT_TX_POWER_OPT_SET_LOW:
680 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200681 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
682 break;
683 }
Holger Schurig9012b282007-05-25 11:27:16 -0400684
685 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200686 return 0;
687}
688
Holger Schurig69f90322007-11-23 15:43:44 +0100689static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400690 struct cmd_ds_command *cmd,
691 u16 cmd_action, void *pdata_buf)
692{
693 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
694
695 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
696 cmd->size =
697 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
698 S_DS_GEN);
699
700 monitor->action = cpu_to_le16(cmd_action);
701 if (cmd_action == CMD_ACT_SET) {
702 monitor->mode =
703 cpu_to_le16((u16) (*(u32 *) pdata_buf));
704 }
705
706 return 0;
707}
708
Holger Schurig69f90322007-11-23 15:43:44 +0100709static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200710 struct cmd_ds_command *cmd,
711 u16 cmd_action)
712{
713 struct cmd_ds_802_11_rate_adapt_rateset
714 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200715
Holger Schurig8ff12da2007-08-02 11:54:31 -0400716 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200717 cmd->size =
718 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
719 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400720 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200721
David Woodhouse981f1872007-05-25 23:36:54 -0400722 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000723 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
724 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200725
Holger Schurig9012b282007-05-25 11:27:16 -0400726 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727 return 0;
728}
729
Dan Williams8e3c91b2007-12-11 15:50:59 -0500730/**
731 * @brief Get the current data rate
732 *
733 * @param priv A pointer to struct lbs_private structure
734 *
735 * @return The data rate on success, error on failure
736 */
737int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200738{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500739 struct cmd_ds_802_11_data_rate cmd;
740 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741
Holger Schurig9012b282007-05-25 11:27:16 -0400742 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200743
Dan Williams8e3c91b2007-12-11 15:50:59 -0500744 memset(&cmd, 0, sizeof(cmd));
745 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
746 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200747
David Woodhouse689442d2007-12-12 16:00:42 -0500748 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500749 if (ret)
750 goto out;
751
752 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
753
754 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
755 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
756
757out:
758 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
759 return ret;
760}
761
762/**
763 * @brief Set the data rate
764 *
765 * @param priv A pointer to struct lbs_private structure
766 * @param rate The desired data rate, or 0 to clear a locked rate
767 *
768 * @return 0 on success, error on failure
769 */
770int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
771{
772 struct cmd_ds_802_11_data_rate cmd;
773 int ret = 0;
774
775 lbs_deb_enter(LBS_DEB_CMD);
776
777 memset(&cmd, 0, sizeof(cmd));
778 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
779
780 if (rate > 0) {
781 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
782 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
783 if (cmd.rates[0] == 0) {
784 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
785 " 0x%02X\n", rate);
786 ret = 0;
787 goto out;
788 }
789 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
790 } else {
791 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400792 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793 }
794
David Woodhouse689442d2007-12-12 16:00:42 -0500795 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500796 if (ret)
797 goto out;
798
799 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
800
801 /* FIXME: get actual rates FW can do if this command actually returns
802 * all data rates supported.
803 */
804 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
805 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
806
807out:
808 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
809 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200810}
811
Holger Schurig69f90322007-11-23 15:43:44 +0100812static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200813 struct cmd_ds_command *cmd,
814 u16 cmd_action)
815{
816 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200817
Holger Schurig8ff12da2007-08-02 11:54:31 -0400818 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400819 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200820 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400821 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200822
Holger Schurig8ff12da2007-08-02 11:54:31 -0400823 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200824 pMCastAdr->action = cpu_to_le16(cmd_action);
825 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000826 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
827 memcpy(pMCastAdr->maclist, priv->multicastlist,
828 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829
Holger Schurig8ff12da2007-08-02 11:54:31 -0400830 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200831 return 0;
832}
833
Dan Williams2dd4b262007-12-11 16:54:15 -0500834/**
835 * @brief Get the radio channel
836 *
837 * @param priv A pointer to struct lbs_private structure
838 *
839 * @return The channel on success, error on failure
840 */
841int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200842{
Dan Williams2dd4b262007-12-11 16:54:15 -0500843 struct cmd_ds_802_11_rf_channel cmd;
844 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200845
Holger Schurig8ff12da2007-08-02 11:54:31 -0400846 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200847
Dan Williams2dd4b262007-12-11 16:54:15 -0500848 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
849 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200850
David Woodhouse689442d2007-12-12 16:00:42 -0500851 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500852 if (ret)
853 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200854
Dan Williamscb182a62007-12-11 17:35:51 -0500855 ret = le16_to_cpu(cmd.channel);
856 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500857
858out:
859 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
860 return ret;
861}
862
863/**
864 * @brief Set the radio channel
865 *
866 * @param priv A pointer to struct lbs_private structure
867 * @param channel The desired channel, or 0 to clear a locked channel
868 *
869 * @return 0 on success, error on failure
870 */
871int lbs_set_channel(struct lbs_private *priv, u8 channel)
872{
873 struct cmd_ds_802_11_rf_channel cmd;
874 u8 old_channel = priv->curbssparams.channel;
875 int ret = 0;
876
877 lbs_deb_enter(LBS_DEB_CMD);
878
879 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
880 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
881 cmd.channel = cpu_to_le16(channel);
882
David Woodhouse689442d2007-12-12 16:00:42 -0500883 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500884 if (ret)
885 goto out;
886
Dan Williamscb182a62007-12-11 17:35:51 -0500887 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
888 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
889 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500890
891out:
892 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
893 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894}
895
Holger Schurig69f90322007-11-23 15:43:44 +0100896static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200897 struct cmd_ds_command *cmd)
898{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200899
Holger Schurig8ff12da2007-08-02 11:54:31 -0400900 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400901 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400902 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400903 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200904
905 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000906 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
907 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
908 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
909 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
910 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
911 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200912
Holger Schurig8ff12da2007-08-02 11:54:31 -0400913 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200914 return 0;
915}
916
Holger Schurig69f90322007-11-23 15:43:44 +0100917static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200918 struct cmd_ds_command *cmdptr,
919 u8 cmd_action, void *pdata_buf)
920{
Holger Schurig10078322007-11-15 18:05:47 -0500921 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200922
Holger Schurig9012b282007-05-25 11:27:16 -0400923 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200924
Holger Schurig10078322007-11-15 18:05:47 -0500925 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200926
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000927 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400928 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200929 {
930 struct cmd_ds_mac_reg_access *macreg;
931
932 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400933 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
934 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200935 macreg =
936 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
937 macreg;
938
939 macreg->action = cpu_to_le16(cmd_action);
940 macreg->offset = cpu_to_le16((u16) offval->offset);
941 macreg->value = cpu_to_le32(offval->value);
942
943 break;
944 }
945
Dan Williams0aef64d2007-08-02 11:31:18 -0400946 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200947 {
948 struct cmd_ds_bbp_reg_access *bbpreg;
949
950 cmdptr->size =
951 cpu_to_le16(sizeof
952 (struct cmd_ds_bbp_reg_access)
953 + S_DS_GEN);
954 bbpreg =
955 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
956 bbpreg;
957
958 bbpreg->action = cpu_to_le16(cmd_action);
959 bbpreg->offset = cpu_to_le16((u16) offval->offset);
960 bbpreg->value = (u8) offval->value;
961
962 break;
963 }
964
Dan Williams0aef64d2007-08-02 11:31:18 -0400965 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200966 {
967 struct cmd_ds_rf_reg_access *rfreg;
968
969 cmdptr->size =
970 cpu_to_le16(sizeof
971 (struct cmd_ds_rf_reg_access) +
972 S_DS_GEN);
973 rfreg =
974 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
975 rfreg;
976
977 rfreg->action = cpu_to_le16(cmd_action);
978 rfreg->offset = cpu_to_le16((u16) offval->offset);
979 rfreg->value = (u8) offval->value;
980
981 break;
982 }
983
984 default:
985 break;
986 }
987
Holger Schurig9012b282007-05-25 11:27:16 -0400988 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989 return 0;
990}
991
Holger Schurig69f90322007-11-23 15:43:44 +0100992static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200993 struct cmd_ds_command *cmd,
994 u16 cmd_action)
995{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400998 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400999 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001000 S_DS_GEN);
1001 cmd->result = 0;
1002
1003 cmd->params.macadd.action = cpu_to_le16(cmd_action);
1004
Dan Williams0aef64d2007-08-02 11:31:18 -04001005 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001006 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +00001007 priv->current_addr, ETH_ALEN);
1008 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001009 }
1010
Holger Schurig8ff12da2007-08-02 11:54:31 -04001011 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001012 return 0;
1013}
1014
Holger Schurig69f90322007-11-23 15:43:44 +01001015static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016 struct cmd_ds_command *cmd,
1017 int cmd_action, void *pdata_buf)
1018{
Holger Schurig10078322007-11-15 18:05:47 -05001019 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020
Holger Schurig9012b282007-05-25 11:27:16 -04001021 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022
Dan Williams0aef64d2007-08-02 11:31:18 -04001023 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001024 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1025 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001026 cmd->result = 0;
1027
1028 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1029 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1030 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1031 cmd->params.rdeeprom.value = 0;
1032
Holger Schurig8ff12da2007-08-02 11:54:31 -04001033 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001034 return 0;
1035}
1036
Holger Schurig69f90322007-11-23 15:43:44 +01001037static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 struct cmd_ds_command *cmd,
1039 u16 cmd_action, void *pdata_buf)
1040{
1041 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001042 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001043
Dan Williams0aef64d2007-08-02 11:31:18 -04001044 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001045 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046 cmd->result = 0;
1047 bt_access->action = cpu_to_le16(cmd_action);
1048
1049 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001050 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001052 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001053 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001054 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001056 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001057 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001058 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001059 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1060 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001061 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001062 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001063 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001064 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1065 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001066 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001067 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001068 default:
1069 break;
1070 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001071 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072 return 0;
1073}
1074
Holger Schurig69f90322007-11-23 15:43:44 +01001075static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076 struct cmd_ds_command *cmd,
1077 u16 cmd_action, void *pdata_buf)
1078{
1079 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001080 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001081
Dan Williams0aef64d2007-08-02 11:31:18 -04001082 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001083 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001084 cmd->result = 0;
1085
1086 if (pdata_buf)
1087 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1088 else
1089 memset(fwt_access, 0, sizeof(*fwt_access));
1090
1091 fwt_access->action = cpu_to_le16(cmd_action);
1092
Holger Schurig8ff12da2007-08-02 11:54:31 -04001093 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001094 return 0;
1095}
1096
David Woodhouse301eacb2007-12-11 15:23:59 -05001097int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1098 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099{
David Woodhouse301eacb2007-12-11 15:23:59 -05001100 int ret;
1101
Holger Schurig8ff12da2007-08-02 11:54:31 -04001102 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001103
David Woodhouse301eacb2007-12-11 15:23:59 -05001104 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
1105 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
1106 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107
David Woodhouse301eacb2007-12-11 15:23:59 -05001108 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109
David Woodhouse689442d2007-12-12 16:00:42 -05001110 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001111
Holger Schurig8ff12da2007-08-02 11:54:31 -04001112 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001113 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114}
David Woodhouse301eacb2007-12-11 15:23:59 -05001115EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001116
David Woodhouse86062132007-12-13 00:32:36 -05001117int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001118{
1119 struct cmd_ds_mesh_config cmd;
1120
1121 memset(&cmd, 0, sizeof(cmd));
1122 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001123 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001124 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse7e226272007-12-14 22:53:41 -05001125
David Woodhouse23a397a2007-12-11 18:56:42 -05001126 if (enable) {
1127 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1128 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1129 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001130 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001131 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001132 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001133 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001134}
1135
Brajesh Dave96287ac2007-11-20 17:44:28 -05001136static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1137 struct cmd_ds_command *cmd,
1138 u16 cmd_action)
1139{
1140 struct cmd_ds_802_11_beacon_control
1141 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001142
1143 lbs_deb_enter(LBS_DEB_CMD);
1144 cmd->size =
1145 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1146 + S_DS_GEN);
1147 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1148
1149 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001150 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1151 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001152
1153 lbs_deb_leave(LBS_DEB_CMD);
1154 return 0;
1155}
1156
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001157/*
Holger Schurig10078322007-11-15 18:05:47 -05001158 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001159 * the command timer, because it does not account for queued commands.
1160 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001161void lbs_queue_cmd(struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +01001162 struct cmd_ctrl_node *cmdnode,
1163 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164{
1165 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001166
Holger Schurig8ff12da2007-08-02 11:54:31 -04001167 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168
David Woodhousec4ab4122007-12-15 00:41:51 -05001169 if (!cmdnode) {
1170 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001171 goto done;
1172 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001173 if (!cmdnode->cmdbuf->size) {
1174 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1175 goto done;
1176 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177
1178 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001179 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
1180 struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf;
1181
Dan Williams0aef64d2007-08-02 11:31:18 -04001182 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001183 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184 addtail = 0;
1185 }
1186 }
1187
David Woodhouseaa21c002007-12-08 20:04:36 +00001188 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189
David Woodhouseac472462007-12-08 00:35:00 +00001190 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001191 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001192 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001193 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001194
David Woodhouseaa21c002007-12-08 20:04:36 +00001195 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001196
Holger Schurig8ff12da2007-08-02 11:54:31 -04001197 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001198 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199
1200done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001201 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001202}
1203
David Woodhoused9896ee2007-12-15 00:09:25 -05001204static int lbs_submit_command(struct lbs_private *priv,
1205 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206{
1207 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001208 struct cmd_header *cmd;
Eugene Teob031ac12007-08-02 13:18:07 -04001209 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210 u16 cmdsize;
1211 u16 command;
1212
Holger Schurig8ff12da2007-08-02 11:54:31 -04001213 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214
Dan Williamsddac4522007-12-11 13:49:39 -05001215 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001216
David Woodhouseaa21c002007-12-08 20:04:36 +00001217 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001218 priv->cur_cmd = cmdnode;
1219 priv->cur_cmd_retcode = 0;
1220 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001221
Dan Williamsddac4522007-12-11 13:49:39 -05001222 cmdsize = le16_to_cpu(cmd->size);
1223 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
David Woodhousee1258172007-12-11 23:42:49 -05001225 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1226 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001227 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001228
Dan Williamsddac4522007-12-11 13:49:39 -05001229 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhoused9896ee2007-12-15 00:09:25 -05001230 if (ret) {
1231 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouseaa21c002007-12-08 20:04:36 +00001232 spin_lock_irqsave(&priv->driver_lock, flags);
1233 priv->cur_cmd_retcode = ret;
1234 __lbs_cleanup_and_insert_cmd(priv, priv->cur_cmd);
1235 priv->cur_cmd = NULL;
1236 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237 goto done;
1238 }
1239
Holger Schurig8ff12da2007-08-02 11:54:31 -04001240 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241
1242 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001243 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1244 || command == CMD_802_11_ASSOCIATE)
David Woodhouseaa21c002007-12-08 20:04:36 +00001245 mod_timer(&priv->command_timer, jiffies + (10*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001247 mod_timer(&priv->command_timer, jiffies + (5*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001248
1249 ret = 0;
1250
Holger Schurig9012b282007-05-25 11:27:16 -04001251done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001252 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001253 return ret;
1254}
1255
Holger Schurig69f90322007-11-23 15:43:44 +01001256static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001257 struct cmd_ds_command *cmd)
1258{
1259 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1260
Holger Schurig9012b282007-05-25 11:27:16 -04001261 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001262
Dan Williams0aef64d2007-08-02 11:31:18 -04001263 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001264 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001265 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001266
Holger Schurig8ff12da2007-08-02 11:54:31 -04001267 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001268 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001269
Holger Schurig9012b282007-05-25 11:27:16 -04001270 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001271 return 0;
1272}
1273
1274/**
1275 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001276 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 */
Holger Schurig69f90322007-11-23 15:43:44 +01001278void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1279 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001281
1282 if (!ptempcmd)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001283 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001284
1285 cleanup_cmdnode(ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001286 list_add_tail(&ptempcmd->list, &priv->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287}
1288
Holger Schurig69f90322007-11-23 15:43:44 +01001289static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1290 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001291{
1292 unsigned long flags;
1293
David Woodhouseaa21c002007-12-08 20:04:36 +00001294 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001295 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001296 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297}
1298
Holger Schurig69f90322007-11-23 15:43:44 +01001299int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001300{
1301 int ret = 0;
1302
Holger Schurig9012b282007-05-25 11:27:16 -04001303 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001304
Holger Schurig10078322007-11-15 18:05:47 -05001305 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001306 CMD_802_11_RADIO_CONTROL,
1307 CMD_ACT_SET,
1308 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001309
Holger Schurig8ff12da2007-08-02 11:54:31 -04001310 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001311 priv->radioon, priv->preamble);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312
Holger Schurig9012b282007-05-25 11:27:16 -04001313 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001314 return ret;
1315}
1316
Holger Schurig69f90322007-11-23 15:43:44 +01001317int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001318{
1319 int ret = 0;
1320
Holger Schurig9012b282007-05-25 11:27:16 -04001321 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001322
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001324 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001325 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326
Holger Schurig9012b282007-05-25 11:27:16 -04001327 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328 return ret;
1329}
1330
1331/**
1332 * @brief This function prepare the command before send to firmware.
1333 *
Holger Schurig69f90322007-11-23 15:43:44 +01001334 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335 * @param cmd_no command number
1336 * @param cmd_action command action: GET or SET
1337 * @param wait_option wait option: wait response or not
1338 * @param cmd_oid cmd oid: treated as sub command
1339 * @param pdata_buf A pointer to informaion buffer
1340 * @return 0 or -1
1341 */
Holger Schurig69f90322007-11-23 15:43:44 +01001342int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343 u16 cmd_no,
1344 u16 cmd_action,
1345 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1346{
1347 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001348 struct cmd_ctrl_node *cmdnode;
1349 struct cmd_ds_command *cmdptr;
1350 unsigned long flags;
1351
Holger Schurig8ff12da2007-08-02 11:54:31 -04001352 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001353
David Woodhouseaa21c002007-12-08 20:04:36 +00001354 if (!priv) {
1355 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001356 ret = -1;
1357 goto done;
1358 }
1359
David Woodhouseaa21c002007-12-08 20:04:36 +00001360 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001361 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001362 ret = -1;
1363 goto done;
1364 }
1365
Holger Schurig0d61d042007-12-05 17:58:06 +01001366 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001367
1368 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001369 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001370
1371 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001372 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001373 ret = -1;
1374 goto done;
1375 }
1376
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001377 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378
Dan Williamsddac4522007-12-11 13:49:39 -05001379 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001380
Holger Schurig8ff12da2007-08-02 11:54:31 -04001381 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001383 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001384 priv->seqnum++;
1385 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001386
David Woodhouse981f1872007-05-25 23:36:54 -04001387 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001388 cmdptr->result = 0;
1389
1390 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001391 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001392 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 break;
1394
Dan Williams0aef64d2007-08-02 11:31:18 -04001395 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001396 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397 break;
1398
Dan Williams0aef64d2007-08-02 11:31:18 -04001399 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001400 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401 break;
1402
Dan Williams0aef64d2007-08-02 11:31:18 -04001403 case CMD_802_11_ASSOCIATE:
1404 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001405 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001406 break;
1407
Dan Williams0aef64d2007-08-02 11:31:18 -04001408 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001409 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001410 break;
1411
Dan Williams0aef64d2007-08-02 11:31:18 -04001412 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001413 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001414 break;
1415
Dan Williams0aef64d2007-08-02 11:31:18 -04001416 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001417 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001418 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001419 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 break;
1421
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001423 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424 break;
1425
Dan Williams0aef64d2007-08-02 11:31:18 -04001426 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001427 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001428 break;
1429
Dan Williams0aef64d2007-08-02 11:31:18 -04001430 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001431 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001432 break;
1433
Dan Williams0aef64d2007-08-02 11:31:18 -04001434 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001435 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 break;
1437
Dan Williams0aef64d2007-08-02 11:31:18 -04001438 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001439 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001440 cmd_action, cmd_oid, pdata_buf);
1441 break;
1442
Dan Williams0aef64d2007-08-02 11:31:18 -04001443 case CMD_MAC_REG_ACCESS:
1444 case CMD_BBP_REG_ACCESS:
1445 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001446 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001447 break;
1448
Dan Williams0aef64d2007-08-02 11:31:18 -04001449 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001450 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001451 cmd_action, pdata_buf);
1452 break;
1453
Dan Williams0aef64d2007-08-02 11:31:18 -04001454 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001455 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001456 break;
1457
Dan Williams0aef64d2007-08-02 11:31:18 -04001458 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001459 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001460 cmdptr, cmd_action);
1461 break;
1462
Dan Williams0aef64d2007-08-02 11:31:18 -04001463 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001464 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001465 break;
1466
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001467 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001468 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001469 cmd_action, pdata_buf);
1470 break;
1471
Dan Williams0aef64d2007-08-02 11:31:18 -04001472 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001473 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001474 break;
1475
Dan Williams0aef64d2007-08-02 11:31:18 -04001476 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001477 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001478 break;
1479
Dan Williams0aef64d2007-08-02 11:31:18 -04001480 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001481 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001482 break;
1483
Dan Williams0aef64d2007-08-02 11:31:18 -04001484 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001485 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001486 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001487 break;
1488
Dan Williams0aef64d2007-08-02 11:31:18 -04001489 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001490 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001491 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001492 break;
1493
Dan Williams0aef64d2007-08-02 11:31:18 -04001494 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001495 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001496 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001497 break;
1498
Dan Williams0aef64d2007-08-02 11:31:18 -04001499 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001500 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001501 break;
1502
Dan Williams0aef64d2007-08-02 11:31:18 -04001503 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001504 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001505 cmd_action, pdata_buf);
1506 break;
1507
Dan Williams0aef64d2007-08-02 11:31:18 -04001508 case CMD_802_11_SET_AFC:
1509 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001510
1511 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001512 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1513 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001514
1515 memmove(&cmdptr->params.afc,
1516 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1517
1518 ret = 0;
1519 goto done;
1520
Dan Williams0aef64d2007-08-02 11:31:18 -04001521 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001522 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001523 cmd_no, cmd_action);
1524 break;
1525
Dan Williams0aef64d2007-08-02 11:31:18 -04001526 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001527 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001528 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001529 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001530 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001531 cmd_action, pdata_buf);
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001532 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533 break;
1534
Dan Williams0aef64d2007-08-02 11:31:18 -04001535 case CMD_802_11_TPC_CFG:
1536 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537 cmdptr->size =
1538 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1539 S_DS_GEN);
1540
1541 memmove(&cmdptr->params.tpccfg,
1542 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1543
1544 ret = 0;
1545 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001546 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001547 {
1548 struct mrvlietypes_ledgpio *gpio =
1549 (struct mrvlietypes_ledgpio*)
1550 cmdptr->params.ledgpio.data;
1551
1552 memmove(&cmdptr->params.ledgpio,
1553 pdata_buf,
1554 sizeof(struct cmd_ds_802_11_led_ctrl));
1555
1556 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001557 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001558
1559#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1560 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001561 cpu_to_le16(le16_to_cpu(gpio->header.len)
1562 + S_DS_GEN
1563 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1564 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001565
1566 ret = 0;
1567 break;
1568 }
Holger Schurig3a188642007-11-26 10:07:14 +01001569 case CMD_802_11_SUBSCRIBE_EVENT:
1570 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1571 cmd_action, pdata_buf);
1572 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001573 case CMD_802_11_PWR_CFG:
1574 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575 cmdptr->size =
1576 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1577 S_DS_GEN);
1578 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1579 sizeof(struct cmd_ds_802_11_pwr_cfg));
1580
1581 ret = 0;
1582 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001583 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001584 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001585 break;
1586
Dan Williams0aef64d2007-08-02 11:31:18 -04001587 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001588 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001589 break;
1590
Dan Williams0aef64d2007-08-02 11:31:18 -04001591 case CMD_GET_TSF:
1592 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001593 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1594 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001595 ret = 0;
1596 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001597 case CMD_802_11_BEACON_CTRL:
1598 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1599 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001600 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001601 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001602 ret = -1;
1603 break;
1604 }
1605
1606 /* return error, since the command preparation failed */
1607 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001608 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001609 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001610 ret = -1;
1611 goto done;
1612 }
1613
1614 cmdnode->cmdwaitqwoken = 0;
1615
David Woodhouseaa21c002007-12-08 20:04:36 +00001616 lbs_queue_cmd(priv, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001617 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001618
Dan Williams0aef64d2007-08-02 11:31:18 -04001619 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001620 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001621 might_sleep();
1622 wait_event_interruptible(cmdnode->cmdwait_q,
1623 cmdnode->cmdwaitqwoken);
1624 }
1625
David Woodhouseaa21c002007-12-08 20:04:36 +00001626 spin_lock_irqsave(&priv->driver_lock, flags);
1627 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001628 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001629 priv->cur_cmd_retcode);
1630 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001631 ret = -1;
1632 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001633 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001634
1635done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001636 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001637 return ret;
1638}
Holger Schurig10078322007-11-15 18:05:47 -05001639EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001640
1641/**
1642 * @brief This function allocates the command buffer and link
1643 * it to command free queue.
1644 *
Holger Schurig69f90322007-11-23 15:43:44 +01001645 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646 * @return 0 or -1
1647 */
Holger Schurig69f90322007-11-23 15:43:44 +01001648int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649{
1650 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001651 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001652 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001653 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654
Holger Schurig8ff12da2007-08-02 11:54:31 -04001655 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001656
Dan Williamsddac4522007-12-11 13:49:39 -05001657 /* Allocate and initialize the command array */
1658 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1659 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001660 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001661 ret = -1;
1662 goto done;
1663 }
Dan Williamsddac4522007-12-11 13:49:39 -05001664 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665
Dan Williamsddac4522007-12-11 13:49:39 -05001666 /* Allocate and initialize each command buffer in the command array */
1667 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1668 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1669 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001670 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671 ret = -1;
1672 goto done;
1673 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674 }
1675
Dan Williamsddac4522007-12-11 13:49:39 -05001676 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1677 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1678 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001679 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001680 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001681
1682done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001683 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001684 return ret;
1685}
1686
1687/**
1688 * @brief This function frees the command buffer.
1689 *
Holger Schurig69f90322007-11-23 15:43:44 +01001690 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691 * @return 0 or -1
1692 */
Holger Schurig69f90322007-11-23 15:43:44 +01001693int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001694{
Dan Williamsddac4522007-12-11 13:49:39 -05001695 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001696 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001697
Holger Schurig8ff12da2007-08-02 11:54:31 -04001698 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699
1700 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001701 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001702 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001703 goto done;
1704 }
1705
Dan Williamsddac4522007-12-11 13:49:39 -05001706 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001707
1708 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001709 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1710 if (cmdarray[i].cmdbuf) {
1711 kfree(cmdarray[i].cmdbuf);
1712 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001713 }
1714 }
1715
1716 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001717 if (priv->cmd_array) {
1718 kfree(priv->cmd_array);
1719 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720 }
1721
1722done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001723 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724 return 0;
1725}
1726
1727/**
1728 * @brief This function gets a free command node if available in
1729 * command free queue.
1730 *
Holger Schurig69f90322007-11-23 15:43:44 +01001731 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001732 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1733 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001734static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735{
1736 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001737 unsigned long flags;
1738
Holger Schurig8ff12da2007-08-02 11:54:31 -04001739 lbs_deb_enter(LBS_DEB_HOST);
1740
David Woodhouseaa21c002007-12-08 20:04:36 +00001741 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001742 return NULL;
1743
David Woodhouseaa21c002007-12-08 20:04:36 +00001744 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001745
David Woodhouseaa21c002007-12-08 20:04:36 +00001746 if (!list_empty(&priv->cmdfreeq)) {
1747 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001748 struct cmd_ctrl_node, list);
1749 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001751 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 tempnode = NULL;
1753 }
1754
David Woodhouseaa21c002007-12-08 20:04:36 +00001755 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001756
Holger Schurig8ff12da2007-08-02 11:54:31 -04001757 if (tempnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758 cleanup_cmdnode(tempnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001759
Holger Schurig8ff12da2007-08-02 11:54:31 -04001760 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001761 return tempnode;
1762}
1763
1764/**
1765 * @brief This function cleans command node.
1766 *
1767 * @param ptempnode A pointer to cmdCtrlNode structure
1768 * @return n/a
1769 */
Dan Williamsddac4522007-12-11 13:49:39 -05001770static void cleanup_cmdnode(struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001771{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001772 lbs_deb_enter(LBS_DEB_HOST);
1773
Dan Williamsddac4522007-12-11 13:49:39 -05001774 if (!cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001775 return;
Dan Williamsddac4522007-12-11 13:49:39 -05001776 cmdnode->cmdwaitqwoken = 1;
1777 wake_up_interruptible(&cmdnode->cmdwait_q);
Dan Williamsddac4522007-12-11 13:49:39 -05001778 cmdnode->pdata_buf = NULL;
1779 cmdnode->callback = NULL;
1780 cmdnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781
David Woodhousec4ab4122007-12-15 00:41:51 -05001782 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001783
1784 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001785}
1786
1787/**
1788 * @brief This function initializes the command node.
1789 *
Holger Schurig69f90322007-11-23 15:43:44 +01001790 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001791 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001792 * @param pdata_buf A pointer to informaion buffer
1793 * @return 0 or -1
1794 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001795static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1796 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001797 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001798{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001799 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001800
1801 if (!ptempnode)
1802 return;
1803
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804 ptempnode->pdata_buf = pdata_buf;
David Woodhouse17230472007-12-07 15:13:05 +00001805 ptempnode->callback = NULL;
David Woodhouse1309b552007-12-10 13:36:10 -05001806 ptempnode->callback_arg = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001807
Holger Schurig8ff12da2007-08-02 11:54:31 -04001808 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001809}
1810
1811/**
1812 * @brief This function executes next command in command
1813 * pending queue. It will put fimware back to PS mode
1814 * if applicable.
1815 *
Holger Schurig69f90322007-11-23 15:43:44 +01001816 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817 * @return 0 or -1
1818 */
Holger Schurig69f90322007-11-23 15:43:44 +01001819int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001820{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001821 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001822 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001823 unsigned long flags;
1824 int ret = 0;
1825
Holger Schurig8ff12da2007-08-02 11:54:31 -04001826 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001827 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001828 // data packet is received
1829 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001830
David Woodhouseaa21c002007-12-08 20:04:36 +00001831 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001832
David Woodhouseaa21c002007-12-08 20:04:36 +00001833 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001834 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001835 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836 ret = -1;
1837 goto done;
1838 }
1839
David Woodhouseaa21c002007-12-08 20:04:36 +00001840 if (!list_empty(&priv->cmdpendingq)) {
1841 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001842 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001843 }
1844
David Woodhouseaa21c002007-12-08 20:04:36 +00001845 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001846
1847 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001848 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001849
Dan Williamsddac4522007-12-11 13:49:39 -05001850 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001851 if ((priv->psstate == PS_STATE_SLEEP) ||
1852 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001853 lbs_deb_host(
1854 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001855 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001856 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001857 ret = -1;
1858 goto done;
1859 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001860 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001861 "0x%04x in psstate %d\n",
1862 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001863 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001864 /*
1865 * 1. Non-PS command:
1866 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001867 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001868 * 2. PS command but not Exit_PS:
1869 * Ignore it.
1870 * 3. PS command Exit_PS:
1871 * Set needtowakeup to TRUE if current state is SLEEP,
1872 * otherwise send this command down to firmware
1873 * immediately.
1874 */
Dan Williamsddac4522007-12-11 13:49:39 -05001875 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001876 /* Prepare to send Exit PS,
1877 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001878 if ((priv->psstate == PS_STATE_SLEEP)
1879 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001880 ) {
1881 /* w/ new scheme, it will not reach here.
1882 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001883 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001884 } else
Holger Schurig10078322007-11-15 18:05:47 -05001885 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001886
1887 ret = 0;
1888 goto done;
1889 } else {
1890 /*
1891 * PS command. Ignore it if it is not Exit_PS.
1892 * otherwise send it down immediately.
1893 */
Dan Williamsddac4522007-12-11 13:49:39 -05001894 struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895
Holger Schurig8ff12da2007-08-02 11:54:31 -04001896 lbs_deb_host(
1897 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001898 psm->action);
1899 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001900 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001901 lbs_deb_host(
1902 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001903 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001904 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001905
1906 ret = 0;
1907 goto done;
1908 }
1909
David Woodhouseaa21c002007-12-08 20:04:36 +00001910 if ((priv->psstate == PS_STATE_SLEEP) ||
1911 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001912 lbs_deb_host(
1913 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001914 list_del(&cmdnode->list);
Holger Schurig10078322007-11-15 18:05:47 -05001915 lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001916 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001917
1918 ret = 0;
1919 goto done;
1920 }
1921
Holger Schurig8ff12da2007-08-02 11:54:31 -04001922 lbs_deb_host(
1923 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001924 }
1925 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001926 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001927 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001928 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001929 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001930 } else {
1931 /*
1932 * check if in power save mode, if yes, put the device back
1933 * to PS mode
1934 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001935 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1936 (priv->psstate == PS_STATE_FULL_POWER) &&
1937 ((priv->connect_status == LBS_CONNECTED) ||
1938 (priv->mesh_connect_status == LBS_CONNECTED))) {
1939 if (priv->secinfo.WPAenabled ||
1940 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001941 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001942 if (priv->wpa_mcast_key.len ||
1943 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001944 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001945 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1946 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001947 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001948 }
1949 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001950 lbs_deb_host(
1951 "EXEC_NEXT_CMD: cmdpendingq empty, "
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 }
1956 }
1957
1958 ret = 0;
1959done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001960 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001961 return ret;
1962}
1963
Holger Schurig69f90322007-11-23 15:43:44 +01001964void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001965{
1966 union iwreq_data iwrq;
1967 u8 buf[50];
1968
Holger Schurig8ff12da2007-08-02 11:54:31 -04001969 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970
1971 memset(&iwrq, 0, sizeof(union iwreq_data));
1972 memset(buf, 0, sizeof(buf));
1973
1974 snprintf(buf, sizeof(buf) - 1, "%s", str);
1975
1976 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1977
1978 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001979 lbs_deb_wext("event indication string %s\n", (char *)buf);
1980 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1981 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001982
Holger Schurig634b8f42007-05-25 13:05:16 -04001983 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001984
Holger Schurig8ff12da2007-08-02 11:54:31 -04001985 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001986}
1987
Holger Schurig69f90322007-11-23 15:43:44 +01001988static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001989{
1990 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001991 int ret = 0;
1992
Holger Schurig8ff12da2007-08-02 11:54:31 -04001993 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001994
Holger Schurig8ff12da2007-08-02 11:54:31 -04001995 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996 size);
1997
Holger Schurig8ff12da2007-08-02 11:54:31 -04001998 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001999
Holger Schurig208fdd22007-05-25 12:17:06 -04002000 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04002001 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002002
David Woodhouseaa21c002007-12-08 20:04:36 +00002003 spin_lock_irqsave(&priv->driver_lock, flags);
2004 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04002005 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002006 priv->intcounter, priv->currenttxskb);
2007 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002008
2009 if (ret) {
2010 lbs_pr_alert(
2011 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
2012 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00002013 spin_lock_irqsave(&priv->driver_lock, flags);
2014 if (!priv->intcounter) {
2015 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002016 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002017 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002018 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002019 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002020 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002021
Holger Schurig8ff12da2007-08-02 11:54:31 -04002022 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 }
2024
Holger Schurig8ff12da2007-08-02 11:54:31 -04002025 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002026 return ret;
2027}
2028
Holger Schurig69f90322007-11-23 15:43:44 +01002029void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002030{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002031 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002032
2033 /*
2034 * PS is currently supported only in Infrastructure mode
2035 * Remove this check if it is to be supported in IBSS mode also
2036 */
2037
Holger Schurig10078322007-11-15 18:05:47 -05002038 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002039 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002040
Holger Schurig8ff12da2007-08-02 11:54:31 -04002041 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002042}
2043
2044/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002045 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046 *
Holger Schurig69f90322007-11-23 15:43:44 +01002047 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002048 * @param wait_option wait response or not
2049 * @return n/a
2050 */
Holger Schurig69f90322007-11-23 15:43:44 +01002051void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052{
David Woodhouse981f1872007-05-25 23:36:54 -04002053 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054
Holger Schurig8ff12da2007-08-02 11:54:31 -04002055 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002056
Holger Schurig10078322007-11-15 18:05:47 -05002057 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002058
Holger Schurig10078322007-11-15 18:05:47 -05002059 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002060 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002061 wait_option, 0, &Localpsmode);
2062
Holger Schurig8ff12da2007-08-02 11:54:31 -04002063 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002064}
2065
2066/**
2067 * @brief This function checks condition and prepares to
2068 * send sleep confirm command to firmware if ok.
2069 *
Holger Schurig69f90322007-11-23 15:43:44 +01002070 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002071 * @param psmode Power Saving mode
2072 * @return n/a
2073 */
Holger Schurig69f90322007-11-23 15:43:44 +01002074void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002075{
2076 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002077 u8 allowed = 1;
2078
Holger Schurig8ff12da2007-08-02 11:54:31 -04002079 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002080
Holger Schurig634b8f42007-05-25 13:05:16 -04002081 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002082 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002083 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002084 }
2085
David Woodhouseaa21c002007-12-08 20:04:36 +00002086 spin_lock_irqsave(&priv->driver_lock, flags);
2087 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002088 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002089 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002090 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002091 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002092 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002093 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002094 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002095 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002096
2097 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002098 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002099 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002100 sizeof(struct PS_CMD_ConfirmSleep));
2101 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002102 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002103 }
2104
Holger Schurig8ff12da2007-08-02 11:54:31 -04002105 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002106}
Holger Schurig675787e2007-12-05 17:58:11 +01002107
2108
2109/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002110 * @brief Simple callback that copies response back into command
2111 *
2112 * @param priv A pointer to struct lbs_private structure
2113 * @param extra A pointer to the original command structure for which
2114 * 'resp' is a response
2115 * @param resp A pointer to the command response
2116 *
2117 * @return 0 on success, error on failure
2118 */
2119int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002120 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002121{
2122 struct cmd_header *buf = (void *)extra;
2123 uint16_t copy_len;
2124
2125 lbs_deb_enter(LBS_DEB_CMD);
2126
2127 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2128 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002129 "copy back buffer was %u bytes\n", copy_len,
2130 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002131 memcpy(buf, resp, copy_len);
2132
2133 lbs_deb_leave(LBS_DEB_CMD);
2134 return 0;
2135}
David Woodhouse689442d2007-12-12 16:00:42 -05002136EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002137
2138/**
Holger Schurig675787e2007-12-05 17:58:11 +01002139 * @brief Simple way to call firmware functions
2140 *
2141 * @param priv A pointer to struct lbs_private structure
2142 * @param psmode one of the many CMD_802_11_xxxx
2143 * @param cmd pointer to the parameters structure for above command
2144 * (this should not include the command, size, sequence
2145 * and result fields from struct cmd_ds_gen)
2146 * @param cmd_size size structure pointed to by cmd
2147 * @param rsp pointer to an area where the result should be placed
2148 * @param rsp_size pointer to the size of the rsp area. If the firmware
2149 * returns fewer bytes, then this *rsp_size will be
2150 * changed to the actual size.
2151 * @return -1 in case of a higher level error, otherwise
2152 * the result code from the firmware
2153 */
Dan Williams7ad994d2007-12-11 12:33:30 -05002154int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2155 struct cmd_header *in_cmd, int in_cmd_size,
2156 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
Dan Williams14e865b2007-12-10 15:11:23 -05002157 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002158{
Holger Schurig675787e2007-12-05 17:58:11 +01002159 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002160 unsigned long flags;
2161 int ret = 0;
2162
2163 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002164
David Woodhouseaa21c002007-12-08 20:04:36 +00002165 if (!priv) {
2166 lbs_deb_host("PREP_CMD: priv is NULL\n");
Holger Schurig675787e2007-12-05 17:58:11 +01002167 ret = -1;
2168 goto done;
2169 }
2170
David Woodhouseaa21c002007-12-08 20:04:36 +00002171 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002172 lbs_deb_host("PREP_CMD: card removed\n");
2173 ret = -1;
2174 goto done;
2175 }
2176
2177 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002178 if (cmdnode == NULL) {
2179 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2180
2181 /* Wake up main thread to execute next command */
2182 wake_up_interruptible(&priv->waitq);
2183 ret = -1;
2184 goto done;
2185 }
2186
David Woodhouse448a51a2007-12-08 00:59:54 +00002187 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002188 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002189
Dan Williams7ad994d2007-12-11 12:33:30 -05002190 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002191 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002192
Holger Schurig675787e2007-12-05 17:58:11 +01002193 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002194 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002195 cmdnode->cmdbuf->command = cpu_to_le16(command);
2196 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2197 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2198 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002199
2200 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2201
2202 /* here was the big old switch() statement, which is now obsolete,
2203 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2204
2205 cmdnode->cmdwaitqwoken = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00002206 lbs_queue_cmd(priv, cmdnode, 1);
Holger Schurig675787e2007-12-05 17:58:11 +01002207 wake_up_interruptible(&priv->waitq);
2208
2209 might_sleep();
2210 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2211
David Woodhouseaa21c002007-12-08 20:04:36 +00002212 spin_lock_irqsave(&priv->driver_lock, flags);
2213 if (priv->cur_cmd_retcode) {
Holger Schurig675787e2007-12-05 17:58:11 +01002214 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002215 priv->cur_cmd_retcode);
2216 priv->cur_cmd_retcode = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002217 ret = -1;
2218 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002219 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002220
2221done:
2222 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2223 return ret;
2224}
Dan Williams14e865b2007-12-10 15:11:23 -05002225EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002226
2227