blob: 3d9ad0ec9542b75e4deef4fee8727a08f15289ef [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
Holger Schurig69f90322007-11-23 15:43:44 +0100243static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200244 struct cmd_ds_command *cmd,
245 u32 cmd_act,
246 void * pdata_buf)
247{
248 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200249 int ret = 0;
250 struct assoc_request * assoc_req = pdata_buf;
251
Holger Schurig9012b282007-05-25 11:27:16 -0400252 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200253
Dan Williams0aef64d2007-08-02 11:31:18 -0400254 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400255 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256
Dan Williams0aef64d2007-08-02 11:31:18 -0400257 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200258 int i;
259
260 if (!assoc_req) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500261 lbs_deb_cmd("Invalid association request!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200262 ret = -1;
263 goto done;
264 }
265
Dan Williams0aef64d2007-08-02 11:31:18 -0400266 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267
268 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400269 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400270 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200271
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272 /* Copy key types and material to host command structure */
273 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400274 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200275
276 switch (pkey->len) {
277 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200278 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200279 memmove(&wep->keymaterial[i], pkey->key,
280 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400281 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200282 break;
283 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200284 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200285 memmove(&wep->keymaterial[i], pkey->key,
286 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400287 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200288 break;
289 case 0:
290 break;
291 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400292 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200293 i, pkey->len);
294 ret = -1;
295 goto done;
296 break;
297 }
298 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400299 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400301 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200302
303 /* default tx key index */
David Woodhouseaa21c002007-12-08 20:04:36 +0000304 wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400305 (u32)CMD_WEP_KEY_INDEX_MASK));
David Woodhouseaa21c002007-12-08 20:04:36 +0000306 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 }
308
309 ret = 0;
310
311done:
Holger Schurig9012b282007-05-25 11:27:16 -0400312 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200313 return ret;
314}
315
Holger Schurig69f90322007-11-23 15:43:44 +0100316static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200317 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400318 u16 cmd_action,
319 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200320{
321 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400322 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400323
324 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200325
Dan Williams0aef64d2007-08-02 11:31:18 -0400326 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400327 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400329
Dan Williams0aef64d2007-08-02 11:31:18 -0400330 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400331 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400332 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400333 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400334 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400335 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200336 }
337
Dan Williams90a42212007-05-25 23:01:24 -0400338 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200339 return 0;
340}
341
342
Holger Schurig3a188642007-11-26 10:07:14 +0100343static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
344{
345 ssize_t pos = 0;
346 struct mrvlietypesheader *tlv_h;
347 while (pos < size) {
348 u16 length;
349 tlv_h = (struct mrvlietypesheader *) tlv;
350 if (tlv_h->len == 0)
351 return pos;
352 length = le16_to_cpu(tlv_h->len) +
353 sizeof(struct mrvlietypesheader);
354 pos += length;
355 tlv += length;
356 }
357 return pos;
358}
359
360
361static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
362 struct cmd_ds_command *cmd, u16 cmd_action,
363 void *pdata_buf)
364{
365 struct cmd_ds_802_11_subscribe_event *events =
366 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
367
368 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
369 * for various Marvell TLVs */
370
371 lbs_deb_enter(LBS_DEB_CMD);
372
373 cmd->size = cpu_to_le16(sizeof(*events)
374 - sizeof(events->tlv)
375 + S_DS_GEN);
376 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
377 if (cmd_action == CMD_ACT_GET) {
378 cmd->params.subscribe_event.events = 0;
379 } else {
380 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
381 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
382 cmd->params.subscribe_event.events = events->events;
383 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
384 }
385
386 lbs_deb_leave(LBS_DEB_CMD);
387}
388
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400390 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200391{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400392 lbs_deb_enter(LBS_DEB_CMD);
393
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400395 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200396 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200397 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
398 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400399 }
400 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
402 }
403
404 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400405 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200406 pkeyparamset->keylen = cpu_to_le16(pkey->len);
407 memcpy(pkeyparamset->key, pkey->key, pkey->len);
408 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
409 + sizeof(pkeyparamset->keyinfo)
410 + sizeof(pkeyparamset->keylen)
411 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400412 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200413}
414
Holger Schurig69f90322007-11-23 15:43:44 +0100415static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200416 struct cmd_ds_command *cmd,
417 u16 cmd_action,
418 u32 cmd_oid, void *pdata_buf)
419{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200420 struct cmd_ds_802_11_key_material *pkeymaterial =
421 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400422 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200423 int ret = 0;
424 int index = 0;
425
Holger Schurig9012b282007-05-25 11:27:16 -0400426 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427
Dan Williams0aef64d2007-08-02 11:31:18 -0400428 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200429 pkeymaterial->action = cpu_to_le16(cmd_action);
430
Dan Williams0aef64d2007-08-02 11:31:18 -0400431 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400432 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200433 ret = 0;
434 goto done;
435 }
436
437 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
438
Dan Williams90a42212007-05-25 23:01:24 -0400439 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400441 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442 index++;
443 }
444
Dan Williams90a42212007-05-25 23:01:24 -0400445 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400447 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200448 index++;
449 }
450
451 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400452 + sizeof (pkeymaterial->action)
453 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200454
455 ret = 0;
456
457done:
Holger Schurig9012b282007-05-25 11:27:16 -0400458 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 return ret;
460}
461
Holger Schurig69f90322007-11-23 15:43:44 +0100462static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200463 struct cmd_ds_command *cmd, int cmd_action)
464{
465 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
466
Holger Schurig8ff12da2007-08-02 11:54:31 -0400467 lbs_deb_enter(LBS_DEB_CMD);
468
Dan Williams0aef64d2007-08-02 11:31:18 -0400469 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
471 reset->action = cpu_to_le16(cmd_action);
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_log(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_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 cmd->size =
483 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
484
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_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 struct cmd_ds_command *cmd)
491{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400492 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400493 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200494 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400495 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200496
Holger Schurig8ff12da2007-08-02 11:54:31 -0400497 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498 return 0;
499}
500
Holger Schurig69f90322007-11-23 15:43:44 +0100501static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200502 struct cmd_ds_command *cmd,
503 int cmd_action,
504 int cmd_oid, void *pdata_buf)
505{
506 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507 u8 ucTemp;
508
Holger Schurig9012b282007-05-25 11:27:16 -0400509 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510
Holger Schurig9012b282007-05-25 11:27:16 -0400511 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512
Dan Williams0aef64d2007-08-02 11:31:18 -0400513 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400514 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200515
516 switch (cmd_oid) {
517 case OID_802_11_INFRASTRUCTURE_MODE:
518 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400519 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400520 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
521 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000522 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400523 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200524 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400525 } else {
526 /* Infra and Auto modes */
527 ucTemp = SNMP_MIB_VALUE_INFRA;
528 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200529
530 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
531
532 break;
533 }
534
535 case OID_802_11D_ENABLE:
536 {
537 u32 ulTemp;
538
Dan Williams0aef64d2007-08-02 11:31:18 -0400539 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200540
Dan Williams0aef64d2007-08-02 11:31:18 -0400541 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000542 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
543 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400545 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200546 cpu_to_le16((u16) ulTemp);
547 }
548 break;
549 }
550
551 case OID_802_11_FRAGMENTATION_THRESHOLD:
552 {
553 u32 ulTemp;
554
Dan Williams0aef64d2007-08-02 11:31:18 -0400555 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200556
Dan Williams0aef64d2007-08-02 11:31:18 -0400557 if (cmd_action == CMD_ACT_GET) {
558 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
559 } else if (cmd_action == CMD_ACT_SET) {
560 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400561 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200562 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400563 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564 cpu_to_le16((u16) ulTemp);
565
566 }
567
568 break;
569 }
570
571 case OID_802_11_RTS_THRESHOLD:
572 {
573
574 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000575 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200576
Dan Williams0aef64d2007-08-02 11:31:18 -0400577 if (cmd_action == CMD_ACT_GET) {
578 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
579 } else if (cmd_action == CMD_ACT_SET) {
580 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400581 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
582 ulTemp = *((u32 *)pdata_buf);
583 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200584 cpu_to_le16((u16) ulTemp);
585
586 }
587 break;
588 }
589 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400590 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200591
Dan Williams0aef64d2007-08-02 11:31:18 -0400592 if (cmd_action == CMD_ACT_GET) {
593 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
594 } else if (cmd_action == CMD_ACT_SET) {
595 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200596 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400597 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000598 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200599 }
600
601 break;
602 default:
603 break;
604 }
605
Holger Schurig9012b282007-05-25 11:27:16 -0400606 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400608 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
609 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610
Holger Schurig9012b282007-05-25 11:27:16 -0400611 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400612 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400613 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
614 le16_to_cpu(pSNMPMIB->bufsize),
615 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200616
Holger Schurig9012b282007-05-25 11:27:16 -0400617 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200618 return 0;
619}
620
Holger Schurig69f90322007-11-23 15:43:44 +0100621static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622 struct cmd_ds_command *cmd,
623 u16 cmd_action, void *pdata_buf)
624{
625
626 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
627
Holger Schurig9012b282007-05-25 11:27:16 -0400628 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629
630 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400631 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400632 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400633 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634
David Woodhouse981f1872007-05-25 23:36:54 -0400635 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
636 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
637 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638
639 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400640 case CMD_ACT_TX_POWER_OPT_GET:
641 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642 prtp->currentlevel = 0;
643 break;
644
Dan Williams0aef64d2007-08-02 11:31:18 -0400645 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
646 prtp->action = cpu_to_le16(CMD_ACT_SET);
647 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648 break;
649
Dan Williams0aef64d2007-08-02 11:31:18 -0400650 case CMD_ACT_TX_POWER_OPT_SET_MID:
651 prtp->action = cpu_to_le16(CMD_ACT_SET);
652 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200653 break;
654
Dan Williams0aef64d2007-08-02 11:31:18 -0400655 case CMD_ACT_TX_POWER_OPT_SET_LOW:
656 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200657 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
658 break;
659 }
Holger Schurig9012b282007-05-25 11:27:16 -0400660
661 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200662 return 0;
663}
664
Holger Schurig69f90322007-11-23 15:43:44 +0100665static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400666 struct cmd_ds_command *cmd,
667 u16 cmd_action, void *pdata_buf)
668{
669 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
670
671 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
672 cmd->size =
673 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
674 S_DS_GEN);
675
676 monitor->action = cpu_to_le16(cmd_action);
677 if (cmd_action == CMD_ACT_SET) {
678 monitor->mode =
679 cpu_to_le16((u16) (*(u32 *) pdata_buf));
680 }
681
682 return 0;
683}
684
Holger Schurig69f90322007-11-23 15:43:44 +0100685static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200686 struct cmd_ds_command *cmd,
687 u16 cmd_action)
688{
689 struct cmd_ds_802_11_rate_adapt_rateset
690 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200691
Holger Schurig8ff12da2007-08-02 11:54:31 -0400692 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200693 cmd->size =
694 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
695 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400696 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200697
David Woodhouse981f1872007-05-25 23:36:54 -0400698 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000699 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
700 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200701
Holger Schurig9012b282007-05-25 11:27:16 -0400702 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200703 return 0;
704}
705
Dan Williams8e3c91b2007-12-11 15:50:59 -0500706/**
707 * @brief Get the current data rate
708 *
709 * @param priv A pointer to struct lbs_private structure
710 *
711 * @return The data rate on success, error on failure
712 */
713int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200714{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500715 struct cmd_ds_802_11_data_rate cmd;
716 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200717
Holger Schurig9012b282007-05-25 11:27:16 -0400718 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200719
Dan Williams8e3c91b2007-12-11 15:50:59 -0500720 memset(&cmd, 0, sizeof(cmd));
721 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
722 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200723
David Woodhouse689442d2007-12-12 16:00:42 -0500724 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500725 if (ret)
726 goto out;
727
728 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
729
730 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
731 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
732
733out:
734 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
735 return ret;
736}
737
738/**
739 * @brief Set the data rate
740 *
741 * @param priv A pointer to struct lbs_private structure
742 * @param rate The desired data rate, or 0 to clear a locked rate
743 *
744 * @return 0 on success, error on failure
745 */
746int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
747{
748 struct cmd_ds_802_11_data_rate cmd;
749 int ret = 0;
750
751 lbs_deb_enter(LBS_DEB_CMD);
752
753 memset(&cmd, 0, sizeof(cmd));
754 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
755
756 if (rate > 0) {
757 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
758 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
759 if (cmd.rates[0] == 0) {
760 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
761 " 0x%02X\n", rate);
762 ret = 0;
763 goto out;
764 }
765 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
766 } else {
767 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400768 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200769 }
770
David Woodhouse689442d2007-12-12 16:00:42 -0500771 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500772 if (ret)
773 goto out;
774
775 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
776
777 /* FIXME: get actual rates FW can do if this command actually returns
778 * all data rates supported.
779 */
780 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
781 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
782
783out:
784 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
785 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200786}
787
Holger Schurig69f90322007-11-23 15:43:44 +0100788static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200789 struct cmd_ds_command *cmd,
790 u16 cmd_action)
791{
792 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793
Holger Schurig8ff12da2007-08-02 11:54:31 -0400794 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400795 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200796 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400797 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200798
Holger Schurig8ff12da2007-08-02 11:54:31 -0400799 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200800 pMCastAdr->action = cpu_to_le16(cmd_action);
801 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000802 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
803 memcpy(pMCastAdr->maclist, priv->multicastlist,
804 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200805
Holger Schurig8ff12da2007-08-02 11:54:31 -0400806 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200807 return 0;
808}
809
Dan Williams2dd4b262007-12-11 16:54:15 -0500810/**
811 * @brief Get the radio channel
812 *
813 * @param priv A pointer to struct lbs_private structure
814 *
815 * @return The channel on success, error on failure
816 */
817int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818{
Dan Williams2dd4b262007-12-11 16:54:15 -0500819 struct cmd_ds_802_11_rf_channel cmd;
820 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821
Holger Schurig8ff12da2007-08-02 11:54:31 -0400822 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200823
Dan Williams2dd4b262007-12-11 16:54:15 -0500824 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
825 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200826
David Woodhouse689442d2007-12-12 16:00:42 -0500827 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500828 if (ret)
829 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200830
Dan Williamscb182a62007-12-11 17:35:51 -0500831 ret = le16_to_cpu(cmd.channel);
832 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500833
834out:
835 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
836 return ret;
837}
838
839/**
840 * @brief Set the radio channel
841 *
842 * @param priv A pointer to struct lbs_private structure
843 * @param channel The desired channel, or 0 to clear a locked channel
844 *
845 * @return 0 on success, error on failure
846 */
847int lbs_set_channel(struct lbs_private *priv, u8 channel)
848{
849 struct cmd_ds_802_11_rf_channel cmd;
850 u8 old_channel = priv->curbssparams.channel;
851 int ret = 0;
852
853 lbs_deb_enter(LBS_DEB_CMD);
854
855 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
856 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
857 cmd.channel = cpu_to_le16(channel);
858
David Woodhouse689442d2007-12-12 16:00:42 -0500859 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500860 if (ret)
861 goto out;
862
Dan Williamscb182a62007-12-11 17:35:51 -0500863 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
864 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
865 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500866
867out:
868 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
869 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200870}
871
Holger Schurig69f90322007-11-23 15:43:44 +0100872static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873 struct cmd_ds_command *cmd)
874{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875
Holger Schurig8ff12da2007-08-02 11:54:31 -0400876 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400877 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400878 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400879 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200880
881 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000882 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
883 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
884 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
885 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
886 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
887 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
Holger Schurig8ff12da2007-08-02 11:54:31 -0400889 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200890 return 0;
891}
892
Holger Schurig69f90322007-11-23 15:43:44 +0100893static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894 struct cmd_ds_command *cmdptr,
895 u8 cmd_action, void *pdata_buf)
896{
Holger Schurig10078322007-11-15 18:05:47 -0500897 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898
Holger Schurig9012b282007-05-25 11:27:16 -0400899 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200900
Holger Schurig10078322007-11-15 18:05:47 -0500901 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200902
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000903 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400904 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200905 {
906 struct cmd_ds_mac_reg_access *macreg;
907
908 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400909 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
910 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200911 macreg =
912 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
913 macreg;
914
915 macreg->action = cpu_to_le16(cmd_action);
916 macreg->offset = cpu_to_le16((u16) offval->offset);
917 macreg->value = cpu_to_le32(offval->value);
918
919 break;
920 }
921
Dan Williams0aef64d2007-08-02 11:31:18 -0400922 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200923 {
924 struct cmd_ds_bbp_reg_access *bbpreg;
925
926 cmdptr->size =
927 cpu_to_le16(sizeof
928 (struct cmd_ds_bbp_reg_access)
929 + S_DS_GEN);
930 bbpreg =
931 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
932 bbpreg;
933
934 bbpreg->action = cpu_to_le16(cmd_action);
935 bbpreg->offset = cpu_to_le16((u16) offval->offset);
936 bbpreg->value = (u8) offval->value;
937
938 break;
939 }
940
Dan Williams0aef64d2007-08-02 11:31:18 -0400941 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200942 {
943 struct cmd_ds_rf_reg_access *rfreg;
944
945 cmdptr->size =
946 cpu_to_le16(sizeof
947 (struct cmd_ds_rf_reg_access) +
948 S_DS_GEN);
949 rfreg =
950 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
951 rfreg;
952
953 rfreg->action = cpu_to_le16(cmd_action);
954 rfreg->offset = cpu_to_le16((u16) offval->offset);
955 rfreg->value = (u8) offval->value;
956
957 break;
958 }
959
960 default:
961 break;
962 }
963
Holger Schurig9012b282007-05-25 11:27:16 -0400964 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200965 return 0;
966}
967
Holger Schurig69f90322007-11-23 15:43:44 +0100968static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200969 struct cmd_ds_command *cmd,
970 u16 cmd_action)
971{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972
Holger Schurig8ff12da2007-08-02 11:54:31 -0400973 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400974 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400975 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976 S_DS_GEN);
977 cmd->result = 0;
978
979 cmd->params.macadd.action = cpu_to_le16(cmd_action);
980
Dan Williams0aef64d2007-08-02 11:31:18 -0400981 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200982 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000983 priv->current_addr, ETH_ALEN);
984 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985 }
986
Holger Schurig8ff12da2007-08-02 11:54:31 -0400987 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200988 return 0;
989}
990
Holger Schurig69f90322007-11-23 15:43:44 +0100991static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992 struct cmd_ds_command *cmd,
993 int cmd_action, void *pdata_buf)
994{
Holger Schurig10078322007-11-15 18:05:47 -0500995 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996
Holger Schurig9012b282007-05-25 11:27:16 -0400997 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998
Dan Williams0aef64d2007-08-02 11:31:18 -0400999 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001000 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
1001 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 cmd->result = 0;
1003
1004 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
1005 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
1006 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
1007 cmd->params.rdeeprom.value = 0;
1008
Holger Schurig8ff12da2007-08-02 11:54:31 -04001009 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010 return 0;
1011}
1012
Holger Schurig69f90322007-11-23 15:43:44 +01001013static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001014 struct cmd_ds_command *cmd,
1015 u16 cmd_action, void *pdata_buf)
1016{
1017 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001018 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019
Dan Williams0aef64d2007-08-02 11:31:18 -04001020 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001021 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001022 cmd->result = 0;
1023 bt_access->action = cpu_to_le16(cmd_action);
1024
1025 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001026 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001028 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001029 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001030 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001031 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001032 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001034 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001035 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1036 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001037 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001039 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001040 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1041 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001042 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001043 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 default:
1045 break;
1046 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001047 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048 return 0;
1049}
1050
Holger Schurig69f90322007-11-23 15:43:44 +01001051static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052 struct cmd_ds_command *cmd,
1053 u16 cmd_action, void *pdata_buf)
1054{
1055 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001056 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001057
Dan Williams0aef64d2007-08-02 11:31:18 -04001058 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001059 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001060 cmd->result = 0;
1061
1062 if (pdata_buf)
1063 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1064 else
1065 memset(fwt_access, 0, sizeof(*fwt_access));
1066
1067 fwt_access->action = cpu_to_le16(cmd_action);
1068
Holger Schurig8ff12da2007-08-02 11:54:31 -04001069 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001070 return 0;
1071}
1072
David Woodhouse301eacb2007-12-11 15:23:59 -05001073int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1074 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075{
David Woodhouse301eacb2007-12-11 15:23:59 -05001076 int ret;
1077
Holger Schurig8ff12da2007-08-02 11:54:31 -04001078 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001079
David Woodhouse301eacb2007-12-11 15:23:59 -05001080 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001081 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001082 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001083
David Woodhouse301eacb2007-12-11 15:23:59 -05001084 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001085
David Woodhouse689442d2007-12-12 16:00:42 -05001086 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001087
Holger Schurig8ff12da2007-08-02 11:54:31 -04001088 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001089 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090}
David Woodhouse301eacb2007-12-11 15:23:59 -05001091EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001092
David Woodhouse86062132007-12-13 00:32:36 -05001093int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001094{
1095 struct cmd_ds_mesh_config cmd;
1096
1097 memset(&cmd, 0, sizeof(cmd));
1098 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001099 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001100 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001101 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001102
David Woodhouse23a397a2007-12-11 18:56:42 -05001103 if (enable) {
1104 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1105 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1106 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001107 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001108 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001109 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001110 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001111}
1112
Brajesh Dave96287ac2007-11-20 17:44:28 -05001113static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1114 struct cmd_ds_command *cmd,
1115 u16 cmd_action)
1116{
1117 struct cmd_ds_802_11_beacon_control
1118 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001119
1120 lbs_deb_enter(LBS_DEB_CMD);
1121 cmd->size =
1122 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1123 + S_DS_GEN);
1124 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1125
1126 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001127 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1128 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001129
1130 lbs_deb_leave(LBS_DEB_CMD);
1131 return 0;
1132}
1133
David Woodhouse681ffbb2007-12-15 20:04:54 -05001134static void lbs_queue_cmd(struct lbs_private *priv,
1135 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001136{
1137 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001138 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001139
Holger Schurig8ff12da2007-08-02 11:54:31 -04001140 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001141
David Woodhousec4ab4122007-12-15 00:41:51 -05001142 if (!cmdnode) {
1143 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001144 goto done;
1145 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001146 if (!cmdnode->cmdbuf->size) {
1147 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1148 goto done;
1149 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001150 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151
1152 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001153 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001154 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001155
Dan Williams0aef64d2007-08-02 11:31:18 -04001156 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001157 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158 addtail = 0;
1159 }
1160 }
1161
David Woodhouseaa21c002007-12-08 20:04:36 +00001162 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001163
David Woodhouseac472462007-12-08 00:35:00 +00001164 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001165 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001166 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001167 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168
David Woodhouseaa21c002007-12-08 20:04:36 +00001169 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001170
Holger Schurig8ff12da2007-08-02 11:54:31 -04001171 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001172 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173
1174done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001175 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001176}
1177
David Woodhouse18c52e72007-12-17 16:03:58 -05001178static void lbs_submit_command(struct lbs_private *priv,
1179 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001180{
1181 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001182 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001183 uint16_t cmdsize;
1184 uint16_t command;
1185 int timeo = 5 * HZ;
1186 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001187
Holger Schurig8ff12da2007-08-02 11:54:31 -04001188 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001189
Dan Williamsddac4522007-12-11 13:49:39 -05001190 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001191
David Woodhouseaa21c002007-12-08 20:04:36 +00001192 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001193 priv->cur_cmd = cmdnode;
1194 priv->cur_cmd_retcode = 0;
1195 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001196
Dan Williamsddac4522007-12-11 13:49:39 -05001197 cmdsize = le16_to_cpu(cmd->size);
1198 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199
David Woodhouse18c52e72007-12-17 16:03:58 -05001200 /* These commands take longer */
1201 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1202 command == CMD_802_11_AUTHENTICATE)
1203 timeo = 10 * HZ;
1204
David Woodhousee1258172007-12-11 23:42:49 -05001205 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1206 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001207 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001208
Dan Williamsddac4522007-12-11 13:49:39 -05001209 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001210
David Woodhoused9896ee2007-12-15 00:09:25 -05001211 if (ret) {
1212 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001213 /* Let the timer kick in and retry, and potentially reset
1214 the whole thing if the condition persists */
1215 timeo = HZ;
1216 } else
1217 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n",
1218 command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001219
1220 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001221 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001222
David Woodhouse18c52e72007-12-17 16:03:58 -05001223 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224}
1225
Holger Schurig69f90322007-11-23 15:43:44 +01001226static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227 struct cmd_ds_command *cmd)
1228{
1229 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1230
Holger Schurig9012b282007-05-25 11:27:16 -04001231 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001232
Dan Williams0aef64d2007-08-02 11:31:18 -04001233 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001234 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001235 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001236
Holger Schurig8ff12da2007-08-02 11:54:31 -04001237 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001238 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239
Holger Schurig9012b282007-05-25 11:27:16 -04001240 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241 return 0;
1242}
1243
1244/**
1245 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001246 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001247 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001248static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001249 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001250{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001251 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001253 if (!cmdnode)
1254 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001255
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001256 cmdnode->callback = NULL;
1257 cmdnode->callback_arg = 0;
1258
1259 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1260
1261 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1262 out:
1263 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001264}
1265
Holger Schurig69f90322007-11-23 15:43:44 +01001266static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1267 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001268{
1269 unsigned long flags;
1270
David Woodhouseaa21c002007-12-08 20:04:36 +00001271 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001272 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001273 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001274}
1275
David Woodhouse183aeac2007-12-15 01:52:54 -05001276void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1277 int result)
1278{
1279 if (cmd == priv->cur_cmd)
1280 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001281
David Woodhouseae125bf2007-12-15 04:22:52 -05001282 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001283 cmd->cmdwaitqwoken = 1;
1284 wake_up_interruptible(&cmd->cmdwait_q);
1285
David Woodhousead12d0f2007-12-15 02:06:16 -05001286 if (!cmd->callback)
1287 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001288 priv->cur_cmd = NULL;
1289}
1290
Holger Schurig69f90322007-11-23 15:43:44 +01001291int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001292{
1293 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001294 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001295
Holger Schurig9012b282007-05-25 11:27:16 -04001296 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297
David Woodhousea7c45892007-12-17 22:43:48 -05001298 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1299 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001300
David Woodhousea7c45892007-12-17 22:43:48 -05001301 switch (priv->preamble) {
1302 case CMD_TYPE_SHORT_PREAMBLE:
1303 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1304 break;
1305
1306 case CMD_TYPE_LONG_PREAMBLE:
1307 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1308 break;
1309
1310 case CMD_TYPE_AUTO_PREAMBLE:
1311 default:
1312 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1313 break;
1314 }
1315
1316 if (priv->radioon)
1317 cmd.control |= cpu_to_le16(TURN_ON_RF);
1318 else
1319 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1320
1321 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1322 priv->preamble);
1323
1324 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001325
Holger Schurig9012b282007-05-25 11:27:16 -04001326 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001327 return ret;
1328}
1329
Holger Schurig69f90322007-11-23 15:43:44 +01001330int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001331{
1332 int ret = 0;
1333
Holger Schurig9012b282007-05-25 11:27:16 -04001334 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001336 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001337 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001338 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339
Holger Schurig9012b282007-05-25 11:27:16 -04001340 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341 return ret;
1342}
1343
1344/**
1345 * @brief This function prepare the command before send to firmware.
1346 *
Holger Schurig69f90322007-11-23 15:43:44 +01001347 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001348 * @param cmd_no command number
1349 * @param cmd_action command action: GET or SET
1350 * @param wait_option wait option: wait response or not
1351 * @param cmd_oid cmd oid: treated as sub command
1352 * @param pdata_buf A pointer to informaion buffer
1353 * @return 0 or -1
1354 */
Holger Schurig69f90322007-11-23 15:43:44 +01001355int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001356 u16 cmd_no,
1357 u16 cmd_action,
1358 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1359{
1360 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001361 struct cmd_ctrl_node *cmdnode;
1362 struct cmd_ds_command *cmdptr;
1363 unsigned long flags;
1364
Holger Schurig8ff12da2007-08-02 11:54:31 -04001365 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001366
David Woodhouseaa21c002007-12-08 20:04:36 +00001367 if (!priv) {
1368 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001369 ret = -1;
1370 goto done;
1371 }
1372
David Woodhouseaa21c002007-12-08 20:04:36 +00001373 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001374 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001375 ret = -1;
1376 goto done;
1377 }
1378
Holger Schurig0d61d042007-12-05 17:58:06 +01001379 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001380
1381 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001382 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001383
1384 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001385 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001386 ret = -1;
1387 goto done;
1388 }
1389
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001390 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001391
Dan Williamsddac4522007-12-11 13:49:39 -05001392 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393
Holger Schurig8ff12da2007-08-02 11:54:31 -04001394 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001396 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001397 priv->seqnum++;
1398 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399
David Woodhouse981f1872007-05-25 23:36:54 -04001400 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401 cmdptr->result = 0;
1402
1403 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001404 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001405 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001406 break;
1407
Dan Williams0aef64d2007-08-02 11:31:18 -04001408 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001409 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001410 break;
1411
Dan Williams0aef64d2007-08-02 11:31:18 -04001412 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001413 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001414 break;
1415
Dan Williams0aef64d2007-08-02 11:31:18 -04001416 case CMD_802_11_ASSOCIATE:
1417 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001418 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001419 break;
1420
Dan Williams0aef64d2007-08-02 11:31:18 -04001421 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001422 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001423 break;
1424
Dan Williams0aef64d2007-08-02 11:31:18 -04001425 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001426 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001427 break;
1428
Dan Williams0aef64d2007-08-02 11:31:18 -04001429 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001430 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001431 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001432 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 break;
1434
Dan Williams0aef64d2007-08-02 11:31:18 -04001435 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001436 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001437 break;
1438
Dan Williams0aef64d2007-08-02 11:31:18 -04001439 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001440 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001441 break;
1442
Dan Williams0aef64d2007-08-02 11:31:18 -04001443 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001444 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001445 break;
1446
Dan Williams0aef64d2007-08-02 11:31:18 -04001447 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001448 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001449 break;
1450
Dan Williams0aef64d2007-08-02 11:31:18 -04001451 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001452 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001453 cmd_action, cmd_oid, pdata_buf);
1454 break;
1455
Dan Williams0aef64d2007-08-02 11:31:18 -04001456 case CMD_MAC_REG_ACCESS:
1457 case CMD_BBP_REG_ACCESS:
1458 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001459 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001460 break;
1461
Dan Williams0aef64d2007-08-02 11:31:18 -04001462 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001463 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464 cmd_action, pdata_buf);
1465 break;
1466
Dan Williams0aef64d2007-08-02 11:31:18 -04001467 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001468 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 cmdptr, cmd_action);
1470 break;
1471
Dan Williams0aef64d2007-08-02 11:31:18 -04001472 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001473 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001474 break;
1475
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001476 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001477 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001478 cmd_action, pdata_buf);
1479 break;
1480
Dan Williams0aef64d2007-08-02 11:31:18 -04001481 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001482 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 break;
1484
Dan Williams0aef64d2007-08-02 11:31:18 -04001485 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001486 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001487 break;
1488
Dan Williams0aef64d2007-08-02 11:31:18 -04001489 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001490 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001491 break;
1492
Dan Williams0aef64d2007-08-02 11:31:18 -04001493 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001494 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001495 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001496 break;
1497
Dan Williams0aef64d2007-08-02 11:31:18 -04001498 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001499 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001500 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001501 break;
1502
Dan Williams0aef64d2007-08-02 11:31:18 -04001503 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001505 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001506 break;
1507
Dan Williams0aef64d2007-08-02 11:31:18 -04001508 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001509 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001510 break;
1511
Dan Williams0aef64d2007-08-02 11:31:18 -04001512 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001513 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001514 cmd_action, pdata_buf);
1515 break;
1516
Dan Williams0aef64d2007-08-02 11:31:18 -04001517 case CMD_802_11_SET_AFC:
1518 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001519
1520 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001521 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1522 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001523
1524 memmove(&cmdptr->params.afc,
1525 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1526
1527 ret = 0;
1528 goto done;
1529
Dan Williams0aef64d2007-08-02 11:31:18 -04001530 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001531 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001532 cmd_no, cmd_action);
1533 break;
1534
Dan Williams0aef64d2007-08-02 11:31:18 -04001535 case CMD_802_11_TPC_CFG:
1536 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537 cmdptr->size =
1538 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1539 S_DS_GEN);
1540
1541 memmove(&cmdptr->params.tpccfg,
1542 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1543
1544 ret = 0;
1545 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001546 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001547 {
1548 struct mrvlietypes_ledgpio *gpio =
1549 (struct mrvlietypes_ledgpio*)
1550 cmdptr->params.ledgpio.data;
1551
1552 memmove(&cmdptr->params.ledgpio,
1553 pdata_buf,
1554 sizeof(struct cmd_ds_802_11_led_ctrl));
1555
1556 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001557 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001558
1559#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1560 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001561 cpu_to_le16(le16_to_cpu(gpio->header.len)
1562 + S_DS_GEN
1563 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1564 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001565
1566 ret = 0;
1567 break;
1568 }
Holger Schurig3a188642007-11-26 10:07:14 +01001569 case CMD_802_11_SUBSCRIBE_EVENT:
1570 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1571 cmd_action, pdata_buf);
1572 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001573 case CMD_802_11_PWR_CFG:
1574 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575 cmdptr->size =
1576 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1577 S_DS_GEN);
1578 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1579 sizeof(struct cmd_ds_802_11_pwr_cfg));
1580
1581 ret = 0;
1582 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001583 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001584 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001585 break;
1586
Dan Williams0aef64d2007-08-02 11:31:18 -04001587 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001588 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001589 break;
1590
Dan Williams0aef64d2007-08-02 11:31:18 -04001591 case CMD_GET_TSF:
1592 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001593 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1594 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001595 ret = 0;
1596 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001597 case CMD_802_11_BEACON_CTRL:
1598 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1599 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001600 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001601 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001602 ret = -1;
1603 break;
1604 }
1605
1606 /* return error, since the command preparation failed */
1607 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001608 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001609 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001610 ret = -1;
1611 goto done;
1612 }
1613
1614 cmdnode->cmdwaitqwoken = 0;
1615
David Woodhouse681ffbb2007-12-15 20:04:54 -05001616 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001617 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001618
Dan Williams0aef64d2007-08-02 11:31:18 -04001619 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001620 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001621 might_sleep();
1622 wait_event_interruptible(cmdnode->cmdwait_q,
1623 cmdnode->cmdwaitqwoken);
1624 }
1625
David Woodhouseaa21c002007-12-08 20:04:36 +00001626 spin_lock_irqsave(&priv->driver_lock, flags);
1627 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001628 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001629 priv->cur_cmd_retcode);
1630 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001631 ret = -1;
1632 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001633 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001634
1635done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001636 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001637 return ret;
1638}
Holger Schurig10078322007-11-15 18:05:47 -05001639EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001640
1641/**
1642 * @brief This function allocates the command buffer and link
1643 * it to command free queue.
1644 *
Holger Schurig69f90322007-11-23 15:43:44 +01001645 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646 * @return 0 or -1
1647 */
Holger Schurig69f90322007-11-23 15:43:44 +01001648int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649{
1650 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001651 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001652 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001653 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001654
Holger Schurig8ff12da2007-08-02 11:54:31 -04001655 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001656
Dan Williamsddac4522007-12-11 13:49:39 -05001657 /* Allocate and initialize the command array */
1658 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1659 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001660 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001661 ret = -1;
1662 goto done;
1663 }
Dan Williamsddac4522007-12-11 13:49:39 -05001664 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001665
Dan Williamsddac4522007-12-11 13:49:39 -05001666 /* Allocate and initialize each command buffer in the command array */
1667 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1668 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1669 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001670 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671 ret = -1;
1672 goto done;
1673 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674 }
1675
Dan Williamsddac4522007-12-11 13:49:39 -05001676 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1677 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1678 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001679 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001680 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001681
1682done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001683 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001684 return ret;
1685}
1686
1687/**
1688 * @brief This function frees the command buffer.
1689 *
Holger Schurig69f90322007-11-23 15:43:44 +01001690 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691 * @return 0 or -1
1692 */
Holger Schurig69f90322007-11-23 15:43:44 +01001693int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001694{
Dan Williamsddac4522007-12-11 13:49:39 -05001695 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001696 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001697
Holger Schurig8ff12da2007-08-02 11:54:31 -04001698 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699
1700 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001701 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001702 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001703 goto done;
1704 }
1705
Dan Williamsddac4522007-12-11 13:49:39 -05001706 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001707
1708 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001709 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1710 if (cmdarray[i].cmdbuf) {
1711 kfree(cmdarray[i].cmdbuf);
1712 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001713 }
1714 }
1715
1716 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001717 if (priv->cmd_array) {
1718 kfree(priv->cmd_array);
1719 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001720 }
1721
1722done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001723 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724 return 0;
1725}
1726
1727/**
1728 * @brief This function gets a free command node if available in
1729 * command free queue.
1730 *
Holger Schurig69f90322007-11-23 15:43:44 +01001731 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001732 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1733 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001734static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001735{
1736 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001737 unsigned long flags;
1738
Holger Schurig8ff12da2007-08-02 11:54:31 -04001739 lbs_deb_enter(LBS_DEB_HOST);
1740
David Woodhouseaa21c002007-12-08 20:04:36 +00001741 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001742 return NULL;
1743
David Woodhouseaa21c002007-12-08 20:04:36 +00001744 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001745
David Woodhouseaa21c002007-12-08 20:04:36 +00001746 if (!list_empty(&priv->cmdfreeq)) {
1747 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001748 struct cmd_ctrl_node, list);
1749 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001751 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 tempnode = NULL;
1753 }
1754
David Woodhouseaa21c002007-12-08 20:04:36 +00001755 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001756
Holger Schurig8ff12da2007-08-02 11:54:31 -04001757 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758 return tempnode;
1759}
1760
1761/**
1762 * @brief This function cleans command node.
1763 *
1764 * @param ptempnode A pointer to cmdCtrlNode structure
1765 * @return n/a
1766 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001767
1768/**
1769 * @brief This function initializes the command node.
1770 *
Holger Schurig69f90322007-11-23 15:43:44 +01001771 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001772 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773 * @param pdata_buf A pointer to informaion buffer
1774 * @return 0 or -1
1775 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001776static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1777 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001778 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001780 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781
1782 if (!ptempnode)
1783 return;
1784
David Woodhouse17230472007-12-07 15:13:05 +00001785 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001786 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001787
Holger Schurig8ff12da2007-08-02 11:54:31 -04001788 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789}
1790
1791/**
1792 * @brief This function executes next command in command
1793 * pending queue. It will put fimware back to PS mode
1794 * if applicable.
1795 *
Holger Schurig69f90322007-11-23 15:43:44 +01001796 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001797 * @return 0 or -1
1798 */
Holger Schurig69f90322007-11-23 15:43:44 +01001799int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001800{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001801 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001802 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001803 unsigned long flags;
1804 int ret = 0;
1805
Holger Schurig8ff12da2007-08-02 11:54:31 -04001806 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001807 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001808 // data packet is received
1809 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001810
David Woodhouseaa21c002007-12-08 20:04:36 +00001811 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001812
David Woodhouseaa21c002007-12-08 20:04:36 +00001813 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001814 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001815 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816 ret = -1;
1817 goto done;
1818 }
1819
David Woodhouseaa21c002007-12-08 20:04:36 +00001820 if (!list_empty(&priv->cmdpendingq)) {
1821 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001822 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001823 }
1824
David Woodhouseaa21c002007-12-08 20:04:36 +00001825 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001826
1827 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001828 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001829
Dan Williamsddac4522007-12-11 13:49:39 -05001830 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001831 if ((priv->psstate == PS_STATE_SLEEP) ||
1832 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001833 lbs_deb_host(
1834 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001835 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001836 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001837 ret = -1;
1838 goto done;
1839 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001840 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001841 "0x%04x in psstate %d\n",
1842 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001843 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001844 /*
1845 * 1. Non-PS command:
1846 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001847 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001848 * 2. PS command but not Exit_PS:
1849 * Ignore it.
1850 * 3. PS command Exit_PS:
1851 * Set needtowakeup to TRUE if current state is SLEEP,
1852 * otherwise send this command down to firmware
1853 * immediately.
1854 */
Dan Williamsddac4522007-12-11 13:49:39 -05001855 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001856 /* Prepare to send Exit PS,
1857 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001858 if ((priv->psstate == PS_STATE_SLEEP)
1859 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001860 ) {
1861 /* w/ new scheme, it will not reach here.
1862 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001863 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001864 } else
Holger Schurig10078322007-11-15 18:05:47 -05001865 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001866
1867 ret = 0;
1868 goto done;
1869 } else {
1870 /*
1871 * PS command. Ignore it if it is not Exit_PS.
1872 * otherwise send it down immediately.
1873 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001874 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001875
Holger Schurig8ff12da2007-08-02 11:54:31 -04001876 lbs_deb_host(
1877 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001878 psm->action);
1879 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001880 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001881 lbs_deb_host(
1882 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001883 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001884 spin_lock_irqsave(&priv->driver_lock, flags);
1885 lbs_complete_command(priv, cmdnode, 0);
1886 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001887
1888 ret = 0;
1889 goto done;
1890 }
1891
David Woodhouseaa21c002007-12-08 20:04:36 +00001892 if ((priv->psstate == PS_STATE_SLEEP) ||
1893 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001894 lbs_deb_host(
1895 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001896 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001897 spin_lock_irqsave(&priv->driver_lock, flags);
1898 lbs_complete_command(priv, cmdnode, 0);
1899 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001900 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001901
1902 ret = 0;
1903 goto done;
1904 }
1905
Holger Schurig8ff12da2007-08-02 11:54:31 -04001906 lbs_deb_host(
1907 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001908 }
1909 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001910 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001911 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001912 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001913 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001914 } else {
1915 /*
1916 * check if in power save mode, if yes, put the device back
1917 * to PS mode
1918 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001919 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1920 (priv->psstate == PS_STATE_FULL_POWER) &&
1921 ((priv->connect_status == LBS_CONNECTED) ||
1922 (priv->mesh_connect_status == LBS_CONNECTED))) {
1923 if (priv->secinfo.WPAenabled ||
1924 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001925 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001926 if (priv->wpa_mcast_key.len ||
1927 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001928 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001929 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1930 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001931 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001932 }
1933 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001934 lbs_deb_host(
1935 "EXEC_NEXT_CMD: cmdpendingq empty, "
1936 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001937 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001938 }
1939 }
1940 }
1941
1942 ret = 0;
1943done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001944 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001945 return ret;
1946}
1947
Holger Schurig69f90322007-11-23 15:43:44 +01001948void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001949{
1950 union iwreq_data iwrq;
1951 u8 buf[50];
1952
Holger Schurig8ff12da2007-08-02 11:54:31 -04001953 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954
1955 memset(&iwrq, 0, sizeof(union iwreq_data));
1956 memset(buf, 0, sizeof(buf));
1957
1958 snprintf(buf, sizeof(buf) - 1, "%s", str);
1959
1960 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1961
1962 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001963 lbs_deb_wext("event indication string %s\n", (char *)buf);
1964 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1965 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001966
Holger Schurig634b8f42007-05-25 13:05:16 -04001967 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001968
Holger Schurig8ff12da2007-08-02 11:54:31 -04001969 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970}
1971
Holger Schurig69f90322007-11-23 15:43:44 +01001972static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001973{
1974 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001975 int ret = 0;
1976
Holger Schurig8ff12da2007-08-02 11:54:31 -04001977 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001978
Holger Schurig8ff12da2007-08-02 11:54:31 -04001979 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001980 size);
1981
Holger Schurig8ff12da2007-08-02 11:54:31 -04001982 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983
Holger Schurig208fdd22007-05-25 12:17:06 -04001984 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001985
David Woodhouseaa21c002007-12-08 20:04:36 +00001986 spin_lock_irqsave(&priv->driver_lock, flags);
1987 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001988 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001989 priv->intcounter, priv->currenttxskb);
1990 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001991
1992 if (ret) {
1993 lbs_pr_alert(
1994 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1995 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001996 spin_lock_irqsave(&priv->driver_lock, flags);
1997 if (!priv->intcounter) {
1998 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001999 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002000 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00002001 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002002 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002003 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002004
Holger Schurig8ff12da2007-08-02 11:54:31 -04002005 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002006 }
2007
Holger Schurig8ff12da2007-08-02 11:54:31 -04002008 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002009 return ret;
2010}
2011
Holger Schurig69f90322007-11-23 15:43:44 +01002012void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002013{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002014 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002015
2016 /*
2017 * PS is currently supported only in Infrastructure mode
2018 * Remove this check if it is to be supported in IBSS mode also
2019 */
2020
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_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023
Holger Schurig8ff12da2007-08-02 11:54:31 -04002024 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002025}
2026
2027/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002028 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029 *
Holger Schurig69f90322007-11-23 15:43:44 +01002030 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002031 * @param wait_option wait response or not
2032 * @return n/a
2033 */
Holger Schurig69f90322007-11-23 15:43:44 +01002034void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002035{
David Woodhouse981f1872007-05-25 23:36:54 -04002036 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002037
Holger Schurig8ff12da2007-08-02 11:54:31 -04002038 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002039
Holger Schurig10078322007-11-15 18:05:47 -05002040 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002041
Holger Schurig10078322007-11-15 18:05:47 -05002042 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002043 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002044 wait_option, 0, &Localpsmode);
2045
Holger Schurig8ff12da2007-08-02 11:54:31 -04002046 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002047}
2048
2049/**
2050 * @brief This function checks condition and prepares to
2051 * send sleep confirm command to firmware if ok.
2052 *
Holger Schurig69f90322007-11-23 15:43:44 +01002053 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002054 * @param psmode Power Saving mode
2055 * @return n/a
2056 */
Holger Schurig69f90322007-11-23 15:43:44 +01002057void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002058{
2059 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002060 u8 allowed = 1;
2061
Holger Schurig8ff12da2007-08-02 11:54:31 -04002062 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002063
Holger Schurig634b8f42007-05-25 13:05:16 -04002064 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002065 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002066 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002067 }
2068
David Woodhouseaa21c002007-12-08 20:04:36 +00002069 spin_lock_irqsave(&priv->driver_lock, flags);
2070 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002071 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002072 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002073 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002074 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002075 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002076 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002077 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002078 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002079
2080 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002081 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002082 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002083 sizeof(struct PS_CMD_ConfirmSleep));
2084 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002085 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002086 }
2087
Holger Schurig8ff12da2007-08-02 11:54:31 -04002088 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002089}
Holger Schurig675787e2007-12-05 17:58:11 +01002090
2091
2092/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002093 * @brief Simple callback that copies response back into command
2094 *
2095 * @param priv A pointer to struct lbs_private structure
2096 * @param extra A pointer to the original command structure for which
2097 * 'resp' is a response
2098 * @param resp A pointer to the command response
2099 *
2100 * @return 0 on success, error on failure
2101 */
2102int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002103 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002104{
2105 struct cmd_header *buf = (void *)extra;
2106 uint16_t copy_len;
2107
2108 lbs_deb_enter(LBS_DEB_CMD);
2109
2110 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2111 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002112 "copy back buffer was %u bytes\n", copy_len,
2113 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002114 memcpy(buf, resp, copy_len);
2115
2116 lbs_deb_leave(LBS_DEB_CMD);
2117 return 0;
2118}
David Woodhouse689442d2007-12-12 16:00:42 -05002119EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002120
David Woodhouse3399ea52007-12-15 03:09:33 -05002121struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2122 struct cmd_header *in_cmd, int in_cmd_size,
2123 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2124 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002125{
Holger Schurig675787e2007-12-05 17:58:11 +01002126 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002127
2128 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002129
David Woodhouseaa21c002007-12-08 20:04:36 +00002130 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002131 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002132 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002133 goto done;
2134 }
2135
2136 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002137 if (cmdnode == NULL) {
2138 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2139
2140 /* Wake up main thread to execute next command */
2141 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002142 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002143 goto done;
2144 }
2145
David Woodhouse448a51a2007-12-08 00:59:54 +00002146 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002147 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002148
Dan Williams7ad994d2007-12-11 12:33:30 -05002149 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002150 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002151
Holger Schurig675787e2007-12-05 17:58:11 +01002152 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002153 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002154 cmdnode->cmdbuf->command = cpu_to_le16(command);
2155 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2156 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2157 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002158
2159 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2160
2161 /* here was the big old switch() statement, which is now obsolete,
2162 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2163
2164 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002165 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002166 wake_up_interruptible(&priv->waitq);
2167
David Woodhouse3399ea52007-12-15 03:09:33 -05002168 done:
2169 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2170 return cmdnode;
2171}
2172
2173int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2174 struct cmd_header *in_cmd, int in_cmd_size,
2175 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2176 unsigned long callback_arg)
2177{
2178 struct cmd_ctrl_node *cmdnode;
2179 unsigned long flags;
2180 int ret = 0;
2181
2182 lbs_deb_enter(LBS_DEB_HOST);
2183
2184 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2185 callback, callback_arg);
2186 if (IS_ERR(cmdnode)) {
2187 ret = PTR_ERR(cmdnode);
2188 goto done;
2189 }
2190
Holger Schurig675787e2007-12-05 17:58:11 +01002191 might_sleep();
2192 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2193
David Woodhouseaa21c002007-12-08 20:04:36 +00002194 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002195 ret = cmdnode->result;
2196 if (ret)
2197 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2198 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002199
David Woodhousead12d0f2007-12-15 02:06:16 -05002200 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002201 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002202
2203done:
2204 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2205 return ret;
2206}
Dan Williams14e865b2007-12-10 15:11:23 -05002207EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002208
2209