blob: 3a7b82f99cb3df751790c48362095f337d99c9eb [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
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050016static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
17static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Holger Schurig0d61d042007-12-05 17:58:06 +010018 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -050019 void *pdata_buf);
Holger Schurig0d61d042007-12-05 17:58:06 +010020
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022/**
Dan Williams852e1f22007-12-10 15:24:47 -050023 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024 *
25 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050026 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027 */
Dan Williams852e1f22007-12-10 15:24:47 -050028static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020029{
Dan Williams852e1f22007-12-10 15:24:47 -050030 switch (cmd) {
31 case CMD_802_11_RSSI:
32 return 1;
33 default:
34 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020035 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 return 0;
37}
38
Dan Williams6e66f032007-12-11 12:42:16 -050039/**
40 * @brief Updates the hardware details like MAC address and regulatory region
41 *
42 * @param priv A pointer to struct lbs_private structure
43 *
44 * @return 0 on success, error on failure
45 */
46int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020047{
Dan Williams6e66f032007-12-11 12:42:16 -050048 struct cmd_ds_get_hw_spec cmd;
49 int ret = -1;
50 u32 i;
51 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020052
Holger Schurig9012b282007-05-25 11:27:16 -040053 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054
Dan Williams6e66f032007-12-11 12:42:16 -050055 memset(&cmd, 0, sizeof(cmd));
56 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
57 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050058 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050059 if (ret)
60 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061
Dan Williams6e66f032007-12-11 12:42:16 -050062 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
63 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
64
65 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
66 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
67 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
68 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
69 print_mac(mac, cmd.permanentaddr));
70 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
71 cmd.hwifversion, cmd.version);
72
73 /* Clamp region code to 8-bit since FW spec indicates that it should
74 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
75 * returns non-zero high 8 bits here.
76 */
77 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
78
79 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
80 /* use the region code to search for the index */
81 if (priv->regioncode == lbs_region_code_to_index[i])
82 break;
83 }
84
85 /* if it's unidentified region code, use the default (USA) */
86 if (i >= MRVDRV_MAX_REGION_CODE) {
87 priv->regioncode = 0x10;
88 lbs_pr_info("unidentified region code; using the default (USA)\n");
89 }
90
91 if (priv->current_addr[0] == 0xff)
92 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
93
94 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
95 if (priv->mesh_dev)
96 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
97
98 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
99 ret = -1;
100 goto out;
101 }
102
103 if (lbs_set_universaltable(priv, 0)) {
104 ret = -1;
105 goto out;
106 }
107
108out:
Holger Schurig9012b282007-05-25 11:27:16 -0400109 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500110 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111}
112
David Woodhouse506e9022007-12-12 20:06:06 -0500113int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500114{
115 struct cmd_ds_host_sleep cmd_config;
116 int ret;
117
David Woodhouse9fae8992007-12-15 03:46:44 -0500118 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500119 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_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607 struct cmd_ds_command *cmd,
608 u16 cmd_action, void *pdata_buf)
609{
610
611 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
612
Holger Schurig9012b282007-05-25 11:27:16 -0400613 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200614
615 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400616 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400617 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400618 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200619
David Woodhouse981f1872007-05-25 23:36:54 -0400620 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
621 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
622 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623
624 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400625 case CMD_ACT_TX_POWER_OPT_GET:
626 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 prtp->currentlevel = 0;
628 break;
629
Dan Williams0aef64d2007-08-02 11:31:18 -0400630 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
631 prtp->action = cpu_to_le16(CMD_ACT_SET);
632 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200633 break;
634
Dan Williams0aef64d2007-08-02 11:31:18 -0400635 case CMD_ACT_TX_POWER_OPT_SET_MID:
636 prtp->action = cpu_to_le16(CMD_ACT_SET);
637 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638 break;
639
Dan Williams0aef64d2007-08-02 11:31:18 -0400640 case CMD_ACT_TX_POWER_OPT_SET_LOW:
641 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
643 break;
644 }
Holger Schurig9012b282007-05-25 11:27:16 -0400645
646 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200647 return 0;
648}
649
Holger Schurig69f90322007-11-23 15:43:44 +0100650static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400651 struct cmd_ds_command *cmd,
652 u16 cmd_action, void *pdata_buf)
653{
654 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
655
656 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
657 cmd->size =
658 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
659 S_DS_GEN);
660
661 monitor->action = cpu_to_le16(cmd_action);
662 if (cmd_action == CMD_ACT_SET) {
663 monitor->mode =
664 cpu_to_le16((u16) (*(u32 *) pdata_buf));
665 }
666
667 return 0;
668}
669
Holger Schurig69f90322007-11-23 15:43:44 +0100670static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671 struct cmd_ds_command *cmd,
672 u16 cmd_action)
673{
674 struct cmd_ds_802_11_rate_adapt_rateset
675 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676
Holger Schurig8ff12da2007-08-02 11:54:31 -0400677 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200678 cmd->size =
679 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
680 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400681 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200682
David Woodhouse981f1872007-05-25 23:36:54 -0400683 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000684 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
685 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200686
Holger Schurig9012b282007-05-25 11:27:16 -0400687 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200688 return 0;
689}
690
Dan Williams8e3c91b2007-12-11 15:50:59 -0500691/**
692 * @brief Get the current data rate
693 *
694 * @param priv A pointer to struct lbs_private structure
695 *
696 * @return The data rate on success, error on failure
697 */
698int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200699{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500700 struct cmd_ds_802_11_data_rate cmd;
701 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200702
Holger Schurig9012b282007-05-25 11:27:16 -0400703 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200704
Dan Williams8e3c91b2007-12-11 15:50:59 -0500705 memset(&cmd, 0, sizeof(cmd));
706 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
707 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200708
David Woodhouse689442d2007-12-12 16:00:42 -0500709 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500710 if (ret)
711 goto out;
712
713 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
714
715 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
716 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
717
718out:
719 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
720 return ret;
721}
722
723/**
724 * @brief Set the data rate
725 *
726 * @param priv A pointer to struct lbs_private structure
727 * @param rate The desired data rate, or 0 to clear a locked rate
728 *
729 * @return 0 on success, error on failure
730 */
731int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
732{
733 struct cmd_ds_802_11_data_rate cmd;
734 int ret = 0;
735
736 lbs_deb_enter(LBS_DEB_CMD);
737
738 memset(&cmd, 0, sizeof(cmd));
739 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
740
741 if (rate > 0) {
742 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
743 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
744 if (cmd.rates[0] == 0) {
745 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
746 " 0x%02X\n", rate);
747 ret = 0;
748 goto out;
749 }
750 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
751 } else {
752 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400753 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200754 }
755
David Woodhouse689442d2007-12-12 16:00:42 -0500756 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500757 if (ret)
758 goto out;
759
760 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
761
762 /* FIXME: get actual rates FW can do if this command actually returns
763 * all data rates supported.
764 */
765 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
766 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
767
768out:
769 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
770 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200771}
772
Holger Schurig69f90322007-11-23 15:43:44 +0100773static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200774 struct cmd_ds_command *cmd,
775 u16 cmd_action)
776{
777 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200778
Holger Schurig8ff12da2007-08-02 11:54:31 -0400779 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400780 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200781 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400782 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200783
Holger Schurig8ff12da2007-08-02 11:54:31 -0400784 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200785 pMCastAdr->action = cpu_to_le16(cmd_action);
786 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000787 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
788 memcpy(pMCastAdr->maclist, priv->multicastlist,
789 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200790
Holger Schurig8ff12da2007-08-02 11:54:31 -0400791 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200792 return 0;
793}
794
Dan Williams2dd4b262007-12-11 16:54:15 -0500795/**
796 * @brief Get the radio channel
797 *
798 * @param priv A pointer to struct lbs_private structure
799 *
800 * @return The channel on success, error on failure
801 */
802int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200803{
Dan Williams2dd4b262007-12-11 16:54:15 -0500804 struct cmd_ds_802_11_rf_channel cmd;
805 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806
Holger Schurig8ff12da2007-08-02 11:54:31 -0400807 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200808
Dan Williams2dd4b262007-12-11 16:54:15 -0500809 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
810 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811
David Woodhouse689442d2007-12-12 16:00:42 -0500812 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500813 if (ret)
814 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200815
Dan Williamscb182a62007-12-11 17:35:51 -0500816 ret = le16_to_cpu(cmd.channel);
817 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500818
819out:
820 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
821 return ret;
822}
823
824/**
825 * @brief Set the radio channel
826 *
827 * @param priv A pointer to struct lbs_private structure
828 * @param channel The desired channel, or 0 to clear a locked channel
829 *
830 * @return 0 on success, error on failure
831 */
832int lbs_set_channel(struct lbs_private *priv, u8 channel)
833{
834 struct cmd_ds_802_11_rf_channel cmd;
835 u8 old_channel = priv->curbssparams.channel;
836 int ret = 0;
837
838 lbs_deb_enter(LBS_DEB_CMD);
839
840 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
841 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
842 cmd.channel = cpu_to_le16(channel);
843
David Woodhouse689442d2007-12-12 16:00:42 -0500844 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500845 if (ret)
846 goto out;
847
Dan Williamscb182a62007-12-11 17:35:51 -0500848 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
849 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
850 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500851
852out:
853 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
854 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200855}
856
Holger Schurig69f90322007-11-23 15:43:44 +0100857static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200858 struct cmd_ds_command *cmd)
859{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200860
Holger Schurig8ff12da2007-08-02 11:54:31 -0400861 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400862 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400863 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400864 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200865
866 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000867 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
868 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
869 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
870 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
871 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
872 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873
Holger Schurig8ff12da2007-08-02 11:54:31 -0400874 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875 return 0;
876}
877
Holger Schurig69f90322007-11-23 15:43:44 +0100878static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200879 struct cmd_ds_command *cmdptr,
880 u8 cmd_action, void *pdata_buf)
881{
Holger Schurig10078322007-11-15 18:05:47 -0500882 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200883
Holger Schurig9012b282007-05-25 11:27:16 -0400884 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200885
Holger Schurig10078322007-11-15 18:05:47 -0500886 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200887
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000888 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400889 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200890 {
891 struct cmd_ds_mac_reg_access *macreg;
892
893 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400894 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
895 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200896 macreg =
897 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
898 macreg;
899
900 macreg->action = cpu_to_le16(cmd_action);
901 macreg->offset = cpu_to_le16((u16) offval->offset);
902 macreg->value = cpu_to_le32(offval->value);
903
904 break;
905 }
906
Dan Williams0aef64d2007-08-02 11:31:18 -0400907 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200908 {
909 struct cmd_ds_bbp_reg_access *bbpreg;
910
911 cmdptr->size =
912 cpu_to_le16(sizeof
913 (struct cmd_ds_bbp_reg_access)
914 + S_DS_GEN);
915 bbpreg =
916 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
917 bbpreg;
918
919 bbpreg->action = cpu_to_le16(cmd_action);
920 bbpreg->offset = cpu_to_le16((u16) offval->offset);
921 bbpreg->value = (u8) offval->value;
922
923 break;
924 }
925
Dan Williams0aef64d2007-08-02 11:31:18 -0400926 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200927 {
928 struct cmd_ds_rf_reg_access *rfreg;
929
930 cmdptr->size =
931 cpu_to_le16(sizeof
932 (struct cmd_ds_rf_reg_access) +
933 S_DS_GEN);
934 rfreg =
935 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
936 rfreg;
937
938 rfreg->action = cpu_to_le16(cmd_action);
939 rfreg->offset = cpu_to_le16((u16) offval->offset);
940 rfreg->value = (u8) offval->value;
941
942 break;
943 }
944
945 default:
946 break;
947 }
948
Holger Schurig9012b282007-05-25 11:27:16 -0400949 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200950 return 0;
951}
952
Holger Schurig69f90322007-11-23 15:43:44 +0100953static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200954 struct cmd_ds_command *cmd,
955 u16 cmd_action)
956{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200957
Holger Schurig8ff12da2007-08-02 11:54:31 -0400958 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400959 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400960 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200961 S_DS_GEN);
962 cmd->result = 0;
963
964 cmd->params.macadd.action = cpu_to_le16(cmd_action);
965
Dan Williams0aef64d2007-08-02 11:31:18 -0400966 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200967 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000968 priv->current_addr, ETH_ALEN);
969 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970 }
971
Holger Schurig8ff12da2007-08-02 11:54:31 -0400972 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973 return 0;
974}
975
Holger Schurig69f90322007-11-23 15:43:44 +0100976static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977 struct cmd_ds_command *cmd,
978 int cmd_action, void *pdata_buf)
979{
Holger Schurig10078322007-11-15 18:05:47 -0500980 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200981
Holger Schurig9012b282007-05-25 11:27:16 -0400982 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200983
Dan Williams0aef64d2007-08-02 11:31:18 -0400984 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400985 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
986 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200987 cmd->result = 0;
988
989 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
990 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
991 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
992 cmd->params.rdeeprom.value = 0;
993
Holger Schurig8ff12da2007-08-02 11:54:31 -0400994 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995 return 0;
996}
997
Holger Schurig69f90322007-11-23 15:43:44 +0100998static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200999 struct cmd_ds_command *cmd,
1000 u16 cmd_action, void *pdata_buf)
1001{
1002 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001003 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001004
Dan Williams0aef64d2007-08-02 11:31:18 -04001005 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001006 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001007 cmd->result = 0;
1008 bt_access->action = cpu_to_le16(cmd_action);
1009
1010 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001011 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001012 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001013 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001014 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001015 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001017 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001018 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001019 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1021 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001022 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001023 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001024 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001025 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1026 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001027 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001028 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001029 default:
1030 break;
1031 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001032 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033 return 0;
1034}
1035
Holger Schurig69f90322007-11-23 15:43:44 +01001036static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037 struct cmd_ds_command *cmd,
1038 u16 cmd_action, void *pdata_buf)
1039{
1040 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001041 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001042
Dan Williams0aef64d2007-08-02 11:31:18 -04001043 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001044 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001045 cmd->result = 0;
1046
1047 if (pdata_buf)
1048 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1049 else
1050 memset(fwt_access, 0, sizeof(*fwt_access));
1051
1052 fwt_access->action = cpu_to_le16(cmd_action);
1053
Holger Schurig8ff12da2007-08-02 11:54:31 -04001054 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001055 return 0;
1056}
1057
David Woodhouse301eacb2007-12-11 15:23:59 -05001058int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1059 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060{
David Woodhouse301eacb2007-12-11 15:23:59 -05001061 int ret;
1062
Holger Schurig8ff12da2007-08-02 11:54:31 -04001063 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001064
David Woodhouse301eacb2007-12-11 15:23:59 -05001065 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001066 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001067 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001068
David Woodhouse301eacb2007-12-11 15:23:59 -05001069 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070
David Woodhouse689442d2007-12-12 16:00:42 -05001071 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001072
Holger Schurig8ff12da2007-08-02 11:54:31 -04001073 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001074 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075}
David Woodhouse301eacb2007-12-11 15:23:59 -05001076EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001077
David Woodhouse86062132007-12-13 00:32:36 -05001078int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001079{
1080 struct cmd_ds_mesh_config cmd;
1081
1082 memset(&cmd, 0, sizeof(cmd));
1083 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001084 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001085 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001086 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001087
David Woodhouse23a397a2007-12-11 18:56:42 -05001088 if (enable) {
1089 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1090 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1091 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001092 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001093 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001094 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001095 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001096}
1097
Brajesh Dave96287ac2007-11-20 17:44:28 -05001098static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1099 struct cmd_ds_command *cmd,
1100 u16 cmd_action)
1101{
1102 struct cmd_ds_802_11_beacon_control
1103 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001104
1105 lbs_deb_enter(LBS_DEB_CMD);
1106 cmd->size =
1107 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1108 + S_DS_GEN);
1109 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1110
1111 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001112 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1113 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001114
1115 lbs_deb_leave(LBS_DEB_CMD);
1116 return 0;
1117}
1118
David Woodhouse681ffbb2007-12-15 20:04:54 -05001119static void lbs_queue_cmd(struct lbs_private *priv,
1120 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001121{
1122 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001123 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001124
Holger Schurig8ff12da2007-08-02 11:54:31 -04001125 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001126
David Woodhousec4ab4122007-12-15 00:41:51 -05001127 if (!cmdnode) {
1128 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001129 goto done;
1130 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001131 if (!cmdnode->cmdbuf->size) {
1132 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1133 goto done;
1134 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001135 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001136
1137 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001138 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001139 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001140
Dan Williams0aef64d2007-08-02 11:31:18 -04001141 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001142 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143 addtail = 0;
1144 }
1145 }
1146
David Woodhouseaa21c002007-12-08 20:04:36 +00001147 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148
David Woodhouseac472462007-12-08 00:35:00 +00001149 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001150 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001151 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001152 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001153
David Woodhouseaa21c002007-12-08 20:04:36 +00001154 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155
Holger Schurig8ff12da2007-08-02 11:54:31 -04001156 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001157 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158
1159done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001160 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161}
1162
David Woodhouse18c52e72007-12-17 16:03:58 -05001163static void lbs_submit_command(struct lbs_private *priv,
1164 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165{
1166 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001167 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001168 uint16_t cmdsize;
1169 uint16_t command;
1170 int timeo = 5 * HZ;
1171 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001172
Holger Schurig8ff12da2007-08-02 11:54:31 -04001173 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001174
Dan Williamsddac4522007-12-11 13:49:39 -05001175 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001176
David Woodhouseaa21c002007-12-08 20:04:36 +00001177 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001178 priv->cur_cmd = cmdnode;
1179 priv->cur_cmd_retcode = 0;
1180 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181
Dan Williamsddac4522007-12-11 13:49:39 -05001182 cmdsize = le16_to_cpu(cmd->size);
1183 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184
David Woodhouse18c52e72007-12-17 16:03:58 -05001185 /* These commands take longer */
1186 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1187 command == CMD_802_11_AUTHENTICATE)
1188 timeo = 10 * HZ;
1189
David Woodhousee1258172007-12-11 23:42:49 -05001190 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1191 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001192 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001193
Dan Williamsddac4522007-12-11 13:49:39 -05001194 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001195
David Woodhoused9896ee2007-12-15 00:09:25 -05001196 if (ret) {
1197 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001198 /* Let the timer kick in and retry, and potentially reset
1199 the whole thing if the condition persists */
1200 timeo = HZ;
1201 } else
1202 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n",
1203 command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001204
1205 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001206 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207
David Woodhouse18c52e72007-12-17 16:03:58 -05001208 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209}
1210
Holger Schurig69f90322007-11-23 15:43:44 +01001211static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001212 struct cmd_ds_command *cmd)
1213{
1214 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1215
Holger Schurig9012b282007-05-25 11:27:16 -04001216 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217
Dan Williams0aef64d2007-08-02 11:31:18 -04001218 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001219 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001220 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001221
Holger Schurig8ff12da2007-08-02 11:54:31 -04001222 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001223 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
Holger Schurig9012b282007-05-25 11:27:16 -04001225 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001226 return 0;
1227}
1228
1229/**
1230 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001231 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001232 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001233static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001234 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001236 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001237
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001238 if (!cmdnode)
1239 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001240
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001241 cmdnode->callback = NULL;
1242 cmdnode->callback_arg = 0;
1243
1244 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1245
1246 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1247 out:
1248 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001249}
1250
Holger Schurig69f90322007-11-23 15:43:44 +01001251static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1252 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001253{
1254 unsigned long flags;
1255
David Woodhouseaa21c002007-12-08 20:04:36 +00001256 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001257 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001258 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001259}
1260
David Woodhouse183aeac2007-12-15 01:52:54 -05001261void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1262 int result)
1263{
1264 if (cmd == priv->cur_cmd)
1265 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001266
David Woodhouseae125bf2007-12-15 04:22:52 -05001267 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001268 cmd->cmdwaitqwoken = 1;
1269 wake_up_interruptible(&cmd->cmdwait_q);
1270
David Woodhousead12d0f2007-12-15 02:06:16 -05001271 if (!cmd->callback)
1272 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001273 priv->cur_cmd = NULL;
1274}
1275
Holger Schurig69f90322007-11-23 15:43:44 +01001276int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277{
1278 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001279 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280
Holger Schurig9012b282007-05-25 11:27:16 -04001281 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282
David Woodhousea7c45892007-12-17 22:43:48 -05001283 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1284 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285
David Woodhousea7c45892007-12-17 22:43:48 -05001286 switch (priv->preamble) {
1287 case CMD_TYPE_SHORT_PREAMBLE:
1288 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1289 break;
1290
1291 case CMD_TYPE_LONG_PREAMBLE:
1292 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1293 break;
1294
1295 case CMD_TYPE_AUTO_PREAMBLE:
1296 default:
1297 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1298 break;
1299 }
1300
1301 if (priv->radioon)
1302 cmd.control |= cpu_to_le16(TURN_ON_RF);
1303 else
1304 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1305
1306 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1307 priv->preamble);
1308
1309 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001310
Holger Schurig9012b282007-05-25 11:27:16 -04001311 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312 return ret;
1313}
1314
Holger Schurig69f90322007-11-23 15:43:44 +01001315int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001316{
1317 int ret = 0;
1318
Holger Schurig9012b282007-05-25 11:27:16 -04001319 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001322 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001323 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324
Holger Schurig9012b282007-05-25 11:27:16 -04001325 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326 return ret;
1327}
1328
1329/**
1330 * @brief This function prepare the command before send to firmware.
1331 *
Holger Schurig69f90322007-11-23 15:43:44 +01001332 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001333 * @param cmd_no command number
1334 * @param cmd_action command action: GET or SET
1335 * @param wait_option wait option: wait response or not
1336 * @param cmd_oid cmd oid: treated as sub command
1337 * @param pdata_buf A pointer to informaion buffer
1338 * @return 0 or -1
1339 */
Holger Schurig69f90322007-11-23 15:43:44 +01001340int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341 u16 cmd_no,
1342 u16 cmd_action,
1343 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1344{
1345 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001346 struct cmd_ctrl_node *cmdnode;
1347 struct cmd_ds_command *cmdptr;
1348 unsigned long flags;
1349
Holger Schurig8ff12da2007-08-02 11:54:31 -04001350 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001351
David Woodhouseaa21c002007-12-08 20:04:36 +00001352 if (!priv) {
1353 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001354 ret = -1;
1355 goto done;
1356 }
1357
David Woodhouseaa21c002007-12-08 20:04:36 +00001358 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001359 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360 ret = -1;
1361 goto done;
1362 }
1363
Holger Schurig0d61d042007-12-05 17:58:06 +01001364 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001365
1366 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001367 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368
1369 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001370 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001371 ret = -1;
1372 goto done;
1373 }
1374
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001375 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001376
Dan Williamsddac4522007-12-11 13:49:39 -05001377 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378
Holger Schurig8ff12da2007-08-02 11:54:31 -04001379 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001380
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001382 priv->seqnum++;
1383 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001384
David Woodhouse981f1872007-05-25 23:36:54 -04001385 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001386 cmdptr->result = 0;
1387
1388 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001389 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001390 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001391 break;
1392
Dan Williams0aef64d2007-08-02 11:31:18 -04001393 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001394 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395 break;
1396
Dan Williams0aef64d2007-08-02 11:31:18 -04001397 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001398 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399 break;
1400
Dan Williams0aef64d2007-08-02 11:31:18 -04001401 case CMD_802_11_ASSOCIATE:
1402 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001403 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001404 break;
1405
Dan Williams0aef64d2007-08-02 11:31:18 -04001406 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001407 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 break;
1409
Dan Williams0aef64d2007-08-02 11:31:18 -04001410 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001411 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001412 break;
1413
Dan Williams0aef64d2007-08-02 11:31:18 -04001414 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001415 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001416 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001417 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001418 break;
1419
Dan Williams0aef64d2007-08-02 11:31:18 -04001420 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001421 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001422 break;
1423
Dan Williams0aef64d2007-08-02 11:31:18 -04001424 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001425 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426 break;
1427
Dan Williams0aef64d2007-08-02 11:31:18 -04001428 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001429 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430 break;
1431
Dan Williams0aef64d2007-08-02 11:31:18 -04001432 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001433 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001434 break;
1435
Dan Williams0aef64d2007-08-02 11:31:18 -04001436 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001437 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001438 cmd_action, cmd_oid, pdata_buf);
1439 break;
1440
Dan Williams0aef64d2007-08-02 11:31:18 -04001441 case CMD_MAC_REG_ACCESS:
1442 case CMD_BBP_REG_ACCESS:
1443 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001444 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001445 break;
1446
Dan Williams0aef64d2007-08-02 11:31:18 -04001447 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001448 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001449 cmd_action, pdata_buf);
1450 break;
1451
Dan Williams0aef64d2007-08-02 11:31:18 -04001452 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001453 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001454 cmdptr, cmd_action);
1455 break;
1456
Dan Williams0aef64d2007-08-02 11:31:18 -04001457 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001458 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001459 break;
1460
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001461 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001462 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001463 cmd_action, pdata_buf);
1464 break;
1465
Dan Williams0aef64d2007-08-02 11:31:18 -04001466 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001467 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001468 break;
1469
Dan Williams0aef64d2007-08-02 11:31:18 -04001470 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001471 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001472 break;
1473
Dan Williams0aef64d2007-08-02 11:31:18 -04001474 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001475 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001476 break;
1477
Dan Williams0aef64d2007-08-02 11:31:18 -04001478 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001479 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001480 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001481 break;
1482
Dan Williams0aef64d2007-08-02 11:31:18 -04001483 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001484 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001485 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001486 break;
1487
Dan Williams0aef64d2007-08-02 11:31:18 -04001488 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001489 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001490 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491 break;
1492
Dan Williams0aef64d2007-08-02 11:31:18 -04001493 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001494 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001495 break;
1496
Dan Williams0aef64d2007-08-02 11:31:18 -04001497 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001498 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001499 cmd_action, pdata_buf);
1500 break;
1501
Dan Williams0aef64d2007-08-02 11:31:18 -04001502 case CMD_802_11_SET_AFC:
1503 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504
1505 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001506 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1507 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001508
1509 memmove(&cmdptr->params.afc,
1510 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1511
1512 ret = 0;
1513 goto done;
1514
Dan Williams0aef64d2007-08-02 11:31:18 -04001515 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001516 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001517 cmd_no, cmd_action);
1518 break;
1519
Dan Williams0aef64d2007-08-02 11:31:18 -04001520 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001521 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001522 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001523 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001524 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525 cmd_action, pdata_buf);
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001526 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001527 break;
1528
Dan Williams0aef64d2007-08-02 11:31:18 -04001529 case CMD_802_11_TPC_CFG:
1530 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001531 cmdptr->size =
1532 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1533 S_DS_GEN);
1534
1535 memmove(&cmdptr->params.tpccfg,
1536 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1537
1538 ret = 0;
1539 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001540 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001541 {
1542 struct mrvlietypes_ledgpio *gpio =
1543 (struct mrvlietypes_ledgpio*)
1544 cmdptr->params.ledgpio.data;
1545
1546 memmove(&cmdptr->params.ledgpio,
1547 pdata_buf,
1548 sizeof(struct cmd_ds_802_11_led_ctrl));
1549
1550 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001551 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001552
1553#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1554 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001555 cpu_to_le16(le16_to_cpu(gpio->header.len)
1556 + S_DS_GEN
1557 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1558 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001559
1560 ret = 0;
1561 break;
1562 }
Holger Schurig3a188642007-11-26 10:07:14 +01001563 case CMD_802_11_SUBSCRIBE_EVENT:
1564 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1565 cmd_action, pdata_buf);
1566 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001567 case CMD_802_11_PWR_CFG:
1568 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001569 cmdptr->size =
1570 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1571 S_DS_GEN);
1572 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1573 sizeof(struct cmd_ds_802_11_pwr_cfg));
1574
1575 ret = 0;
1576 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001577 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001578 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001579 break;
1580
Dan Williams0aef64d2007-08-02 11:31:18 -04001581 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001582 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001583 break;
1584
Dan Williams0aef64d2007-08-02 11:31:18 -04001585 case CMD_GET_TSF:
1586 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001587 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1588 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001589 ret = 0;
1590 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001591 case CMD_802_11_BEACON_CTRL:
1592 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1593 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001594 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001595 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001596 ret = -1;
1597 break;
1598 }
1599
1600 /* return error, since the command preparation failed */
1601 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001602 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001603 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001604 ret = -1;
1605 goto done;
1606 }
1607
1608 cmdnode->cmdwaitqwoken = 0;
1609
David Woodhouse681ffbb2007-12-15 20:04:54 -05001610 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001611 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001612
Dan Williams0aef64d2007-08-02 11:31:18 -04001613 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001614 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001615 might_sleep();
1616 wait_event_interruptible(cmdnode->cmdwait_q,
1617 cmdnode->cmdwaitqwoken);
1618 }
1619
David Woodhouseaa21c002007-12-08 20:04:36 +00001620 spin_lock_irqsave(&priv->driver_lock, flags);
1621 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001622 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001623 priv->cur_cmd_retcode);
1624 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001625 ret = -1;
1626 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001627 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001628
1629done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001630 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001631 return ret;
1632}
Holger Schurig10078322007-11-15 18:05:47 -05001633EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001634
1635/**
1636 * @brief This function allocates the command buffer and link
1637 * it to command free queue.
1638 *
Holger Schurig69f90322007-11-23 15:43:44 +01001639 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001640 * @return 0 or -1
1641 */
Holger Schurig69f90322007-11-23 15:43:44 +01001642int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001643{
1644 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001645 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001647 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648
Holger Schurig8ff12da2007-08-02 11:54:31 -04001649 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001650
Dan Williamsddac4522007-12-11 13:49:39 -05001651 /* Allocate and initialize the command array */
1652 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1653 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001654 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001655 ret = -1;
1656 goto done;
1657 }
Dan Williamsddac4522007-12-11 13:49:39 -05001658 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001659
Dan Williamsddac4522007-12-11 13:49:39 -05001660 /* Allocate and initialize each command buffer in the command array */
1661 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1662 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1663 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001664 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665 ret = -1;
1666 goto done;
1667 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001668 }
1669
Dan Williamsddac4522007-12-11 13:49:39 -05001670 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1671 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1672 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001673 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001675
1676done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001677 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001678 return ret;
1679}
1680
1681/**
1682 * @brief This function frees the command buffer.
1683 *
Holger Schurig69f90322007-11-23 15:43:44 +01001684 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001685 * @return 0 or -1
1686 */
Holger Schurig69f90322007-11-23 15:43:44 +01001687int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001688{
Dan Williamsddac4522007-12-11 13:49:39 -05001689 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001690 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691
Holger Schurig8ff12da2007-08-02 11:54:31 -04001692 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001693
1694 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001695 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001696 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001697 goto done;
1698 }
1699
Dan Williamsddac4522007-12-11 13:49:39 -05001700 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701
1702 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001703 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1704 if (cmdarray[i].cmdbuf) {
1705 kfree(cmdarray[i].cmdbuf);
1706 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001707 }
1708 }
1709
1710 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001711 if (priv->cmd_array) {
1712 kfree(priv->cmd_array);
1713 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001714 }
1715
1716done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001717 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001718 return 0;
1719}
1720
1721/**
1722 * @brief This function gets a free command node if available in
1723 * command free queue.
1724 *
Holger Schurig69f90322007-11-23 15:43:44 +01001725 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001726 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1727 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001728static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001729{
1730 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001731 unsigned long flags;
1732
Holger Schurig8ff12da2007-08-02 11:54:31 -04001733 lbs_deb_enter(LBS_DEB_HOST);
1734
David Woodhouseaa21c002007-12-08 20:04:36 +00001735 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001736 return NULL;
1737
David Woodhouseaa21c002007-12-08 20:04:36 +00001738 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001739
David Woodhouseaa21c002007-12-08 20:04:36 +00001740 if (!list_empty(&priv->cmdfreeq)) {
1741 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001742 struct cmd_ctrl_node, list);
1743 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001744 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001745 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001746 tempnode = NULL;
1747 }
1748
David Woodhouseaa21c002007-12-08 20:04:36 +00001749 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750
Holger Schurig8ff12da2007-08-02 11:54:31 -04001751 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 return tempnode;
1753}
1754
1755/**
1756 * @brief This function cleans command node.
1757 *
1758 * @param ptempnode A pointer to cmdCtrlNode structure
1759 * @return n/a
1760 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001761
1762/**
1763 * @brief This function initializes the command node.
1764 *
Holger Schurig69f90322007-11-23 15:43:44 +01001765 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001766 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001767 * @param pdata_buf A pointer to informaion buffer
1768 * @return 0 or -1
1769 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001770static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1771 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001772 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001774 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001775
1776 if (!ptempnode)
1777 return;
1778
David Woodhouse17230472007-12-07 15:13:05 +00001779 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001780 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781
Holger Schurig8ff12da2007-08-02 11:54:31 -04001782 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001783}
1784
1785/**
1786 * @brief This function executes next command in command
1787 * pending queue. It will put fimware back to PS mode
1788 * if applicable.
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 * @return 0 or -1
1792 */
Holger Schurig69f90322007-11-23 15:43:44 +01001793int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001794{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001796 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001797 unsigned long flags;
1798 int ret = 0;
1799
Holger Schurig8ff12da2007-08-02 11:54:31 -04001800 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001801 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001802 // data packet is received
1803 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804
David Woodhouseaa21c002007-12-08 20:04:36 +00001805 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001806
David Woodhouseaa21c002007-12-08 20:04:36 +00001807 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001808 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001809 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001810 ret = -1;
1811 goto done;
1812 }
1813
David Woodhouseaa21c002007-12-08 20:04:36 +00001814 if (!list_empty(&priv->cmdpendingq)) {
1815 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001816 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817 }
1818
David Woodhouseaa21c002007-12-08 20:04:36 +00001819 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001820
1821 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001822 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001823
Dan Williamsddac4522007-12-11 13:49:39 -05001824 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001825 if ((priv->psstate == PS_STATE_SLEEP) ||
1826 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001827 lbs_deb_host(
1828 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001829 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001830 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001831 ret = -1;
1832 goto done;
1833 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001834 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001835 "0x%04x in psstate %d\n",
1836 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001837 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001838 /*
1839 * 1. Non-PS command:
1840 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001841 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001842 * 2. PS command but not Exit_PS:
1843 * Ignore it.
1844 * 3. PS command Exit_PS:
1845 * Set needtowakeup to TRUE if current state is SLEEP,
1846 * otherwise send this command down to firmware
1847 * immediately.
1848 */
Dan Williamsddac4522007-12-11 13:49:39 -05001849 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001850 /* Prepare to send Exit PS,
1851 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001852 if ((priv->psstate == PS_STATE_SLEEP)
1853 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001854 ) {
1855 /* w/ new scheme, it will not reach here.
1856 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001857 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001858 } else
Holger Schurig10078322007-11-15 18:05:47 -05001859 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001860
1861 ret = 0;
1862 goto done;
1863 } else {
1864 /*
1865 * PS command. Ignore it if it is not Exit_PS.
1866 * otherwise send it down immediately.
1867 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001868 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001869
Holger Schurig8ff12da2007-08-02 11:54:31 -04001870 lbs_deb_host(
1871 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001872 psm->action);
1873 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001874 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001875 lbs_deb_host(
1876 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001877 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001878 spin_lock_irqsave(&priv->driver_lock, flags);
1879 lbs_complete_command(priv, cmdnode, 0);
1880 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001881
1882 ret = 0;
1883 goto done;
1884 }
1885
David Woodhouseaa21c002007-12-08 20:04:36 +00001886 if ((priv->psstate == PS_STATE_SLEEP) ||
1887 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001888 lbs_deb_host(
1889 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001890 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001891 spin_lock_irqsave(&priv->driver_lock, flags);
1892 lbs_complete_command(priv, cmdnode, 0);
1893 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001894 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895
1896 ret = 0;
1897 goto done;
1898 }
1899
Holger Schurig8ff12da2007-08-02 11:54:31 -04001900 lbs_deb_host(
1901 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001902 }
1903 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001904 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001905 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001906 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001907 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001908 } else {
1909 /*
1910 * check if in power save mode, if yes, put the device back
1911 * to PS mode
1912 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001913 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1914 (priv->psstate == PS_STATE_FULL_POWER) &&
1915 ((priv->connect_status == LBS_CONNECTED) ||
1916 (priv->mesh_connect_status == LBS_CONNECTED))) {
1917 if (priv->secinfo.WPAenabled ||
1918 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001919 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001920 if (priv->wpa_mcast_key.len ||
1921 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001922 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001923 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1924 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001925 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001926 }
1927 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001928 lbs_deb_host(
1929 "EXEC_NEXT_CMD: cmdpendingq empty, "
1930 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001931 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001932 }
1933 }
1934 }
1935
1936 ret = 0;
1937done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001938 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001939 return ret;
1940}
1941
Holger Schurig69f90322007-11-23 15:43:44 +01001942void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001943{
1944 union iwreq_data iwrq;
1945 u8 buf[50];
1946
Holger Schurig8ff12da2007-08-02 11:54:31 -04001947 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001948
1949 memset(&iwrq, 0, sizeof(union iwreq_data));
1950 memset(buf, 0, sizeof(buf));
1951
1952 snprintf(buf, sizeof(buf) - 1, "%s", str);
1953
1954 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1955
1956 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001957 lbs_deb_wext("event indication string %s\n", (char *)buf);
1958 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1959 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960
Holger Schurig634b8f42007-05-25 13:05:16 -04001961 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001962
Holger Schurig8ff12da2007-08-02 11:54:31 -04001963 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964}
1965
Holger Schurig69f90322007-11-23 15:43:44 +01001966static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001967{
1968 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001969 int ret = 0;
1970
Holger Schurig8ff12da2007-08-02 11:54:31 -04001971 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001972
Holger Schurig8ff12da2007-08-02 11:54:31 -04001973 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001974 size);
1975
Holger Schurig8ff12da2007-08-02 11:54:31 -04001976 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001977
Holger Schurig208fdd22007-05-25 12:17:06 -04001978 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001979
David Woodhouseaa21c002007-12-08 20:04:36 +00001980 spin_lock_irqsave(&priv->driver_lock, flags);
1981 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001982 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001983 priv->intcounter, priv->currenttxskb);
1984 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001985
1986 if (ret) {
1987 lbs_pr_alert(
1988 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1989 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001990 spin_lock_irqsave(&priv->driver_lock, flags);
1991 if (!priv->intcounter) {
1992 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001993 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001994 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001995 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001997 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001998
Holger Schurig8ff12da2007-08-02 11:54:31 -04001999 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002000 }
2001
Holger Schurig8ff12da2007-08-02 11:54:31 -04002002 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002003 return ret;
2004}
2005
Holger Schurig69f90322007-11-23 15:43:44 +01002006void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002007{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002008 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002009
2010 /*
2011 * PS is currently supported only in Infrastructure mode
2012 * Remove this check if it is to be supported in IBSS mode also
2013 */
2014
Holger Schurig10078322007-11-15 18:05:47 -05002015 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002016 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002017
Holger Schurig8ff12da2007-08-02 11:54:31 -04002018 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002019}
2020
2021/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002022 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 *
Holger Schurig69f90322007-11-23 15:43:44 +01002024 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002025 * @param wait_option wait response or not
2026 * @return n/a
2027 */
Holger Schurig69f90322007-11-23 15:43:44 +01002028void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029{
David Woodhouse981f1872007-05-25 23:36:54 -04002030 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002031
Holger Schurig8ff12da2007-08-02 11:54:31 -04002032 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002033
Holger Schurig10078322007-11-15 18:05:47 -05002034 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002035
Holger Schurig10078322007-11-15 18:05:47 -05002036 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002037 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002038 wait_option, 0, &Localpsmode);
2039
Holger Schurig8ff12da2007-08-02 11:54:31 -04002040 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002041}
2042
2043/**
2044 * @brief This function checks condition and prepares to
2045 * send sleep confirm command to firmware if ok.
2046 *
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 psmode Power Saving mode
2049 * @return n/a
2050 */
Holger Schurig69f90322007-11-23 15:43:44 +01002051void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052{
2053 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 u8 allowed = 1;
2055
Holger Schurig8ff12da2007-08-02 11:54:31 -04002056 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002057
Holger Schurig634b8f42007-05-25 13:05:16 -04002058 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002059 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002060 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002061 }
2062
David Woodhouseaa21c002007-12-08 20:04:36 +00002063 spin_lock_irqsave(&priv->driver_lock, flags);
2064 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002065 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002066 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002067 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002068 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002069 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002070 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002071 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002072 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002073
2074 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002075 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002076 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002077 sizeof(struct PS_CMD_ConfirmSleep));
2078 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002079 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002080 }
2081
Holger Schurig8ff12da2007-08-02 11:54:31 -04002082 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002083}
Holger Schurig675787e2007-12-05 17:58:11 +01002084
2085
2086/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002087 * @brief Simple callback that copies response back into command
2088 *
2089 * @param priv A pointer to struct lbs_private structure
2090 * @param extra A pointer to the original command structure for which
2091 * 'resp' is a response
2092 * @param resp A pointer to the command response
2093 *
2094 * @return 0 on success, error on failure
2095 */
2096int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002097 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002098{
2099 struct cmd_header *buf = (void *)extra;
2100 uint16_t copy_len;
2101
2102 lbs_deb_enter(LBS_DEB_CMD);
2103
2104 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2105 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002106 "copy back buffer was %u bytes\n", copy_len,
2107 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002108 memcpy(buf, resp, copy_len);
2109
2110 lbs_deb_leave(LBS_DEB_CMD);
2111 return 0;
2112}
David Woodhouse689442d2007-12-12 16:00:42 -05002113EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002114
David Woodhouse3399ea52007-12-15 03:09:33 -05002115struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2116 struct cmd_header *in_cmd, int in_cmd_size,
2117 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2118 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002119{
Holger Schurig675787e2007-12-05 17:58:11 +01002120 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002121
2122 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002123
David Woodhouseaa21c002007-12-08 20:04:36 +00002124 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002125 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002126 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002127 goto done;
2128 }
2129
2130 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002131 if (cmdnode == NULL) {
2132 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2133
2134 /* Wake up main thread to execute next command */
2135 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002136 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002137 goto done;
2138 }
2139
David Woodhouse448a51a2007-12-08 00:59:54 +00002140 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002141 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002142
Dan Williams7ad994d2007-12-11 12:33:30 -05002143 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002144 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002145
Holger Schurig675787e2007-12-05 17:58:11 +01002146 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002147 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002148 cmdnode->cmdbuf->command = cpu_to_le16(command);
2149 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2150 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2151 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002152
2153 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2154
2155 /* here was the big old switch() statement, which is now obsolete,
2156 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2157
2158 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002159 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002160 wake_up_interruptible(&priv->waitq);
2161
David Woodhouse3399ea52007-12-15 03:09:33 -05002162 done:
2163 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2164 return cmdnode;
2165}
2166
2167int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2168 struct cmd_header *in_cmd, int in_cmd_size,
2169 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2170 unsigned long callback_arg)
2171{
2172 struct cmd_ctrl_node *cmdnode;
2173 unsigned long flags;
2174 int ret = 0;
2175
2176 lbs_deb_enter(LBS_DEB_HOST);
2177
2178 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2179 callback, callback_arg);
2180 if (IS_ERR(cmdnode)) {
2181 ret = PTR_ERR(cmdnode);
2182 goto done;
2183 }
2184
Holger Schurig675787e2007-12-05 17:58:11 +01002185 might_sleep();
2186 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2187
David Woodhouseaa21c002007-12-08 20:04:36 +00002188 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002189 ret = cmdnode->result;
2190 if (ret)
2191 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2192 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002193
David Woodhousead12d0f2007-12-15 02:06:16 -05002194 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002195 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002196
2197done:
2198 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2199 return ret;
2200}
Dan Williams14e865b2007-12-10 15:11:23 -05002201EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002202
2203