blob: 57d17077a6d888ecea3474710f2d3158bbddd6e8 [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
Holger Schurig69f90322007-11-23 15:43:44 +0100201static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200202 struct cmd_ds_command *cmd,
203 u16 cmd_action)
204{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200205 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
206
Holger Schurig9012b282007-05-25 11:27:16 -0400207 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208
David Woodhouse981f1872007-05-25 23:36:54 -0400209 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
210 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400211 cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200212
Dan Williams0aef64d2007-08-02 11:31:18 -0400213 if (cmd_action == CMD_ACT_GET) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000214 memset(&priv->sp, 0, sizeof(struct sleep_params));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200215 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
216 sp->action = cpu_to_le16(cmd_action);
Dan Williams0aef64d2007-08-02 11:31:18 -0400217 } else if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200218 sp->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000219 sp->error = cpu_to_le16(priv->sp.sp_error);
220 sp->offset = cpu_to_le16(priv->sp.sp_offset);
221 sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime);
222 sp->calcontrol = (u8) priv->sp.sp_calcontrol;
223 sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk;
224 sp->reserved = cpu_to_le16(priv->sp.sp_reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200225 }
226
Holger Schurig9012b282007-05-25 11:27:16 -0400227 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200228 return 0;
229}
230
Holger Schurig69f90322007-11-23 15:43:44 +0100231static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200232 struct cmd_ds_command *cmd,
233 u32 cmd_act,
234 void * pdata_buf)
235{
236 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237 int ret = 0;
238 struct assoc_request * assoc_req = pdata_buf;
239
Holger Schurig9012b282007-05-25 11:27:16 -0400240 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200241
Dan Williams0aef64d2007-08-02 11:31:18 -0400242 cmd->command = cpu_to_le16(CMD_802_11_SET_WEP);
David Woodhouse981f1872007-05-25 23:36:54 -0400243 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200244
Dan Williams0aef64d2007-08-02 11:31:18 -0400245 if (cmd_act == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200246 int i;
247
248 if (!assoc_req) {
David Woodhouse23d36ee2007-12-12 00:14:21 -0500249 lbs_deb_cmd("Invalid association request!\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250 ret = -1;
251 goto done;
252 }
253
Dan Williams0aef64d2007-08-02 11:31:18 -0400254 wep->action = cpu_to_le16(CMD_ACT_ADD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200255
256 /* default tx key index */
David Woodhouse981f1872007-05-25 23:36:54 -0400257 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400258 (u32)CMD_WEP_KEY_INDEX_MASK));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260 /* Copy key types and material to host command structure */
261 for (i = 0; i < 4; i++) {
Dan Williams1443b652007-08-02 10:45:55 -0400262 struct enc_key * pkey = &assoc_req->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263
264 switch (pkey->len) {
265 case KEY_LEN_WEP_40:
Holger Schurig6470a892007-10-08 11:07:27 +0200266 wep->keytype[i] = CMD_TYPE_WEP_40_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267 memmove(&wep->keymaterial[i], pkey->key,
268 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400269 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270 break;
271 case KEY_LEN_WEP_104:
Holger Schurig6470a892007-10-08 11:07:27 +0200272 wep->keytype[i] = CMD_TYPE_WEP_104_BIT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200273 memmove(&wep->keymaterial[i], pkey->key,
274 pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400275 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200276 break;
277 case 0:
278 break;
279 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400280 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200281 i, pkey->len);
282 ret = -1;
283 goto done;
284 break;
285 }
286 }
Dan Williams0aef64d2007-08-02 11:31:18 -0400287 } else if (cmd_act == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200288 /* ACT_REMOVE clears _all_ WEP keys */
Dan Williams0aef64d2007-08-02 11:31:18 -0400289 wep->action = cpu_to_le16(CMD_ACT_REMOVE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200290
291 /* default tx key index */
David Woodhouseaa21c002007-12-08 20:04:36 +0000292 wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx &
Dan Williams0aef64d2007-08-02 11:31:18 -0400293 (u32)CMD_WEP_KEY_INDEX_MASK));
David Woodhouseaa21c002007-12-08 20:04:36 +0000294 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295 }
296
297 ret = 0;
298
299done:
Holger Schurig9012b282007-05-25 11:27:16 -0400300 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200301 return ret;
302}
303
Holger Schurig69f90322007-11-23 15:43:44 +0100304static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200305 struct cmd_ds_command *cmd,
Dan Williams90a42212007-05-25 23:01:24 -0400306 u16 cmd_action,
307 void * pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308{
309 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
Dan Williams18c96c342007-06-18 12:01:12 -0400310 u32 * enable = pdata_buf;
Dan Williams90a42212007-05-25 23:01:24 -0400311
312 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200313
Dan Williams0aef64d2007-08-02 11:31:18 -0400314 cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN);
David Woodhouse981f1872007-05-25 23:36:54 -0400315 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200316 penableRSN->action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400317
Dan Williams0aef64d2007-08-02 11:31:18 -0400318 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400319 if (*enable)
Dan Williams0aef64d2007-08-02 11:31:18 -0400320 penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400321 else
Dan Williams0aef64d2007-08-02 11:31:18 -0400322 penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400323 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200324 }
325
Dan Williams90a42212007-05-25 23:01:24 -0400326 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200327 return 0;
328}
329
330
Holger Schurig3a188642007-11-26 10:07:14 +0100331static ssize_t lbs_tlv_size(const u8 *tlv, u16 size)
332{
333 ssize_t pos = 0;
334 struct mrvlietypesheader *tlv_h;
335 while (pos < size) {
336 u16 length;
337 tlv_h = (struct mrvlietypesheader *) tlv;
338 if (tlv_h->len == 0)
339 return pos;
340 length = le16_to_cpu(tlv_h->len) +
341 sizeof(struct mrvlietypesheader);
342 pos += length;
343 tlv += length;
344 }
345 return pos;
346}
347
348
349static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv,
350 struct cmd_ds_command *cmd, u16 cmd_action,
351 void *pdata_buf)
352{
353 struct cmd_ds_802_11_subscribe_event *events =
354 (struct cmd_ds_802_11_subscribe_event *) pdata_buf;
355
356 /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room
357 * for various Marvell TLVs */
358
359 lbs_deb_enter(LBS_DEB_CMD);
360
361 cmd->size = cpu_to_le16(sizeof(*events)
362 - sizeof(events->tlv)
363 + S_DS_GEN);
364 cmd->params.subscribe_event.action = cpu_to_le16(cmd_action);
365 if (cmd_action == CMD_ACT_GET) {
366 cmd->params.subscribe_event.events = 0;
367 } else {
368 ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv));
369 cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz);
370 cmd->params.subscribe_event.events = events->events;
371 memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz);
372 }
373
374 lbs_deb_leave(LBS_DEB_CMD);
375}
376
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200377static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400378 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200379{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400380 lbs_deb_enter(LBS_DEB_CMD);
381
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200382 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400383 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200384 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200385 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
386 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400387 }
388 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
390 }
391
392 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400393 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394 pkeyparamset->keylen = cpu_to_le16(pkey->len);
395 memcpy(pkeyparamset->key, pkey->key, pkey->len);
396 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
397 + sizeof(pkeyparamset->keyinfo)
398 + sizeof(pkeyparamset->keylen)
399 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400400 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200401}
402
Holger Schurig69f90322007-11-23 15:43:44 +0100403static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 struct cmd_ds_command *cmd,
405 u16 cmd_action,
406 u32 cmd_oid, void *pdata_buf)
407{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200408 struct cmd_ds_802_11_key_material *pkeymaterial =
409 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400410 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411 int ret = 0;
412 int index = 0;
413
Holger Schurig9012b282007-05-25 11:27:16 -0400414 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415
Dan Williams0aef64d2007-08-02 11:31:18 -0400416 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200417 pkeymaterial->action = cpu_to_le16(cmd_action);
418
Dan Williams0aef64d2007-08-02 11:31:18 -0400419 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400420 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200421 ret = 0;
422 goto done;
423 }
424
425 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
426
Dan Williams90a42212007-05-25 23:01:24 -0400427 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200428 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400429 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430 index++;
431 }
432
Dan Williams90a42212007-05-25 23:01:24 -0400433 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400435 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200436 index++;
437 }
438
439 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400440 + sizeof (pkeymaterial->action)
441 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442
443 ret = 0;
444
445done:
Holger Schurig9012b282007-05-25 11:27:16 -0400446 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200447 return ret;
448}
449
Holger Schurig69f90322007-11-23 15:43:44 +0100450static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200451 struct cmd_ds_command *cmd, int cmd_action)
452{
453 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
454
Holger Schurig8ff12da2007-08-02 11:54:31 -0400455 lbs_deb_enter(LBS_DEB_CMD);
456
Dan Williams0aef64d2007-08-02 11:31:18 -0400457 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200458 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
459 reset->action = cpu_to_le16(cmd_action);
460
Holger Schurig8ff12da2007-08-02 11:54:31 -0400461 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200462 return 0;
463}
464
Holger Schurig69f90322007-11-23 15:43:44 +0100465static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200466 struct cmd_ds_command *cmd)
467{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400468 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400469 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470 cmd->size =
471 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
472
Holger Schurig8ff12da2007-08-02 11:54:31 -0400473 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200474 return 0;
475}
476
Holger Schurig69f90322007-11-23 15:43:44 +0100477static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200478 struct cmd_ds_command *cmd)
479{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400480 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400481 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400483 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200484
Holger Schurig8ff12da2007-08-02 11:54:31 -0400485 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200486 return 0;
487}
488
Holger Schurig69f90322007-11-23 15:43:44 +0100489static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200490 struct cmd_ds_command *cmd,
491 int cmd_action,
492 int cmd_oid, void *pdata_buf)
493{
494 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200495 u8 ucTemp;
496
Holger Schurig9012b282007-05-25 11:27:16 -0400497 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200498
Holger Schurig9012b282007-05-25 11:27:16 -0400499 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200500
Dan Williams0aef64d2007-08-02 11:31:18 -0400501 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400502 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503
504 switch (cmd_oid) {
505 case OID_802_11_INFRASTRUCTURE_MODE:
506 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400507 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400508 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
509 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000510 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400511 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400513 } else {
514 /* Infra and Auto modes */
515 ucTemp = SNMP_MIB_VALUE_INFRA;
516 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200517
518 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
519
520 break;
521 }
522
523 case OID_802_11D_ENABLE:
524 {
525 u32 ulTemp;
526
Dan Williams0aef64d2007-08-02 11:31:18 -0400527 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200528
Dan Williams0aef64d2007-08-02 11:31:18 -0400529 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000530 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
531 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200532 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400533 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200534 cpu_to_le16((u16) ulTemp);
535 }
536 break;
537 }
538
539 case OID_802_11_FRAGMENTATION_THRESHOLD:
540 {
541 u32 ulTemp;
542
Dan Williams0aef64d2007-08-02 11:31:18 -0400543 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200544
Dan Williams0aef64d2007-08-02 11:31:18 -0400545 if (cmd_action == CMD_ACT_GET) {
546 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
547 } else if (cmd_action == CMD_ACT_SET) {
548 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400549 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400551 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200552 cpu_to_le16((u16) ulTemp);
553
554 }
555
556 break;
557 }
558
559 case OID_802_11_RTS_THRESHOLD:
560 {
561
562 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000563 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564
Dan Williams0aef64d2007-08-02 11:31:18 -0400565 if (cmd_action == CMD_ACT_GET) {
566 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
567 } else if (cmd_action == CMD_ACT_SET) {
568 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400569 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
570 ulTemp = *((u32 *)pdata_buf);
571 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200572 cpu_to_le16((u16) ulTemp);
573
574 }
575 break;
576 }
577 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400578 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579
Dan Williams0aef64d2007-08-02 11:31:18 -0400580 if (cmd_action == CMD_ACT_GET) {
581 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
582 } else if (cmd_action == CMD_ACT_SET) {
583 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200584 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400585 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000586 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200587 }
588
589 break;
590 default:
591 break;
592 }
593
Holger Schurig9012b282007-05-25 11:27:16 -0400594 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200595 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400596 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
597 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200598
Holger Schurig9012b282007-05-25 11:27:16 -0400599 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400600 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400601 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
602 le16_to_cpu(pSNMPMIB->bufsize),
603 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200604
Holger Schurig9012b282007-05-25 11:27:16 -0400605 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200606 return 0;
607}
608
Holger Schurig69f90322007-11-23 15:43:44 +0100609static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200610 struct cmd_ds_command *cmd,
611 u16 cmd_action, void *pdata_buf)
612{
613
614 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
615
Holger Schurig9012b282007-05-25 11:27:16 -0400616 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617
618 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400619 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400620 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400621 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622
David Woodhouse981f1872007-05-25 23:36:54 -0400623 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
624 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
625 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626
627 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400628 case CMD_ACT_TX_POWER_OPT_GET:
629 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200630 prtp->currentlevel = 0;
631 break;
632
Dan Williams0aef64d2007-08-02 11:31:18 -0400633 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
634 prtp->action = cpu_to_le16(CMD_ACT_SET);
635 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636 break;
637
Dan Williams0aef64d2007-08-02 11:31:18 -0400638 case CMD_ACT_TX_POWER_OPT_SET_MID:
639 prtp->action = cpu_to_le16(CMD_ACT_SET);
640 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200641 break;
642
Dan Williams0aef64d2007-08-02 11:31:18 -0400643 case CMD_ACT_TX_POWER_OPT_SET_LOW:
644 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200645 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
646 break;
647 }
Holger Schurig9012b282007-05-25 11:27:16 -0400648
649 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200650 return 0;
651}
652
Holger Schurig69f90322007-11-23 15:43:44 +0100653static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400654 struct cmd_ds_command *cmd,
655 u16 cmd_action, void *pdata_buf)
656{
657 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
658
659 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
660 cmd->size =
661 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
662 S_DS_GEN);
663
664 monitor->action = cpu_to_le16(cmd_action);
665 if (cmd_action == CMD_ACT_SET) {
666 monitor->mode =
667 cpu_to_le16((u16) (*(u32 *) pdata_buf));
668 }
669
670 return 0;
671}
672
Holger Schurig69f90322007-11-23 15:43:44 +0100673static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200674 struct cmd_ds_command *cmd,
675 u16 cmd_action)
676{
677 struct cmd_ds_802_11_rate_adapt_rateset
678 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200679
Holger Schurig8ff12da2007-08-02 11:54:31 -0400680 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200681 cmd->size =
682 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
683 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400684 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200685
David Woodhouse981f1872007-05-25 23:36:54 -0400686 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000687 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
688 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200689
Holger Schurig9012b282007-05-25 11:27:16 -0400690 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200691 return 0;
692}
693
Dan Williams8e3c91b2007-12-11 15:50:59 -0500694/**
695 * @brief Get the current data rate
696 *
697 * @param priv A pointer to struct lbs_private structure
698 *
699 * @return The data rate on success, error on failure
700 */
701int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200702{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500703 struct cmd_ds_802_11_data_rate cmd;
704 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200705
Holger Schurig9012b282007-05-25 11:27:16 -0400706 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200707
Dan Williams8e3c91b2007-12-11 15:50:59 -0500708 memset(&cmd, 0, sizeof(cmd));
709 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
710 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200711
David Woodhouse689442d2007-12-12 16:00:42 -0500712 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500713 if (ret)
714 goto out;
715
716 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
717
718 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
719 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
720
721out:
722 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
723 return ret;
724}
725
726/**
727 * @brief Set the data rate
728 *
729 * @param priv A pointer to struct lbs_private structure
730 * @param rate The desired data rate, or 0 to clear a locked rate
731 *
732 * @return 0 on success, error on failure
733 */
734int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
735{
736 struct cmd_ds_802_11_data_rate cmd;
737 int ret = 0;
738
739 lbs_deb_enter(LBS_DEB_CMD);
740
741 memset(&cmd, 0, sizeof(cmd));
742 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
743
744 if (rate > 0) {
745 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
746 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
747 if (cmd.rates[0] == 0) {
748 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
749 " 0x%02X\n", rate);
750 ret = 0;
751 goto out;
752 }
753 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
754 } else {
755 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400756 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200757 }
758
David Woodhouse689442d2007-12-12 16:00:42 -0500759 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500760 if (ret)
761 goto out;
762
763 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
764
765 /* FIXME: get actual rates FW can do if this command actually returns
766 * all data rates supported.
767 */
768 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
769 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
770
771out:
772 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
773 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200774}
775
Holger Schurig69f90322007-11-23 15:43:44 +0100776static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777 struct cmd_ds_command *cmd,
778 u16 cmd_action)
779{
780 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200781
Holger Schurig8ff12da2007-08-02 11:54:31 -0400782 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400783 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200784 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400785 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200786
Holger Schurig8ff12da2007-08-02 11:54:31 -0400787 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200788 pMCastAdr->action = cpu_to_le16(cmd_action);
789 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000790 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
791 memcpy(pMCastAdr->maclist, priv->multicastlist,
792 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200793
Holger Schurig8ff12da2007-08-02 11:54:31 -0400794 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200795 return 0;
796}
797
Dan Williams2dd4b262007-12-11 16:54:15 -0500798/**
799 * @brief Get the radio channel
800 *
801 * @param priv A pointer to struct lbs_private structure
802 *
803 * @return The channel on success, error on failure
804 */
805int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806{
Dan Williams2dd4b262007-12-11 16:54:15 -0500807 struct cmd_ds_802_11_rf_channel cmd;
808 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200809
Holger Schurig8ff12da2007-08-02 11:54:31 -0400810 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811
Dan Williams2dd4b262007-12-11 16:54:15 -0500812 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
813 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200814
David Woodhouse689442d2007-12-12 16:00:42 -0500815 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500816 if (ret)
817 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200818
Dan Williamscb182a62007-12-11 17:35:51 -0500819 ret = le16_to_cpu(cmd.channel);
820 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500821
822out:
823 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
824 return ret;
825}
826
827/**
828 * @brief Set the radio channel
829 *
830 * @param priv A pointer to struct lbs_private structure
831 * @param channel The desired channel, or 0 to clear a locked channel
832 *
833 * @return 0 on success, error on failure
834 */
835int lbs_set_channel(struct lbs_private *priv, u8 channel)
836{
837 struct cmd_ds_802_11_rf_channel cmd;
838 u8 old_channel = priv->curbssparams.channel;
839 int ret = 0;
840
841 lbs_deb_enter(LBS_DEB_CMD);
842
843 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
844 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
845 cmd.channel = cpu_to_le16(channel);
846
David Woodhouse689442d2007-12-12 16:00:42 -0500847 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500848 if (ret)
849 goto out;
850
Dan Williamscb182a62007-12-11 17:35:51 -0500851 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
852 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
853 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500854
855out:
856 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
857 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200858}
859
Holger Schurig69f90322007-11-23 15:43:44 +0100860static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200861 struct cmd_ds_command *cmd)
862{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200863
Holger Schurig8ff12da2007-08-02 11:54:31 -0400864 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400865 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400866 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400867 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200868
869 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000870 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
871 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
872 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
873 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
874 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
875 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200876
Holger Schurig8ff12da2007-08-02 11:54:31 -0400877 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200878 return 0;
879}
880
Holger Schurig69f90322007-11-23 15:43:44 +0100881static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200882 struct cmd_ds_command *cmdptr,
883 u8 cmd_action, void *pdata_buf)
884{
Holger Schurig10078322007-11-15 18:05:47 -0500885 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200886
Holger Schurig9012b282007-05-25 11:27:16 -0400887 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200888
Holger Schurig10078322007-11-15 18:05:47 -0500889 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200890
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000891 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400892 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200893 {
894 struct cmd_ds_mac_reg_access *macreg;
895
896 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400897 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
898 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200899 macreg =
900 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
901 macreg;
902
903 macreg->action = cpu_to_le16(cmd_action);
904 macreg->offset = cpu_to_le16((u16) offval->offset);
905 macreg->value = cpu_to_le32(offval->value);
906
907 break;
908 }
909
Dan Williams0aef64d2007-08-02 11:31:18 -0400910 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200911 {
912 struct cmd_ds_bbp_reg_access *bbpreg;
913
914 cmdptr->size =
915 cpu_to_le16(sizeof
916 (struct cmd_ds_bbp_reg_access)
917 + S_DS_GEN);
918 bbpreg =
919 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
920 bbpreg;
921
922 bbpreg->action = cpu_to_le16(cmd_action);
923 bbpreg->offset = cpu_to_le16((u16) offval->offset);
924 bbpreg->value = (u8) offval->value;
925
926 break;
927 }
928
Dan Williams0aef64d2007-08-02 11:31:18 -0400929 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200930 {
931 struct cmd_ds_rf_reg_access *rfreg;
932
933 cmdptr->size =
934 cpu_to_le16(sizeof
935 (struct cmd_ds_rf_reg_access) +
936 S_DS_GEN);
937 rfreg =
938 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
939 rfreg;
940
941 rfreg->action = cpu_to_le16(cmd_action);
942 rfreg->offset = cpu_to_le16((u16) offval->offset);
943 rfreg->value = (u8) offval->value;
944
945 break;
946 }
947
948 default:
949 break;
950 }
951
Holger Schurig9012b282007-05-25 11:27:16 -0400952 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200953 return 0;
954}
955
Holger Schurig69f90322007-11-23 15:43:44 +0100956static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200957 struct cmd_ds_command *cmd,
958 u16 cmd_action)
959{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960
Holger Schurig8ff12da2007-08-02 11:54:31 -0400961 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400962 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400963 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200964 S_DS_GEN);
965 cmd->result = 0;
966
967 cmd->params.macadd.action = cpu_to_le16(cmd_action);
968
Dan Williams0aef64d2007-08-02 11:31:18 -0400969 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000971 priv->current_addr, ETH_ALEN);
972 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200973 }
974
Holger Schurig8ff12da2007-08-02 11:54:31 -0400975 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976 return 0;
977}
978
Holger Schurig69f90322007-11-23 15:43:44 +0100979static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980 struct cmd_ds_command *cmd,
981 int cmd_action, void *pdata_buf)
982{
Holger Schurig10078322007-11-15 18:05:47 -0500983 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200984
Holger Schurig9012b282007-05-25 11:27:16 -0400985 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986
Dan Williams0aef64d2007-08-02 11:31:18 -0400987 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400988 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
989 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200990 cmd->result = 0;
991
992 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
993 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
994 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
995 cmd->params.rdeeprom.value = 0;
996
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998 return 0;
999}
1000
Holger Schurig69f90322007-11-23 15:43:44 +01001001static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001002 struct cmd_ds_command *cmd,
1003 u16 cmd_action, void *pdata_buf)
1004{
1005 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001006 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001007
Dan Williams0aef64d2007-08-02 11:31:18 -04001008 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001009 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001010 cmd->result = 0;
1011 bt_access->action = cpu_to_le16(cmd_action);
1012
1013 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001014 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001015 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001016 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001017 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001018 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001019 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -04001020 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001021 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001022 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001023 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1024 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001025 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001026 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001027 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001028 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
1029 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001030 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -04001031 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001032 default:
1033 break;
1034 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001035 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001036 return 0;
1037}
1038
Holger Schurig69f90322007-11-23 15:43:44 +01001039static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001040 struct cmd_ds_command *cmd,
1041 u16 cmd_action, void *pdata_buf)
1042{
1043 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -04001044 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001045
Dan Williams0aef64d2007-08-02 11:31:18 -04001046 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001047 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048 cmd->result = 0;
1049
1050 if (pdata_buf)
1051 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1052 else
1053 memset(fwt_access, 0, sizeof(*fwt_access));
1054
1055 fwt_access->action = cpu_to_le16(cmd_action);
1056
Holger Schurig8ff12da2007-08-02 11:54:31 -04001057 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001058 return 0;
1059}
1060
David Woodhouse301eacb2007-12-11 15:23:59 -05001061int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1062 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001063{
David Woodhouse301eacb2007-12-11 15:23:59 -05001064 int ret;
1065
Holger Schurig8ff12da2007-08-02 11:54:31 -04001066 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067
David Woodhouse301eacb2007-12-11 15:23:59 -05001068 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001069 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001070 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071
David Woodhouse301eacb2007-12-11 15:23:59 -05001072 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001073
David Woodhouse689442d2007-12-12 16:00:42 -05001074 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001075
Holger Schurig8ff12da2007-08-02 11:54:31 -04001076 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001077 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078}
David Woodhouse301eacb2007-12-11 15:23:59 -05001079EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080
David Woodhouse86062132007-12-13 00:32:36 -05001081int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001082{
1083 struct cmd_ds_mesh_config cmd;
1084
1085 memset(&cmd, 0, sizeof(cmd));
1086 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001087 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001088 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001089 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001090
David Woodhouse23a397a2007-12-11 18:56:42 -05001091 if (enable) {
1092 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1093 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1094 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001095 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001096 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001097 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001098 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001099}
1100
Brajesh Dave96287ac2007-11-20 17:44:28 -05001101static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1102 struct cmd_ds_command *cmd,
1103 u16 cmd_action)
1104{
1105 struct cmd_ds_802_11_beacon_control
1106 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001107
1108 lbs_deb_enter(LBS_DEB_CMD);
1109 cmd->size =
1110 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1111 + S_DS_GEN);
1112 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1113
1114 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001115 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1116 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001117
1118 lbs_deb_leave(LBS_DEB_CMD);
1119 return 0;
1120}
1121
David Woodhouse681ffbb2007-12-15 20:04:54 -05001122static void lbs_queue_cmd(struct lbs_private *priv,
1123 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001124{
1125 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001126 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001127
Holger Schurig8ff12da2007-08-02 11:54:31 -04001128 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001129
David Woodhousec4ab4122007-12-15 00:41:51 -05001130 if (!cmdnode) {
1131 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132 goto done;
1133 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001134 if (!cmdnode->cmdbuf->size) {
1135 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1136 goto done;
1137 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001138 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001139
1140 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001141 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001142 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001143
Dan Williams0aef64d2007-08-02 11:31:18 -04001144 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001145 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146 addtail = 0;
1147 }
1148 }
1149
David Woodhouseaa21c002007-12-08 20:04:36 +00001150 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151
David Woodhouseac472462007-12-08 00:35:00 +00001152 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001153 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001154 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001155 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156
David Woodhouseaa21c002007-12-08 20:04:36 +00001157 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158
Holger Schurig8ff12da2007-08-02 11:54:31 -04001159 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001160 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161
1162done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001163 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164}
1165
David Woodhouse18c52e72007-12-17 16:03:58 -05001166static void lbs_submit_command(struct lbs_private *priv,
1167 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168{
1169 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001170 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001171 uint16_t cmdsize;
1172 uint16_t command;
1173 int timeo = 5 * HZ;
1174 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001175
Holger Schurig8ff12da2007-08-02 11:54:31 -04001176 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177
Dan Williamsddac4522007-12-11 13:49:39 -05001178 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001179
David Woodhouseaa21c002007-12-08 20:04:36 +00001180 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001181 priv->cur_cmd = cmdnode;
1182 priv->cur_cmd_retcode = 0;
1183 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184
Dan Williamsddac4522007-12-11 13:49:39 -05001185 cmdsize = le16_to_cpu(cmd->size);
1186 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001187
David Woodhouse18c52e72007-12-17 16:03:58 -05001188 /* These commands take longer */
1189 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1190 command == CMD_802_11_AUTHENTICATE)
1191 timeo = 10 * HZ;
1192
David Woodhousee1258172007-12-11 23:42:49 -05001193 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1194 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001195 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001196
Dan Williamsddac4522007-12-11 13:49:39 -05001197 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001198
David Woodhoused9896ee2007-12-15 00:09:25 -05001199 if (ret) {
1200 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001201 /* Let the timer kick in and retry, and potentially reset
1202 the whole thing if the condition persists */
1203 timeo = HZ;
1204 } else
1205 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n",
1206 command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001207
1208 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001209 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210
David Woodhouse18c52e72007-12-17 16:03:58 -05001211 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001212}
1213
Holger Schurig69f90322007-11-23 15:43:44 +01001214static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215 struct cmd_ds_command *cmd)
1216{
1217 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1218
Holger Schurig9012b282007-05-25 11:27:16 -04001219 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001220
Dan Williams0aef64d2007-08-02 11:31:18 -04001221 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001222 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001223 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224
Holger Schurig8ff12da2007-08-02 11:54:31 -04001225 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001226 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227
Holger Schurig9012b282007-05-25 11:27:16 -04001228 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229 return 0;
1230}
1231
1232/**
1233 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001234 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001236static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001237 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001238{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001239 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001240
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001241 if (!cmdnode)
1242 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001243
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001244 cmdnode->callback = NULL;
1245 cmdnode->callback_arg = 0;
1246
1247 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1248
1249 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1250 out:
1251 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252}
1253
Holger Schurig69f90322007-11-23 15:43:44 +01001254static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1255 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001256{
1257 unsigned long flags;
1258
David Woodhouseaa21c002007-12-08 20:04:36 +00001259 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001260 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001261 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001262}
1263
David Woodhouse183aeac2007-12-15 01:52:54 -05001264void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1265 int result)
1266{
1267 if (cmd == priv->cur_cmd)
1268 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001269
David Woodhouseae125bf2007-12-15 04:22:52 -05001270 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001271 cmd->cmdwaitqwoken = 1;
1272 wake_up_interruptible(&cmd->cmdwait_q);
1273
David Woodhousead12d0f2007-12-15 02:06:16 -05001274 if (!cmd->callback)
1275 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001276 priv->cur_cmd = NULL;
1277}
1278
Holger Schurig69f90322007-11-23 15:43:44 +01001279int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280{
1281 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001282 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001283
Holger Schurig9012b282007-05-25 11:27:16 -04001284 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001285
David Woodhousea7c45892007-12-17 22:43:48 -05001286 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1287 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001288
David Woodhousea7c45892007-12-17 22:43:48 -05001289 switch (priv->preamble) {
1290 case CMD_TYPE_SHORT_PREAMBLE:
1291 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1292 break;
1293
1294 case CMD_TYPE_LONG_PREAMBLE:
1295 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1296 break;
1297
1298 case CMD_TYPE_AUTO_PREAMBLE:
1299 default:
1300 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1301 break;
1302 }
1303
1304 if (priv->radioon)
1305 cmd.control |= cpu_to_le16(TURN_ON_RF);
1306 else
1307 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1308
1309 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1310 priv->preamble);
1311
1312 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001313
Holger Schurig9012b282007-05-25 11:27:16 -04001314 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001315 return ret;
1316}
1317
Holger Schurig69f90322007-11-23 15:43:44 +01001318int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001319{
1320 int ret = 0;
1321
Holger Schurig9012b282007-05-25 11:27:16 -04001322 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001325 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001326 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001327
Holger Schurig9012b282007-05-25 11:27:16 -04001328 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001329 return ret;
1330}
1331
1332/**
1333 * @brief This function prepare the command before send to firmware.
1334 *
Holger Schurig69f90322007-11-23 15:43:44 +01001335 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001336 * @param cmd_no command number
1337 * @param cmd_action command action: GET or SET
1338 * @param wait_option wait option: wait response or not
1339 * @param cmd_oid cmd oid: treated as sub command
1340 * @param pdata_buf A pointer to informaion buffer
1341 * @return 0 or -1
1342 */
Holger Schurig69f90322007-11-23 15:43:44 +01001343int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001344 u16 cmd_no,
1345 u16 cmd_action,
1346 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1347{
1348 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001349 struct cmd_ctrl_node *cmdnode;
1350 struct cmd_ds_command *cmdptr;
1351 unsigned long flags;
1352
Holger Schurig8ff12da2007-08-02 11:54:31 -04001353 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001354
David Woodhouseaa21c002007-12-08 20:04:36 +00001355 if (!priv) {
1356 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 ret = -1;
1358 goto done;
1359 }
1360
David Woodhouseaa21c002007-12-08 20:04:36 +00001361 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001362 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 ret = -1;
1364 goto done;
1365 }
1366
Holger Schurig0d61d042007-12-05 17:58:06 +01001367 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368
1369 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001370 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001371
1372 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001373 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001374 ret = -1;
1375 goto done;
1376 }
1377
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001378 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001379
Dan Williamsddac4522007-12-11 13:49:39 -05001380 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381
Holger Schurig8ff12da2007-08-02 11:54:31 -04001382 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001383
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001384 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001385 priv->seqnum++;
1386 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001387
David Woodhouse981f1872007-05-25 23:36:54 -04001388 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001389 cmdptr->result = 0;
1390
1391 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001392 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001393 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001394 break;
1395
Dan Williams0aef64d2007-08-02 11:31:18 -04001396 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001397 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001398 break;
1399
Dan Williams0aef64d2007-08-02 11:31:18 -04001400 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001401 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402 break;
1403
Dan Williams0aef64d2007-08-02 11:31:18 -04001404 case CMD_802_11_ASSOCIATE:
1405 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001406 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001407 break;
1408
Dan Williams0aef64d2007-08-02 11:31:18 -04001409 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001410 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001411 break;
1412
Dan Williams0aef64d2007-08-02 11:31:18 -04001413 case CMD_802_11_SET_WEP:
Holger Schurig10078322007-11-15 18:05:47 -05001414 ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001415 break;
1416
Dan Williams0aef64d2007-08-02 11:31:18 -04001417 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001418 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001419 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001420 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001421 break;
1422
Dan Williams0aef64d2007-08-02 11:31:18 -04001423 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001424 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001425 break;
1426
Dan Williams0aef64d2007-08-02 11:31:18 -04001427 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001428 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001429 break;
1430
Dan Williams0aef64d2007-08-02 11:31:18 -04001431 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001432 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 break;
1434
Dan Williams0aef64d2007-08-02 11:31:18 -04001435 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001436 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001437 break;
1438
Dan Williams0aef64d2007-08-02 11:31:18 -04001439 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001440 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001441 cmd_action, cmd_oid, pdata_buf);
1442 break;
1443
Dan Williams0aef64d2007-08-02 11:31:18 -04001444 case CMD_MAC_REG_ACCESS:
1445 case CMD_BBP_REG_ACCESS:
1446 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001447 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001448 break;
1449
Dan Williams0aef64d2007-08-02 11:31:18 -04001450 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001451 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001452 cmd_action, pdata_buf);
1453 break;
1454
Dan Williams0aef64d2007-08-02 11:31:18 -04001455 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001456 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001457 cmdptr, cmd_action);
1458 break;
1459
Dan Williams0aef64d2007-08-02 11:31:18 -04001460 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001461 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001462 break;
1463
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001464 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001465 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001466 cmd_action, pdata_buf);
1467 break;
1468
Dan Williams0aef64d2007-08-02 11:31:18 -04001469 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001470 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001471 break;
1472
Dan Williams0aef64d2007-08-02 11:31:18 -04001473 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001474 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001475 break;
1476
Dan Williams0aef64d2007-08-02 11:31:18 -04001477 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001478 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479 break;
1480
Dan Williams0aef64d2007-08-02 11:31:18 -04001481 case CMD_802_11_ENABLE_RSN:
Holger Schurig10078322007-11-15 18:05:47 -05001482 ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001483 pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001484 break;
1485
Dan Williams0aef64d2007-08-02 11:31:18 -04001486 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001487 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001488 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001489 break;
1490
Dan Williams0aef64d2007-08-02 11:31:18 -04001491 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001492 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001493 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001494 break;
1495
Dan Williams0aef64d2007-08-02 11:31:18 -04001496 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001497 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001498 break;
1499
Dan Williams0aef64d2007-08-02 11:31:18 -04001500 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001501 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502 cmd_action, pdata_buf);
1503 break;
1504
Dan Williams0aef64d2007-08-02 11:31:18 -04001505 case CMD_802_11_SET_AFC:
1506 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507
1508 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001509 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1510 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001511
1512 memmove(&cmdptr->params.afc,
1513 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1514
1515 ret = 0;
1516 goto done;
1517
Dan Williams0aef64d2007-08-02 11:31:18 -04001518 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001519 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001520 cmd_no, cmd_action);
1521 break;
1522
Dan Williams0aef64d2007-08-02 11:31:18 -04001523 case CMD_802_11_SLEEP_PARAMS:
Holger Schurig10078322007-11-15 18:05:47 -05001524 ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001526
Dan Williams0aef64d2007-08-02 11:31:18 -04001527 case CMD_802_11_TPC_CFG:
1528 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001529 cmdptr->size =
1530 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1531 S_DS_GEN);
1532
1533 memmove(&cmdptr->params.tpccfg,
1534 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1535
1536 ret = 0;
1537 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001538 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001539 {
1540 struct mrvlietypes_ledgpio *gpio =
1541 (struct mrvlietypes_ledgpio*)
1542 cmdptr->params.ledgpio.data;
1543
1544 memmove(&cmdptr->params.ledgpio,
1545 pdata_buf,
1546 sizeof(struct cmd_ds_802_11_led_ctrl));
1547
1548 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001549 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001550
1551#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1552 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001553 cpu_to_le16(le16_to_cpu(gpio->header.len)
1554 + S_DS_GEN
1555 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1556 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001557
1558 ret = 0;
1559 break;
1560 }
Holger Schurig3a188642007-11-26 10:07:14 +01001561 case CMD_802_11_SUBSCRIBE_EVENT:
1562 lbs_cmd_802_11_subscribe_event(priv, cmdptr,
1563 cmd_action, pdata_buf);
1564 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001565 case CMD_802_11_PWR_CFG:
1566 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001567 cmdptr->size =
1568 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1569 S_DS_GEN);
1570 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1571 sizeof(struct cmd_ds_802_11_pwr_cfg));
1572
1573 ret = 0;
1574 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001575 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001576 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001577 break;
1578
Dan Williams0aef64d2007-08-02 11:31:18 -04001579 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001580 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001581 break;
1582
Dan Williams0aef64d2007-08-02 11:31:18 -04001583 case CMD_GET_TSF:
1584 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001585 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1586 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001587 ret = 0;
1588 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001589 case CMD_802_11_BEACON_CTRL:
1590 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1591 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001592 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001593 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001594 ret = -1;
1595 break;
1596 }
1597
1598 /* return error, since the command preparation failed */
1599 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001600 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001601 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001602 ret = -1;
1603 goto done;
1604 }
1605
1606 cmdnode->cmdwaitqwoken = 0;
1607
David Woodhouse681ffbb2007-12-15 20:04:54 -05001608 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001609 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001610
Dan Williams0aef64d2007-08-02 11:31:18 -04001611 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001612 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001613 might_sleep();
1614 wait_event_interruptible(cmdnode->cmdwait_q,
1615 cmdnode->cmdwaitqwoken);
1616 }
1617
David Woodhouseaa21c002007-12-08 20:04:36 +00001618 spin_lock_irqsave(&priv->driver_lock, flags);
1619 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001620 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001621 priv->cur_cmd_retcode);
1622 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001623 ret = -1;
1624 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001625 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001626
1627done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001628 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001629 return ret;
1630}
Holger Schurig10078322007-11-15 18:05:47 -05001631EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001632
1633/**
1634 * @brief This function allocates the command buffer and link
1635 * it to command free queue.
1636 *
Holger Schurig69f90322007-11-23 15:43:44 +01001637 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001638 * @return 0 or -1
1639 */
Holger Schurig69f90322007-11-23 15:43:44 +01001640int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001641{
1642 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001643 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001644 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001645 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001646
Holger Schurig8ff12da2007-08-02 11:54:31 -04001647 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001648
Dan Williamsddac4522007-12-11 13:49:39 -05001649 /* Allocate and initialize the command array */
1650 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1651 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001652 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001653 ret = -1;
1654 goto done;
1655 }
Dan Williamsddac4522007-12-11 13:49:39 -05001656 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001657
Dan Williamsddac4522007-12-11 13:49:39 -05001658 /* Allocate and initialize each command buffer in the command array */
1659 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1660 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1661 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001662 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001663 ret = -1;
1664 goto done;
1665 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001666 }
1667
Dan Williamsddac4522007-12-11 13:49:39 -05001668 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1669 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1670 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001672 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001673
1674done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001675 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001676 return ret;
1677}
1678
1679/**
1680 * @brief This function frees the command buffer.
1681 *
Holger Schurig69f90322007-11-23 15:43:44 +01001682 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001683 * @return 0 or -1
1684 */
Holger Schurig69f90322007-11-23 15:43:44 +01001685int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001686{
Dan Williamsddac4522007-12-11 13:49:39 -05001687 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001688 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001689
Holger Schurig8ff12da2007-08-02 11:54:31 -04001690 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001691
1692 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001693 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001694 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001695 goto done;
1696 }
1697
Dan Williamsddac4522007-12-11 13:49:39 -05001698 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001699
1700 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001701 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1702 if (cmdarray[i].cmdbuf) {
1703 kfree(cmdarray[i].cmdbuf);
1704 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001705 }
1706 }
1707
1708 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001709 if (priv->cmd_array) {
1710 kfree(priv->cmd_array);
1711 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001712 }
1713
1714done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001715 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001716 return 0;
1717}
1718
1719/**
1720 * @brief This function gets a free command node if available in
1721 * command free queue.
1722 *
Holger Schurig69f90322007-11-23 15:43:44 +01001723 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001724 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1725 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001726static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001727{
1728 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001729 unsigned long flags;
1730
Holger Schurig8ff12da2007-08-02 11:54:31 -04001731 lbs_deb_enter(LBS_DEB_HOST);
1732
David Woodhouseaa21c002007-12-08 20:04:36 +00001733 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001734 return NULL;
1735
David Woodhouseaa21c002007-12-08 20:04:36 +00001736 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001737
David Woodhouseaa21c002007-12-08 20:04:36 +00001738 if (!list_empty(&priv->cmdfreeq)) {
1739 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001740 struct cmd_ctrl_node, list);
1741 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001742 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001743 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001744 tempnode = NULL;
1745 }
1746
David Woodhouseaa21c002007-12-08 20:04:36 +00001747 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001748
Holger Schurig8ff12da2007-08-02 11:54:31 -04001749 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001750 return tempnode;
1751}
1752
1753/**
1754 * @brief This function cleans command node.
1755 *
1756 * @param ptempnode A pointer to cmdCtrlNode structure
1757 * @return n/a
1758 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001759
1760/**
1761 * @brief This function initializes the command node.
1762 *
Holger Schurig69f90322007-11-23 15:43:44 +01001763 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001764 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001765 * @param pdata_buf A pointer to informaion buffer
1766 * @return 0 or -1
1767 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001768static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1769 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001770 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001771{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001772 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773
1774 if (!ptempnode)
1775 return;
1776
David Woodhouse17230472007-12-07 15:13:05 +00001777 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001778 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001779
Holger Schurig8ff12da2007-08-02 11:54:31 -04001780 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001781}
1782
1783/**
1784 * @brief This function executes next command in command
1785 * pending queue. It will put fimware back to PS mode
1786 * if applicable.
1787 *
Holger Schurig69f90322007-11-23 15:43:44 +01001788 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789 * @return 0 or -1
1790 */
Holger Schurig69f90322007-11-23 15:43:44 +01001791int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001792{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001793 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001794 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795 unsigned long flags;
1796 int ret = 0;
1797
Holger Schurig8ff12da2007-08-02 11:54:31 -04001798 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001799 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001800 // data packet is received
1801 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001802
David Woodhouseaa21c002007-12-08 20:04:36 +00001803 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804
David Woodhouseaa21c002007-12-08 20:04:36 +00001805 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001806 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001807 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001808 ret = -1;
1809 goto done;
1810 }
1811
David Woodhouseaa21c002007-12-08 20:04:36 +00001812 if (!list_empty(&priv->cmdpendingq)) {
1813 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001814 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001815 }
1816
David Woodhouseaa21c002007-12-08 20:04:36 +00001817 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001818
1819 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001820 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001821
Dan Williamsddac4522007-12-11 13:49:39 -05001822 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001823 if ((priv->psstate == PS_STATE_SLEEP) ||
1824 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001825 lbs_deb_host(
1826 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001827 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001828 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001829 ret = -1;
1830 goto done;
1831 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001832 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001833 "0x%04x in psstate %d\n",
1834 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001835 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001836 /*
1837 * 1. Non-PS command:
1838 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001839 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001840 * 2. PS command but not Exit_PS:
1841 * Ignore it.
1842 * 3. PS command Exit_PS:
1843 * Set needtowakeup to TRUE if current state is SLEEP,
1844 * otherwise send this command down to firmware
1845 * immediately.
1846 */
Dan Williamsddac4522007-12-11 13:49:39 -05001847 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001848 /* Prepare to send Exit PS,
1849 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001850 if ((priv->psstate == PS_STATE_SLEEP)
1851 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001852 ) {
1853 /* w/ new scheme, it will not reach here.
1854 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001855 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001856 } else
Holger Schurig10078322007-11-15 18:05:47 -05001857 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001858
1859 ret = 0;
1860 goto done;
1861 } else {
1862 /*
1863 * PS command. Ignore it if it is not Exit_PS.
1864 * otherwise send it down immediately.
1865 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001866 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001867
Holger Schurig8ff12da2007-08-02 11:54:31 -04001868 lbs_deb_host(
1869 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001870 psm->action);
1871 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001872 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001873 lbs_deb_host(
1874 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001875 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001876 spin_lock_irqsave(&priv->driver_lock, flags);
1877 lbs_complete_command(priv, cmdnode, 0);
1878 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001879
1880 ret = 0;
1881 goto done;
1882 }
1883
David Woodhouseaa21c002007-12-08 20:04:36 +00001884 if ((priv->psstate == PS_STATE_SLEEP) ||
1885 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001886 lbs_deb_host(
1887 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001888 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001889 spin_lock_irqsave(&priv->driver_lock, flags);
1890 lbs_complete_command(priv, cmdnode, 0);
1891 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001892 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001893
1894 ret = 0;
1895 goto done;
1896 }
1897
Holger Schurig8ff12da2007-08-02 11:54:31 -04001898 lbs_deb_host(
1899 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001900 }
1901 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001902 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001903 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001904 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001905 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001906 } else {
1907 /*
1908 * check if in power save mode, if yes, put the device back
1909 * to PS mode
1910 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001911 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1912 (priv->psstate == PS_STATE_FULL_POWER) &&
1913 ((priv->connect_status == LBS_CONNECTED) ||
1914 (priv->mesh_connect_status == LBS_CONNECTED))) {
1915 if (priv->secinfo.WPAenabled ||
1916 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001917 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001918 if (priv->wpa_mcast_key.len ||
1919 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001920 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001921 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1922 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001923 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001924 }
1925 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001926 lbs_deb_host(
1927 "EXEC_NEXT_CMD: cmdpendingq empty, "
1928 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001929 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001930 }
1931 }
1932 }
1933
1934 ret = 0;
1935done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001936 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001937 return ret;
1938}
1939
Holger Schurig69f90322007-11-23 15:43:44 +01001940void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001941{
1942 union iwreq_data iwrq;
1943 u8 buf[50];
1944
Holger Schurig8ff12da2007-08-02 11:54:31 -04001945 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001946
1947 memset(&iwrq, 0, sizeof(union iwreq_data));
1948 memset(buf, 0, sizeof(buf));
1949
1950 snprintf(buf, sizeof(buf) - 1, "%s", str);
1951
1952 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1953
1954 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001955 lbs_deb_wext("event indication string %s\n", (char *)buf);
1956 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1957 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001958
Holger Schurig634b8f42007-05-25 13:05:16 -04001959 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960
Holger Schurig8ff12da2007-08-02 11:54:31 -04001961 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001962}
1963
Holger Schurig69f90322007-11-23 15:43:44 +01001964static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001965{
1966 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001967 int ret = 0;
1968
Holger Schurig8ff12da2007-08-02 11:54:31 -04001969 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970
Holger Schurig8ff12da2007-08-02 11:54:31 -04001971 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001972 size);
1973
Holger Schurig8ff12da2007-08-02 11:54:31 -04001974 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001975
Holger Schurig208fdd22007-05-25 12:17:06 -04001976 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001977
David Woodhouseaa21c002007-12-08 20:04:36 +00001978 spin_lock_irqsave(&priv->driver_lock, flags);
1979 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001980 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001981 priv->intcounter, priv->currenttxskb);
1982 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983
1984 if (ret) {
1985 lbs_pr_alert(
1986 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1987 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001988 spin_lock_irqsave(&priv->driver_lock, flags);
1989 if (!priv->intcounter) {
1990 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001991 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001992 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001993 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001994 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001995 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996
Holger Schurig8ff12da2007-08-02 11:54:31 -04001997 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001998 }
1999
Holger Schurig8ff12da2007-08-02 11:54:31 -04002000 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002001 return ret;
2002}
2003
Holger Schurig69f90322007-11-23 15:43:44 +01002004void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002005{
Holger Schurig8ff12da2007-08-02 11:54:31 -04002006 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002007
2008 /*
2009 * PS is currently supported only in Infrastructure mode
2010 * Remove this check if it is to be supported in IBSS mode also
2011 */
2012
Holger Schurig10078322007-11-15 18:05:47 -05002013 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002014 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002015
Holger Schurig8ff12da2007-08-02 11:54:31 -04002016 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002017}
2018
2019/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04002020 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002021 *
Holger Schurig69f90322007-11-23 15:43:44 +01002022 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002023 * @param wait_option wait response or not
2024 * @return n/a
2025 */
Holger Schurig69f90322007-11-23 15:43:44 +01002026void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002027{
David Woodhouse981f1872007-05-25 23:36:54 -04002028 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002029
Holger Schurig8ff12da2007-08-02 11:54:31 -04002030 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002031
Holger Schurig10078322007-11-15 18:05:47 -05002032 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002033
Holger Schurig10078322007-11-15 18:05:47 -05002034 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04002035 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002036 wait_option, 0, &Localpsmode);
2037
Holger Schurig8ff12da2007-08-02 11:54:31 -04002038 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002039}
2040
2041/**
2042 * @brief This function checks condition and prepares to
2043 * send sleep confirm command to firmware if ok.
2044 *
Holger Schurig69f90322007-11-23 15:43:44 +01002045 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002046 * @param psmode Power Saving mode
2047 * @return n/a
2048 */
Holger Schurig69f90322007-11-23 15:43:44 +01002049void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002050{
2051 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002052 u8 allowed = 1;
2053
Holger Schurig8ff12da2007-08-02 11:54:31 -04002054 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002055
Holger Schurig634b8f42007-05-25 13:05:16 -04002056 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002057 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002058 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002059 }
2060
David Woodhouseaa21c002007-12-08 20:04:36 +00002061 spin_lock_irqsave(&priv->driver_lock, flags);
2062 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002063 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002064 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002065 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002066 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002067 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002068 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002069 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002070 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002071
2072 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002073 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002074 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002075 sizeof(struct PS_CMD_ConfirmSleep));
2076 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002077 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002078 }
2079
Holger Schurig8ff12da2007-08-02 11:54:31 -04002080 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002081}
Holger Schurig675787e2007-12-05 17:58:11 +01002082
2083
2084/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002085 * @brief Simple callback that copies response back into command
2086 *
2087 * @param priv A pointer to struct lbs_private structure
2088 * @param extra A pointer to the original command structure for which
2089 * 'resp' is a response
2090 * @param resp A pointer to the command response
2091 *
2092 * @return 0 on success, error on failure
2093 */
2094int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002095 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002096{
2097 struct cmd_header *buf = (void *)extra;
2098 uint16_t copy_len;
2099
2100 lbs_deb_enter(LBS_DEB_CMD);
2101
2102 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2103 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002104 "copy back buffer was %u bytes\n", copy_len,
2105 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002106 memcpy(buf, resp, copy_len);
2107
2108 lbs_deb_leave(LBS_DEB_CMD);
2109 return 0;
2110}
David Woodhouse689442d2007-12-12 16:00:42 -05002111EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002112
David Woodhouse3399ea52007-12-15 03:09:33 -05002113struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2114 struct cmd_header *in_cmd, int in_cmd_size,
2115 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2116 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002117{
Holger Schurig675787e2007-12-05 17:58:11 +01002118 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002119
2120 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002121
David Woodhouseaa21c002007-12-08 20:04:36 +00002122 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002123 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002124 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002125 goto done;
2126 }
2127
2128 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002129 if (cmdnode == NULL) {
2130 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2131
2132 /* Wake up main thread to execute next command */
2133 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002134 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002135 goto done;
2136 }
2137
David Woodhouse448a51a2007-12-08 00:59:54 +00002138 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002139 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002140
Dan Williams7ad994d2007-12-11 12:33:30 -05002141 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002142 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002143
Holger Schurig675787e2007-12-05 17:58:11 +01002144 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002145 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002146 cmdnode->cmdbuf->command = cpu_to_le16(command);
2147 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2148 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2149 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002150
2151 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2152
2153 /* here was the big old switch() statement, which is now obsolete,
2154 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2155
2156 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002157 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002158 wake_up_interruptible(&priv->waitq);
2159
David Woodhouse3399ea52007-12-15 03:09:33 -05002160 done:
2161 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2162 return cmdnode;
2163}
2164
2165int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2166 struct cmd_header *in_cmd, int in_cmd_size,
2167 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2168 unsigned long callback_arg)
2169{
2170 struct cmd_ctrl_node *cmdnode;
2171 unsigned long flags;
2172 int ret = 0;
2173
2174 lbs_deb_enter(LBS_DEB_HOST);
2175
2176 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2177 callback, callback_arg);
2178 if (IS_ERR(cmdnode)) {
2179 ret = PTR_ERR(cmdnode);
2180 goto done;
2181 }
2182
Holger Schurig675787e2007-12-05 17:58:11 +01002183 might_sleep();
2184 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2185
David Woodhouseaa21c002007-12-08 20:04:36 +00002186 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002187 ret = cmdnode->result;
2188 if (ret)
2189 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2190 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002191
David Woodhousead12d0f2007-12-15 02:06:16 -05002192 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002193 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002194
2195done:
2196 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2197 return ret;
2198}
Dan Williams14e865b2007-12-10 15:11:23 -05002199EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002200
2201