blob: 3079b3f24764b1f7bb7202edaa5085f7e33a7c6a [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
118 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500119 cmd_config.gpio = priv->wol_gpio;
120 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500121
David Woodhouse689442d2007-12-12 16:00:42 -0500122 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500123 if (!ret) {
124 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
125 priv->wol_criteria = criteria;
126 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500127 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500128 }
David Woodhouse506e9022007-12-12 20:06:06 -0500129
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500130 return ret;
131}
132EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
133
Holger Schurig69f90322007-11-23 15:43:44 +0100134static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200135 struct cmd_ds_command *cmd,
136 u16 cmd_action)
137{
138 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200139
Holger Schurig9012b282007-05-25 11:27:16 -0400140 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200141
Dan Williams0aef64d2007-08-02 11:31:18 -0400142 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400143 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
144 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200145 psm->action = cpu_to_le16(cmd_action);
146 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400147 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400148 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400149 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200150
Holger Schurig252cf0d2007-08-02 13:09:34 -0400151 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400152 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200153 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400154 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200155 break;
156
Dan Williams0aef64d2007-08-02 11:31:18 -0400157 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400158 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159 break;
160
Dan Williams0aef64d2007-08-02 11:31:18 -0400161 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400162 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163 break;
164
165 default:
166 break;
167 }
168
Holger Schurig9012b282007-05-25 11:27:16 -0400169 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200170 return 0;
171}
172
Holger Schurig69f90322007-11-23 15:43:44 +0100173static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200174 struct cmd_ds_command *cmd,
175 u16 cmd_action, void *pdata_buf)
176{
177 u16 *timeout = pdata_buf;
178
Holger Schurig8ff12da2007-08-02 11:54:31 -0400179 lbs_deb_enter(LBS_DEB_CMD);
180
Dan Williams0aef64d2007-08-02 11:31:18 -0400181 cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200182 cmd->size =
183 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
184 + S_DS_GEN);
185
186 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
187
188 if (cmd_action)
David Woodhouse981f1872007-05-25 23:36:54 -0400189 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200190 else
191 cmd->params.inactivity_timeout.timeout = 0;
192
Holger Schurig8ff12da2007-08-02 11:54:31 -0400193 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200194 return 0;
195}
196
Holger Schurig69f90322007-11-23 15:43:44 +0100197static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198 struct cmd_ds_command *cmd,
199 u16 cmd_action)
200{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200201 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
202
Holger Schurig9012b282007-05-25 11:27:16 -0400203 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200204
David Woodhouse981f1872007-05-25 23:36:54 -0400205 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
206 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400207 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208
Dan Williams0aef64d2007-08-02 11:31:18 -0400209 if (cmd_action == CMD_ACT_GET) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000210 memset(&priv->sp, 0, sizeof(struct sleep_params));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200211 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
212 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400213 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200214 sp->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000215 sp->error = cpu_to_le16(priv->sp.sp_error);
216 sp->offset = cpu_to_le16(priv->sp.sp_offset);
217 sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime);
218 sp->calcontrol = (u8) priv->sp.sp_calcontrol;
219 sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk;
220 sp->reserved = cpu_to_le16(priv->sp.sp_reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200221 }
222
Holger Schurig9012b282007-05-25 11:27:16 -0400223 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200224 return 0;
225}
226
Holger Schurig69f90322007-11-23 15:43:44 +0100227static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200228 struct cmd_ds_command *cmd,
229 u32 cmd_act,
230 void * pdata_buf)
231{
232 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200233 int ret = 0;
234 struct assoc_request * assoc_req = pdata_buf;
235
Holger Schurig9012b282007-05-25 11:27:16 -0400236 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237
Dan Williams0aef64d2007-08-02 11:31:18 -0400238 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400239 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240
Dan Williams0aef64d2007-08-02 11:31:18 -0400241 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200242 int i;
243
244 if (!assoc_req) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500245 lbs_deb_cmd("Invalid association request!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200246 ret = -1;
247 goto done;
248 }
249
Dan Williams0aef64d2007-08-02 11:31:18 -0400250 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200251
252 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400253 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400254 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200255
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256 /* Copy key types and material to host command structure */
257 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400258 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259
260 switch (pkey->len) {
261 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200262 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263 memmove(&wep->keymaterial[i], pkey->key,
264 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400265 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266 break;
267 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200268 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200269 memmove(&wep->keymaterial[i], pkey->key,
270 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400271 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272 break;
273 case 0:
274 break;
275 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400276 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277 i, pkey->len);
278 ret = -1;
279 goto done;
280 break;
281 }
282 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400283 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200284 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400285 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200286
287 /* default tx key index */
David Woodhouseaa21c002007-12-08 20:04:36 +0000288 wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400289 (u32)CMD_WEP_KEY_INDEX_MASK));
David Woodhouseaa21c002007-12-08 20:04:36 +0000290 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200291 }
292
293 ret = 0;
294
295done:
Holger Schurig9012b282007-05-25 11:27:16 -0400296 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200297 return ret;
298}
299
Holger Schurig69f90322007-11-23 15:43:44 +0100300static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200301 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400302 u16 cmd_action,
303 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304{
305 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400306 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400307
308 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200309
Dan Williams0aef64d2007-08-02 11:31:18 -0400310 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400311 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200312 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400313
Dan Williams0aef64d2007-08-02 11:31:18 -0400314 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400315 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400316 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400317 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400318 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400319 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200320 }
321
Dan Williams90a42212007-05-25 23:01:24 -0400322 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200323 return 0;
324}
325
326
Holger Schurig3a188642007-11-26 10:07:14 +0100327static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
328{
329 ssize_t pos = 0;
330 struct mrvlietypesheader *tlv_h;
331 while (pos < size) {
332 u16 length;
333 tlv_h = (struct mrvlietypesheader *) tlv;
334 if (tlv_h->len == 0)
335 return pos;
336 length = le16_to_cpu(tlv_h->len) +
337 sizeof(struct mrvlietypesheader);
338 pos += length;
339 tlv += length;
340 }
341 return pos;
342}
343
344
345static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
346 struct cmd_ds_command *cmd, u16 cmd_action,
347 void *pdata_buf)
348{
349 struct cmd_ds_802_11_subscribe_event *events =
350 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
351
352 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
353 * for various Marvell TLVs */
354
355 lbs_deb_enter(LBS_DEB_CMD);
356
357 cmd->size = cpu_to_le16(sizeof(*events)
358 - sizeof(events->tlv)
359 + S_DS_GEN);
360 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
361 if (cmd_action == CMD_ACT_GET) {
362 cmd->params.subscribe_event.events = 0;
363 } else {
364 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
365 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
366 cmd->params.subscribe_event.events = events->events;
367 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
368 }
369
370 lbs_deb_leave(LBS_DEB_CMD);
371}
372
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200373static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400374 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200375{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400376 lbs_deb_enter(LBS_DEB_CMD);
377
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200378 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400379 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200380 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
382 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400383 }
384 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
386 }
387
388 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400389 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200390 pkeyparamset->keylen = cpu_to_le16(pkey->len);
391 memcpy(pkeyparamset->key, pkey->key, pkey->len);
392 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
393 + sizeof(pkeyparamset->keyinfo)
394 + sizeof(pkeyparamset->keylen)
395 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400396 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200397}
398
Holger Schurig69f90322007-11-23 15:43:44 +0100399static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200400 struct cmd_ds_command *cmd,
401 u16 cmd_action,
402 u32 cmd_oid, void *pdata_buf)
403{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 struct cmd_ds_802_11_key_material *pkeymaterial =
405 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400406 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407 int ret = 0;
408 int index = 0;
409
Holger Schurig9012b282007-05-25 11:27:16 -0400410 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411
Dan Williams0aef64d2007-08-02 11:31:18 -0400412 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200413 pkeymaterial->action = cpu_to_le16(cmd_action);
414
Dan Williams0aef64d2007-08-02 11:31:18 -0400415 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400416 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200417 ret = 0;
418 goto done;
419 }
420
421 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
422
Dan Williams90a42212007-05-25 23:01:24 -0400423 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200424 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400425 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200426 index++;
427 }
428
Dan Williams90a42212007-05-25 23:01:24 -0400429 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400431 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200432 index++;
433 }
434
435 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400436 + sizeof (pkeymaterial->action)
437 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200438
439 ret = 0;
440
441done:
Holger Schurig9012b282007-05-25 11:27:16 -0400442 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200443 return ret;
444}
445
Holger Schurig69f90322007-11-23 15:43:44 +0100446static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200447 struct cmd_ds_command *cmd, int cmd_action)
448{
449 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
450
Holger Schurig8ff12da2007-08-02 11:54:31 -0400451 lbs_deb_enter(LBS_DEB_CMD);
452
Dan Williams0aef64d2007-08-02 11:31:18 -0400453 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
455 reset->action = cpu_to_le16(cmd_action);
456
Holger Schurig8ff12da2007-08-02 11:54:31 -0400457 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458 return 0;
459}
460
Holger Schurig69f90322007-11-23 15:43:44 +0100461static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200462 struct cmd_ds_command *cmd)
463{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400464 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400465 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200466 cmd->size =
467 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
468
Holger Schurig8ff12da2007-08-02 11:54:31 -0400469 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470 return 0;
471}
472
Holger Schurig69f90322007-11-23 15:43:44 +0100473static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474 struct cmd_ds_command *cmd)
475{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400476 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400477 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200478 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400479 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200480
Holger Schurig8ff12da2007-08-02 11:54:31 -0400481 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 return 0;
483}
484
Holger Schurig69f90322007-11-23 15:43:44 +0100485static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486 struct cmd_ds_command *cmd,
487 int cmd_action,
488 int cmd_oid, void *pdata_buf)
489{
490 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200491 u8 ucTemp;
492
Holger Schurig9012b282007-05-25 11:27:16 -0400493 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200494
Holger Schurig9012b282007-05-25 11:27:16 -0400495 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200496
Dan Williams0aef64d2007-08-02 11:31:18 -0400497 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400498 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200499
500 switch (cmd_oid) {
501 case OID_802_11_INFRASTRUCTURE_MODE:
502 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400503 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400504 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
505 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000506 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400507 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200508 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400509 } else {
510 /* Infra and Auto modes */
511 ucTemp = SNMP_MIB_VALUE_INFRA;
512 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200513
514 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
515
516 break;
517 }
518
519 case OID_802_11D_ENABLE:
520 {
521 u32 ulTemp;
522
Dan Williams0aef64d2007-08-02 11:31:18 -0400523 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524
Dan Williams0aef64d2007-08-02 11:31:18 -0400525 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000526 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
527 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400529 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200530 cpu_to_le16((u16) ulTemp);
531 }
532 break;
533 }
534
535 case OID_802_11_FRAGMENTATION_THRESHOLD:
536 {
537 u32 ulTemp;
538
Dan Williams0aef64d2007-08-02 11:31:18 -0400539 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200540
Dan Williams0aef64d2007-08-02 11:31:18 -0400541 if (cmd_action == CMD_ACT_GET) {
542 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
543 } else if (cmd_action == CMD_ACT_SET) {
544 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400545 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400547 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200548 cpu_to_le16((u16) ulTemp);
549
550 }
551
552 break;
553 }
554
555 case OID_802_11_RTS_THRESHOLD:
556 {
557
558 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000559 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200560
Dan Williams0aef64d2007-08-02 11:31:18 -0400561 if (cmd_action == CMD_ACT_GET) {
562 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
563 } else if (cmd_action == CMD_ACT_SET) {
564 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400565 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
566 ulTemp = *((u32 *)pdata_buf);
567 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200568 cpu_to_le16((u16) ulTemp);
569
570 }
571 break;
572 }
573 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400574 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200575
Dan Williams0aef64d2007-08-02 11:31:18 -0400576 if (cmd_action == CMD_ACT_GET) {
577 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
578 } else if (cmd_action == CMD_ACT_SET) {
579 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200580 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400581 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000582 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200583 }
584
585 break;
586 default:
587 break;
588 }
589
Holger Schurig9012b282007-05-25 11:27:16 -0400590 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200591 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400592 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
593 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200594
Holger Schurig9012b282007-05-25 11:27:16 -0400595 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400596 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400597 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
598 le16_to_cpu(pSNMPMIB->bufsize),
599 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200600
Holger Schurig9012b282007-05-25 11:27:16 -0400601 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200602 return 0;
603}
604
Holger Schurig69f90322007-11-23 15:43:44 +0100605static int lbs_cmd_802_11_radio_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200606 struct cmd_ds_command *cmd,
607 int cmd_action)
608{
David Woodhouse981f1872007-05-25 23:36:54 -0400609 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610
Holger Schurig9012b282007-05-25 11:27:16 -0400611 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200612
613 cmd->size =
614 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
615 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400616 cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617
618 pradiocontrol->action = cpu_to_le16(cmd_action);
619
David Woodhouseaa21c002007-12-08 20:04:36 +0000620 switch (priv->preamble) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400621 case CMD_TYPE_SHORT_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
623 break;
624
Dan Williams0aef64d2007-08-02 11:31:18 -0400625 case CMD_TYPE_LONG_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
627 break;
628
Dan Williams0aef64d2007-08-02 11:31:18 -0400629 case CMD_TYPE_AUTO_PREAMBLE:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 default:
631 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
632 break;
633 }
634
David Woodhouseaa21c002007-12-08 20:04:36 +0000635 if (priv->radioon)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
637 else
638 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
639
Holger Schurig9012b282007-05-25 11:27:16 -0400640 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641 return 0;
642}
643
Holger Schurig69f90322007-11-23 15:43:44 +0100644static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200645 struct cmd_ds_command *cmd,
646 u16 cmd_action, void *pdata_buf)
647{
648
649 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
650
Holger Schurig9012b282007-05-25 11:27:16 -0400651 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200652
653 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400654 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400655 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400656 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200657
David Woodhouse981f1872007-05-25 23:36:54 -0400658 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
659 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
660 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200661
662 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400663 case CMD_ACT_TX_POWER_OPT_GET:
664 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200665 prtp->currentlevel = 0;
666 break;
667
Dan Williams0aef64d2007-08-02 11:31:18 -0400668 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
669 prtp->action = cpu_to_le16(CMD_ACT_SET);
670 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200671 break;
672
Dan Williams0aef64d2007-08-02 11:31:18 -0400673 case CMD_ACT_TX_POWER_OPT_SET_MID:
674 prtp->action = cpu_to_le16(CMD_ACT_SET);
675 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200676 break;
677
Dan Williams0aef64d2007-08-02 11:31:18 -0400678 case CMD_ACT_TX_POWER_OPT_SET_LOW:
679 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200680 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
681 break;
682 }
Holger Schurig9012b282007-05-25 11:27:16 -0400683
684 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200685 return 0;
686}
687
Holger Schurig69f90322007-11-23 15:43:44 +0100688static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400689 struct cmd_ds_command *cmd,
690 u16 cmd_action, void *pdata_buf)
691{
692 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
693
694 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
695 cmd->size =
696 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
697 S_DS_GEN);
698
699 monitor->action = cpu_to_le16(cmd_action);
700 if (cmd_action == CMD_ACT_SET) {
701 monitor->mode =
702 cpu_to_le16((u16) (*(u32 *) pdata_buf));
703 }
704
705 return 0;
706}
707
Holger Schurig69f90322007-11-23 15:43:44 +0100708static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200709 struct cmd_ds_command *cmd,
710 u16 cmd_action)
711{
712 struct cmd_ds_802_11_rate_adapt_rateset
713 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714
Holger Schurig8ff12da2007-08-02 11:54:31 -0400715 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200716 cmd->size =
717 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
718 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400719 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200720
David Woodhouse981f1872007-05-25 23:36:54 -0400721 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000722 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
723 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200724
Holger Schurig9012b282007-05-25 11:27:16 -0400725 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200726 return 0;
727}
728
Dan Williams8e3c91b2007-12-11 15:50:59 -0500729/**
730 * @brief Get the current data rate
731 *
732 * @param priv A pointer to struct lbs_private structure
733 *
734 * @return The data rate on success, error on failure
735 */
736int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200737{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500738 struct cmd_ds_802_11_data_rate cmd;
739 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200740
Holger Schurig9012b282007-05-25 11:27:16 -0400741 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200742
Dan Williams8e3c91b2007-12-11 15:50:59 -0500743 memset(&cmd, 0, sizeof(cmd));
744 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
745 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200746
David Woodhouse689442d2007-12-12 16:00:42 -0500747 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500748 if (ret)
749 goto out;
750
751 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
752
753 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
754 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
755
756out:
757 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
758 return ret;
759}
760
761/**
762 * @brief Set the data rate
763 *
764 * @param priv A pointer to struct lbs_private structure
765 * @param rate The desired data rate, or 0 to clear a locked rate
766 *
767 * @return 0 on success, error on failure
768 */
769int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
770{
771 struct cmd_ds_802_11_data_rate cmd;
772 int ret = 0;
773
774 lbs_deb_enter(LBS_DEB_CMD);
775
776 memset(&cmd, 0, sizeof(cmd));
777 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
778
779 if (rate > 0) {
780 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
781 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
782 if (cmd.rates[0] == 0) {
783 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
784 " 0x%02X\n", rate);
785 ret = 0;
786 goto out;
787 }
788 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
789 } else {
790 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400791 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200792 }
793
David Woodhouse689442d2007-12-12 16:00:42 -0500794 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500795 if (ret)
796 goto out;
797
798 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
799
800 /* FIXME: get actual rates FW can do if this command actually returns
801 * all data rates supported.
802 */
803 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
804 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
805
806out:
807 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
808 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200809}
810
Holger Schurig69f90322007-11-23 15:43:44 +0100811static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200812 struct cmd_ds_command *cmd,
813 u16 cmd_action)
814{
815 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200816
Holger Schurig8ff12da2007-08-02 11:54:31 -0400817 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400818 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200819 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400820 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821
Holger Schurig8ff12da2007-08-02 11:54:31 -0400822 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200823 pMCastAdr->action = cpu_to_le16(cmd_action);
824 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000825 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
826 memcpy(pMCastAdr->maclist, priv->multicastlist,
827 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200828
Holger Schurig8ff12da2007-08-02 11:54:31 -0400829 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200830 return 0;
831}
832
Dan Williams2dd4b262007-12-11 16:54:15 -0500833/**
834 * @brief Get the radio channel
835 *
836 * @param priv A pointer to struct lbs_private structure
837 *
838 * @return The channel on success, error on failure
839 */
840int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200841{
Dan Williams2dd4b262007-12-11 16:54:15 -0500842 struct cmd_ds_802_11_rf_channel cmd;
843 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200844
Holger Schurig8ff12da2007-08-02 11:54:31 -0400845 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200846
Dan Williams2dd4b262007-12-11 16:54:15 -0500847 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
848 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200849
David Woodhouse689442d2007-12-12 16:00:42 -0500850 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500851 if (ret)
852 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200853
Dan Williamscb182a62007-12-11 17:35:51 -0500854 ret = le16_to_cpu(cmd.channel);
855 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500856
857out:
858 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
859 return ret;
860}
861
862/**
863 * @brief Set the radio channel
864 *
865 * @param priv A pointer to struct lbs_private structure
866 * @param channel The desired channel, or 0 to clear a locked channel
867 *
868 * @return 0 on success, error on failure
869 */
870int lbs_set_channel(struct lbs_private *priv, u8 channel)
871{
872 struct cmd_ds_802_11_rf_channel cmd;
873 u8 old_channel = priv->curbssparams.channel;
874 int ret = 0;
875
876 lbs_deb_enter(LBS_DEB_CMD);
877
878 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
879 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
880 cmd.channel = cpu_to_le16(channel);
881
David Woodhouse689442d2007-12-12 16:00:42 -0500882 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500883 if (ret)
884 goto out;
885
Dan Williamscb182a62007-12-11 17:35:51 -0500886 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
887 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
888 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500889
890out:
891 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
892 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200893}
894
Holger Schurig69f90322007-11-23 15:43:44 +0100895static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200896 struct cmd_ds_command *cmd)
897{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898
Holger Schurig8ff12da2007-08-02 11:54:31 -0400899 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400900 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400901 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400902 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200903
904 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000905 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
906 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
907 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
908 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
909 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
910 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200911
Holger Schurig8ff12da2007-08-02 11:54:31 -0400912 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200913 return 0;
914}
915
Holger Schurig69f90322007-11-23 15:43:44 +0100916static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200917 struct cmd_ds_command *cmdptr,
918 u8 cmd_action, void *pdata_buf)
919{
Holger Schurig10078322007-11-15 18:05:47 -0500920 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200921
Holger Schurig9012b282007-05-25 11:27:16 -0400922 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200923
Holger Schurig10078322007-11-15 18:05:47 -0500924 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200925
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000926 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400927 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200928 {
929 struct cmd_ds_mac_reg_access *macreg;
930
931 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400932 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
933 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200934 macreg =
935 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
936 macreg;
937
938 macreg->action = cpu_to_le16(cmd_action);
939 macreg->offset = cpu_to_le16((u16) offval->offset);
940 macreg->value = cpu_to_le32(offval->value);
941
942 break;
943 }
944
Dan Williams0aef64d2007-08-02 11:31:18 -0400945 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200946 {
947 struct cmd_ds_bbp_reg_access *bbpreg;
948
949 cmdptr->size =
950 cpu_to_le16(sizeof
951 (struct cmd_ds_bbp_reg_access)
952 + S_DS_GEN);
953 bbpreg =
954 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
955 bbpreg;
956
957 bbpreg->action = cpu_to_le16(cmd_action);
958 bbpreg->offset = cpu_to_le16((u16) offval->offset);
959 bbpreg->value = (u8) offval->value;
960
961 break;
962 }
963
Dan Williams0aef64d2007-08-02 11:31:18 -0400964 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200965 {
966 struct cmd_ds_rf_reg_access *rfreg;
967
968 cmdptr->size =
969 cpu_to_le16(sizeof
970 (struct cmd_ds_rf_reg_access) +
971 S_DS_GEN);
972 rfreg =
973 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
974 rfreg;
975
976 rfreg->action = cpu_to_le16(cmd_action);
977 rfreg->offset = cpu_to_le16((u16) offval->offset);
978 rfreg->value = (u8) offval->value;
979
980 break;
981 }
982
983 default:
984 break;
985 }
986
Holger Schurig9012b282007-05-25 11:27:16 -0400987 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200988 return 0;
989}
990
Holger Schurig69f90322007-11-23 15:43:44 +0100991static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992 struct cmd_ds_command *cmd,
993 u16 cmd_action)
994{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200995
Holger Schurig8ff12da2007-08-02 11:54:31 -0400996 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400997 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400998 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200999 S_DS_GEN);
1000 cmd->result = 0;
1001
1002 cmd->params.macadd.action = cpu_to_le16(cmd_action);
1003
Dan Williams0aef64d2007-08-02 11:31:18 -04001004 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001005 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +00001006 priv->current_addr, ETH_ALEN);
1007 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001008 }
1009
Holger Schurig8ff12da2007-08-02 11:54:31 -04001010 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011 return 0;
1012}
1013
Holger Schurig69f90322007-11-23 15:43:44 +01001014static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001015 struct cmd_ds_command *cmd,
1016 int cmd_action, void *pdata_buf)
1017{
Holger Schurig10078322007-11-15 18:05:47 -05001018 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019
Holger Schurig9012b282007-05-25 11:27:16 -04001020 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021
Dan Williams0aef64d2007-08-02 11:31:18 -04001022 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001023 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1024 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001025 cmd->result = 0;
1026
1027 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1028 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1029 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1030 cmd->params.rdeeprom.value = 0;
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_bt_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_bt_access *bt_access = &cmd->params.bt;
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_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001044 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001045 cmd->result = 0;
1046 bt_access->action = cpu_to_le16(cmd_action);
1047
1048 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001049 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001050 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001051 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001053 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001054 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001055 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001056 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001057 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1059 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001060 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001061 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001062 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001063 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1064 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001065 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001066 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067 default:
1068 break;
1069 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001070 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071 return 0;
1072}
1073
Holger Schurig69f90322007-11-23 15:43:44 +01001074static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075 struct cmd_ds_command *cmd,
1076 u16 cmd_action, void *pdata_buf)
1077{
1078 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001079 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080
Dan Williams0aef64d2007-08-02 11:31:18 -04001081 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001082 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001083 cmd->result = 0;
1084
1085 if (pdata_buf)
1086 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1087 else
1088 memset(fwt_access, 0, sizeof(*fwt_access));
1089
1090 fwt_access->action = cpu_to_le16(cmd_action);
1091
Holger Schurig8ff12da2007-08-02 11:54:31 -04001092 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093 return 0;
1094}
1095
David Woodhouse301eacb2007-12-11 15:23:59 -05001096int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1097 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001098{
David Woodhouse301eacb2007-12-11 15:23:59 -05001099 int ret;
1100
Holger Schurig8ff12da2007-08-02 11:54:31 -04001101 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001102
David Woodhouse301eacb2007-12-11 15:23:59 -05001103 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
1104 cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
1105 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001106
David Woodhouse301eacb2007-12-11 15:23:59 -05001107 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001108
David Woodhouse689442d2007-12-12 16:00:42 -05001109 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001110
Holger Schurig8ff12da2007-08-02 11:54:31 -04001111 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001112 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001113}
David Woodhouse301eacb2007-12-11 15:23:59 -05001114EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001115
David Woodhouse86062132007-12-13 00:32:36 -05001116int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001117{
1118 struct cmd_ds_mesh_config cmd;
1119
1120 memset(&cmd, 0, sizeof(cmd));
1121 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001122 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001123 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse7e226272007-12-14 22:53:41 -05001124
David Woodhouse23a397a2007-12-11 18:56:42 -05001125 if (enable) {
1126 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1127 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1128 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001129 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001130 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001131 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001132 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001133}
1134
Brajesh Dave96287ac2007-11-20 17:44:28 -05001135static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1136 struct cmd_ds_command *cmd,
1137 u16 cmd_action)
1138{
1139 struct cmd_ds_802_11_beacon_control
1140 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001141
1142 lbs_deb_enter(LBS_DEB_CMD);
1143 cmd->size =
1144 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1145 + S_DS_GEN);
1146 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1147
1148 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001149 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1150 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001151
1152 lbs_deb_leave(LBS_DEB_CMD);
1153 return 0;
1154}
1155
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001156/*
Holger Schurig10078322007-11-15 18:05:47 -05001157 * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for
Marcelo Tosatti29f5f2a2007-10-30 10:52:46 -04001158 * the command timer, because it does not account for queued commands.
1159 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001160void lbs_queue_cmd(struct lbs_private *priv,
Holger Schurig69f90322007-11-23 15:43:44 +01001161 struct cmd_ctrl_node *cmdnode,
1162 u8 addtail)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001163{
1164 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165
Holger Schurig8ff12da2007-08-02 11:54:31 -04001166 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001167
David Woodhousec4ab4122007-12-15 00:41:51 -05001168 if (!cmdnode) {
1169 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001170 goto done;
1171 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001172 if (!cmdnode->cmdbuf->size) {
1173 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1174 goto done;
1175 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001176 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177
1178 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001179 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
1180 struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf;
1181
Dan Williams0aef64d2007-08-02 11:31:18 -04001182 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001183 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184 addtail = 0;
1185 }
1186 }
1187
David Woodhouseaa21c002007-12-08 20:04:36 +00001188 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189
David Woodhouseac472462007-12-08 00:35:00 +00001190 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001191 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001192 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001193 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001194
David Woodhouseaa21c002007-12-08 20:04:36 +00001195 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001196
Holger Schurig8ff12da2007-08-02 11:54:31 -04001197 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001198 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199
1200done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001201 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001202}
1203
David Woodhoused9896ee2007-12-15 00:09:25 -05001204static int lbs_submit_command(struct lbs_private *priv,
1205 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001206{
1207 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001208 struct cmd_header *cmd;
Eugene Teob031ac12007-08-02 13:18:07 -04001209 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210 u16 cmdsize;
1211 u16 command;
1212
Holger Schurig8ff12da2007-08-02 11:54:31 -04001213 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001214
Dan Williamsddac4522007-12-11 13:49:39 -05001215 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001216
David Woodhouseaa21c002007-12-08 20:04:36 +00001217 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001218 priv->cur_cmd = cmdnode;
1219 priv->cur_cmd_retcode = 0;
1220 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001221
Dan Williamsddac4522007-12-11 13:49:39 -05001222 cmdsize = le16_to_cpu(cmd->size);
1223 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
David Woodhousee1258172007-12-11 23:42:49 -05001225 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1226 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001227 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001228
Dan Williamsddac4522007-12-11 13:49:39 -05001229 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhoused9896ee2007-12-15 00:09:25 -05001230 if (ret) {
1231 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouseaa21c002007-12-08 20:04:36 +00001232 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouse183aeac2007-12-15 01:52:54 -05001233 lbs_complete_command(priv, priv->cur_cmd, ret);
David Woodhouseaa21c002007-12-08 20:04:36 +00001234 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235 goto done;
1236 }
1237
Holger Schurig8ff12da2007-08-02 11:54:31 -04001238 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239
1240 /* Setup the timer after transmit command */
Dan Williams0aef64d2007-08-02 11:31:18 -04001241 if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE
1242 || command == CMD_802_11_ASSOCIATE)
David Woodhouseaa21c002007-12-08 20:04:36 +00001243 mod_timer(&priv->command_timer, jiffies + (10*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001244 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001245 mod_timer(&priv->command_timer, jiffies + (5*HZ));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246
1247 ret = 0;
1248
Holger Schurig9012b282007-05-25 11:27:16 -04001249done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001250 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251 return ret;
1252}
1253
Holger Schurig69f90322007-11-23 15:43:44 +01001254static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001255 struct cmd_ds_command *cmd)
1256{
1257 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1258
Holger Schurig9012b282007-05-25 11:27:16 -04001259 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001260
Dan Williams0aef64d2007-08-02 11:31:18 -04001261 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001262 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001263 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264
Holger Schurig8ff12da2007-08-02 11:54:31 -04001265 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001266 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001267
Holger Schurig9012b282007-05-25 11:27:16 -04001268 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001269 return 0;
1270}
1271
1272/**
1273 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001274 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001276static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001277 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001278{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001279 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001281 if (!cmdnode)
1282 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001283
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001284 cmdnode->callback = NULL;
1285 cmdnode->callback_arg = 0;
1286
1287 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1288
1289 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1290 out:
1291 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001292}
1293
Holger Schurig69f90322007-11-23 15:43:44 +01001294static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1295 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001296{
1297 unsigned long flags;
1298
David Woodhouseaa21c002007-12-08 20:04:36 +00001299 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001300 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001301 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001302}
1303
David Woodhouse183aeac2007-12-15 01:52:54 -05001304void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1305 int result)
1306{
1307 if (cmd == priv->cur_cmd)
1308 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001309
David Woodhouseae125bf2007-12-15 04:22:52 -05001310 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001311 cmd->cmdwaitqwoken = 1;
1312 wake_up_interruptible(&cmd->cmdwait_q);
1313
David Woodhousead12d0f2007-12-15 02:06:16 -05001314 if (!cmd->callback)
1315 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001316 priv->cur_cmd = NULL;
1317}
1318
Holger Schurig69f90322007-11-23 15:43:44 +01001319int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320{
1321 int ret = 0;
1322
Holger Schurig9012b282007-05-25 11:27:16 -04001323 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324
Holger Schurig10078322007-11-15 18:05:47 -05001325 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001326 CMD_802_11_RADIO_CONTROL,
1327 CMD_ACT_SET,
1328 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001329
Holger Schurig8ff12da2007-08-02 11:54:31 -04001330 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001331 priv->radioon, priv->preamble);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001332
Holger Schurig9012b282007-05-25 11:27:16 -04001333 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001334 return ret;
1335}
1336
Holger Schurig69f90322007-11-23 15:43:44 +01001337int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001338{
1339 int ret = 0;
1340
Holger Schurig9012b282007-05-25 11:27:16 -04001341 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001342
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001344 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001345 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001346
Holger Schurig9012b282007-05-25 11:27:16 -04001347 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001348 return ret;
1349}
1350
1351/**
1352 * @brief This function prepare the command before send to firmware.
1353 *
Holger Schurig69f90322007-11-23 15:43:44 +01001354 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001355 * @param cmd_no command number
1356 * @param cmd_action command action: GET or SET
1357 * @param wait_option wait option: wait response or not
1358 * @param cmd_oid cmd oid: treated as sub command
1359 * @param pdata_buf A pointer to informaion buffer
1360 * @return 0 or -1
1361 */
Holger Schurig69f90322007-11-23 15:43:44 +01001362int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 u16 cmd_no,
1364 u16 cmd_action,
1365 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1366{
1367 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368 struct cmd_ctrl_node *cmdnode;
1369 struct cmd_ds_command *cmdptr;
1370 unsigned long flags;
1371
Holger Schurig8ff12da2007-08-02 11:54:31 -04001372 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001373
David Woodhouseaa21c002007-12-08 20:04:36 +00001374 if (!priv) {
1375 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001376 ret = -1;
1377 goto done;
1378 }
1379
David Woodhouseaa21c002007-12-08 20:04:36 +00001380 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001381 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382 ret = -1;
1383 goto done;
1384 }
1385
Holger Schurig0d61d042007-12-05 17:58:06 +01001386 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001387
1388 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001389 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390
1391 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001392 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 ret = -1;
1394 goto done;
1395 }
1396
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001397 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398
Dan Williamsddac4522007-12-11 13:49:39 -05001399 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001400
Holger Schurig8ff12da2007-08-02 11:54:31 -04001401 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001403 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001404 priv->seqnum++;
1405 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001406
David Woodhouse981f1872007-05-25 23:36:54 -04001407 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 cmdptr->result = 0;
1409
1410 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001411 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001412 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001413 break;
1414
Dan Williams0aef64d2007-08-02 11:31:18 -04001415 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001416 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417 break;
1418
Dan Williams0aef64d2007-08-02 11:31:18 -04001419 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001420 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001421 break;
1422
Dan Williams0aef64d2007-08-02 11:31:18 -04001423 case CMD_802_11_ASSOCIATE:
1424 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001425 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001426 break;
1427
Dan Williams0aef64d2007-08-02 11:31:18 -04001428 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001429 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430 break;
1431
Dan Williams0aef64d2007-08-02 11:31:18 -04001432 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001433 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001434 break;
1435
Dan Williams0aef64d2007-08-02 11:31:18 -04001436 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001437 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001438 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001439 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001440 break;
1441
Dan Williams0aef64d2007-08-02 11:31:18 -04001442 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001443 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001444 break;
1445
Dan Williams0aef64d2007-08-02 11:31:18 -04001446 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001447 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001448 break;
1449
Dan Williams0aef64d2007-08-02 11:31:18 -04001450 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001451 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001452 break;
1453
Dan Williams0aef64d2007-08-02 11:31:18 -04001454 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001455 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001456 break;
1457
Dan Williams0aef64d2007-08-02 11:31:18 -04001458 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001459 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001460 cmd_action, cmd_oid, pdata_buf);
1461 break;
1462
Dan Williams0aef64d2007-08-02 11:31:18 -04001463 case CMD_MAC_REG_ACCESS:
1464 case CMD_BBP_REG_ACCESS:
1465 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001466 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001467 break;
1468
Dan Williams0aef64d2007-08-02 11:31:18 -04001469 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001470 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 cmd_action, pdata_buf);
1472 break;
1473
Dan Williams0aef64d2007-08-02 11:31:18 -04001474 case CMD_802_11_RADIO_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001475 ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001476 break;
1477
Dan Williams0aef64d2007-08-02 11:31:18 -04001478 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001479 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001480 cmdptr, cmd_action);
1481 break;
1482
Dan Williams0aef64d2007-08-02 11:31:18 -04001483 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001484 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001485 break;
1486
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001487 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001488 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001489 cmd_action, pdata_buf);
1490 break;
1491
Dan Williams0aef64d2007-08-02 11:31:18 -04001492 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001493 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001494 break;
1495
Dan Williams0aef64d2007-08-02 11:31:18 -04001496 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001497 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498 break;
1499
Dan Williams0aef64d2007-08-02 11:31:18 -04001500 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001501 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502 break;
1503
Dan Williams0aef64d2007-08-02 11:31:18 -04001504 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001505 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001506 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507 break;
1508
Dan Williams0aef64d2007-08-02 11:31:18 -04001509 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001510 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001511 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001512 break;
1513
Dan Williams0aef64d2007-08-02 11:31:18 -04001514 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001515 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001516 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001517 break;
1518
Dan Williams0aef64d2007-08-02 11:31:18 -04001519 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001520 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001521 break;
1522
Dan Williams0aef64d2007-08-02 11:31:18 -04001523 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001524 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525 cmd_action, pdata_buf);
1526 break;
1527
Dan Williams0aef64d2007-08-02 11:31:18 -04001528 case CMD_802_11_SET_AFC:
1529 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001530
1531 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001532 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1533 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001534
1535 memmove(&cmdptr->params.afc,
1536 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1537
1538 ret = 0;
1539 goto done;
1540
Dan Williams0aef64d2007-08-02 11:31:18 -04001541 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001542 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001543 cmd_no, cmd_action);
1544 break;
1545
Dan Williams0aef64d2007-08-02 11:31:18 -04001546 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001547 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001548 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001549 case CMD_802_11_INACTIVITY_TIMEOUT:
Holger Schurig10078322007-11-15 18:05:47 -05001550 ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001551 cmd_action, pdata_buf);
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001552 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001553 break;
1554
Dan Williams0aef64d2007-08-02 11:31:18 -04001555 case CMD_802_11_TPC_CFG:
1556 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001557 cmdptr->size =
1558 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1559 S_DS_GEN);
1560
1561 memmove(&cmdptr->params.tpccfg,
1562 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1563
1564 ret = 0;
1565 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001566 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567 {
1568 struct mrvlietypes_ledgpio *gpio =
1569 (struct mrvlietypes_ledgpio*)
1570 cmdptr->params.ledgpio.data;
1571
1572 memmove(&cmdptr->params.ledgpio,
1573 pdata_buf,
1574 sizeof(struct cmd_ds_802_11_led_ctrl));
1575
1576 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001577 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001578
1579#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1580 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001581 cpu_to_le16(le16_to_cpu(gpio->header.len)
1582 + S_DS_GEN
1583 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1584 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001585
1586 ret = 0;
1587 break;
1588 }
Holger Schurig3a188642007-11-26 10:07:14 +01001589 case CMD_802_11_SUBSCRIBE_EVENT:
1590 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1591 cmd_action, pdata_buf);
1592 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001593 case CMD_802_11_PWR_CFG:
1594 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001595 cmdptr->size =
1596 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1597 S_DS_GEN);
1598 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1599 sizeof(struct cmd_ds_802_11_pwr_cfg));
1600
1601 ret = 0;
1602 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001603 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001604 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001605 break;
1606
Dan Williams0aef64d2007-08-02 11:31:18 -04001607 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001608 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001609 break;
1610
Dan Williams0aef64d2007-08-02 11:31:18 -04001611 case CMD_GET_TSF:
1612 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001613 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1614 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001615 ret = 0;
1616 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001617 case CMD_802_11_BEACON_CTRL:
1618 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1619 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001621 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001622 ret = -1;
1623 break;
1624 }
1625
1626 /* return error, since the command preparation failed */
1627 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001628 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001629 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001630 ret = -1;
1631 goto done;
1632 }
1633
1634 cmdnode->cmdwaitqwoken = 0;
1635
David Woodhouseaa21c002007-12-08 20:04:36 +00001636 lbs_queue_cmd(priv, cmdnode, 1);
Dan Williamsfe336152007-08-02 11:32:25 -04001637 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001638
Dan Williams0aef64d2007-08-02 11:31:18 -04001639 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001640 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001641 might_sleep();
1642 wait_event_interruptible(cmdnode->cmdwait_q,
1643 cmdnode->cmdwaitqwoken);
1644 }
1645
David Woodhouseaa21c002007-12-08 20:04:36 +00001646 spin_lock_irqsave(&priv->driver_lock, flags);
1647 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001648 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001649 priv->cur_cmd_retcode);
1650 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001651 ret = -1;
1652 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001653 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654
1655done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001656 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001657 return ret;
1658}
Holger Schurig10078322007-11-15 18:05:47 -05001659EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001660
1661/**
1662 * @brief This function allocates the command buffer and link
1663 * it to command free queue.
1664 *
Holger Schurig69f90322007-11-23 15:43:44 +01001665 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001666 * @return 0 or -1
1667 */
Holger Schurig69f90322007-11-23 15:43:44 +01001668int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001669{
1670 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001671 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001672 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001673 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674
Holger Schurig8ff12da2007-08-02 11:54:31 -04001675 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676
Dan Williamsddac4522007-12-11 13:49:39 -05001677 /* Allocate and initialize the command array */
1678 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1679 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001680 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001681 ret = -1;
1682 goto done;
1683 }
Dan Williamsddac4522007-12-11 13:49:39 -05001684 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001685
Dan Williamsddac4522007-12-11 13:49:39 -05001686 /* Allocate and initialize each command buffer in the command array */
1687 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1688 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1689 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001690 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691 ret = -1;
1692 goto done;
1693 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001694 }
1695
Dan Williamsddac4522007-12-11 13:49:39 -05001696 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1697 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1698 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001700 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001701
1702done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001703 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001704 return ret;
1705}
1706
1707/**
1708 * @brief This function frees the command buffer.
1709 *
Holger Schurig69f90322007-11-23 15:43:44 +01001710 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001711 * @return 0 or -1
1712 */
Holger Schurig69f90322007-11-23 15:43:44 +01001713int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001714{
Dan Williamsddac4522007-12-11 13:49:39 -05001715 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001716 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001717
Holger Schurig8ff12da2007-08-02 11:54:31 -04001718 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001719
1720 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001721 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001722 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001723 goto done;
1724 }
1725
Dan Williamsddac4522007-12-11 13:49:39 -05001726 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001727
1728 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001729 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1730 if (cmdarray[i].cmdbuf) {
1731 kfree(cmdarray[i].cmdbuf);
1732 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001733 }
1734 }
1735
1736 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001737 if (priv->cmd_array) {
1738 kfree(priv->cmd_array);
1739 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001740 }
1741
1742done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001743 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001744 return 0;
1745}
1746
1747/**
1748 * @brief This function gets a free command node if available in
1749 * command free queue.
1750 *
Holger Schurig69f90322007-11-23 15:43:44 +01001751 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1753 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001754static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001755{
1756 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001757 unsigned long flags;
1758
Holger Schurig8ff12da2007-08-02 11:54:31 -04001759 lbs_deb_enter(LBS_DEB_HOST);
1760
David Woodhouseaa21c002007-12-08 20:04:36 +00001761 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001762 return NULL;
1763
David Woodhouseaa21c002007-12-08 20:04:36 +00001764 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001765
David Woodhouseaa21c002007-12-08 20:04:36 +00001766 if (!list_empty(&priv->cmdfreeq)) {
1767 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001768 struct cmd_ctrl_node, list);
1769 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001770 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001771 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001772 tempnode = NULL;
1773 }
1774
David Woodhouseaa21c002007-12-08 20:04:36 +00001775 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001776
Holger Schurig8ff12da2007-08-02 11:54:31 -04001777 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001778 return tempnode;
1779}
1780
1781/**
1782 * @brief This function cleans command node.
1783 *
1784 * @param ptempnode A pointer to cmdCtrlNode structure
1785 * @return n/a
1786 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001787
1788/**
1789 * @brief This function initializes the command node.
1790 *
Holger Schurig69f90322007-11-23 15:43:44 +01001791 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001792 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001793 * @param pdata_buf A pointer to informaion buffer
1794 * @return 0 or -1
1795 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001796static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1797 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001798 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001799{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001800 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001801
1802 if (!ptempnode)
1803 return;
1804
David Woodhouse17230472007-12-07 15:13:05 +00001805 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001806 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001807
Holger Schurig8ff12da2007-08-02 11:54:31 -04001808 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001809}
1810
1811/**
1812 * @brief This function executes next command in command
1813 * pending queue. It will put fimware back to PS mode
1814 * if applicable.
1815 *
Holger Schurig69f90322007-11-23 15:43:44 +01001816 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001817 * @return 0 or -1
1818 */
Holger Schurig69f90322007-11-23 15:43:44 +01001819int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001820{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001821 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001822 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001823 unsigned long flags;
1824 int ret = 0;
1825
Holger Schurig8ff12da2007-08-02 11:54:31 -04001826 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001827 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001828 // data packet is received
1829 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001830
David Woodhouseaa21c002007-12-08 20:04:36 +00001831 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001832
David Woodhouseaa21c002007-12-08 20:04:36 +00001833 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001834 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001835 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836 ret = -1;
1837 goto done;
1838 }
1839
David Woodhouseaa21c002007-12-08 20:04:36 +00001840 if (!list_empty(&priv->cmdpendingq)) {
1841 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001842 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001843 }
1844
David Woodhouseaa21c002007-12-08 20:04:36 +00001845 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001846
1847 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001848 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001849
Dan Williamsddac4522007-12-11 13:49:39 -05001850 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001851 if ((priv->psstate == PS_STATE_SLEEP) ||
1852 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001853 lbs_deb_host(
1854 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001855 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001856 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001857 ret = -1;
1858 goto done;
1859 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001860 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001861 "0x%04x in psstate %d\n",
1862 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001863 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001864 /*
1865 * 1. Non-PS command:
1866 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001867 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001868 * 2. PS command but not Exit_PS:
1869 * Ignore it.
1870 * 3. PS command Exit_PS:
1871 * Set needtowakeup to TRUE if current state is SLEEP,
1872 * otherwise send this command down to firmware
1873 * immediately.
1874 */
Dan Williamsddac4522007-12-11 13:49:39 -05001875 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001876 /* Prepare to send Exit PS,
1877 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001878 if ((priv->psstate == PS_STATE_SLEEP)
1879 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001880 ) {
1881 /* w/ new scheme, it will not reach here.
1882 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001883 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001884 } else
Holger Schurig10078322007-11-15 18:05:47 -05001885 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001886
1887 ret = 0;
1888 goto done;
1889 } else {
1890 /*
1891 * PS command. Ignore it if it is not Exit_PS.
1892 * otherwise send it down immediately.
1893 */
Dan Williamsddac4522007-12-11 13:49:39 -05001894 struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895
Holger Schurig8ff12da2007-08-02 11:54:31 -04001896 lbs_deb_host(
1897 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001898 psm->action);
1899 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001900 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001901 lbs_deb_host(
1902 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001903 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001904 spin_lock_irqsave(&priv->driver_lock, flags);
1905 lbs_complete_command(priv, cmdnode, 0);
1906 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907
1908 ret = 0;
1909 goto done;
1910 }
1911
David Woodhouseaa21c002007-12-08 20:04:36 +00001912 if ((priv->psstate == PS_STATE_SLEEP) ||
1913 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001914 lbs_deb_host(
1915 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001916 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001917 spin_lock_irqsave(&priv->driver_lock, flags);
1918 lbs_complete_command(priv, cmdnode, 0);
1919 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001920 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001921
1922 ret = 0;
1923 goto done;
1924 }
1925
Holger Schurig8ff12da2007-08-02 11:54:31 -04001926 lbs_deb_host(
1927 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001928 }
1929 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001930 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001931 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001932 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001933 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001934 } else {
1935 /*
1936 * check if in power save mode, if yes, put the device back
1937 * to PS mode
1938 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001939 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1940 (priv->psstate == PS_STATE_FULL_POWER) &&
1941 ((priv->connect_status == LBS_CONNECTED) ||
1942 (priv->mesh_connect_status == LBS_CONNECTED))) {
1943 if (priv->secinfo.WPAenabled ||
1944 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001945 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001946 if (priv->wpa_mcast_key.len ||
1947 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001948 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001949 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1950 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001951 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952 }
1953 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001954 lbs_deb_host(
1955 "EXEC_NEXT_CMD: cmdpendingq empty, "
1956 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001957 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001958 }
1959 }
1960 }
1961
1962 ret = 0;
1963done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001964 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001965 return ret;
1966}
1967
Holger Schurig69f90322007-11-23 15:43:44 +01001968void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001969{
1970 union iwreq_data iwrq;
1971 u8 buf[50];
1972
Holger Schurig8ff12da2007-08-02 11:54:31 -04001973 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001974
1975 memset(&iwrq, 0, sizeof(union iwreq_data));
1976 memset(buf, 0, sizeof(buf));
1977
1978 snprintf(buf, sizeof(buf) - 1, "%s", str);
1979
1980 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1981
1982 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001983 lbs_deb_wext("event indication string %s\n", (char *)buf);
1984 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1985 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001986
Holger Schurig634b8f42007-05-25 13:05:16 -04001987 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001988
Holger Schurig8ff12da2007-08-02 11:54:31 -04001989 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001990}
1991
Holger Schurig69f90322007-11-23 15:43:44 +01001992static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001993{
1994 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001995 int ret = 0;
1996
Holger Schurig8ff12da2007-08-02 11:54:31 -04001997 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001998
Holger Schurig8ff12da2007-08-02 11:54:31 -04001999 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002000 size);
2001
Holger Schurig8ff12da2007-08-02 11:54:31 -04002002 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002003
Holger Schurig208fdd22007-05-25 12:17:06 -04002004 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Holger Schurig634b8f42007-05-25 13:05:16 -04002005 priv->dnld_sent = DNLD_RES_RECEIVED;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002006
David Woodhouseaa21c002007-12-08 20:04:36 +00002007 spin_lock_irqsave(&priv->driver_lock, flags);
2008 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04002009 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002010 priv->intcounter, priv->currenttxskb);
2011 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002012
2013 if (ret) {
2014 lbs_pr_alert(
2015 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
2016 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00002017 spin_lock_irqsave(&priv->driver_lock, flags);
2018 if (!priv->intcounter) {
2019 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002020 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002021 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002022 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002024 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002025
Holger Schurig8ff12da2007-08-02 11:54:31 -04002026 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002027 }
2028
Holger Schurig8ff12da2007-08-02 11:54:31 -04002029 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002030 return ret;
2031}
2032
Holger Schurig69f90322007-11-23 15:43:44 +01002033void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002034{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002035 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002036
2037 /*
2038 * PS is currently supported only in Infrastructure mode
2039 * Remove this check if it is to be supported in IBSS mode also
2040 */
2041
Holger Schurig10078322007-11-15 18:05:47 -05002042 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002043 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002044
Holger Schurig8ff12da2007-08-02 11:54:31 -04002045 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046}
2047
2048/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002049 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002050 *
Holger Schurig69f90322007-11-23 15:43:44 +01002051 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052 * @param wait_option wait response or not
2053 * @return n/a
2054 */
Holger Schurig69f90322007-11-23 15:43:44 +01002055void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002056{
David Woodhouse981f1872007-05-25 23:36:54 -04002057 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002058
Holger Schurig8ff12da2007-08-02 11:54:31 -04002059 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002060
Holger Schurig10078322007-11-15 18:05:47 -05002061 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002062
Holger Schurig10078322007-11-15 18:05:47 -05002063 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002064 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002065 wait_option, 0, &Localpsmode);
2066
Holger Schurig8ff12da2007-08-02 11:54:31 -04002067 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002068}
2069
2070/**
2071 * @brief This function checks condition and prepares to
2072 * send sleep confirm command to firmware if ok.
2073 *
Holger Schurig69f90322007-11-23 15:43:44 +01002074 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002075 * @param psmode Power Saving mode
2076 * @return n/a
2077 */
Holger Schurig69f90322007-11-23 15:43:44 +01002078void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002079{
2080 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002081 u8 allowed = 1;
2082
Holger Schurig8ff12da2007-08-02 11:54:31 -04002083 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002084
Holger Schurig634b8f42007-05-25 13:05:16 -04002085 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002086 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002087 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002088 }
2089
David Woodhouseaa21c002007-12-08 20:04:36 +00002090 spin_lock_irqsave(&priv->driver_lock, flags);
2091 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002092 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002093 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002094 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002095 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002096 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002097 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002098 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002099 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002100
2101 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002102 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002103 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002104 sizeof(struct PS_CMD_ConfirmSleep));
2105 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002106 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002107 }
2108
Holger Schurig8ff12da2007-08-02 11:54:31 -04002109 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002110}
Holger Schurig675787e2007-12-05 17:58:11 +01002111
2112
2113/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002114 * @brief Simple callback that copies response back into command
2115 *
2116 * @param priv A pointer to struct lbs_private structure
2117 * @param extra A pointer to the original command structure for which
2118 * 'resp' is a response
2119 * @param resp A pointer to the command response
2120 *
2121 * @return 0 on success, error on failure
2122 */
2123int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002124 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002125{
2126 struct cmd_header *buf = (void *)extra;
2127 uint16_t copy_len;
2128
2129 lbs_deb_enter(LBS_DEB_CMD);
2130
2131 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2132 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002133 "copy back buffer was %u bytes\n", copy_len,
2134 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002135 memcpy(buf, resp, copy_len);
2136
2137 lbs_deb_leave(LBS_DEB_CMD);
2138 return 0;
2139}
David Woodhouse689442d2007-12-12 16:00:42 -05002140EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002141
David Woodhouse3399ea52007-12-15 03:09:33 -05002142struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2143 struct cmd_header *in_cmd, int in_cmd_size,
2144 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2145 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002146{
Holger Schurig675787e2007-12-05 17:58:11 +01002147 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002148
2149 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002150
David Woodhouseaa21c002007-12-08 20:04:36 +00002151 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002152 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002153 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002154 goto done;
2155 }
2156
2157 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002158 if (cmdnode == NULL) {
2159 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2160
2161 /* Wake up main thread to execute next command */
2162 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002163 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002164 goto done;
2165 }
2166
David Woodhouse448a51a2007-12-08 00:59:54 +00002167 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002168 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002169
Dan Williams7ad994d2007-12-11 12:33:30 -05002170 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002171 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002172
Holger Schurig675787e2007-12-05 17:58:11 +01002173 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002174 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002175 cmdnode->cmdbuf->command = cpu_to_le16(command);
2176 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2177 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2178 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002179
2180 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2181
2182 /* here was the big old switch() statement, which is now obsolete,
2183 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2184
2185 cmdnode->cmdwaitqwoken = 0;
David Woodhouseaa21c002007-12-08 20:04:36 +00002186 lbs_queue_cmd(priv, cmdnode, 1);
Holger Schurig675787e2007-12-05 17:58:11 +01002187 wake_up_interruptible(&priv->waitq);
2188
David Woodhouse3399ea52007-12-15 03:09:33 -05002189 done:
2190 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2191 return cmdnode;
2192}
2193
2194int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2195 struct cmd_header *in_cmd, int in_cmd_size,
2196 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2197 unsigned long callback_arg)
2198{
2199 struct cmd_ctrl_node *cmdnode;
2200 unsigned long flags;
2201 int ret = 0;
2202
2203 lbs_deb_enter(LBS_DEB_HOST);
2204
2205 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2206 callback, callback_arg);
2207 if (IS_ERR(cmdnode)) {
2208 ret = PTR_ERR(cmdnode);
2209 goto done;
2210 }
2211
Holger Schurig675787e2007-12-05 17:58:11 +01002212 might_sleep();
2213 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2214
David Woodhouseaa21c002007-12-08 20:04:36 +00002215 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002216 ret = cmdnode->result;
2217 if (ret)
2218 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2219 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002220
David Woodhousead12d0f2007-12-15 02:06:16 -05002221 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002222 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002223
2224done:
2225 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2226 return ret;
2227}
Dan Williams14e865b2007-12-10 15:11:23 -05002228EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002229
2230