blob: 4d06dec6cd46288137355765c63a5f1cad366510 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
5
6#include <net/iw_handler.h>
7#include "host.h"
8#include "hostcmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009#include "decl.h"
10#include "defs.h"
11#include "dev.h"
12#include "join.h"
13#include "wext.h"
Dan Williams6e66f032007-12-11 12:42:16 -050014#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015
David Woodhouse2fd6cfe2007-12-11 17:44:10 -050016static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv);
17static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
Holger Schurig0d61d042007-12-05 17:58:06 +010018 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -050019 void *pdata_buf);
Holger Schurig0d61d042007-12-05 17:58:06 +010020
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020022/**
Dan Williams852e1f22007-12-10 15:24:47 -050023 * @brief Checks whether a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020024 *
25 * @param command the command ID
Dan Williams852e1f22007-12-10 15:24:47 -050026 * @return 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027 */
Dan Williams852e1f22007-12-10 15:24:47 -050028static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020029{
Dan Williams852e1f22007-12-10 15:24:47 -050030 switch (cmd) {
31 case CMD_802_11_RSSI:
32 return 1;
33 default:
34 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020035 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020036 return 0;
37}
38
Dan Williams6e66f032007-12-11 12:42:16 -050039/**
40 * @brief Updates the hardware details like MAC address and regulatory region
41 *
42 * @param priv A pointer to struct lbs_private structure
43 *
44 * @return 0 on success, error on failure
45 */
46int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020047{
Dan Williams6e66f032007-12-11 12:42:16 -050048 struct cmd_ds_get_hw_spec cmd;
49 int ret = -1;
50 u32 i;
51 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020052
Holger Schurig9012b282007-05-25 11:27:16 -040053 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054
Dan Williams6e66f032007-12-11 12:42:16 -050055 memset(&cmd, 0, sizeof(cmd));
56 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
57 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050058 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050059 if (ret)
60 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061
Dan Williams6e66f032007-12-11 12:42:16 -050062 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
63 memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4);
64
65 lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n",
66 priv->fwreleasenumber[2], priv->fwreleasenumber[1],
67 priv->fwreleasenumber[0], priv->fwreleasenumber[3]);
68 lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n",
69 print_mac(mac, cmd.permanentaddr));
70 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
71 cmd.hwifversion, cmd.version);
72
73 /* Clamp region code to 8-bit since FW spec indicates that it should
74 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
75 * returns non-zero high 8 bits here.
76 */
77 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
78
79 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
80 /* use the region code to search for the index */
81 if (priv->regioncode == lbs_region_code_to_index[i])
82 break;
83 }
84
85 /* if it's unidentified region code, use the default (USA) */
86 if (i >= MRVDRV_MAX_REGION_CODE) {
87 priv->regioncode = 0x10;
88 lbs_pr_info("unidentified region code; using the default (USA)\n");
89 }
90
91 if (priv->current_addr[0] == 0xff)
92 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
93
94 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
95 if (priv->mesh_dev)
96 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
97
98 if (lbs_set_regiontable(priv, priv->regioncode, 0)) {
99 ret = -1;
100 goto out;
101 }
102
103 if (lbs_set_universaltable(priv, 0)) {
104 ret = -1;
105 goto out;
106 }
107
108out:
Holger Schurig9012b282007-05-25 11:27:16 -0400109 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500110 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200111}
112
David Woodhouse506e9022007-12-12 20:06:06 -0500113int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500114{
115 struct cmd_ds_host_sleep cmd_config;
116 int ret;
117
David Woodhouse9fae8992007-12-15 03:46:44 -0500118 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500119 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500120 cmd_config.gpio = priv->wol_gpio;
121 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500122
David Woodhouse689442d2007-12-12 16:00:42 -0500123 ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config);
David Woodhouse506e9022007-12-12 20:06:06 -0500124 if (!ret) {
125 lbs_deb_cmd("Set WOL criteria to %x\n", criteria);
126 priv->wol_criteria = criteria;
127 } else {
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500128 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500129 }
David Woodhouse506e9022007-12-12 20:06:06 -0500130
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500131 return ret;
132}
133EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
134
Holger Schurig69f90322007-11-23 15:43:44 +0100135static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 struct cmd_ds_command *cmd,
137 u16 cmd_action)
138{
139 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140
Holger Schurig9012b282007-05-25 11:27:16 -0400141 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200142
Dan Williams0aef64d2007-08-02 11:31:18 -0400143 cmd->command = cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouse981f1872007-05-25 23:36:54 -0400144 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
145 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200146 psm->action = cpu_to_le16(cmd_action);
147 psm->multipledtim = 0;
David Woodhouse981f1872007-05-25 23:36:54 -0400148 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400149 case CMD_SUBCMD_ENTER_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400150 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200151
Holger Schurig252cf0d2007-08-02 13:09:34 -0400152 psm->locallisteninterval = 0;
Holger Schurig97605c32007-08-02 13:09:15 -0400153 psm->nullpktinterval = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 psm->multipledtim =
Holger Schurig56c46562007-08-02 13:09:49 -0400155 cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200156 break;
157
Dan Williams0aef64d2007-08-02 11:31:18 -0400158 case CMD_SUBCMD_EXIT_PS:
Holger Schurig9012b282007-05-25 11:27:16 -0400159 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200160 break;
161
Dan Williams0aef64d2007-08-02 11:31:18 -0400162 case CMD_SUBCMD_SLEEP_CONFIRMED:
Holger Schurig9012b282007-05-25 11:27:16 -0400163 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164 break;
165
166 default:
167 break;
168 }
169
Holger Schurig9012b282007-05-25 11:27:16 -0400170 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200171 return 0;
172}
173
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500174int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv,
175 uint16_t cmd_action, uint16_t *timeout)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200176{
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500177 struct cmd_ds_802_11_inactivity_timeout cmd;
178 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200179
Holger Schurig8ff12da2007-08-02 11:54:31 -0400180 lbs_deb_enter(LBS_DEB_CMD);
181
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500182 cmd.hdr.command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT);
183 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200184
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500185 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200186
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500187 if (cmd_action == CMD_ACT_SET)
188 cmd.timeout = cpu_to_le16(*timeout);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200189 else
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500190 cmd.timeout = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200191
David Woodhouse6e5cc4f2007-12-17 23:04:37 -0500192 ret = lbs_cmd_with_response(priv, CMD_802_11_INACTIVITY_TIMEOUT, &cmd);
193
194 if (!ret)
195 *timeout = le16_to_cpu(cmd.timeout);
196
197 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200198 return 0;
199}
200
David Woodhouse3fbe1042007-12-17 23:48:31 -0500201int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
202 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200203{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500204 struct cmd_ds_802_11_sleep_params cmd;
205 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200206
Holger Schurig9012b282007-05-25 11:27:16 -0400207 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200208
Dan Williams0aef64d2007-08-02 11:31:18 -0400209 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500210 memset(&cmd, 0, sizeof(cmd));
211 } else {
212 cmd.error = cpu_to_le16(sp->sp_error);
213 cmd.offset = cpu_to_le16(sp->sp_offset);
214 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
215 cmd.calcontrol = sp->sp_calcontrol;
216 cmd.externalsleepclk = sp->sp_extsleepclk;
217 cmd.reserved = cpu_to_le16(sp->sp_reserved);
218 }
219 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
220 cmd.action = cpu_to_le16(cmd_action);
221
222 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
223
224 if (!ret) {
225 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
226 "calcontrol 0x%x extsleepclk 0x%x\n",
227 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
228 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
229 cmd.externalsleepclk);
230
231 sp->sp_error = le16_to_cpu(cmd.error);
232 sp->sp_offset = le16_to_cpu(cmd.offset);
233 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
234 sp->sp_calcontrol = cmd.calcontrol;
235 sp->sp_extsleepclk = cmd.externalsleepclk;
236 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237 }
238
David Woodhouse3fbe1042007-12-17 23:48:31 -0500239 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240 return 0;
241}
242
David Woodhousef70dd452007-12-18 00:18:05 -0500243int lbs_cmd_802_11_set_wep(struct lbs_private *priv, uint16_t cmd_action,
244 struct assoc_request *assoc)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200245{
David Woodhousef70dd452007-12-18 00:18:05 -0500246 struct cmd_ds_802_11_set_wep cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200248
Holger Schurig9012b282007-05-25 11:27:16 -0400249 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200250
David Woodhousef70dd452007-12-18 00:18:05 -0500251 cmd.hdr.command = cpu_to_le16(CMD_802_11_SET_WEP);
252 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200253
David Woodhousef70dd452007-12-18 00:18:05 -0500254 cmd.action = cpu_to_le16(cmd_action);
255
256 if (cmd_action == CMD_ACT_ADD) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 int i;
258
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200259 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500260 cmd.keyindex = cpu_to_le16(assoc->wep_tx_keyidx &
261 CMD_WEP_KEY_INDEX_MASK);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200262
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200263 /* Copy key types and material to host command structure */
264 for (i = 0; i < 4; i++) {
David Woodhousef70dd452007-12-18 00:18:05 -0500265 struct enc_key *pkey = &assoc->wep_keys[i];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266
267 switch (pkey->len) {
268 case KEY_LEN_WEP_40:
David Woodhousef70dd452007-12-18 00:18:05 -0500269 cmd.keytype[i] = CMD_TYPE_WEP_40_BIT;
270 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400271 lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200272 break;
273 case KEY_LEN_WEP_104:
David Woodhousef70dd452007-12-18 00:18:05 -0500274 cmd.keytype[i] = CMD_TYPE_WEP_104_BIT;
275 memmove(cmd.keymaterial[i], pkey->key, pkey->len);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400276 lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200277 break;
278 case 0:
279 break;
280 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400281 lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n",
David Woodhousef70dd452007-12-18 00:18:05 -0500282 i, pkey->len);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200283 ret = -1;
284 goto done;
285 break;
286 }
287 }
David Woodhousef70dd452007-12-18 00:18:05 -0500288 } else if (cmd_action == CMD_ACT_REMOVE) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200289 /* ACT_REMOVE clears _all_ WEP keys */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200290
291 /* default tx key index */
David Woodhousef70dd452007-12-18 00:18:05 -0500292 cmd.keyindex = cpu_to_le16(priv->wep_tx_keyidx &
293 CMD_WEP_KEY_INDEX_MASK);
David Woodhouseaa21c002007-12-08 20:04:36 +0000294 lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200295 }
296
David Woodhousef70dd452007-12-18 00:18:05 -0500297 ret = lbs_cmd_with_response(priv, CMD_802_11_SET_WEP, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200298done:
Holger Schurig9012b282007-05-25 11:27:16 -0400299 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200300 return ret;
301}
302
David Woodhouse4f59abf2007-12-18 00:47:17 -0500303int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv, uint16_t cmd_action,
304 uint16_t *enable)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200305{
David Woodhouse4f59abf2007-12-18 00:47:17 -0500306 struct cmd_ds_802_11_enable_rsn cmd;
307 int ret;
Dan Williams90a42212007-05-25 23:01:24 -0400308
309 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200310
David Woodhouse4f59abf2007-12-18 00:47:17 -0500311 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
312 cmd.action = cpu_to_le16(cmd_action);
Dan Williams18c96c342007-06-18 12:01:12 -0400313
Dan Williams0aef64d2007-08-02 11:31:18 -0400314 if (cmd_action == CMD_ACT_SET) {
Dan Williams18c96c342007-06-18 12:01:12 -0400315 if (*enable)
David Woodhouse4f59abf2007-12-18 00:47:17 -0500316 cmd.enable = cpu_to_le16(CMD_ENABLE_RSN);
Dan Williams18c96c342007-06-18 12:01:12 -0400317 else
David Woodhouse4f59abf2007-12-18 00:47:17 -0500318 cmd.enable = cpu_to_le16(CMD_DISABLE_RSN);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400319 lbs_deb_cmd("ENABLE_RSN: %d\n", *enable);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200320 }
321
David Woodhouse4f59abf2007-12-18 00:47:17 -0500322 ret = lbs_cmd_with_response(priv, CMD_802_11_ENABLE_RSN, &cmd);
323 if (!ret && cmd_action == CMD_ACT_GET)
324 *enable = le16_to_cpu(cmd.enable);
325
326 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
327 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200328}
329
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200330static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
Dan Williams1443b652007-08-02 10:45:55 -0400331 struct enc_key * pkey)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200332{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400333 lbs_deb_enter(LBS_DEB_CMD);
334
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200335 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
Dan Williams90a42212007-05-25 23:01:24 -0400336 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200337 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200338 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
339 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
Dan Williams90a42212007-05-25 23:01:24 -0400340 }
341 if (pkey->flags & KEY_INFO_WPA_MCAST) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200342 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
343 }
344
345 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
Dan Williams1443b652007-08-02 10:45:55 -0400346 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200347 pkeyparamset->keylen = cpu_to_le16(pkey->len);
348 memcpy(pkeyparamset->key, pkey->key, pkey->len);
349 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
350 + sizeof(pkeyparamset->keyinfo)
351 + sizeof(pkeyparamset->keylen)
352 + sizeof(pkeyparamset->key));
Holger Schurig8ff12da2007-08-02 11:54:31 -0400353 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200354}
355
Holger Schurig69f90322007-11-23 15:43:44 +0100356static int lbs_cmd_802_11_key_material(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200357 struct cmd_ds_command *cmd,
358 u16 cmd_action,
359 u32 cmd_oid, void *pdata_buf)
360{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200361 struct cmd_ds_802_11_key_material *pkeymaterial =
362 &cmd->params.keymaterial;
Dan Williams90a42212007-05-25 23:01:24 -0400363 struct assoc_request * assoc_req = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200364 int ret = 0;
365 int index = 0;
366
Holger Schurig9012b282007-05-25 11:27:16 -0400367 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200368
Dan Williams0aef64d2007-08-02 11:31:18 -0400369 cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200370 pkeymaterial->action = cpu_to_le16(cmd_action);
371
Dan Williams0aef64d2007-08-02 11:31:18 -0400372 if (cmd_action == CMD_ACT_GET) {
Dan Williams90a42212007-05-25 23:01:24 -0400373 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200374 ret = 0;
375 goto done;
376 }
377
378 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
379
Dan Williams90a42212007-05-25 23:01:24 -0400380 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200381 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400382 &assoc_req->wpa_unicast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200383 index++;
384 }
385
Dan Williams90a42212007-05-25 23:01:24 -0400386 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200387 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
Dan Williams90a42212007-05-25 23:01:24 -0400388 &assoc_req->wpa_mcast_key);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200389 index++;
390 }
391
392 cmd->size = cpu_to_le16( S_DS_GEN
Dan Williams90a42212007-05-25 23:01:24 -0400393 + sizeof (pkeymaterial->action)
394 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200395
396 ret = 0;
397
398done:
Holger Schurig9012b282007-05-25 11:27:16 -0400399 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200400 return ret;
401}
402
Holger Schurig69f90322007-11-23 15:43:44 +0100403static int lbs_cmd_802_11_reset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200404 struct cmd_ds_command *cmd, int cmd_action)
405{
406 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
407
Holger Schurig8ff12da2007-08-02 11:54:31 -0400408 lbs_deb_enter(LBS_DEB_CMD);
409
Dan Williams0aef64d2007-08-02 11:31:18 -0400410 cmd->command = cpu_to_le16(CMD_802_11_RESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200411 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
412 reset->action = cpu_to_le16(cmd_action);
413
Holger Schurig8ff12da2007-08-02 11:54:31 -0400414 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415 return 0;
416}
417
Holger Schurig69f90322007-11-23 15:43:44 +0100418static int lbs_cmd_802_11_get_log(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200419 struct cmd_ds_command *cmd)
420{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400421 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400422 cmd->command = cpu_to_le16(CMD_802_11_GET_LOG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200423 cmd->size =
424 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
425
Holger Schurig8ff12da2007-08-02 11:54:31 -0400426 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427 return 0;
428}
429
Holger Schurig69f90322007-11-23 15:43:44 +0100430static int lbs_cmd_802_11_get_stat(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200431 struct cmd_ds_command *cmd)
432{
Holger Schurig8ff12da2007-08-02 11:54:31 -0400433 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400434 cmd->command = cpu_to_le16(CMD_802_11_GET_STAT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200435 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400436 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437
Holger Schurig8ff12da2007-08-02 11:54:31 -0400438 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200439 return 0;
440}
441
Holger Schurig69f90322007-11-23 15:43:44 +0100442static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200443 struct cmd_ds_command *cmd,
444 int cmd_action,
445 int cmd_oid, void *pdata_buf)
446{
447 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200448 u8 ucTemp;
449
Holger Schurig9012b282007-05-25 11:27:16 -0400450 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200451
Holger Schurig9012b282007-05-25 11:27:16 -0400452 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200453
Dan Williams0aef64d2007-08-02 11:31:18 -0400454 cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB);
David Woodhouse981f1872007-05-25 23:36:54 -0400455 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200456
457 switch (cmd_oid) {
458 case OID_802_11_INFRASTRUCTURE_MODE:
459 {
Dan Williams0dc5a292007-05-10 22:58:02 -0400460 u8 mode = (u8) (size_t) pdata_buf;
Dan Williams0aef64d2007-08-02 11:31:18 -0400461 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
462 pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I);
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000463 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8));
Dan Williams0dc5a292007-05-10 22:58:02 -0400464 if (mode == IW_MODE_ADHOC) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200465 ucTemp = SNMP_MIB_VALUE_ADHOC;
Dan Williams0dc5a292007-05-10 22:58:02 -0400466 } else {
467 /* Infra and Auto modes */
468 ucTemp = SNMP_MIB_VALUE_INFRA;
469 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200470
471 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
472
473 break;
474 }
475
476 case OID_802_11D_ENABLE:
477 {
478 u32 ulTemp;
479
Dan Williams0aef64d2007-08-02 11:31:18 -0400480 pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200481
Dan Williams0aef64d2007-08-02 11:31:18 -0400482 if (cmd_action == CMD_ACT_SET) {
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000483 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
484 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200485 ulTemp = *(u32 *)pdata_buf;
David Woodhouse981f1872007-05-25 23:36:54 -0400486 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200487 cpu_to_le16((u16) ulTemp);
488 }
489 break;
490 }
491
492 case OID_802_11_FRAGMENTATION_THRESHOLD:
493 {
494 u32 ulTemp;
495
Dan Williams0aef64d2007-08-02 11:31:18 -0400496 pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200497
Dan Williams0aef64d2007-08-02 11:31:18 -0400498 if (cmd_action == CMD_ACT_GET) {
499 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
500 } else if (cmd_action == CMD_ACT_SET) {
501 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400502 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503 ulTemp = *((u32 *) pdata_buf);
David Woodhouse981f1872007-05-25 23:36:54 -0400504 *((__le16 *)(pSNMPMIB->value)) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505 cpu_to_le16((u16) ulTemp);
506
507 }
508
509 break;
510 }
511
512 case OID_802_11_RTS_THRESHOLD:
513 {
514
515 u32 ulTemp;
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000516 pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200517
Dan Williams0aef64d2007-08-02 11:31:18 -0400518 if (cmd_action == CMD_ACT_GET) {
519 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
520 } else if (cmd_action == CMD_ACT_SET) {
521 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
David Woodhouse981f1872007-05-25 23:36:54 -0400522 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
523 ulTemp = *((u32 *)pdata_buf);
524 *(__le16 *)(pSNMPMIB->value) =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200525 cpu_to_le16((u16) ulTemp);
526
527 }
528 break;
529 }
530 case OID_802_11_TX_RETRYCOUNT:
Dan Williams0aef64d2007-08-02 11:31:18 -0400531 pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200532
Dan Williams0aef64d2007-08-02 11:31:18 -0400533 if (cmd_action == CMD_ACT_GET) {
534 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET);
535 } else if (cmd_action == CMD_ACT_SET) {
536 pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200537 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
David Woodhouse981f1872007-05-25 23:36:54 -0400538 *((__le16 *)(pSNMPMIB->value)) =
David Woodhouseaa21c002007-12-08 20:04:36 +0000539 cpu_to_le16((u16) priv->txretrycount);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200540 }
541
542 break;
543 default:
544 break;
545 }
546
Holger Schurig9012b282007-05-25 11:27:16 -0400547 lbs_deb_cmd(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200548 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400549 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
550 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200551
Holger Schurig9012b282007-05-25 11:27:16 -0400552 lbs_deb_cmd(
Holger Schurig8ff12da2007-08-02 11:54:31 -0400553 "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n",
David Woodhouse981f1872007-05-25 23:36:54 -0400554 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
555 le16_to_cpu(pSNMPMIB->bufsize),
556 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200557
Holger Schurig9012b282007-05-25 11:27:16 -0400558 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200559 return 0;
560}
561
Holger Schurig69f90322007-11-23 15:43:44 +0100562static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200563 struct cmd_ds_command *cmd,
564 u16 cmd_action, void *pdata_buf)
565{
566
567 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
568
Holger Schurig9012b282007-05-25 11:27:16 -0400569 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200570
571 cmd->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400572 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400573 cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER);
David Woodhouse981f1872007-05-25 23:36:54 -0400574 prtp->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200575
David Woodhouse981f1872007-05-25 23:36:54 -0400576 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
577 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
578 le16_to_cpu(prtp->action));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579
580 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400581 case CMD_ACT_TX_POWER_OPT_GET:
582 prtp->action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200583 prtp->currentlevel = 0;
584 break;
585
Dan Williams0aef64d2007-08-02 11:31:18 -0400586 case CMD_ACT_TX_POWER_OPT_SET_HIGH:
587 prtp->action = cpu_to_le16(CMD_ACT_SET);
588 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200589 break;
590
Dan Williams0aef64d2007-08-02 11:31:18 -0400591 case CMD_ACT_TX_POWER_OPT_SET_MID:
592 prtp->action = cpu_to_le16(CMD_ACT_SET);
593 prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200594 break;
595
Dan Williams0aef64d2007-08-02 11:31:18 -0400596 case CMD_ACT_TX_POWER_OPT_SET_LOW:
597 prtp->action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200598 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
599 break;
600 }
Holger Schurig9012b282007-05-25 11:27:16 -0400601
602 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603 return 0;
604}
605
Holger Schurig69f90322007-11-23 15:43:44 +0100606static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400607 struct cmd_ds_command *cmd,
608 u16 cmd_action, void *pdata_buf)
609{
610 struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor;
611
612 cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE);
613 cmd->size =
614 cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) +
615 S_DS_GEN);
616
617 monitor->action = cpu_to_le16(cmd_action);
618 if (cmd_action == CMD_ACT_SET) {
619 monitor->mode =
620 cpu_to_le16((u16) (*(u32 *) pdata_buf));
621 }
622
623 return 0;
624}
625
Holger Schurig69f90322007-11-23 15:43:44 +0100626static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627 struct cmd_ds_command *cmd,
628 u16 cmd_action)
629{
630 struct cmd_ds_802_11_rate_adapt_rateset
631 *rateadapt = &cmd->params.rateset;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
Holger Schurig8ff12da2007-08-02 11:54:31 -0400633 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200634 cmd->size =
635 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
636 + S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400637 cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638
David Woodhouse981f1872007-05-25 23:36:54 -0400639 rateadapt->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +0000640 rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto);
641 rateadapt->bitmap = cpu_to_le16(priv->ratebitmap);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200642
Holger Schurig9012b282007-05-25 11:27:16 -0400643 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200644 return 0;
645}
646
Dan Williams8e3c91b2007-12-11 15:50:59 -0500647/**
648 * @brief Get the current data rate
649 *
650 * @param priv A pointer to struct lbs_private structure
651 *
652 * @return The data rate on success, error on failure
653 */
654int lbs_get_data_rate(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200655{
Dan Williams8e3c91b2007-12-11 15:50:59 -0500656 struct cmd_ds_802_11_data_rate cmd;
657 int ret = -1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200658
Holger Schurig9012b282007-05-25 11:27:16 -0400659 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200660
Dan Williams8e3c91b2007-12-11 15:50:59 -0500661 memset(&cmd, 0, sizeof(cmd));
662 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
663 cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200664
David Woodhouse689442d2007-12-12 16:00:42 -0500665 ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd);
Dan Williams8e3c91b2007-12-11 15:50:59 -0500666 if (ret)
667 goto out;
668
669 lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd));
670
671 ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]);
672 lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret);
673
674out:
675 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
676 return ret;
677}
678
679/**
680 * @brief Set the data rate
681 *
682 * @param priv A pointer to struct lbs_private structure
683 * @param rate The desired data rate, or 0 to clear a locked rate
684 *
685 * @return 0 on success, error on failure
686 */
687int lbs_set_data_rate(struct lbs_private *priv, u8 rate)
688{
689 struct cmd_ds_802_11_data_rate cmd;
690 int ret = 0;
691
692 lbs_deb_enter(LBS_DEB_CMD);
693
694 memset(&cmd, 0, sizeof(cmd));
695 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
696
697 if (rate > 0) {
698 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE);
699 cmd.rates[0] = lbs_data_rate_to_fw_index(rate);
700 if (cmd.rates[0] == 0) {
701 lbs_deb_cmd("DATA_RATE: invalid requested rate of"
702 " 0x%02X\n", rate);
703 ret = 0;
704 goto out;
705 }
706 lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]);
707 } else {
708 cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400709 lbs_deb_cmd("DATA_RATE: setting auto\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200710 }
711
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 /* FIXME: get actual rates FW can do if this command actually returns
719 * all data rates supported.
720 */
721 priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]);
722 lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate);
723
724out:
725 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
726 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727}
728
Holger Schurig69f90322007-11-23 15:43:44 +0100729static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200730 struct cmd_ds_command *cmd,
731 u16 cmd_action)
732{
733 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200734
Holger Schurig8ff12da2007-08-02 11:54:31 -0400735 lbs_deb_enter(LBS_DEB_CMD);
David Woodhouse981f1872007-05-25 23:36:54 -0400736 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200737 S_DS_GEN);
Dan Williams0aef64d2007-08-02 11:31:18 -0400738 cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200739
Holger Schurig8ff12da2007-08-02 11:54:31 -0400740 lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741 pMCastAdr->action = cpu_to_le16(cmd_action);
742 pMCastAdr->nr_of_adrs =
David Woodhouseaa21c002007-12-08 20:04:36 +0000743 cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
744 memcpy(pMCastAdr->maclist, priv->multicastlist,
745 priv->nr_of_multicastmacaddr * ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200746
Holger Schurig8ff12da2007-08-02 11:54:31 -0400747 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200748 return 0;
749}
750
Dan Williams2dd4b262007-12-11 16:54:15 -0500751/**
752 * @brief Get the radio channel
753 *
754 * @param priv A pointer to struct lbs_private structure
755 *
756 * @return The channel on success, error on failure
757 */
758int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200759{
Dan Williams2dd4b262007-12-11 16:54:15 -0500760 struct cmd_ds_802_11_rf_channel cmd;
761 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200762
Holger Schurig8ff12da2007-08-02 11:54:31 -0400763 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200764
Dan Williams2dd4b262007-12-11 16:54:15 -0500765 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
766 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200767
David Woodhouse689442d2007-12-12 16:00:42 -0500768 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500769 if (ret)
770 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200771
Dan Williamscb182a62007-12-11 17:35:51 -0500772 ret = le16_to_cpu(cmd.channel);
773 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500774
775out:
776 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
777 return ret;
778}
779
780/**
781 * @brief Set the radio channel
782 *
783 * @param priv A pointer to struct lbs_private structure
784 * @param channel The desired channel, or 0 to clear a locked channel
785 *
786 * @return 0 on success, error on failure
787 */
788int lbs_set_channel(struct lbs_private *priv, u8 channel)
789{
790 struct cmd_ds_802_11_rf_channel cmd;
791 u8 old_channel = priv->curbssparams.channel;
792 int ret = 0;
793
794 lbs_deb_enter(LBS_DEB_CMD);
795
796 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
797 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
798 cmd.channel = cpu_to_le16(channel);
799
David Woodhouse689442d2007-12-12 16:00:42 -0500800 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500801 if (ret)
802 goto out;
803
Dan Williamscb182a62007-12-11 17:35:51 -0500804 priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel);
805 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
806 priv->curbssparams.channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500807
808out:
809 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
810 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200811}
812
Holger Schurig69f90322007-11-23 15:43:44 +0100813static int lbs_cmd_802_11_rssi(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200814 struct cmd_ds_command *cmd)
815{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200816
Holger Schurig8ff12da2007-08-02 11:54:31 -0400817 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400818 cmd->command = cpu_to_le16(CMD_802_11_RSSI);
David Woodhouse981f1872007-05-25 23:36:54 -0400819 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
Holger Schuriga783f1e2007-08-02 13:08:24 -0400820 cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200821
822 /* reset Beacon SNR/NF/RSSI values */
David Woodhouseaa21c002007-12-08 20:04:36 +0000823 priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
824 priv->SNR[TYPE_BEACON][TYPE_AVG] = 0;
825 priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
826 priv->NF[TYPE_BEACON][TYPE_AVG] = 0;
827 priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
828 priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200829
Holger Schurig8ff12da2007-08-02 11:54:31 -0400830 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200831 return 0;
832}
833
Holger Schurig69f90322007-11-23 15:43:44 +0100834static int lbs_cmd_reg_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200835 struct cmd_ds_command *cmdptr,
836 u8 cmd_action, void *pdata_buf)
837{
Holger Schurig10078322007-11-15 18:05:47 -0500838 struct lbs_offset_value *offval;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200839
Holger Schurig9012b282007-05-25 11:27:16 -0400840 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200841
Holger Schurig10078322007-11-15 18:05:47 -0500842 offval = (struct lbs_offset_value *)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200843
Holger Schurigc2df2ef2007-12-07 15:30:44 +0000844 switch (le16_to_cpu(cmdptr->command)) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400845 case CMD_MAC_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200846 {
847 struct cmd_ds_mac_reg_access *macreg;
848
849 cmdptr->size =
David Woodhouse981f1872007-05-25 23:36:54 -0400850 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
851 + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200852 macreg =
853 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
854 macreg;
855
856 macreg->action = cpu_to_le16(cmd_action);
857 macreg->offset = cpu_to_le16((u16) offval->offset);
858 macreg->value = cpu_to_le32(offval->value);
859
860 break;
861 }
862
Dan Williams0aef64d2007-08-02 11:31:18 -0400863 case CMD_BBP_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200864 {
865 struct cmd_ds_bbp_reg_access *bbpreg;
866
867 cmdptr->size =
868 cpu_to_le16(sizeof
869 (struct cmd_ds_bbp_reg_access)
870 + S_DS_GEN);
871 bbpreg =
872 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
873 bbpreg;
874
875 bbpreg->action = cpu_to_le16(cmd_action);
876 bbpreg->offset = cpu_to_le16((u16) offval->offset);
877 bbpreg->value = (u8) offval->value;
878
879 break;
880 }
881
Dan Williams0aef64d2007-08-02 11:31:18 -0400882 case CMD_RF_REG_ACCESS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200883 {
884 struct cmd_ds_rf_reg_access *rfreg;
885
886 cmdptr->size =
887 cpu_to_le16(sizeof
888 (struct cmd_ds_rf_reg_access) +
889 S_DS_GEN);
890 rfreg =
891 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
892 rfreg;
893
894 rfreg->action = cpu_to_le16(cmd_action);
895 rfreg->offset = cpu_to_le16((u16) offval->offset);
896 rfreg->value = (u8) offval->value;
897
898 break;
899 }
900
901 default:
902 break;
903 }
904
Holger Schurig9012b282007-05-25 11:27:16 -0400905 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200906 return 0;
907}
908
Holger Schurig69f90322007-11-23 15:43:44 +0100909static int lbs_cmd_802_11_mac_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200910 struct cmd_ds_command *cmd,
911 u16 cmd_action)
912{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200913
Holger Schurig8ff12da2007-08-02 11:54:31 -0400914 lbs_deb_enter(LBS_DEB_CMD);
Dan Williams0aef64d2007-08-02 11:31:18 -0400915 cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400916 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200917 S_DS_GEN);
918 cmd->result = 0;
919
920 cmd->params.macadd.action = cpu_to_le16(cmd_action);
921
Dan Williams0aef64d2007-08-02 11:31:18 -0400922 if (cmd_action == CMD_ACT_SET) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200923 memcpy(cmd->params.macadd.macadd,
David Woodhouseaa21c002007-12-08 20:04:36 +0000924 priv->current_addr, ETH_ALEN);
925 lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200926 }
927
Holger Schurig8ff12da2007-08-02 11:54:31 -0400928 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200929 return 0;
930}
931
Holger Schurig69f90322007-11-23 15:43:44 +0100932static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200933 struct cmd_ds_command *cmd,
934 int cmd_action, void *pdata_buf)
935{
Holger Schurig10078322007-11-15 18:05:47 -0500936 struct lbs_ioctl_regrdwr *ea = pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200937
Holger Schurig9012b282007-05-25 11:27:16 -0400938 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200939
Dan Williams0aef64d2007-08-02 11:31:18 -0400940 cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400941 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
942 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200943 cmd->result = 0;
944
945 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
946 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
947 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
948 cmd->params.rdeeprom.value = 0;
949
Holger Schurig8ff12da2007-08-02 11:54:31 -0400950 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200951 return 0;
952}
953
Holger Schurig69f90322007-11-23 15:43:44 +0100954static int lbs_cmd_bt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200955 struct cmd_ds_command *cmd,
956 u16 cmd_action, void *pdata_buf)
957{
958 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400959 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200960
Dan Williams0aef64d2007-08-02 11:31:18 -0400961 cmd->command = cpu_to_le16(CMD_BT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -0400962 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200963 cmd->result = 0;
964 bt_access->action = cpu_to_le16(cmd_action);
965
966 switch (cmd_action) {
Dan Williams0aef64d2007-08-02 11:31:18 -0400967 case CMD_ACT_BT_ACCESS_ADD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200968 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400969 lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400971 case CMD_ACT_BT_ACCESS_DEL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
Holger Schurigece56192007-08-02 11:53:06 -0400973 lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200974 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400975 case CMD_ACT_BT_ACCESS_LIST:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200976 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
977 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400978 case CMD_ACT_BT_ACCESS_RESET:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200979 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400980 case CMD_ACT_BT_ACCESS_SET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400981 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
982 break;
Dan Williams0aef64d2007-08-02 11:31:18 -0400983 case CMD_ACT_BT_ACCESS_GET_INVERT:
Luis Carlos Cobo90e8eaf2007-05-25 13:53:26 -0400984 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985 default:
986 break;
987 }
Holger Schurig8ff12da2007-08-02 11:54:31 -0400988 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989 return 0;
990}
991
Holger Schurig69f90322007-11-23 15:43:44 +0100992static int lbs_cmd_fwt_access(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200993 struct cmd_ds_command *cmd,
994 u16 cmd_action, void *pdata_buf)
995{
996 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998
Dan Williams0aef64d2007-08-02 11:31:18 -0400999 cmd->command = cpu_to_le16(CMD_FWT_ACCESS);
David Woodhouse981f1872007-05-25 23:36:54 -04001000 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001001 cmd->result = 0;
1002
1003 if (pdata_buf)
1004 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
1005 else
1006 memset(fwt_access, 0, sizeof(*fwt_access));
1007
1008 fwt_access->action = cpu_to_le16(cmd_action);
1009
Holger Schurig8ff12da2007-08-02 11:54:31 -04001010 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001011 return 0;
1012}
1013
David Woodhouse301eacb2007-12-11 15:23:59 -05001014int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action,
1015 struct cmd_ds_mesh_access *cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001016{
David Woodhouse301eacb2007-12-11 15:23:59 -05001017 int ret;
1018
Holger Schurig8ff12da2007-08-02 11:54:31 -04001019 lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001020
David Woodhouse301eacb2007-12-11 15:23:59 -05001021 cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS);
David Woodhouse9fae8992007-12-15 03:46:44 -05001022 cmd->hdr.size = cpu_to_le16(sizeof(*cmd));
David Woodhouse301eacb2007-12-11 15:23:59 -05001023 cmd->hdr.result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001024
David Woodhouse301eacb2007-12-11 15:23:59 -05001025 cmd->action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001026
David Woodhouse689442d2007-12-12 16:00:42 -05001027 ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001028
Holger Schurig8ff12da2007-08-02 11:54:31 -04001029 lbs_deb_leave(LBS_DEB_CMD);
David Woodhouse301eacb2007-12-11 15:23:59 -05001030 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001031}
David Woodhouse301eacb2007-12-11 15:23:59 -05001032EXPORT_SYMBOL_GPL(lbs_mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001033
David Woodhouse86062132007-12-13 00:32:36 -05001034int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan)
David Woodhouse23a397a2007-12-11 18:56:42 -05001035{
1036 struct cmd_ds_mesh_config cmd;
1037
1038 memset(&cmd, 0, sizeof(cmd));
1039 cmd.action = cpu_to_le16(enable);
David Woodhouse86062132007-12-13 00:32:36 -05001040 cmd.channel = cpu_to_le16(chan);
David Woodhouse020f3d02007-12-12 23:29:13 -05001041 cmd.type = cpu_to_le16(priv->mesh_tlv);
David Woodhouse9fae8992007-12-15 03:46:44 -05001042 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
David Woodhouse7e226272007-12-14 22:53:41 -05001043
David Woodhouse23a397a2007-12-11 18:56:42 -05001044 if (enable) {
1045 cmd.length = cpu_to_le16(priv->mesh_ssid_len);
1046 memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len);
1047 }
David Woodhouse020f3d02007-12-12 23:29:13 -05001048 lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n",
David Woodhouse86062132007-12-13 00:32:36 -05001049 enable, priv->mesh_tlv, chan,
David Woodhouse06113c12007-12-11 22:52:03 -05001050 escape_essid(priv->mesh_ssid, priv->mesh_ssid_len));
David Woodhouse689442d2007-12-12 16:00:42 -05001051 return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd);
David Woodhouse23a397a2007-12-11 18:56:42 -05001052}
1053
Brajesh Dave96287ac2007-11-20 17:44:28 -05001054static int lbs_cmd_bcn_ctrl(struct lbs_private * priv,
1055 struct cmd_ds_command *cmd,
1056 u16 cmd_action)
1057{
1058 struct cmd_ds_802_11_beacon_control
1059 *bcn_ctrl = &cmd->params.bcn_ctrl;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001060
1061 lbs_deb_enter(LBS_DEB_CMD);
1062 cmd->size =
1063 cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control)
1064 + S_DS_GEN);
1065 cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL);
1066
1067 bcn_ctrl->action = cpu_to_le16(cmd_action);
David Woodhouseaa21c002007-12-08 20:04:36 +00001068 bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable);
1069 bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period);
Brajesh Dave96287ac2007-11-20 17:44:28 -05001070
1071 lbs_deb_leave(LBS_DEB_CMD);
1072 return 0;
1073}
1074
David Woodhouse681ffbb2007-12-15 20:04:54 -05001075static void lbs_queue_cmd(struct lbs_private *priv,
1076 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001077{
1078 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001079 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001080
Holger Schurig8ff12da2007-08-02 11:54:31 -04001081 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082
David Woodhousec4ab4122007-12-15 00:41:51 -05001083 if (!cmdnode) {
1084 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001085 goto done;
1086 }
David Woodhoused9896ee2007-12-15 00:09:25 -05001087 if (!cmdnode->cmdbuf->size) {
1088 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
1089 goto done;
1090 }
David Woodhouseae125bf2007-12-15 04:22:52 -05001091 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001092
1093 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -05001094 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
David Woodhouse38bfab12007-12-16 23:26:54 -05001095 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf[1];
Dan Williamsddac4522007-12-11 13:49:39 -05001096
Dan Williams0aef64d2007-08-02 11:31:18 -04001097 if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001098 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001099 addtail = 0;
1100 }
1101 }
1102
David Woodhouseaa21c002007-12-08 20:04:36 +00001103 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001104
David Woodhouseac472462007-12-08 00:35:00 +00001105 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +00001106 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +00001107 else
David Woodhouseaa21c002007-12-08 20:04:36 +00001108 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109
David Woodhouseaa21c002007-12-08 20:04:36 +00001110 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001111
Holger Schurig8ff12da2007-08-02 11:54:31 -04001112 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -05001113 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114
1115done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001116 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001117}
1118
David Woodhouse18c52e72007-12-17 16:03:58 -05001119static void lbs_submit_command(struct lbs_private *priv,
1120 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001121{
1122 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -05001123 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -05001124 uint16_t cmdsize;
1125 uint16_t command;
1126 int timeo = 5 * HZ;
1127 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001128
Holger Schurig8ff12da2007-08-02 11:54:31 -04001129 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001130
Dan Williamsddac4522007-12-11 13:49:39 -05001131 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132
David Woodhouseaa21c002007-12-08 20:04:36 +00001133 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001134 priv->cur_cmd = cmdnode;
1135 priv->cur_cmd_retcode = 0;
1136 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001137
Dan Williamsddac4522007-12-11 13:49:39 -05001138 cmdsize = le16_to_cpu(cmd->size);
1139 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001140
David Woodhouse18c52e72007-12-17 16:03:58 -05001141 /* These commands take longer */
1142 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE ||
1143 command == CMD_802_11_AUTHENTICATE)
1144 timeo = 10 * HZ;
1145
David Woodhousee1258172007-12-11 23:42:49 -05001146 lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n",
1147 command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies);
Dan Williamsddac4522007-12-11 13:49:39 -05001148 lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001149
Dan Williamsddac4522007-12-11 13:49:39 -05001150 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001151
David Woodhoused9896ee2007-12-15 00:09:25 -05001152 if (ret) {
1153 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001154 /* Let the timer kick in and retry, and potentially reset
1155 the whole thing if the condition persists */
1156 timeo = HZ;
1157 } else
1158 lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n",
1159 command, jiffies);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001160
1161 /* Setup the timer after transmit command */
David Woodhouse18c52e72007-12-17 16:03:58 -05001162 mod_timer(&priv->command_timer, jiffies + timeo);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001163
David Woodhouse18c52e72007-12-17 16:03:58 -05001164 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001165}
1166
Holger Schurig69f90322007-11-23 15:43:44 +01001167static int lbs_cmd_mac_control(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168 struct cmd_ds_command *cmd)
1169{
1170 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1171
Holger Schurig9012b282007-05-25 11:27:16 -04001172 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001173
Dan Williams0aef64d2007-08-02 11:31:18 -04001174 cmd->command = cpu_to_le16(CMD_MAC_CONTROL);
David Woodhouse981f1872007-05-25 23:36:54 -04001175 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
David Woodhouseaa21c002007-12-08 20:04:36 +00001176 mac->action = cpu_to_le16(priv->currentpacketfilter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001177
Holger Schurig8ff12da2007-08-02 11:54:31 -04001178 lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n",
David Woodhouse981f1872007-05-25 23:36:54 -04001179 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001180
Holger Schurig9012b282007-05-25 11:27:16 -04001181 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001182 return 0;
1183}
1184
1185/**
1186 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001187 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001188 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001189static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001190 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001191{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001192 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001193
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001194 if (!cmdnode)
1195 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001196
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001197 cmdnode->callback = NULL;
1198 cmdnode->callback_arg = 0;
1199
1200 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1201
1202 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1203 out:
1204 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001205}
1206
Holger Schurig69f90322007-11-23 15:43:44 +01001207static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1208 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209{
1210 unsigned long flags;
1211
David Woodhouseaa21c002007-12-08 20:04:36 +00001212 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001213 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001214 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215}
1216
David Woodhouse183aeac2007-12-15 01:52:54 -05001217void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1218 int result)
1219{
1220 if (cmd == priv->cur_cmd)
1221 priv->cur_cmd_retcode = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001222
David Woodhouseae125bf2007-12-15 04:22:52 -05001223 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001224 cmd->cmdwaitqwoken = 1;
1225 wake_up_interruptible(&cmd->cmdwait_q);
1226
David Woodhousead12d0f2007-12-15 02:06:16 -05001227 if (!cmd->callback)
1228 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001229 priv->cur_cmd = NULL;
1230}
1231
Holger Schurig69f90322007-11-23 15:43:44 +01001232int lbs_set_radio_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001233{
1234 int ret = 0;
David Woodhousea7c45892007-12-17 22:43:48 -05001235 struct cmd_ds_802_11_radio_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001236
Holger Schurig9012b282007-05-25 11:27:16 -04001237 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001238
David Woodhousea7c45892007-12-17 22:43:48 -05001239 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1240 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241
David Woodhousea7c45892007-12-17 22:43:48 -05001242 switch (priv->preamble) {
1243 case CMD_TYPE_SHORT_PREAMBLE:
1244 cmd.control = cpu_to_le16(SET_SHORT_PREAMBLE);
1245 break;
1246
1247 case CMD_TYPE_LONG_PREAMBLE:
1248 cmd.control = cpu_to_le16(SET_LONG_PREAMBLE);
1249 break;
1250
1251 case CMD_TYPE_AUTO_PREAMBLE:
1252 default:
1253 cmd.control = cpu_to_le16(SET_AUTO_PREAMBLE);
1254 break;
1255 }
1256
1257 if (priv->radioon)
1258 cmd.control |= cpu_to_le16(TURN_ON_RF);
1259 else
1260 cmd.control &= cpu_to_le16(~TURN_ON_RF);
1261
1262 lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
1263 priv->preamble);
1264
1265 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001266
Holger Schurig9012b282007-05-25 11:27:16 -04001267 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001268 return ret;
1269}
1270
Holger Schurig69f90322007-11-23 15:43:44 +01001271int lbs_set_mac_packet_filter(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001272{
1273 int ret = 0;
1274
Holger Schurig9012b282007-05-25 11:27:16 -04001275 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001276
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 /* Send MAC control command to station */
Holger Schurig10078322007-11-15 18:05:47 -05001278 ret = lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -04001279 CMD_MAC_CONTROL, 0, 0, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001280
Holger Schurig9012b282007-05-25 11:27:16 -04001281 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001282 return ret;
1283}
1284
1285/**
1286 * @brief This function prepare the command before send to firmware.
1287 *
Holger Schurig69f90322007-11-23 15:43:44 +01001288 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001289 * @param cmd_no command number
1290 * @param cmd_action command action: GET or SET
1291 * @param wait_option wait option: wait response or not
1292 * @param cmd_oid cmd oid: treated as sub command
1293 * @param pdata_buf A pointer to informaion buffer
1294 * @return 0 or -1
1295 */
Holger Schurig69f90322007-11-23 15:43:44 +01001296int lbs_prepare_and_send_command(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297 u16 cmd_no,
1298 u16 cmd_action,
1299 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1300{
1301 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001302 struct cmd_ctrl_node *cmdnode;
1303 struct cmd_ds_command *cmdptr;
1304 unsigned long flags;
1305
Holger Schurig8ff12da2007-08-02 11:54:31 -04001306 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001307
David Woodhouseaa21c002007-12-08 20:04:36 +00001308 if (!priv) {
1309 lbs_deb_host("PREP_CMD: priv is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001310 ret = -1;
1311 goto done;
1312 }
1313
David Woodhouseaa21c002007-12-08 20:04:36 +00001314 if (priv->surpriseremoved) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001315 lbs_deb_host("PREP_CMD: card removed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001316 ret = -1;
1317 goto done;
1318 }
1319
Holger Schurig0d61d042007-12-05 17:58:06 +01001320 cmdnode = lbs_get_cmd_ctrl_node(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321
1322 if (cmdnode == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001323 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001324
1325 /* Wake up main thread to execute next command */
Dan Williamsfe336152007-08-02 11:32:25 -04001326 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001327 ret = -1;
1328 goto done;
1329 }
1330
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001331 lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001332
Dan Williamsddac4522007-12-11 13:49:39 -05001333 cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001334
Holger Schurig8ff12da2007-08-02 11:54:31 -04001335 lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001336
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001337 /* Set sequence number, command and INT option */
David Woodhouseaa21c002007-12-08 20:04:36 +00001338 priv->seqnum++;
1339 cmdptr->seqnum = cpu_to_le16(priv->seqnum);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001340
David Woodhouse981f1872007-05-25 23:36:54 -04001341 cmdptr->command = cpu_to_le16(cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001342 cmdptr->result = 0;
1343
1344 switch (cmd_no) {
Dan Williams0aef64d2007-08-02 11:31:18 -04001345 case CMD_802_11_PS_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001346 ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001347 break;
1348
Dan Williams0aef64d2007-08-02 11:31:18 -04001349 case CMD_802_11_SCAN:
Holger Schurig10078322007-11-15 18:05:47 -05001350 ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001351 break;
1352
Dan Williams0aef64d2007-08-02 11:31:18 -04001353 case CMD_MAC_CONTROL:
Holger Schurig10078322007-11-15 18:05:47 -05001354 ret = lbs_cmd_mac_control(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001355 break;
1356
Dan Williams0aef64d2007-08-02 11:31:18 -04001357 case CMD_802_11_ASSOCIATE:
1358 case CMD_802_11_REASSOCIATE:
Holger Schurig10078322007-11-15 18:05:47 -05001359 ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360 break;
1361
Dan Williams0aef64d2007-08-02 11:31:18 -04001362 case CMD_802_11_DEAUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001363 ret = lbs_cmd_80211_deauthenticate(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001364 break;
1365
Dan Williams0aef64d2007-08-02 11:31:18 -04001366 case CMD_802_11_AD_HOC_START:
Holger Schurig10078322007-11-15 18:05:47 -05001367 ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001369 case CMD_CODE_DNLD:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001370 break;
1371
Dan Williams0aef64d2007-08-02 11:31:18 -04001372 case CMD_802_11_RESET:
Holger Schurig10078322007-11-15 18:05:47 -05001373 ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001374 break;
1375
Dan Williams0aef64d2007-08-02 11:31:18 -04001376 case CMD_802_11_GET_LOG:
Holger Schurig10078322007-11-15 18:05:47 -05001377 ret = lbs_cmd_802_11_get_log(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001378 break;
1379
Dan Williams0aef64d2007-08-02 11:31:18 -04001380 case CMD_802_11_AUTHENTICATE:
Holger Schurig10078322007-11-15 18:05:47 -05001381 ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382 break;
1383
Dan Williams0aef64d2007-08-02 11:31:18 -04001384 case CMD_802_11_GET_STAT:
Holger Schurig10078322007-11-15 18:05:47 -05001385 ret = lbs_cmd_802_11_get_stat(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001386 break;
1387
Dan Williams0aef64d2007-08-02 11:31:18 -04001388 case CMD_802_11_SNMP_MIB:
Holger Schurig10078322007-11-15 18:05:47 -05001389 ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390 cmd_action, cmd_oid, pdata_buf);
1391 break;
1392
Dan Williams0aef64d2007-08-02 11:31:18 -04001393 case CMD_MAC_REG_ACCESS:
1394 case CMD_BBP_REG_ACCESS:
1395 case CMD_RF_REG_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001396 ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397 break;
1398
Dan Williams0aef64d2007-08-02 11:31:18 -04001399 case CMD_802_11_RF_TX_POWER:
Holger Schurig10078322007-11-15 18:05:47 -05001400 ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401 cmd_action, pdata_buf);
1402 break;
1403
Dan Williams0aef64d2007-08-02 11:31:18 -04001404 case CMD_802_11_RATE_ADAPT_RATESET:
Holger Schurig10078322007-11-15 18:05:47 -05001405 ret = lbs_cmd_802_11_rate_adapt_rateset(priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001406 cmdptr, cmd_action);
1407 break;
1408
Dan Williams0aef64d2007-08-02 11:31:18 -04001409 case CMD_MAC_MULTICAST_ADR:
Holger Schurig10078322007-11-15 18:05:47 -05001410 ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001411 break;
1412
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001413 case CMD_802_11_MONITOR_MODE:
Holger Schurig10078322007-11-15 18:05:47 -05001414 ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001415 cmd_action, pdata_buf);
1416 break;
1417
Dan Williams0aef64d2007-08-02 11:31:18 -04001418 case CMD_802_11_AD_HOC_JOIN:
Holger Schurig10078322007-11-15 18:05:47 -05001419 ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 break;
1421
Dan Williams0aef64d2007-08-02 11:31:18 -04001422 case CMD_802_11_RSSI:
Holger Schurig10078322007-11-15 18:05:47 -05001423 ret = lbs_cmd_802_11_rssi(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424 break;
1425
Dan Williams0aef64d2007-08-02 11:31:18 -04001426 case CMD_802_11_AD_HOC_STOP:
Holger Schurig10078322007-11-15 18:05:47 -05001427 ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001428 break;
1429
Dan Williams0aef64d2007-08-02 11:31:18 -04001430 case CMD_802_11_KEY_MATERIAL:
Holger Schurig10078322007-11-15 18:05:47 -05001431 ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action,
Dan Williams90a42212007-05-25 23:01:24 -04001432 cmd_oid, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001433 break;
1434
Dan Williams0aef64d2007-08-02 11:31:18 -04001435 case CMD_802_11_PAIRWISE_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001437 case CMD_802_11_GROUP_TSC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001438 break;
1439
Dan Williams0aef64d2007-08-02 11:31:18 -04001440 case CMD_802_11_MAC_ADDRESS:
Holger Schurig10078322007-11-15 18:05:47 -05001441 ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001442 break;
1443
Dan Williams0aef64d2007-08-02 11:31:18 -04001444 case CMD_802_11_EEPROM_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001445 ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001446 cmd_action, pdata_buf);
1447 break;
1448
Dan Williams0aef64d2007-08-02 11:31:18 -04001449 case CMD_802_11_SET_AFC:
1450 case CMD_802_11_GET_AFC:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001451
1452 cmdptr->command = cpu_to_le16(cmd_no);
David Woodhouse981f1872007-05-25 23:36:54 -04001453 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1454 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001455
1456 memmove(&cmdptr->params.afc,
1457 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1458
1459 ret = 0;
1460 goto done;
1461
Dan Williams0aef64d2007-08-02 11:31:18 -04001462 case CMD_802_11D_DOMAIN_INFO:
Holger Schurig10078322007-11-15 18:05:47 -05001463 ret = lbs_cmd_802_11d_domain_info(priv, cmdptr,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464 cmd_no, cmd_action);
1465 break;
1466
Dan Williams0aef64d2007-08-02 11:31:18 -04001467 case CMD_802_11_TPC_CFG:
1468 cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 cmdptr->size =
1470 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1471 S_DS_GEN);
1472
1473 memmove(&cmdptr->params.tpccfg,
1474 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1475
1476 ret = 0;
1477 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001478 case CMD_802_11_LED_GPIO_CTRL:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001479 {
1480 struct mrvlietypes_ledgpio *gpio =
1481 (struct mrvlietypes_ledgpio*)
1482 cmdptr->params.ledgpio.data;
1483
1484 memmove(&cmdptr->params.ledgpio,
1485 pdata_buf,
1486 sizeof(struct cmd_ds_802_11_led_ctrl));
1487
1488 cmdptr->command =
Dan Williams0aef64d2007-08-02 11:31:18 -04001489 cpu_to_le16(CMD_802_11_LED_GPIO_CTRL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001490
1491#define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1492 cmdptr->size =
Holger Schurigc2df2ef2007-12-07 15:30:44 +00001493 cpu_to_le16(le16_to_cpu(gpio->header.len)
1494 + S_DS_GEN
1495 + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1496 gpio->header.len = gpio->header.len;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001497
1498 ret = 0;
1499 break;
1500 }
David Woodhouse5844d122007-12-18 02:01:37 -05001501
Dan Williams0aef64d2007-08-02 11:31:18 -04001502 case CMD_802_11_PWR_CFG:
1503 cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504 cmdptr->size =
1505 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1506 S_DS_GEN);
1507 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1508 sizeof(struct cmd_ds_802_11_pwr_cfg));
1509
1510 ret = 0;
1511 break;
Dan Williams0aef64d2007-08-02 11:31:18 -04001512 case CMD_BT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001513 ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001514 break;
1515
Dan Williams0aef64d2007-08-02 11:31:18 -04001516 case CMD_FWT_ACCESS:
Holger Schurig10078322007-11-15 18:05:47 -05001517 ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001518 break;
1519
Dan Williams0aef64d2007-08-02 11:31:18 -04001520 case CMD_GET_TSF:
1521 cmdptr->command = cpu_to_le16(CMD_GET_TSF);
David Woodhouse981f1872007-05-25 23:36:54 -04001522 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1523 S_DS_GEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001524 ret = 0;
1525 break;
Brajesh Dave96287ac2007-11-20 17:44:28 -05001526 case CMD_802_11_BEACON_CTRL:
1527 ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action);
1528 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001529 default:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001530 lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001531 ret = -1;
1532 break;
1533 }
1534
1535 /* return error, since the command preparation failed */
1536 if (ret != 0) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001537 lbs_deb_host("PREP_CMD: command preparation failed\n");
Holger Schurig10078322007-11-15 18:05:47 -05001538 lbs_cleanup_and_insert_cmd(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001539 ret = -1;
1540 goto done;
1541 }
1542
1543 cmdnode->cmdwaitqwoken = 0;
1544
David Woodhouse681ffbb2007-12-15 20:04:54 -05001545 lbs_queue_cmd(priv, cmdnode);
Dan Williamsfe336152007-08-02 11:32:25 -04001546 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001547
Dan Williams0aef64d2007-08-02 11:31:18 -04001548 if (wait_option & CMD_OPTION_WAITFORRSP) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001549 lbs_deb_host("PREP_CMD: wait for response\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001550 might_sleep();
1551 wait_event_interruptible(cmdnode->cmdwait_q,
1552 cmdnode->cmdwaitqwoken);
1553 }
1554
David Woodhouseaa21c002007-12-08 20:04:36 +00001555 spin_lock_irqsave(&priv->driver_lock, flags);
1556 if (priv->cur_cmd_retcode) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001557 lbs_deb_host("PREP_CMD: command failed with return code %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001558 priv->cur_cmd_retcode);
1559 priv->cur_cmd_retcode = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001560 ret = -1;
1561 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001562 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001563
1564done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001565 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001566 return ret;
1567}
Holger Schurig10078322007-11-15 18:05:47 -05001568EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001569
1570/**
1571 * @brief This function allocates the command buffer and link
1572 * it to command free queue.
1573 *
Holger Schurig69f90322007-11-23 15:43:44 +01001574 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001575 * @return 0 or -1
1576 */
Holger Schurig69f90322007-11-23 15:43:44 +01001577int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001578{
1579 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001580 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001581 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001582 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001583
Holger Schurig8ff12da2007-08-02 11:54:31 -04001584 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001585
Dan Williamsddac4522007-12-11 13:49:39 -05001586 /* Allocate and initialize the command array */
1587 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1588 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001589 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001590 ret = -1;
1591 goto done;
1592 }
Dan Williamsddac4522007-12-11 13:49:39 -05001593 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001594
Dan Williamsddac4522007-12-11 13:49:39 -05001595 /* Allocate and initialize each command buffer in the command array */
1596 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1597 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1598 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001599 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001600 ret = -1;
1601 goto done;
1602 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001603 }
1604
Dan Williamsddac4522007-12-11 13:49:39 -05001605 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1606 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1607 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001608 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001609 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001610
1611done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001612 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001613 return ret;
1614}
1615
1616/**
1617 * @brief This function frees the command buffer.
1618 *
Holger Schurig69f90322007-11-23 15:43:44 +01001619 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001620 * @return 0 or -1
1621 */
Holger Schurig69f90322007-11-23 15:43:44 +01001622int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001623{
Dan Williamsddac4522007-12-11 13:49:39 -05001624 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001625 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001626
Holger Schurig8ff12da2007-08-02 11:54:31 -04001627 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001628
1629 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001630 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001631 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001632 goto done;
1633 }
1634
Dan Williamsddac4522007-12-11 13:49:39 -05001635 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001636
1637 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001638 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1639 if (cmdarray[i].cmdbuf) {
1640 kfree(cmdarray[i].cmdbuf);
1641 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001642 }
1643 }
1644
1645 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001646 if (priv->cmd_array) {
1647 kfree(priv->cmd_array);
1648 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001649 }
1650
1651done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001652 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001653 return 0;
1654}
1655
1656/**
1657 * @brief This function gets a free command node if available in
1658 * command free queue.
1659 *
Holger Schurig69f90322007-11-23 15:43:44 +01001660 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001661 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1662 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001663static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001664{
1665 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001666 unsigned long flags;
1667
Holger Schurig8ff12da2007-08-02 11:54:31 -04001668 lbs_deb_enter(LBS_DEB_HOST);
1669
David Woodhouseaa21c002007-12-08 20:04:36 +00001670 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001671 return NULL;
1672
David Woodhouseaa21c002007-12-08 20:04:36 +00001673 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001674
David Woodhouseaa21c002007-12-08 20:04:36 +00001675 if (!list_empty(&priv->cmdfreeq)) {
1676 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001677 struct cmd_ctrl_node, list);
1678 list_del(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001679 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001680 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001681 tempnode = NULL;
1682 }
1683
David Woodhouseaa21c002007-12-08 20:04:36 +00001684 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001685
Holger Schurig8ff12da2007-08-02 11:54:31 -04001686 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001687 return tempnode;
1688}
1689
1690/**
1691 * @brief This function cleans command node.
1692 *
1693 * @param ptempnode A pointer to cmdCtrlNode structure
1694 * @return n/a
1695 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001696
1697/**
1698 * @brief This function initializes the command node.
1699 *
Holger Schurig69f90322007-11-23 15:43:44 +01001700 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001701 * @param ptempnode A pointer to cmd_ctrl_node structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001702 * @param pdata_buf A pointer to informaion buffer
1703 * @return 0 or -1
1704 */
David Woodhouse2fd6cfe2007-12-11 17:44:10 -05001705static void lbs_set_cmd_ctrl_node(struct lbs_private *priv,
1706 struct cmd_ctrl_node *ptempnode,
David Woodhouse8e5b6b2d2007-12-14 23:08:13 -05001707 void *pdata_buf)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001708{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001709 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001710
1711 if (!ptempnode)
1712 return;
1713
David Woodhouse17230472007-12-07 15:13:05 +00001714 ptempnode->callback = NULL;
David Woodhouse75567672007-12-15 02:38:17 -05001715 ptempnode->callback_arg = (unsigned long)pdata_buf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001716
Holger Schurig8ff12da2007-08-02 11:54:31 -04001717 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001718}
1719
1720/**
1721 * @brief This function executes next command in command
1722 * pending queue. It will put fimware back to PS mode
1723 * if applicable.
1724 *
Holger Schurig69f90322007-11-23 15:43:44 +01001725 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001726 * @return 0 or -1
1727 */
Holger Schurig69f90322007-11-23 15:43:44 +01001728int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001729{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001730 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001731 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001732 unsigned long flags;
1733 int ret = 0;
1734
Holger Schurig8ff12da2007-08-02 11:54:31 -04001735 // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
Holger Schurig10078322007-11-15 18:05:47 -05001736 // only caller to us is lbs_thread() and we get even when a
Holger Schurig8ff12da2007-08-02 11:54:31 -04001737 // data packet is received
1738 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001739
David Woodhouseaa21c002007-12-08 20:04:36 +00001740 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001741
David Woodhouseaa21c002007-12-08 20:04:36 +00001742 if (priv->cur_cmd) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001743 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001744 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001745 ret = -1;
1746 goto done;
1747 }
1748
David Woodhouseaa21c002007-12-08 20:04:36 +00001749 if (!list_empty(&priv->cmdpendingq)) {
1750 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001751 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001752 }
1753
David Woodhouseaa21c002007-12-08 20:04:36 +00001754 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001755
1756 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001757 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001758
Dan Williamsddac4522007-12-11 13:49:39 -05001759 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001760 if ((priv->psstate == PS_STATE_SLEEP) ||
1761 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001762 lbs_deb_host(
1763 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001764 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001765 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001766 ret = -1;
1767 goto done;
1768 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001769 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001770 "0x%04x in psstate %d\n",
1771 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001772 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001773 /*
1774 * 1. Non-PS command:
1775 * Queue it. set needtowakeup to TRUE if current state
Holger Schurig10078322007-11-15 18:05:47 -05001776 * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001777 * 2. PS command but not Exit_PS:
1778 * Ignore it.
1779 * 3. PS command Exit_PS:
1780 * Set needtowakeup to TRUE if current state is SLEEP,
1781 * otherwise send this command down to firmware
1782 * immediately.
1783 */
Dan Williamsddac4522007-12-11 13:49:39 -05001784 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001785 /* Prepare to send Exit PS,
1786 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001787 if ((priv->psstate == PS_STATE_SLEEP)
1788 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001789 ) {
1790 /* w/ new scheme, it will not reach here.
1791 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001792 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001793 } else
Holger Schurig10078322007-11-15 18:05:47 -05001794 lbs_ps_wakeup(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001795
1796 ret = 0;
1797 goto done;
1798 } else {
1799 /*
1800 * PS command. Ignore it if it is not Exit_PS.
1801 * otherwise send it down immediately.
1802 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001803 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001804
Holger Schurig8ff12da2007-08-02 11:54:31 -04001805 lbs_deb_host(
1806 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001807 psm->action);
1808 if (psm->action !=
Dan Williams0aef64d2007-08-02 11:31:18 -04001809 cpu_to_le16(CMD_SUBCMD_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001810 lbs_deb_host(
1811 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001812 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001813 spin_lock_irqsave(&priv->driver_lock, flags);
1814 lbs_complete_command(priv, cmdnode, 0);
1815 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001816
1817 ret = 0;
1818 goto done;
1819 }
1820
David Woodhouseaa21c002007-12-08 20:04:36 +00001821 if ((priv->psstate == PS_STATE_SLEEP) ||
1822 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001823 lbs_deb_host(
1824 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
Li Zefanabe3ed12007-12-06 13:01:21 +01001825 list_del(&cmdnode->list);
David Woodhouse183aeac2007-12-15 01:52:54 -05001826 spin_lock_irqsave(&priv->driver_lock, flags);
1827 lbs_complete_command(priv, cmdnode, 0);
1828 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouseaa21c002007-12-08 20:04:36 +00001829 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001830
1831 ret = 0;
1832 goto done;
1833 }
1834
Holger Schurig8ff12da2007-08-02 11:54:31 -04001835 lbs_deb_host(
1836 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001837 }
1838 }
Li Zefanabe3ed12007-12-06 13:01:21 +01001839 list_del(&cmdnode->list);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001840 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001841 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001842 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001843 } else {
1844 /*
1845 * check if in power save mode, if yes, put the device back
1846 * to PS mode
1847 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001848 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1849 (priv->psstate == PS_STATE_FULL_POWER) &&
1850 ((priv->connect_status == LBS_CONNECTED) ||
1851 (priv->mesh_connect_status == LBS_CONNECTED))) {
1852 if (priv->secinfo.WPAenabled ||
1853 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001854 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001855 if (priv->wpa_mcast_key.len ||
1856 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001857 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001858 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1859 " go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001860 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001861 }
1862 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001863 lbs_deb_host(
1864 "EXEC_NEXT_CMD: cmdpendingq empty, "
1865 "go back to PS_SLEEP");
Holger Schurig10078322007-11-15 18:05:47 -05001866 lbs_ps_sleep(priv, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001867 }
1868 }
1869 }
1870
1871 ret = 0;
1872done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001873 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001874 return ret;
1875}
1876
Holger Schurig69f90322007-11-23 15:43:44 +01001877void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001878{
1879 union iwreq_data iwrq;
1880 u8 buf[50];
1881
Holger Schurig8ff12da2007-08-02 11:54:31 -04001882 lbs_deb_enter(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001883
1884 memset(&iwrq, 0, sizeof(union iwreq_data));
1885 memset(buf, 0, sizeof(buf));
1886
1887 snprintf(buf, sizeof(buf) - 1, "%s", str);
1888
1889 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1890
1891 /* Send Event to upper layer */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001892 lbs_deb_wext("event indication string %s\n", (char *)buf);
1893 lbs_deb_wext("event indication length %d\n", iwrq.data.length);
1894 lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001895
Holger Schurig634b8f42007-05-25 13:05:16 -04001896 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001897
Holger Schurig8ff12da2007-08-02 11:54:31 -04001898 lbs_deb_leave(LBS_DEB_WEXT);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001899}
1900
Holger Schurig69f90322007-11-23 15:43:44 +01001901static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001902{
1903 unsigned long flags;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001904 int ret = 0;
1905
Holger Schurig8ff12da2007-08-02 11:54:31 -04001906 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001907
Holger Schurig8ff12da2007-08-02 11:54:31 -04001908 lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001909 size);
1910
Holger Schurig8ff12da2007-08-02 11:54:31 -04001911 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001912
Holger Schurig208fdd22007-05-25 12:17:06 -04001913 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001914
David Woodhouseaa21c002007-12-08 20:04:36 +00001915 spin_lock_irqsave(&priv->driver_lock, flags);
1916 if (priv->intcounter || priv->currenttxskb)
Holger Schurig8ff12da2007-08-02 11:54:31 -04001917 lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001918 priv->intcounter, priv->currenttxskb);
1919 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001920
1921 if (ret) {
1922 lbs_pr_alert(
1923 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1924 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +00001925 spin_lock_irqsave(&priv->driver_lock, flags);
1926 if (!priv->intcounter) {
1927 priv->psstate = PS_STATE_SLEEP;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001928 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001929 lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +00001930 priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001931 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001932 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001933
Holger Schurig8ff12da2007-08-02 11:54:31 -04001934 lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001935 }
1936
Holger Schurig8ff12da2007-08-02 11:54:31 -04001937 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001938 return ret;
1939}
1940
Holger Schurig69f90322007-11-23 15:43:44 +01001941void lbs_ps_sleep(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001942{
Holger Schurig8ff12da2007-08-02 11:54:31 -04001943 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001944
1945 /*
1946 * PS is currently supported only in Infrastructure mode
1947 * Remove this check if it is to be supported in IBSS mode also
1948 */
1949
Holger Schurig10078322007-11-15 18:05:47 -05001950 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001951 CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001952
Holger Schurig8ff12da2007-08-02 11:54:31 -04001953 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001954}
1955
1956/**
Holger Schurig8ff12da2007-08-02 11:54:31 -04001957 * @brief This function sends Exit_PS command to firmware.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001958 *
Holger Schurig69f90322007-11-23 15:43:44 +01001959 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001960 * @param wait_option wait response or not
1961 * @return n/a
1962 */
Holger Schurig69f90322007-11-23 15:43:44 +01001963void lbs_ps_wakeup(struct lbs_private *priv, int wait_option)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001964{
David Woodhouse981f1872007-05-25 23:36:54 -04001965 __le32 Localpsmode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001966
Holger Schurig8ff12da2007-08-02 11:54:31 -04001967 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001968
Holger Schurig10078322007-11-15 18:05:47 -05001969 Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001970
Holger Schurig10078322007-11-15 18:05:47 -05001971 lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE,
Dan Williams0aef64d2007-08-02 11:31:18 -04001972 CMD_SUBCMD_EXIT_PS,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001973 wait_option, 0, &Localpsmode);
1974
Holger Schurig8ff12da2007-08-02 11:54:31 -04001975 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001976}
1977
1978/**
1979 * @brief This function checks condition and prepares to
1980 * send sleep confirm command to firmware if ok.
1981 *
Holger Schurig69f90322007-11-23 15:43:44 +01001982 * @param priv A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001983 * @param psmode Power Saving mode
1984 * @return n/a
1985 */
Holger Schurig69f90322007-11-23 15:43:44 +01001986void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001987{
1988 unsigned long flags =0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001989 u8 allowed = 1;
1990
Holger Schurig8ff12da2007-08-02 11:54:31 -04001991 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001992
Holger Schurig634b8f42007-05-25 13:05:16 -04001993 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001994 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001995 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001996 }
1997
David Woodhouseaa21c002007-12-08 20:04:36 +00001998 spin_lock_irqsave(&priv->driver_lock, flags);
1999 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002000 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002001 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002002 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002003 if (priv->intcounter > 0) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002004 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05002005 lbs_deb_host("intcounter %d\n", priv->intcounter);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002006 }
David Woodhouseaa21c002007-12-08 20:04:36 +00002007 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002008
2009 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05002010 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00002011 sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002012 sizeof(struct PS_CMD_ConfirmSleep));
2013 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04002014 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002015 }
2016
Holger Schurig8ff12da2007-08-02 11:54:31 -04002017 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02002018}
Holger Schurig675787e2007-12-05 17:58:11 +01002019
2020
2021/**
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002022 * @brief Simple callback that copies response back into command
2023 *
2024 * @param priv A pointer to struct lbs_private structure
2025 * @param extra A pointer to the original command structure for which
2026 * 'resp' is a response
2027 * @param resp A pointer to the command response
2028 *
2029 * @return 0 on success, error on failure
2030 */
2031int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
David Woodhousead9d7a72007-12-11 15:22:27 -05002032 struct cmd_header *resp)
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002033{
2034 struct cmd_header *buf = (void *)extra;
2035 uint16_t copy_len;
2036
2037 lbs_deb_enter(LBS_DEB_CMD);
2038
2039 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
2040 lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, "
David Woodhousead9d7a72007-12-11 15:22:27 -05002041 "copy back buffer was %u bytes\n", copy_len,
2042 le16_to_cpu(resp->size), le16_to_cpu(buf->size));
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002043 memcpy(buf, resp, copy_len);
2044
2045 lbs_deb_leave(LBS_DEB_CMD);
2046 return 0;
2047}
David Woodhouse689442d2007-12-12 16:00:42 -05002048EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
Dan Williamsa8bdcd72007-12-11 12:40:35 -05002049
David Woodhouse3399ea52007-12-15 03:09:33 -05002050struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command,
2051 struct cmd_header *in_cmd, int in_cmd_size,
2052 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2053 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01002054{
Holger Schurig675787e2007-12-05 17:58:11 +01002055 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01002056
2057 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01002058
David Woodhouseaa21c002007-12-08 20:04:36 +00002059 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01002060 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05002061 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01002062 goto done;
2063 }
2064
2065 cmdnode = lbs_get_cmd_ctrl_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01002066 if (cmdnode == NULL) {
2067 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
2068
2069 /* Wake up main thread to execute next command */
2070 wake_up_interruptible(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05002071 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01002072 goto done;
2073 }
2074
David Woodhouse448a51a2007-12-08 00:59:54 +00002075 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05002076 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01002077
Dan Williams7ad994d2007-12-11 12:33:30 -05002078 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05002079 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05002080
Holger Schurig675787e2007-12-05 17:58:11 +01002081 /* Set sequence number, clean result, move to buffer */
David Woodhouseaa21c002007-12-08 20:04:36 +00002082 priv->seqnum++;
Dan Williamsddac4522007-12-11 13:49:39 -05002083 cmdnode->cmdbuf->command = cpu_to_le16(command);
2084 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
2085 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
2086 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01002087
2088 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
2089
2090 /* here was the big old switch() statement, which is now obsolete,
2091 * because the caller of lbs_cmd() sets up all of *cmd for us. */
2092
2093 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05002094 lbs_queue_cmd(priv, cmdnode);
Holger Schurig675787e2007-12-05 17:58:11 +01002095 wake_up_interruptible(&priv->waitq);
2096
David Woodhouse3399ea52007-12-15 03:09:33 -05002097 done:
2098 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
2099 return cmdnode;
2100}
2101
2102int __lbs_cmd(struct lbs_private *priv, uint16_t command,
2103 struct cmd_header *in_cmd, int in_cmd_size,
2104 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
2105 unsigned long callback_arg)
2106{
2107 struct cmd_ctrl_node *cmdnode;
2108 unsigned long flags;
2109 int ret = 0;
2110
2111 lbs_deb_enter(LBS_DEB_HOST);
2112
2113 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
2114 callback, callback_arg);
2115 if (IS_ERR(cmdnode)) {
2116 ret = PTR_ERR(cmdnode);
2117 goto done;
2118 }
2119
Holger Schurig675787e2007-12-05 17:58:11 +01002120 might_sleep();
2121 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
2122
David Woodhouseaa21c002007-12-08 20:04:36 +00002123 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05002124 ret = cmdnode->result;
2125 if (ret)
2126 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
2127 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05002128
David Woodhousead12d0f2007-12-15 02:06:16 -05002129 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00002130 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01002131
2132done:
2133 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
2134 return ret;
2135}
Dan Williams14e865b2007-12-10 15:11:23 -05002136EXPORT_SYMBOL_GPL(__lbs_cmd);
Holger Schurig675787e2007-12-05 17:58:11 +01002137
2138