blob: 5d2c928fdd3641b52fd84cdcfe668acfafb5bd01 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
5
6#include <net/iw_handler.h>
7#include "host.h"
8#include "hostcmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "decl.h"
10#include "defs.h"
11#include "dev.h"
12#include "join.h"
13#include "wext.h"
Dan Williams6e66f032007-12-11 12:42:16 -050014#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050016static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
17static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Holger Schurig0d61d042007-12-05 17:58:06 +010018 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -050019 void *pdata_buf);
Holger Schurig0d61d042007-12-05 17:58:06 +010020
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022/**
Dan Williams852e1f22007-12-10 15:24:47 -050023 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024 *
25 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050026 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027 */
Dan Williams852e1f22007-12-10 15:24:47 -050028static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020029{
Dan Williams852e1f22007-12-10 15:24:47 -050030 switch (cmd) {
31 case CMD_802_11_RSSI:
32 return 1;
33 default:
34 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020035 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 return 0;
37}
38
Dan Williams6e66f032007-12-11 12:42:16 -050039/**
40 * @brief Updates the hardware details like MAC address and regulatory region
41 *
42 * @param priv A pointer to struct lbs_private structure
43 *
44 * @return 0 on success, error on failure
45 */
46int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020047{
Dan Williams6e66f032007-12-11 12:42:16 -050048 struct cmd_ds_get_hw_spec cmd;
49 int ret = -1;
50 u32 i;
51 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020052
Holger Schurig9012b282007-05-25 11:27:16 -040053 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054
Dan Williams6e66f032007-12-11 12:42:16 -050055 memset(&cmd, 0, sizeof(cmd));
56 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
57 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050058 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050059 if (ret)
60 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061
Dan Williams6e66f032007-12-11 12:42:16 -050062 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
63 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
64
65 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
66 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
67 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
68 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
69 print_mac(mac, cmd.permanentaddr));
70 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
71 cmd.hwifversion, cmd.version);
72
73 /* Clamp region code to 8-bit since FW spec indicates that it should
74 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
75 * returns non-zero high 8 bits here.
76 */
77 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
78
79 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
80 /* use the region code to search for the index */
81 if (priv->regioncode == lbs_region_code_to_index[i])
82 break;
83 }
84
85 /* if it's unidentified region code, use the default (USA) */
86 if (i >= MRVDRV_MAX_REGION_CODE) {
87 priv->regioncode = 0x10;
88 lbs_pr_info("unidentified region code; using the default (USA)\n");
89 }
90
91 if (priv->current_addr[0] == 0xff)
92 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
93
94 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
95 if (priv->mesh_dev)
96 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
97
98 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
99 ret = -1;
100 goto out;
101 }
102
103 if (lbs_set_universaltable(priv, 0)) {
104 ret = -1;
105 goto out;
106 }
107
108out:
Holger Schurig9012b282007-05-25 11:27:16 -0400109 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500110 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111}
112
David Woodhouse506e9022007-12-12 20:06:06 -0500113int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500114{
115 struct cmd_ds_host_sleep cmd_config;
116 int ret;
117
David Woodhouse9fae8992007-12-15 03:46:44 -0500118 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500119 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500120 cmd_config.gpio = priv->wol_gpio;
121 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500122
David Woodhouse689442d2007-12-12 16:00:42 -0500123 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500124 if (!ret) {
125 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
126 priv->wol_criteria = criteria;
127 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500128 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500129 }
David Woodhouse506e9022007-12-12 20:06:06 -0500130
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500131 return ret;
132}
133EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
134
Holger Schurig69f90322007-11-23 15:43:44 +0100135static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 struct cmd_ds_command *cmd,
137 u16 cmd_action)
138{
139 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140
Holger Schurig9012b282007-05-25 11:27:16 -0400141 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200142
Dan Williams0aef64d2007-08-02 11:31:18 -0400143 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400144 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
145 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200146 psm->action = cpu_to_le16(cmd_action);
147 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400148 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400149 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400150 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200151
Holger Schurig252cf0d2007-08-02 13:09:34 -0400152 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400153 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400155 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200156 break;
157
Dan Williams0aef64d2007-08-02 11:31:18 -0400158 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400159 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200160 break;
161
Dan Williams0aef64d2007-08-02 11:31:18 -0400162 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400163 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164 break;
165
166 default:
167 break;
168 }
169
Holger Schurig9012b282007-05-25 11:27:16 -0400170 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 return 0;
172}
173
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500174int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
175 uint16_t cmd_action, uint16_t *timeout)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200176{
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500177 struct cmd_ds_802_11_inactivity_timeout cmd;
178 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200179
Holger Schurig8ff12da2007-08-02 11:54:31 -0400180 lbs_deb_enter(LBS_DEB_CMD);
181
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500182 cmd.hdr.command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
183 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500185 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500187 if (cmd_action == CMD_ACT_SET)
188 cmd.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200189 else
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500190 cmd.timeout = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500192 ret = lbs_cmd_with_response(priv, CMD_802_11_INACTIVITY_TIMEOUT, &cmd);
193
194 if (!ret)
195 *timeout = le16_to_cpu(cmd.timeout);
196
197 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198 return 0;
199}
200
David Woodhouse3fbe1042007-12-17 23:48:31 -0500201int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
202 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200203{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500204 struct cmd_ds_802_11_sleep_params cmd;
205 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206
Holger Schurig9012b282007-05-25 11:27:16 -0400207 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208
Dan Williams0aef64d2007-08-02 11:31:18 -0400209 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500210 memset(&cmd, 0, sizeof(cmd));
211 } else {
212 cmd.error = cpu_to_le16(sp->sp_error);
213 cmd.offset = cpu_to_le16(sp->sp_offset);
214 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
215 cmd.calcontrol = sp->sp_calcontrol;
216 cmd.externalsleepclk = sp->sp_extsleepclk;
217 cmd.reserved = cpu_to_le16(sp->sp_reserved);
218 }
219 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
220 cmd.action = cpu_to_le16(cmd_action);
221
222 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
223
224 if (!ret) {
225 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
226 "calcontrol 0x%x extsleepclk 0x%x\n",
227 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
228 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
229 cmd.externalsleepclk);
230
231 sp->sp_error = le16_to_cpu(cmd.error);
232 sp->sp_offset = le16_to_cpu(cmd.offset);
233 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
234 sp->sp_calcontrol = cmd.calcontrol;
235 sp->sp_extsleepclk = cmd.externalsleepclk;
236 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237 }
238
David Woodhouse3fbe1042007-12-17 23:48:31 -0500239 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240 return 0;
241}
242
David Woodhousef70dd452007-12-18 00:18:05 -0500243int lbs_cmd_802_11_set_wep(struct lbs_private *priv, uint16_t cmd_action,
244 struct assoc_request *assoc)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245{
David Woodhousef70dd452007-12-18 00:18:05 -0500246 struct cmd_ds_802_11_set_wep cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248
Holger Schurig9012b282007-05-25 11:27:16 -0400249 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250
David Woodhousef70dd452007-12-18 00:18:05 -0500251 cmd.hdr.command = cpu_to_le16(CMD_802_11_SET_WEP);
252 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200253
David Woodhousef70dd452007-12-18 00:18:05 -0500254 cmd.action = cpu_to_le16(cmd_action);
255
256 if (cmd_action == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 int i;
258
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500260 cmd.keyindex = cpu_to_le16(assoc->wep_tx_keyidx &
261 CMD_WEP_KEY_INDEX_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200262
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263 /* Copy key types and material to host command structure */
264 for (i = 0; i < 4; i++) {
David Woodhousef70dd452007-12-18 00:18:05 -0500265 struct enc_key *pkey = &assoc->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266
267 switch (pkey->len) {
268 case KEY_LEN_WEP_40:
David Woodhousef70dd452007-12-18 00:18:05 -0500269 cmd.keytype[i] = CMD_TYPE_WEP_40_BIT;
270 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400271 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272 break;
273 case KEY_LEN_WEP_104:
David Woodhousef70dd452007-12-18 00:18:05 -0500274 cmd.keytype[i] = CMD_TYPE_WEP_104_BIT;
275 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400276 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277 break;
278 case 0:
279 break;
280 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400281 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
David Woodhousef70dd452007-12-18 00:18:05 -0500282 i, pkey->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200283 ret = -1;
284 goto done;
285 break;
286 }
287 }
David Woodhousef70dd452007-12-18 00:18:05 -0500288 } else if (cmd_action == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200289 /* ACT_REMOVE clears _all_ WEP keys */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200290
291 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500292 cmd.keyindex = cpu_to_le16(priv->wep_tx_keyidx &
293 CMD_WEP_KEY_INDEX_MASK);
David Woodhouseaa21c002007-12-08 20:04:36 +0000294 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295 }
296
David Woodhousef70dd452007-12-18 00:18:05 -0500297 ret = lbs_cmd_with_response(priv, CMD_802_11_SET_WEP, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298done:
Holger Schurig9012b282007-05-25 11:27:16 -0400299 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 return ret;
301}
302
David Woodhouse4f59abf2007-12-18 00:47:17 -0500303int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv, uint16_t cmd_action,
304 uint16_t *enable)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200305{
David Woodhouse4f59abf2007-12-18 00:47:17 -0500306 struct cmd_ds_802_11_enable_rsn cmd;
307 int ret;
Dan Williams90a42212007-05-25 23:01:24 -0400308
309 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200310
David Woodhouse4f59abf2007-12-18 00:47:17 -0500311 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
312 cmd.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)
David Woodhouse4f59abf2007-12-18 00:47:17 -0500316 cmd.enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400317 else
David Woodhouse4f59abf2007-12-18 00:47:17 -0500318 cmd.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
David Woodhouse4f59abf2007-12-18 00:47:17 -0500322 ret = lbs_cmd_with_response(priv, CMD_802_11_ENABLE_RSN, &cmd);
323 if (!ret && cmd_action == CMD_ACT_GET)
324 *enable = le16_to_cpu(cmd.enable);
325
326 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
327 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328}
329
330
Holger Schurig3a188642007-11-26 10:07:14 +0100331static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
332{
333 ssize_t pos = 0;
334 struct mrvlietypesheader *tlv_h;
335 while (pos < size) {
336 u16 length;
337 tlv_h = (struct mrvlietypesheader *) tlv;
338 if (tlv_h->len == 0)
339 return pos;
340 length = le16_to_cpu(tlv_h->len) +
341 sizeof(struct mrvlietypesheader);
342 pos += length;
343 tlv += length;
344 }
345 return pos;
346}
347
348
349static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
350 struct cmd_ds_command *cmd, u16 cmd_action,
351 void *pdata_buf)
352{
353 struct cmd_ds_802_11_subscribe_event *events =
354 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
355
356 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
357 * for various Marvell TLVs */
358
359 lbs_deb_enter(LBS_DEB_CMD);
360
361 cmd->size = cpu_to_le16(sizeof(*events)
362 - sizeof(events->tlv)
363 + S_DS_GEN);
364 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
365 if (cmd_action == CMD_ACT_GET) {
366 cmd->params.subscribe_event.events = 0;
367 } else {
368 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
369 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
370 cmd->params.subscribe_event.events = events->events;
371 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
372 }
373
374 lbs_deb_leave(LBS_DEB_CMD);
375}
376
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400378 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400380 lbs_deb_enter(LBS_DEB_CMD);
381
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200382 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400383 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
386 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400387 }
388 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
390 }
391
392 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400393 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394 pkeyparamset->keylen = cpu_to_le16(pkey->len);
395 memcpy(pkeyparamset->key, pkey->key, pkey->len);
396 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
397 + sizeof(pkeyparamset->keyinfo)
398 + sizeof(pkeyparamset->keylen)
399 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400400 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401}
402
Holger Schurig69f90322007-11-23 15:43:44 +0100403static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 struct cmd_ds_command *cmd,
405 u16 cmd_action,
406 u32 cmd_oid, void *pdata_buf)
407{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200408 struct cmd_ds_802_11_key_material *pkeymaterial =
409 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400410 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411 int ret = 0;
412 int index = 0;
413
Holger Schurig9012b282007-05-25 11:27:16 -0400414 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415
Dan Williams0aef64d2007-08-02 11:31:18 -0400416 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200417 pkeymaterial->action = cpu_to_le16(cmd_action);
418
Dan Williams0aef64d2007-08-02 11:31:18 -0400419 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400420 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200421 ret = 0;
422 goto done;
423 }
424
425 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
426
Dan Williams90a42212007-05-25 23:01:24 -0400427 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200428 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400429 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430 index++;
431 }
432
Dan Williams90a42212007-05-25 23:01:24 -0400433 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400435 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200436 index++;
437 }
438
439 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400440 + sizeof (pkeymaterial->action)
441 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442
443 ret = 0;
444
445done:
Holger Schurig9012b282007-05-25 11:27:16 -0400446 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200447 return ret;
448}
449
Holger Schurig69f90322007-11-23 15:43:44 +0100450static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200451 struct cmd_ds_command *cmd, int cmd_action)
452{
453 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
454
Holger Schurig8ff12da2007-08-02 11:54:31 -0400455 lbs_deb_enter(LBS_DEB_CMD);
456
Dan Williams0aef64d2007-08-02 11:31:18 -0400457 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
459 reset->action = cpu_to_le16(cmd_action);
460
Holger Schurig8ff12da2007-08-02 11:54:31 -0400461 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200462 return 0;
463}
464
Holger Schurig69f90322007-11-23 15:43:44 +0100465static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200466 struct cmd_ds_command *cmd)
467{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400468 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400469 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470 cmd->size =
471 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
472
Holger Schurig8ff12da2007-08-02 11:54:31 -0400473 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474 return 0;
475}
476
Holger Schurig69f90322007-11-23 15:43:44 +0100477static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200478 struct cmd_ds_command *cmd)
479{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400480 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400481 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400483 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200484
Holger Schurig8ff12da2007-08-02 11:54:31 -0400485 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486 return 0;
487}
488
Holger Schurig69f90322007-11-23 15:43:44 +0100489static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 struct cmd_ds_command *cmd,
491 int cmd_action,
492 int cmd_oid, void *pdata_buf)
493{
494 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495 u8 ucTemp;
496
Holger Schurig9012b282007-05-25 11:27:16 -0400497 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498
Holger Schurig9012b282007-05-25 11:27:16 -0400499 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500
Dan Williams0aef64d2007-08-02 11:31:18 -0400501 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400502 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503
504 switch (cmd_oid) {
505 case OID_802_11_INFRASTRUCTURE_MODE:
506 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400507 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400508 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
509 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000510 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400511 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400513 } else {
514 /* Infra and Auto modes */
515 ucTemp = SNMP_MIB_VALUE_INFRA;
516 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200517
518 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
519
520 break;
521 }
522
523 case OID_802_11D_ENABLE:
524 {
525 u32 ulTemp;
526
Dan Williams0aef64d2007-08-02 11:31:18 -0400527 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528
Dan Williams0aef64d2007-08-02 11:31:18 -0400529 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000530 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
531 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200532 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400533 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200534 cpu_to_le16((u16) ulTemp);
535 }
536 break;
537 }
538
539 case OID_802_11_FRAGMENTATION_THRESHOLD:
540 {
541 u32 ulTemp;
542
Dan Williams0aef64d2007-08-02 11:31:18 -0400543 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544
Dan Williams0aef64d2007-08-02 11:31:18 -0400545 if (cmd_action == CMD_ACT_GET) {
546 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
547 } else if (cmd_action == CMD_ACT_SET) {
548 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400549 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400551 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552 cpu_to_le16((u16) ulTemp);
553
554 }
555
556 break;
557 }
558
559 case OID_802_11_RTS_THRESHOLD:
560 {
561
562 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000563 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564
Dan Williams0aef64d2007-08-02 11:31:18 -0400565 if (cmd_action == CMD_ACT_GET) {
566 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
567 } else if (cmd_action == CMD_ACT_SET) {
568 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400569 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
570 ulTemp = *((u32 *)pdata_buf);
571 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572 cpu_to_le16((u16) ulTemp);
573
574 }
575 break;
576 }
577 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400578 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579
Dan Williams0aef64d2007-08-02 11:31:18 -0400580 if (cmd_action == CMD_ACT_GET) {
581 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
582 } else if (cmd_action == CMD_ACT_SET) {
583 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200584 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400585 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000586 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200587 }
588
589 break;
590 default:
591 break;
592 }
593
Holger Schurig9012b282007-05-25 11:27:16 -0400594 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400596 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
597 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200598
Holger Schurig9012b282007-05-25 11:27:16 -0400599 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400600 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400601 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
602 le16_to_cpu(pSNMPMIB->bufsize),
603 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200604
Holger Schurig9012b282007-05-25 11:27:16 -0400605 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200606 return 0;
607}
608
Holger Schurig69f90322007-11-23 15:43:44 +0100609static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610 struct cmd_ds_command *cmd,
611 u16 cmd_action, void *pdata_buf)
612{
613
614 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
615
Holger Schurig9012b282007-05-25 11:27:16 -0400616 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617
618 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400619 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400620 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400621 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622
David Woodhouse981f1872007-05-25 23:36:54 -0400623 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
624 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
625 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626
627 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400628 case CMD_ACT_TX_POWER_OPT_GET:
629 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 prtp->currentlevel = 0;
631 break;
632
Dan Williams0aef64d2007-08-02 11:31:18 -0400633 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
634 prtp->action = cpu_to_le16(CMD_ACT_SET);
635 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636 break;
637
Dan Williams0aef64d2007-08-02 11:31:18 -0400638 case CMD_ACT_TX_POWER_OPT_SET_MID:
639 prtp->action = cpu_to_le16(CMD_ACT_SET);
640 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641 break;
642
Dan Williams0aef64d2007-08-02 11:31:18 -0400643 case CMD_ACT_TX_POWER_OPT_SET_LOW:
644 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200645 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
646 break;
647 }
Holger Schurig9012b282007-05-25 11:27:16 -0400648
649 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650 return 0;
651}
652
Holger Schurig69f90322007-11-23 15:43:44 +0100653static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400654 struct cmd_ds_command *cmd,
655 u16 cmd_action, void *pdata_buf)
656{
657 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
658
659 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
660 cmd->size =
661 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
662 S_DS_GEN);
663
664 monitor->action = cpu_to_le16(cmd_action);
665 if (cmd_action == CMD_ACT_SET) {
666 monitor->mode =
667 cpu_to_le16((u16) (*(u32 *) pdata_buf));
668 }
669
670 return 0;
671}
672
Holger Schurig69f90322007-11-23 15:43:44 +0100673static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200674 struct cmd_ds_command *cmd,
675 u16 cmd_action)
676{
677 struct cmd_ds_802_11_rate_adapt_rateset
678 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200679
Holger Schurig8ff12da2007-08-02 11:54:31 -0400680 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200681 cmd->size =
682 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
683 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400684 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200685
David Woodhouse981f1872007-05-25 23:36:54 -0400686 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000687 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
688 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200689
Holger Schurig9012b282007-05-25 11:27:16 -0400690 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200691 return 0;
692}
693
Dan Williams8e3c91b2007-12-11 15:50:59 -0500694/**
695 * @brief Get the current data rate
696 *
697 * @param priv A pointer to struct lbs_private structure
698 *
699 * @return The data rate on success, error on failure
700 */
701int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200702{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500703 struct cmd_ds_802_11_data_rate cmd;
704 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705
Holger Schurig9012b282007-05-25 11:27:16 -0400706 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200707
Dan Williams8e3c91b2007-12-11 15:50:59 -0500708 memset(&cmd, 0, sizeof(cmd));
709 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
710 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711
David Woodhouse689442d2007-12-12 16:00:42 -0500712 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500713 if (ret)
714 goto out;
715
716 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
717
718 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
719 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
720
721out:
722 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
723 return ret;
724}
725
726/**
727 * @brief Set the data rate
728 *
729 * @param priv A pointer to struct lbs_private structure
730 * @param rate The desired data rate, or 0 to clear a locked rate
731 *
732 * @return 0 on success, error on failure
733 */
734int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
735{
736 struct cmd_ds_802_11_data_rate cmd;
737 int ret = 0;
738
739 lbs_deb_enter(LBS_DEB_CMD);
740
741 memset(&cmd, 0, sizeof(cmd));
742 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
743
744 if (rate > 0) {
745 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
746 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
747 if (cmd.rates[0] == 0) {
748 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
749 " 0x%02X\n", rate);
750 ret = 0;
751 goto out;
752 }
753 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
754 } else {
755 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400756 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200757 }
758
David Woodhouse689442d2007-12-12 16:00:42 -0500759 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500760 if (ret)
761 goto out;
762
763 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
764
765 /* FIXME: get actual rates FW can do if this command actually returns
766 * all data rates supported.
767 */
768 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
769 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
770
771out:
772 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
773 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200774}
775
Holger Schurig69f90322007-11-23 15:43:44 +0100776static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777 struct cmd_ds_command *cmd,
778 u16 cmd_action)
779{
780 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200781
Holger Schurig8ff12da2007-08-02 11:54:31 -0400782 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400783 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200784 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400785 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200786
Holger Schurig8ff12da2007-08-02 11:54:31 -0400787 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200788 pMCastAdr->action = cpu_to_le16(cmd_action);
789 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000790 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
791 memcpy(pMCastAdr->maclist, priv->multicastlist,
792 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793
Holger Schurig8ff12da2007-08-02 11:54:31 -0400794 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200795 return 0;
796}
797
Dan Williams2dd4b262007-12-11 16:54:15 -0500798/**
799 * @brief Get the radio channel
800 *
801 * @param priv A pointer to struct lbs_private structure
802 *
803 * @return The channel on success, error on failure
804 */
805int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806{
Dan Williams2dd4b262007-12-11 16:54:15 -0500807 struct cmd_ds_802_11_rf_channel cmd;
808 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200809
Holger Schurig8ff12da2007-08-02 11:54:31 -0400810 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811
Dan Williams2dd4b262007-12-11 16:54:15 -0500812 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
813 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200814
David Woodhouse689442d2007-12-12 16:00:42 -0500815 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500816 if (ret)
817 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818
Dan Williamscb182a62007-12-11 17:35:51 -0500819 ret = le16_to_cpu(cmd.channel);
820 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500821
822out:
823 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
824 return ret;
825}
826
827/**
828 * @brief Set the radio channel
829 *
830 * @param priv A pointer to struct lbs_private structure
831 * @param channel The desired channel, or 0 to clear a locked channel
832 *
833 * @return 0 on success, error on failure
834 */
835int lbs_set_channel(struct lbs_private *priv, u8 channel)
836{
837 struct cmd_ds_802_11_rf_channel cmd;
838 u8 old_channel = priv->curbssparams.channel;
839 int ret = 0;
840
841 lbs_deb_enter(LBS_DEB_CMD);
842
843 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
844 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
845 cmd.channel = cpu_to_le16(channel);
846
David Woodhouse689442d2007-12-12 16:00:42 -0500847 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500848 if (ret)
849 goto out;
850
Dan Williamscb182a62007-12-11 17:35:51 -0500851 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
852 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
853 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500854
855out:
856 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
857 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200858}
859
Holger Schurig69f90322007-11-23 15:43:44 +0100860static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200861 struct cmd_ds_command *cmd)
862{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200863
Holger Schurig8ff12da2007-08-02 11:54:31 -0400864 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400865 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400866 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400867 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200868
869 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000870 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
871 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
872 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
873 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
874 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
875 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200876
Holger Schurig8ff12da2007-08-02 11:54:31 -0400877 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200878 return 0;
879}
880
Holger Schurig69f90322007-11-23 15:43:44 +0100881static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882 struct cmd_ds_command *cmdptr,
883 u8 cmd_action, void *pdata_buf)
884{
Holger Schurig10078322007-11-15 18:05:47 -0500885 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200886
Holger Schurig9012b282007-05-25 11:27:16 -0400887 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
Holger Schurig10078322007-11-15 18:05:47 -0500889 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200890
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000891 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400892 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200893 {
894 struct cmd_ds_mac_reg_access *macreg;
895
896 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400897 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
898 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200899 macreg =
900 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
901 macreg;
902
903 macreg->action = cpu_to_le16(cmd_action);
904 macreg->offset = cpu_to_le16((u16) offval->offset);
905 macreg->value = cpu_to_le32(offval->value);
906
907 break;
908 }
909
Dan Williams0aef64d2007-08-02 11:31:18 -0400910 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200911 {
912 struct cmd_ds_bbp_reg_access *bbpreg;
913
914 cmdptr->size =
915 cpu_to_le16(sizeof
916 (struct cmd_ds_bbp_reg_access)
917 + S_DS_GEN);
918 bbpreg =
919 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
920 bbpreg;
921
922 bbpreg->action = cpu_to_le16(cmd_action);
923 bbpreg->offset = cpu_to_le16((u16) offval->offset);
924 bbpreg->value = (u8) offval->value;
925
926 break;
927 }
928
Dan Williams0aef64d2007-08-02 11:31:18 -0400929 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200930 {
931 struct cmd_ds_rf_reg_access *rfreg;
932
933 cmdptr->size =
934 cpu_to_le16(sizeof
935 (struct cmd_ds_rf_reg_access) +
936 S_DS_GEN);
937 rfreg =
938 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
939 rfreg;
940
941 rfreg->action = cpu_to_le16(cmd_action);
942 rfreg->offset = cpu_to_le16((u16) offval->offset);
943 rfreg->value = (u8) offval->value;
944
945 break;
946 }
947
948 default:
949 break;
950 }
951
Holger Schurig9012b282007-05-25 11:27:16 -0400952 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200953 return 0;
954}
955
Holger Schurig69f90322007-11-23 15:43:44 +0100956static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200957 struct cmd_ds_command *cmd,
958 u16 cmd_action)
959{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960
Holger Schurig8ff12da2007-08-02 11:54:31 -0400961 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400962 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400963 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200964 S_DS_GEN);
965 cmd->result = 0;
966
967 cmd->params.macadd.action = cpu_to_le16(cmd_action);
968
Dan Williams0aef64d2007-08-02 11:31:18 -0400969 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000971 priv->current_addr, ETH_ALEN);
972 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973 }
974
Holger Schurig8ff12da2007-08-02 11:54:31 -0400975 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976 return 0;
977}
978
Holger Schurig69f90322007-11-23 15:43:44 +0100979static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980 struct cmd_ds_command *cmd,
981 int cmd_action, void *pdata_buf)
982{
Holger Schurig10078322007-11-15 18:05:47 -0500983 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200984
Holger Schurig9012b282007-05-25 11:27:16 -0400985 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986
Dan Williams0aef64d2007-08-02 11:31:18 -0400987 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400988 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
989 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200990 cmd->result = 0;
991
992 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
993 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
994 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
995 cmd->params.rdeeprom.value = 0;
996
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998 return 0;
999}
1000
Holger Schurig69f90322007-11-23 15:43:44 +01001001static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 struct cmd_ds_command *cmd,
1003 u16 cmd_action, void *pdata_buf)
1004{
1005 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001006 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001007
Dan Williams0aef64d2007-08-02 11:31:18 -04001008 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001009 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010 cmd->result = 0;
1011 bt_access->action = cpu_to_le16(cmd_action);
1012
1013 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001014 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001015 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001016 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001017 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001018 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001020 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001022 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001023 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1024 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001025 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001026 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001027 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001028 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1029 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001030 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001031 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001032 default:
1033 break;
1034 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001035 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001036 return 0;
1037}
1038
Holger Schurig69f90322007-11-23 15:43:44 +01001039static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001040 struct cmd_ds_command *cmd,
1041 u16 cmd_action, void *pdata_buf)
1042{
1043 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001044 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001045
Dan Williams0aef64d2007-08-02 11:31:18 -04001046 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001047 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048 cmd->result = 0;
1049
1050 if (pdata_buf)
1051 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1052 else
1053 memset(fwt_access, 0, sizeof(*fwt_access));
1054
1055 fwt_access->action = cpu_to_le16(cmd_action);
1056
Holger Schurig8ff12da2007-08-02 11:54:31 -04001057 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058 return 0;
1059}
1060
David Woodhouse301eacb2007-12-11 15:23:59 -05001061int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1062 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001063{
David Woodhouse301eacb2007-12-11 15:23:59 -05001064 int ret;
1065
Holger Schurig8ff12da2007-08-02 11:54:31 -04001066 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067
David Woodhouse301eacb2007-12-11 15:23:59 -05001068 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001069 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001070 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071
David Woodhouse301eacb2007-12-11 15:23:59 -05001072 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001073
David Woodhouse689442d2007-12-12 16:00:42 -05001074 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075
Holger Schurig8ff12da2007-08-02 11:54:31 -04001076 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001077 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078}
David Woodhouse301eacb2007-12-11 15:23:59 -05001079EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080
David Woodhouse86062132007-12-13 00:32:36 -05001081int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001082{
1083 struct cmd_ds_mesh_config cmd;
1084
1085 memset(&cmd, 0, sizeof(cmd));
1086 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001087 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001088 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001089 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001090
David Woodhouse23a397a2007-12-11 18:56:42 -05001091 if (enable) {
1092 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1093 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1094 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001095 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001096 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001097 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001098 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001099}
1100
Brajesh Dave96287ac2007-11-20 17:44:28 -05001101static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1102 struct cmd_ds_command *cmd,
1103 u16 cmd_action)
1104{
1105 struct cmd_ds_802_11_beacon_control
1106 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001107
1108 lbs_deb_enter(LBS_DEB_CMD);
1109 cmd->size =
1110 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1111 + S_DS_GEN);
1112 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1113
1114 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001115 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1116 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001117
1118 lbs_deb_leave(LBS_DEB_CMD);
1119 return 0;
1120}
1121
David Woodhouse681ffbb2007-12-15 20:04:54 -05001122static void lbs_queue_cmd(struct lbs_private *priv,
1123 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001124{
1125 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001126 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001127
Holger Schurig8ff12da2007-08-02 11:54:31 -04001128 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001129
David Woodhousec4ab4122007-12-15 00:41:51 -05001130 if (!cmdnode) {
1131 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132 goto done;
1133 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001134 if (!cmdnode->cmdbuf->size) {
1135 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1136 goto done;
1137 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001138 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001139
1140 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001141 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001142 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001143
Dan Williams0aef64d2007-08-02 11:31:18 -04001144 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001145 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146 addtail = 0;
1147 }
1148 }
1149
David Woodhouseaa21c002007-12-08 20:04:36 +00001150 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151
David Woodhouseac472462007-12-08 00:35:00 +00001152 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001153 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001154 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001155 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156
David Woodhouseaa21c002007-12-08 20:04:36 +00001157 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158
Holger Schurig8ff12da2007-08-02 11:54:31 -04001159 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001160 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161
1162done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001163 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164}
1165
David Woodhouse18c52e72007-12-17 16:03:58 -05001166static void lbs_submit_command(struct lbs_private *priv,
1167 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168{
1169 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001170 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001171 uint16_t cmdsize;
1172 uint16_t command;
1173 int timeo = 5 * HZ;
1174 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175
Holger Schurig8ff12da2007-08-02 11:54:31 -04001176 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177
Dan Williamsddac4522007-12-11 13:49:39 -05001178 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001179
David Woodhouseaa21c002007-12-08 20:04:36 +00001180 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001181 priv->cur_cmd = cmdnode;
1182 priv->cur_cmd_retcode = 0;
1183 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184
Dan Williamsddac4522007-12-11 13:49:39 -05001185 cmdsize = le16_to_cpu(cmd->size);
1186 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001187
David Woodhouse18c52e72007-12-17 16:03:58 -05001188 /* These commands take longer */
1189 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1190 command == CMD_802_11_AUTHENTICATE)
1191 timeo = 10 * HZ;
1192
David Woodhousee1258172007-12-11 23:42:49 -05001193 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1194 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001195 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001196
Dan Williamsddac4522007-12-11 13:49:39 -05001197 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001198
David Woodhoused9896ee2007-12-15 00:09:25 -05001199 if (ret) {
1200 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001201 /* Let the timer kick in and retry, and potentially reset
1202 the whole thing if the condition persists */
1203 timeo = HZ;
1204 } else
1205 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n",
1206 command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207
1208 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001209 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210
David Woodhouse18c52e72007-12-17 16:03:58 -05001211 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001212}
1213
Holger Schurig69f90322007-11-23 15:43:44 +01001214static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215 struct cmd_ds_command *cmd)
1216{
1217 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1218
Holger Schurig9012b282007-05-25 11:27:16 -04001219 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001220
Dan Williams0aef64d2007-08-02 11:31:18 -04001221 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001222 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001223 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
Holger Schurig8ff12da2007-08-02 11:54:31 -04001225 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001226 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227
Holger Schurig9012b282007-05-25 11:27:16 -04001228 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229 return 0;
1230}
1231
1232/**
1233 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001234 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001236static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001237 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001238{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001239 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001240
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001241 if (!cmdnode)
1242 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001244 cmdnode->callback = NULL;
1245 cmdnode->callback_arg = 0;
1246
1247 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1248
1249 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1250 out:
1251 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252}
1253
Holger Schurig69f90322007-11-23 15:43:44 +01001254static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1255 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001256{
1257 unsigned long flags;
1258
David Woodhouseaa21c002007-12-08 20:04:36 +00001259 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001260 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001261 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001262}
1263
David Woodhouse183aeac2007-12-15 01:52:54 -05001264void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1265 int result)
1266{
1267 if (cmd == priv->cur_cmd)
1268 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001269
David Woodhouseae125bf2007-12-15 04:22:52 -05001270 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001271 cmd->cmdwaitqwoken = 1;
1272 wake_up_interruptible(&cmd->cmdwait_q);
1273
David Woodhousead12d0f2007-12-15 02:06:16 -05001274 if (!cmd->callback)
1275 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001276 priv->cur_cmd = NULL;
1277}
1278
Holger Schurig69f90322007-11-23 15:43:44 +01001279int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280{
1281 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001282 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001283
Holger Schurig9012b282007-05-25 11:27:16 -04001284 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285
David Woodhousea7c45892007-12-17 22:43:48 -05001286 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1287 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001288
David Woodhousea7c45892007-12-17 22:43:48 -05001289 switch (priv->preamble) {
1290 case CMD_TYPE_SHORT_PREAMBLE:
1291 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1292 break;
1293
1294 case CMD_TYPE_LONG_PREAMBLE:
1295 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1296 break;
1297
1298 case CMD_TYPE_AUTO_PREAMBLE:
1299 default:
1300 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1301 break;
1302 }
1303
1304 if (priv->radioon)
1305 cmd.control |= cpu_to_le16(TURN_ON_RF);
1306 else
1307 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1308
1309 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1310 priv->preamble);
1311
1312 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001313
Holger Schurig9012b282007-05-25 11:27:16 -04001314 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001315 return ret;
1316}
1317
Holger Schurig69f90322007-11-23 15:43:44 +01001318int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001319{
1320 int ret = 0;
1321
Holger Schurig9012b282007-05-25 11:27:16 -04001322 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001325 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001326 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001327
Holger Schurig9012b282007-05-25 11:27:16 -04001328 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001329 return ret;
1330}
1331
1332/**
1333 * @brief This function prepare the command before send to firmware.
1334 *
Holger Schurig69f90322007-11-23 15:43:44 +01001335 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001336 * @param cmd_no command number
1337 * @param cmd_action command action: GET or SET
1338 * @param wait_option wait option: wait response or not
1339 * @param cmd_oid cmd oid: treated as sub command
1340 * @param pdata_buf A pointer to informaion buffer
1341 * @return 0 or -1
1342 */
Holger Schurig69f90322007-11-23 15:43:44 +01001343int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001344 u16 cmd_no,
1345 u16 cmd_action,
1346 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1347{
1348 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001349 struct cmd_ctrl_node *cmdnode;
1350 struct cmd_ds_command *cmdptr;
1351 unsigned long flags;
1352
Holger Schurig8ff12da2007-08-02 11:54:31 -04001353 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001354
David Woodhouseaa21c002007-12-08 20:04:36 +00001355 if (!priv) {
1356 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 ret = -1;
1358 goto done;
1359 }
1360
David Woodhouseaa21c002007-12-08 20:04:36 +00001361 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001362 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 ret = -1;
1364 goto done;
1365 }
1366
Holger Schurig0d61d042007-12-05 17:58:06 +01001367 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368
1369 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001370 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001371
1372 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001373 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001374 ret = -1;
1375 goto done;
1376 }
1377
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001378 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001379
Dan Williamsddac4522007-12-11 13:49:39 -05001380 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381
Holger Schurig8ff12da2007-08-02 11:54:31 -04001382 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001383
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001384 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001385 priv->seqnum++;
1386 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001387
David Woodhouse981f1872007-05-25 23:36:54 -04001388 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001389 cmdptr->result = 0;
1390
1391 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001392 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001393 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001394 break;
1395
Dan Williams0aef64d2007-08-02 11:31:18 -04001396 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001397 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398 break;
1399
Dan Williams0aef64d2007-08-02 11:31:18 -04001400 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001401 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402 break;
1403
Dan Williams0aef64d2007-08-02 11:31:18 -04001404 case CMD_802_11_ASSOCIATE:
1405 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001406 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001407 break;
1408
Dan Williams0aef64d2007-08-02 11:31:18 -04001409 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001410 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001411 break;
1412
Dan Williams0aef64d2007-08-02 11:31:18 -04001413 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001414 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001415 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001416 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417 break;
1418
Dan Williams0aef64d2007-08-02 11:31:18 -04001419 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001420 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001421 break;
1422
Dan Williams0aef64d2007-08-02 11:31:18 -04001423 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001424 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001425 break;
1426
Dan Williams0aef64d2007-08-02 11:31:18 -04001427 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001428 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001429 break;
1430
Dan Williams0aef64d2007-08-02 11:31:18 -04001431 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001432 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 break;
1434
Dan Williams0aef64d2007-08-02 11:31:18 -04001435 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001436 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001437 cmd_action, cmd_oid, pdata_buf);
1438 break;
1439
Dan Williams0aef64d2007-08-02 11:31:18 -04001440 case CMD_MAC_REG_ACCESS:
1441 case CMD_BBP_REG_ACCESS:
1442 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001443 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001444 break;
1445
Dan Williams0aef64d2007-08-02 11:31:18 -04001446 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001447 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001448 cmd_action, pdata_buf);
1449 break;
1450
Dan Williams0aef64d2007-08-02 11:31:18 -04001451 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001452 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001453 cmdptr, cmd_action);
1454 break;
1455
Dan Williams0aef64d2007-08-02 11:31:18 -04001456 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001457 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458 break;
1459
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001460 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001461 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001462 cmd_action, pdata_buf);
1463 break;
1464
Dan Williams0aef64d2007-08-02 11:31:18 -04001465 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001466 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001467 break;
1468
Dan Williams0aef64d2007-08-02 11:31:18 -04001469 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001470 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 break;
1472
Dan Williams0aef64d2007-08-02 11:31:18 -04001473 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001474 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001475 break;
1476
Dan Williams0aef64d2007-08-02 11:31:18 -04001477 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001478 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001479 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001480 break;
1481
Dan Williams0aef64d2007-08-02 11:31:18 -04001482 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001484 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001485 break;
1486
Dan Williams0aef64d2007-08-02 11:31:18 -04001487 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001488 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001489 break;
1490
Dan Williams0aef64d2007-08-02 11:31:18 -04001491 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001492 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001493 cmd_action, pdata_buf);
1494 break;
1495
Dan Williams0aef64d2007-08-02 11:31:18 -04001496 case CMD_802_11_SET_AFC:
1497 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498
1499 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001500 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1501 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502
1503 memmove(&cmdptr->params.afc,
1504 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1505
1506 ret = 0;
1507 goto done;
1508
Dan Williams0aef64d2007-08-02 11:31:18 -04001509 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001510 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001511 cmd_no, cmd_action);
1512 break;
1513
Dan Williams0aef64d2007-08-02 11:31:18 -04001514 case CMD_802_11_TPC_CFG:
1515 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001516 cmdptr->size =
1517 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1518 S_DS_GEN);
1519
1520 memmove(&cmdptr->params.tpccfg,
1521 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1522
1523 ret = 0;
1524 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001525 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001526 {
1527 struct mrvlietypes_ledgpio *gpio =
1528 (struct mrvlietypes_ledgpio*)
1529 cmdptr->params.ledgpio.data;
1530
1531 memmove(&cmdptr->params.ledgpio,
1532 pdata_buf,
1533 sizeof(struct cmd_ds_802_11_led_ctrl));
1534
1535 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001536 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537
1538#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1539 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001540 cpu_to_le16(le16_to_cpu(gpio->header.len)
1541 + S_DS_GEN
1542 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1543 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001544
1545 ret = 0;
1546 break;
1547 }
Holger Schurig3a188642007-11-26 10:07:14 +01001548 case CMD_802_11_SUBSCRIBE_EVENT:
1549 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1550 cmd_action, pdata_buf);
1551 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001552 case CMD_802_11_PWR_CFG:
1553 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001554 cmdptr->size =
1555 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1556 S_DS_GEN);
1557 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1558 sizeof(struct cmd_ds_802_11_pwr_cfg));
1559
1560 ret = 0;
1561 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001562 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001563 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001564 break;
1565
Dan Williams0aef64d2007-08-02 11:31:18 -04001566 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001567 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001568 break;
1569
Dan Williams0aef64d2007-08-02 11:31:18 -04001570 case CMD_GET_TSF:
1571 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001572 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1573 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001574 ret = 0;
1575 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001576 case CMD_802_11_BEACON_CTRL:
1577 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1578 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001579 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001580 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001581 ret = -1;
1582 break;
1583 }
1584
1585 /* return error, since the command preparation failed */
1586 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001587 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001588 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001589 ret = -1;
1590 goto done;
1591 }
1592
1593 cmdnode->cmdwaitqwoken = 0;
1594
David Woodhouse681ffbb2007-12-15 20:04:54 -05001595 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001596 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001597
Dan Williams0aef64d2007-08-02 11:31:18 -04001598 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001599 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001600 might_sleep();
1601 wait_event_interruptible(cmdnode->cmdwait_q,
1602 cmdnode->cmdwaitqwoken);
1603 }
1604
David Woodhouseaa21c002007-12-08 20:04:36 +00001605 spin_lock_irqsave(&priv->driver_lock, flags);
1606 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001607 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001608 priv->cur_cmd_retcode);
1609 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001610 ret = -1;
1611 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001612 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001613
1614done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001615 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001616 return ret;
1617}
Holger Schurig10078322007-11-15 18:05:47 -05001618EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001619
1620/**
1621 * @brief This function allocates the command buffer and link
1622 * it to command free queue.
1623 *
Holger Schurig69f90322007-11-23 15:43:44 +01001624 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001625 * @return 0 or -1
1626 */
Holger Schurig69f90322007-11-23 15:43:44 +01001627int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001628{
1629 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001630 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001631 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001632 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001633
Holger Schurig8ff12da2007-08-02 11:54:31 -04001634 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001635
Dan Williamsddac4522007-12-11 13:49:39 -05001636 /* Allocate and initialize the command array */
1637 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1638 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001639 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001640 ret = -1;
1641 goto done;
1642 }
Dan Williamsddac4522007-12-11 13:49:39 -05001643 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001644
Dan Williamsddac4522007-12-11 13:49:39 -05001645 /* Allocate and initialize each command buffer in the command array */
1646 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1647 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1648 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001649 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001650 ret = -1;
1651 goto done;
1652 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001653 }
1654
Dan Williamsddac4522007-12-11 13:49:39 -05001655 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1656 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1657 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001658 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001659 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001660
1661done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001662 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663 return ret;
1664}
1665
1666/**
1667 * @brief This function frees the command buffer.
1668 *
Holger Schurig69f90322007-11-23 15:43:44 +01001669 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001670 * @return 0 or -1
1671 */
Holger Schurig69f90322007-11-23 15:43:44 +01001672int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001673{
Dan Williamsddac4522007-12-11 13:49:39 -05001674 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001675 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676
Holger Schurig8ff12da2007-08-02 11:54:31 -04001677 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001678
1679 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001680 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001681 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001682 goto done;
1683 }
1684
Dan Williamsddac4522007-12-11 13:49:39 -05001685 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001686
1687 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001688 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1689 if (cmdarray[i].cmdbuf) {
1690 kfree(cmdarray[i].cmdbuf);
1691 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001692 }
1693 }
1694
1695 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001696 if (priv->cmd_array) {
1697 kfree(priv->cmd_array);
1698 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699 }
1700
1701done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001702 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001703 return 0;
1704}
1705
1706/**
1707 * @brief This function gets a free command node if available in
1708 * command free queue.
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 cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1712 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001713static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001714{
1715 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001716 unsigned long flags;
1717
Holger Schurig8ff12da2007-08-02 11:54:31 -04001718 lbs_deb_enter(LBS_DEB_HOST);
1719
David Woodhouseaa21c002007-12-08 20:04:36 +00001720 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001721 return NULL;
1722
David Woodhouseaa21c002007-12-08 20:04:36 +00001723 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724
David Woodhouseaa21c002007-12-08 20:04:36 +00001725 if (!list_empty(&priv->cmdfreeq)) {
1726 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001727 struct cmd_ctrl_node, list);
1728 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001729 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001730 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001731 tempnode = NULL;
1732 }
1733
David Woodhouseaa21c002007-12-08 20:04:36 +00001734 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735
Holger Schurig8ff12da2007-08-02 11:54:31 -04001736 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001737 return tempnode;
1738}
1739
1740/**
1741 * @brief This function cleans command node.
1742 *
1743 * @param ptempnode A pointer to cmdCtrlNode structure
1744 * @return n/a
1745 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001746
1747/**
1748 * @brief This function initializes the command node.
1749 *
Holger Schurig69f90322007-11-23 15:43:44 +01001750 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001751 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 * @param pdata_buf A pointer to informaion buffer
1753 * @return 0 or -1
1754 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001755static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1756 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001757 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001759 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001760
1761 if (!ptempnode)
1762 return;
1763
David Woodhouse17230472007-12-07 15:13:05 +00001764 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001765 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001766
Holger Schurig8ff12da2007-08-02 11:54:31 -04001767 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001768}
1769
1770/**
1771 * @brief This function executes next command in command
1772 * pending queue. It will put fimware back to PS mode
1773 * if applicable.
1774 *
Holger Schurig69f90322007-11-23 15:43:44 +01001775 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001776 * @return 0 or -1
1777 */
Holger Schurig69f90322007-11-23 15:43:44 +01001778int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001780 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001781 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001782 unsigned long flags;
1783 int ret = 0;
1784
Holger Schurig8ff12da2007-08-02 11:54:31 -04001785 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001786 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001787 // data packet is received
1788 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789
David Woodhouseaa21c002007-12-08 20:04:36 +00001790 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001791
David Woodhouseaa21c002007-12-08 20:04:36 +00001792 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001793 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001794 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795 ret = -1;
1796 goto done;
1797 }
1798
David Woodhouseaa21c002007-12-08 20:04:36 +00001799 if (!list_empty(&priv->cmdpendingq)) {
1800 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001801 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001802 }
1803
David Woodhouseaa21c002007-12-08 20:04:36 +00001804 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001805
1806 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001807 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001808
Dan Williamsddac4522007-12-11 13:49:39 -05001809 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001810 if ((priv->psstate == PS_STATE_SLEEP) ||
1811 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001812 lbs_deb_host(
1813 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001814 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001815 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816 ret = -1;
1817 goto done;
1818 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001819 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001820 "0x%04x in psstate %d\n",
1821 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001822 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001823 /*
1824 * 1. Non-PS command:
1825 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001826 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001827 * 2. PS command but not Exit_PS:
1828 * Ignore it.
1829 * 3. PS command Exit_PS:
1830 * Set needtowakeup to TRUE if current state is SLEEP,
1831 * otherwise send this command down to firmware
1832 * immediately.
1833 */
Dan Williamsddac4522007-12-11 13:49:39 -05001834 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001835 /* Prepare to send Exit PS,
1836 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001837 if ((priv->psstate == PS_STATE_SLEEP)
1838 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001839 ) {
1840 /* w/ new scheme, it will not reach here.
1841 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001842 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001843 } else
Holger Schurig10078322007-11-15 18:05:47 -05001844 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001845
1846 ret = 0;
1847 goto done;
1848 } else {
1849 /*
1850 * PS command. Ignore it if it is not Exit_PS.
1851 * otherwise send it down immediately.
1852 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001853 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001854
Holger Schurig8ff12da2007-08-02 11:54:31 -04001855 lbs_deb_host(
1856 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001857 psm->action);
1858 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001859 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001860 lbs_deb_host(
1861 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001862 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001863 spin_lock_irqsave(&priv->driver_lock, flags);
1864 lbs_complete_command(priv, cmdnode, 0);
1865 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001866
1867 ret = 0;
1868 goto done;
1869 }
1870
David Woodhouseaa21c002007-12-08 20:04:36 +00001871 if ((priv->psstate == PS_STATE_SLEEP) ||
1872 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001873 lbs_deb_host(
1874 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001875 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001876 spin_lock_irqsave(&priv->driver_lock, flags);
1877 lbs_complete_command(priv, cmdnode, 0);
1878 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001879 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001880
1881 ret = 0;
1882 goto done;
1883 }
1884
Holger Schurig8ff12da2007-08-02 11:54:31 -04001885 lbs_deb_host(
1886 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001887 }
1888 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001889 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001890 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001891 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001892 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001893 } else {
1894 /*
1895 * check if in power save mode, if yes, put the device back
1896 * to PS mode
1897 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001898 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1899 (priv->psstate == PS_STATE_FULL_POWER) &&
1900 ((priv->connect_status == LBS_CONNECTED) ||
1901 (priv->mesh_connect_status == LBS_CONNECTED))) {
1902 if (priv->secinfo.WPAenabled ||
1903 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001904 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001905 if (priv->wpa_mcast_key.len ||
1906 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001907 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001908 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1909 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001910 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001911 }
1912 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001913 lbs_deb_host(
1914 "EXEC_NEXT_CMD: cmdpendingq empty, "
1915 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001916 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001917 }
1918 }
1919 }
1920
1921 ret = 0;
1922done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001923 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001924 return ret;
1925}
1926
Holger Schurig69f90322007-11-23 15:43:44 +01001927void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001928{
1929 union iwreq_data iwrq;
1930 u8 buf[50];
1931
Holger Schurig8ff12da2007-08-02 11:54:31 -04001932 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001933
1934 memset(&iwrq, 0, sizeof(union iwreq_data));
1935 memset(buf, 0, sizeof(buf));
1936
1937 snprintf(buf, sizeof(buf) - 1, "%s", str);
1938
1939 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1940
1941 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001942 lbs_deb_wext("event indication string %s\n", (char *)buf);
1943 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1944 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001945
Holger Schurig634b8f42007-05-25 13:05:16 -04001946 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001947
Holger Schurig8ff12da2007-08-02 11:54:31 -04001948 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001949}
1950
Holger Schurig69f90322007-11-23 15:43:44 +01001951static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952{
1953 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954 int ret = 0;
1955
Holger Schurig8ff12da2007-08-02 11:54:31 -04001956 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001957
Holger Schurig8ff12da2007-08-02 11:54:31 -04001958 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001959 size);
1960
Holger Schurig8ff12da2007-08-02 11:54:31 -04001961 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001962
Holger Schurig208fdd22007-05-25 12:17:06 -04001963 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964
David Woodhouseaa21c002007-12-08 20:04:36 +00001965 spin_lock_irqsave(&priv->driver_lock, flags);
1966 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001967 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001968 priv->intcounter, priv->currenttxskb);
1969 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970
1971 if (ret) {
1972 lbs_pr_alert(
1973 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1974 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001975 spin_lock_irqsave(&priv->driver_lock, flags);
1976 if (!priv->intcounter) {
1977 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001978 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001979 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001980 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001981 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001982 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983
Holger Schurig8ff12da2007-08-02 11:54:31 -04001984 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001985 }
1986
Holger Schurig8ff12da2007-08-02 11:54:31 -04001987 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001988 return ret;
1989}
1990
Holger Schurig69f90322007-11-23 15:43:44 +01001991void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001993 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001994
1995 /*
1996 * PS is currently supported only in Infrastructure mode
1997 * Remove this check if it is to be supported in IBSS mode also
1998 */
1999
Holger Schurig10078322007-11-15 18:05:47 -05002000 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002001 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002002
Holger Schurig8ff12da2007-08-02 11:54:31 -04002003 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002004}
2005
2006/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002007 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002008 *
Holger Schurig69f90322007-11-23 15:43:44 +01002009 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002010 * @param wait_option wait response or not
2011 * @return n/a
2012 */
Holger Schurig69f90322007-11-23 15:43:44 +01002013void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002014{
David Woodhouse981f1872007-05-25 23:36:54 -04002015 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002016
Holger Schurig8ff12da2007-08-02 11:54:31 -04002017 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002018
Holger Schurig10078322007-11-15 18:05:47 -05002019 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002020
Holger Schurig10078322007-11-15 18:05:47 -05002021 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002022 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 wait_option, 0, &Localpsmode);
2024
Holger Schurig8ff12da2007-08-02 11:54:31 -04002025 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002026}
2027
2028/**
2029 * @brief This function checks condition and prepares to
2030 * send sleep confirm command to firmware if ok.
2031 *
Holger Schurig69f90322007-11-23 15:43:44 +01002032 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002033 * @param psmode Power Saving mode
2034 * @return n/a
2035 */
Holger Schurig69f90322007-11-23 15:43:44 +01002036void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002037{
2038 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002039 u8 allowed = 1;
2040
Holger Schurig8ff12da2007-08-02 11:54:31 -04002041 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002042
Holger Schurig634b8f42007-05-25 13:05:16 -04002043 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002044 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002045 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046 }
2047
David Woodhouseaa21c002007-12-08 20:04:36 +00002048 spin_lock_irqsave(&priv->driver_lock, flags);
2049 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002050 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002051 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002053 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002055 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002056 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002057 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002058
2059 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002060 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002061 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002062 sizeof(struct PS_CMD_ConfirmSleep));
2063 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002064 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002065 }
2066
Holger Schurig8ff12da2007-08-02 11:54:31 -04002067 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002068}
Holger Schurig675787e2007-12-05 17:58:11 +01002069
2070
2071/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002072 * @brief Simple callback that copies response back into command
2073 *
2074 * @param priv A pointer to struct lbs_private structure
2075 * @param extra A pointer to the original command structure for which
2076 * 'resp' is a response
2077 * @param resp A pointer to the command response
2078 *
2079 * @return 0 on success, error on failure
2080 */
2081int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002082 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002083{
2084 struct cmd_header *buf = (void *)extra;
2085 uint16_t copy_len;
2086
2087 lbs_deb_enter(LBS_DEB_CMD);
2088
2089 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2090 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002091 "copy back buffer was %u bytes\n", copy_len,
2092 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002093 memcpy(buf, resp, copy_len);
2094
2095 lbs_deb_leave(LBS_DEB_CMD);
2096 return 0;
2097}
David Woodhouse689442d2007-12-12 16:00:42 -05002098EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002099
David Woodhouse3399ea52007-12-15 03:09:33 -05002100struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2101 struct cmd_header *in_cmd, int in_cmd_size,
2102 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2103 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002104{
Holger Schurig675787e2007-12-05 17:58:11 +01002105 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002106
2107 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002108
David Woodhouseaa21c002007-12-08 20:04:36 +00002109 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002110 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002111 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002112 goto done;
2113 }
2114
2115 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002116 if (cmdnode == NULL) {
2117 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2118
2119 /* Wake up main thread to execute next command */
2120 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002121 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002122 goto done;
2123 }
2124
David Woodhouse448a51a2007-12-08 00:59:54 +00002125 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002126 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002127
Dan Williams7ad994d2007-12-11 12:33:30 -05002128 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002129 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002130
Holger Schurig675787e2007-12-05 17:58:11 +01002131 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002132 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002133 cmdnode->cmdbuf->command = cpu_to_le16(command);
2134 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2135 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2136 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002137
2138 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2139
2140 /* here was the big old switch() statement, which is now obsolete,
2141 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2142
2143 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002144 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002145 wake_up_interruptible(&priv->waitq);
2146
David Woodhouse3399ea52007-12-15 03:09:33 -05002147 done:
2148 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2149 return cmdnode;
2150}
2151
2152int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2153 struct cmd_header *in_cmd, int in_cmd_size,
2154 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2155 unsigned long callback_arg)
2156{
2157 struct cmd_ctrl_node *cmdnode;
2158 unsigned long flags;
2159 int ret = 0;
2160
2161 lbs_deb_enter(LBS_DEB_HOST);
2162
2163 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2164 callback, callback_arg);
2165 if (IS_ERR(cmdnode)) {
2166 ret = PTR_ERR(cmdnode);
2167 goto done;
2168 }
2169
Holger Schurig675787e2007-12-05 17:58:11 +01002170 might_sleep();
2171 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2172
David Woodhouseaa21c002007-12-08 20:04:36 +00002173 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002174 ret = cmdnode->result;
2175 if (ret)
2176 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2177 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002178
David Woodhousead12d0f2007-12-15 02:06:16 -05002179 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002180 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002181
2182done:
2183 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2184 return ret;
2185}
Dan Williams14e865b2007-12-10 15:11:23 -05002186EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002187
2188